summaryrefslogtreecommitdiffstats
path: root/src/corelib/mimetypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/mimetypes')
-rw-r--r--src/corelib/mimetypes/mime/generate.bat73
-rw-r--r--src/corelib/mimetypes/mime/generate.pl113
-rw-r--r--src/corelib/mimetypes/mime/hexdump.ps129
-rw-r--r--src/corelib/mimetypes/mime/packages/freedesktop.org.xml73878
-rw-r--r--src/corelib/mimetypes/mimetypes.pri55
-rw-r--r--src/corelib/mimetypes/mimetypes.qrc5
-rw-r--r--src/corelib/mimetypes/mimetypes_resources.cmake7
-rw-r--r--src/corelib/mimetypes/qmimedatabase.cpp441
-rw-r--r--src/corelib/mimetypes/qmimedatabase.h42
-rw-r--r--src/corelib/mimetypes/qmimedatabase_p.h63
-rw-r--r--src/corelib/mimetypes/qmimeglobpattern.cpp220
-rw-r--r--src/corelib/mimetypes/qmimeglobpattern_p.h94
-rw-r--r--src/corelib/mimetypes/qmimemagicrule.cpp113
-rw-r--r--src/corelib/mimetypes/qmimemagicrule_p.h44
-rw-r--r--src/corelib/mimetypes/qmimemagicrulematcher.cpp40
-rw-r--r--src/corelib/mimetypes/qmimemagicrulematcher_p.h40
-rw-r--r--src/corelib/mimetypes/qmimeprovider.cpp494
-rw-r--r--src/corelib/mimetypes/qmimeprovider_p.h127
-rw-r--r--src/corelib/mimetypes/qmimetype.cpp175
-rw-r--r--src/corelib/mimetypes/qmimetype.h46
-rw-r--r--src/corelib/mimetypes/qmimetype_p.h78
-rw-r--r--src/corelib/mimetypes/qmimetypeparser.cpp150
-rw-r--r--src/corelib/mimetypes/qmimetypeparser_p.h61
23 files changed, 39730 insertions, 36658 deletions
diff --git a/src/corelib/mimetypes/mime/generate.bat b/src/corelib/mimetypes/mime/generate.bat
deleted file mode 100644
index f63fc63693..0000000000
--- a/src/corelib/mimetypes/mime/generate.bat
+++ /dev/null
@@ -1,73 +0,0 @@
-:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-::
-:: Copyright (C) 2019 Intel Corporation.
-:: Contact: https://www.qt.io/licensing/
-::
-:: This file is part of the tools applications of the Qt Toolkit.
-::
-:: $QT_BEGIN_LICENSE:GPL-EXCEPT$
-:: Commercial License Usage
-:: Licensees holding valid commercial Qt licenses may use this file in
-:: accordance with the commercial license agreement provided with the
-:: Software or, alternatively, in accordance with the terms contained in
-:: a written agreement between you and The Qt Company. For licensing terms
-:: and conditions see https://www.qt.io/terms-conditions. For further
-:: information use the contact form at https://www.qt.io/contact-us.
-::
-:: GNU General Public License Usage
-:: Alternatively, this file may be used under the terms of the GNU
-:: General Public License version 3 as published by the Free Software
-:: Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-:: included in the packaging of this file. Please review the following
-:: information to ensure the GNU General Public License requirements will
-:: be met: https://www.gnu.org/licenses/gpl-3.0.html.
-::
-:: $QT_END_LICENSE$
-::
-:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
-@echo off
-setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS
-set me=%~dp0
-
-:: Check if certain tools are in PATH
-for %%C in (gzip.exe zstd.exe perl.exe) do set %%C=%%~$PATH:C
-
-:: If perl is in PATH, just let it do everything
-if not "%perl.exe%" == "" goto PuntToPerl
-
-set COMPRESS=
-set MACRO=MIME_DATABASE_IS_UNCOMPRESSED
-if not "%gzip.exe%" == "" (
- set COMPRESS=gzip -9
- set MACRO=MIME_DATABASE_IS_GZIP
-)
-
-:: Check if zstd support was enabled
-if /i "%~1" == "--zstd" (
- shift
- if not "%zstd.exe%" == "" (
- set COMPRESS=zstd -19
- set MACRO=MIME_DATABASE_IS_ZSTD
- )
-)
-
-if not "%COMPRESS%" == "" goto CompressedCommon
-
-:: No Compression and no Perl
-:: Just hex-dump with Powershell
-powershell -ExecutionPolicy Bypass %me%hexdump.ps1 %1 %1
-exit /b %errorlevel%
-
-:CompressedCommon
-:: Compress to a temporary file, then hex-dump using Powershell
-echo #define %MACRO%
-set tempfile=generate%RANDOM%.tmp
-%COMPRESS% < %1 > %tempfile%
-powershell -ExecutionPolicy Bypass %me%hexdump.ps1 %tempfile% %1
-del %tempfile%
-exit /b %errorlevel%
-
-:PuntToPerl
-perl %me%generate.pl %*
-exit /b %errorlevel%
diff --git a/src/corelib/mimetypes/mime/generate.pl b/src/corelib/mimetypes/mime/generate.pl
deleted file mode 100644
index 1427658e59..0000000000
--- a/src/corelib/mimetypes/mime/generate.pl
+++ /dev/null
@@ -1,113 +0,0 @@
-#!/usr/bin/perl
-#############################################################################
-##
-## Copyright (C) 2019 Intel Corporation.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is the build configuration utility of the Qt Toolkit.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
-use strict;
-use warnings;
-use Config;
-local $/; # Enable "slurp" mode
-
-sub checkCommand($) {
- use File::Spec::Functions;
- my $cmd = $_[0] . $Config{_exe};
- for my $path (path()) {
- return 1 if -x catfile($path, $cmd);
- }
- return 0;
-}
-
-my $data;
-my $compress;
-my $macro;
-my $zlib = eval 'use Compress::Zlib; use IO::Compress::Gzip; return 1;';
-my $fname = shift @ARGV;
-
-if ($zlib) {
- # Prefer internal zlib support (useful on Windows where gzip.exe isn't
- # always presnet)
- $macro = "MIME_DATABASE_IS_GZIP";
-} elsif (checkCommand("gzip")) {
- # No builtin support for compression (old Perl?)
- $compress = "gzip -c9";
- $macro = "MIME_DATABASE_IS_GZIP";
-}
-
-# Check if Qt is being built with zstd support
-if ($fname eq "--zstd") {
- $fname = shift @ARGV;
- if (checkCommand("zstd")) {
- $compress = "zstd -cq19 -T1";
- $macro = "MIME_DATABASE_IS_ZSTD";
- }
-}
-
-# Check if xml (from xmlstarlet) is in $PATH
-my $cmd;
-if (checkCommand("xmlstarlet")) {
- # Minify the data before compressing
- $cmd = "xmlstarlet sel -D -B -t -c / $fname";
- $cmd .= "| $compress" if $compress;
-} elsif ($compress) {
- $cmd = "$compress < $fname"
-}
-if ($cmd) {
- # Run the command and read everything
- open CMD, "$cmd |";
- $data = <CMD>;
- close CMD;
- die("Failed to run $cmd") if ($? >> 8);
-} else {
- # No command, just read the file
- open F, "<$fname";
- $data = <F>;
- close F;
-}
-
-# Do we need to compress with zlib?
-if (!$compress && $zlib) {
- $data = eval q{
- use Compress::Zlib;
- use IO::Compress::Gzip qw(gzip);
- my $compressed;
- gzip \$data => \$compressed,
- Minimal => 1,
- Level => Z_BEST_COMPRESSION;
- return $compressed;
- };
-}
-
-# Now print as hex
-printf "#define %s\n", $macro if $macro;
-printf "static const unsigned char mimetype_database[] = {";
-my $i = 0;
-map {
- printf "\n " if $i++ % 12 == 0;
- printf "0x%02x, ", ord $_
-} split //, $data;
-printf "\n};\n";
-printf "static constexpr size_t MimeTypeDatabaseOriginalSize = %d;\n",
- (stat $fname)[7];
diff --git a/src/corelib/mimetypes/mime/hexdump.ps1 b/src/corelib/mimetypes/mime/hexdump.ps1
index 25ce8138fa..26fb9dd6e6 100644
--- a/src/corelib/mimetypes/mime/hexdump.ps1
+++ b/src/corelib/mimetypes/mime/hexdump.ps1
@@ -1,30 +1,5 @@
-#############################################################################
-##
-## Copyright (C) 2019 Intel Corporation.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is the build configuration utility of the Qt Toolkit.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
+# Copyright (C) 2019 Intel Corporation.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
param([String]$path, [String]$orig)
diff --git a/src/corelib/mimetypes/mime/packages/freedesktop.org.xml b/src/corelib/mimetypes/mime/packages/freedesktop.org.xml
index d384ffb2d5..b7aa6a1995 100644
--- a/src/corelib/mimetypes/mime/packages/freedesktop.org.xml
+++ b/src/corelib/mimetypes/mime/packages/freedesktop.org.xml
@@ -1,446 +1,491 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mime-info [
- <!ELEMENT mime-info (mime-type)+>
- <!ATTLIST mime-info xmlns CDATA #FIXED "http://www.freedesktop.org/standards/shared-mime-info">
-
- <!ELEMENT mime-type (comment+, (acronym,expanded-acronym)? , (icon? | generic-icon? | glob | magic | treemagic | root-XML | alias | sub-class-of)*)>
- <!ATTLIST mime-type type CDATA #REQUIRED>
-
- <!-- a comment describing a document with the respective MIME type. Example: "WMV video" -->
- <!ELEMENT comment (#PCDATA)>
- <!ATTLIST comment xml:lang CDATA #IMPLIED>
-
- <!-- a comment describing the respective unexpanded MIME type acronym. Example: "WMV" -->
- <!ELEMENT acronym (#PCDATA)>
- <!ATTLIST acronym xml:lang CDATA #IMPLIED>
-
- <!-- a comment describing the respective expanded MIME type acronym. Example: "Windows Media Video" -->
- <!ELEMENT expanded-acronym (#PCDATA)>
- <!ATTLIST expanded-acronym xml:lang CDATA #IMPLIED>
-
- <!ELEMENT icon EMPTY>
- <!ATTLIST icon name CDATA #REQUIRED>
-
- <!-- a generic icon name as per the Icon Naming Specification, only required if computing
- it from the mime-type would not work, See "generic-icon" in the Shared Mime Specification -->
- <!ELEMENT generic-icon EMPTY>
- <!ATTLIST generic-icon name (application-x-executable|audio-x-generic|folder|font-x-generic|image-x-generic|package-x-generic|text-html|text-x-generic|text-x-generic-template|text-x-script|video-x-generic|x-office-address-book|x-office-calendar|x-office-document|x-office-presentation|x-office-spreadsheet) #REQUIRED>
-
- <!ELEMENT glob EMPTY>
- <!ATTLIST glob pattern CDATA #REQUIRED>
- <!ATTLIST glob weight CDATA "50">
- <!ATTLIST glob case-sensitive CDATA #IMPLIED>
-
- <!ELEMENT magic (match)+>
- <!ATTLIST magic priority CDATA "50">
-
- <!ELEMENT match (match)*>
- <!ATTLIST match offset CDATA #REQUIRED>
- <!ATTLIST match type (string|big16|big32|little16|little32|host16|host32|byte) #REQUIRED>
- <!ATTLIST match value CDATA #REQUIRED>
- <!ATTLIST match mask CDATA #IMPLIED>
-
- <!ELEMENT treemagic (treematch)+>
- <!ATTLIST treemagic priority CDATA "50">
+<!ELEMENT mime-info (mime-type)+>
+<!ATTLIST mime-info xmlns CDATA #FIXED "http://www.freedesktop.org/standards/shared-mime-info">
+<!ELEMENT mime-type (comment+ , (acronym , expanded-acronym)? , (icon | generic-icon | glob | magic | treemagic | root-XML | alias | sub-class-of)*)>
+<!ATTLIST mime-type type CDATA #REQUIRED>
+<!-- a comment describing a document with the respective MIME type. Example: "WMV video" --><!ELEMENT comment (#PCDATA)>
+<!ATTLIST comment xml:lang CDATA #IMPLIED>
+<!-- a comment describing the respective unexpanded MIME type acronym. Example: "WMV" --><!ELEMENT acronym (#PCDATA)>
+<!-- a comment describing the respective expanded MIME type acronym. Example: "Windows Media Video" --><!ELEMENT expanded-acronym (#PCDATA)>
+<!ELEMENT icon EMPTY>
+<!ATTLIST icon name CDATA #REQUIRED>
+<!-- a generic icon name as per the Icon Naming Specification, only required if computing
+ it from the mime-type would not work, See "generic-icon" in the Shared Mime Specification --><!ELEMENT generic-icon EMPTY>
+<!ATTLIST generic-icon name (application-x-executable | audio-x-generic | emblem-symbolic-link | folder | font-x-generic | image-x-generic | media-floppy | media-optical | package-x-generic | text-html | text-x-generic | text-x-generic-template | text-x-script | video-x-generic | x-office-address-book | x-office-calendar | x-office-document | x-office-presentation | x-office-spreadsheet) #REQUIRED>
+<!ELEMENT glob EMPTY>
+<!ATTLIST glob pattern CDATA #REQUIRED>
+<!ATTLIST glob weight CDATA "50">
+<!ATTLIST glob case-sensitive CDATA #IMPLIED>
+<!ELEMENT magic (match)+>
+<!ATTLIST magic priority CDATA "50">
+<!ELEMENT match (match)*>
+<!ATTLIST match offset CDATA #REQUIRED>
+<!ATTLIST match type (string | big16 | big32 | little16 | little32 | host16 | host32 | byte) #REQUIRED>
+<!ATTLIST match value CDATA #REQUIRED>
+<!ATTLIST match mask CDATA #IMPLIED>
+<!ELEMENT treemagic (treematch)+>
+<!ATTLIST treemagic priority CDATA "50">
+<!ELEMENT treematch (treematch)*>
+<!ATTLIST treematch path CDATA #REQUIRED>
+<!ATTLIST treematch type (file | directory | link) #IMPLIED>
+<!ATTLIST treematch match-case (true | false) #IMPLIED>
+<!ATTLIST treematch executable (true | false) #IMPLIED>
+<!ATTLIST treematch non-empty (true | false) #IMPLIED>
+<!ATTLIST treematch mimetype CDATA #IMPLIED>
+<!ELEMENT root-XML EMPTY>
+<!ATTLIST root-XML namespaceURI CDATA #REQUIRED>
+<!ATTLIST root-XML localName CDATA #REQUIRED>
+<!ELEMENT alias EMPTY>
+<!ATTLIST alias type CDATA #REQUIRED>
+<!ELEMENT sub-class-of EMPTY>
+<!ATTLIST sub-class-of type CDATA #REQUIRED>
+]>
+<!--
+The freedesktop.org shared MIME database (this file) was created by merging
+several existing MIME databases (all released under the GNU GPL).
- <!ELEMENT treematch (treematch)*>
- <!ATTLIST treematch path CDATA #REQUIRED>
- <!ATTLIST treematch type (file|directory|link) #IMPLIED>
- <!ATTLIST treematch match-case (true|false) #IMPLIED>
- <!ATTLIST treematch executable (true|false) #IMPLIED>
- <!ATTLIST treematch non-empty (true|false) #IMPLIED>
- <!ATTLIST treematch mimetype CDATA #IMPLIED>
+It comes with ABSOLUTELY NO WARRANTY, to the extent permitted by law. You may
+redistribute copies of freedesktop.org.xml under the terms of the GNU General
+Public License version 2 or later. For more information about these matters,
+see the file named COPYING.
- <!ELEMENT root-XML EMPTY>
- <!ATTLIST root-XML namespaceURI CDATA #REQUIRED>
- <!ATTLIST root-XML localName CDATA #REQUIRED>
+The latest version is available from:
- <!ELEMENT alias EMPTY>
- <!ATTLIST alias type CDATA #REQUIRED>
+ http://www.freedesktop.org/wiki/Software/shared-mime-info/
- <!ELEMENT sub-class-of EMPTY>
- <!ATTLIST sub-class-of type CDATA #REQUIRED>
-]>
+To extend this database, users and applications should create additional
+XML files in the 'packages' directory and run the update-mime-database
+command to generate the output files.
+-->
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/x-atari-2600-rom">
- <comment>Atari 2600</comment>
- <comment xml:lang="ast">Atari 2600</comment>
- <comment xml:lang="ca">Atari 2600</comment>
- <comment xml:lang="cs">Atari 2600</comment>
- <comment xml:lang="da">Atari 2600</comment>
- <comment xml:lang="de">Atari 2600</comment>
- <comment xml:lang="en_GB">Atari 2600</comment>
- <comment xml:lang="es">Atari 2600</comment>
- <comment xml:lang="eu">Atari 2600</comment>
- <comment xml:lang="fi">Atari 2600</comment>
- <comment xml:lang="fr">Atari 2600</comment>
- <comment xml:lang="ga">Atari 2600</comment>
- <comment xml:lang="he">אטארי 2600</comment>
- <comment xml:lang="hr">Atari 2600</comment>
- <comment xml:lang="hu">Atari 2600</comment>
- <comment xml:lang="id">Atari 2600</comment>
- <comment xml:lang="it">Atari 2600</comment>
- <comment xml:lang="kk">Atari 2600</comment>
- <comment xml:lang="ko">Atari 2600</comment>
- <comment xml:lang="oc">Atari 2600</comment>
- <comment xml:lang="pl">Atari 2600</comment>
- <comment xml:lang="pt_BR">Atari 2600</comment>
- <comment xml:lang="ru">Atari 2600</comment>
- <comment xml:lang="sk">Atari 2600</comment>
- <comment xml:lang="sr">Атари 2600</comment>
- <comment xml:lang="sv">Atari 2600</comment>
- <comment xml:lang="tr">Atari 2600</comment>
- <comment xml:lang="uk">Atari 2600</comment>
- <comment xml:lang="zh_CN">雅达利 2600</comment>
- <comment xml:lang="zh_TW">Atari 2600</comment>
+ <comment>Atari 2600 ROM</comment>
+ <comment xml:lang="zh_TW">雅達利 2600 ROM</comment>
+ <comment xml:lang="zh_CN">雅达利 2600 ROM</comment>
+ <comment xml:lang="uk">Atari 2600 ROM</comment>
+ <comment xml:lang="tr">Atari 2600 ROM</comment>
+ <comment xml:lang="sv">Atari 2600-rom</comment>
+ <comment xml:lang="sr">Атари 2600 РОМ</comment>
+ <comment xml:lang="sq">ROM Atari 2600</comment>
+ <comment xml:lang="sl">Atari 2600 ROM</comment>
+ <comment xml:lang="si">Atari 2600 ROM</comment>
+ <comment xml:lang="ru">Atari 2600 ROM</comment>
+ <comment xml:lang="pt_BR">ROM do Atari 2600</comment>
+ <comment xml:lang="pt">ROM Atari 2600</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Atari 2600</comment>
+ <comment xml:lang="nl">Atari 2600-ROM</comment>
+ <comment xml:lang="ko">아타리 2600 롬</comment>
+ <comment xml:lang="kk">Atari 2600 ROM</comment>
+ <comment xml:lang="ka">Atari 2600 ROM</comment>
+ <comment xml:lang="ja">Atari 2600 ROM</comment>
+ <comment xml:lang="it">ROM Atari 2600</comment>
+ <comment xml:lang="is">Atari 2600 ROM</comment>
+ <comment xml:lang="id">Atari 2600 ROM</comment>
+ <comment xml:lang="hu">Atari 2600 ROM</comment>
+ <comment xml:lang="hr">Atari 2600 ROM</comment>
+ <comment xml:lang="he">Atari 2600 ROM</comment>
+ <comment xml:lang="gl">ROM de Atari 2600</comment>
+ <comment xml:lang="fur">ROM Atari 2600</comment>
+ <comment xml:lang="fr">ROM Atari 2600</comment>
+ <comment xml:lang="fi">Atari 2600 -ROM</comment>
+ <comment xml:lang="eu">Atari 2600 ROMa</comment>
+ <comment xml:lang="es">ROM de Atari 2600</comment>
+ <comment xml:lang="en_GB">Atari 2600 ROM</comment>
+ <comment xml:lang="de">Atari-2600-ROM</comment>
+ <comment xml:lang="da">Atari 2600-ROM</comment>
+ <comment xml:lang="ca">ROM d'Atari 2600</comment>
+ <comment xml:lang="bg">ROM — Atari 2600</comment>
+ <comment xml:lang="be">Atari 2600 ROM</comment>
+ <comment xml:lang="ar">روم Atari 2600</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.a26"/>
</mime-type>
<mime-type type="application/x-atari-7800-rom">
- <comment>Atari 7800</comment>
- <comment xml:lang="ast">Atari 7800</comment>
- <comment xml:lang="ca">Atari 7800</comment>
- <comment xml:lang="cs">Atari 7800</comment>
- <comment xml:lang="da">Atari 7800</comment>
- <comment xml:lang="de">Atari 7800</comment>
- <comment xml:lang="en_GB">Atari 7800</comment>
- <comment xml:lang="es">Atari 7800</comment>
- <comment xml:lang="eu">Atari 7800</comment>
- <comment xml:lang="fi">Atari 7800</comment>
- <comment xml:lang="fr">Atari 7800</comment>
- <comment xml:lang="ga">Atari 7800</comment>
- <comment xml:lang="he">אטארי 7800</comment>
- <comment xml:lang="hr">Atari 7800</comment>
- <comment xml:lang="hu">Atari 7800</comment>
- <comment xml:lang="id">Atari 7800</comment>
- <comment xml:lang="it">Atari 7800</comment>
- <comment xml:lang="kk">Atari 7800</comment>
- <comment xml:lang="ko">Atari 7800</comment>
- <comment xml:lang="oc">Atari 7800</comment>
- <comment xml:lang="pl">Atari 7800</comment>
- <comment xml:lang="pt_BR">Atari 7800</comment>
- <comment xml:lang="ru">Atari 7800</comment>
- <comment xml:lang="sk">Atari 7800</comment>
- <comment xml:lang="sr">Атари 7800</comment>
- <comment xml:lang="sv">Atari 7800</comment>
- <comment xml:lang="tr">Atari 7800</comment>
- <comment xml:lang="uk">Atari 7800</comment>
- <comment xml:lang="zh_CN">雅达利 7800</comment>
- <comment xml:lang="zh_TW">Atari 7800</comment>
+ <comment>Atari 7800 ROM</comment>
+ <comment xml:lang="zh_TW">雅達利 7800 ROM</comment>
+ <comment xml:lang="zh_CN">雅达利 7800 ROM</comment>
+ <comment xml:lang="uk">Atari 7800 ROM</comment>
+ <comment xml:lang="tr">Atari 7800 ROM</comment>
+ <comment xml:lang="sv">Atari 7800-rom</comment>
+ <comment xml:lang="sr">Атари 7800 РОМ</comment>
+ <comment xml:lang="sq">ROM Atari 7800</comment>
+ <comment xml:lang="sl">Atari 7800 ROM</comment>
+ <comment xml:lang="si">Atari 7800 ROM</comment>
+ <comment xml:lang="ru">Atari 7800 ROM</comment>
+ <comment xml:lang="pt_BR">ROM do Atari 7800</comment>
+ <comment xml:lang="pt">ROM Atari 7800</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Atari 7800</comment>
+ <comment xml:lang="nl">Atari 7800-ROM</comment>
+ <comment xml:lang="ko">아타리 7800 롬</comment>
+ <comment xml:lang="kk">Atari 7800 ROM</comment>
+ <comment xml:lang="ka">Atari 7800 ROM</comment>
+ <comment xml:lang="ja">Atari 7800 ROM</comment>
+ <comment xml:lang="it">ROM Atari 7800</comment>
+ <comment xml:lang="is">Atari 7800 ROM</comment>
+ <comment xml:lang="id">Atari 7800 ROM</comment>
+ <comment xml:lang="hu">Atari 7800 ROM</comment>
+ <comment xml:lang="hr">Atari 7800 ROM</comment>
+ <comment xml:lang="he">Atari 7800 ROM</comment>
+ <comment xml:lang="gl">ROM de Atari 7800</comment>
+ <comment xml:lang="fur">ROM Atari 7800</comment>
+ <comment xml:lang="fr">ROM Atari 7800</comment>
+ <comment xml:lang="fi">Atari 7800 -ROM</comment>
+ <comment xml:lang="eu">Atari 7800 ROMa</comment>
+ <comment xml:lang="es">ROM de Atari 7800</comment>
+ <comment xml:lang="en_GB">Atari 7800 ROM</comment>
+ <comment xml:lang="de">Atari-7800-ROM</comment>
+ <comment xml:lang="da">Atari 7800-ROM</comment>
+ <comment xml:lang="ca">ROM d'Atari 7800</comment>
+ <comment xml:lang="bg">ROM — Atari 7800</comment>
+ <comment xml:lang="be">Atari 7800 ROM</comment>
+ <comment xml:lang="ar">روم Atari 7800</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.a78"/>
<magic>
- <match value="ATARI7800" type="string" offset="1"/>
+ <match type="string" value="ATARI7800" offset="1"/>
</magic>
</mime-type>
<mime-type type="application/x-atari-lynx-rom">
- <comment>Atari Lynx</comment>
- <comment xml:lang="ast">Atari Lynx</comment>
- <comment xml:lang="ca">Atari Lynx</comment>
- <comment xml:lang="cs">Atari Lynx</comment>
- <comment xml:lang="de">Atari Lynx</comment>
- <comment xml:lang="en_GB">Atari Lynx</comment>
- <comment xml:lang="es">Atari Lynx</comment>
- <comment xml:lang="fi">Atari Lynx</comment>
- <comment xml:lang="hr">Atari Lynx</comment>
- <comment xml:lang="hu">Atari Lynx</comment>
- <comment xml:lang="id">Atari Lynx</comment>
- <comment xml:lang="it">Atari Lynx</comment>
- <comment xml:lang="kk">Atari Lynx</comment>
- <comment xml:lang="ko">Atari Lynx</comment>
- <comment xml:lang="pl">Atari Lynx</comment>
- <comment xml:lang="pt_BR">Atari Lynx</comment>
- <comment xml:lang="ru">Atari Lynx</comment>
- <comment xml:lang="sk">Atari Lynx</comment>
- <comment xml:lang="sv">Atari Lynx</comment>
- <comment xml:lang="uk">Atari Lynx</comment>
- <comment xml:lang="zh_CN">雅达利 Lynx</comment>
- <comment xml:lang="zh_TW">Atari Lynx</comment>
+ <comment>Atari Lynx ROM</comment>
+ <comment xml:lang="zh_TW">雅達利 Lynx ROM</comment>
+ <comment xml:lang="zh_CN">雅达利 Lynx ROM</comment>
+ <comment xml:lang="uk">Atari Lynx ROM</comment>
+ <comment xml:lang="tr">Atari Lynx ROM</comment>
+ <comment xml:lang="sv">Atari Lynx-rom</comment>
+ <comment xml:lang="sr">Атари Линкс РОМ</comment>
+ <comment xml:lang="sq">ROM Atari Lynx</comment>
+ <comment xml:lang="sl">Atari Lynx ROM</comment>
+ <comment xml:lang="si">Atari Lynx ROM</comment>
+ <comment xml:lang="ru">Atari Lynx ROM</comment>
+ <comment xml:lang="pt_BR">ROM do Atari Lynx</comment>
+ <comment xml:lang="pt">ROM Atari Lynx</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Atari Lynx</comment>
+ <comment xml:lang="nl">Atari Lynx-ROM</comment>
+ <comment xml:lang="ko">아타리 링스 롬</comment>
+ <comment xml:lang="kk">Atari Lynx ROM</comment>
+ <comment xml:lang="ka">Atari Lynx ROM</comment>
+ <comment xml:lang="ja">Atari Lynx ROM</comment>
+ <comment xml:lang="it">ROM Atari Lynx</comment>
+ <comment xml:lang="is">Atari Lynx ROM</comment>
+ <comment xml:lang="id">Atari Lynx ROM</comment>
+ <comment xml:lang="hu">Atari Lynx ROM</comment>
+ <comment xml:lang="hr">Atari Lynx ROM</comment>
+ <comment xml:lang="he">Atari Lynx ROM</comment>
+ <comment xml:lang="gl">ROM de Atari Lynx</comment>
+ <comment xml:lang="fur">ROM Atari Lynx</comment>
+ <comment xml:lang="fr">ROM Atari Lynx</comment>
+ <comment xml:lang="fi">Atari Lynx -ROM</comment>
+ <comment xml:lang="eu">Atari Lynx ROMa</comment>
+ <comment xml:lang="es">ROM de Atari Lynx</comment>
+ <comment xml:lang="en_GB">Atari Lynx ROM</comment>
+ <comment xml:lang="de">Atari-Lynx-ROM</comment>
+ <comment xml:lang="da">Atari Lynx-ROM</comment>
+ <comment xml:lang="ca">ROM d'Atari Lynx</comment>
+ <comment xml:lang="bg">ROM — Atari Lynx</comment>
+ <comment xml:lang="be">Atari Lynx ROM</comment>
+ <comment xml:lang="ar">روم Atari Lynx</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.lnx"/>
<magic>
- <match value="LYNX" type="string" offset="0"/>
+ <match type="string" value="LYNX" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/andrew-inset">
<comment>ATK inset</comment>
- <comment xml:lang="ar">شكل ATK</comment>
- <comment xml:lang="be@latin">Ustaŭka ATK</comment>
- <comment xml:lang="bg">Сбор — ATK</comment>
- <comment xml:lang="ca">ATK inset</comment>
- <comment xml:lang="cs">vložka ATK</comment>
- <comment xml:lang="da">ATK-indsættelse</comment>
- <comment xml:lang="de">ATK-Inset</comment>
- <comment xml:lang="el">Ένθετο ATK</comment>
- <comment xml:lang="en_GB">ATK inset</comment>
- <comment xml:lang="es">inserción ATK</comment>
- <comment xml:lang="eu">ATK sartzapena</comment>
- <comment xml:lang="fi">ATK-osio</comment>
- <comment xml:lang="fo">ATK innskot</comment>
- <comment xml:lang="fr">encart ATK</comment>
- <comment xml:lang="ga">intlis ATK</comment>
- <comment xml:lang="gl">conxunto ATK</comment>
- <comment xml:lang="he">תוספת ATK</comment>
- <comment xml:lang="hr">ATK umetak</comment>
- <comment xml:lang="hu">ATK betét</comment>
- <comment xml:lang="ia">Folio intercalari ATK</comment>
- <comment xml:lang="id">Inset ATK</comment>
- <comment xml:lang="it">Inset ATK</comment>
- <comment xml:lang="ja">ATK インセット</comment>
- <comment xml:lang="kk">ATK беті</comment>
- <comment xml:lang="ko">ATK inset</comment>
- <comment xml:lang="lt">ATK inset</comment>
- <comment xml:lang="lv">ATK ielaidums</comment>
- <comment xml:lang="nb">ATK-innsats</comment>
- <comment xml:lang="nl">ATK-invoegsel</comment>
- <comment xml:lang="nn">ATK-innskot</comment>
- <comment xml:lang="oc">encart ATK</comment>
- <comment xml:lang="pl">Wstawka ATK</comment>
- <comment xml:lang="pt">Suplemento ATK</comment>
- <comment xml:lang="pt_BR">Conjunto de entrada do ATK</comment>
- <comment xml:lang="ro">Inset ATK</comment>
- <comment xml:lang="ru">Вкладка ATK</comment>
- <comment xml:lang="sk">Vložka ATK</comment>
- <comment xml:lang="sl">Vložka ATK</comment>
- <comment xml:lang="sq">Inset ATK</comment>
- <comment xml:lang="sr">АТК уметак</comment>
- <comment xml:lang="sv">ATK-inlägg</comment>
- <comment xml:lang="tr">ATK iç metni</comment>
- <comment xml:lang="uk">вкладка ATK</comment>
- <comment xml:lang="vi">Bộ dát ATK</comment>
- <comment xml:lang="zh_CN">ATK 嵌入对象</comment>
<comment xml:lang="zh_TW">ATK 內嵌</comment>
+ <comment xml:lang="zh_CN">ATK 嵌入对象</comment>
+ <comment xml:lang="vi">Bộ dát ATK</comment>
+ <comment xml:lang="uk">вкладка ATK</comment>
+ <comment xml:lang="tr">ATK iç metni</comment>
+ <comment xml:lang="sv">ATK-inlägg</comment>
+ <comment xml:lang="sr">АТК уметак</comment>
+ <comment xml:lang="sl">Vložka ATK</comment>
+ <comment xml:lang="si">ATK ඇතුළු කිරීම</comment>
+ <comment xml:lang="sk">Vložka ATK</comment>
+ <comment xml:lang="ru">Вкладка ATK</comment>
+ <comment xml:lang="ro">Inset ATK</comment>
+ <comment xml:lang="pt_BR">Conjunto de entrada do ATK</comment>
+ <comment xml:lang="pt">Suplemento ATK</comment>
+ <comment xml:lang="pl">Wstawka ATK</comment>
+ <comment xml:lang="oc">encart ATK</comment>
+ <comment xml:lang="nn">ATK-innskot</comment>
+ <comment xml:lang="nl">ATK-invoegsel</comment>
+ <comment xml:lang="nb">ATK-innsats</comment>
+ <comment xml:lang="lv">ATK ielaidums</comment>
+ <comment xml:lang="lt">ATK inset</comment>
+ <comment xml:lang="ko">ATK 인세트</comment>
+ <comment xml:lang="kk">ATK беті</comment>
+ <comment xml:lang="ja">ATK インセット</comment>
+ <comment xml:lang="it">Inset ATK</comment>
+ <comment xml:lang="is">ATK innfelling</comment>
+ <comment xml:lang="id">Inset ATK</comment>
+ <comment xml:lang="ia">Folio intercalari ATK</comment>
+ <comment xml:lang="hu">ATK betét</comment>
+ <comment xml:lang="hr">ATK umetak</comment>
+ <comment xml:lang="he">תוספת ATK</comment>
+ <comment xml:lang="gl">conxunto ATK</comment>
+ <comment xml:lang="ga">intlis ATK</comment>
+ <comment xml:lang="fur">inset ATK</comment>
+ <comment xml:lang="fr">encart ATK</comment>
+ <comment xml:lang="fo">ATK innskot</comment>
+ <comment xml:lang="fi">ATK-osio</comment>
+ <comment xml:lang="eu">ATK sartzapena</comment>
+ <comment xml:lang="es">inserción ATK</comment>
+ <comment xml:lang="en_GB">ATK inset</comment>
+ <comment xml:lang="el">Ένθετο ATK</comment>
+ <comment xml:lang="de">ATK-Inset</comment>
+ <comment xml:lang="da">ATK-indsættelse</comment>
+ <comment xml:lang="cs">vložka ATK</comment>
+ <comment xml:lang="ca">ATK inset</comment>
+ <comment xml:lang="bg">Притурка — ATK</comment>
+ <comment xml:lang="be@latin">Ustaŭka ATK</comment>
+ <comment xml:lang="be">устаўка ATK</comment>
+ <comment xml:lang="ar">شكل ATK</comment>
<acronym>ATK</acronym>
<expanded-acronym>Andrew Toolkit</expanded-acronym>
<generic-icon name="x-office-document"/>
<glob pattern="*.ez"/>
</mime-type>
<mime-type type="application/epub+zip">
- <comment>electronic book document</comment>
- <comment xml:lang="ar">مستند كتاب إلكتروني</comment>
- <comment xml:lang="ast">documentu de llibru electrónicu</comment>
- <comment xml:lang="be@latin">elektronnaja kniha</comment>
- <comment xml:lang="bg">Документ — електронна книга</comment>
- <comment xml:lang="ca">document de llibre electrònic</comment>
- <comment xml:lang="cs">dokument elektronické knihy</comment>
- <comment xml:lang="da">elektronisk bogdokument</comment>
- <comment xml:lang="de">Elektronisches Buch</comment>
- <comment xml:lang="el">Έγγραφο ηλεκτρονικού βιβλίου</comment>
- <comment xml:lang="en_GB">electronic book document</comment>
- <comment xml:lang="es">documento de libro electrónico</comment>
- <comment xml:lang="eu">liburu elektronikoaren dokumentua</comment>
- <comment xml:lang="fi">elektroninen kirja</comment>
- <comment xml:lang="fo">elektroniskbóka skjal</comment>
- <comment xml:lang="fr">document livre électronique</comment>
- <comment xml:lang="ga">leabhar leictreonach</comment>
- <comment xml:lang="gl">documento de libro electrónico</comment>
- <comment xml:lang="he">מסמך מסוג ספר אלקטרוני</comment>
- <comment xml:lang="hr">Dokument elektroničke knjige</comment>
- <comment xml:lang="hu">elektronikus könyvdokumentum</comment>
- <comment xml:lang="ia">Documento de libro electronic</comment>
- <comment xml:lang="id">dokumen buku elektronik</comment>
- <comment xml:lang="it">Documento libro elettronico</comment>
- <comment xml:lang="ja">電子ブックドキュメント</comment>
- <comment xml:lang="kk">электронды кітабы</comment>
- <comment xml:lang="ko">전자책 문서</comment>
- <comment xml:lang="lt">elektroninės knygos dokumentas</comment>
- <comment xml:lang="lv">elektroniskās grāmatas dokuments</comment>
- <comment xml:lang="nl">elektronisch boek</comment>
- <comment xml:lang="nn">elektronisk bok-dokument</comment>
- <comment xml:lang="oc">document libre electronic</comment>
- <comment xml:lang="pl">Dokument książki elektronicznej</comment>
- <comment xml:lang="pt">documento de livro eletrónico</comment>
- <comment xml:lang="pt_BR">Documento de livro eletrônico</comment>
- <comment xml:lang="ro">document carte electronică</comment>
- <comment xml:lang="ru">Электронная книга</comment>
- <comment xml:lang="sk">Dokument elektronickej knihy</comment>
- <comment xml:lang="sl">dokument elektronske knjige</comment>
- <comment xml:lang="sq">Dokument libri elektronik</comment>
- <comment xml:lang="sr">документ електронске књиге</comment>
- <comment xml:lang="sv">elektroniskt bokdokument</comment>
- <comment xml:lang="tr">elektronik kitap belgesi</comment>
- <comment xml:lang="uk">документ електронної книги</comment>
- <comment xml:lang="vi">tài liệu cuốn sách điện tử</comment>
- <comment xml:lang="zh_CN">电子书文档</comment>
+ <comment>Electronic book document</comment>
<comment xml:lang="zh_TW">電子書文件</comment>
+ <comment xml:lang="uk">документ електронної книги</comment>
+ <comment xml:lang="sv">Elektroniskt bokdokument</comment>
+ <comment xml:lang="sq">Dokument libri elektronik</comment>
+ <comment xml:lang="ru">Документ электронной книги</comment>
+ <comment xml:lang="pt_BR">Documento de livro eletrônico</comment>
+ <comment xml:lang="pl">Dokument książki elektronicznej</comment>
+ <comment xml:lang="ja">電子書籍</comment>
+ <comment xml:lang="it">Documento libro elettronico</comment>
+ <comment xml:lang="gl">Documento de libro electrónico</comment>
+ <comment xml:lang="eu">Liburu elektronikoa</comment>
+ <comment xml:lang="es">documento de libro electrónico</comment>
+ <comment xml:lang="de">E-Book</comment>
+ <comment xml:lang="be">электроннай кніга</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/epub+zip" type="string" offset="38"/>
- <match value="application/epub+zip" type="string" offset="43"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/epub+zip" offset="38"/>
+ <match type="string" value="application/epub+zip" offset="43"/>
</match>
</match>
</magic>
<glob pattern="*.epub"/>
</mime-type>
+ <mime-type type="application/vnd.amazon.mobi8-ebook">
+ <comment>Kindle book document</comment>
+ <comment xml:lang="zh_TW">Kindle 書文件</comment>
+ <comment xml:lang="zh_CN">Kindle 电子书文档</comment>
+ <comment xml:lang="uk">документ книги Kindle</comment>
+ <comment xml:lang="tr">Kindle kitap belgesi</comment>
+ <comment xml:lang="sv">Kindle-bokdokument</comment>
+ <comment xml:lang="sr">Документ Киндл књиге</comment>
+ <comment xml:lang="sq">dokument libri Kindle</comment>
+ <comment xml:lang="sl">Dokument knjige Kindle</comment>
+ <comment xml:lang="si">Kindle පොත් ලේඛනය</comment>
+ <comment xml:lang="ru">Документ электронной книги Kindle</comment>
+ <comment xml:lang="pt_BR">Documento livro do Kindle</comment>
+ <comment xml:lang="pt">documento de livro eletrónico do Kindle</comment>
+ <comment xml:lang="pl">Dokument książki Kindle</comment>
+ <comment xml:lang="oc">document libre Kindle</comment>
+ <comment xml:lang="nl">Kindle-boekdocument</comment>
+ <comment xml:lang="lt">Kindle knygos dokumentas</comment>
+ <comment xml:lang="ko">Kindle 책 문서</comment>
+ <comment xml:lang="kk">Kindle кітап құжаты</comment>
+ <comment xml:lang="ja">キンドルブックドキュメント</comment>
+ <comment xml:lang="it">Documento libro Kindle</comment>
+ <comment xml:lang="is">Kindle rafbókarskjal</comment>
+ <comment xml:lang="id">Dokumen buku Kindle</comment>
+ <comment xml:lang="hu">Kindle könyvdokumentum</comment>
+ <comment xml:lang="hr">Dokument Kindle knjige</comment>
+ <comment xml:lang="he">מסמך ספר Kindle</comment>
+ <comment xml:lang="gl">Documento de libro de Kindle</comment>
+ <comment xml:lang="fr">document livre Kindle</comment>
+ <comment xml:lang="fi">Kindle book -asiakirja</comment>
+ <comment xml:lang="eu">Kindle liburu-dokumentua</comment>
+ <comment xml:lang="es">documento de libro de Kindle</comment>
+ <comment xml:lang="en_GB">Kindle book document</comment>
+ <comment xml:lang="de">Kindle E-Book</comment>
+ <comment xml:lang="da">Kindle-bogdokument</comment>
+ <comment xml:lang="ca">document de llibre Kindle</comment>
+ <comment xml:lang="be">дакумент кнігі Kindle</comment>
+ <comment xml:lang="ar">مستند كتاب كندل</comment>
+ <sub-class-of type="application/x-mobipocket-ebook"/>
+ <glob pattern="*.azw3"/>
+ <glob pattern="*.kfx"/>
+ <alias type="application/x-mobi8-ebook"/>
+ </mime-type>
<mime-type type="application/illustrator">
<comment>Adobe Illustrator document</comment>
- <comment xml:lang="ar">مستند أدوبي المصور</comment>
- <comment xml:lang="ast">Documentu d'Adobe Illustrator</comment>
- <comment xml:lang="be@latin">Dakument Adobe Illustrator</comment>
- <comment xml:lang="bg">Документ — Adobe Illustrator</comment>
- <comment xml:lang="ca">document d'Adobe Illustrator</comment>
- <comment xml:lang="cs">dokument Adobe Illustrator</comment>
- <comment xml:lang="da">Adobe Illustrator-dokument</comment>
- <comment xml:lang="de">Adobe-Illustrator-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Adobe Illustrator</comment>
- <comment xml:lang="en_GB">Adobe Illustrator document</comment>
- <comment xml:lang="eo">dokumento de Adobe Illustrator</comment>
- <comment xml:lang="es">documento de Adobe Illustrator</comment>
- <comment xml:lang="eu">Adobe Illustrator dokumentua</comment>
- <comment xml:lang="fi">Adobe Illustrator -asiakirja</comment>
- <comment xml:lang="fo">Adobe Illustrator skjal</comment>
- <comment xml:lang="fr">document Adobe Illustrator</comment>
- <comment xml:lang="ga">cáipéis Adobe Illustrator</comment>
- <comment xml:lang="gl">documento de Adobe Ilustrator</comment>
- <comment xml:lang="he">מסמך Adobe Ill</comment>
- <comment xml:lang="hr">Adobe Illustrator dokument</comment>
- <comment xml:lang="hu">Adobe Illustrator-dokumentum</comment>
- <comment xml:lang="ia">Documento Adobe Illustrator</comment>
- <comment xml:lang="id">dokumen Adobe Illustrator</comment>
- <comment xml:lang="it">Documento Adobe Illustrator</comment>
- <comment xml:lang="ja">Adobe Illustrator ドキュメント</comment>
- <comment xml:lang="ka">Adobe Illustrator-ის დოკუმენტი</comment>
- <comment xml:lang="kk">Adobe Illustrator құжаты</comment>
- <comment xml:lang="ko">Adobe Illustrator 문서</comment>
- <comment xml:lang="lt">Adobe Illustrator dokumentas</comment>
- <comment xml:lang="lv">Adobe Illustrator dokuments</comment>
- <comment xml:lang="ms">Dokumen Adobe Illustrator</comment>
- <comment xml:lang="nb">Adobe Illustrator-dokument</comment>
- <comment xml:lang="nl">Adobe Illustrator-document</comment>
- <comment xml:lang="nn">Adobe Illustrator-dokument</comment>
- <comment xml:lang="oc">document Adobe Illustrator</comment>
- <comment xml:lang="pl">Dokument Adobe Illustrator</comment>
- <comment xml:lang="pt">documento Adobe Illustrator</comment>
- <comment xml:lang="pt_BR">Documento do Adobe Illustrator</comment>
- <comment xml:lang="ro">Document Adobe Illustrator</comment>
- <comment xml:lang="ru">Документ Adobe Illustrator</comment>
- <comment xml:lang="sk">Dokument Adobe Illustrator</comment>
- <comment xml:lang="sl">Dokument Adobe Illustrator</comment>
- <comment xml:lang="sq">Dokument Adobe Illustrator</comment>
- <comment xml:lang="sr">документ Адобе илустратора</comment>
- <comment xml:lang="sv">Adobe Illustrator-dokument</comment>
- <comment xml:lang="tr">Adobe Illustrator belgesi</comment>
- <comment xml:lang="uk">документ Adobe Illustrator</comment>
- <comment xml:lang="vi">Tài liệu Adobe Illustrator</comment>
- <comment xml:lang="zh_CN">Adobe Illustrator 文档</comment>
<comment xml:lang="zh_TW">Adobe Illustrator 文件</comment>
+ <comment xml:lang="zh_CN">Adobe Illustrator 文档</comment>
+ <comment xml:lang="vi">Tài liệu Adobe Illustrator</comment>
+ <comment xml:lang="uk">документ Adobe Illustrator</comment>
+ <comment xml:lang="tr">Adobe Illustrator belgesi</comment>
+ <comment xml:lang="sv">Adobe Illustrator-dokument</comment>
+ <comment xml:lang="sr">документ Адобе илустратора</comment>
+ <comment xml:lang="sq">dokument Adobe Illustrator</comment>
+ <comment xml:lang="sl">Dokument Adobe Illustrator</comment>
+ <comment xml:lang="si">Adobe Illustrator ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Adobe Illustrator</comment>
+ <comment xml:lang="ru">Документ Adobe Illustrator</comment>
+ <comment xml:lang="ro">Document Adobe Illustrator</comment>
+ <comment xml:lang="pt_BR">Documento do Adobe Illustrator</comment>
+ <comment xml:lang="pt">documento Adobe Illustrator</comment>
+ <comment xml:lang="pl">Dokument Adobe Illustrator</comment>
+ <comment xml:lang="oc">document Adobe Illustrator</comment>
+ <comment xml:lang="nn">Adobe Illustrator-dokument</comment>
+ <comment xml:lang="nl">Adobe Illustrator-document</comment>
+ <comment xml:lang="nb">Adobe Illustrator-dokument</comment>
+ <comment xml:lang="ms">Dokumen Adobe Illustrator</comment>
+ <comment xml:lang="lv">Adobe Illustrator dokuments</comment>
+ <comment xml:lang="lt">Adobe Illustrator dokumentas</comment>
+ <comment xml:lang="ko">Adobe Illustrator 문서</comment>
+ <comment xml:lang="kk">Adobe Illustrator құжаты</comment>
+ <comment xml:lang="ka">Adobe Illustrator-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Adobe Illustrator ドキュメント</comment>
+ <comment xml:lang="it">Documento Adobe Illustrator</comment>
+ <comment xml:lang="is">Adobe Illustrator skjal</comment>
+ <comment xml:lang="id">Dokumen Adobe Illustrator</comment>
+ <comment xml:lang="ia">Documento Adobe Illustrator</comment>
+ <comment xml:lang="hu">Adobe Illustrator-dokumentum</comment>
+ <comment xml:lang="hr">Adobe Illustrator dokument</comment>
+ <comment xml:lang="he">מסמך Adobe Ill</comment>
+ <comment xml:lang="gl">documento de Adobe Ilustrator</comment>
+ <comment xml:lang="ga">cáipéis Adobe Illustrator</comment>
+ <comment xml:lang="fur">document Adobe Illustrator</comment>
+ <comment xml:lang="fr">document Adobe Illustrator</comment>
+ <comment xml:lang="fo">Adobe Illustrator skjal</comment>
+ <comment xml:lang="fi">Adobe Illustrator -asiakirja</comment>
+ <comment xml:lang="eu">Adobe Illustrator dokumentua</comment>
+ <comment xml:lang="es">documento de Adobe Illustrator</comment>
+ <comment xml:lang="eo">dokumento de Adobe Illustrator</comment>
+ <comment xml:lang="en_GB">Adobe Illustrator document</comment>
+ <comment xml:lang="el">Έγγραφο Adobe Illustrator</comment>
+ <comment xml:lang="de">Adobe-Illustrator-Dokument</comment>
+ <comment xml:lang="da">Adobe Illustrator-dokument</comment>
+ <comment xml:lang="cs">dokument Adobe Illustrator</comment>
+ <comment xml:lang="ca">document d'Adobe Illustrator</comment>
+ <comment xml:lang="bg">Документ — Adobe Illustrator</comment>
+ <comment xml:lang="be@latin">Dakument Adobe Illustrator</comment>
+ <comment xml:lang="be">дакумент Adobe Illustrator</comment>
+ <comment xml:lang="ast">Documentu d'Adobe Illustrator</comment>
+ <comment xml:lang="ar">مستند أدوبي إليستريتور</comment>
+ <comment xml:lang="af">Adobe Illustrator-dokument</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.ai"/>
<alias type="application/vnd.adobe.illustrator"/>
</mime-type>
<mime-type type="application/mac-binhex40">
<comment>Macintosh BinHex-encoded file</comment>
- <comment xml:lang="ar">ملف Macintosh BinHex مشفر</comment>
- <comment xml:lang="ast">Ficheru codificáu en BinHex de Machintosh</comment>
- <comment xml:lang="az">Macintosh BinHex-kodlanmış fayl</comment>
- <comment xml:lang="be@latin">Fajł Macintosh, BinHex-zakadavany</comment>
- <comment xml:lang="bg">Файл — кодиран във формат BinHex за Macintosh</comment>
- <comment xml:lang="ca">fitxer amb codificació BinHex de Macintosh</comment>
- <comment xml:lang="cs">soubor kódovaný pomocí Macintosh BinHex</comment>
- <comment xml:lang="cy">Ffeil BinHex-amgodwyd Macintosh</comment>
- <comment xml:lang="da">Macintosh BinHex-kodet fil</comment>
- <comment xml:lang="de">Macintosh-Datei (BinHex-kodiert)</comment>
- <comment xml:lang="el">Αρχείο Macintosh κωδικοποίησης BinHex</comment>
- <comment xml:lang="en_GB">Macintosh BinHex-encoded file</comment>
- <comment xml:lang="eo">dosiero kodigita laŭ Macintosh BinHex</comment>
- <comment xml:lang="es">archivo Macintosh codificado con BinHex</comment>
- <comment xml:lang="eu">Macintosh BinHex-ekin kodetutako fitxategia</comment>
- <comment xml:lang="fi">Macintosh BinHex -koodattu tiedosto</comment>
- <comment xml:lang="fo">Macintosh BinHex-bronglað fíla</comment>
- <comment xml:lang="fr">fichier codé Macintosh BinHex</comment>
- <comment xml:lang="ga">comhad ionchódaithe le Macintosh BinHex</comment>
- <comment xml:lang="gl">ficheiro de Macintosh codificado con BinHex</comment>
- <comment xml:lang="he">קובץ בקידוד Macintosh BinHex</comment>
- <comment xml:lang="hr">Macintosh BinHex-kôdirana datoteka</comment>
- <comment xml:lang="hu">Macintosh BinHex kódolású fájl</comment>
- <comment xml:lang="ia">File codificate in BinHex de Macintosh</comment>
- <comment xml:lang="id">berkas tersandi Macintosh BinHex</comment>
- <comment xml:lang="it">File Macintosh codificato BinHex</comment>
- <comment xml:lang="ja">Macintosh BinHex エンコードファイル</comment>
- <comment xml:lang="kk">Macintosh BinHex кодталған файлы</comment>
- <comment xml:lang="ko">매킨토시 BinHex 인코딩된 압축 파일</comment>
- <comment xml:lang="lt">Macintosh BinHex-encoded failas</comment>
- <comment xml:lang="lv">Macintosh BinHex-kodēts datne</comment>
- <comment xml:lang="ms">Fail terenkod-BinHex Macintosh</comment>
- <comment xml:lang="nb">Macintosh BinHe-kodet arkiv</comment>
- <comment xml:lang="nl">Macintosh BinHex-gecodeerd bestand</comment>
- <comment xml:lang="nn">Macintosh BinHex-koda fil</comment>
- <comment xml:lang="oc">fichièr encodat Macintosh BinHex</comment>
- <comment xml:lang="pl">Zakodowany w BinHex plik Macintosh</comment>
- <comment xml:lang="pt">ficheiro codificado em BinHex de Macintosh</comment>
- <comment xml:lang="pt_BR">Arquivo do Macintosh codificado com BinHex</comment>
- <comment xml:lang="ro">Fișier codat Macintosh BinHex</comment>
- <comment xml:lang="ru">Файл (закодированный Macintosh BinHex)</comment>
- <comment xml:lang="sk">Súbor kódovaný pomocou Macintosh BinHex</comment>
- <comment xml:lang="sl">Kodirana datoteka Macintosh (BinHex)</comment>
- <comment xml:lang="sq">File Macintosh i kodifikuar BinHex</comment>
- <comment xml:lang="sr">Мекинтошова БинХекс-кодирана датотека</comment>
- <comment xml:lang="sv">Macintosh BinHex-kodad fil</comment>
- <comment xml:lang="tr">Macintosh BinHex-şifreli dosya</comment>
- <comment xml:lang="uk">файл закодований Macintosh BinHex</comment>
- <comment xml:lang="vi">Tập tin đã mã hoá BinHex của Macintosh</comment>
- <comment xml:lang="zh_CN">Macintosh BinHex 编码的文件</comment>
<comment xml:lang="zh_TW">Macintosh BinHex 編碼檔</comment>
+ <comment xml:lang="zh_CN">Macintosh BinHex 编码的文件</comment>
+ <comment xml:lang="vi">Tập tin đã mã hoá BinHex của Macintosh</comment>
+ <comment xml:lang="uk">файл закодований Macintosh BinHex</comment>
+ <comment xml:lang="tr">Macintosh BinHex-şifreli dosya</comment>
+ <comment xml:lang="sv">Macintosh BinHex-kodad fil</comment>
+ <comment xml:lang="sr">Мекинтошова БинХекс-кодирана датотека</comment>
+ <comment xml:lang="sq">kartelë Macintosh koduar me BinHex</comment>
+ <comment xml:lang="sl">Kodirana datoteka Macintosh (BinHex)</comment>
+ <comment xml:lang="si">Macintosh BinHex-කේතනය කළ ගොනුව</comment>
+ <comment xml:lang="sk">Súbor kódovaný pomocou Macintosh BinHex</comment>
+ <comment xml:lang="ru">Файл Macintosh закодированный BinHex</comment>
+ <comment xml:lang="ro">Fișier codat Macintosh BinHex</comment>
+ <comment xml:lang="pt_BR">Arquivo do Macintosh codificado com BinHex</comment>
+ <comment xml:lang="pt">ficheiro codificado em BinHex de Macintosh</comment>
+ <comment xml:lang="pl">Zakodowany w BinHex plik Macintosh</comment>
+ <comment xml:lang="oc">fichièr encodat Macintosh BinHex</comment>
+ <comment xml:lang="nn">Macintosh BinHex-koda fil</comment>
+ <comment xml:lang="nl">Macintosh BinHex-gecodeerd bestand</comment>
+ <comment xml:lang="nb">Macintosh BinHe-kodet arkiv</comment>
+ <comment xml:lang="ms">Fail terenkod-BinHex Macintosh</comment>
+ <comment xml:lang="lv">Macintosh BinHex-kodēts datne</comment>
+ <comment xml:lang="lt">Macintosh BinHex-encoded failas</comment>
+ <comment xml:lang="ko">매킨토시 BinHex 인코딩된 압축 파일</comment>
+ <comment xml:lang="kk">Macintosh BinHex кодталған файлы</comment>
+ <comment xml:lang="ja">Macintosh BinHex エンコードファイル</comment>
+ <comment xml:lang="it">File Macintosh codificato BinHex</comment>
+ <comment xml:lang="is">Macintosh BinHex-kóðuð skrá</comment>
+ <comment xml:lang="id">Berkas tersandi Macintosh BinHex</comment>
+ <comment xml:lang="ia">File codificate in BinHex de Macintosh</comment>
+ <comment xml:lang="hu">Macintosh BinHex kódolású fájl</comment>
+ <comment xml:lang="hr">Macintosh BinHex-kôdirana datoteka</comment>
+ <comment xml:lang="he">קובץ בקידוד Macintosh BinHex</comment>
+ <comment xml:lang="gl">ficheiro de Macintosh codificado con BinHex</comment>
+ <comment xml:lang="ga">comhad ionchódaithe le Macintosh BinHex</comment>
+ <comment xml:lang="fur">file di Macintosh codificât BinHex</comment>
+ <comment xml:lang="fr">fichier codé Macintosh BinHex</comment>
+ <comment xml:lang="fo">Macintosh BinHex-bronglað fíla</comment>
+ <comment xml:lang="fi">Macintosh BinHex -koodattu tiedosto</comment>
+ <comment xml:lang="eu">Macintosh BinHex-ekin kodetutako fitxategia</comment>
+ <comment xml:lang="es">archivo Macintosh codificado con BinHex</comment>
+ <comment xml:lang="eo">dosiero kodigita laŭ Macintosh BinHex</comment>
+ <comment xml:lang="en_GB">Macintosh BinHex-encoded file</comment>
+ <comment xml:lang="el">Αρχείο Macintosh κωδικοποίησης BinHex</comment>
+ <comment xml:lang="de">Macintosh-Datei (BinHex-verschlüsselt)</comment>
+ <comment xml:lang="da">Macintosh BinHex-kodet fil</comment>
+ <comment xml:lang="cy">Ffeil BinHex-amgodwyd Macintosh</comment>
+ <comment xml:lang="cs">soubor kódovaný pomocí Macintosh BinHex</comment>
+ <comment xml:lang="ca">fitxer amb codificació BinHex de Macintosh</comment>
+ <comment xml:lang="bg">Файл — кодиран във формат BinHex за Macintosh</comment>
+ <comment xml:lang="be@latin">Fajł Macintosh, BinHex-zakadavany</comment>
+ <comment xml:lang="be">файл з кадаваннем Macintosh BinHex</comment>
+ <comment xml:lang="az">Macintosh BinHex-kodlanmış fayl</comment>
+ <comment xml:lang="ast">Ficheru codificáu en BinHex de Machintosh</comment>
+ <comment xml:lang="ar">ملف Macintosh BinHex مشفر</comment>
+ <comment xml:lang="af">Macintosh BinHex-geënkodeerde lêer</comment>
+ <sub-class-of type="text/plain"/>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="must be converted with BinHex" type="string" offset="11"/>
+ <magic>
+ <match type="string" value="(This file must be converted with BinHex 4.0)" offset="0"/>
+ <match type="string" value="(This file must be converted; you knew that already.)" offset="0"/>
</magic>
+ <glob pattern="*.hqx"/>
</mime-type>
<mime-type type="application/mathematica">
- <comment>Mathematica Notebook</comment>
- <comment xml:lang="ar">مذكرة رياضيات</comment>
- <comment xml:lang="be@latin">Natatnik Mathematica</comment>
- <comment xml:lang="bg">Тетрадка — Mathematica</comment>
- <comment xml:lang="ca">llibreta de notes de Mathematica</comment>
- <comment xml:lang="cs">sešit Mathematica</comment>
- <comment xml:lang="da">Mathematica Notebook</comment>
- <comment xml:lang="de">Mathematica-Dokument</comment>
- <comment xml:lang="el">Σημειωματάριο Mathematica</comment>
- <comment xml:lang="en_GB">Mathematica Notebook</comment>
- <comment xml:lang="es">libreta de Mathematica</comment>
- <comment xml:lang="eu">Mathematica Notebook</comment>
- <comment xml:lang="fi">Mathematica-muistilehtiö</comment>
- <comment xml:lang="fo">Mathematica skriviblokkur</comment>
- <comment xml:lang="fr">carnet de notes Mathematica</comment>
- <comment xml:lang="ga">leabhar nótaí Mathematica</comment>
- <comment xml:lang="gl">notebook de Mathematica</comment>
- <comment xml:lang="he">מחברת מתמטיקה</comment>
- <comment xml:lang="hr">Matematička bilježnica</comment>
- <comment xml:lang="hu">Mathematica notesz</comment>
- <comment xml:lang="ia">Carnet de notas Mathematica</comment>
- <comment xml:lang="id">Mathematica Notebook</comment>
- <comment xml:lang="it">Notebook Mathematica</comment>
- <comment xml:lang="ja">Mathematica ノートブック</comment>
- <comment xml:lang="kk">Mathematica Notebook</comment>
- <comment xml:lang="ko">Mathematica 노트북</comment>
- <comment xml:lang="lt">Mathematica užrašinė</comment>
- <comment xml:lang="lv">Mathematica bloknots</comment>
- <comment xml:lang="nb">Mathematica notisblokk</comment>
- <comment xml:lang="nl">Mathematica-notitieboek</comment>
- <comment xml:lang="nn">Mathematica-notatbok</comment>
- <comment xml:lang="oc">quasernet de nòtas Mathematica</comment>
- <comment xml:lang="pl">Notatnik Mathematica</comment>
- <comment xml:lang="pt">Bloco notas Mathematica</comment>
- <comment xml:lang="pt_BR">Caderno do Mathematica</comment>
- <comment xml:lang="ro">Carnețel Mathematica</comment>
- <comment xml:lang="ru">Mathematica Notebook</comment>
- <comment xml:lang="sk">Zošit programu Mathematica</comment>
- <comment xml:lang="sl">Datoteka dokumenta Mathematica</comment>
- <comment xml:lang="sq">Notebook matematike</comment>
- <comment xml:lang="sr">бележница Математике</comment>
- <comment xml:lang="sv">Mathematica Notebook-dokument</comment>
- <comment xml:lang="tr">Mathematica Defteri</comment>
- <comment xml:lang="uk">математичний записник</comment>
- <comment xml:lang="vi">Cuốn vở Mathematica</comment>
- <comment xml:lang="zh_CN">Mathematica 笔记本</comment>
- <comment xml:lang="zh_TW">Mathematica Notebook</comment>
+ <comment>Mathematica Notebook file</comment>
+ <comment xml:lang="zh_TW">Mathematica 筆記本檔案</comment>
+ <comment xml:lang="zh_CN">Mathematica 笔记本文件</comment>
+ <comment xml:lang="uk">файл нотатника Mathematica</comment>
+ <comment xml:lang="tr">Mathematica Notebook dosyası</comment>
+ <comment xml:lang="sv">Mathematica-anteckningsboksfil</comment>
+ <comment xml:lang="sq">kartelë Mathematica Notebook</comment>
+ <comment xml:lang="sl">Datoteka Mathematica Notebook</comment>
+ <comment xml:lang="si">Mathematica Notebook ගොනුව</comment>
+ <comment xml:lang="ru">Файл Mathematica Notebook</comment>
+ <comment xml:lang="pt_BR">Arquivo Notebook do Mathematica</comment>
+ <comment xml:lang="pt">ficheiro de Mathematica Notebook do Wolfram</comment>
+ <comment xml:lang="pl">Plik notatnika Mathematica</comment>
+ <comment xml:lang="nl">Mathematica Notebook-bestand</comment>
+ <comment xml:lang="ko">Mathematica 기록장 파일</comment>
+ <comment xml:lang="kk">Mathematica блокнот файлы</comment>
+ <comment xml:lang="ka">Mathematica Notebook-ის ფაილი</comment>
+ <comment xml:lang="ja">Mathematica ノートブックファイル</comment>
+ <comment xml:lang="it">File Mathematica Notebook</comment>
+ <comment xml:lang="is">Mathematica Notebook skrá</comment>
+ <comment xml:lang="id">Berkas Mathematica Notebook</comment>
+ <comment xml:lang="hu">Mathematica munkafüzetfájl</comment>
+ <comment xml:lang="hr">Mathematica Notebook datoteka</comment>
+ <comment xml:lang="he">קובץ מחברת של Mathematica</comment>
+ <comment xml:lang="gl">Ficheiro de caderno de Mathematica</comment>
+ <comment xml:lang="fr">fichier carnet Mathematica</comment>
+ <comment xml:lang="fi">Mathematica Notebook -tiedosto</comment>
+ <comment xml:lang="eu">Mathematica Notebook fitxategia</comment>
+ <comment xml:lang="es">archivo de Mathematica Notebook</comment>
+ <comment xml:lang="en_GB">Mathematica Notebook file</comment>
+ <comment xml:lang="de">Mathematica-Notebook-Datei</comment>
+ <comment xml:lang="da">Mathematica Notebook-fil</comment>
+ <comment xml:lang="ca">llibreta de Mathematica Notebook</comment>
+ <comment xml:lang="bg">Скицник — Mathematica</comment>
+ <comment xml:lang="be">файл Mathematica Notebook</comment>
+ <comment xml:lang="ar">ملف دفتر ماثماتيكا</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.nb"/>
- <magic priority="50">
+ <magic>
<match value="(************** Content-type: application/mathematica" type="string" offset="0"/>
<match value="This notebook can be used on any computer system with Mathematica" type="string" offset="100:256"/>
<match value="This is a Mathematica Notebook file. It contains ASCII text" type="string" offset="10:256"/>
@@ -449,58 +494,63 @@
</mime-type>
<mime-type type="application/mathml+xml">
<comment>MathML document</comment>
- <comment xml:lang="ar">مستند MathML</comment>
- <comment xml:lang="ast">Documentu MathML</comment>
- <comment xml:lang="az">MathML sənədi</comment>
- <comment xml:lang="be@latin">Dakument MathML</comment>
- <comment xml:lang="bg">Документ — MathML</comment>
- <comment xml:lang="ca">document MathML</comment>
- <comment xml:lang="cs">dokument MathML</comment>
- <comment xml:lang="cy">Dogfen MathML</comment>
- <comment xml:lang="da">MathML-dokument</comment>
- <comment xml:lang="de">MathML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο MathML</comment>
- <comment xml:lang="en_GB">MathML document</comment>
- <comment xml:lang="eo">MathML-dokumento</comment>
- <comment xml:lang="es">documento MathML</comment>
- <comment xml:lang="eu">MathML dokumentua</comment>
- <comment xml:lang="fi">MathML-asiakirja</comment>
- <comment xml:lang="fo">MathML skjal</comment>
- <comment xml:lang="fr">document MathML</comment>
- <comment xml:lang="ga">cáipéis MathML</comment>
- <comment xml:lang="gl">documento de MathML</comment>
- <comment xml:lang="he">מסמך MathML</comment>
- <comment xml:lang="hr">MathML dokument</comment>
- <comment xml:lang="hu">MathML-dokumentum</comment>
- <comment xml:lang="ia">Documento MathML</comment>
- <comment xml:lang="id">dokumen MathML</comment>
- <comment xml:lang="it">Documento MathML</comment>
- <comment xml:lang="ja">MathML ドキュメント</comment>
- <comment xml:lang="ka">MathML-ის დოკუმენტი</comment>
- <comment xml:lang="kk">MathML құжаты</comment>
- <comment xml:lang="ko">MathML 문서</comment>
- <comment xml:lang="lt">MathML dokumentas</comment>
- <comment xml:lang="lv">MathML dokuments</comment>
- <comment xml:lang="ms">Dokumen MathML</comment>
- <comment xml:lang="nb">MathML-dokument</comment>
- <comment xml:lang="nl">MathML-document</comment>
- <comment xml:lang="nn">MathML-dokument</comment>
- <comment xml:lang="oc">document MathML</comment>
- <comment xml:lang="pl">Dokument MathML</comment>
- <comment xml:lang="pt">documento MathML</comment>
- <comment xml:lang="pt_BR">Documento do MathML</comment>
- <comment xml:lang="ro">Document MathML</comment>
- <comment xml:lang="ru">Документ MathML</comment>
- <comment xml:lang="sk">Dokument MathML</comment>
- <comment xml:lang="sl">Dokument MathML</comment>
- <comment xml:lang="sq">Dokument MathML</comment>
- <comment xml:lang="sr">МатМЛ документ</comment>
- <comment xml:lang="sv">MathML-dokument</comment>
- <comment xml:lang="tr">MathML belgesi</comment>
- <comment xml:lang="uk">документ MathML</comment>
- <comment xml:lang="vi">Tài liệu MathML</comment>
- <comment xml:lang="zh_CN">MathML 文档</comment>
<comment xml:lang="zh_TW">MathML 文件</comment>
+ <comment xml:lang="zh_CN">MathML 文档</comment>
+ <comment xml:lang="vi">Tài liệu MathML</comment>
+ <comment xml:lang="uk">документ MathML</comment>
+ <comment xml:lang="tr">MathML belgesi</comment>
+ <comment xml:lang="sv">MathML-dokument</comment>
+ <comment xml:lang="sr">МатМЛ документ</comment>
+ <comment xml:lang="sq">dokument MathML</comment>
+ <comment xml:lang="sl">Dokument MathML</comment>
+ <comment xml:lang="si">MathML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument MathML</comment>
+ <comment xml:lang="ru">Документ MathML</comment>
+ <comment xml:lang="ro">Document MathML</comment>
+ <comment xml:lang="pt_BR">Documento do MathML</comment>
+ <comment xml:lang="pt">documento MathML</comment>
+ <comment xml:lang="pl">Dokument MathML</comment>
+ <comment xml:lang="oc">document MathML</comment>
+ <comment xml:lang="nn">MathML-dokument</comment>
+ <comment xml:lang="nl">MathML-document</comment>
+ <comment xml:lang="nb">MathML-dokument</comment>
+ <comment xml:lang="ms">Dokumen MathML</comment>
+ <comment xml:lang="lv">MathML dokuments</comment>
+ <comment xml:lang="lt">MathML dokumentas</comment>
+ <comment xml:lang="ko">MathML 문서</comment>
+ <comment xml:lang="kk">MathML құжаты</comment>
+ <comment xml:lang="ka">MathML-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">MathML ドキュメント</comment>
+ <comment xml:lang="it">Documento MathML</comment>
+ <comment xml:lang="is">MathML skjal</comment>
+ <comment xml:lang="id">Dokumen MathML</comment>
+ <comment xml:lang="ia">Documento MathML</comment>
+ <comment xml:lang="hu">MathML-dokumentum</comment>
+ <comment xml:lang="hr">MathML dokument</comment>
+ <comment xml:lang="he">מסמך MathML</comment>
+ <comment xml:lang="gl">documento de MathML</comment>
+ <comment xml:lang="ga">cáipéis MathML</comment>
+ <comment xml:lang="fur">document MathML</comment>
+ <comment xml:lang="fr">document MathML</comment>
+ <comment xml:lang="fo">MathML skjal</comment>
+ <comment xml:lang="fi">MathML-asiakirja</comment>
+ <comment xml:lang="eu">MathML dokumentua</comment>
+ <comment xml:lang="es">documento MathML</comment>
+ <comment xml:lang="eo">MathML-dokumento</comment>
+ <comment xml:lang="en_GB">MathML document</comment>
+ <comment xml:lang="el">Έγγραφο MathML</comment>
+ <comment xml:lang="de">MathML-Dokument</comment>
+ <comment xml:lang="da">MathML-dokument</comment>
+ <comment xml:lang="cy">Dogfen MathML</comment>
+ <comment xml:lang="cs">dokument MathML</comment>
+ <comment xml:lang="ca">document MathML</comment>
+ <comment xml:lang="bg">Документ — MathML</comment>
+ <comment xml:lang="be@latin">Dakument MathML</comment>
+ <comment xml:lang="be">дакумент MathML</comment>
+ <comment xml:lang="az">MathML sənədi</comment>
+ <comment xml:lang="ast">Documentu MathML</comment>
+ <comment xml:lang="ar">مستند MathML</comment>
+ <comment xml:lang="af">MathML-dokument</comment>
<acronym>MathML</acronym>
<expanded-acronym>Mathematical Markup Language</expanded-acronym>
<alias type="text/mathml"/>
@@ -509,253 +559,210 @@
<root-XML namespaceURI="http://www.w3.org/1998/Math/MathML" localName="math"/>
</mime-type>
<mime-type type="application/mbox">
- <comment>mailbox file</comment>
- <comment xml:lang="ar">ملف صندوق البريد</comment>
- <comment xml:lang="be@latin">fajł paštovaj skryni</comment>
- <comment xml:lang="bg">Файл — Mailbox</comment>
- <comment xml:lang="ca">fitxer mailbox</comment>
- <comment xml:lang="cs">soubor mailbox</comment>
- <comment xml:lang="da">postkassefil</comment>
- <comment xml:lang="de">Mailbox-Datei</comment>
- <comment xml:lang="el">Αρχείο mailbox</comment>
- <comment xml:lang="en_GB">mailbox file</comment>
- <comment xml:lang="es">archivo de buzón de correo</comment>
- <comment xml:lang="eu">mailbox fitxategia</comment>
- <comment xml:lang="fi">mailbox-tiedosto</comment>
- <comment xml:lang="fo">postkassafíla</comment>
- <comment xml:lang="fr">fichier boîte aux lettres</comment>
- <comment xml:lang="ga">comhad bhosca poist</comment>
- <comment xml:lang="gl">ficheiro de caixa de correo</comment>
- <comment xml:lang="he">קובץ תיבת-דואר</comment>
- <comment xml:lang="hr">Datoteka poštanskog sandučića</comment>
- <comment xml:lang="hu">mailbox fájl</comment>
- <comment xml:lang="ia">File de cassa postal</comment>
- <comment xml:lang="id">berkas kotak surat</comment>
- <comment xml:lang="it">File mailbox</comment>
- <comment xml:lang="ja">メールボックスファイル</comment>
- <comment xml:lang="kk">пошта жәшігінің файлы</comment>
- <comment xml:lang="ko">메일함 파일</comment>
- <comment xml:lang="lt">pašto dėžutės failas</comment>
- <comment xml:lang="lv">pastkastītes datne</comment>
- <comment xml:lang="nb">postboksfil</comment>
- <comment xml:lang="nl">mailbox-bestand</comment>
- <comment xml:lang="nn">mailbox-fil</comment>
- <comment xml:lang="oc">fichièr bóstia de letras</comment>
- <comment xml:lang="pl">Plik poczty (Mailbox)</comment>
- <comment xml:lang="pt">ficheiro de caixa de correio</comment>
- <comment xml:lang="pt_BR">Arquivo de caixa de correio</comment>
- <comment xml:lang="ro">fișier căsuță poștală</comment>
- <comment xml:lang="ru">Файл почтового ящика</comment>
- <comment xml:lang="sk">Súbor mailbox</comment>
- <comment xml:lang="sl">datoteka poštnega predala</comment>
- <comment xml:lang="sq">File mailbox</comment>
- <comment xml:lang="sr">датотека поштанског сандучета</comment>
- <comment xml:lang="sv">brevlådefil</comment>
- <comment xml:lang="tr">posta kutusu dosyası</comment>
+ <comment>Mailbox file</comment>
<comment xml:lang="uk">файл поштової скриньки</comment>
- <comment xml:lang="vi">tập tin hộp thư</comment>
- <comment xml:lang="zh_CN">邮箱文件</comment>
- <comment xml:lang="zh_TW">郵箱檔</comment>
+ <comment xml:lang="sv">Brevlådefil</comment>
+ <comment xml:lang="sq">Kartelë kutie email-esh</comment>
+ <comment xml:lang="ru">Файл почтового ящика</comment>
+ <comment xml:lang="pt_BR">Arquivo de caixa de correio</comment>
+ <comment xml:lang="pl">Plik poczty (Mailbox)</comment>
+ <comment xml:lang="ja">電子郵便</comment>
+ <comment xml:lang="it">File mailbox</comment>
+ <comment xml:lang="gl">Ficheiro Mailbox</comment>
+ <comment xml:lang="eu">Mailbox fitxategia</comment>
+ <comment xml:lang="es">archivo de buzón de correo</comment>
+ <comment xml:lang="de">Mailbox-Datei</comment>
+ <comment xml:lang="be">файл паштовай скрынкі</comment>
<generic-icon name="text-x-generic"/>
<sub-class-of type="text/plain"/>
<magic priority="20">
- <match value="From " type="string" offset="0"/>
+ <match type="string" value="From " offset="0"/>
</magic>
<glob pattern="*.mbox"/>
</mime-type>
<mime-type type="application/metalink+xml">
<comment>Metalink file</comment>
- <comment xml:lang="ar">ملف ميتالنك</comment>
- <comment xml:lang="ast">Ficheru d'enllaz meta</comment>
- <comment xml:lang="bg">Изтегляне — Metalink</comment>
- <comment xml:lang="ca">fitxer Metalink</comment>
- <comment xml:lang="cs">soubor metalink</comment>
- <comment xml:lang="da">Metahenvisningsfil</comment>
- <comment xml:lang="de">Metalink-Datei</comment>
- <comment xml:lang="el">Αρχείο Metalink</comment>
- <comment xml:lang="en_GB">Metalink file</comment>
- <comment xml:lang="eo">Metalink-dosiero</comment>
- <comment xml:lang="es">archivo de Metalink</comment>
- <comment xml:lang="eu">Metaestekaren fitxategia</comment>
- <comment xml:lang="fi">Metalink-tiedosto</comment>
- <comment xml:lang="fo">Metalink fíla</comment>
- <comment xml:lang="fr">fichier metalink</comment>
- <comment xml:lang="ga">comhad Metalink</comment>
- <comment xml:lang="gl">ficheiro Metalink</comment>
- <comment xml:lang="he">קובץ Metalink</comment>
- <comment xml:lang="hr">Datoteka meta poveznice</comment>
- <comment xml:lang="hu">Metalink fájl</comment>
- <comment xml:lang="ia">File Metalink</comment>
- <comment xml:lang="id">berkas Metalink</comment>
- <comment xml:lang="it">File Metalink</comment>
- <comment xml:lang="ja">Metalink ファイル</comment>
- <comment xml:lang="kk">Metalink файлы</comment>
- <comment xml:lang="ko">Metalink 파일</comment>
- <comment xml:lang="lt">Metalink failas</comment>
- <comment xml:lang="lv">Metalink datne</comment>
- <comment xml:lang="nl">Metalink bestand</comment>
- <comment xml:lang="oc">fichièr metalink</comment>
- <comment xml:lang="pl">Plik Metalink</comment>
- <comment xml:lang="pt">ficheiro Metalink</comment>
- <comment xml:lang="pt_BR">Arquivo Metalink</comment>
- <comment xml:lang="ro">Fișier Metalink</comment>
- <comment xml:lang="ru">Файл Metalink</comment>
- <comment xml:lang="sk">Súbor Metalink</comment>
- <comment xml:lang="sl">Datoteka povezave Metalink</comment>
- <comment xml:lang="sr">датотека метавезе</comment>
- <comment xml:lang="sv">Metalink-fil</comment>
- <comment xml:lang="tr">Metalink dosyası</comment>
- <comment xml:lang="uk">файл метапосилання</comment>
- <comment xml:lang="zh_CN">Metalink 文件</comment>
<comment xml:lang="zh_TW">Metalink 檔案</comment>
+ <comment xml:lang="zh_CN">Metalink 文件</comment>
+ <comment xml:lang="uk">файл метапосилання</comment>
+ <comment xml:lang="tr">Metalink dosyası</comment>
+ <comment xml:lang="sv">Metalink-fil</comment>
+ <comment xml:lang="sr">датотека метавезе</comment>
+ <comment xml:lang="sq">kartelë Metalink</comment>
+ <comment xml:lang="sl">Datoteka povezave Metalink</comment>
+ <comment xml:lang="si">Metalink ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Metalink</comment>
+ <comment xml:lang="ru">Файл Metalink</comment>
+ <comment xml:lang="ro">Fișier Metalink</comment>
+ <comment xml:lang="pt_BR">Arquivo Metalink</comment>
+ <comment xml:lang="pt">ficheiro Metalink</comment>
+ <comment xml:lang="pl">Plik Metalink</comment>
+ <comment xml:lang="oc">fichièr metalink</comment>
+ <comment xml:lang="nl">Metalink-bestand</comment>
+ <comment xml:lang="lv">Metalink datne</comment>
+ <comment xml:lang="lt">Metalink failas</comment>
+ <comment xml:lang="ko">Metalink 파일</comment>
+ <comment xml:lang="kk">Metalink файлы</comment>
+ <comment xml:lang="ka">მეტაბმულის ფაილი</comment>
+ <comment xml:lang="ja">Metalink ファイル</comment>
+ <comment xml:lang="it">File Metalink</comment>
+ <comment xml:lang="is">Metalink skrá</comment>
+ <comment xml:lang="id">Berkas Metalink</comment>
+ <comment xml:lang="ia">File Metalink</comment>
+ <comment xml:lang="hu">Metalink fájl</comment>
+ <comment xml:lang="hr">Datoteka meta poveznice</comment>
+ <comment xml:lang="he">קובץ Metalink</comment>
+ <comment xml:lang="gl">ficheiro Metalink</comment>
+ <comment xml:lang="ga">comhad Metalink</comment>
+ <comment xml:lang="fur">file Metalink</comment>
+ <comment xml:lang="fr">fichier metalink</comment>
+ <comment xml:lang="fo">Metalink fíla</comment>
+ <comment xml:lang="fi">Metalink-tiedosto</comment>
+ <comment xml:lang="eu">Metaestekaren fitxategia</comment>
+ <comment xml:lang="es">archivo de Metalink</comment>
+ <comment xml:lang="eo">Metalink-dosiero</comment>
+ <comment xml:lang="en_GB">Metalink file</comment>
+ <comment xml:lang="el">Αρχείο Metalink</comment>
+ <comment xml:lang="de">Metalink-Datei</comment>
+ <comment xml:lang="da">Metahenvisningsfil</comment>
+ <comment xml:lang="cs">soubor metalink</comment>
+ <comment xml:lang="ca">fitxer Metalink</comment>
+ <comment xml:lang="bg">Изтегляне — Metalink</comment>
+ <comment xml:lang="be">файл Metalink</comment>
+ <comment xml:lang="ast">Ficheru d'enllaz meta</comment>
+ <comment xml:lang="ar">ملف ميتالنك</comment>
+ <comment xml:lang="af">Metalink-lêer</comment>
<sub-class-of type="application/xml"/>
- <magic priority="50">
- <match value="&lt;metalink version=&quot;3.0&quot;" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;metalink version=&quot;3.0&quot;" offset="0:256"/>
</magic>
<glob pattern="*.metalink"/>
<root-XML namespaceURI="http://www.metalinker.org/" localName="metalink"/>
</mime-type>
<mime-type type="application/metalink4+xml">
<comment>Metalink file</comment>
- <comment xml:lang="ar">ملف ميتالنك</comment>
- <comment xml:lang="ast">Ficheru d'enllaz meta</comment>
- <comment xml:lang="bg">Изтегляне — Metalink</comment>
- <comment xml:lang="ca">fitxer Metalink</comment>
- <comment xml:lang="cs">soubor metalink</comment>
- <comment xml:lang="da">Metahenvisningsfil</comment>
- <comment xml:lang="de">Metalink-Datei</comment>
- <comment xml:lang="el">Αρχείο Metalink</comment>
- <comment xml:lang="en_GB">Metalink file</comment>
- <comment xml:lang="eo">Metalink-dosiero</comment>
- <comment xml:lang="es">archivo de Metalink</comment>
- <comment xml:lang="eu">Metaestekaren fitxategia</comment>
- <comment xml:lang="fi">Metalink-tiedosto</comment>
- <comment xml:lang="fo">Metalink fíla</comment>
- <comment xml:lang="fr">fichier metalink</comment>
- <comment xml:lang="ga">comhad Metalink</comment>
- <comment xml:lang="gl">ficheiro Metalink</comment>
- <comment xml:lang="he">קובץ Metalink</comment>
- <comment xml:lang="hr">Datoteka meta poveznice</comment>
- <comment xml:lang="hu">Metalink fájl</comment>
- <comment xml:lang="ia">File Metalink</comment>
- <comment xml:lang="id">berkas Metalink</comment>
- <comment xml:lang="it">File Metalink</comment>
- <comment xml:lang="ja">Metalink ファイル</comment>
- <comment xml:lang="kk">Metalink файлы</comment>
- <comment xml:lang="ko">Metalink 파일</comment>
- <comment xml:lang="lt">Metalink failas</comment>
- <comment xml:lang="lv">Metalink datne</comment>
- <comment xml:lang="nl">Metalink bestand</comment>
- <comment xml:lang="oc">fichièr metalink</comment>
- <comment xml:lang="pl">Plik Metalink</comment>
- <comment xml:lang="pt">ficheiro Metalink</comment>
- <comment xml:lang="pt_BR">Arquivo Metalink</comment>
- <comment xml:lang="ro">Fișier Metalink</comment>
- <comment xml:lang="ru">Файл Metalink</comment>
- <comment xml:lang="sk">Súbor Metalink</comment>
- <comment xml:lang="sl">Datoteka povezave Metalink</comment>
- <comment xml:lang="sr">датотека метавезе</comment>
- <comment xml:lang="sv">Metalink-fil</comment>
- <comment xml:lang="tr">Metalink dosyası</comment>
- <comment xml:lang="uk">файл метапосилання</comment>
- <comment xml:lang="zh_CN">Metalink 文件</comment>
<comment xml:lang="zh_TW">Metalink 檔案</comment>
+ <comment xml:lang="zh_CN">Metalink 文件</comment>
+ <comment xml:lang="uk">файл метапосилання</comment>
+ <comment xml:lang="tr">Metalink dosyası</comment>
+ <comment xml:lang="sv">Metalink-fil</comment>
+ <comment xml:lang="sr">датотека метавезе</comment>
+ <comment xml:lang="sq">kartelë Metalink</comment>
+ <comment xml:lang="sl">Datoteka povezave Metalink</comment>
+ <comment xml:lang="si">Metalink ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Metalink</comment>
+ <comment xml:lang="ru">Файл Metalink</comment>
+ <comment xml:lang="ro">Fișier Metalink</comment>
+ <comment xml:lang="pt_BR">Arquivo Metalink</comment>
+ <comment xml:lang="pt">ficheiro Metalink</comment>
+ <comment xml:lang="pl">Plik Metalink</comment>
+ <comment xml:lang="oc">fichièr metalink</comment>
+ <comment xml:lang="nl">Metalink-bestand</comment>
+ <comment xml:lang="lv">Metalink datne</comment>
+ <comment xml:lang="lt">Metalink failas</comment>
+ <comment xml:lang="ko">Metalink 파일</comment>
+ <comment xml:lang="kk">Metalink файлы</comment>
+ <comment xml:lang="ka">მეტაბმულის ფაილი</comment>
+ <comment xml:lang="ja">Metalink ファイル</comment>
+ <comment xml:lang="it">File Metalink</comment>
+ <comment xml:lang="is">Metalink skrá</comment>
+ <comment xml:lang="id">Berkas Metalink</comment>
+ <comment xml:lang="ia">File Metalink</comment>
+ <comment xml:lang="hu">Metalink fájl</comment>
+ <comment xml:lang="hr">Datoteka meta poveznice</comment>
+ <comment xml:lang="he">קובץ Metalink</comment>
+ <comment xml:lang="gl">ficheiro Metalink</comment>
+ <comment xml:lang="ga">comhad Metalink</comment>
+ <comment xml:lang="fur">file Metalink</comment>
+ <comment xml:lang="fr">fichier metalink</comment>
+ <comment xml:lang="fo">Metalink fíla</comment>
+ <comment xml:lang="fi">Metalink-tiedosto</comment>
+ <comment xml:lang="eu">Metaestekaren fitxategia</comment>
+ <comment xml:lang="es">archivo de Metalink</comment>
+ <comment xml:lang="eo">Metalink-dosiero</comment>
+ <comment xml:lang="en_GB">Metalink file</comment>
+ <comment xml:lang="el">Αρχείο Metalink</comment>
+ <comment xml:lang="de">Metalink-Datei</comment>
+ <comment xml:lang="da">Metahenvisningsfil</comment>
+ <comment xml:lang="cs">soubor metalink</comment>
+ <comment xml:lang="ca">fitxer Metalink</comment>
+ <comment xml:lang="bg">Изтегляне — Metalink</comment>
+ <comment xml:lang="be">файл Metalink</comment>
+ <comment xml:lang="ast">Ficheru d'enllaz meta</comment>
+ <comment xml:lang="ar">ملف ميتالنك</comment>
+ <comment xml:lang="af">Metalink-lêer</comment>
<sub-class-of type="application/xml"/>
- <magic priority="50">
- <match value="&lt;metalink xmlns=&quot;urn" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;metalink xmlns=&quot;urn" offset="0:256"/>
</magic>
<glob pattern="*.meta4"/>
<root-XML namespaceURI="urn:ietf:params:xml:ns:metalink" localName="metalink"/>
</mime-type>
<mime-type type="application/octet-stream">
- <comment>unknown</comment>
- <comment xml:lang="ar">مجهول</comment>
- <comment xml:lang="ast">desconozse</comment>
- <comment xml:lang="be@latin">nieviadomy</comment>
- <comment xml:lang="bg">Неизвестен тип</comment>
- <comment xml:lang="ca">desconegut</comment>
- <comment xml:lang="cs">neznámý</comment>
- <comment xml:lang="da">ukendt</comment>
- <comment xml:lang="de">unbekannt</comment>
- <comment xml:lang="el">Άγνωστο</comment>
- <comment xml:lang="en_GB">unknown</comment>
- <comment xml:lang="eo">nekonate</comment>
- <comment xml:lang="es">desconocido</comment>
- <comment xml:lang="eu">ezezaguna</comment>
- <comment xml:lang="fi">tuntematon</comment>
- <comment xml:lang="fo">ókent</comment>
- <comment xml:lang="fr">inconnu</comment>
- <comment xml:lang="ga">anaithnid</comment>
- <comment xml:lang="gl">descoñecido</comment>
- <comment xml:lang="he">לא ידוע</comment>
- <comment xml:lang="hr">Nepoznato</comment>
- <comment xml:lang="hu">ismeretlen</comment>
- <comment xml:lang="ia">incognite</comment>
- <comment xml:lang="id">tak diketahui</comment>
- <comment xml:lang="it">Sconosciuto</comment>
- <comment xml:lang="ja">不明</comment>
- <comment xml:lang="ka">უცნობი</comment>
- <comment xml:lang="kk">белгісіз</comment>
- <comment xml:lang="ko">알 수 없음</comment>
- <comment xml:lang="lt">nežinoma</comment>
- <comment xml:lang="lv">nezināms</comment>
- <comment xml:lang="ms">Entah</comment>
- <comment xml:lang="nb">ukjent</comment>
- <comment xml:lang="nl">onbekend</comment>
- <comment xml:lang="nn">ukjend</comment>
- <comment xml:lang="oc">desconegut</comment>
- <comment xml:lang="pl">Nieznany typ</comment>
- <comment xml:lang="pt">desconhecido</comment>
- <comment xml:lang="pt_BR">Desconhecido</comment>
- <comment xml:lang="ro">necunoscut</comment>
+ <comment>Unknown</comment>
+ <comment xml:lang="zh_TW">未知</comment>
+ <comment xml:lang="uk">невідомий</comment>
+ <comment xml:lang="sv">Okänd</comment>
+ <comment xml:lang="sq">I panjohur</comment>
<comment xml:lang="ru">Неизвестно</comment>
- <comment xml:lang="sk">Neznámy</comment>
- <comment xml:lang="sl">neznano</comment>
- <comment xml:lang="sq">Nuk njihet</comment>
- <comment xml:lang="sr">непознато</comment>
- <comment xml:lang="sv">okänd</comment>
- <comment xml:lang="tr">bilinmeyen</comment>
- <comment xml:lang="uk">невідомо</comment>
- <comment xml:lang="vi">không rõ</comment>
- <comment xml:lang="zh_CN">未知</comment>
- <comment xml:lang="zh_TW">不明</comment>
+ <comment xml:lang="pt_BR">Desconhecido</comment>
+ <comment xml:lang="pl">Nieznany typ</comment>
+ <comment xml:lang="ja">不明</comment>
+ <comment xml:lang="it">Sconosciuto</comment>
+ <comment xml:lang="gl">Descoñecido</comment>
+ <comment xml:lang="eu">Ezezaguna</comment>
+ <comment xml:lang="es">desconocido</comment>
+ <comment xml:lang="de">Unbekannt</comment>
+ <comment xml:lang="be">невядома</comment>
</mime-type>
<mime-type type="application/x-partial-download">
<comment>Partially downloaded file</comment>
- <comment xml:lang="ast">Ficheru baxáu parcialmente</comment>
- <comment xml:lang="ca">fitxer baixat parcialment</comment>
- <comment xml:lang="cs">částečně stažený soubor</comment>
- <comment xml:lang="da">Delvist hentet fil</comment>
- <comment xml:lang="de">Teilweise heruntergeladene Datei</comment>
- <comment xml:lang="el">Μερικώς ληφθέντο αρχείο</comment>
- <comment xml:lang="en_GB">Partially downloaded file</comment>
- <comment xml:lang="es">archivo descargado parcialmente</comment>
- <comment xml:lang="eu">Partzialki deskargatutako fitxategia</comment>
- <comment xml:lang="fi">Osittain ladattu tiedosto</comment>
- <comment xml:lang="fr">fichier partiellement téléchargé</comment>
- <comment xml:lang="ga">Comhad leath-íoslódáilte</comment>
- <comment xml:lang="gl">Ficheiro descargado parcialmente</comment>
- <comment xml:lang="he">קובץ שהתקבל חלקית</comment>
- <comment xml:lang="hr">Djelomično preuzeta datoteka</comment>
- <comment xml:lang="hu">Részben letöltött fájl</comment>
- <comment xml:lang="ia">File partialmente discargate</comment>
- <comment xml:lang="id">Berkas yang terunduh sebagian</comment>
- <comment xml:lang="it">File parzialmente scaricato</comment>
- <comment xml:lang="kk">Жартылай жүктелген файл</comment>
- <comment xml:lang="ko">일부 다운로드한 파일</comment>
- <comment xml:lang="oc">fichièr parcialament telecargat</comment>
- <comment xml:lang="pl">Częściowo pobrany plik</comment>
- <comment xml:lang="pt">Ficheiro parcialmente transferido</comment>
- <comment xml:lang="pt_BR">Arquivo baixado parcialmente</comment>
- <comment xml:lang="ru">Частично загруженный файл</comment>
- <comment xml:lang="sk">Čiastočne stiahnutý súbor</comment>
- <comment xml:lang="sl">Delno prenesena datoteka</comment>
- <comment xml:lang="sr">делимично преузета датотека</comment>
- <comment xml:lang="sv">Delvis hämtad fil</comment>
- <comment xml:lang="tr">Kısmen indirilmiş dosya</comment>
- <comment xml:lang="uk">частково отриманий файл</comment>
- <comment xml:lang="zh_CN">部分下载的文件</comment>
<comment xml:lang="zh_TW">已部份下載的檔案</comment>
+ <comment xml:lang="zh_CN">部分下载的文件</comment>
+ <comment xml:lang="uk">частково отриманий файл</comment>
+ <comment xml:lang="tr">Kısmen indirilmiş dosya</comment>
+ <comment xml:lang="sv">Delvis hämtad fil</comment>
+ <comment xml:lang="sr">делимично преузета датотека</comment>
+ <comment xml:lang="sq">Kartelë e shkarkuar pjesërisht</comment>
+ <comment xml:lang="sl">Delno prenesena datoteka</comment>
+ <comment xml:lang="si">අර්ධ වශයෙන් බාගත කළ ගොනුව</comment>
+ <comment xml:lang="sk">Čiastočne stiahnutý súbor</comment>
+ <comment xml:lang="ru">Частично загруженный файл</comment>
+ <comment xml:lang="pt_BR">Arquivo baixado parcialmente</comment>
+ <comment xml:lang="pt">ficheiro descarregado parcialmente</comment>
+ <comment xml:lang="pl">Częściowo pobrany plik</comment>
+ <comment xml:lang="oc">fichièr parcialament telecargat</comment>
+ <comment xml:lang="nl">Gedeeltelijk gedownload bestand</comment>
+ <comment xml:lang="lt">Dalinai atsiųstas failas</comment>
+ <comment xml:lang="ko">일부 다운로드한 파일</comment>
+ <comment xml:lang="kk">Жартылай жүктелген файл</comment>
+ <comment xml:lang="ka">ნაწილობრივ გადმოწერილი ფაილი</comment>
+ <comment xml:lang="ja">部分的にダウンロードされたファイル</comment>
+ <comment xml:lang="it">File parzialmente scaricato</comment>
+ <comment xml:lang="is">skrá sótt að hluta</comment>
+ <comment xml:lang="id">Berkas yang terunduh sebagian</comment>
+ <comment xml:lang="ia">File partialmente discargate</comment>
+ <comment xml:lang="hu">Részben letöltött fájl</comment>
+ <comment xml:lang="hr">Djelomično preuzeta datoteka</comment>
+ <comment xml:lang="he">קובץ שהתקבל חלקית</comment>
+ <comment xml:lang="gl">Ficheiro descargado parcialmente</comment>
+ <comment xml:lang="ga">Comhad leath-íoslódáilte</comment>
+ <comment xml:lang="fur">file no discjariât dal dut</comment>
+ <comment xml:lang="fr">fichier partiellement téléchargé</comment>
+ <comment xml:lang="fi">Osittain ladattu tiedosto</comment>
+ <comment xml:lang="eu">Partzialki deskargatutako fitxategia</comment>
+ <comment xml:lang="es">archivo descargado parcialmente</comment>
+ <comment xml:lang="en_GB">Partially downloaded file</comment>
+ <comment xml:lang="el">Μερικώς ληφθέντο αρχείο</comment>
+ <comment xml:lang="de">Teilweise heruntergeladene Datei</comment>
+ <comment xml:lang="da">Delvist downloadet fil</comment>
+ <comment xml:lang="cs">částečně stažený soubor</comment>
+ <comment xml:lang="ca">fitxer baixat parcialment</comment>
+ <comment xml:lang="bg">Частично изтеглен файл</comment>
+ <comment xml:lang="be">часткова спампаваны файл</comment>
+ <comment xml:lang="ast">Ficheru baxáu parcialmente</comment>
+ <comment xml:lang="ar">ملف منزل جزئياً</comment>
+ <comment xml:lang="af">Gedeeltelik afgelaaide lêer</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.wkdownload"/>
<glob pattern="*.crdownload"/>
@@ -763,58 +770,63 @@
</mime-type>
<mime-type type="application/oda">
<comment>ODA document</comment>
- <comment xml:lang="ar">مستند ODA</comment>
- <comment xml:lang="ast">Documentu ODA</comment>
- <comment xml:lang="az">ODA sənədi</comment>
- <comment xml:lang="be@latin">Dakument ODA</comment>
- <comment xml:lang="bg">Документ — ODA</comment>
- <comment xml:lang="ca">document ODA</comment>
- <comment xml:lang="cs">dokument ODA</comment>
- <comment xml:lang="cy">Dogfen ODA</comment>
- <comment xml:lang="da">ODA-dokument</comment>
- <comment xml:lang="de">ODA-Dokument</comment>
- <comment xml:lang="el">Έγγραφο ODA</comment>
- <comment xml:lang="en_GB">ODA document</comment>
- <comment xml:lang="eo">ODA-dokumento</comment>
- <comment xml:lang="es">documento ODA</comment>
- <comment xml:lang="eu">ODA dokumentua</comment>
- <comment xml:lang="fi">ODA-asiakirja</comment>
- <comment xml:lang="fo">ODA skjal</comment>
- <comment xml:lang="fr">document ODA</comment>
- <comment xml:lang="ga">cáipéis ODA</comment>
- <comment xml:lang="gl">documento ODA</comment>
- <comment xml:lang="he">מסמך ODA</comment>
- <comment xml:lang="hr">ODA dokument</comment>
- <comment xml:lang="hu">ODA-dokumentum</comment>
- <comment xml:lang="ia">Documento ODA</comment>
- <comment xml:lang="id">Dokumen ODA</comment>
- <comment xml:lang="it">Documento ODA</comment>
- <comment xml:lang="ja">ODA ドキュメント</comment>
- <comment xml:lang="ka">ODA დოკუმენტი</comment>
- <comment xml:lang="kk">ODA құжаты</comment>
- <comment xml:lang="ko">ODA 문서</comment>
- <comment xml:lang="lt">ODA dokumentas</comment>
- <comment xml:lang="lv">ODA dokuments</comment>
- <comment xml:lang="ms">Dokumen ODA</comment>
- <comment xml:lang="nb">ODA-dokument</comment>
- <comment xml:lang="nl">ODA-document</comment>
- <comment xml:lang="nn">ODA-dokument</comment>
- <comment xml:lang="oc">document ODA</comment>
- <comment xml:lang="pl">Dokument ODA</comment>
- <comment xml:lang="pt">documento ODA</comment>
- <comment xml:lang="pt_BR">Documento ODA</comment>
- <comment xml:lang="ro">Document ODA</comment>
- <comment xml:lang="ru">Документ ODA</comment>
- <comment xml:lang="sk">Dokument ODA</comment>
- <comment xml:lang="sl">Dokument ODA</comment>
- <comment xml:lang="sq">Dokument ODA</comment>
- <comment xml:lang="sr">ОДА документ</comment>
- <comment xml:lang="sv">ODA-dokument</comment>
- <comment xml:lang="tr">ODA belgesi</comment>
- <comment xml:lang="uk">документ ODA</comment>
- <comment xml:lang="vi">Tài liệu ODA</comment>
- <comment xml:lang="zh_CN">ODA 文档</comment>
<comment xml:lang="zh_TW">ODA 文件</comment>
+ <comment xml:lang="zh_CN">ODA 文档</comment>
+ <comment xml:lang="vi">Tài liệu ODA</comment>
+ <comment xml:lang="uk">документ ODA</comment>
+ <comment xml:lang="tr">ODA belgesi</comment>
+ <comment xml:lang="sv">ODA-dokument</comment>
+ <comment xml:lang="sr">ОДА документ</comment>
+ <comment xml:lang="sq">dokument ODA</comment>
+ <comment xml:lang="sl">Dokument ODA</comment>
+ <comment xml:lang="si">ODA ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument ODA</comment>
+ <comment xml:lang="ru">Документ ODA</comment>
+ <comment xml:lang="ro">Document ODA</comment>
+ <comment xml:lang="pt_BR">Documento ODA</comment>
+ <comment xml:lang="pt">documento ODA</comment>
+ <comment xml:lang="pl">Dokument ODA</comment>
+ <comment xml:lang="oc">document ODA</comment>
+ <comment xml:lang="nn">ODA-dokument</comment>
+ <comment xml:lang="nl">ODA-document</comment>
+ <comment xml:lang="nb">ODA-dokument</comment>
+ <comment xml:lang="ms">Dokumen ODA</comment>
+ <comment xml:lang="lv">ODA dokuments</comment>
+ <comment xml:lang="lt">ODA dokumentas</comment>
+ <comment xml:lang="ko">ODA 문서</comment>
+ <comment xml:lang="kk">ODA құжаты</comment>
+ <comment xml:lang="ka">ODA დოკუმენტი</comment>
+ <comment xml:lang="ja">ODA ドキュメント</comment>
+ <comment xml:lang="it">Documento ODA</comment>
+ <comment xml:lang="is">ODA skjal</comment>
+ <comment xml:lang="id">Dokumen ODA</comment>
+ <comment xml:lang="ia">Documento ODA</comment>
+ <comment xml:lang="hu">ODA-dokumentum</comment>
+ <comment xml:lang="hr">ODA dokument</comment>
+ <comment xml:lang="he">מסמך ODA</comment>
+ <comment xml:lang="gl">documento ODA</comment>
+ <comment xml:lang="ga">cáipéis ODA</comment>
+ <comment xml:lang="fur">document ODA</comment>
+ <comment xml:lang="fr">document ODA</comment>
+ <comment xml:lang="fo">ODA skjal</comment>
+ <comment xml:lang="fi">ODA-asiakirja</comment>
+ <comment xml:lang="eu">ODA dokumentua</comment>
+ <comment xml:lang="es">documento ODA</comment>
+ <comment xml:lang="eo">ODA-dokumento</comment>
+ <comment xml:lang="en_GB">ODA document</comment>
+ <comment xml:lang="el">Έγγραφο ODA</comment>
+ <comment xml:lang="de">ODA-Dokument</comment>
+ <comment xml:lang="da">ODA-dokument</comment>
+ <comment xml:lang="cy">Dogfen ODA</comment>
+ <comment xml:lang="cs">dokument ODA</comment>
+ <comment xml:lang="ca">document ODA</comment>
+ <comment xml:lang="bg">Документ — ODA</comment>
+ <comment xml:lang="be@latin">Dakument ODA</comment>
+ <comment xml:lang="be">дакумент ODA</comment>
+ <comment xml:lang="az">ODA sənədi</comment>
+ <comment xml:lang="ast">Documentu ODA</comment>
+ <comment xml:lang="ar">مستند ODA</comment>
+ <comment xml:lang="af">ODA-dokument</comment>
<acronym>ODA</acronym>
<expanded-acronym>Office Document Architecture</expanded-acronym>
<generic-icon name="x-office-document"/>
@@ -822,46 +834,54 @@
</mime-type>
<mime-type type="application/x-wwf">
<comment>WWF document</comment>
- <comment xml:lang="ast">Documentu WWF</comment>
- <comment xml:lang="bg">Документ — WWF</comment>
- <comment xml:lang="ca">document WWF</comment>
- <comment xml:lang="cs">dokument WWF</comment>
- <comment xml:lang="da">WWF-dokument</comment>
- <comment xml:lang="de">WWF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο WWF</comment>
- <comment xml:lang="en_GB">WWF document</comment>
- <comment xml:lang="eo">WWF-dokumento</comment>
- <comment xml:lang="es">documento WWF</comment>
- <comment xml:lang="eu">WWF dokumentua</comment>
- <comment xml:lang="fi">WWF-asiakirja</comment>
- <comment xml:lang="fr">document WWF</comment>
- <comment xml:lang="ga">cáipéis WWF</comment>
- <comment xml:lang="gl">documento de WWF</comment>
- <comment xml:lang="he">מסמך WWF</comment>
- <comment xml:lang="hr">WWF dokument</comment>
- <comment xml:lang="hu">WWF-dokumentum</comment>
- <comment xml:lang="ia">Documento WWF</comment>
- <comment xml:lang="id">Dokumen WWF</comment>
- <comment xml:lang="it">Documento WWF</comment>
- <comment xml:lang="ja">WWF 文書</comment>
- <comment xml:lang="ka">WWF დოკუმენტი</comment>
- <comment xml:lang="kk">WWF құжаты</comment>
- <comment xml:lang="ko">WWF 문서</comment>
- <comment xml:lang="lv">WWF dokuments</comment>
- <comment xml:lang="nl">WWF document</comment>
- <comment xml:lang="oc">document WWF</comment>
- <comment xml:lang="pl">Dokument WWF</comment>
- <comment xml:lang="pt">documento WWF</comment>
- <comment xml:lang="pt_BR">Documento WWF</comment>
- <comment xml:lang="ru">Документ WWF</comment>
- <comment xml:lang="sk">Dokument WWF</comment>
- <comment xml:lang="sl">Dokument WWF</comment>
- <comment xml:lang="sr">ВВФ документ</comment>
- <comment xml:lang="sv">WWF-dokument</comment>
- <comment xml:lang="tr">WWF belgesi</comment>
- <comment xml:lang="uk">документ WWF</comment>
- <comment xml:lang="zh_CN">WWF</comment>
<comment xml:lang="zh_TW">WWF 文件</comment>
+ <comment xml:lang="zh_CN">WWF</comment>
+ <comment xml:lang="uk">документ WWF</comment>
+ <comment xml:lang="tr">WWF belgesi</comment>
+ <comment xml:lang="sv">WWF-dokument</comment>
+ <comment xml:lang="sr">ВВФ документ</comment>
+ <comment xml:lang="sq">dokument WWF</comment>
+ <comment xml:lang="sl">Dokument WWF</comment>
+ <comment xml:lang="si">WWF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument WWF</comment>
+ <comment xml:lang="ru">Документ WWF</comment>
+ <comment xml:lang="pt_BR">Documento WWF</comment>
+ <comment xml:lang="pt">documento WWF</comment>
+ <comment xml:lang="pl">Dokument WWF</comment>
+ <comment xml:lang="oc">document WWF</comment>
+ <comment xml:lang="nl">WWF-document</comment>
+ <comment xml:lang="lv">WWF dokuments</comment>
+ <comment xml:lang="lt">WWF dokumentas</comment>
+ <comment xml:lang="ko">WWF 문서</comment>
+ <comment xml:lang="kk">WWF құжаты</comment>
+ <comment xml:lang="ka">WWF დოკუმენტი</comment>
+ <comment xml:lang="ja">WWF ドキュメント</comment>
+ <comment xml:lang="it">Documento WWF</comment>
+ <comment xml:lang="is">WWF skjal</comment>
+ <comment xml:lang="id">Dokumen WWF</comment>
+ <comment xml:lang="ia">Documento WWF</comment>
+ <comment xml:lang="hu">WWF-dokumentum</comment>
+ <comment xml:lang="hr">WWF dokument</comment>
+ <comment xml:lang="he">מסמך WWF</comment>
+ <comment xml:lang="gl">documento de WWF</comment>
+ <comment xml:lang="ga">cáipéis WWF</comment>
+ <comment xml:lang="fur">document WWF</comment>
+ <comment xml:lang="fr">document WWF</comment>
+ <comment xml:lang="fi">WWF-asiakirja</comment>
+ <comment xml:lang="eu">WWF dokumentua</comment>
+ <comment xml:lang="es">documento WWF</comment>
+ <comment xml:lang="eo">WWF-dokumento</comment>
+ <comment xml:lang="en_GB">WWF document</comment>
+ <comment xml:lang="el">Έγγραφο WWF</comment>
+ <comment xml:lang="de">WWF-Dokument</comment>
+ <comment xml:lang="da">WWF-dokument</comment>
+ <comment xml:lang="cs">dokument WWF</comment>
+ <comment xml:lang="ca">document WWF</comment>
+ <comment xml:lang="bg">Документ — WWF</comment>
+ <comment xml:lang="be">дакумент WWF</comment>
+ <comment xml:lang="ast">Documentu WWF</comment>
+ <comment xml:lang="ar">مستند WWF</comment>
+ <comment xml:lang="af">WWF-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.wwf"/>
<sub-class-of type="application/pdf"/>
@@ -869,61 +889,67 @@
</mime-type>
<mime-type type="application/pdf">
<comment>PDF document</comment>
- <comment xml:lang="ar">مستند PDF</comment>
- <comment xml:lang="ast">Documentu PDF</comment>
- <comment xml:lang="be@latin">Dakument PDF</comment>
- <comment xml:lang="bg">Документ — PDF</comment>
- <comment xml:lang="ca">document PDF</comment>
- <comment xml:lang="cs">dokument PDF</comment>
- <comment xml:lang="cy">Dogfen PDF</comment>
- <comment xml:lang="da">PDF-dokument</comment>
- <comment xml:lang="de">PDF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο PDF</comment>
- <comment xml:lang="en_GB">PDF document</comment>
- <comment xml:lang="eo">PDF-dokumento</comment>
- <comment xml:lang="es">documento PDF</comment>
- <comment xml:lang="eu">PDF dokumentua</comment>
- <comment xml:lang="fi">PDF-asiakirja</comment>
- <comment xml:lang="fo">PDF skjal</comment>
- <comment xml:lang="fr">document PDF</comment>
- <comment xml:lang="ga">cáipéis PDF</comment>
- <comment xml:lang="gl">documento PDF</comment>
- <comment xml:lang="he">מסמך PDF</comment>
- <comment xml:lang="hr">PDF dokument</comment>
- <comment xml:lang="hu">PDF-dokumentum</comment>
- <comment xml:lang="ia">Documento PDF</comment>
- <comment xml:lang="id">Dokumen PDF</comment>
- <comment xml:lang="it">Documento PDF</comment>
- <comment xml:lang="ja">PDF ドキュメント</comment>
- <comment xml:lang="kk">PDF құжаты</comment>
- <comment xml:lang="ko">PDF 문서</comment>
- <comment xml:lang="lt">PDF dokumentas</comment>
- <comment xml:lang="lv">PDF dokuments</comment>
- <comment xml:lang="ms">Dokumen PDF</comment>
- <comment xml:lang="nb">PDF-dokument</comment>
- <comment xml:lang="nl">PDF-document</comment>
- <comment xml:lang="nn">PDF-dokument</comment>
- <comment xml:lang="oc">document PDF</comment>
- <comment xml:lang="pl">Dokument PDF</comment>
- <comment xml:lang="pt">documento PDF</comment>
- <comment xml:lang="pt_BR">Documento PDF</comment>
- <comment xml:lang="ro">Document PDF</comment>
- <comment xml:lang="ru">Документ PDF</comment>
- <comment xml:lang="sk">Dokument PDF</comment>
- <comment xml:lang="sl">Dokument PDF</comment>
- <comment xml:lang="sq">Dokument PDF</comment>
- <comment xml:lang="sr">ПДФ документ</comment>
- <comment xml:lang="sv">PDF-dokument</comment>
- <comment xml:lang="tr">PDF belgesi</comment>
- <comment xml:lang="uk">документ PDF</comment>
- <comment xml:lang="vi">Tài liệu PDF</comment>
- <comment xml:lang="zh_CN">PDF 文档</comment>
<comment xml:lang="zh_TW">PDF 文件</comment>
+ <comment xml:lang="zh_CN">PDF 文档</comment>
+ <comment xml:lang="vi">Tài liệu PDF</comment>
+ <comment xml:lang="uk">документ PDF</comment>
+ <comment xml:lang="tr">PDF belgesi</comment>
+ <comment xml:lang="sv">PDF-dokument</comment>
+ <comment xml:lang="sr">ПДФ документ</comment>
+ <comment xml:lang="sq">dokument PDF</comment>
+ <comment xml:lang="sl">Dokument PDF</comment>
+ <comment xml:lang="si">PDF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument PDF</comment>
+ <comment xml:lang="ru">Документ PDF</comment>
+ <comment xml:lang="ro">Document PDF</comment>
+ <comment xml:lang="pt_BR">Documento PDF</comment>
+ <comment xml:lang="pt">documento PDF</comment>
+ <comment xml:lang="pl">Dokument PDF</comment>
+ <comment xml:lang="oc">document PDF</comment>
+ <comment xml:lang="nn">PDF-dokument</comment>
+ <comment xml:lang="nl">PDF-document</comment>
+ <comment xml:lang="nb">PDF-dokument</comment>
+ <comment xml:lang="ms">Dokumen PDF</comment>
+ <comment xml:lang="lv">PDF dokuments</comment>
+ <comment xml:lang="lt">PDF dokumentas</comment>
+ <comment xml:lang="ko">PDF 문서</comment>
+ <comment xml:lang="kk">PDF құжаты</comment>
+ <comment xml:lang="ka">PDF დოკუმენტი</comment>
+ <comment xml:lang="ja">PDF ドキュメント</comment>
+ <comment xml:lang="it">Documento PDF</comment>
+ <comment xml:lang="is">PDF skjal</comment>
+ <comment xml:lang="id">Dokumen PDF</comment>
+ <comment xml:lang="ia">Documento PDF</comment>
+ <comment xml:lang="hu">PDF-dokumentum</comment>
+ <comment xml:lang="hr">PDF dokument</comment>
+ <comment xml:lang="he">מסמך PDF</comment>
+ <comment xml:lang="gl">documento PDF</comment>
+ <comment xml:lang="ga">cáipéis PDF</comment>
+ <comment xml:lang="fur">document PDF</comment>
+ <comment xml:lang="fr">document PDF</comment>
+ <comment xml:lang="fo">PDF skjal</comment>
+ <comment xml:lang="fi">PDF-asiakirja</comment>
+ <comment xml:lang="eu">PDF dokumentua</comment>
+ <comment xml:lang="es">documento PDF</comment>
+ <comment xml:lang="eo">PDF-dokumento</comment>
+ <comment xml:lang="en_GB">PDF document</comment>
+ <comment xml:lang="el">Έγγραφο PDF</comment>
+ <comment xml:lang="de">PDF-Dokument</comment>
+ <comment xml:lang="da">PDF-dokument</comment>
+ <comment xml:lang="cy">Dogfen PDF</comment>
+ <comment xml:lang="cs">dokument PDF</comment>
+ <comment xml:lang="ca">document PDF</comment>
+ <comment xml:lang="bg">Документ — PDF</comment>
+ <comment xml:lang="be@latin">Dakument PDF</comment>
+ <comment xml:lang="be">дакумент PDF</comment>
+ <comment xml:lang="ast">Documentu PDF</comment>
+ <comment xml:lang="ar">مستند PDF</comment>
+ <comment xml:lang="af">PDF-dokument</comment>
<acronym>PDF</acronym>
<expanded-acronym>Portable Document Format</expanded-acronym>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="%PDF-" type="string" offset="0:1024"/>
+ <magic>
+ <match type="string" value="%PDF-" offset="0:1024"/>
</magic>
<glob pattern="*.pdf"/>
<alias type="application/x-pdf"/>
@@ -933,61 +959,67 @@
</mime-type>
<mime-type type="application/xspf+xml">
<comment>XSPF playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل XSPF</comment>
- <comment xml:lang="ast">Llista de reproducción XSPF</comment>
- <comment xml:lang="be@latin">Śpis piesień XSPF</comment>
- <comment xml:lang="bg">Списък за изпълнение — XSPF</comment>
- <comment xml:lang="ca">llista de reproducció XSPF</comment>
- <comment xml:lang="cs">seznam k přehrání XSPF</comment>
- <comment xml:lang="da">XSPF-afspilningsliste</comment>
- <comment xml:lang="de">XSPF-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής XSPF</comment>
- <comment xml:lang="en_GB">XSPF playlist</comment>
- <comment xml:lang="eo">XSPF-ludlisto</comment>
- <comment xml:lang="es">lista de reproducción XSPF</comment>
- <comment xml:lang="eu">XSPF erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">XSPF-soittolista</comment>
- <comment xml:lang="fo">XSPF avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture XSPF</comment>
- <comment xml:lang="ga">seinmliosta XSPF</comment>
- <comment xml:lang="gl">lista de reprodución XSPF</comment>
- <comment xml:lang="he">רשימת נגינה XSPF</comment>
- <comment xml:lang="hr">XSPF popis izvođenja</comment>
- <comment xml:lang="hu">XSPF-lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection XSPF</comment>
- <comment xml:lang="id">Senarai pular XSPF</comment>
- <comment xml:lang="it">Playlist XSPF</comment>
- <comment xml:lang="ja">XSPF 再生リスト</comment>
- <comment xml:lang="kk">XSPF ойнау тізімі</comment>
- <comment xml:lang="ko">XSPF 재생 목록</comment>
- <comment xml:lang="lt">XSPF grojaraštis</comment>
- <comment xml:lang="lv">XSPF repertuārs</comment>
- <comment xml:lang="nb">XSPF-spilleliste</comment>
- <comment xml:lang="nl">XSPF-afspeellijst</comment>
- <comment xml:lang="nn">XSPF-speleliste</comment>
- <comment xml:lang="oc">lista de lectura XSPF</comment>
- <comment xml:lang="pl">Lista odtwarzania XSPF</comment>
- <comment xml:lang="pt">lista de reprodução XSPF</comment>
- <comment xml:lang="pt_BR">Lista de reprodução XSPF</comment>
- <comment xml:lang="ro">Listă XSPF</comment>
- <comment xml:lang="ru">Список воспроизведения XSPF</comment>
- <comment xml:lang="sk">Zoznam skladieb XSPF</comment>
- <comment xml:lang="sl">Seznam predvajanja XSPF</comment>
- <comment xml:lang="sq">Listë titujsh XSPF</comment>
- <comment xml:lang="sr">ИксСПФ списак нумера</comment>
- <comment xml:lang="sv">XSPF-spellista</comment>
- <comment xml:lang="tr">XSPF çalma listesi</comment>
- <comment xml:lang="uk">список програвання XSPF</comment>
- <comment xml:lang="vi">Danh mục nhạc XSPF</comment>
- <comment xml:lang="zh_CN">XSPF 播放列表</comment>
<comment xml:lang="zh_TW">XSPF 播放清單</comment>
+ <comment xml:lang="zh_CN">XSPF 播放列表</comment>
+ <comment xml:lang="vi">Danh mục nhạc XSPF</comment>
+ <comment xml:lang="uk">список програвання XSPF</comment>
+ <comment xml:lang="tr">XSPF çalma listesi</comment>
+ <comment xml:lang="sv">XSPF-spellista</comment>
+ <comment xml:lang="sr">ИксСПФ списак нумера</comment>
+ <comment xml:lang="sq">luajlistë XSPF</comment>
+ <comment xml:lang="sl">Seznam predvajanja XSPF</comment>
+ <comment xml:lang="si">XSPF ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb XSPF</comment>
+ <comment xml:lang="ru">Список воспроизведения XSPF</comment>
+ <comment xml:lang="ro">Listă XSPF</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução XSPF</comment>
+ <comment xml:lang="pt">lista de reprodução XSPF</comment>
+ <comment xml:lang="pl">Lista odtwarzania XSPF</comment>
+ <comment xml:lang="oc">lista de lectura XSPF</comment>
+ <comment xml:lang="nn">XSPF-speleliste</comment>
+ <comment xml:lang="nl">XSPF-afspeellijst</comment>
+ <comment xml:lang="nb">XSPF-spilleliste</comment>
+ <comment xml:lang="lv">XSPF repertuārs</comment>
+ <comment xml:lang="lt">XSPF grojaraštis</comment>
+ <comment xml:lang="ko">XSPF 재생 목록</comment>
+ <comment xml:lang="kk">XSPF ойнау тізімі</comment>
+ <comment xml:lang="ka">XSPF დასაკრავი სია</comment>
+ <comment xml:lang="ja">XSPF プレイリスト</comment>
+ <comment xml:lang="it">Playlist XSPF</comment>
+ <comment xml:lang="is">XSPF spilunarlisti</comment>
+ <comment xml:lang="id">Senarai pular XSPF</comment>
+ <comment xml:lang="ia">Lista de selection XSPF</comment>
+ <comment xml:lang="hu">XSPF-lejátszólista</comment>
+ <comment xml:lang="hr">XSPF popis izvođenja</comment>
+ <comment xml:lang="he">רשימת נגינה XSPF</comment>
+ <comment xml:lang="gl">lista de reprodución XSPF</comment>
+ <comment xml:lang="ga">seinmliosta XSPF</comment>
+ <comment xml:lang="fur">liste di riproduzion XSPF</comment>
+ <comment xml:lang="fr">liste de lecture XSPF</comment>
+ <comment xml:lang="fo">XSPF avspælingarlisti</comment>
+ <comment xml:lang="fi">XSPF-soittolista</comment>
+ <comment xml:lang="eu">XSPF erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción XSPF</comment>
+ <comment xml:lang="eo">XSPF-ludlisto</comment>
+ <comment xml:lang="en_GB">XSPF playlist</comment>
+ <comment xml:lang="el">Λίστα αναπαραγωγής XSPF</comment>
+ <comment xml:lang="de">XSPF-Wiedergabeliste</comment>
+ <comment xml:lang="da">XSPF-afspilningsliste</comment>
+ <comment xml:lang="cs">seznam k přehrání XSPF</comment>
+ <comment xml:lang="ca">llista de reproducció XSPF</comment>
+ <comment xml:lang="bg">Списък за изпълнение — XSPF</comment>
+ <comment xml:lang="be@latin">Śpis piesień XSPF</comment>
+ <comment xml:lang="be">плэй-ліст XSPF</comment>
+ <comment xml:lang="ast">Llista de reproducción XSPF</comment>
+ <comment xml:lang="ar">قائمة تشغيل XSPF</comment>
+ <comment xml:lang="af">XSPF-speellys</comment>
<acronym>XSPF</acronym>
<expanded-acronym>XML Shareable Playlist Format</expanded-acronym>
<sub-class-of type="application/xml"/>
<generic-icon name="audio-x-generic"/>
- <magic priority="50">
- <match value="&lt;playlist version=&quot;1" type="string" offset="0:64"/>
- <match value="&lt;playlist version='1" type="string" offset="0:64"/>
+ <magic>
+ <match type="string" value="&lt;playlist version=&quot;1" offset="0:64"/>
+ <match type="string" value="&lt;playlist version='1" offset="0:64"/>
</magic>
<glob pattern="*.xspf"/>
<root-XML namespaceURI="http://xspf.org/ns/0/" localName="playlist"/>
@@ -995,428 +1027,413 @@
</mime-type>
<mime-type type="application/x-windows-themepack">
<comment>Microsoft Windows theme pack</comment>
- <comment xml:lang="ar">حزمة سمات Microsoft Works</comment>
- <comment xml:lang="ast">Paquete de temes de Microsoft Windows</comment>
- <comment xml:lang="bg">Пакет с тема — Microsoft Windows</comment>
- <comment xml:lang="ca">paquet de temes de Microsoft Windows</comment>
- <comment xml:lang="cs">balík motivů Microsoft Windows</comment>
- <comment xml:lang="da">Microsoft Windows-temapakke</comment>
- <comment xml:lang="de">Microsoft-Windows-Themenpaket</comment>
- <comment xml:lang="el">Πακέτο θέματος Microsoft Windows</comment>
- <comment xml:lang="en_GB">Microsoft Windows theme pack</comment>
- <comment xml:lang="es">paquete de tema para Microsoft Windows</comment>
- <comment xml:lang="eu">Microsoft Windows-en gaiaren paketea</comment>
- <comment xml:lang="fi">Microsoft Windows -teemapaketti</comment>
- <comment xml:lang="fo">Microsoft Windows tema pakki</comment>
- <comment xml:lang="fr">paquet de thèmes Microsoft Windows</comment>
- <comment xml:lang="ga">paca téamaí Microsoft Windows</comment>
- <comment xml:lang="gl">paquete de tema de Microsoft Windows</comment>
- <comment xml:lang="he">חבילת ערכות נושא של Microsoft Windows</comment>
- <comment xml:lang="hr">Microsoft Windows paket tema</comment>
- <comment xml:lang="hu">Microsoft Windows témacsomag</comment>
- <comment xml:lang="ia">Pacchetto de themas Microsoft Windows</comment>
- <comment xml:lang="id">Pak tema Microsoft Windows</comment>
- <comment xml:lang="it">Pacchetto temi Microsoft Windows</comment>
- <comment xml:lang="ja">Microsoft Windows テーマパック</comment>
- <comment xml:lang="ka">Microsoft Windows-ის თემის შეკვრა</comment>
- <comment xml:lang="kk">Microsoft Windows тема дестесі</comment>
- <comment xml:lang="ko">Microsoft Windows 테마 패키지</comment>
- <comment xml:lang="lt">Microsoft Windows temų paketas</comment>
- <comment xml:lang="lv">Microsoft Windows motīvu paka</comment>
- <comment xml:lang="nl">Microsoft Windows thema pack</comment>
- <comment xml:lang="oc">paquet de tèmas Microsoft Windows</comment>
- <comment xml:lang="pl">Pakiet motywu Microsoft Windows</comment>
- <comment xml:lang="pt">pacote de tema Microsoft Windows</comment>
- <comment xml:lang="pt_BR">Pacote de temas do Microsoft Windows</comment>
- <comment xml:lang="ro">Pachet de teme Microsoft Windows</comment>
- <comment xml:lang="ru">Пакет темы Microsoft Windows</comment>
- <comment xml:lang="sk">Balík tém Microsoft Windows</comment>
- <comment xml:lang="sl">Datoteka teme Microsoft Windows</comment>
- <comment xml:lang="sr">пакет теме Мајкрософт Виндоуза</comment>
- <comment xml:lang="sv">Microsoft Windows-temapaket</comment>
- <comment xml:lang="tr">Microsoft Windows tema paketi</comment>
- <comment xml:lang="uk">пакунок з темою Microsoft Windows</comment>
- <comment xml:lang="zh_CN">Microsoft Windows 主题包</comment>
<comment xml:lang="zh_TW">微軟視窗佈景主題包</comment>
+ <comment xml:lang="zh_CN">Microsoft Windows 主题包</comment>
+ <comment xml:lang="uk">пакунок з темою Microsoft Windows</comment>
+ <comment xml:lang="tr">Microsoft Windows tema paketi</comment>
+ <comment xml:lang="sv">Microsoft Windows-temapaket</comment>
+ <comment xml:lang="sr">пакет теме Мајкрософт Виндоуза</comment>
+ <comment xml:lang="sq">paketë temash Microsoft Windows</comment>
+ <comment xml:lang="sl">Datoteka teme Microsoft Windows</comment>
+ <comment xml:lang="si">Microsoft Windows තේමා ඇසුරුම</comment>
+ <comment xml:lang="sk">Balík tém Microsoft Windows</comment>
+ <comment xml:lang="ru">Пакет темы Microsoft Windows</comment>
+ <comment xml:lang="ro">Pachet de teme Microsoft Windows</comment>
+ <comment xml:lang="pt_BR">Pacote de temas do Microsoft Windows</comment>
+ <comment xml:lang="pt">pacote de tema Microsoft Windows</comment>
+ <comment xml:lang="pl">Pakiet motywu Microsoft Windows</comment>
+ <comment xml:lang="oc">paquet de tèmas Microsoft Windows</comment>
+ <comment xml:lang="nl">Microsoft Windows-themapakket</comment>
+ <comment xml:lang="lv">Microsoft Windows motīvu paka</comment>
+ <comment xml:lang="lt">Microsoft Windows temų paketas</comment>
+ <comment xml:lang="ko">Microsoft Windows 테마 패키지</comment>
+ <comment xml:lang="kk">Microsoft Windows тема дестесі</comment>
+ <comment xml:lang="ka">Microsoft Windows-ის თემის შეკვრა</comment>
+ <comment xml:lang="ja">Microsoft Windows テーマパック</comment>
+ <comment xml:lang="it">Pacchetto temi Microsoft Windows</comment>
+ <comment xml:lang="is">Microsoft Windows þemapakki</comment>
+ <comment xml:lang="id">Pak tema Microsoft Windows</comment>
+ <comment xml:lang="ia">Pacchetto de themas Microsoft Windows</comment>
+ <comment xml:lang="hu">Microsoft Windows témacsomag</comment>
+ <comment xml:lang="hr">Microsoft Windows paket tema</comment>
+ <comment xml:lang="he">חבילת ערכות נושא של Microsoft Windows</comment>
+ <comment xml:lang="gl">paquete de tema de Microsoft Windows</comment>
+ <comment xml:lang="ga">paca téamaí Microsoft Windows</comment>
+ <comment xml:lang="fur">pachet temis di Microsoft Windows</comment>
+ <comment xml:lang="fr">paquet de thèmes Microsoft Windows</comment>
+ <comment xml:lang="fo">Microsoft Windows tema pakki</comment>
+ <comment xml:lang="fi">Microsoft Windows -teemapaketti</comment>
+ <comment xml:lang="eu">Microsoft Windows-en gaiaren paketea</comment>
+ <comment xml:lang="es">paquete de tema para Microsoft Windows</comment>
+ <comment xml:lang="en_GB">Microsoft Windows theme pack</comment>
+ <comment xml:lang="el">Πακέτο θέματος Microsoft Windows</comment>
+ <comment xml:lang="de">Microsoft-Windows-Themenpaket</comment>
+ <comment xml:lang="da">Microsoft Windows-temapakke</comment>
+ <comment xml:lang="cs">balík motivů Microsoft Windows</comment>
+ <comment xml:lang="ca">paquet de temes de Microsoft Windows</comment>
+ <comment xml:lang="bg">Пакет с тема — Microsoft Windows</comment>
+ <comment xml:lang="be">пакет тэмы Microsoft Windows</comment>
+ <comment xml:lang="ast">Paquete de temes de Microsoft Windows</comment>
+ <comment xml:lang="ar">حزمة سمات Microsoft Works</comment>
+ <comment xml:lang="af">Microsoft Windows-temapak</comment>
<sub-class-of type="application/vnd.ms-cab-compressed"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.themepack"/>
</mime-type>
<mime-type type="audio/x-amzxml">
<comment>AmazonMP3 download file</comment>
- <comment xml:lang="ast">Ficheru de descarga AmazonMP3</comment>
- <comment xml:lang="ca">fitxer baixat d'AmazonMP3</comment>
- <comment xml:lang="cs">soubor stahování AmazonMP3</comment>
- <comment xml:lang="da">AmazonMP3-downloadfil</comment>
- <comment xml:lang="de">AmazonMP3-Herunterladedatei</comment>
- <comment xml:lang="el">Αρχείο λήψης AmazonMP3</comment>
- <comment xml:lang="en_GB">AmazonMP3 download file</comment>
- <comment xml:lang="es">archivo de descarga de AmazonMP3</comment>
- <comment xml:lang="eu">AmazonMP3 deskarga fitxategia</comment>
- <comment xml:lang="fr">fichier téléchargé AmazonMP3</comment>
- <comment xml:lang="ga">comhad íoslódáilte AmazonMP3</comment>
- <comment xml:lang="gl">Ficheiro de descarga de AmazonMP3</comment>
- <comment xml:lang="he">קובץ הורדת AmazonMP3</comment>
- <comment xml:lang="hr">AmazonMP3 preuzeta datoteka</comment>
- <comment xml:lang="hu">AmazonMP3 letöltésfájl</comment>
- <comment xml:lang="ia">File de discargamento AmazonMP3</comment>
- <comment xml:lang="id">Berkas unduh AmazonMP3</comment>
- <comment xml:lang="it">File scaricamento AmazonMP3</comment>
- <comment xml:lang="ja">AmazonMP3 ダウンロードファイル</comment>
- <comment xml:lang="kk">AmazonMP3 жүктеме файлы</comment>
- <comment xml:lang="ko">AmazonMP3 다운로드 파일</comment>
- <comment xml:lang="lv">AmazonMP3 lejupielādes datne</comment>
- <comment xml:lang="oc">fichièr telecargat AmazonMP3</comment>
- <comment xml:lang="pl">Pobrany plik AmazonMP3</comment>
- <comment xml:lang="pt">ficheiro transferido AmazonMP3</comment>
- <comment xml:lang="pt_BR">Arquivo de download AmazonMP3</comment>
- <comment xml:lang="ru">Файл загрузки AmazonMP3</comment>
- <comment xml:lang="sk">Stiahnutý súbor AmazonMP3 </comment>
- <comment xml:lang="sl">Datoteka prenosa AmazonMP3</comment>
- <comment xml:lang="sr">датотека преузимања АмазонаМП3</comment>
- <comment xml:lang="sv">AmazonMP3-hämtningsfil</comment>
- <comment xml:lang="tr">AmazonMP3 indirme dosyası</comment>
- <comment xml:lang="uk">файл завантаження AmazonMP3</comment>
- <comment xml:lang="zh_CN">AmazonMP3 下载文件</comment>
<comment xml:lang="zh_TW">AmazonMP3 下載檔</comment>
+ <comment xml:lang="zh_CN">AmazonMP3 下载文件</comment>
+ <comment xml:lang="uk">файл завантаження AmazonMP3</comment>
+ <comment xml:lang="tr">AmazonMP3 indirme dosyası</comment>
+ <comment xml:lang="sv">AmazonMP3-hämtningsfil</comment>
+ <comment xml:lang="sr">датотека преузимања АмазонаМП3</comment>
+ <comment xml:lang="sq">kartelë shkarkimi AmazonMP3</comment>
+ <comment xml:lang="sl">Datoteka prenosa AmazonMP3</comment>
+ <comment xml:lang="si">AmazonMP3 බාගත කිරීමේ ගොනුව</comment>
+ <comment xml:lang="sk">Stiahnutý súbor AmazonMP3 </comment>
+ <comment xml:lang="ru">Файл загрузки AmazonMP3</comment>
+ <comment xml:lang="pt_BR">Arquivo de download AmazonMP3</comment>
+ <comment xml:lang="pt">ficheiro transferido AmazonMP3</comment>
+ <comment xml:lang="pl">Pobrany plik AmazonMP3</comment>
+ <comment xml:lang="oc">fichièr telecargat AmazonMP3</comment>
+ <comment xml:lang="nl">AmazonMP3-downloadbestand</comment>
+ <comment xml:lang="lv">AmazonMP3 lejupielādes datne</comment>
+ <comment xml:lang="ko">AmazonMP3 다운로드 파일</comment>
+ <comment xml:lang="kk">AmazonMP3 жүктеме файлы</comment>
+ <comment xml:lang="ka">AmazonMP3 გადმოწერის ფაილი</comment>
+ <comment xml:lang="ja">AmazonMP3 ダウンロードファイル</comment>
+ <comment xml:lang="it">File scaricamento AmazonMP3</comment>
+ <comment xml:lang="is">AmazonMP3 niðurhalsskrá</comment>
+ <comment xml:lang="id">Berkas unduh AmazonMP3</comment>
+ <comment xml:lang="ia">File de discargamento AmazonMP3</comment>
+ <comment xml:lang="hu">AmazonMP3 letöltésfájl</comment>
+ <comment xml:lang="hr">AmazonMP3 preuzeta datoteka</comment>
+ <comment xml:lang="he">קובץ הורדת AmazonMP3</comment>
+ <comment xml:lang="gl">Ficheiro de descarga de AmazonMP3</comment>
+ <comment xml:lang="ga">comhad íoslódáilte AmazonMP3</comment>
+ <comment xml:lang="fur">file discjariât AmazonMP3</comment>
+ <comment xml:lang="fr">fichier téléchargé AmazonMP3</comment>
+ <comment xml:lang="fi">AmazonMP3-lataustiedosto</comment>
+ <comment xml:lang="eu">AmazonMP3 deskarga fitxategia</comment>
+ <comment xml:lang="es">archivo de descarga de AmazonMP3</comment>
+ <comment xml:lang="en_GB">AmazonMP3 download file</comment>
+ <comment xml:lang="el">Αρχείο λήψης AmazonMP3</comment>
+ <comment xml:lang="de">Amazon MP3-Download-Datei</comment>
+ <comment xml:lang="da">AmazonMP3-downloadfil</comment>
+ <comment xml:lang="cs">soubor stahování AmazonMP3</comment>
+ <comment xml:lang="ca">fitxer baixat d'AmazonMP3</comment>
+ <comment xml:lang="bg">Файл за изтегляне — AmazonMP3</comment>
+ <comment xml:lang="be">файл спампоўвання AmazonMP3</comment>
+ <comment xml:lang="ast">Ficheru de descarga AmazonMP3</comment>
+ <comment xml:lang="ar">ملف تنزيل AmazonMP3 </comment>
+ <comment xml:lang="af">AmazonMP3-aflaailêer</comment>
<glob pattern="*.amz"/>
</mime-type>
<mime-type type="audio/x-gsm">
<comment>GSM 06.10 audio</comment>
- <comment xml:lang="ar">GSM 06.10 سمعي</comment>
- <comment xml:lang="ast">Audiu GSM 6.10</comment>
- <comment xml:lang="bg">Аудио — GSM 06.10</comment>
- <comment xml:lang="ca">àudio de GSM 06.10</comment>
- <comment xml:lang="cs">zvuk GSM 06.10</comment>
- <comment xml:lang="da">GSM 06.10-lyd</comment>
- <comment xml:lang="de">GSM-06.10-Audio</comment>
- <comment xml:lang="el">Ήχος GSM 06.10</comment>
- <comment xml:lang="en_GB">GSM 06.10 audio</comment>
- <comment xml:lang="es">sonido GSM 06.10</comment>
- <comment xml:lang="eu">GSM 06.10 audioa</comment>
- <comment xml:lang="fi">GSM 06.10 -ääni</comment>
- <comment xml:lang="fo">GSM 06.10 ljóður</comment>
- <comment xml:lang="fr">audio GSM 06.10</comment>
- <comment xml:lang="ga">fuaim GSM 06.10</comment>
- <comment xml:lang="gl">son de GSM 06.10</comment>
- <comment xml:lang="he">שמע GSM 06.10</comment>
- <comment xml:lang="hr">GSM 06.10 zvučni zapis</comment>
- <comment xml:lang="hu">GSM 06.10 hang</comment>
- <comment xml:lang="ia">Audio GSM 06.10</comment>
- <comment xml:lang="id">Audio GSM 06.10</comment>
- <comment xml:lang="it">Audio GSM 06.10</comment>
- <comment xml:lang="ja">GSM 06.10 オーディオ</comment>
- <comment xml:lang="ka">GSM 06.10 აუდიო</comment>
- <comment xml:lang="kk">GSM 06.10 аудиосы</comment>
- <comment xml:lang="ko">GSM 06.10 오디오</comment>
- <comment xml:lang="lt">GSM 06.10 garso įrašas</comment>
- <comment xml:lang="lv">GSM 06.10 audio</comment>
- <comment xml:lang="nl">GSM 06.10 audio</comment>
- <comment xml:lang="oc">àudio GSM 06.10</comment>
- <comment xml:lang="pl">Plik dźwiękowy GSM 06.10</comment>
- <comment xml:lang="pt">áudio GSM 06.10</comment>
- <comment xml:lang="pt_BR">Áudio GSM 06.10</comment>
- <comment xml:lang="ro">GSM 06.10 audio</comment>
- <comment xml:lang="ru">Аудио GSM 06.10</comment>
- <comment xml:lang="sk">Zvuk GSM 06.10</comment>
- <comment xml:lang="sl">Zvočna datoteka GSM 06.10</comment>
- <comment xml:lang="sr">ГСМ 06.10 звук</comment>
- <comment xml:lang="sv">GSM 06.10-ljud</comment>
- <comment xml:lang="tr">GSM 06.10 ses dosyası</comment>
- <comment xml:lang="uk">звук GSM 06.10</comment>
- <comment xml:lang="vi">Âm thanh GSM 06.10</comment>
- <comment xml:lang="zh_CN">GSM 06.10 音频</comment>
<comment xml:lang="zh_TW">GSM 06.10 音訊</comment>
+ <comment xml:lang="zh_CN">GSM 06.10 音频</comment>
+ <comment xml:lang="vi">Âm thanh GSM 06.10</comment>
+ <comment xml:lang="uk">звук GSM 06.10</comment>
+ <comment xml:lang="tr">GSM 06.10 ses dosyası</comment>
+ <comment xml:lang="sv">GSM 06.10-ljud</comment>
+ <comment xml:lang="sr">ГСМ 06.10 звук</comment>
+ <comment xml:lang="sq">audio GSM 06.10</comment>
+ <comment xml:lang="sl">Zvočna datoteka GSM 06.10</comment>
+ <comment xml:lang="si">GSM 06.10 ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk GSM 06.10</comment>
+ <comment xml:lang="ru">Аудио GSM 06.10</comment>
+ <comment xml:lang="ro">GSM 06.10 audio</comment>
+ <comment xml:lang="pt_BR">Áudio GSM 06.10</comment>
+ <comment xml:lang="pt">áudio GSM 06.10</comment>
+ <comment xml:lang="pl">Plik dźwiękowy GSM 06.10</comment>
+ <comment xml:lang="oc">àudio GSM 06.10</comment>
+ <comment xml:lang="nl">GSM 06.10 audio</comment>
+ <comment xml:lang="lv">GSM 06.10 audio</comment>
+ <comment xml:lang="lt">GSM 06.10 garso įrašas</comment>
+ <comment xml:lang="ko">GSM 06.10 오디오</comment>
+ <comment xml:lang="kk">GSM 06.10 аудиосы</comment>
+ <comment xml:lang="ka">GSM 06.10 აუდიო</comment>
+ <comment xml:lang="ja">GSM 06.10 オーディオ</comment>
+ <comment xml:lang="it">Audio GSM 06.10</comment>
+ <comment xml:lang="is">GSM 06.10 hljóð</comment>
+ <comment xml:lang="id">Audio GSM 06.10</comment>
+ <comment xml:lang="ia">Audio GSM 06.10</comment>
+ <comment xml:lang="hu">GSM 06.10 hang</comment>
+ <comment xml:lang="hr">GSM 06.10 zvučni zapis</comment>
+ <comment xml:lang="he">שמע GSM 06.10</comment>
+ <comment xml:lang="gl">son de GSM 06.10</comment>
+ <comment xml:lang="ga">fuaim GSM 06.10</comment>
+ <comment xml:lang="fur">audio GSM 06.10</comment>
+ <comment xml:lang="fr">audio GSM 06.10</comment>
+ <comment xml:lang="fo">GSM 06.10 ljóður</comment>
+ <comment xml:lang="fi">GSM 06.10 -ääni</comment>
+ <comment xml:lang="eu">GSM 06.10 audioa</comment>
+ <comment xml:lang="es">sonido GSM 06.10</comment>
+ <comment xml:lang="en_GB">GSM 06.10 audio</comment>
+ <comment xml:lang="el">Ήχος GSM 06.10</comment>
+ <comment xml:lang="de">GSM-06.10-Audio</comment>
+ <comment xml:lang="da">GSM 06.10-lyd</comment>
+ <comment xml:lang="cs">zvuk GSM 06.10</comment>
+ <comment xml:lang="ca">àudio de GSM 06.10</comment>
+ <comment xml:lang="bg">Аудио — GSM 06.10</comment>
+ <comment xml:lang="be">аўдыя GSM 06.10</comment>
+ <comment xml:lang="ast">Audiu GSM 6.10</comment>
+ <comment xml:lang="ar">صوت GSM 06.10</comment>
+ <comment xml:lang="af">GSM 06.10-oudio</comment>
<acronym>GSM</acronym>
<expanded-acronym>Global System for Mobile communications</expanded-acronym>
<glob pattern="*.gsm"/>
</mime-type>
<mime-type type="audio/x-iriver-pla">
- <comment>iRiver Playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل iRiver</comment>
- <comment xml:lang="ast">Llista de reproducción iRiver</comment>
- <comment xml:lang="be@latin">Śpis piesień iRiver</comment>
- <comment xml:lang="bg">Списък за изпълнение — iRiver</comment>
- <comment xml:lang="ca">llista de reproducció iRiver</comment>
- <comment xml:lang="cs">seznam k přehrání iRiver</comment>
- <comment xml:lang="da">iRiver-afspilningsliste</comment>
- <comment xml:lang="de">iRiver-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής iRiver</comment>
- <comment xml:lang="en_GB">iRiver Playlist</comment>
- <comment xml:lang="eo">iRiver-ludlisto</comment>
- <comment xml:lang="es">lista de reproducción de iRiver</comment>
- <comment xml:lang="eu">iRiver erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">iRiver-soittolista</comment>
- <comment xml:lang="fo">iRiver avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture iRiver</comment>
- <comment xml:lang="ga">seinmliosta iRiver</comment>
- <comment xml:lang="gl">lista de reprodución de iRiver</comment>
- <comment xml:lang="he">רשימת נגינה של iRiver</comment>
- <comment xml:lang="hr">iRiver popis izvođenja</comment>
- <comment xml:lang="hu">iRiver lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection iRiver</comment>
- <comment xml:lang="id">iRiver Playlist</comment>
- <comment xml:lang="it">Playlist iRiver</comment>
- <comment xml:lang="ja">iRiver 再生リスト</comment>
- <comment xml:lang="kk">iRiver ойнау тізімі</comment>
- <comment xml:lang="ko">iRiver 재생 목록</comment>
- <comment xml:lang="lt">iRiver grojaraštis</comment>
- <comment xml:lang="lv">iRiver repertuārs</comment>
- <comment xml:lang="nb">iRiver-spilleliste</comment>
- <comment xml:lang="nl">iRiver-afspeellijst</comment>
- <comment xml:lang="nn">iRiver speleliste</comment>
- <comment xml:lang="oc">lista de lectura iRiver</comment>
- <comment xml:lang="pl">Lista odtwarzania iRiver</comment>
- <comment xml:lang="pt">lista de reprodução iRiver</comment>
- <comment xml:lang="pt_BR">Lista de reprodução do iRiver</comment>
- <comment xml:lang="ro">Listă iRiver</comment>
- <comment xml:lang="ru">Список воспроизведения iRiver</comment>
- <comment xml:lang="sk">Zoznam skladieb iRiver</comment>
- <comment xml:lang="sl">Seznam predvajanja iRiver</comment>
- <comment xml:lang="sq">Listë titujsh iRiver</comment>
- <comment xml:lang="sr">иРивер списак нумера</comment>
- <comment xml:lang="sv">iRiver-spellista</comment>
- <comment xml:lang="tr">iRiver Çalma Listesini</comment>
- <comment xml:lang="uk">список програвання iRiver</comment>
- <comment xml:lang="vi">danh mục nhạc iRiver</comment>
- <comment xml:lang="zh_CN">iRiver 播放列表</comment>
+ <comment>iRiver playlist</comment>
<comment xml:lang="zh_TW">iRiver 播放清單</comment>
- <magic priority="50">
- <match value="iriver UMS PLA" type="string" offset="4"/>
+ <comment xml:lang="zh_CN">iRiver 播放列表</comment>
+ <comment xml:lang="uk">список відтворення iRiver</comment>
+ <comment xml:lang="tr">iRiver çalma listesi</comment>
+ <comment xml:lang="sv">iRiver-spellista</comment>
+ <comment xml:lang="sq">luajlistë iRiver</comment>
+ <comment xml:lang="sl">Seznam predvajanja iRiver</comment>
+ <comment xml:lang="si">iRiver ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb iRiver</comment>
+ <comment xml:lang="ru">Список воспроизведения iRiver</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução do iRiver</comment>
+ <comment xml:lang="pt">lista de reprodução do iRiver</comment>
+ <comment xml:lang="pl">Lista odtwarzania iRiver</comment>
+ <comment xml:lang="oc">lista de lectura iRiver</comment>
+ <comment xml:lang="nl">iRiver-playlist</comment>
+ <comment xml:lang="lt">iRiver grojaraštis</comment>
+ <comment xml:lang="ko">아이리버 재생 목록</comment>
+ <comment xml:lang="kk">iRiver ойнау тізімі</comment>
+ <comment xml:lang="ka">iRiver დასაკრავი სია</comment>
+ <comment xml:lang="ja">iRiver プレイリスト</comment>
+ <comment xml:lang="it">Playlist iRiver</comment>
+ <comment xml:lang="is">iRiver spilunarlisti</comment>
+ <comment xml:lang="id">daftar putar iRiver</comment>
+ <comment xml:lang="hu">iRiver lejátszólista</comment>
+ <comment xml:lang="hr">iRiver popis izvođenja</comment>
+ <comment xml:lang="he">רשימת נגינה של iRiver</comment>
+ <comment xml:lang="gl">Lista de reprodución de iRiver</comment>
+ <comment xml:lang="fr">liste de lecture iRiver</comment>
+ <comment xml:lang="fi">iRiver-soittolista</comment>
+ <comment xml:lang="eu">iRiver erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción de iRiver</comment>
+ <comment xml:lang="en_GB">iRiver playlist</comment>
+ <comment xml:lang="de">iRiver-Wiedergabeliste</comment>
+ <comment xml:lang="da">iRiver-afspilningsliste</comment>
+ <comment xml:lang="ca">llista de reproducció iRiver</comment>
+ <comment xml:lang="bg">Списък за изпълнение — iRiver</comment>
+ <comment xml:lang="be">плэй-ліст iRiver</comment>
+ <comment xml:lang="ar">قائمة تشغيل iRiver</comment>
+ <magic>
+ <match type="string" value="iriver UMS PLA" offset="4"/>
</magic>
<glob pattern="*.pla"/>
</mime-type>
<mime-type type="application/pgp-encrypted">
<comment>PGP/MIME-encrypted message header</comment>
- <comment xml:lang="ar">ترويسة رسالة PGP/MIME-مشفرة</comment>
- <comment xml:lang="ast">Testera de mensaxe cifrada en PGP/MIME</comment>
- <comment xml:lang="be@latin">Zahałovak paviedamleńnia, zašyfravany ŭ PGP/MIME</comment>
- <comment xml:lang="bg">Заглавна част на шифрирано съобщение — PGP/MIME</comment>
- <comment xml:lang="ca">capçalera de missatge amb xifrat PGP/MIME</comment>
- <comment xml:lang="cs">záhlaví zprávy zašifrované pomocí PGP/MIME</comment>
- <comment xml:lang="da">PGP-/MIME-krypteret meddelelseshoved</comment>
- <comment xml:lang="de">PGP/MIME-verschlüsselter Nachrichtenkopf</comment>
- <comment xml:lang="el">Κεφαλίδα μηνύματος κρυπτογραφημένου κατά PGP/MIME</comment>
- <comment xml:lang="en_GB">PGP/MIME-encrypted message header</comment>
- <comment xml:lang="eo">PGP/MIME-ĉifrita ĉapo de mesaĝo</comment>
- <comment xml:lang="es">cabecera de mensaje cifrado PGP/MIME</comment>
- <comment xml:lang="eu">PGP/MIME enkriptatutako mezu-goiburua</comment>
- <comment xml:lang="fi">PGP/MIME-salattu viestiotsikko</comment>
- <comment xml:lang="fo">PGP/MIME-encrypted boð tekshøvd</comment>
- <comment xml:lang="fr">en-tête de message codé PGP/MIME</comment>
- <comment xml:lang="ga">ceanntásc teachtaireachta ionchódaithe le PGP/MIME</comment>
- <comment xml:lang="gl">cabeceira de mensaxe cifrado PGP/MIME</comment>
- <comment xml:lang="he">כותר של קובץ מוצפן מסוג PGP/MIME</comment>
- <comment xml:lang="hr">PGP/MIME-šrifrirano zaglavlje poruke</comment>
- <comment xml:lang="hu">PGP/MIME titkosított üzenetfejléc</comment>
- <comment xml:lang="ia">Capite de message cryptate con PGP/MIME</comment>
- <comment xml:lang="id">Tajuk pesan terenkripsi PGP/MIME</comment>
- <comment xml:lang="it">Intestazione messaggio PGP/MIME-encrypted</comment>
- <comment xml:lang="ja">PGP/MIME 暗号化メッセージヘッダー</comment>
- <comment xml:lang="kk">PGP/MIME-шифрленген мәлімдеме тақырыптамасы</comment>
- <comment xml:lang="ko">PGP/MIME으로 암호화된 메시지 헤더</comment>
- <comment xml:lang="lt">PGP/MIME užšifruota žinutės antraštė</comment>
- <comment xml:lang="lv">PGP/MIME-šifrēta ziņas galvene</comment>
- <comment xml:lang="ms">Pengepala mesej terenkripsi PGP/MIME</comment>
- <comment xml:lang="nb">PGP/MIME-kryptert meldingshode</comment>
- <comment xml:lang="nl">PGP/MIME-versleutelde berichtkopregels</comment>
- <comment xml:lang="nn">PGP/MIME-kryptert meldingshovud</comment>
- <comment xml:lang="oc">entèsta de messatge encodat PGP/MIME</comment>
- <comment xml:lang="pl">Nagłówek listu zaszyfrowanego PGP/MIME</comment>
- <comment xml:lang="pt">cabeçalho de mensagem encriptada com PGP/MIME</comment>
- <comment xml:lang="pt_BR">Cabeçalho de mensagem criptografada PGP/MIME</comment>
- <comment xml:lang="ro">Antet de mesaj encriptat PGP/MIME</comment>
- <comment xml:lang="ru">Заголовок сообщения, зашифрованный PGP/MIME</comment>
- <comment xml:lang="sk">Hlavičke správy zašifrovaná pomocou PGP/MIME</comment>
- <comment xml:lang="sl">Datoteka glave šifriranega sporočila PGP/MIME</comment>
- <comment xml:lang="sq">Header mesazhi të kriptuar PGP/MIME</comment>
- <comment xml:lang="sr">ПГП/МИМЕ шифровано заглавље поруке</comment>
- <comment xml:lang="sv">PGP/MIME-krypterat meddelandehuvud</comment>
- <comment xml:lang="tr">PGP/MIME-şifreli ileti başlığı</comment>
- <comment xml:lang="uk">заголовок шифрованого PGP/MIME повідомлення</comment>
- <comment xml:lang="vi">Phần đầu thông điệp đã mật mã bằng PGP/MIME</comment>
- <comment xml:lang="zh_CN">PGP/MIME 加密的信件头</comment>
<comment xml:lang="zh_TW">PGP/MIME 加密訊息標頭</comment>
- <sub-class-of type="text/plain"/>
- <generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="-----BEGIN PGP MESSAGE-----" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">PGP/MIME 加密的信件头</comment>
+ <comment xml:lang="vi">Phần đầu thông điệp đã mật mã bằng PGP/MIME</comment>
+ <comment xml:lang="uk">заголовок шифрованого PGP/MIME повідомлення</comment>
+ <comment xml:lang="tr">PGP/MIME-şifreli ileti başlığı</comment>
+ <comment xml:lang="sv">PGP/MIME-krypterat meddelandehuvud</comment>
+ <comment xml:lang="sr">ПГП/МИМЕ шифровано заглавље поруке</comment>
+ <comment xml:lang="sq">krye mesazhi fshehtëzuar me PGP/MIME</comment>
+ <comment xml:lang="sl">Datoteka glave šifriranega sporočila PGP/MIME</comment>
+ <comment xml:lang="si">PGP/MIME-සංකේතනය කළ පණිවිඩ ශීර්ෂකය</comment>
+ <comment xml:lang="sk">Hlavičke správy zašifrovaná pomocou PGP/MIME</comment>
+ <comment xml:lang="ru">Заголовок сообщения, зашифрованный PGP/MIME</comment>
+ <comment xml:lang="ro">Antet de mesaj encriptat PGP/MIME</comment>
+ <comment xml:lang="pt_BR">Cabeçalho de mensagem criptografada PGP/MIME</comment>
+ <comment xml:lang="pt">cabeçalho de mensagem encriptada com PGP/MIME</comment>
+ <comment xml:lang="pl">Nagłówek listu zaszyfrowanego PGP/MIME</comment>
+ <comment xml:lang="oc">entèsta de messatge encodat PGP/MIME</comment>
+ <comment xml:lang="nn">PGP/MIME-kryptert meldingshovud</comment>
+ <comment xml:lang="nl">PGP/MIME-versleutelde berichtkopregels</comment>
+ <comment xml:lang="nb">PGP/MIME-kryptert meldingshode</comment>
+ <comment xml:lang="ms">Pengepala mesej terenkripsi PGP/MIME</comment>
+ <comment xml:lang="lv">PGP/MIME-šifrēta ziņas galvene</comment>
+ <comment xml:lang="lt">PGP/MIME užšifruota žinutės antraštė</comment>
+ <comment xml:lang="ko">PGP/MIME으로 암호화된 메시지 헤더</comment>
+ <comment xml:lang="kk">PGP/MIME-шифрленген мәлімдеме тақырыптамасы</comment>
+ <comment xml:lang="ja">PGP/MIME 暗号化メッセージヘッダー</comment>
+ <comment xml:lang="it">Intestazione messaggio PGP/MIME-encrypted</comment>
+ <comment xml:lang="is">PGP-dulritaður skilaboðahaus</comment>
+ <comment xml:lang="id">Tajuk pesan terenkripsi PGP/MIME</comment>
+ <comment xml:lang="ia">Capite de message cryptate con PGP/MIME</comment>
+ <comment xml:lang="hu">PGP/MIME titkosított üzenetfejléc</comment>
+ <comment xml:lang="hr">PGP/MIME-šrifrirano zaglavlje poruke</comment>
+ <comment xml:lang="he">כותר של קובץ מוצפן מסוג PGP/MIME</comment>
+ <comment xml:lang="gl">cabeceira de mensaxe cifrado PGP/MIME</comment>
+ <comment xml:lang="ga">ceanntásc teachtaireachta ionchódaithe le PGP/MIME</comment>
+ <comment xml:lang="fur">intestazion messaç cifrât in PGP/MIME</comment>
+ <comment xml:lang="fr">en-tête de message codé PGP/MIME</comment>
+ <comment xml:lang="fo">PGP/MIME-encrypted boð tekshøvd</comment>
+ <comment xml:lang="fi">PGP/MIME-salattu viestiotsake</comment>
+ <comment xml:lang="eu">PGP/MIME zifratutako mezu-goiburua</comment>
+ <comment xml:lang="es">cabecera de mensaje cifrado PGP/MIME</comment>
+ <comment xml:lang="eo">PGP/MIME-ĉifrita ĉapo de mesaĝo</comment>
+ <comment xml:lang="en_GB">PGP/MIME-encrypted message header</comment>
+ <comment xml:lang="el">Κεφαλίδα μηνύματος κρυπτογραφημένου κατά PGP/MIME</comment>
+ <comment xml:lang="de">PGP/MIME-verschlüsselter Nachrichtenkopf</comment>
+ <comment xml:lang="da">PGP-/MIME-krypteret meddelelseshoved</comment>
+ <comment xml:lang="cs">záhlaví zprávy zašifrované pomocí PGP/MIME</comment>
+ <comment xml:lang="ca">capçalera de missatge amb xifrat PGP/MIME</comment>
+ <comment xml:lang="bg">Заглавна част на шифрирано съобщение — PGP/MIME</comment>
+ <comment xml:lang="be@latin">Zahałovak paviedamleńnia, zašyfravany ŭ PGP/MIME</comment>
+ <comment xml:lang="be">загаловак паведамлення з шыфраваннем PGP/MIME</comment>
+ <comment xml:lang="ast">Testera de mensaxe cifrada en PGP/MIME</comment>
+ <comment xml:lang="ar">ترويسة رسالة PGP/MIME-مشفرة</comment>
+ <comment xml:lang="af">Kop van PGP/MIME-geënkripteerde boodskap</comment>
+ <magic>
+ <match type="string" value="-----BEGIN PGP MESSAGE-----" offset="0"/>
</magic>
<glob pattern="*.pgp"/>
<glob pattern="*.gpg"/>
- <glob weight="10" pattern="*.asc"/>
+ <glob pattern="*.asc" weight="10"/>
<alias type="application/pgp"/>
</mime-type>
<mime-type type="application/pgp-keys">
<comment>PGP keys</comment>
- <comment xml:lang="ar">مفاتيح PGP</comment>
- <comment xml:lang="ast">Claves PGP</comment>
- <comment xml:lang="az">PGP açarları</comment>
- <comment xml:lang="be@latin">Klučy PGP</comment>
- <comment xml:lang="bg">Ключове — PGP</comment>
- <comment xml:lang="ca">claus PGP</comment>
- <comment xml:lang="cs">klíče PGP</comment>
- <comment xml:lang="cy">Allweddi PGP</comment>
- <comment xml:lang="da">PGP-nøgler</comment>
- <comment xml:lang="de">PGP-Schlüssel</comment>
- <comment xml:lang="el">Κλειδιά PGP</comment>
- <comment xml:lang="en_GB">PGP keys</comment>
- <comment xml:lang="eo">PGP-ŝlosiloj</comment>
- <comment xml:lang="es">claves PGP</comment>
- <comment xml:lang="eu">PGP giltzak</comment>
- <comment xml:lang="fi">PGP-avainrengas</comment>
- <comment xml:lang="fo">PGP lyklar</comment>
- <comment xml:lang="fr">clés PGP</comment>
- <comment xml:lang="ga">eochracha PGP</comment>
- <comment xml:lang="gl">Chaves PGP</comment>
- <comment xml:lang="he">מפתחות PGP</comment>
- <comment xml:lang="hr">PGP ključevi</comment>
- <comment xml:lang="hu">PGP-kulcs</comment>
- <comment xml:lang="ia">Claves PGP</comment>
- <comment xml:lang="id">Kunci PGP</comment>
- <comment xml:lang="it">Chiavi PGP</comment>
- <comment xml:lang="ja">PGP 鍵</comment>
- <comment xml:lang="kk">PGP кілттері</comment>
- <comment xml:lang="ko">PGP 키</comment>
- <comment xml:lang="lt">PGP raktai</comment>
- <comment xml:lang="lv">PGP atslēgas</comment>
- <comment xml:lang="ms">Kekunci PGP</comment>
- <comment xml:lang="nb">PGP-nøkler</comment>
- <comment xml:lang="nl">PGP-sleutels</comment>
- <comment xml:lang="nn">PGP-nøkler</comment>
- <comment xml:lang="oc">claus PGP</comment>
- <comment xml:lang="pl">Klucze PGP</comment>
- <comment xml:lang="pt">chaves PGP</comment>
- <comment xml:lang="pt_BR">Chaves PGP</comment>
- <comment xml:lang="ro">Chei PGP</comment>
- <comment xml:lang="ru">Ключи PGP</comment>
- <comment xml:lang="sk">Kľúče PGP</comment>
- <comment xml:lang="sl">Datoteka ključa PGP</comment>
- <comment xml:lang="sq">Kyçe PGP</comment>
- <comment xml:lang="sr">ПГП кључеви</comment>
- <comment xml:lang="sv">PGP-nycklar</comment>
- <comment xml:lang="tr">PGP anahtarları</comment>
- <comment xml:lang="uk">ключі PGP</comment>
- <comment xml:lang="vi">Khoá PGP</comment>
+ <comment xml:lang="zh_TW">PGP 金鑰</comment>
<comment xml:lang="zh_CN">PGP 密钥</comment>
- <comment xml:lang="zh_TW">PGP 鑰匙</comment>
+ <comment xml:lang="vi">Khoá PGP</comment>
+ <comment xml:lang="uk">ключі PGP</comment>
+ <comment xml:lang="tr">PGP anahtarları</comment>
+ <comment xml:lang="sv">PGP-nycklar</comment>
+ <comment xml:lang="sr">ПГП кључеви</comment>
+ <comment xml:lang="sq">kyçe PGP</comment>
+ <comment xml:lang="sl">Datoteka ključa PGP</comment>
+ <comment xml:lang="si">PGP යතුරු</comment>
+ <comment xml:lang="sk">Kľúče PGP</comment>
+ <comment xml:lang="ru">Ключи PGP</comment>
+ <comment xml:lang="ro">Chei PGP</comment>
+ <comment xml:lang="pt_BR">Chaves PGP</comment>
+ <comment xml:lang="pt">chaves PGP</comment>
+ <comment xml:lang="pl">Klucze PGP</comment>
+ <comment xml:lang="oc">claus PGP</comment>
+ <comment xml:lang="nn">PGP-nøkler</comment>
+ <comment xml:lang="nl">PGP-sleutels</comment>
+ <comment xml:lang="nb">PGP-nøkler</comment>
+ <comment xml:lang="ms">Kekunci PGP</comment>
+ <comment xml:lang="lv">PGP atslēgas</comment>
+ <comment xml:lang="lt">PGP raktai</comment>
+ <comment xml:lang="ko">PGP 키</comment>
+ <comment xml:lang="kk">PGP кілттері</comment>
+ <comment xml:lang="ka">PGP გასაღები</comment>
+ <comment xml:lang="ja">PGP 鍵</comment>
+ <comment xml:lang="it">Chiavi PGP</comment>
+ <comment xml:lang="is">PGP-lyklar</comment>
+ <comment xml:lang="id">Kunci PGP</comment>
+ <comment xml:lang="ia">Claves PGP</comment>
+ <comment xml:lang="hu">PGP-kulcs</comment>
+ <comment xml:lang="hr">PGP ključevi</comment>
+ <comment xml:lang="he">מפתחות PGP</comment>
+ <comment xml:lang="gl">Chaves PGP</comment>
+ <comment xml:lang="ga">eochracha PGP</comment>
+ <comment xml:lang="fur">clâfs PGP</comment>
+ <comment xml:lang="fr">clés PGP</comment>
+ <comment xml:lang="fo">PGP lyklar</comment>
+ <comment xml:lang="fi">PGP-avainrengas</comment>
+ <comment xml:lang="eu">PGP giltzak</comment>
+ <comment xml:lang="es">claves PGP</comment>
+ <comment xml:lang="eo">PGP-ŝlosiloj</comment>
+ <comment xml:lang="en_GB">PGP keys</comment>
+ <comment xml:lang="el">Κλειδιά PGP</comment>
+ <comment xml:lang="de">PGP-Schlüssel</comment>
+ <comment xml:lang="da">PGP-nøgler</comment>
+ <comment xml:lang="cy">Allweddi PGP</comment>
+ <comment xml:lang="cs">klíče PGP</comment>
+ <comment xml:lang="ca">claus PGP</comment>
+ <comment xml:lang="bg">Ключове — PGP</comment>
+ <comment xml:lang="be@latin">Klučy PGP</comment>
+ <comment xml:lang="be">ключы PGP</comment>
+ <comment xml:lang="az">PGP açarları</comment>
+ <comment xml:lang="ast">Claves PGP</comment>
+ <comment xml:lang="ar">مفاتيح PGP</comment>
+ <comment xml:lang="af">PGP-sleutels</comment>
<acronym>PGP</acronym>
<expanded-acronym>Pretty Good Privacy</expanded-acronym>
- <sub-class-of type="text/plain"/>
- <generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="-----BEGIN PGP PUBLIC KEY BLOCK-----" type="string" offset="0"/>
- <match value="-----BEGIN PGP PRIVATE KEY BLOCK-----" type="string" offset="0"/>
- <match value="0x9501" type="big16" offset="0"/>
- <match value="0x9500" type="big16" offset="0"/>
- <match value="0x9900" type="big16" offset="0"/>
- <match value="0x9901" type="big16" offset="0"/>
+ <magic>
+ <match type="string" value="-----BEGIN PGP PUBLIC KEY BLOCK-----" offset="0"/>
+ <match type="string" value="-----BEGIN PGP PRIVATE KEY BLOCK-----" offset="0"/>
+ <match type="big16" value="0x9501" offset="0"/>
+ <match type="big16" value="0x9500" offset="0"/>
+ <match type="big16" value="0x9900" offset="0"/>
+ <match type="big16" value="0x9901" offset="0"/>
</magic>
<glob pattern="*.skr"/>
<glob pattern="*.pkr"/>
- <glob weight="10" pattern="*.asc"/>
+ <glob pattern="*.asc" weight="10"/>
<glob pattern="*.pgp"/>
<glob pattern="*.gpg"/>
+ <glob pattern="*.key"/>
</mime-type>
<mime-type type="application/pgp-signature">
- <comment>detached OpenPGP signature</comment>
- <comment xml:lang="ar">إمضاء OpenPGP مفصول</comment>
- <comment xml:lang="be@latin">adłučany podpis OpenPGP</comment>
- <comment xml:lang="bg">Отделен подпис — OpenPGP</comment>
- <comment xml:lang="ca">signatura OpenPGP abstreta</comment>
- <comment xml:lang="cs">oddělený podpis OpenPGP</comment>
- <comment xml:lang="da">frigjort OpenPGP-signatur</comment>
- <comment xml:lang="de">isolierte OpenPGP-Signatur</comment>
- <comment xml:lang="el">Αποκομμένη υπογραφή OpenPGP</comment>
- <comment xml:lang="en_GB">detached OpenPGP signature</comment>
- <comment xml:lang="eo">dekroĉa OpenPGP-subskribo</comment>
- <comment xml:lang="es">firma OpenPGP separada</comment>
- <comment xml:lang="eu">desuzturtako OpenPGP sinadura</comment>
- <comment xml:lang="fi">erillinen OpenPGP-allekirjoitus</comment>
- <comment xml:lang="fo">skild OpenPGP undirskrift</comment>
- <comment xml:lang="fr">signature OpenPGP détachée</comment>
- <comment xml:lang="ga">síniú OpenPGP scartha</comment>
- <comment xml:lang="gl">sinatura de OpenPGP independente</comment>
- <comment xml:lang="he">חתימת OpenPGP מנותקת</comment>
- <comment xml:lang="hr">Odvojen OpenPGP potpis</comment>
- <comment xml:lang="hu">leválasztott OpenPGP-aláírás</comment>
- <comment xml:lang="ia">Signatura OpenPGP distachate</comment>
- <comment xml:lang="id">tanda tangan OpenPGP yang terlepas</comment>
- <comment xml:lang="it">Firma staccata OpenPGP</comment>
- <comment xml:lang="ja">分離 OpenPGP 署名</comment>
- <comment xml:lang="kk">бөлінген OpenPGP қолтаңбасы</comment>
- <comment xml:lang="ko">분리된 OpenPGP 서명</comment>
- <comment xml:lang="lt">neprisegtas OpenPGP parašas</comment>
- <comment xml:lang="lv">atvienots OpenPGP paraksts</comment>
- <comment xml:lang="ms">Tandatangan OpenPGP terlerai</comment>
- <comment xml:lang="nb">frakoblet OpenPGP-signatur</comment>
- <comment xml:lang="nl">losse OpenPGP-ondertekening</comment>
- <comment xml:lang="nn">fråkopla OpenPGP-signatur</comment>
- <comment xml:lang="oc">signatura OpenPGP destacada</comment>
- <comment xml:lang="pl">Oddzielony podpis OpenPGP</comment>
- <comment xml:lang="pt">assinatura OpenPGP solta</comment>
- <comment xml:lang="pt_BR">Assinatura OpenPGP destacada</comment>
- <comment xml:lang="ro">semnătură OpenPGP detașată</comment>
+ <comment>Detached OpenPGP signature</comment>
+ <comment xml:lang="zh_TW">卸離的 OpenGPG 簽章</comment>
+ <comment xml:lang="uk">відокремлений підпис OpenPGP</comment>
+ <comment xml:lang="sv">Frikopplad OpenPGP-signatur</comment>
<comment xml:lang="ru">Отсоединённая подпись OpenPGP</comment>
- <comment xml:lang="sk">Oddelený podpis OpenPGP</comment>
- <comment xml:lang="sl">odpet podpis OpenPGP</comment>
- <comment xml:lang="sq">Firmë e shkëputur OpenPGP</comment>
- <comment xml:lang="sr">одвојени ОпенПГП потпис</comment>
- <comment xml:lang="sv">frikopplad OpenPGP-signatur</comment>
- <comment xml:lang="tr">müstakil OpenPGP imzası</comment>
- <comment xml:lang="uk">відокремлений OpenPGP підпис</comment>
- <comment xml:lang="vi">chữ ký OpenPGP tách rời</comment>
- <comment xml:lang="zh_CN">分离的 OpenPGP 签名</comment>
- <comment xml:lang="zh_TW">分離的 OpenPGP 簽章</comment>
- <sub-class-of type="text/plain"/>
- <generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="-----BEGIN PGP SIGNATURE-----" type="string" offset="0"/>
+ <comment xml:lang="pt_BR">Assinatura OpenPGP destacada</comment>
+ <comment xml:lang="pl">Oddzielony podpis OpenPGP</comment>
+ <comment xml:lang="it">Firma staccata OpenPGP</comment>
+ <comment xml:lang="gl">Sinatura OpenPGP desancorada</comment>
+ <comment xml:lang="eu">OpenPGP sinadura askea</comment>
+ <comment xml:lang="es">firma OpenGPG separada</comment>
+ <comment xml:lang="de">Isolierte OpenPGP-Signatur</comment>
+ <comment xml:lang="be">адлучаны подпіс OpenPGP</comment>
+ <magic>
+ <match type="string" value="-----BEGIN PGP SIGNATURE-----" offset="0"/>
</magic>
- <glob weight="10" pattern="*.asc"/>
+ <glob pattern="*.asc" weight="10"/>
<glob pattern="*.sig"/>
<glob pattern="*.pgp"/>
<glob pattern="*.gpg"/>
</mime-type>
-
+ <!-- defined in RFC 2311 -->
<mime-type type="application/pkcs7-mime">
- <comment>PKCS#7 Message or Certificate</comment>
- <comment xml:lang="ast">Mensaxe o certificáu PKCS#7</comment>
- <comment xml:lang="ca">missatge o certificat PKCS#7</comment>
- <comment xml:lang="cs">zpráva nebo certifikát PKCS#7</comment>
- <comment xml:lang="da">PKCS#7-besked eller certifikat</comment>
- <comment xml:lang="de">PKCS#7 Nachricht oder Zertifikat</comment>
- <comment xml:lang="el">Μήνυμα ή πιστοποιητικό PKCS#7</comment>
- <comment xml:lang="en_GB">PKCS#7 Message or Certificate</comment>
- <comment xml:lang="es">mensaje o certificado PKCS#7</comment>
- <comment xml:lang="eu">PKCS#7 mezu edo zertifikazioa</comment>
- <comment xml:lang="fi">PKCS#7-viesti tai -varmenne</comment>
- <comment xml:lang="fr">Message ou certificat PKCS#7</comment>
- <comment xml:lang="ga">Teachtaireacht nó Teastas PKCS#7</comment>
- <comment xml:lang="gl">Mensaxe ou certificado PKCS#7</comment>
- <comment xml:lang="he">הודעה או אישור מסוג PKCS#7</comment>
- <comment xml:lang="hr">PKCS#7 poruka ili vjerodajnica</comment>
- <comment xml:lang="hu">PKCS#7 üzenet vagy tanúsítvány</comment>
- <comment xml:lang="ia">Message o certificato PKCS#7</comment>
- <comment xml:lang="id">Sertifikat atau Pesan PKCS#7</comment>
- <comment xml:lang="it">Messaggio o certificato PKCS#7</comment>
- <comment xml:lang="ja">PKCS#7 メッセージまたは証明書</comment>
- <comment xml:lang="kk">PKCS#7 хабарламасы не сертификаты</comment>
- <comment xml:lang="ko">PKCS#7 메시지 또는 인증서</comment>
- <comment xml:lang="lv">PKCS#7 ziņojums vai sertifikāts</comment>
- <comment xml:lang="oc">Messatge o certificat PKCS#7</comment>
- <comment xml:lang="pl">Wiadomość lub certyfikat PKCS#7</comment>
- <comment xml:lang="pt">Mensagem ou certificado PKCS#7</comment>
- <comment xml:lang="pt_BR">Certificado ou Mensagem PKCS#7</comment>
- <comment xml:lang="ru">Сообщение или сертификат PKCS#7</comment>
- <comment xml:lang="sk">Správa alebo certifikát PKCS#7</comment>
- <comment xml:lang="sl">Sporočilo ali dovoljenje PKCS#7</comment>
- <comment xml:lang="sr">ПКЦС#7 порука или уверење</comment>
- <comment xml:lang="sv">PKCS#7-meddelande eller -certifikat</comment>
- <comment xml:lang="tr">PKCS#7 İletisi veya Sertifikası</comment>
- <comment xml:lang="uk">повідомлення або сертифікат PKCS#7</comment>
- <comment xml:lang="zh_CN">PKCS#7 消息或证书</comment>
- <comment xml:lang="zh_TW">PKCS#7 訊息或憑證</comment>
+ <comment>PKCS#7 file</comment>
+ <comment xml:lang="zh_TW">PKCS#7 檔案</comment>
+ <comment xml:lang="zh_CN">PKCS#7 文件</comment>
+ <comment xml:lang="uk">файл PKCS#7</comment>
+ <comment xml:lang="tr">PKCS#7 dosyası</comment>
+ <comment xml:lang="sv">PKCS#7-fil</comment>
+ <comment xml:lang="sq">kartelë PKCS#7</comment>
+ <comment xml:lang="sl">Datoteka PKCS#7</comment>
+ <comment xml:lang="si">PKCS#7 ගොනුව</comment>
+ <comment xml:lang="sk">Súbor PKCS#7</comment>
+ <comment xml:lang="ru">Файл PKCS#7</comment>
+ <comment xml:lang="pt_BR">Arquivo PKCS#7</comment>
+ <comment xml:lang="pt">ficheiro PKCS#7</comment>
+ <comment xml:lang="pl">Plik PKCS#7</comment>
+ <comment xml:lang="oc">fichièr PKCS#7</comment>
+ <comment xml:lang="nl">PKCS#7-bestand</comment>
+ <comment xml:lang="lt">PKCS#7 failas</comment>
+ <comment xml:lang="ko">PKCS#7 파일</comment>
+ <comment xml:lang="kk">PKCS#7 файлы</comment>
+ <comment xml:lang="ka">PKCS#7 ფაილი</comment>
+ <comment xml:lang="ja">PKCS#7 ファイル</comment>
+ <comment xml:lang="it">File PKCS#7</comment>
+ <comment xml:lang="is">PKCS#7 skrá</comment>
+ <comment xml:lang="id">Berkas PKCS#7</comment>
+ <comment xml:lang="hu">PKCS#7 fájl</comment>
+ <comment xml:lang="hr">PKCS#7 datoteka</comment>
+ <comment xml:lang="he">קובץ PKCS#7</comment>
+ <comment xml:lang="gl">Ficheiro PKCS#7</comment>
+ <comment xml:lang="fr">fichier PKCS#7</comment>
+ <comment xml:lang="fi">PKCS#7-tiedosto</comment>
+ <comment xml:lang="eu">PKCS#7 fitxategia</comment>
+ <comment xml:lang="es">archivo PKCS#7</comment>
+ <comment xml:lang="en_GB">PKCS#7 file</comment>
+ <comment xml:lang="de">PKCS#7-Datei</comment>
+ <comment xml:lang="da">PKCS#7-fil</comment>
+ <comment xml:lang="ca">fitxer PKCS#7</comment>
+ <comment xml:lang="bg">Файл за PKCS#7</comment>
+ <comment xml:lang="be">файл PKCS#7</comment>
+ <comment xml:lang="ar">ملف PKCS#7</comment>
<acronym>PKCS</acronym>
<expanded-acronym>Public-Key Cryptography Standards</expanded-acronym>
<generic-icon name="text-x-generic"/>
@@ -1424,55 +1441,19 @@
<glob pattern="*.p7m"/>
</mime-type>
<mime-type type="application/pkcs7-signature">
- <comment>detached S/MIME signature</comment>
- <comment xml:lang="ar">إمضاء S/MIME مفصول</comment>
- <comment xml:lang="be@latin">adłučany podpis S/MIME</comment>
- <comment xml:lang="bg">Отделен подпис — S/MIME</comment>
- <comment xml:lang="ca">signatura S/MIME abstreta</comment>
- <comment xml:lang="cs">oddělený podpis S/MIME</comment>
- <comment xml:lang="da">frigjort S/MIME-signatur</comment>
- <comment xml:lang="de">isolierte S/MIME-Signatur</comment>
- <comment xml:lang="el">Αποκομμένη υπογραφή S/MIME</comment>
- <comment xml:lang="en_GB">detached S/MIME signature</comment>
- <comment xml:lang="eo">dekroĉa S/MIME-subskribo</comment>
- <comment xml:lang="es">firma S/MIME separada</comment>
- <comment xml:lang="eu">desuzturtako S/MIME sinadura</comment>
- <comment xml:lang="fi">erillinen S/MIME-allekirjoitus</comment>
- <comment xml:lang="fo">skild S/MIME undirskrift</comment>
- <comment xml:lang="fr">signature S/MIME détachée</comment>
- <comment xml:lang="ga">síniú S/MIME scartha</comment>
- <comment xml:lang="gl">sinatura S/MIME independente</comment>
- <comment xml:lang="he">חתימת S/MIME מנותקת</comment>
- <comment xml:lang="hr">Odvojen S/MIME potpis</comment>
- <comment xml:lang="hu">leválasztott S/MIME-aláírás</comment>
- <comment xml:lang="ia">Signatura S/MIME distachate</comment>
- <comment xml:lang="id">tanda tangan S/MIME yang terlepas</comment>
- <comment xml:lang="it">Firma staccata S/MIME</comment>
- <comment xml:lang="ja">分離 S/MIME 署名</comment>
- <comment xml:lang="kk">бөлінген S/MIME қолтаңбасы</comment>
- <comment xml:lang="ko">분리된 S/MIME 서명</comment>
- <comment xml:lang="lt">neprisegtas S/MIME parašas</comment>
- <comment xml:lang="lv">atvienots S/MIME paraksts</comment>
- <comment xml:lang="ms">Tandatangan S/MIME terlerai</comment>
- <comment xml:lang="nb">frakoblet S/MIME-signatur</comment>
- <comment xml:lang="nl">losse S/MIME-ondertekening</comment>
- <comment xml:lang="nn">fråkopla S/MIME-signatur</comment>
- <comment xml:lang="oc">signatura S/MIME destacada</comment>
- <comment xml:lang="pl">Oddzielony podpis S/MIME</comment>
- <comment xml:lang="pt">assinatura S/MIME solta</comment>
- <comment xml:lang="pt_BR">Assinatura S/MIME destacada</comment>
- <comment xml:lang="ro">semnătură S/MIME detașată</comment>
+ <comment>Detached S/MIME signature</comment>
+ <comment xml:lang="zh_TW">卸離的 S/MIME 簽章</comment>
+ <comment xml:lang="uk">відокремлений підпис S/MIME</comment>
+ <comment xml:lang="sv">Frikopplad S/MIME-signatur</comment>
<comment xml:lang="ru">Отсоединённая подпись S/MIME</comment>
- <comment xml:lang="sk">Oddelený podpis S/MIME</comment>
- <comment xml:lang="sl">odpet podpis S/MIME</comment>
- <comment xml:lang="sq">Firmë e shkëputur S/MIME</comment>
- <comment xml:lang="sr">одвојени С/МИМЕ потпис</comment>
- <comment xml:lang="sv">frikopplad S/MIME-signatur</comment>
- <comment xml:lang="tr">müstakil S/MIME imzası</comment>
- <comment xml:lang="uk">відокремлений S/MIME підпис</comment>
- <comment xml:lang="vi">chữ ký S/MIME tách rời</comment>
- <comment xml:lang="zh_CN">分离的 S/MIME 签名</comment>
- <comment xml:lang="zh_TW">分離的 S/MIME 簽章</comment>
+ <comment xml:lang="pt_BR">Assinatura S/MIME destacada</comment>
+ <comment xml:lang="pl">Oddzielony podpis S/MIME</comment>
+ <comment xml:lang="it">Firma staccata S/MIME</comment>
+ <comment xml:lang="gl">Sinatura S/MIME desancorada</comment>
+ <comment xml:lang="eu">S/MIME sinadura askea</comment>
+ <comment xml:lang="es">firma S/MIME separada</comment>
+ <comment xml:lang="de">Isolierte S/MIME-Signatur</comment>
+ <comment xml:lang="be">адлучаны подпіс S/MIME</comment>
<acronym>S/MIME</acronym>
<expanded-acronym>Secure/Multipurpose Internet Mail Extensions</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -1481,105 +1462,155 @@
</mime-type>
<mime-type type="application/pkcs8">
<comment>PKCS#8 private key</comment>
- <comment xml:lang="ar">رزمة الشهادة PKCS#8</comment>
- <comment xml:lang="bg">Ключ, частен — PKCS#8</comment>
- <comment xml:lang="ca">clau privada PKCS#8</comment>
- <comment xml:lang="cs">soukromý klíč PKCS#8</comment>
- <comment xml:lang="da">PKCS#8-privat nøgle</comment>
- <comment xml:lang="de">PKCS#8 Geheimer Schlüssel</comment>
- <comment xml:lang="el">Ιδιωτικό κλειδί PKCS#8</comment>
- <comment xml:lang="en_GB">PKCS#8 private key</comment>
- <comment xml:lang="es">clave privada PCKS#8</comment>
- <comment xml:lang="eu">PKCS#8 gako pribatua</comment>
- <comment xml:lang="fi">PKCS#8 yksityinen avain</comment>
- <comment xml:lang="fo">PKCS#8 privatur lykil</comment>
- <comment xml:lang="fr">clé privée PKCS#8</comment>
- <comment xml:lang="ga">eochair phríobháideach PKCS#8</comment>
- <comment xml:lang="gl">Chave privada PKCS#8</comment>
- <comment xml:lang="he">מפתח פרטי של PKCS#8</comment>
- <comment xml:lang="hr">PKCS#8 privatni ključ</comment>
- <comment xml:lang="hu">PKCS#8 személyes kulcs</comment>
- <comment xml:lang="ia">Clave private PKCS#8</comment>
- <comment xml:lang="id">Kunci privat PKCS#8</comment>
- <comment xml:lang="it">Chiave privata PKCS#8</comment>
- <comment xml:lang="ja">PKCS#8 秘密鍵</comment>
- <comment xml:lang="kk">PKCS#8 меншік кілті</comment>
- <comment xml:lang="ko">PKCS#8 개인 키</comment>
- <comment xml:lang="lt">PKCS#8 asmeninis raktas</comment>
- <comment xml:lang="lv">PKCS#8 privātā atslēga</comment>
- <comment xml:lang="nl">PKCS#8 private sleutel</comment>
- <comment xml:lang="oc">clau privada PKCS#8</comment>
- <comment xml:lang="pl">Klucz prywatny PKCS#8</comment>
- <comment xml:lang="pt">chave privada PKCS#8</comment>
- <comment xml:lang="pt_BR">Chave privada PKCS#8</comment>
- <comment xml:lang="ro">Cheie privată PKCS#8</comment>
- <comment xml:lang="ru">Личный ключ PKCS#8</comment>
- <comment xml:lang="sk">Súkromný kľúč PKCS#8</comment>
- <comment xml:lang="sl">Datoteka osebnega ključa PKCS#8</comment>
- <comment xml:lang="sr">ПКЦС#8 лични кључ</comment>
- <comment xml:lang="sv">Privat PKCS#8-nyckel</comment>
- <comment xml:lang="tr">PKCS#8 özel anahtarı</comment>
- <comment xml:lang="uk">закритий ключ PKCS#8</comment>
- <comment xml:lang="zh_CN">PKCS#8 私钥</comment>
<comment xml:lang="zh_TW">PKCS#8 私人金鑰</comment>
+ <comment xml:lang="zh_CN">PKCS#8 私钥</comment>
+ <comment xml:lang="uk">закритий ключ PKCS#8</comment>
+ <comment xml:lang="tr">PKCS#8 özel anahtarı</comment>
+ <comment xml:lang="sv">Privat PKCS#8-nyckel</comment>
+ <comment xml:lang="sr">ПКЦС#8 лични кључ</comment>
+ <comment xml:lang="sq">kyç privat PKCS#8</comment>
+ <comment xml:lang="sl">Datoteka osebnega ključa PKCS#8</comment>
+ <comment xml:lang="si">PKCS#8 පුද්ගලික යතුර</comment>
+ <comment xml:lang="sk">Súkromný kľúč PKCS#8</comment>
+ <comment xml:lang="ru">Личный ключ PKCS#8</comment>
+ <comment xml:lang="ro">Cheie privată PKCS#8</comment>
+ <comment xml:lang="pt_BR">Chave privada PKCS#8</comment>
+ <comment xml:lang="pt">chave privada PKCS#8</comment>
+ <comment xml:lang="pl">Klucz prywatny PKCS#8</comment>
+ <comment xml:lang="oc">clau privada PKCS#8</comment>
+ <comment xml:lang="nl">PKCS#8-privésleutel</comment>
+ <comment xml:lang="lv">PKCS#8 privātā atslēga</comment>
+ <comment xml:lang="lt">PKCS#8 asmeninis raktas</comment>
+ <comment xml:lang="ko">PKCS#8 개인 키</comment>
+ <comment xml:lang="kk">PKCS#8 меншік кілті</comment>
+ <comment xml:lang="ja">PKCS#8 秘密鍵</comment>
+ <comment xml:lang="it">Chiave privata PKCS#8</comment>
+ <comment xml:lang="is">PKCS#8 einkalykill</comment>
+ <comment xml:lang="id">Kunci privat PKCS#8</comment>
+ <comment xml:lang="ia">Clave private PKCS#8</comment>
+ <comment xml:lang="hu">PKCS#8 személyes kulcs</comment>
+ <comment xml:lang="hr">PKCS#8 privatni ključ</comment>
+ <comment xml:lang="he">מפתח פרטי של PKCS#8</comment>
+ <comment xml:lang="gl">Chave privada PKCS#8</comment>
+ <comment xml:lang="ga">eochair phríobháideach PKCS#8</comment>
+ <comment xml:lang="fur">clâf privade PKCS#8</comment>
+ <comment xml:lang="fr">clé privée PKCS#8</comment>
+ <comment xml:lang="fo">PKCS#8 privatur lykil</comment>
+ <comment xml:lang="fi">PKCS#8 yksityinen avain</comment>
+ <comment xml:lang="eu">PKCS#8 gako pribatua</comment>
+ <comment xml:lang="es">clave privada PCKS#8</comment>
+ <comment xml:lang="en_GB">PKCS#8 private key</comment>
+ <comment xml:lang="el">Ιδιωτικό κλειδί PKCS#8</comment>
+ <comment xml:lang="de">Privater PKCS#8-Schlüssel</comment>
+ <comment xml:lang="da">PKCS#8-privat nøgle</comment>
+ <comment xml:lang="cs">soukromý klíč PKCS#8</comment>
+ <comment xml:lang="ca">clau privada PKCS#8</comment>
+ <comment xml:lang="bg">Ключ — PKCS#8, частен</comment>
+ <comment xml:lang="be">закрыты ключ PKCS#8</comment>
+ <comment xml:lang="ar">رزمة شهادة PKCS#8</comment>
+ <comment xml:lang="af">PKCS#8- private sleutel</comment>
<acronym>PKCS</acronym>
<expanded-acronym>Public-Key Cryptography Standards</expanded-acronym>
<glob pattern="*.p8"/>
</mime-type>
<mime-type type="application/pkcs8-encrypted">
<comment>PKCS#8 private key (encrypted)</comment>
+ <comment xml:lang="zh_TW">PKCS#8 私人金鑰 (加密)</comment>
+ <comment xml:lang="zh_CN">PKCS#8 私钥(已加密)</comment>
+ <comment xml:lang="uk">закритий ключ PKCS#8 (зашифрований)</comment>
+ <comment xml:lang="tr">PKCS#8 özel anahtar (şifrelenmiş)</comment>
+ <comment xml:lang="sv">Privat PKCS#8-nyckel (krypterad)</comment>
+ <comment xml:lang="sq">ky privat PKCS#8 (i fshehtëzuar)</comment>
+ <comment xml:lang="sl">Zasebni ključ PKCS#8 (širfirano)</comment>
+ <comment xml:lang="si">PKCS#8 පුද්ගලික යතුර (සංකේතනය කළ)</comment>
+ <comment xml:lang="sk">Súkromný kľúč PKCS#8 (šifrovaný)</comment>
+ <comment xml:lang="ru">Личный ключ PKCS#8 (зашифрованный)</comment>
+ <comment xml:lang="pt_BR">Chave privada PKCS#8 (criptografada)</comment>
+ <comment xml:lang="pt">chave privada PKCS#8 (encriptada)</comment>
+ <comment xml:lang="pl">Klucz prywatny PKCS#8 (zaszyfrowany)</comment>
+ <comment xml:lang="nl">PKCS#8-privésleutel (versleuteld)</comment>
+ <comment xml:lang="ko">PKCS#8 개인 키(암호화됨)</comment>
+ <comment xml:lang="kk">PKCS#8 жеке кілті (шифрленген)</comment>
+ <comment xml:lang="ja">PKCS#8 プライベートキー (暗号化)</comment>
+ <comment xml:lang="it">Chiave privata PKCS#8 (cifrata)</comment>
+ <comment xml:lang="is">PKCS#8 einkalykill (dulritaður)</comment>
+ <comment xml:lang="id">Kunci privat PKCS#8 (terenkripsi)</comment>
+ <comment xml:lang="hu">PKCS#8 személyes kulcs (titkosított)</comment>
+ <comment xml:lang="hr">PKCS#8 privatni ključ (šifriran)</comment>
+ <comment xml:lang="he">מפתח פרטי מסוג PKCS#8 (מוצפן)</comment>
+ <comment xml:lang="gl">Chave privada PKCS#8 (cifrada)</comment>
+ <comment xml:lang="ga">eochair phríobháideach PKCS#8 (criptithe)</comment>
+ <comment xml:lang="fur">clâf privade PKCS#8 (cifrade)</comment>
+ <comment xml:lang="fr">clé privée PKCS#8 (chiffrée)</comment>
+ <comment xml:lang="fi">PKCS#8 yksityinen avain (salattu)</comment>
+ <comment xml:lang="eu">PKCS#8 gako pribatua (zifratua)</comment>
+ <comment xml:lang="es">clave privada PKCS#8 (cifrada)</comment>
+ <comment xml:lang="en_GB">PKCS#8 private key (encrypted)</comment>
+ <comment xml:lang="de">Privater PKCS#8-Schlüssel (verschlüsselt)</comment>
+ <comment xml:lang="da">PKCS#8-privat nøgle (krypteret)</comment>
+ <comment xml:lang="cs">soukromý klíč PKCS#8 (zašifrovaný)</comment>
+ <comment xml:lang="ca">clau privada PKCS#8 (xifrada)</comment>
+ <comment xml:lang="bg">Ключ — PKCS#8, частен, шифриран</comment>
+ <comment xml:lang="be">закрыты ключ PKCS#8 (зашыфраваны)</comment>
+ <comment xml:lang="ar">مفتاح خاص PKCS#8 (مشفر)</comment>
+ <comment xml:lang="af">PKCS#8- private sleutel (geënkripteer)</comment>
<acronym>PKCS</acronym>
<expanded-acronym>Public-Key Cryptography Standards</expanded-acronym>
<glob pattern="*.p8e"/>
</mime-type>
<mime-type type="application/pkcs10">
<comment>PKCS#10 certification request</comment>
- <comment xml:lang="ar">طلب شهادة PKCS#10</comment>
- <comment xml:lang="be@latin">Zapyt sertyfikacyi PKCS#10</comment>
- <comment xml:lang="bg">Заявка за сертификат — PKCS#10</comment>
- <comment xml:lang="ca">sol·licitud de certificació PKCS#10</comment>
- <comment xml:lang="cs">žádost o certifikát PKCS#10</comment>
- <comment xml:lang="da">PKCS#10-certifikatanmodning</comment>
- <comment xml:lang="de">PKCS#10-Zertifikatanfrage</comment>
- <comment xml:lang="el">Αίτηση πιστοποίησης PKCS#10</comment>
- <comment xml:lang="en_GB">PKCS#10 certification request</comment>
- <comment xml:lang="es">petición de certificados PKCS#10</comment>
- <comment xml:lang="eu">PKCS#10 ziurtagirien eskaera</comment>
- <comment xml:lang="fi">PKCS#10-varmennepyyntö</comment>
- <comment xml:lang="fo">PKCS#10 váttanarumbøn</comment>
- <comment xml:lang="fr">requête de certification PKCS#10</comment>
- <comment xml:lang="ga">iarratas dheimhniúchán PKCS#10</comment>
- <comment xml:lang="gl">Solicitude de certificado PKCS#10</comment>
- <comment xml:lang="he">בקשה מוסמכת PLCS#10</comment>
- <comment xml:lang="hr">PKCS#10 zahtjev vjerodajnice</comment>
- <comment xml:lang="hu">PKCS#10-tanúsítványkérés</comment>
- <comment xml:lang="ia">Requesta de certification PKCS#10</comment>
- <comment xml:lang="id">Permintaan sertifikasi PKCS#10</comment>
- <comment xml:lang="it">Richiesta certificazione PKCS#10</comment>
- <comment xml:lang="ja">PKCS#10 証明書署名要求</comment>
- <comment xml:lang="kk">PKCS#10 сертификацияға сұранымы</comment>
- <comment xml:lang="ko">PKCS#10 인증서 요청</comment>
- <comment xml:lang="lt">PKCS#10 liudijimų užklausa</comment>
- <comment xml:lang="lv">PKCS#10 sertifikācijas pieprasījums</comment>
- <comment xml:lang="nb">PKCS#10-sertifikatforespørsel</comment>
- <comment xml:lang="nl">PKCS#10-certificatieverzoek</comment>
- <comment xml:lang="nn">PKCS#10-sertifiseringsførespurnad</comment>
- <comment xml:lang="oc">requèsta de certificacion PKCS#10</comment>
- <comment xml:lang="pl">Żądanie certyfikatu PKCS#10</comment>
- <comment xml:lang="pt">pedido de certificação PKCS#10</comment>
- <comment xml:lang="pt_BR">Pedido de certificação PKCS#12</comment>
- <comment xml:lang="ro">Cerere de certificat PKCS#10</comment>
- <comment xml:lang="ru">Запрос сертификации PKCS#10</comment>
- <comment xml:lang="sk">Požiadavka na certifikát PKCS#10</comment>
- <comment xml:lang="sl">Datoteka potrdila PKCS#10</comment>
- <comment xml:lang="sq">Kërkesë çertifikimi PKCS#10</comment>
- <comment xml:lang="sr">ПКЦС#10 зхатев уверења</comment>
- <comment xml:lang="sv">PKCS#10-certifikatbegäran</comment>
- <comment xml:lang="tr">PKCS#10 sertifika isteği</comment>
- <comment xml:lang="uk">комплект сертифікатів PKCS#10</comment>
- <comment xml:lang="vi">Yêu cầu chứng nhận PKCS#10</comment>
- <comment xml:lang="zh_CN">PKCS#10 认证请求</comment>
<comment xml:lang="zh_TW">PKCS#10 憑證請求</comment>
+ <comment xml:lang="zh_CN">PKCS#10 认证请求</comment>
+ <comment xml:lang="vi">Yêu cầu chứng nhận PKCS#10</comment>
+ <comment xml:lang="uk">комплект сертифікатів PKCS#10</comment>
+ <comment xml:lang="tr">PKCS#10 sertifika isteği</comment>
+ <comment xml:lang="sv">PKCS#10-certifikatbegäran</comment>
+ <comment xml:lang="sr">ПКЦС#10 зхатев уверења</comment>
+ <comment xml:lang="sq">kërkesë certifikimi PKCS#10</comment>
+ <comment xml:lang="sl">Datoteka potrdila PKCS#10</comment>
+ <comment xml:lang="si">PKCS#10 සහතික කිරීමේ ඉල්ලීම</comment>
+ <comment xml:lang="sk">Požiadavka na certifikát PKCS#10</comment>
+ <comment xml:lang="ru">Запрос сертификации PKCS#10</comment>
+ <comment xml:lang="ro">Cerere de certificat PKCS#10</comment>
+ <comment xml:lang="pt_BR">Pedido de certificação PKCS#12</comment>
+ <comment xml:lang="pt">pedido de certificação PKCS#10</comment>
+ <comment xml:lang="pl">Żądanie certyfikatu PKCS#10</comment>
+ <comment xml:lang="oc">requèsta de certificacion PKCS#10</comment>
+ <comment xml:lang="nn">PKCS#10-sertifiseringsførespurnad</comment>
+ <comment xml:lang="nl">PKCS#10-certificatieverzoek</comment>
+ <comment xml:lang="nb">PKCS#10-sertifikatforespørsel</comment>
+ <comment xml:lang="lv">PKCS#10 sertifikācijas pieprasījums</comment>
+ <comment xml:lang="lt">PKCS#10 liudijimų užklausa</comment>
+ <comment xml:lang="ko">PKCS#10 인증서 요청</comment>
+ <comment xml:lang="kk">PKCS#10 сертификацияға сұранымы</comment>
+ <comment xml:lang="ja">PKCS#10 証明書署名要求</comment>
+ <comment xml:lang="it">Richiesta certificazione PKCS#10</comment>
+ <comment xml:lang="is">PKCS#10 skilríkisbeiðni</comment>
+ <comment xml:lang="id">Permintaan sertifikasi PKCS#10</comment>
+ <comment xml:lang="ia">Requesta de certification PKCS#10</comment>
+ <comment xml:lang="hu">PKCS#10-tanúsítványkérés</comment>
+ <comment xml:lang="hr">PKCS#10 zahtjev vjerodajnice</comment>
+ <comment xml:lang="he">בקשה מוסמכת PLCS#10</comment>
+ <comment xml:lang="gl">Solicitude de certificado PKCS#10</comment>
+ <comment xml:lang="ga">iarratas dheimhniúchán PKCS#10</comment>
+ <comment xml:lang="fur">richieste certificazion PKCS#10</comment>
+ <comment xml:lang="fr">requête de certification PKCS#10</comment>
+ <comment xml:lang="fo">PKCS#10 váttanarumbøn</comment>
+ <comment xml:lang="fi">PKCS#10-varmennepyyntö</comment>
+ <comment xml:lang="eu">PKCS#10 ziurtagirien eskaera</comment>
+ <comment xml:lang="es">petición de certificados PKCS#10</comment>
+ <comment xml:lang="en_GB">PKCS#10 certification request</comment>
+ <comment xml:lang="el">Αίτηση πιστοποίησης PKCS#10</comment>
+ <comment xml:lang="de">PKCS#10-Zertifikatanfrage</comment>
+ <comment xml:lang="da">PKCS#10-certifikatanmodning</comment>
+ <comment xml:lang="cs">žádost o certifikát PKCS#10</comment>
+ <comment xml:lang="ca">sol·licitud de certificació PKCS#10</comment>
+ <comment xml:lang="bg">Заявка за сертификат — PKCS#10</comment>
+ <comment xml:lang="be@latin">Zapyt sertyfikacyi PKCS#10</comment>
+ <comment xml:lang="be">запыт сертыфікацыі PKCS#10</comment>
+ <comment xml:lang="ar">طلب شهادة PKCS#10</comment>
+ <comment xml:lang="af">PKCS#10-sertifiseringsversoek</comment>
<acronym>PKCS</acronym>
<expanded-acronym>Public-Key Cryptography Standards</expanded-acronym>
<generic-icon name="text-x-generic"/>
@@ -1587,339 +1618,342 @@
</mime-type>
<mime-type type="application/pkix-cert">
<comment>X.509 certificate</comment>
- <comment xml:lang="ar">شهادة X.509</comment>
- <comment xml:lang="ast">Certificáu X.509</comment>
- <comment xml:lang="bg">Сертификат — X.509</comment>
- <comment xml:lang="ca">certificat X.509</comment>
- <comment xml:lang="cs">certifikát X.509</comment>
- <comment xml:lang="da">X.509-certifikat</comment>
- <comment xml:lang="de">X.509-Zertifikat</comment>
- <comment xml:lang="el">Πιστοποιητικό X.509</comment>
- <comment xml:lang="en_GB">X.509 certificate</comment>
- <comment xml:lang="es">certificado X.509</comment>
- <comment xml:lang="eu">X.509 ziurtagiria</comment>
- <comment xml:lang="fi">X.509-varmenne</comment>
- <comment xml:lang="fo">X.509 prógv</comment>
- <comment xml:lang="fr">certificat X.509</comment>
- <comment xml:lang="ga">teastas X.509</comment>
- <comment xml:lang="gl">Certificado X.509</comment>
- <comment xml:lang="he">אישור X.509</comment>
- <comment xml:lang="hr">X.509 vjerodajnica</comment>
- <comment xml:lang="hu">X.509 tanúsítvány</comment>
- <comment xml:lang="ia">Certificato X.509</comment>
- <comment xml:lang="id">Sertifikat X.509</comment>
- <comment xml:lang="it">Certificato X.509</comment>
- <comment xml:lang="ja">X.509 証明書</comment>
- <comment xml:lang="kk">X.509 сертификаты</comment>
- <comment xml:lang="ko">X.509 인증서</comment>
- <comment xml:lang="lt">X.509 liudijimas</comment>
- <comment xml:lang="lv">X.509 sertifikāts</comment>
- <comment xml:lang="nl">X.509 certificaat</comment>
- <comment xml:lang="oc">certificat X.509</comment>
- <comment xml:lang="pl">Certyfikat X.509</comment>
- <comment xml:lang="pt">certificado X.509</comment>
- <comment xml:lang="pt_BR">Certificado X.509</comment>
- <comment xml:lang="ro">Certificat X.509</comment>
- <comment xml:lang="ru">Сертификат X.509</comment>
- <comment xml:lang="sk">Certifikát X.509</comment>
- <comment xml:lang="sl">Datoteka potrdila X.509</comment>
- <comment xml:lang="sr">Икс.509 уверење</comment>
- <comment xml:lang="sv">X.509-certifikat</comment>
- <comment xml:lang="tr">X.509 sertifikası</comment>
- <comment xml:lang="uk">сертифікат X.509</comment>
- <comment xml:lang="zh_CN">X.509 证书</comment>
<comment xml:lang="zh_TW">X.509 憑證</comment>
+ <comment xml:lang="zh_CN">X.509 证书</comment>
+ <comment xml:lang="uk">сертифікат X.509</comment>
+ <comment xml:lang="tr">X.509 sertifikası</comment>
+ <comment xml:lang="sv">X.509-certifikat</comment>
+ <comment xml:lang="sr">Икс.509 уверење</comment>
+ <comment xml:lang="sq">dëshmi X.509</comment>
+ <comment xml:lang="sl">Datoteka potrdila X.509</comment>
+ <comment xml:lang="si">X.509 සහතිකය</comment>
+ <comment xml:lang="sk">Certifikát X.509</comment>
+ <comment xml:lang="ru">Сертификат X.509</comment>
+ <comment xml:lang="ro">Certificat X.509</comment>
+ <comment xml:lang="pt_BR">Certificado X.509</comment>
+ <comment xml:lang="pt">certificado X.509</comment>
+ <comment xml:lang="pl">Certyfikat X.509</comment>
+ <comment xml:lang="oc">certificat X.509</comment>
+ <comment xml:lang="nl">X.509-certificaat</comment>
+ <comment xml:lang="lv">X.509 sertifikāts</comment>
+ <comment xml:lang="lt">X.509 liudijimas</comment>
+ <comment xml:lang="ko">X.509 인증서</comment>
+ <comment xml:lang="kk">X.509 сертификаты</comment>
+ <comment xml:lang="ka">X.509 სერტიფიკატი</comment>
+ <comment xml:lang="ja">X.509 証明書</comment>
+ <comment xml:lang="it">Certificato X.509</comment>
+ <comment xml:lang="is">X.509 skilríki</comment>
+ <comment xml:lang="id">Sertifikat X.509</comment>
+ <comment xml:lang="ia">Certificato X.509</comment>
+ <comment xml:lang="hu">X.509 tanúsítvány</comment>
+ <comment xml:lang="hr">X.509 vjerodajnica</comment>
+ <comment xml:lang="he">אישור X.509</comment>
+ <comment xml:lang="gl">Certificado X.509</comment>
+ <comment xml:lang="ga">teastas X.509</comment>
+ <comment xml:lang="fur">certificât X.509</comment>
+ <comment xml:lang="fr">certificat X.509</comment>
+ <comment xml:lang="fo">X.509 prógv</comment>
+ <comment xml:lang="fi">X.509-varmenne</comment>
+ <comment xml:lang="eu">X.509 ziurtagiria</comment>
+ <comment xml:lang="es">certificado X.509</comment>
+ <comment xml:lang="en_GB">X.509 certificate</comment>
+ <comment xml:lang="el">Πιστοποιητικό X.509</comment>
+ <comment xml:lang="de">X.509-Zertifikat</comment>
+ <comment xml:lang="da">X.509-certifikat</comment>
+ <comment xml:lang="cs">certifikát X.509</comment>
+ <comment xml:lang="ca">certificat X.509</comment>
+ <comment xml:lang="bg">Сертификат — X.509</comment>
+ <comment xml:lang="be">сертыфікат X.509</comment>
+ <comment xml:lang="ast">Certificáu X.509</comment>
+ <comment xml:lang="ar">شهادة X.509</comment>
+ <comment xml:lang="af">X.509-sertifikaat</comment>
+ <magic>
+ <match type="string" value="-----BEGIN CERTIFICATE-----" offset="0"/>
+ <match type="string" value="-----BEGIN X509 CERTIFICATE-----" offset="0"/>
+ </magic>
<glob pattern="*.cer"/>
</mime-type>
<mime-type type="application/pkix-crl">
<comment>Certificate revocation list</comment>
- <comment xml:lang="ar">قائمة إبطال الشهادات</comment>
- <comment xml:lang="ast">Llistáu de revocación de certificaos</comment>
- <comment xml:lang="bg">Списък с отхвърлени сертификати</comment>
- <comment xml:lang="ca">llista de revocació de certificats</comment>
- <comment xml:lang="cs">seznam odvolaných certifikátů</comment>
- <comment xml:lang="da">Certifikattilbagekaldelsesliste</comment>
- <comment xml:lang="de">Liste widerrufener Zertifikate</comment>
- <comment xml:lang="el">Λίστα ανάκλησης πιστοποιητικού</comment>
- <comment xml:lang="en_GB">Certificate revocation list</comment>
- <comment xml:lang="es">lista de revocación de certificados</comment>
- <comment xml:lang="eu">Ziurtagiri-errebokatzeen zerrenda</comment>
- <comment xml:lang="fi">Varmenteiden sulkulista</comment>
- <comment xml:lang="fo">Prógv afturtøkulisti</comment>
- <comment xml:lang="fr">liste de révocation de certificat</comment>
- <comment xml:lang="ga">Liosta teastas cúlghairmthe</comment>
- <comment xml:lang="gl">lista de certificados de revogación</comment>
- <comment xml:lang="he">רשימת אישורים מבוטלים</comment>
- <comment xml:lang="hr">Popis opozvanih vjerodajnica</comment>
- <comment xml:lang="hu">Tanúsítvány-visszavonási lista</comment>
- <comment xml:lang="ia">Lista de revocation de certificatos</comment>
- <comment xml:lang="id">Daftar pencabutan sertificat (CRL)</comment>
- <comment xml:lang="it">Elenco certificati di revoca</comment>
- <comment xml:lang="ja">証明書失効リスト</comment>
- <comment xml:lang="kk">Сертификатты қайта шақыру тізімі</comment>
- <comment xml:lang="ko">인증서 철회 목록</comment>
- <comment xml:lang="lt">Panaikintų liudijimų sąrašas</comment>
- <comment xml:lang="lv">Sertifikātu atsaukšanu saraksts</comment>
- <comment xml:lang="nl">Certificaat revocation lijst</comment>
- <comment xml:lang="oc">lista de revocacion de certificat</comment>
- <comment xml:lang="pl">Lista unieważnień certyfikatów</comment>
- <comment xml:lang="pt">lista de revogação de certificados</comment>
- <comment xml:lang="pt_BR">Lista de revogação de certificado</comment>
- <comment xml:lang="ro">Listă de revocare a certificatelor</comment>
- <comment xml:lang="ru">Список аннулирования сертификатов</comment>
- <comment xml:lang="sk">Zoznam zrušených certifikátov</comment>
- <comment xml:lang="sl">Datoteka seznama preklica potrdil</comment>
- <comment xml:lang="sr">списак повлачења уверења</comment>
- <comment xml:lang="sv">Spärrlista för certifikat</comment>
- <comment xml:lang="tr">Sertifika iptal listesi</comment>
<comment xml:lang="uk">список відкликання сертифікатів</comment>
- <comment xml:lang="zh_CN">证书吊销列表</comment>
- <comment xml:lang="zh_TW">憑證撤銷清單</comment>
+ <comment xml:lang="sv">Certifikatåterkallningslista</comment>
+ <comment xml:lang="sq">listë shfuqizimi dëshmish</comment>
+ <comment xml:lang="ru">Список отзыва сертификатов</comment>
+ <comment xml:lang="pt_BR">Lista de revogação de certificado</comment>
+ <comment xml:lang="pl">Lista unieważnień certyfikatów</comment>
+ <comment xml:lang="it">Elenco certificati di revoca</comment>
+ <comment xml:lang="gl">Lista de revogación de certificados</comment>
+ <comment xml:lang="es">lista de revocación de certificados</comment>
+ <comment xml:lang="de">Zertifikat-Widerrufliste</comment>
+ <comment xml:lang="be">спіс адкліканых сертыфікатаў</comment>
+ <magic>
+ <match type="string" value="-----BEGIN X509 CRL-----" offset="0"/>
+ </magic>
<glob pattern="*.crl"/>
</mime-type>
<mime-type type="application/pkix-pkipath">
<comment>PkiPath certification path</comment>
- <comment xml:lang="ar">مسار شهادة PkiPath</comment>
- <comment xml:lang="ast">Camín de certificación PkiPath</comment>
- <comment xml:lang="bg">Сертификационна верига — PkiPath</comment>
- <comment xml:lang="ca">camí cap a la certificació PkiPath</comment>
- <comment xml:lang="cs">cesta k certifikátu PkiPath</comment>
- <comment xml:lang="da">PkiPath-certifikationssti</comment>
- <comment xml:lang="de">PkiPath-Zertifikatspfad</comment>
- <comment xml:lang="el">Διαδρομή πιστοποιητικού PkiPath</comment>
- <comment xml:lang="en_GB">PkiPath certification path</comment>
- <comment xml:lang="es">ruta de certificación PkiPath</comment>
- <comment xml:lang="eu">PkiPath ziurtagirien bide-izena</comment>
- <comment xml:lang="fi">PkiPath-varmennepolku</comment>
- <comment xml:lang="fo">PkiPath váttanleið</comment>
- <comment xml:lang="fr">chemin de certification PkiPath</comment>
- <comment xml:lang="ga">conair dheimhniúcháin PkiPath</comment>
- <comment xml:lang="gl">Ruta de certificación PkiPath</comment>
- <comment xml:lang="he">נתיב מאושר של PkiPath</comment>
- <comment xml:lang="hr">PkiPath putanja vjerodajnice</comment>
- <comment xml:lang="hu">PkiPath tanúsítványútvonal</comment>
- <comment xml:lang="ia">Cammino de certification PkiPath</comment>
- <comment xml:lang="id">Alamat sertifikasi PkiPath</comment>
- <comment xml:lang="it">Percorso certificazione PkiPath</comment>
- <comment xml:lang="ja">PkiPath 証明書パス</comment>
- <comment xml:lang="kk">PkiPath сертификаттау жолы</comment>
- <comment xml:lang="ko">PkiPath 인증서 요청</comment>
- <comment xml:lang="lt">PkiPath liudijimų maršrutas</comment>
- <comment xml:lang="lv">PkiPath sertifikāta ceļš</comment>
- <comment xml:lang="nl">PkiPath-certificatiepad</comment>
- <comment xml:lang="oc">camin de certificacion PkiPath</comment>
- <comment xml:lang="pl">Ścieżka certyfikacji PkiPath</comment>
- <comment xml:lang="pt">caminho de certificação PkiPath</comment>
- <comment xml:lang="pt_BR">Pedido de certificação PkiPath</comment>
- <comment xml:lang="ro">Cale certificare PkiPath</comment>
- <comment xml:lang="ru">Путь сертификации PkiPath</comment>
- <comment xml:lang="sk">Cesta k certifikátu PkiPath</comment>
- <comment xml:lang="sl">Datoteka poti potrdila PkiPath</comment>
- <comment xml:lang="sr">путања уверења ПкиПат-а</comment>
- <comment xml:lang="sv">PkiPath-certifikatsekvens</comment>
- <comment xml:lang="tr">PkiPath sertifika yolu</comment>
- <comment xml:lang="uk">шлях сертифікації PkiPath</comment>
- <comment xml:lang="vi">Đường dẫn cấp chứng nhận PkiPath</comment>
- <comment xml:lang="zh_CN">PkiPath 证书目录</comment>
<comment xml:lang="zh_TW">PkiPath 憑證路徑</comment>
+ <comment xml:lang="zh_CN">PkiPath 证书目录</comment>
+ <comment xml:lang="vi">Đường dẫn cấp chứng nhận PkiPath</comment>
+ <comment xml:lang="uk">шлях сертифікації PkiPath</comment>
+ <comment xml:lang="tr">PkiPath sertifika yolu</comment>
+ <comment xml:lang="sv">PkiPath-certifikatsekvens</comment>
+ <comment xml:lang="sr">путања уверења ПкиПат-а</comment>
+ <comment xml:lang="sq">shteg dëshmish PkiPath</comment>
+ <comment xml:lang="sl">Datoteka poti potrdila PkiPath</comment>
+ <comment xml:lang="si">PkiPath සහතික කිරීමේ මාර්ගය</comment>
+ <comment xml:lang="sk">Cesta k certifikátu PkiPath</comment>
+ <comment xml:lang="ru">Путь сертификации PkiPath</comment>
+ <comment xml:lang="ro">Cale certificare PkiPath</comment>
+ <comment xml:lang="pt_BR">Pedido de certificação PkiPath</comment>
+ <comment xml:lang="pt">caminho de certificação PkiPath</comment>
+ <comment xml:lang="pl">Ścieżka certyfikacji PkiPath</comment>
+ <comment xml:lang="oc">camin de certificacion PkiPath</comment>
+ <comment xml:lang="nl">PkiPath-certificatiepad</comment>
+ <comment xml:lang="lv">PkiPath sertifikāta ceļš</comment>
+ <comment xml:lang="lt">PkiPath liudijimų maršrutas</comment>
+ <comment xml:lang="ko">PkiPath 인증서 요청</comment>
+ <comment xml:lang="kk">PkiPath сертификаттау жолы</comment>
+ <comment xml:lang="ja">PkiPath 証明書パス</comment>
+ <comment xml:lang="it">Percorso certificazione PkiPath</comment>
+ <comment xml:lang="is">PkiPath vottunarslóð</comment>
+ <comment xml:lang="id">Alamat sertifikasi PkiPath</comment>
+ <comment xml:lang="ia">Cammino de certification PkiPath</comment>
+ <comment xml:lang="hu">PkiPath tanúsítványútvonal</comment>
+ <comment xml:lang="hr">PkiPath putanja vjerodajnice</comment>
+ <comment xml:lang="he">נתיב מאושר של PkiPath</comment>
+ <comment xml:lang="gl">Ruta de certificación PkiPath</comment>
+ <comment xml:lang="ga">conair dheimhniúcháin PkiPath</comment>
+ <comment xml:lang="fur">percors di certificazion PkiPath</comment>
+ <comment xml:lang="fr">chemin de certification PkiPath</comment>
+ <comment xml:lang="fo">PkiPath váttanleið</comment>
+ <comment xml:lang="fi">PkiPath-varmennepolku</comment>
+ <comment xml:lang="eu">PkiPath ziurtagirien bide-izena</comment>
+ <comment xml:lang="es">ruta de certificación PkiPath</comment>
+ <comment xml:lang="en_GB">PkiPath certification path</comment>
+ <comment xml:lang="el">Διαδρομή πιστοποιητικού PkiPath</comment>
+ <comment xml:lang="de">PkiPath-Zertifikatspfad</comment>
+ <comment xml:lang="da">PkiPath-certifikationssti</comment>
+ <comment xml:lang="cs">cesta k certifikátu PkiPath</comment>
+ <comment xml:lang="ca">camí cap a la certificació PkiPath</comment>
+ <comment xml:lang="bg">Сертификационна верига — PkiPath</comment>
+ <comment xml:lang="be">шлях сертыфікацыі PkiPath</comment>
+ <comment xml:lang="ast">Camín de certificación PkiPath</comment>
+ <comment xml:lang="ar">مسار شهادة PkiPath</comment>
+ <comment xml:lang="af">PkiPath-sertifiseringspad</comment>
<glob pattern="*.pkipath"/>
</mime-type>
<mime-type type="application/postscript">
- <comment>PS document</comment>
- <comment xml:lang="ar">مستند PS</comment>
- <comment xml:lang="ast">Documentu PS</comment>
- <comment xml:lang="be@latin">Dakument PS</comment>
- <comment xml:lang="bg">Документ — PS</comment>
- <comment xml:lang="ca">document PS</comment>
- <comment xml:lang="cs">dokument PS</comment>
- <comment xml:lang="da">PS-dokument</comment>
- <comment xml:lang="de">PS-Dokument</comment>
- <comment xml:lang="el">Έγγραφο PS</comment>
- <comment xml:lang="en_GB">PS document</comment>
- <comment xml:lang="eo">PS-dokumento</comment>
- <comment xml:lang="es">documento PS</comment>
- <comment xml:lang="eu">PS dokumentua</comment>
- <comment xml:lang="fi">PS-asiakirja</comment>
- <comment xml:lang="fo">PS skjal</comment>
- <comment xml:lang="fr">document PS</comment>
- <comment xml:lang="ga">cáipéis PS</comment>
- <comment xml:lang="gl">documento PS</comment>
- <comment xml:lang="he">מסמך PS</comment>
- <comment xml:lang="hr">PS dokument</comment>
- <comment xml:lang="hu">PS dokumentum</comment>
- <comment xml:lang="ia">Documento PS</comment>
- <comment xml:lang="id">Dokumen PS</comment>
- <comment xml:lang="it">Documento PS</comment>
- <comment xml:lang="ja">PS ドキュメント</comment>
- <comment xml:lang="kk">PS құжаты</comment>
- <comment xml:lang="ko">PS 문서</comment>
- <comment xml:lang="lt">PS dokumentas</comment>
- <comment xml:lang="lv">PS dokuments</comment>
- <comment xml:lang="nb">PS-dokument</comment>
- <comment xml:lang="nl">PS-document</comment>
- <comment xml:lang="nn">PS-dokument</comment>
- <comment xml:lang="oc">document PS</comment>
- <comment xml:lang="pl">Dokument PS</comment>
- <comment xml:lang="pt">documento PS</comment>
- <comment xml:lang="pt_BR">Documento PS</comment>
- <comment xml:lang="ro">Document PS</comment>
- <comment xml:lang="ru">Документ PS</comment>
- <comment xml:lang="sk">Dokument PS</comment>
- <comment xml:lang="sl">Dokument PS</comment>
- <comment xml:lang="sq">Dokument PS</comment>
- <comment xml:lang="sr">ПС документ</comment>
- <comment xml:lang="sv">PS-dokument</comment>
- <comment xml:lang="tr">PS belgesi</comment>
- <comment xml:lang="uk">документ PS</comment>
- <comment xml:lang="vi">Tài liệu PS</comment>
- <comment xml:lang="zh_CN">PS 文档</comment>
- <comment xml:lang="zh_TW">Ps 文件</comment>
- <acronym>PS</acronym>
- <expanded-acronym>PostScript</expanded-acronym>
+ <comment>PostScript document</comment>
+ <comment xml:lang="zh_TW">PostScript 文件</comment>
+ <comment xml:lang="zh_CN">PostScript 文档</comment>
+ <comment xml:lang="uk">документ PostScript</comment>
+ <comment xml:lang="tr">PostScript belgesi</comment>
+ <comment xml:lang="sv">Postscript-dokument</comment>
+ <comment xml:lang="sq">dokument PostScript</comment>
+ <comment xml:lang="sl">Dokument PostScript</comment>
+ <comment xml:lang="si">PostScript ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument PostScript</comment>
+ <comment xml:lang="ru">Документ PostScript</comment>
+ <comment xml:lang="pt_BR">Documento PostScript</comment>
+ <comment xml:lang="pt">documento PostScript</comment>
+ <comment xml:lang="pl">Dokument PostScript</comment>
+ <comment xml:lang="oc">document PostScript</comment>
+ <comment xml:lang="nl">PostScript-document</comment>
+ <comment xml:lang="lt">PostScript dokumentas</comment>
+ <comment xml:lang="ko">포스트스크립트 문서</comment>
+ <comment xml:lang="kk">PostScript құжаты</comment>
+ <comment xml:lang="ka">PostScript-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">PostScript ドキュメント</comment>
+ <comment xml:lang="it">Documento PostScript</comment>
+ <comment xml:lang="is">PostScript skjal</comment>
+ <comment xml:lang="id">Dokumen PostScript</comment>
+ <comment xml:lang="hu">PostScript dokumentum</comment>
+ <comment xml:lang="hr">PostScript dokument</comment>
+ <comment xml:lang="he">מסמך PostScript</comment>
+ <comment xml:lang="gl">Documento de PostScript</comment>
+ <comment xml:lang="fr">document PostScript</comment>
+ <comment xml:lang="fi">PostScript-asiakirja</comment>
+ <comment xml:lang="eu">PostScript dokumentua</comment>
+ <comment xml:lang="es">documento PostScript</comment>
+ <comment xml:lang="en_GB">PostScript document</comment>
+ <comment xml:lang="de">PostScript-Dokument</comment>
+ <comment xml:lang="da">PostScript-dokument</comment>
+ <comment xml:lang="ca">document PostScript</comment>
+ <comment xml:lang="bg">Документ — PostScrip</comment>
+ <comment xml:lang="be">дакумент PostScript</comment>
+ <comment xml:lang="ar">مستند بوست سكربت</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="\004%!" type="string" offset="0"/>
- <match value="%!" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\004%!" offset="0"/>
+ <match type="string" value="%!" offset="0"/>
</magic>
<glob pattern="*.ps"/>
</mime-type>
<mime-type type="application/prs.plucker">
<comment>Plucker document</comment>
- <comment xml:lang="ar">مستند Plucker</comment>
- <comment xml:lang="ast">Documentu Plucker</comment>
- <comment xml:lang="be@latin">Dakument Plucker</comment>
- <comment xml:lang="bg">Документ — Plucker</comment>
- <comment xml:lang="ca">document Plucker</comment>
- <comment xml:lang="cs">dokument Plucker</comment>
- <comment xml:lang="da">Pluckerdokument</comment>
- <comment xml:lang="de">Plucker-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Plucker</comment>
- <comment xml:lang="en_GB">Plucker document</comment>
- <comment xml:lang="eo">Plucker-dokumento</comment>
- <comment xml:lang="es">documento de Plucker</comment>
- <comment xml:lang="eu">Plucker dokumentua</comment>
- <comment xml:lang="fi">Plucker-asiakirja</comment>
- <comment xml:lang="fo">Plucker skjal</comment>
- <comment xml:lang="fr">document Plucker</comment>
- <comment xml:lang="ga">cáipéis Plucker</comment>
- <comment xml:lang="gl">documento de Plucker</comment>
- <comment xml:lang="he">מסמך של Plucker</comment>
- <comment xml:lang="hr">Plucker dokument</comment>
- <comment xml:lang="hu">Plucker dokumentum</comment>
- <comment xml:lang="ia">Documento Plucker</comment>
- <comment xml:lang="id">Dokumen Plucker</comment>
- <comment xml:lang="it">Documento Plucker</comment>
- <comment xml:lang="ja">Plucker ドキュメント</comment>
- <comment xml:lang="kk">Plucker құжаты</comment>
- <comment xml:lang="ko">Plucker 문서</comment>
- <comment xml:lang="lt">Plucker dokumentas</comment>
- <comment xml:lang="lv">Plucker dokuments</comment>
- <comment xml:lang="nb">Plucker-dokument</comment>
- <comment xml:lang="nl">Plucker-document</comment>
- <comment xml:lang="nn">Plucker-dokument</comment>
- <comment xml:lang="oc">document Plucker</comment>
- <comment xml:lang="pl">Dokument Plucker</comment>
- <comment xml:lang="pt">documento Plucker</comment>
- <comment xml:lang="pt_BR">Documento do Plucker</comment>
- <comment xml:lang="ro">Document Plucker</comment>
- <comment xml:lang="ru">Документ Plucker</comment>
- <comment xml:lang="sk">Dokument Plucker</comment>
- <comment xml:lang="sl">Dokument Plucker</comment>
- <comment xml:lang="sq">Dokument Plucker</comment>
- <comment xml:lang="sr">Плакер документ</comment>
- <comment xml:lang="sv">Plucker-dokument</comment>
- <comment xml:lang="tr">Plucker belgesi</comment>
- <comment xml:lang="uk">документ Plucker</comment>
- <comment xml:lang="vi">Tài liệu Plucker</comment>
- <comment xml:lang="zh_CN">Plucker 文档</comment>
<comment xml:lang="zh_TW">Plucker 文件</comment>
+ <comment xml:lang="zh_CN">Plucker 文档</comment>
+ <comment xml:lang="vi">Tài liệu Plucker</comment>
+ <comment xml:lang="uk">документ Plucker</comment>
+ <comment xml:lang="tr">Plucker belgesi</comment>
+ <comment xml:lang="sv">Plucker-dokument</comment>
+ <comment xml:lang="sr">Плакер документ</comment>
+ <comment xml:lang="sq">dokument Plucker</comment>
+ <comment xml:lang="sl">Dokument Plucker</comment>
+ <comment xml:lang="si">ප්ලකර් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Plucker</comment>
+ <comment xml:lang="ru">Документ Plucker</comment>
+ <comment xml:lang="ro">Document Plucker</comment>
+ <comment xml:lang="pt_BR">Documento do Plucker</comment>
+ <comment xml:lang="pt">documento Plucker</comment>
+ <comment xml:lang="pl">Dokument Plucker</comment>
+ <comment xml:lang="oc">document Plucker</comment>
+ <comment xml:lang="nn">Plucker-dokument</comment>
+ <comment xml:lang="nl">Plucker-document</comment>
+ <comment xml:lang="nb">Plucker-dokument</comment>
+ <comment xml:lang="lv">Plucker dokuments</comment>
+ <comment xml:lang="lt">Plucker dokumentas</comment>
+ <comment xml:lang="ko">Plucker 문서</comment>
+ <comment xml:lang="kk">Plucker құжаты</comment>
+ <comment xml:lang="ka">Plucker-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Plucker ドキュメント</comment>
+ <comment xml:lang="it">Documento Plucker</comment>
+ <comment xml:lang="is">Plucker skjal</comment>
+ <comment xml:lang="id">Dokumen Plucker</comment>
+ <comment xml:lang="ia">Documento Plucker</comment>
+ <comment xml:lang="hu">Plucker dokumentum</comment>
+ <comment xml:lang="hr">Plucker dokument</comment>
+ <comment xml:lang="he">מסמך של Plucker</comment>
+ <comment xml:lang="gl">documento de Plucker</comment>
+ <comment xml:lang="ga">cáipéis Plucker</comment>
+ <comment xml:lang="fur">document Plucker</comment>
+ <comment xml:lang="fr">document Plucker</comment>
+ <comment xml:lang="fo">Plucker skjal</comment>
+ <comment xml:lang="fi">Plucker-asiakirja</comment>
+ <comment xml:lang="eu">Plucker dokumentua</comment>
+ <comment xml:lang="es">documento de Plucker</comment>
+ <comment xml:lang="eo">Plucker-dokumento</comment>
+ <comment xml:lang="en_GB">Plucker document</comment>
+ <comment xml:lang="el">Έγγραφο Plucker</comment>
+ <comment xml:lang="de">Plucker-Dokument</comment>
+ <comment xml:lang="da">Pluckerdokument</comment>
+ <comment xml:lang="cs">dokument Plucker</comment>
+ <comment xml:lang="ca">document Plucker</comment>
+ <comment xml:lang="bg">Документ — Plucker</comment>
+ <comment xml:lang="be@latin">Dakument Plucker</comment>
+ <comment xml:lang="be">дакумент Plucker</comment>
+ <comment xml:lang="ast">Documentu Plucker</comment>
+ <comment xml:lang="ar">مستند Plucker</comment>
+ <comment xml:lang="af">Plucker-dokument</comment>
<generic-icon name="x-office-document"/>
<magic priority="80">
- <match value="DataPlkr" type="string" offset="60"/>
+ <match type="string" value="DataPlkr" offset="60"/>
</magic>
</mime-type>
<mime-type type="application/raml+yaml">
<comment>RAML document</comment>
- <comment xml:lang="ast">Documentu RAML</comment>
- <comment xml:lang="ca">document RAML</comment>
- <comment xml:lang="cs">dokument RAML</comment>
- <comment xml:lang="da">RAML-dokument</comment>
- <comment xml:lang="de">RAML-Dokument</comment>
- <comment xml:lang="en_GB">RAML document</comment>
- <comment xml:lang="es">documento RAML</comment>
- <comment xml:lang="eu">RAML dokumentua</comment>
- <comment xml:lang="fi">RAML-asiakirja</comment>
- <comment xml:lang="fr">document RAML</comment>
- <comment xml:lang="ga">cáipéis RAML</comment>
- <comment xml:lang="he">מסמך RAML</comment>
- <comment xml:lang="hr">RAML dokument</comment>
- <comment xml:lang="hu">RAML dokumentum</comment>
- <comment xml:lang="id">dokumen RAML</comment>
- <comment xml:lang="it">Documento RAML</comment>
- <comment xml:lang="kk">RAML құжаты</comment>
- <comment xml:lang="ko">RAML 문서</comment>
- <comment xml:lang="oc">Document RAML</comment>
- <comment xml:lang="pl">Dokument RAML</comment>
- <comment xml:lang="pt_BR">Documento RAML</comment>
- <comment xml:lang="ru">Документ RAML</comment>
- <comment xml:lang="sk">Dokument RAML</comment>
- <comment xml:lang="sr">РАМЛ документ</comment>
- <comment xml:lang="sv">RAML-dokument</comment>
- <comment xml:lang="tr">RAML belgesi</comment>
- <comment xml:lang="uk">документ RAML</comment>
- <comment xml:lang="zh_CN">RAML 文档</comment>
<comment xml:lang="zh_TW">RAML 文件</comment>
+ <comment xml:lang="zh_CN">RAML 文档</comment>
+ <comment xml:lang="uk">документ RAML</comment>
+ <comment xml:lang="tr">RAML belgesi</comment>
+ <comment xml:lang="sv">RAML-dokument</comment>
+ <comment xml:lang="sr">РАМЛ документ</comment>
+ <comment xml:lang="sq">dokument RAML</comment>
+ <comment xml:lang="sl">Dokument RAML</comment>
+ <comment xml:lang="si">RAML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RAML</comment>
+ <comment xml:lang="ru">Документ RAML</comment>
+ <comment xml:lang="pt_BR">Documento RAML</comment>
+ <comment xml:lang="pt">documento RAML</comment>
+ <comment xml:lang="pl">Dokument RAML</comment>
+ <comment xml:lang="oc">Document RAML</comment>
+ <comment xml:lang="nl">RAML-document</comment>
+ <comment xml:lang="lt">RAML dokumentas</comment>
+ <comment xml:lang="ko">RAML 문서</comment>
+ <comment xml:lang="kk">RAML құжаты</comment>
+ <comment xml:lang="ka">RAML-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">RAML ドキュメント</comment>
+ <comment xml:lang="it">Documento RAML</comment>
+ <comment xml:lang="is">RAML skjal</comment>
+ <comment xml:lang="id">Dokumen RAML</comment>
+ <comment xml:lang="hu">RAML dokumentum</comment>
+ <comment xml:lang="hr">RAML dokument</comment>
+ <comment xml:lang="he">מסמך RAML</comment>
+ <comment xml:lang="gl">Documento RAML</comment>
+ <comment xml:lang="ga">cáipéis RAML</comment>
+ <comment xml:lang="fur">document RAML</comment>
+ <comment xml:lang="fr">document RAML</comment>
+ <comment xml:lang="fi">RAML-asiakirja</comment>
+ <comment xml:lang="eu">RAML dokumentua</comment>
+ <comment xml:lang="es">documento RAML</comment>
+ <comment xml:lang="en_GB">RAML document</comment>
+ <comment xml:lang="de">RAML-Dokument</comment>
+ <comment xml:lang="da">RAML-dokument</comment>
+ <comment xml:lang="cs">dokument RAML</comment>
+ <comment xml:lang="ca">document RAML</comment>
+ <comment xml:lang="bg">Документ — RAML</comment>
+ <comment xml:lang="be">дакумент RAML</comment>
+ <comment xml:lang="ast">Documentu RAML</comment>
+ <comment xml:lang="ar">مستند RAML</comment>
+ <comment xml:lang="af">RAML-dokument</comment>
<acronym>RAML</acronym>
<expanded-acronym>RESTful API Modeling Language</expanded-acronym>
- <sub-class-of type="application/x-yaml"/>
+ <sub-class-of type="application/yaml"/>
<magic>
- <match value="#%RAML " type="string" offset="0"/>
+ <match type="string" value="#%RAML " offset="0"/>
</magic>
<glob pattern="*.raml"/>
</mime-type>
<mime-type type="application/relax-ng-compact-syntax">
<comment>RELAX NG XML schema</comment>
- <comment xml:lang="ar">مخطط RELAX NG XML</comment>
- <comment xml:lang="bg">Схема за XML — RELAX NG</comment>
- <comment xml:lang="ca">esquema XML en RELAX NG</comment>
- <comment xml:lang="cs">schéma RELAX NG XML</comment>
- <comment xml:lang="da">RELAX NG XML-skema</comment>
- <comment xml:lang="de">RELAX NG XML-Schema</comment>
- <comment xml:lang="el">Σχήμα RELAX NG XML</comment>
- <comment xml:lang="en_GB">RELAX NG XML schema</comment>
- <comment xml:lang="es">esquema XML RELAX NG</comment>
- <comment xml:lang="eu">RELAX NG XML eskema</comment>
- <comment xml:lang="fi">RELAX NG XML-skeema</comment>
- <comment xml:lang="fr">schéma XML RELAX NG</comment>
- <comment xml:lang="ga">scéimre XML RELAX NG</comment>
- <comment xml:lang="gl">Esquema XML RELAX NG</comment>
- <comment xml:lang="he">סכנת RELAX NG XML</comment>
- <comment xml:lang="hr">RELAX NG XML shema</comment>
- <comment xml:lang="hu">RELAX NG XML-séma</comment>
- <comment xml:lang="ia">Schema XML RELAX NG</comment>
- <comment xml:lang="id">Skema XML RELAX NG</comment>
- <comment xml:lang="it">Schema XML RELAX NG</comment>
- <comment xml:lang="ja">RELAX NG XML スキーマ</comment>
- <comment xml:lang="kk">RELAX NG XML сұлбасы</comment>
- <comment xml:lang="ko">RELAX NG XML 스키마</comment>
- <comment xml:lang="lt">RELAX NG XML schema</comment>
- <comment xml:lang="lv">RELAX NG XML shēma</comment>
- <comment xml:lang="nl">RELAX NG XML schema</comment>
- <comment xml:lang="oc">esquèma XML RELAX NG</comment>
- <comment xml:lang="pl">Schemat XML RELAX NG</comment>
- <comment xml:lang="pt">Esquema RELAX NG XML</comment>
- <comment xml:lang="pt_BR">Esquema XML de RELAX NG</comment>
- <comment xml:lang="ro">Schemă RELAX NG XML</comment>
- <comment xml:lang="ru">XML-схема RELAX NG</comment>
- <comment xml:lang="sk">XML schéma RELAX NG</comment>
- <comment xml:lang="sl">Datoteka shema RELAX NG XML</comment>
- <comment xml:lang="sr">РЕЛАКС НГ ИксМЛ шема</comment>
- <comment xml:lang="sv">RELAX NG XML-schema</comment>
- <comment xml:lang="tr">RELAX NG XML şeması</comment>
- <comment xml:lang="uk">XML-схема RELAX NG</comment>
+ <comment xml:lang="zh_TW">RELAX NG XML 綱要</comment>
<comment xml:lang="zh_CN">RELAX NG XML 模式</comment>
- <comment xml:lang="zh_TW">RELAX NG XML schema</comment>
+ <comment xml:lang="uk">XML-схема RELAX NG</comment>
+ <comment xml:lang="tr">RELAX NG XML şeması</comment>
+ <comment xml:lang="sv">RELAX NG XML-schema</comment>
+ <comment xml:lang="sr">РЕЛАКС НГ ИксМЛ шема</comment>
+ <comment xml:lang="sl">Datoteka shema RELAX NG XML</comment>
+ <comment xml:lang="si">RELAX NG XML ක්‍රමය</comment>
+ <comment xml:lang="sk">XML schéma RELAX NG</comment>
+ <comment xml:lang="ru">XML-схема RELAX NG</comment>
+ <comment xml:lang="ro">Schemă RELAX NG XML</comment>
+ <comment xml:lang="pt_BR">Esquema XML de RELAX NG</comment>
+ <comment xml:lang="pt">Esquema RELAX NG XML</comment>
+ <comment xml:lang="pl">Schemat XML RELAX NG</comment>
+ <comment xml:lang="oc">esquèma XML RELAX NG</comment>
+ <comment xml:lang="nl">RELAX NG XML-schema</comment>
+ <comment xml:lang="lv">RELAX NG XML shēma</comment>
+ <comment xml:lang="lt">RELAX NG XML schema</comment>
+ <comment xml:lang="ko">RELAX NG XML 스키마</comment>
+ <comment xml:lang="kk">RELAX NG XML сұлбасы</comment>
+ <comment xml:lang="ja">RELAX NG XML スキーマ</comment>
+ <comment xml:lang="it">Schema XML RELAX NG</comment>
+ <comment xml:lang="is">RELAX NG XML skema</comment>
+ <comment xml:lang="id">Skema XML RELAX NG</comment>
+ <comment xml:lang="ia">Schema XML RELAX NG</comment>
+ <comment xml:lang="hu">RELAX NG XML-séma</comment>
+ <comment xml:lang="hr">RELAX NG XML shema</comment>
+ <comment xml:lang="he">סכנת RELAX NG XML</comment>
+ <comment xml:lang="gl">Esquema XML RELAX NG</comment>
+ <comment xml:lang="ga">scéimre XML RELAX NG</comment>
+ <comment xml:lang="fur">scheme XML RELAX NG</comment>
+ <comment xml:lang="fr">schéma XML RELAX NG</comment>
+ <comment xml:lang="fi">RELAX NG XML-skeema</comment>
+ <comment xml:lang="eu">RELAX NG XML eskema</comment>
+ <comment xml:lang="es">esquema XML RELAX NG</comment>
+ <comment xml:lang="en_GB">RELAX NG XML schema</comment>
+ <comment xml:lang="el">Σχήμα RELAX NG XML</comment>
+ <comment xml:lang="de">RELAX NG XML-Schema</comment>
+ <comment xml:lang="da">RELAX NG XML-skema</comment>
+ <comment xml:lang="cs">schéma RELAX NG XML</comment>
+ <comment xml:lang="ca">esquema XML en RELAX NG</comment>
+ <comment xml:lang="bg">Схема за XML — RELAX NG</comment>
+ <comment xml:lang="be">XML-схема RELAX NG</comment>
+ <comment xml:lang="ar">مخطط RELAX NG XML</comment>
+ <comment xml:lang="af">RELAX NG XML-skema</comment>
<acronym>RELAX NG</acronym>
<expanded-acronym>REgular LAnguage for XML Next Generation</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -1929,165 +1963,182 @@
</mime-type>
<mime-type type="application/rtf">
<comment>RTF document</comment>
- <comment xml:lang="ar">مستند RTF</comment>
- <comment xml:lang="ast">Documentu RTF</comment>
- <comment xml:lang="be@latin">Dakument RTF</comment>
- <comment xml:lang="bg">Документ — RTF</comment>
- <comment xml:lang="ca">document RTF</comment>
- <comment xml:lang="cs">dokument RTF</comment>
- <comment xml:lang="da">RTF-dokument</comment>
- <comment xml:lang="de">RTF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο RTF</comment>
- <comment xml:lang="en_GB">RTF document</comment>
- <comment xml:lang="eo">RTF-dokumento</comment>
- <comment xml:lang="es">documento RTF</comment>
- <comment xml:lang="eu">RTF dokumentua</comment>
- <comment xml:lang="fi">RTF-asiakirja</comment>
- <comment xml:lang="fo">RTF skjal</comment>
- <comment xml:lang="fr">document RTF</comment>
- <comment xml:lang="ga">cáipéis RTF</comment>
- <comment xml:lang="gl">documento RTF</comment>
- <comment xml:lang="he">מסמך RTF</comment>
- <comment xml:lang="hr">RTF dokument</comment>
- <comment xml:lang="hu">RTF dokumentum</comment>
- <comment xml:lang="ia">Documento RTF</comment>
- <comment xml:lang="id">Dokumen RTF</comment>
- <comment xml:lang="it">Documento RTF</comment>
- <comment xml:lang="ja">RTF ドキュメント</comment>
- <comment xml:lang="kk">RTF құжаты</comment>
- <comment xml:lang="ko">RTF 문서</comment>
- <comment xml:lang="lt">RTF dokumentas</comment>
- <comment xml:lang="lv">RTF dokuments</comment>
- <comment xml:lang="nb">RTF-dokument</comment>
- <comment xml:lang="nl">RTF-document</comment>
- <comment xml:lang="nn">TRF-dokument</comment>
- <comment xml:lang="oc">document RTF</comment>
- <comment xml:lang="pl">Dokument RTF</comment>
- <comment xml:lang="pt">documento RTF</comment>
- <comment xml:lang="pt_BR">Documento RTF</comment>
- <comment xml:lang="ro">Document RTF</comment>
- <comment xml:lang="ru">Документ RTF</comment>
- <comment xml:lang="sk">Dokument RTF</comment>
- <comment xml:lang="sl">Dokument RTF</comment>
- <comment xml:lang="sq">Dokument RTF</comment>
- <comment xml:lang="sr">РТФ документ</comment>
- <comment xml:lang="sv">RTF-dokument</comment>
- <comment xml:lang="tr">RTF belgesi</comment>
- <comment xml:lang="uk">документ RTF</comment>
- <comment xml:lang="vi">Tài liệu RTF</comment>
- <comment xml:lang="zh_CN">RTF 文档</comment>
<comment xml:lang="zh_TW">RTF 文件</comment>
+ <comment xml:lang="zh_CN">RTF 文档</comment>
+ <comment xml:lang="vi">Tài liệu RTF</comment>
+ <comment xml:lang="uk">документ RTF</comment>
+ <comment xml:lang="tr">RTF belgesi</comment>
+ <comment xml:lang="sv">RTF-dokument</comment>
+ <comment xml:lang="sr">РТФ документ</comment>
+ <comment xml:lang="sq">dokument RTF</comment>
+ <comment xml:lang="sl">Dokument RTF</comment>
+ <comment xml:lang="si">RTF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RTF</comment>
+ <comment xml:lang="ru">Документ RTF</comment>
+ <comment xml:lang="ro">Document RTF</comment>
+ <comment xml:lang="pt_BR">Documento RTF</comment>
+ <comment xml:lang="pt">documento RTF</comment>
+ <comment xml:lang="pl">Dokument RTF</comment>
+ <comment xml:lang="oc">document RTF</comment>
+ <comment xml:lang="nn">TRF-dokument</comment>
+ <comment xml:lang="nl">RTF-document</comment>
+ <comment xml:lang="nb">RTF-dokument</comment>
+ <comment xml:lang="lv">RTF dokuments</comment>
+ <comment xml:lang="lt">RTF dokumentas</comment>
+ <comment xml:lang="ko">RTF 문서</comment>
+ <comment xml:lang="kk">RTF құжаты</comment>
+ <comment xml:lang="ka">RTF დოკუმენტი</comment>
+ <comment xml:lang="ja">RTF ドキュメント</comment>
+ <comment xml:lang="it">Documento RTF</comment>
+ <comment xml:lang="is">RTF skjal</comment>
+ <comment xml:lang="id">Dokumen RTF</comment>
+ <comment xml:lang="ia">Documento RTF</comment>
+ <comment xml:lang="hu">RTF dokumentum</comment>
+ <comment xml:lang="hr">RTF dokument</comment>
+ <comment xml:lang="he">מסמך RTF</comment>
+ <comment xml:lang="gl">documento RTF</comment>
+ <comment xml:lang="ga">cáipéis RTF</comment>
+ <comment xml:lang="fur">document RTF</comment>
+ <comment xml:lang="fr">document RTF</comment>
+ <comment xml:lang="fo">RTF skjal</comment>
+ <comment xml:lang="fi">RTF-asiakirja</comment>
+ <comment xml:lang="eu">RTF dokumentua</comment>
+ <comment xml:lang="es">documento RTF</comment>
+ <comment xml:lang="eo">RTF-dokumento</comment>
+ <comment xml:lang="en_GB">RTF document</comment>
+ <comment xml:lang="el">Έγγραφο RTF</comment>
+ <comment xml:lang="de">RTF-Dokument</comment>
+ <comment xml:lang="da">RTF-dokument</comment>
+ <comment xml:lang="cs">dokument RTF</comment>
+ <comment xml:lang="ca">document RTF</comment>
+ <comment xml:lang="bg">Документ — RTF</comment>
+ <comment xml:lang="be@latin">Dakument RTF</comment>
+ <comment xml:lang="be">дакумент RTF</comment>
+ <comment xml:lang="ast">Documentu RTF</comment>
+ <comment xml:lang="ar">مستند RTF</comment>
+ <comment xml:lang="af">RTF-dokument</comment>
<acronym>RTF</acronym>
<expanded-acronym>Rich Text Format</expanded-acronym>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="{\\rtf" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="{\\rtf" offset="0"/>
</magic>
<glob pattern="*.rtf"/>
<alias type="text/rtf"/>
</mime-type>
<mime-type type="application/sieve">
<comment>Sieve mail filter script</comment>
- <comment xml:lang="ar">سكربت مرشح بريد Sieve</comment>
- <comment xml:lang="be@latin">Skrypt filtravańnia pošty Sieve</comment>
- <comment xml:lang="bg">Скрипт-филтър за пресяване на поща</comment>
- <comment xml:lang="ca">script de filtre de correu Sieve</comment>
- <comment xml:lang="cs">skript poštovního filtru Sieve</comment>
- <comment xml:lang="da">Sieve e-post-filterprogram</comment>
- <comment xml:lang="de">Sieve-E-Mail-Filterskript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών φιλτραρίσματος αλληλογραφίας Sieve</comment>
- <comment xml:lang="en_GB">Sieve mail filter script</comment>
- <comment xml:lang="es">secuencia de órdenes de filtro en Sieve</comment>
- <comment xml:lang="eu">Sieve posta-iragazki script-a</comment>
- <comment xml:lang="fi">Sieve-postinsuodatuskomentotiedosto</comment>
- <comment xml:lang="fr">script de filtrage de courriel Sieve</comment>
- <comment xml:lang="ga">script scagaire r-phost Sieve</comment>
- <comment xml:lang="gl">Script de filtro de correo Sieve</comment>
- <comment xml:lang="he">תסריט סינון דואר של Sieve</comment>
- <comment xml:lang="hr">Sieve skripta filtriranja pošte</comment>
- <comment xml:lang="hu">Sieve levélszűrő parancsfájl</comment>
- <comment xml:lang="ia">Script de filtration de e-mail Sieve</comment>
- <comment xml:lang="id">Skrip filter surat Sieve</comment>
- <comment xml:lang="it">Script filtro posta Sieve</comment>
- <comment xml:lang="ja">Sieve メールフィルタスクリプト</comment>
- <comment xml:lang="kk">Sieve пошталық фильтр сценарийі</comment>
- <comment xml:lang="ko">Sieve 메일 필터 스크립트</comment>
- <comment xml:lang="lt">Sieve pašto filtro scenarijus</comment>
- <comment xml:lang="lv">Sieve pasta filtra skripts</comment>
- <comment xml:lang="nb">Sieve e-postfilter skript</comment>
- <comment xml:lang="nl">Sieve mailfilter-script</comment>
- <comment xml:lang="nn">Sieve e-postfilterskript</comment>
- <comment xml:lang="oc">escript de filtratge de corrièr electronic Sieve</comment>
- <comment xml:lang="pl">Skrypt filtra poczty Sieve</comment>
- <comment xml:lang="pt">Script de filtragem de correio Sieve</comment>
- <comment xml:lang="pt_BR">Script de filtro de mensagens do Sieve</comment>
- <comment xml:lang="ro">Script filtrare email Sieve</comment>
- <comment xml:lang="ru">Сценарий почтового фильтра Sieve</comment>
- <comment xml:lang="sk">Skript poštového filtra Sieve</comment>
- <comment xml:lang="sl">Skriptna datoteka Sieve poštnega filtra</comment>
- <comment xml:lang="sq">Script filtrim poste Sieve</comment>
- <comment xml:lang="sr">Сјев скрипта пропусника поште</comment>
- <comment xml:lang="sv">Sieve-epostfilterskript</comment>
- <comment xml:lang="tr">Sieve posta filtre betiği</comment>
- <comment xml:lang="uk">скрипт поштового фільтру Sieve</comment>
- <comment xml:lang="vi">Văn lệnh lọc thư Sieve</comment>
+ <comment xml:lang="zh_TW">Sieve 郵件篩選指令稿</comment>
<comment xml:lang="zh_CN">Sieve 邮件过滤脚本</comment>
- <comment xml:lang="zh_TW">Sieve 郵件過濾指令稿</comment>
- <sub-class-of type="application/xml"/>
+ <comment xml:lang="vi">Văn lệnh lọc thư Sieve</comment>
+ <comment xml:lang="uk">скрипт поштового фільтру Sieve</comment>
+ <comment xml:lang="tr">Sieve posta süzgeç betiği</comment>
+ <comment xml:lang="sv">Sieve-epostfilterskript</comment>
+ <comment xml:lang="sr">Сјев скрипта пропусника поште</comment>
+ <comment xml:lang="sq">programth filtrimi poste Sieve</comment>
+ <comment xml:lang="sl">Skriptna datoteka Sieve poštnega filtra</comment>
+ <comment xml:lang="si">තැපැල් පෙරහන් ස්ක්‍රිප්ට් පෙරා ගන්න</comment>
+ <comment xml:lang="sk">Skript poštového filtra Sieve</comment>
+ <comment xml:lang="ru">Сценарий почтового фильтра Sieve</comment>
+ <comment xml:lang="ro">Script filtrare email Sieve</comment>
+ <comment xml:lang="pt_BR">Script de filtro de mensagens do Sieve</comment>
+ <comment xml:lang="pt">Script de filtragem de correio Sieve</comment>
+ <comment xml:lang="pl">Skrypt filtra poczty Sieve</comment>
+ <comment xml:lang="oc">escript de filtratge de corrièr electronic Sieve</comment>
+ <comment xml:lang="nn">Sieve e-postfilterskript</comment>
+ <comment xml:lang="nl">Sieve mailfilter-script</comment>
+ <comment xml:lang="nb">Sieve e-postfilter skript</comment>
+ <comment xml:lang="lv">Sieve pasta filtra skripts</comment>
+ <comment xml:lang="lt">Sieve pašto filtro scenarijus</comment>
+ <comment xml:lang="ko">Sieve 메일 필터 스크립트</comment>
+ <comment xml:lang="kk">Sieve пошталық фильтр сценарийі</comment>
+ <comment xml:lang="ja">Sieve メールフィルタスクリプト</comment>
+ <comment xml:lang="it">Script filtro posta Sieve</comment>
+ <comment xml:lang="is">Sieve póstsíuskrifta</comment>
+ <comment xml:lang="id">Skrip filter surat Sieve</comment>
+ <comment xml:lang="ia">Script de filtration de e-mail Sieve</comment>
+ <comment xml:lang="hu">Sieve levélszűrő parancsfájl</comment>
+ <comment xml:lang="hr">Sieve skripta filtriranja pošte</comment>
+ <comment xml:lang="he">תסריט סינון דואר של Sieve</comment>
+ <comment xml:lang="gl">Script de filtro de correo Sieve</comment>
+ <comment xml:lang="ga">script scagaire r-phost Sieve</comment>
+ <comment xml:lang="fur">script filtri pueste Sieve</comment>
+ <comment xml:lang="fr">script de filtrage de courriel Sieve</comment>
+ <comment xml:lang="fi">Sieve-postinsuodatuskomentotiedosto</comment>
+ <comment xml:lang="eu">Sieve posta-iragazki script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes de filtro en Sieve</comment>
+ <comment xml:lang="en_GB">Sieve mail filter script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών φιλτραρίσματος αλληλογραφίας Sieve</comment>
+ <comment xml:lang="de">Sieve E-Mail-Filterskript</comment>
+ <comment xml:lang="da">Sieve e-post-filterprogram</comment>
+ <comment xml:lang="cs">skript poštovního filtru Sieve</comment>
+ <comment xml:lang="ca">script de filtre de correu Sieve</comment>
+ <comment xml:lang="bg">Скрипт-филтър за пресяване на поща</comment>
+ <comment xml:lang="be@latin">Skrypt filtravańnia pošty Sieve</comment>
+ <comment xml:lang="be">скрыпт паштовага фільтра Sieve</comment>
+ <comment xml:lang="ar">سكربت مرشح بريد Sieve</comment>
+ <comment xml:lang="af">Sieve-posfiltreerskrip</comment>
<generic-icon name="text-x-script"/>
<glob pattern="*.siv"/>
+ <glob pattern="*.sieve"/>
</mime-type>
<mime-type type="application/smil+xml">
<comment>SMIL document</comment>
- <comment xml:lang="ar">مستند SMIL</comment>
- <comment xml:lang="ast">Documentu SMIL</comment>
- <comment xml:lang="be@latin">Dakument SMIL</comment>
- <comment xml:lang="bg">Документ — SMIL</comment>
- <comment xml:lang="ca">document SMIL</comment>
- <comment xml:lang="cs">dokument SMIL</comment>
- <comment xml:lang="da">SMIL-dokument</comment>
- <comment xml:lang="de">SMIL-Dokument</comment>
- <comment xml:lang="el">Έγγραφο SMIL</comment>
- <comment xml:lang="en_GB">SMIL document</comment>
- <comment xml:lang="eo">SMIL-dokumento</comment>
- <comment xml:lang="es">documento SMIL</comment>
- <comment xml:lang="eu">SMIL dokumentua</comment>
- <comment xml:lang="fi">SMIL-asiakirja</comment>
- <comment xml:lang="fo">SMIL skjal</comment>
- <comment xml:lang="fr">document SMIL</comment>
- <comment xml:lang="ga">cáipéis SMIL</comment>
- <comment xml:lang="gl">documento SMIL</comment>
- <comment xml:lang="he">מסמך SMIL</comment>
- <comment xml:lang="hr">SMIL dokument</comment>
- <comment xml:lang="hu">SMIL dokumentum</comment>
- <comment xml:lang="ia">Documento SMIL</comment>
- <comment xml:lang="id">Dokumen SMIL</comment>
- <comment xml:lang="it">Documento SMIL</comment>
- <comment xml:lang="ja">SMIL ドキュメント</comment>
- <comment xml:lang="kk">SMIL құжаты</comment>
- <comment xml:lang="ko">SMIL 문서</comment>
- <comment xml:lang="lt">SMIL dokumentas</comment>
- <comment xml:lang="lv">SMIL dokuments</comment>
- <comment xml:lang="nb">SMIL-dokument</comment>
- <comment xml:lang="nl">SMIL-document</comment>
- <comment xml:lang="nn">SMIL-dokument</comment>
- <comment xml:lang="oc">document SMIL</comment>
- <comment xml:lang="pl">Dokument SMIL</comment>
- <comment xml:lang="pt">documento SMIL</comment>
- <comment xml:lang="pt_BR">Documento SMIL</comment>
- <comment xml:lang="ro">Document SMIL</comment>
- <comment xml:lang="ru">Документ SMIL</comment>
- <comment xml:lang="sk">Dokument SMIL</comment>
- <comment xml:lang="sl">Dokument SMIL</comment>
- <comment xml:lang="sq">Dokument SMIL</comment>
- <comment xml:lang="sr">СМИЛ документ</comment>
- <comment xml:lang="sv">SMIL-dokument</comment>
- <comment xml:lang="tr">SMIL belgesi</comment>
- <comment xml:lang="uk">документ SMIL</comment>
- <comment xml:lang="vi">Tài liệu SMIL</comment>
- <comment xml:lang="zh_CN">SMIL 文档</comment>
<comment xml:lang="zh_TW">SMIL 文件</comment>
+ <comment xml:lang="zh_CN">SMIL 文档</comment>
+ <comment xml:lang="vi">Tài liệu SMIL</comment>
+ <comment xml:lang="uk">документ SMIL</comment>
+ <comment xml:lang="tr">SMIL belgesi</comment>
+ <comment xml:lang="sv">SMIL-dokument</comment>
+ <comment xml:lang="sr">СМИЛ документ</comment>
+ <comment xml:lang="sq">dokument SMIL</comment>
+ <comment xml:lang="sl">Dokument SMIL</comment>
+ <comment xml:lang="si">SMIL ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument SMIL</comment>
+ <comment xml:lang="ru">Документ SMIL</comment>
+ <comment xml:lang="ro">Document SMIL</comment>
+ <comment xml:lang="pt_BR">Documento SMIL</comment>
+ <comment xml:lang="pt">documento SMIL</comment>
+ <comment xml:lang="pl">Dokument SMIL</comment>
+ <comment xml:lang="oc">document SMIL</comment>
+ <comment xml:lang="nn">SMIL-dokument</comment>
+ <comment xml:lang="nl">SMIL-document</comment>
+ <comment xml:lang="nb">SMIL-dokument</comment>
+ <comment xml:lang="lv">SMIL dokuments</comment>
+ <comment xml:lang="lt">SMIL dokumentas</comment>
+ <comment xml:lang="ko">SMIL 문서</comment>
+ <comment xml:lang="kk">SMIL құжаты</comment>
+ <comment xml:lang="ka">SMIL-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">SMIL ドキュメント</comment>
+ <comment xml:lang="it">Documento SMIL</comment>
+ <comment xml:lang="is">SMIL skjal</comment>
+ <comment xml:lang="id">Dokumen SMIL</comment>
+ <comment xml:lang="ia">Documento SMIL</comment>
+ <comment xml:lang="hu">SMIL dokumentum</comment>
+ <comment xml:lang="hr">SMIL dokument</comment>
+ <comment xml:lang="he">מסמך SMIL</comment>
+ <comment xml:lang="gl">documento SMIL</comment>
+ <comment xml:lang="ga">cáipéis SMIL</comment>
+ <comment xml:lang="fur">document SMIL</comment>
+ <comment xml:lang="fr">document SMIL</comment>
+ <comment xml:lang="fo">SMIL skjal</comment>
+ <comment xml:lang="fi">SMIL-asiakirja</comment>
+ <comment xml:lang="eu">SMIL dokumentua</comment>
+ <comment xml:lang="es">documento SMIL</comment>
+ <comment xml:lang="eo">SMIL-dokumento</comment>
+ <comment xml:lang="en_GB">SMIL document</comment>
+ <comment xml:lang="el">Έγγραφο SMIL</comment>
+ <comment xml:lang="de">SMIL-Dokument</comment>
+ <comment xml:lang="da">SMIL-dokument</comment>
+ <comment xml:lang="cs">dokument SMIL</comment>
+ <comment xml:lang="ca">document SMIL</comment>
+ <comment xml:lang="bg">Документ — SMIL</comment>
+ <comment xml:lang="be@latin">Dakument SMIL</comment>
+ <comment xml:lang="be">дакумент SMIL</comment>
+ <comment xml:lang="ast">Documentu SMIL</comment>
+ <comment xml:lang="ar">مستند SMIL</comment>
+ <comment xml:lang="af">SMIL-dokument</comment>
<acronym>SMIL</acronym>
<expanded-acronym>Synchronized Multimedia Integration Language</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -2098,7 +2149,7 @@
<glob pattern="*.sml"/>
<glob pattern="*.kino"/>
<magic priority="55">
- <match value="&lt;smil" type="string" offset="0:256"/>
+ <match type="string" value="&lt;smil" offset="0:256"/>
</magic>
<root-XML namespaceURI="http://www.w3.org/2001/SMIL20/Language" localName="smil"/>
<root-XML namespaceURI="http://www.w3.org/2005/SMIL21/Language" localName="smil"/>
@@ -2106,279 +2157,350 @@
</mime-type>
<mime-type type="application/vnd.ms-wpl">
<comment>WPL playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل WPL</comment>
- <comment xml:lang="bg">Списък за изпълнение — WPL</comment>
- <comment xml:lang="ca">llista de reproducció WPL</comment>
- <comment xml:lang="cs">seznam k přehrání WPL</comment>
- <comment xml:lang="da">WPL-afspilningsliste</comment>
- <comment xml:lang="de">WPL-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής WPL</comment>
- <comment xml:lang="en_GB">WPL playlist</comment>
- <comment xml:lang="eo">WPL-ludlisto</comment>
- <comment xml:lang="es">lista de reproducción WPL</comment>
- <comment xml:lang="eu">WPL erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">WPL-soittolista</comment>
- <comment xml:lang="fo">WPL avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture WPL</comment>
- <comment xml:lang="ga">seinmliosta WPL</comment>
- <comment xml:lang="gl">lista de reprodución WPL</comment>
- <comment xml:lang="he">רשימת נגינה WPL</comment>
- <comment xml:lang="hr">WPL popis izvođenja</comment>
- <comment xml:lang="hu">WPL-lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection WPL</comment>
- <comment xml:lang="id">Senarai putar WPL</comment>
- <comment xml:lang="it">Playlist WPL</comment>
- <comment xml:lang="ja">WPL 再生リスト</comment>
- <comment xml:lang="kk">WPL ойнау тізімі</comment>
- <comment xml:lang="ko">WPL 재생 목록</comment>
- <comment xml:lang="lt">WPL grojaraštis</comment>
- <comment xml:lang="lv">WPL repertuārs</comment>
- <comment xml:lang="nl">WPL-afspeellijst</comment>
- <comment xml:lang="oc">lista de lectura WPL</comment>
- <comment xml:lang="pl">Lista odtwarzania WPL</comment>
- <comment xml:lang="pt">lista de reprodução WPL</comment>
- <comment xml:lang="pt_BR">Lista de reprodução do WPL</comment>
- <comment xml:lang="ro">Listă redare WPL</comment>
- <comment xml:lang="ru">Список воспроизведения WPL</comment>
- <comment xml:lang="sk">Zoznam skladieb WPL</comment>
- <comment xml:lang="sl">Seznam predvajanja WPL</comment>
- <comment xml:lang="sr">ВПЛ списак нумера</comment>
- <comment xml:lang="sv">WPL-spellista</comment>
- <comment xml:lang="tr">WPL çalma listesi</comment>
- <comment xml:lang="uk">список відтворення WPL</comment>
- <comment xml:lang="vi">Danh mục nhạc WPL</comment>
- <comment xml:lang="zh_CN">WPL 播放列表</comment>
<comment xml:lang="zh_TW">WPL 播放清單</comment>
+ <comment xml:lang="zh_CN">WPL 播放列表</comment>
+ <comment xml:lang="vi">Danh mục nhạc WPL</comment>
+ <comment xml:lang="uk">список відтворення WPL</comment>
+ <comment xml:lang="tr">WPL çalma listesi</comment>
+ <comment xml:lang="sv">WPL-spellista</comment>
+ <comment xml:lang="sr">ВПЛ списак нумера</comment>
+ <comment xml:lang="sq">luajlistë WPL</comment>
+ <comment xml:lang="sl">Seznam predvajanja WPL</comment>
+ <comment xml:lang="si">WPL ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb WPL</comment>
+ <comment xml:lang="ru">Список воспроизведения WPL</comment>
+ <comment xml:lang="ro">Listă redare WPL</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução do WPL</comment>
+ <comment xml:lang="pt">lista de reprodução WPL</comment>
+ <comment xml:lang="pl">Lista odtwarzania WPL</comment>
+ <comment xml:lang="oc">lista de lectura WPL</comment>
+ <comment xml:lang="nl">WPL-afspeellijst</comment>
+ <comment xml:lang="lv">WPL repertuārs</comment>
+ <comment xml:lang="lt">WPL grojaraštis</comment>
+ <comment xml:lang="ko">WPL 재생 목록</comment>
+ <comment xml:lang="kk">WPL ойнау тізімі</comment>
+ <comment xml:lang="ka">WPL დასაკრავი სია</comment>
+ <comment xml:lang="ja">WPL プレイリスト</comment>
+ <comment xml:lang="it">Playlist WPL</comment>
+ <comment xml:lang="is">WPL spilunarlisti</comment>
+ <comment xml:lang="id">Senarai putar WPL</comment>
+ <comment xml:lang="ia">Lista de selection WPL</comment>
+ <comment xml:lang="hu">WPL-lejátszólista</comment>
+ <comment xml:lang="hr">WPL popis izvođenja</comment>
+ <comment xml:lang="he">רשימת נגינה WPL</comment>
+ <comment xml:lang="gl">lista de reprodución WPL</comment>
+ <comment xml:lang="ga">seinmliosta WPL</comment>
+ <comment xml:lang="fur">liste di riproduzion WPL</comment>
+ <comment xml:lang="fr">liste de lecture WPL</comment>
+ <comment xml:lang="fo">WPL avspælingarlisti</comment>
+ <comment xml:lang="fi">WPL-soittolista</comment>
+ <comment xml:lang="eu">WPL erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción WPL</comment>
+ <comment xml:lang="eo">WPL-ludlisto</comment>
+ <comment xml:lang="en_GB">WPL playlist</comment>
+ <comment xml:lang="el">Λίστα αναπαραγωγής WPL</comment>
+ <comment xml:lang="de">WPL-Wiedergabeliste</comment>
+ <comment xml:lang="da">WPL-afspilningsliste</comment>
+ <comment xml:lang="cs">seznam k přehrání WPL</comment>
+ <comment xml:lang="ca">llista de reproducció WPL</comment>
+ <comment xml:lang="bg">Списък за изпълнение — WPL</comment>
+ <comment xml:lang="be">плэй-ліст WPL</comment>
+ <comment xml:lang="ar">قائمة تشغيل WPL</comment>
+ <comment xml:lang="af">WPL-speellys</comment>
<acronym>WPL</acronym>
<expanded-acronym>Windows Media Player Playlist</expanded-acronym>
<generic-icon name="video-x-generic"/>
<glob pattern="*.wpl"/>
<magic priority="60">
- <match value="&lt;?wpl" type="string" offset="0:256"/>
+ <match type="string" value="&lt;?wpl" offset="0:256"/>
</magic>
</mime-type>
<mime-type type="application/x-sqlite2">
<comment>SQLite2 database</comment>
- <comment xml:lang="ar">قاعدة بيانات SQLite2</comment>
- <comment xml:lang="be@latin">Baza źviestak SQLite2</comment>
- <comment xml:lang="bg">База от данни — SQLite2</comment>
- <comment xml:lang="ca">base de dades SQLite2</comment>
- <comment xml:lang="cs">databáze SQLite2</comment>
- <comment xml:lang="da">SQLite2-database</comment>
- <comment xml:lang="de">SQLite2-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων SQLite2</comment>
- <comment xml:lang="en_GB">SQLite2 database</comment>
- <comment xml:lang="eo">SQLite2-datumbazo</comment>
- <comment xml:lang="es">base de datos SQLite2</comment>
- <comment xml:lang="eu">SQLite2 datu-basea</comment>
- <comment xml:lang="fi">SQLite2-tietokanta</comment>
- <comment xml:lang="fo">SQLite2 dátustovnur</comment>
- <comment xml:lang="fr">base de données SQLite2</comment>
- <comment xml:lang="ga">bunachar sonraí SQLite2</comment>
- <comment xml:lang="gl">base de datos SQLite2</comment>
- <comment xml:lang="he">מסד נתונים מסוג SQLite2</comment>
- <comment xml:lang="hr">SQLite2 baza podataka</comment>
- <comment xml:lang="hu">SQLite2 adatbázis</comment>
- <comment xml:lang="ia">Base de datos SQLite2</comment>
- <comment xml:lang="id">Basis data SQLite2</comment>
- <comment xml:lang="it">Database SQLite2</comment>
- <comment xml:lang="ja">SQLite2 データベース</comment>
- <comment xml:lang="kk">SQLite2 дерекқоры</comment>
- <comment xml:lang="ko">SQLite2 데이터베이스</comment>
- <comment xml:lang="lt">SQLite2 duomenų bazė</comment>
- <comment xml:lang="lv">SQLite2 datubāze</comment>
- <comment xml:lang="nb">SQLite2-database</comment>
- <comment xml:lang="nl">SQLite2-gegevensbank</comment>
- <comment xml:lang="nn">SQLite2-database</comment>
- <comment xml:lang="oc">banca de donadas SQLite2</comment>
- <comment xml:lang="pl">Baza danych SQLite2</comment>
- <comment xml:lang="pt">base de dados SQLite2</comment>
- <comment xml:lang="pt_BR">Banco de dados SQLite2</comment>
- <comment xml:lang="ro">Bază de date SQLite2</comment>
- <comment xml:lang="ru">База данных SQLite2</comment>
- <comment xml:lang="sk">Databáza SQLite2</comment>
- <comment xml:lang="sl">Podatkovna zbirka SQLite2</comment>
- <comment xml:lang="sq">Bazë me të dhëna SQLite2</comment>
- <comment xml:lang="sr">СКуЛајт2 база података</comment>
- <comment xml:lang="sv">SQLite2-databas</comment>
- <comment xml:lang="tr">SQLite2 veritabanı</comment>
- <comment xml:lang="uk">База даних SQLite2</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu SQLite2</comment>
- <comment xml:lang="zh_CN">SQLite2 数据库</comment>
<comment xml:lang="zh_TW">SQLite2 資料庫</comment>
+ <comment xml:lang="zh_CN">SQLite2 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu SQLite2</comment>
+ <comment xml:lang="uk">База даних SQLite2</comment>
+ <comment xml:lang="tr">SQLite2 veri tabanı</comment>
+ <comment xml:lang="sv">SQLite2-databas</comment>
+ <comment xml:lang="sr">СКуЛајт2 база података</comment>
+ <comment xml:lang="sq">bazë të dhënash SQLite2</comment>
+ <comment xml:lang="sl">Podatkovna zbirka SQLite2</comment>
+ <comment xml:lang="si">SQLite2 දත්ත සමුදාය</comment>
+ <comment xml:lang="sk">Databáza SQLite2</comment>
+ <comment xml:lang="ru">База данных SQLite2</comment>
+ <comment xml:lang="ro">Bază de date SQLite2</comment>
+ <comment xml:lang="pt_BR">Banco de dados SQLite2</comment>
+ <comment xml:lang="pt">base de dados SQLite2</comment>
+ <comment xml:lang="pl">Baza danych SQLite2</comment>
+ <comment xml:lang="oc">banca de donadas SQLite2</comment>
+ <comment xml:lang="nn">SQLite2-database</comment>
+ <comment xml:lang="nl">SQLite2-gegevensbank</comment>
+ <comment xml:lang="nb">SQLite2-database</comment>
+ <comment xml:lang="lv">SQLite2 datubāze</comment>
+ <comment xml:lang="lt">SQLite2 duomenų bazė</comment>
+ <comment xml:lang="ko">SQLite2 데이터베이스</comment>
+ <comment xml:lang="kk">SQLite2 дерекқоры</comment>
+ <comment xml:lang="ja">SQLite2 データベース</comment>
+ <comment xml:lang="it">Database SQLite2</comment>
+ <comment xml:lang="is">SQLite2 gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data SQLite2</comment>
+ <comment xml:lang="ia">Base de datos SQLite2</comment>
+ <comment xml:lang="hu">SQLite2 adatbázis</comment>
+ <comment xml:lang="hr">SQLite2 baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים מסוג SQLite2</comment>
+ <comment xml:lang="gl">base de datos SQLite2</comment>
+ <comment xml:lang="ga">bunachar sonraí SQLite2</comment>
+ <comment xml:lang="fur">base di dâts SQLite2</comment>
+ <comment xml:lang="fr">base de données SQLite2</comment>
+ <comment xml:lang="fo">SQLite2 dátustovnur</comment>
+ <comment xml:lang="fi">SQLite2-tietokanta</comment>
+ <comment xml:lang="eu">SQLite2 datu-basea</comment>
+ <comment xml:lang="es">base de datos SQLite2</comment>
+ <comment xml:lang="eo">SQLite2-datumbazo</comment>
+ <comment xml:lang="en_GB">SQLite2 database</comment>
+ <comment xml:lang="el">Βάση δεδομένων SQLite2</comment>
+ <comment xml:lang="de">SQLite2-Datenbank</comment>
+ <comment xml:lang="da">SQLite2-database</comment>
+ <comment xml:lang="cs">databáze SQLite2</comment>
+ <comment xml:lang="ca">base de dades SQLite2</comment>
+ <comment xml:lang="bg">База от данни — SQLite2</comment>
+ <comment xml:lang="be@latin">Baza źviestak SQLite2</comment>
+ <comment xml:lang="be">база даных SQLite2</comment>
+ <comment xml:lang="ar">قاعدة بيانات SQLite2</comment>
+ <comment xml:lang="af">SQLite2-databasis</comment>
<glob pattern="*.sqlite2"/>
<magic>
- <match value="** This file contains an SQLite" type="string" offset="0"/>
+ <match type="string" value="** This file contains an SQLite" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/vnd.sqlite3">
<comment>SQLite3 database</comment>
- <comment xml:lang="ar">قاعدة بيانات SQLite3</comment>
- <comment xml:lang="be@latin">Baza źviestak SQLite3</comment>
- <comment xml:lang="bg">База от данни — SQLite3</comment>
- <comment xml:lang="ca">base de dades SQLite3</comment>
- <comment xml:lang="cs">databáze SQLite3</comment>
- <comment xml:lang="da">SQLite3-database</comment>
- <comment xml:lang="de">SQLite3-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων SQLite3</comment>
- <comment xml:lang="en_GB">SQLite3 database</comment>
- <comment xml:lang="eo">SQLite3-datumbazo</comment>
- <comment xml:lang="es">base de datos SQLite3</comment>
- <comment xml:lang="eu">SQLite3 datu-basea</comment>
- <comment xml:lang="fi">SQLite3-tietokanta</comment>
- <comment xml:lang="fo">SQLite3 dátustovnur</comment>
- <comment xml:lang="fr">base de données SQLite3</comment>
- <comment xml:lang="ga">bunachar sonraí SQLite3</comment>
- <comment xml:lang="gl">base de datos SQLite3</comment>
- <comment xml:lang="he">מסד נתונים מסוג SQLite3</comment>
- <comment xml:lang="hr">SQLite3 baza podataka</comment>
- <comment xml:lang="hu">SQLite3 adatbázis</comment>
- <comment xml:lang="ia">Base de datos SQLite3</comment>
- <comment xml:lang="id">Basis data SQLite3</comment>
- <comment xml:lang="it">Database SQLite3</comment>
- <comment xml:lang="ja">SQLite3 データベース</comment>
- <comment xml:lang="kk">SQLite3 дерекқоры</comment>
- <comment xml:lang="ko">SQLite3 데이터베이스</comment>
- <comment xml:lang="lt">SQLite3 duomenų bazė</comment>
- <comment xml:lang="lv">SQLite3 datubāze</comment>
- <comment xml:lang="nb">SQLite3-database</comment>
- <comment xml:lang="nl">SQLite3-gegevensbank</comment>
- <comment xml:lang="nn">SQLite3-database</comment>
- <comment xml:lang="oc">banca de donadas SQLite3</comment>
- <comment xml:lang="pl">Baza danych SQLite3</comment>
- <comment xml:lang="pt">base de dados SQLite3</comment>
- <comment xml:lang="pt_BR">Banco de dados SQLite3</comment>
- <comment xml:lang="ro">Bază de date SQLite3</comment>
- <comment xml:lang="ru">База данных SQLite3</comment>
- <comment xml:lang="sk">Databáza SQLite3</comment>
- <comment xml:lang="sl">Podatkovna zbirka SQLite3</comment>
- <comment xml:lang="sq">Bazë me të dhëna SQLite3</comment>
- <comment xml:lang="sr">СКуЛајт3 база података</comment>
- <comment xml:lang="sv">SQLite3-databas</comment>
- <comment xml:lang="tr">SQLite3 veritabanı</comment>
- <comment xml:lang="uk">база даних SQLite3</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu SQLite3</comment>
- <comment xml:lang="zh_CN">SQLite3 数据库</comment>
<comment xml:lang="zh_TW">SQLite3 資料庫</comment>
+ <comment xml:lang="zh_CN">SQLite3 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu SQLite3</comment>
+ <comment xml:lang="uk">база даних SQLite3</comment>
+ <comment xml:lang="tr">SQLite3 veri tabanı</comment>
+ <comment xml:lang="sv">SQLite3-databas</comment>
+ <comment xml:lang="sr">СКуЛајт3 база података</comment>
+ <comment xml:lang="sq">bazë të dhënash SQLite3</comment>
+ <comment xml:lang="sl">Podatkovna zbirka SQLite3</comment>
+ <comment xml:lang="si">SQLite3 දත්ත සමුදාය</comment>
+ <comment xml:lang="sk">Databáza SQLite3</comment>
+ <comment xml:lang="ru">База данных SQLite3</comment>
+ <comment xml:lang="ro">Bază de date SQLite3</comment>
+ <comment xml:lang="pt_BR">Banco de dados SQLite3</comment>
+ <comment xml:lang="pt">base de dados SQLite3</comment>
+ <comment xml:lang="pl">Baza danych SQLite3</comment>
+ <comment xml:lang="oc">banca de donadas SQLite3</comment>
+ <comment xml:lang="nn">SQLite3-database</comment>
+ <comment xml:lang="nl">SQLite3-gegevensbank</comment>
+ <comment xml:lang="nb">SQLite3-database</comment>
+ <comment xml:lang="lv">SQLite3 datubāze</comment>
+ <comment xml:lang="lt">SQLite3 duomenų bazė</comment>
+ <comment xml:lang="ko">SQLite3 데이터베이스</comment>
+ <comment xml:lang="kk">SQLite3 дерекқоры</comment>
+ <comment xml:lang="ja">SQLite3 データベース</comment>
+ <comment xml:lang="it">Database SQLite3</comment>
+ <comment xml:lang="is">SQLite3 gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data SQLite3</comment>
+ <comment xml:lang="ia">Base de datos SQLite3</comment>
+ <comment xml:lang="hu">SQLite3 adatbázis</comment>
+ <comment xml:lang="hr">SQLite3 baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים מסוג SQLite3</comment>
+ <comment xml:lang="gl">base de datos SQLite3</comment>
+ <comment xml:lang="ga">bunachar sonraí SQLite3</comment>
+ <comment xml:lang="fur">base di dâts SQLite3</comment>
+ <comment xml:lang="fr">base de données SQLite3</comment>
+ <comment xml:lang="fo">SQLite3 dátustovnur</comment>
+ <comment xml:lang="fi">SQLite3-tietokanta</comment>
+ <comment xml:lang="eu">SQLite3 datu-basea</comment>
+ <comment xml:lang="es">base de datos SQLite3</comment>
+ <comment xml:lang="eo">SQLite3-datumbazo</comment>
+ <comment xml:lang="en_GB">SQLite3 database</comment>
+ <comment xml:lang="el">Βάση δεδομένων SQLite3</comment>
+ <comment xml:lang="de">SQLite3-Datenbank</comment>
+ <comment xml:lang="da">SQLite3-database</comment>
+ <comment xml:lang="cs">databáze SQLite3</comment>
+ <comment xml:lang="ca">base de dades SQLite3</comment>
+ <comment xml:lang="bg">База от данни — SQLite3</comment>
+ <comment xml:lang="be@latin">Baza źviestak SQLite3</comment>
+ <comment xml:lang="be">база даных SQLite3</comment>
+ <comment xml:lang="ar">قاعدة بيانات SQLite3</comment>
+ <comment xml:lang="af">SQLite3-databasis</comment>
<glob pattern="*.sqlite3"/>
<magic>
- <match value="SQLite format 3" type="string" offset="0"/>
+ <match type="string" value="SQLite format 3" offset="0"/>
</magic>
<alias type="application/x-sqlite3"/>
</mime-type>
- <mime-type type="application/x-gedcom">
+ <mime-type type="application/x-apple-systemprofiler+xml">
+ <comment>Apple System Profiler</comment>
+ <comment xml:lang="zh_CN">Apple 系统概述</comment>
+ <comment xml:lang="uk">засіб профілювання системи Apple</comment>
+ <comment xml:lang="tr">Apple Sistem Profilcisi</comment>
+ <comment xml:lang="sv">Apple Systeminformation</comment>
+ <comment xml:lang="sq">Apple System Profiler</comment>
+ <comment xml:lang="si">ඇපල් පද්ධති පැතිකඩ</comment>
+ <comment xml:lang="ru">Apple System Profiler</comment>
+ <comment xml:lang="pt_BR">Apple System Profiler</comment>
+ <comment xml:lang="pt">Perfilador do sistema Apple</comment>
+ <comment xml:lang="pl">Profiler komputera Apple</comment>
+ <comment xml:lang="nl">Apple System Profiler</comment>
+ <comment xml:lang="ko">Apple 시스템 프로파일러</comment>
+ <comment xml:lang="kk">Apple жүйелік профильдеуші</comment>
+ <comment xml:lang="ja">Apple システムプロファイラー</comment>
+ <comment xml:lang="it">Profiler di sistema Apple</comment>
+ <comment xml:lang="is">Apple System Profiler</comment>
+ <comment xml:lang="id">Profiler Sistem Apple</comment>
+ <comment xml:lang="hu">Apple rendszerprofilozó</comment>
+ <comment xml:lang="hr">Apple profiler sustava</comment>
+ <comment xml:lang="he">מאפיין מערכת של Apple</comment>
+ <comment xml:lang="gl">Perfilador de sistema de Appl</comment>
+ <comment xml:lang="fr">Profileur système Apple</comment>
+ <comment xml:lang="fi">Applen järjestelmän profiloija</comment>
+ <comment xml:lang="eu">Apple sistemaren profilatzailea</comment>
+ <comment xml:lang="es">perfil del sistema de Apple</comment>
+ <comment xml:lang="en_GB">Apple System Profiler</comment>
+ <comment xml:lang="de">Apple-Systeminformationen</comment>
+ <comment xml:lang="da">Apple System Profiler</comment>
+ <comment xml:lang="ca">System Profiler d'Apple</comment>
+ <comment xml:lang="be">Apple System Profiler</comment>
+ <comment xml:lang="ar">محلل نظام أبل</comment>
+ <sub-class-of type="application/xml"/>
+ <magic>
+ <match type="string" value="&lt;plist version=&quot;1.0&quot;" offset="0:256">
+ <match type="string" value="&lt;key&gt;_SPCommandLineArguments&lt;/key&gt;" offset="34:384"/>
+ </match>
+ </magic>
+ <glob pattern="*.spx" weight="40"/>
+ <root-XML namespaceURI="http://www.apple.com/DTDs/PropertyList-1.0.dtd" localName="plist"/>
+ </mime-type>
+ <mime-type type="text/vnd.familysearch.gedcom">
<comment>GEDCOM family history</comment>
- <comment xml:lang="ar">تاريخ عائلة GEDCOM</comment>
- <comment xml:lang="be@latin">Siamiejnaja historyja GEDCOM</comment>
- <comment xml:lang="bg">Родословно дърво — GEDCOM</comment>
- <comment xml:lang="ca">antecedents familiars GEDCOM</comment>
- <comment xml:lang="cs">rodokmen GEDCOM</comment>
- <comment xml:lang="da">GEDCOM-familiehistorie</comment>
- <comment xml:lang="de">GEDCOM-Stammbaum</comment>
- <comment xml:lang="el">Οικογενειακό ιστορικό GEDCOM</comment>
- <comment xml:lang="en_GB">GEDCOM family history</comment>
- <comment xml:lang="es">historial familiar de GEDCOM</comment>
- <comment xml:lang="eu">GEDCOM famili historia</comment>
- <comment xml:lang="fi">GEDCOM-sukuhistoria</comment>
- <comment xml:lang="fo">GEDCOM familjusøga</comment>
- <comment xml:lang="fr">généalogie GEDCOM</comment>
- <comment xml:lang="ga">stair theaghlach GEDCOM</comment>
- <comment xml:lang="gl">historial de familia GEDCOM</comment>
- <comment xml:lang="he">היסטוריה משפחתית של GEDCOM</comment>
- <comment xml:lang="hr">GEDCOM obiteljska povijest</comment>
- <comment xml:lang="hu">GEDCOM családtörténet</comment>
- <comment xml:lang="ia">Genealogia GEDCOM</comment>
- <comment xml:lang="id">Sejarah keluarga GEDCOM</comment>
- <comment xml:lang="it">Cronologia famiglia GEDCOM</comment>
- <comment xml:lang="ja">GEDCOM 家系図データ</comment>
- <comment xml:lang="ka">GEDCOM ოჯახის ისტორია</comment>
- <comment xml:lang="kk">GEDCOM отбасы тарихы</comment>
- <comment xml:lang="ko">GEDCOM 패밀리 기록</comment>
- <comment xml:lang="lt">GEDCOM šeimos istorija</comment>
- <comment xml:lang="lv">GEDCOM ģimenes vēsture</comment>
- <comment xml:lang="nb">GEDCOM-familiehistorikk</comment>
- <comment xml:lang="nl">GEDCOM-stamboom</comment>
- <comment xml:lang="nn">GEDCOM-familehistorie</comment>
- <comment xml:lang="oc">genealogia GEDCOM</comment>
- <comment xml:lang="pl">Plik historii rodziny GEDCOM</comment>
- <comment xml:lang="pt">história familiar GEDCOM</comment>
- <comment xml:lang="pt_BR">Histórico familiar do GEDCOM</comment>
- <comment xml:lang="ro">Tablou genealogic GEDCOM</comment>
- <comment xml:lang="ru">История семьи GEDCOM</comment>
- <comment xml:lang="sk">Rodokmeň GEDCOM</comment>
- <comment xml:lang="sl">Datoteka družinske zgodovine GEDCOM</comment>
- <comment xml:lang="sq">Kronollogji familje GEDCOM</comment>
- <comment xml:lang="sr">ГЕДКОМ историјат породице</comment>
- <comment xml:lang="sv">GEDCOM-släktträd</comment>
- <comment xml:lang="tr">GEDCOM aile geçmişi</comment>
- <comment xml:lang="uk">історія родини GEDCOM</comment>
- <comment xml:lang="vi">Lịch sử gia đình GEDCOM</comment>
+ <comment xml:lang="zh_TW">GEDCOM 族譜</comment>
<comment xml:lang="zh_CN">GEDCOM 家谱</comment>
- <comment xml:lang="zh_TW">GEDCOM 家族史</comment>
+ <comment xml:lang="vi">Lịch sử gia đình GEDCOM</comment>
+ <comment xml:lang="uk">історія родини GEDCOM</comment>
+ <comment xml:lang="tr">GEDCOM aile geçmişi</comment>
+ <comment xml:lang="sv">GEDCOM-släktträd</comment>
+ <comment xml:lang="sr">ГЕДКОМ историјат породице</comment>
+ <comment xml:lang="sq">historik familjeje GEDCOM</comment>
+ <comment xml:lang="sl">Datoteka družinske zgodovine GEDCOM</comment>
+ <comment xml:lang="si">GEDCOM පවුලේ ඉතිහාසය</comment>
+ <comment xml:lang="sk">Rodokmeň GEDCOM</comment>
+ <comment xml:lang="ru">История семьи GEDCOM</comment>
+ <comment xml:lang="ro">Tablou genealogic GEDCOM</comment>
+ <comment xml:lang="pt_BR">Histórico familiar do GEDCOM</comment>
+ <comment xml:lang="pt">história familiar GEDCOM</comment>
+ <comment xml:lang="pl">Plik historii rodziny GEDCOM</comment>
+ <comment xml:lang="oc">genealogia GEDCOM</comment>
+ <comment xml:lang="nn">GEDCOM-familehistorie</comment>
+ <comment xml:lang="nl">GEDCOM-stamboom</comment>
+ <comment xml:lang="nb">GEDCOM-familiehistorikk</comment>
+ <comment xml:lang="lv">GEDCOM ģimenes vēsture</comment>
+ <comment xml:lang="lt">GEDCOM šeimos istorija</comment>
+ <comment xml:lang="ko">GEDCOM 가족 내력</comment>
+ <comment xml:lang="kk">GEDCOM отбасы тарихы</comment>
+ <comment xml:lang="ka">GEDCOM ოჯახის ისტორია</comment>
+ <comment xml:lang="ja">GEDCOM 家系図データ</comment>
+ <comment xml:lang="it">Cronologia famiglia GEDCOM</comment>
+ <comment xml:lang="is">GEDCOM ættartré</comment>
+ <comment xml:lang="id">Sejarah keluarga GEDCOM</comment>
+ <comment xml:lang="ia">Genealogia GEDCOM</comment>
+ <comment xml:lang="hu">GEDCOM családtörténet</comment>
+ <comment xml:lang="hr">GEDCOM obiteljska povijest</comment>
+ <comment xml:lang="he">היסטוריה משפחתית של GEDCOM</comment>
+ <comment xml:lang="gl">historial de familia GEDCOM</comment>
+ <comment xml:lang="ga">stair theaghlach GEDCOM</comment>
+ <comment xml:lang="fur">gjenealogjie GEDCOM</comment>
+ <comment xml:lang="fr">généalogie GEDCOM</comment>
+ <comment xml:lang="fo">GEDCOM familjusøga</comment>
+ <comment xml:lang="fi">GEDCOM-sukuhistoria</comment>
+ <comment xml:lang="eu">GEDCOM famili historia</comment>
+ <comment xml:lang="es">historial familiar de GEDCOM</comment>
+ <comment xml:lang="en_GB">GEDCOM family history</comment>
+ <comment xml:lang="el">Οικογενειακό ιστορικό GEDCOM</comment>
+ <comment xml:lang="de">GEDCOM-Stammbaum</comment>
+ <comment xml:lang="da">GEDCOM-familiehistorie</comment>
+ <comment xml:lang="cs">rodokmen GEDCOM</comment>
+ <comment xml:lang="ca">antecedents familiars GEDCOM</comment>
+ <comment xml:lang="bg">Родословно дърво — GEDCOM</comment>
+ <comment xml:lang="be@latin">Siamiejnaja historyja GEDCOM</comment>
+ <comment xml:lang="be">гісторыя сям'і GEDCOM</comment>
+ <comment xml:lang="ar">تاريخ عائلة GEDCOM</comment>
+ <comment xml:lang="af">GEDCOM-familiegeskiedenis</comment>
<acronym>GEDCOM</acronym>
<expanded-acronym>GEnealogical Data COMmunication</expanded-acronym>
+ <sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="0 HEAD" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="0 HEAD" offset="0"/>
</magic>
<glob pattern="*.ged"/>
<glob pattern="*.gedcom"/>
+ <alias type="application/x-gedcom"/>
<alias type="text/gedcom"/>
</mime-type>
<mime-type type="video/x-flv">
<comment>Flash video</comment>
- <comment xml:lang="ar">Flash مرئي</comment>
- <comment xml:lang="ast">Videu en Flash</comment>
- <comment xml:lang="be@latin">Videa Flash</comment>
- <comment xml:lang="bg">Видео — Flash</comment>
- <comment xml:lang="ca">vídeo de Flash</comment>
- <comment xml:lang="cs">video Flash</comment>
- <comment xml:lang="da">Flashvideo</comment>
- <comment xml:lang="de">Flash-Video</comment>
- <comment xml:lang="el">Βίντεο Flash</comment>
- <comment xml:lang="en_GB">Flash video</comment>
- <comment xml:lang="eo">Flash-video</comment>
- <comment xml:lang="es">vídeo Flash</comment>
- <comment xml:lang="eu">Flash bideoa</comment>
- <comment xml:lang="fi">Flash-video</comment>
- <comment xml:lang="fo">Flash video</comment>
- <comment xml:lang="fr">vidéo Flash</comment>
- <comment xml:lang="ga">físeán Flash</comment>
- <comment xml:lang="gl">vídeo Flash</comment>
- <comment xml:lang="he">וידאו של פלאש</comment>
- <comment xml:lang="hr">Flash video snimka</comment>
- <comment xml:lang="hu">Flash videó</comment>
- <comment xml:lang="ia">Video Flash</comment>
- <comment xml:lang="id">Video Flash</comment>
- <comment xml:lang="it">Video Flash</comment>
- <comment xml:lang="ja">Flash 動画</comment>
- <comment xml:lang="ka">Flash-ის ვიდეო</comment>
- <comment xml:lang="kk">Flash видеосы</comment>
- <comment xml:lang="ko">Flash 동영상</comment>
- <comment xml:lang="lt">Flash vaizdo įrašas</comment>
- <comment xml:lang="lv">Flash video</comment>
- <comment xml:lang="nb">Flash-film</comment>
- <comment xml:lang="nl">Flash-video</comment>
- <comment xml:lang="nn">Flash-video</comment>
- <comment xml:lang="oc">vidèo Flash</comment>
- <comment xml:lang="pl">Plik wideo Flash</comment>
- <comment xml:lang="pt">vídeo Flash</comment>
- <comment xml:lang="pt_BR">Vídeo Flash</comment>
- <comment xml:lang="ro">Video Flash</comment>
- <comment xml:lang="ru">Видео Flash</comment>
- <comment xml:lang="sk">Video Flash</comment>
- <comment xml:lang="sl">Video datoteka Flash</comment>
- <comment xml:lang="sq">Video Flash</comment>
- <comment xml:lang="sr">Флеш видео</comment>
- <comment xml:lang="sv">Flash-video</comment>
- <comment xml:lang="tr">Flash video</comment>
- <comment xml:lang="uk">відеокліп Flash</comment>
- <comment xml:lang="vi">Ảnh động Flash</comment>
- <comment xml:lang="zh_CN">Flash 视频</comment>
<comment xml:lang="zh_TW">Flash 視訊</comment>
+ <comment xml:lang="zh_CN">Flash 视频</comment>
+ <comment xml:lang="vi">Ảnh động Flash</comment>
+ <comment xml:lang="uk">відеокліп Flash</comment>
+ <comment xml:lang="tr">Flash video</comment>
+ <comment xml:lang="sv">Flash-video</comment>
+ <comment xml:lang="sr">Флеш видео</comment>
+ <comment xml:lang="sq">video Flash</comment>
+ <comment xml:lang="sl">Video datoteka Flash</comment>
+ <comment xml:lang="si">ෆ්ලෑෂ් වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Flash</comment>
+ <comment xml:lang="ru">Видео Flash</comment>
+ <comment xml:lang="ro">Video Flash</comment>
+ <comment xml:lang="pt_BR">Vídeo Flash</comment>
+ <comment xml:lang="pt">vídeo Flash</comment>
+ <comment xml:lang="pl">Plik wideo Flash</comment>
+ <comment xml:lang="oc">vidèo Flash</comment>
+ <comment xml:lang="nn">Flash-video</comment>
+ <comment xml:lang="nl">Flash-video</comment>
+ <comment xml:lang="nb">Flash-film</comment>
+ <comment xml:lang="lv">Flash video</comment>
+ <comment xml:lang="lt">Flash vaizdo įrašas</comment>
+ <comment xml:lang="ko">Flash 동영상</comment>
+ <comment xml:lang="kk">Flash видеосы</comment>
+ <comment xml:lang="ka">Flash-ის ვიდეო</comment>
+ <comment xml:lang="ja">Flash 動画</comment>
+ <comment xml:lang="it">Video Flash</comment>
+ <comment xml:lang="is">Flash myndskeið</comment>
+ <comment xml:lang="id">Video Flash</comment>
+ <comment xml:lang="ia">Video Flash</comment>
+ <comment xml:lang="hu">Flash videó</comment>
+ <comment xml:lang="hr">Flash video snimka</comment>
+ <comment xml:lang="he">וידאו Flash</comment>
+ <comment xml:lang="gl">vídeo Flash</comment>
+ <comment xml:lang="ga">físeán Flash</comment>
+ <comment xml:lang="fur">video Flash</comment>
+ <comment xml:lang="fr">vidéo Flash</comment>
+ <comment xml:lang="fo">Flash video</comment>
+ <comment xml:lang="fi">Flash-video</comment>
+ <comment xml:lang="eu">Flash bideoa</comment>
+ <comment xml:lang="es">vídeo Flash</comment>
+ <comment xml:lang="eo">Flash-video</comment>
+ <comment xml:lang="en_GB">Flash video</comment>
+ <comment xml:lang="el">Βίντεο Flash</comment>
+ <comment xml:lang="de">Flash-Video</comment>
+ <comment xml:lang="da">Flashvideo</comment>
+ <comment xml:lang="cs">video Flash</comment>
+ <comment xml:lang="ca">vídeo de Flash</comment>
+ <comment xml:lang="bg">Видео — Flash</comment>
+ <comment xml:lang="be@latin">Videa Flash</comment>
+ <comment xml:lang="be">відэа Flash</comment>
+ <comment xml:lang="ast">Videu en Flash</comment>
+ <comment xml:lang="ar">فيديو فلاش</comment>
+ <comment xml:lang="af">Flash-video</comment>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
- <match value="FLV" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="FLV" offset="0"/>
</magic>
<glob pattern="*.flv"/>
<alias type="application/x-flash-video"/>
@@ -2387,162 +2509,361 @@
</mime-type>
<mime-type type="video/x-javafx">
<comment>JavaFX video</comment>
- <comment xml:lang="ast">Videu en JavaFX</comment>
- <comment xml:lang="bg">Видео — JavaFX</comment>
- <comment xml:lang="ca">vídeo de JavaFX</comment>
- <comment xml:lang="cs">video JavaFX</comment>
- <comment xml:lang="da">JavaFX-video</comment>
- <comment xml:lang="de">JavaFX-Video</comment>
- <comment xml:lang="el">Βίντεο JavaFX</comment>
- <comment xml:lang="en_GB">JavaFX video</comment>
- <comment xml:lang="eo">JavaFX-video</comment>
- <comment xml:lang="es">vídeo JavaFX</comment>
- <comment xml:lang="eu">JavaFX bideoa</comment>
- <comment xml:lang="fi">JavaFX-video</comment>
- <comment xml:lang="fo">JavaFX video</comment>
- <comment xml:lang="fr">vidéo JavaFX</comment>
- <comment xml:lang="ga">físeán JavaFX</comment>
- <comment xml:lang="gl">vídeo JavaFX</comment>
- <comment xml:lang="he">וידאו JavaFX</comment>
- <comment xml:lang="hr">JavaFX video snimka</comment>
- <comment xml:lang="hu">JavaFX videó</comment>
- <comment xml:lang="ia">Video JavaFX</comment>
- <comment xml:lang="id">Video JavaFX</comment>
- <comment xml:lang="it">Video JavaFX</comment>
- <comment xml:lang="ja">JavaFX 動画</comment>
- <comment xml:lang="kk">JavaFX аудиосы</comment>
- <comment xml:lang="ko">JavaFX 동영상</comment>
- <comment xml:lang="lv">JavaFX video</comment>
- <comment xml:lang="nl">JavaFX video</comment>
- <comment xml:lang="oc">vidèo JavaFX</comment>
- <comment xml:lang="pl">Plik wideo JavaFX</comment>
- <comment xml:lang="pt">vídeo JavaFX</comment>
- <comment xml:lang="pt_BR">Vídeo JavaFX</comment>
- <comment xml:lang="ro">Video JavaFX</comment>
- <comment xml:lang="ru">Видео JavaFX</comment>
- <comment xml:lang="sk">Video JavaFX</comment>
- <comment xml:lang="sl">Video JavaFX</comment>
- <comment xml:lang="sr">ЈаваФИкс видео</comment>
- <comment xml:lang="sv">JavaFX-video</comment>
- <comment xml:lang="tr">JavaFX video</comment>
- <comment xml:lang="uk">відеокліп JavaFX</comment>
- <comment xml:lang="zh_CN">JavaFX 视频</comment>
<comment xml:lang="zh_TW">JavaFX 視訊</comment>
+ <comment xml:lang="zh_CN">JavaFX 视频</comment>
+ <comment xml:lang="uk">відеокліп JavaFX</comment>
+ <comment xml:lang="tr">JavaFX video</comment>
+ <comment xml:lang="sv">JavaFX-video</comment>
+ <comment xml:lang="sr">ЈаваФИкс видео</comment>
+ <comment xml:lang="sq">video JavaFX</comment>
+ <comment xml:lang="sl">Video JavaFX</comment>
+ <comment xml:lang="si">JavaFX වීඩියෝව</comment>
+ <comment xml:lang="sk">Video JavaFX</comment>
+ <comment xml:lang="ru">Видео JavaFX</comment>
+ <comment xml:lang="ro">Video JavaFX</comment>
+ <comment xml:lang="pt_BR">Vídeo JavaFX</comment>
+ <comment xml:lang="pt">vídeo JavaFX</comment>
+ <comment xml:lang="pl">Plik wideo JavaFX</comment>
+ <comment xml:lang="oc">vidèo JavaFX</comment>
+ <comment xml:lang="nl">JavaFX video</comment>
+ <comment xml:lang="lv">JavaFX video</comment>
+ <comment xml:lang="lt">JavaFX vaizdo įrašas</comment>
+ <comment xml:lang="ko">JavaFX 동영상</comment>
+ <comment xml:lang="kk">JavaFX аудиосы</comment>
+ <comment xml:lang="ja">JavaFX 動画</comment>
+ <comment xml:lang="it">Video JavaFX</comment>
+ <comment xml:lang="is">JavaFX myndskeið</comment>
+ <comment xml:lang="id">Video JavaFX</comment>
+ <comment xml:lang="ia">Video JavaFX</comment>
+ <comment xml:lang="hu">JavaFX videó</comment>
+ <comment xml:lang="hr">JavaFX video snimka</comment>
+ <comment xml:lang="he">וידאו JavaFX</comment>
+ <comment xml:lang="gl">vídeo JavaFX</comment>
+ <comment xml:lang="ga">físeán JavaFX</comment>
+ <comment xml:lang="fur">video JavaFX</comment>
+ <comment xml:lang="fr">vidéo JavaFX</comment>
+ <comment xml:lang="fo">JavaFX video</comment>
+ <comment xml:lang="fi">JavaFX-video</comment>
+ <comment xml:lang="eu">JavaFX bideoa</comment>
+ <comment xml:lang="es">vídeo JavaFX</comment>
+ <comment xml:lang="eo">JavaFX-video</comment>
+ <comment xml:lang="en_GB">JavaFX video</comment>
+ <comment xml:lang="el">Βίντεο JavaFX</comment>
+ <comment xml:lang="de">JavaFX-Video</comment>
+ <comment xml:lang="da">JavaFX-video</comment>
+ <comment xml:lang="cs">video JavaFX</comment>
+ <comment xml:lang="ca">vídeo de JavaFX</comment>
+ <comment xml:lang="bg">Видео — JavaFX</comment>
+ <comment xml:lang="be">відэа JavaFX</comment>
+ <comment xml:lang="ast">Videu en JavaFX</comment>
+ <comment xml:lang="ar">فيديو JavaFX</comment>
+ <comment xml:lang="af">JavaFX-video</comment>
<generic-icon name="video-x-generic"/>
<magic priority="40">
- <match value="FLV" type="string" offset="0"/>
+ <match type="string" value="FLV" offset="0"/>
</magic>
<glob pattern="*.fxm"/>
<sub-class-of type="video/x-flv"/>
</mime-type>
<mime-type type="application/x-go-sgf">
-
+ <!-- translators: a record is in this context a description of a board game
+ that has been played, and that can be played back again:
+ http://www.red-bean.com/sgf/ -->
<comment>SGF record</comment>
- <comment xml:lang="ar">تسجيلة SGF</comment>
- <comment xml:lang="be@latin">Zapisanaja hulnia SGF</comment>
- <comment xml:lang="bg">Запис — SGF</comment>
- <comment xml:lang="ca">registre SGF</comment>
- <comment xml:lang="cs">nahrávka SGF</comment>
- <comment xml:lang="da">SGF-optagelse</comment>
- <comment xml:lang="de">SGF-Aufzeichnung</comment>
- <comment xml:lang="el">Εγγραφή SGF</comment>
- <comment xml:lang="en_GB">SGF record</comment>
- <comment xml:lang="es">grabación SGF</comment>
- <comment xml:lang="eu">SGF erregistroa</comment>
- <comment xml:lang="fi">SGF-nauhoitus</comment>
- <comment xml:lang="fo">SGF met</comment>
- <comment xml:lang="fr">partie SGF</comment>
- <comment xml:lang="ga">taifead SGF</comment>
- <comment xml:lang="gl">Grabación SGF</comment>
- <comment xml:lang="he">הקלטת SGF</comment>
- <comment xml:lang="hr">SGF zapis</comment>
- <comment xml:lang="hu">SGF pontszám</comment>
- <comment xml:lang="ia">Partita SGF</comment>
- <comment xml:lang="id">Catatan SGF</comment>
- <comment xml:lang="it">Registrazione SGF</comment>
- <comment xml:lang="ja">SGF レコード</comment>
- <comment xml:lang="kk">SGF жазбасы</comment>
- <comment xml:lang="ko">SGF 기록 파일</comment>
- <comment xml:lang="lt">SGF įrašas</comment>
- <comment xml:lang="lv">SGF ieraksts</comment>
- <comment xml:lang="nb">SGF-oppføring</comment>
- <comment xml:lang="nl">SGF-record</comment>
- <comment xml:lang="nn">SGF-logg</comment>
- <comment xml:lang="oc">partida SGF</comment>
- <comment xml:lang="pl">Zapis gry SGF</comment>
- <comment xml:lang="pt">gravação SGF</comment>
- <comment xml:lang="pt_BR">Gravação SGF</comment>
- <comment xml:lang="ro">Înregistrare SGF</comment>
- <comment xml:lang="ru">Запись SGF</comment>
- <comment xml:lang="sk">Záznam SGF</comment>
- <comment xml:lang="sl">Datoteka shranjene igre SGF</comment>
- <comment xml:lang="sq">Regjistrim SGF</comment>
- <comment xml:lang="sr">СГФ запис</comment>
- <comment xml:lang="sv">SGF-protokoll</comment>
- <comment xml:lang="tr">SGF kaydı</comment>
- <comment xml:lang="uk">запис SGF</comment>
- <comment xml:lang="vi">Mục ghi SGF</comment>
- <comment xml:lang="zh_CN">SGF 记录</comment>
<comment xml:lang="zh_TW">SGF 紀錄</comment>
+ <comment xml:lang="zh_CN">SGF 记录</comment>
+ <comment xml:lang="vi">Mục ghi SGF</comment>
+ <comment xml:lang="uk">запис SGF</comment>
+ <comment xml:lang="tr">SGF kaydı</comment>
+ <comment xml:lang="sv">SGF-protokoll</comment>
+ <comment xml:lang="sr">СГФ запис</comment>
+ <comment xml:lang="sq">regjistrim SGF</comment>
+ <comment xml:lang="sl">Datoteka shranjene igre SGF</comment>
+ <comment xml:lang="si">SGF වාර්තාව</comment>
+ <comment xml:lang="sk">Záznam SGF</comment>
+ <comment xml:lang="ru">Запись SGF</comment>
+ <comment xml:lang="ro">Înregistrare SGF</comment>
+ <comment xml:lang="pt_BR">Gravação SGF</comment>
+ <comment xml:lang="pt">gravação SGF</comment>
+ <comment xml:lang="pl">Zapis gry SGF</comment>
+ <comment xml:lang="oc">partida SGF</comment>
+ <comment xml:lang="nn">SGF-logg</comment>
+ <comment xml:lang="nl">SGF-record</comment>
+ <comment xml:lang="nb">SGF-oppføring</comment>
+ <comment xml:lang="lv">SGF ieraksts</comment>
+ <comment xml:lang="lt">SGF įrašas</comment>
+ <comment xml:lang="ko">SGF 기록 파일</comment>
+ <comment xml:lang="kk">SGF жазбасы</comment>
+ <comment xml:lang="ja">SGF レコード</comment>
+ <comment xml:lang="it">Registrazione SGF</comment>
+ <comment xml:lang="is">SGF færsla</comment>
+ <comment xml:lang="id">Catatan SGF</comment>
+ <comment xml:lang="ia">Partita SGF</comment>
+ <comment xml:lang="hu">SGF pontszám</comment>
+ <comment xml:lang="hr">SGF zapis</comment>
+ <comment xml:lang="he">הקלטת SGF</comment>
+ <comment xml:lang="gl">Grabación SGF</comment>
+ <comment xml:lang="ga">taifead SGF</comment>
+ <comment xml:lang="fur">regjistrazion SGF</comment>
+ <comment xml:lang="fr">partie SGF</comment>
+ <comment xml:lang="fo">SGF met</comment>
+ <comment xml:lang="fi">SGF-tallenne</comment>
+ <comment xml:lang="eu">SGF erregistroa</comment>
+ <comment xml:lang="es">grabación SGF</comment>
+ <comment xml:lang="en_GB">SGF record</comment>
+ <comment xml:lang="el">Εγγραφή SGF</comment>
+ <comment xml:lang="de">SGF-Aufzeichnung</comment>
+ <comment xml:lang="da">SGF-optagelse</comment>
+ <comment xml:lang="cs">nahrávka SGF</comment>
+ <comment xml:lang="ca">registre SGF</comment>
+ <comment xml:lang="bg">Запис — SGF</comment>
+ <comment xml:lang="be@latin">Zapisanaja hulnia SGF</comment>
+ <comment xml:lang="be">запіс SGF</comment>
+ <comment xml:lang="ar">تسجيلة SGF</comment>
+ <comment xml:lang="af">SGF-rekord</comment>
<acronym>SGF</acronym>
<expanded-acronym>Smart Game Format</expanded-acronym>
<generic-icon name="text-x-generic"/>
<glob pattern="*.sgf"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="(;FF[3]" type="string" offset="0"/>
- <match value="(;FF[4]" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="(;FF[3]" offset="0"/>
+ <match type="string" value="(;FF[4]" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-godot-project">
+ <comment>Godot Engine project</comment>
+ <comment xml:lang="zh_TW">Godot Engine 專案</comment>
+ <comment xml:lang="zh_CN">Godot Engine 项目</comment>
+ <comment xml:lang="uk">проєкт Godot Engine</comment>
+ <comment xml:lang="tr">Godot Engine projesi</comment>
+ <comment xml:lang="sv">Godot Engine-projekt</comment>
+ <comment xml:lang="sl">Projekt Godot Engine</comment>
+ <comment xml:lang="si">ගොඩොට් එන්ජින් ව්යාපෘතිය</comment>
+ <comment xml:lang="ru">Проект Godot Engine</comment>
+ <comment xml:lang="pt_BR">Projeto do Godot Engine</comment>
+ <comment xml:lang="pt">projeto Godot Engine</comment>
+ <comment xml:lang="pl">Projekt Godot Engine</comment>
+ <comment xml:lang="nl">Godot Engine-project</comment>
+ <comment xml:lang="ko">Godot 엔진 프로젝트</comment>
+ <comment xml:lang="kk">Godot Engine жобасы</comment>
+ <comment xml:lang="ja">Godot Engine プロジェクト</comment>
+ <comment xml:lang="it">Progetto Godot Engine</comment>
+ <comment xml:lang="hr">Godot Engine projekt</comment>
+ <comment xml:lang="he">מיזם של מנוע גודו</comment>
+ <comment xml:lang="gl">Proxecto do motor Godot</comment>
+ <comment xml:lang="fi">Godot Engine -projekti</comment>
+ <comment xml:lang="eu">Godot Engine proiektua</comment>
+ <comment xml:lang="es">proyecto de motor Godot</comment>
+ <comment xml:lang="en_GB">Godot Engine project</comment>
+ <comment xml:lang="de">Godot-Engine-Projekt</comment>
+ <comment xml:lang="be">праект Godot Engine</comment>
+ <comment xml:lang="ar">مشروع محرك جودو</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="project.godot"/>
+ </mime-type>
+ <mime-type type="application/x-godot-resource">
+ <comment>Godot Engine resource</comment>
+ <comment xml:lang="zh_CN">Godot Engine 资源</comment>
+ <comment xml:lang="uk">ресурс Godot Engine</comment>
+ <comment xml:lang="tr">Godot Engine kaynağı</comment>
+ <comment xml:lang="sv">Godot Engine-resurs</comment>
+ <comment xml:lang="sl">Vir Godot Engine</comment>
+ <comment xml:lang="si">ගොඩොට් එන්ජින් සම්පත</comment>
+ <comment xml:lang="ru">Ресурс Godot Engine</comment>
+ <comment xml:lang="pt_BR">Recurso do Godot Engine</comment>
+ <comment xml:lang="pt">recurso do Motor Godot</comment>
+ <comment xml:lang="pl">Zasób Godot Engine</comment>
+ <comment xml:lang="nl">Godot Engine-bron</comment>
+ <comment xml:lang="ko">Godot 엔진 자원</comment>
+ <comment xml:lang="kk">Godot Engine ресурсы</comment>
+ <comment xml:lang="ja">Godot Engine リソース</comment>
+ <comment xml:lang="it">Risorsa Godot Engine</comment>
+ <comment xml:lang="hr">Godot Engine resurs</comment>
+ <comment xml:lang="he">משאב של מנוע גודו</comment>
+ <comment xml:lang="gl">Recurso do motor Godot</comment>
+ <comment xml:lang="fi">Godot Engine -resurssi</comment>
+ <comment xml:lang="eu">Godot Engine baliabidea</comment>
+ <comment xml:lang="es">recurso de motor Godot</comment>
+ <comment xml:lang="en_GB">Godot Engine resource</comment>
+ <comment xml:lang="de">Godot-Engine-Ressource</comment>
+ <comment xml:lang="be">рэсурс Godot Engine</comment>
+ <comment xml:lang="ar">مورد محرك جودو</comment>
+ <glob pattern="*.res"/>
+ <glob pattern="*.tres"/>
+ <magic>
+ <match type="string" value="[gd_resource " offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-godot-scene">
+ <comment>Godot Engine scene</comment>
+ <comment xml:lang="zh_TW">Godot Engine 場景</comment>
+ <comment xml:lang="zh_CN">Godot Engine 场景</comment>
+ <comment xml:lang="uk">сцена Godot Engine</comment>
+ <comment xml:lang="tr">Godot Engine sahnesi</comment>
+ <comment xml:lang="sv">Godot Engine-scen</comment>
+ <comment xml:lang="sl">Prizor Godot Engine</comment>
+ <comment xml:lang="si">ගොඩෝ එන්ජින් දර්ශනය</comment>
+ <comment xml:lang="ru">Сцена Godot Engine</comment>
+ <comment xml:lang="pt_BR">Cena do Godot Engine</comment>
+ <comment xml:lang="pt">cena do Godot Engine</comment>
+ <comment xml:lang="pl">Scena Godot Engine</comment>
+ <comment xml:lang="nl">Godot Engine-scène</comment>
+ <comment xml:lang="ko">Godot 엔진 장면</comment>
+ <comment xml:lang="kk">Godot Engine сахнасы</comment>
+ <comment xml:lang="ja">Godot Engine シーン</comment>
+ <comment xml:lang="it">Scena Godot Engine</comment>
+ <comment xml:lang="hr">Godot Engine scena</comment>
+ <comment xml:lang="he">סצנה של מנוע גודו</comment>
+ <comment xml:lang="gl">Escena do motor Godot</comment>
+ <comment xml:lang="fi">Godot Engine -näkymä</comment>
+ <comment xml:lang="eu">Godot Engine eszena</comment>
+ <comment xml:lang="es">escena de motor Godot</comment>
+ <comment xml:lang="en_GB">Godot Engine scene</comment>
+ <comment xml:lang="de">Godot-Engine-Szene</comment>
+ <comment xml:lang="be">сцэна Godot Engine</comment>
+ <comment xml:lang="ar">مشهد محرك جودو</comment>
+ <glob pattern="*.scn"/>
+ <glob pattern="*.tscn"/>
+ <glob pattern="*.escn"/>
+ <magic>
+ <match type="string" value="[gd_scene " offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-godot-shader">
+ <comment>Godot Engine shader</comment>
+ <comment xml:lang="zh_CN">Godot Engine 着色器</comment>
+ <comment xml:lang="uk">шейдер Godot Engine</comment>
+ <comment xml:lang="tr">Godot Engine gölgelendiricisi</comment>
+ <comment xml:lang="sv">Godot Engine-shader</comment>
+ <comment xml:lang="sl">Senčilnik Godot Engine</comment>
+ <comment xml:lang="si">ගොඩොට් එන්ජින් සෙවන</comment>
+ <comment xml:lang="ru">Шейдер Godot Engine</comment>
+ <comment xml:lang="pt_BR">Sombra do Godot Engine</comment>
+ <comment xml:lang="pt">sombra do Godot Engine</comment>
+ <comment xml:lang="pl">Program cieniujący Godot Engine</comment>
+ <comment xml:lang="nl">Godot Engine-shader</comment>
+ <comment xml:lang="ko">Godot 엔진 셰이더</comment>
+ <comment xml:lang="kk">Godot Engine шейдері</comment>
+ <comment xml:lang="ja">Godot Engine シェーダー</comment>
+ <comment xml:lang="it">Shader Godot Engine</comment>
+ <comment xml:lang="hr">Godot Engine shader</comment>
+ <comment xml:lang="he">הצללה של מנוע גודו</comment>
+ <comment xml:lang="gl">Sombreador do motor Godot</comment>
+ <comment xml:lang="fi">Godot Engine -varjostin</comment>
+ <comment xml:lang="eu">Godot Engine itzalgilea</comment>
+ <comment xml:lang="es">sombreador de Godot Engine</comment>
+ <comment xml:lang="en_GB">Godot Engine shader</comment>
+ <comment xml:lang="de">Godot-Engine-Shader</comment>
+ <comment xml:lang="be">шэйдар Godot Engine</comment>
+ <comment xml:lang="ar">مظلل محرك جودو</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.gdshader"/>
+ </mime-type>
+ <mime-type type="application/x-gdscript">
+ <comment>GDScript script</comment>
+ <comment xml:lang="zh_TW">GDScript 指令稿</comment>
+ <comment xml:lang="zh_CN">GDScript 脚本</comment>
+ <comment xml:lang="uk">скрипт GDScript</comment>
+ <comment xml:lang="tr">GDScript betiği</comment>
+ <comment xml:lang="sv">GDScript-skript</comment>
+ <comment xml:lang="sl">Skript GDScript</comment>
+ <comment xml:lang="si">GDScript පිටපත</comment>
+ <comment xml:lang="ru">Сценарий GDScript</comment>
+ <comment xml:lang="pt_BR">Script GDScript</comment>
+ <comment xml:lang="pl">Skrypt GDScript</comment>
+ <comment xml:lang="nl">GDScript-script</comment>
+ <comment xml:lang="ko">GDScript 스크립트</comment>
+ <comment xml:lang="kk">GDScript скрипті</comment>
+ <comment xml:lang="ka">GDScript-ის სკრიპტი</comment>
+ <comment xml:lang="ja">GDScript スクリプト</comment>
+ <comment xml:lang="it">Script GDScript</comment>
+ <comment xml:lang="hr">GDScript skripta</comment>
+ <comment xml:lang="he">סקריפט GDScript</comment>
+ <comment xml:lang="gl">Script de GDScript</comment>
+ <comment xml:lang="fi">GDScript-skripti</comment>
+ <comment xml:lang="eu">GDScript scripta</comment>
+ <comment xml:lang="es">secuencia de órdenes en GDScript</comment>
+ <comment xml:lang="en_GB">GDScript script</comment>
+ <comment xml:lang="de">GDScript-Skript</comment>
+ <comment xml:lang="be">скрыпт GDScript</comment>
+ <comment xml:lang="ar">سكربت GDScript</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.gd"/>
+ </mime-type>
+ <mime-type type="application/its+xml">
+ <comment>ITS translation file</comment>
+ <comment xml:lang="uk">файл перекладу ITS</comment>
+ <comment xml:lang="sv">ITS-översättningsfil</comment>
+ <comment xml:lang="ru">Файл перевода ITS</comment>
+ <comment xml:lang="pl">Plik tłumaczenia ITS</comment>
+ <comment xml:lang="es">archivo de traducción ITS</comment>
+ <comment xml:lang="de">ITS-Übersetzungsdatei</comment>
+ <acronym>ITS</acronym>
+ <expanded-acronym>Internationalization Tag Set</expanded-acronym>
+ <sub-class-of type="application/xml"/>
+ <generic-icon name="text-x-generic"/>
+ <glob pattern="*.its"/>
+ <magic>
+ <match type="string" value="&lt;its" offset="0:256"/>
</magic>
+ <root-XML namespaceURI="http://www.w3.org/2005/11/its" localName="its"/>
</mime-type>
<mime-type type="application/xliff+xml">
<comment>XLIFF translation file</comment>
- <comment xml:lang="ar">ملف ترجمة XLIFF</comment>
- <comment xml:lang="ast">Ficheru de traducciones XLIFF</comment>
- <comment xml:lang="be@latin">Fajł pierakładu XLIFF</comment>
- <comment xml:lang="bg">Превод — XLIFF</comment>
- <comment xml:lang="ca">fitxer de traducció XLIFF</comment>
- <comment xml:lang="cs">soubor překladu XLIFF</comment>
- <comment xml:lang="da">XLIFF-oversættelsesfil</comment>
- <comment xml:lang="de">XLIFF-Übersetzung</comment>
- <comment xml:lang="el">Αρχείο μετάφρασης XLIFF</comment>
- <comment xml:lang="en_GB">XLIFF translation file</comment>
- <comment xml:lang="es">archivo de traducción XLIFF</comment>
- <comment xml:lang="eu">XLIFF itzulpen-fitxategia</comment>
- <comment xml:lang="fi">XLIFF-käännöstiedosto</comment>
- <comment xml:lang="fo">XLIFF týðingarfíla</comment>
- <comment xml:lang="fr">fichier de traduction XLIFF</comment>
- <comment xml:lang="ga">comhad aistriúcháin XLIFF</comment>
- <comment xml:lang="gl">ficheiro de tradución XLIFF</comment>
- <comment xml:lang="he">קובץ תרגום CLIFF</comment>
- <comment xml:lang="hr">XLIFF datoteka prijevoda</comment>
- <comment xml:lang="hu">XLIFF fordítási fájl</comment>
- <comment xml:lang="ia">File de traduction XLIFF</comment>
- <comment xml:lang="id">Berkas terjemahan XLIFF</comment>
- <comment xml:lang="it">File traduzione XLIFF</comment>
- <comment xml:lang="ja">XLIFF 翻訳ファイル</comment>
- <comment xml:lang="kk">XLIFF аударма файлы</comment>
- <comment xml:lang="ko">XLIFF 번역 파일</comment>
- <comment xml:lang="lt">XLIFF vertimo failas</comment>
- <comment xml:lang="lv">XLIFF tulkošanas datne</comment>
- <comment xml:lang="nb">XLIFF-oversettelsesfil</comment>
- <comment xml:lang="nl">XLIFF-vertalingsbestand</comment>
- <comment xml:lang="nn">XLIFF-omsetjingsfil</comment>
- <comment xml:lang="oc">fichièr de traduccion XLIFF</comment>
- <comment xml:lang="pl">Plik tłumaczenia XLIFF</comment>
- <comment xml:lang="pt">ficheiro de tradução XLIFF</comment>
- <comment xml:lang="pt_BR">Arquivo de tradução XLIFF</comment>
- <comment xml:lang="ro">Fișier de traducere XLIFF</comment>
- <comment xml:lang="ru">Файл перевода XLIFF</comment>
- <comment xml:lang="sk">Súbor prekladu XLIFF</comment>
- <comment xml:lang="sl">Datoteka prevoda XLIFF</comment>
- <comment xml:lang="sq">File përkthimesh XLIFF</comment>
- <comment xml:lang="sr">ИксЛИФФ датотека превода</comment>
- <comment xml:lang="sv">XLIFF-översättningsfil</comment>
- <comment xml:lang="tr">XLIFF çeviri dosyası</comment>
- <comment xml:lang="uk">файл перекладу XLIFF</comment>
- <comment xml:lang="vi">Tập tin dịch XLIFF</comment>
- <comment xml:lang="zh_CN">XLIFF 翻译文件</comment>
<comment xml:lang="zh_TW">XLIFF 翻譯檔</comment>
+ <comment xml:lang="zh_CN">XLIFF 翻译文件</comment>
+ <comment xml:lang="vi">Tập tin dịch XLIFF</comment>
+ <comment xml:lang="uk">файл перекладу XLIFF</comment>
+ <comment xml:lang="tr">XLIFF çeviri dosyası</comment>
+ <comment xml:lang="sv">XLIFF-översättningsfil</comment>
+ <comment xml:lang="sr">ИксЛИФФ датотека превода</comment>
+ <comment xml:lang="sq">kartelë përkthimesh XLIFF</comment>
+ <comment xml:lang="sl">Datoteka prevoda XLIFF</comment>
+ <comment xml:lang="si">XLIFF පරිවර්තන ගොනුව</comment>
+ <comment xml:lang="sk">Súbor prekladu XLIFF</comment>
+ <comment xml:lang="ru">Файл перевода XLIFF</comment>
+ <comment xml:lang="ro">Fișier de traducere XLIFF</comment>
+ <comment xml:lang="pt_BR">Arquivo de tradução XLIFF</comment>
+ <comment xml:lang="pt">ficheiro de tradução XLIFF</comment>
+ <comment xml:lang="pl">Plik tłumaczenia XLIFF</comment>
+ <comment xml:lang="oc">fichièr de traduccion XLIFF</comment>
+ <comment xml:lang="nn">XLIFF-omsetjingsfil</comment>
+ <comment xml:lang="nl">XLIFF-vertalingsbestand</comment>
+ <comment xml:lang="nb">XLIFF-oversettelsesfil</comment>
+ <comment xml:lang="lv">XLIFF tulkošanas datne</comment>
+ <comment xml:lang="lt">XLIFF vertimo failas</comment>
+ <comment xml:lang="ko">XLIFF 번역 파일</comment>
+ <comment xml:lang="kk">XLIFF аударма файлы</comment>
+ <comment xml:lang="ka">XLIFF თარგმნის ფაილი</comment>
+ <comment xml:lang="ja">XLIFF 翻訳ファイル</comment>
+ <comment xml:lang="it">File traduzione XLIFF</comment>
+ <comment xml:lang="is">XLIFF-þýðingaskrá</comment>
+ <comment xml:lang="id">Berkas terjemahan XLIFF</comment>
+ <comment xml:lang="ia">File de traduction XLIFF</comment>
+ <comment xml:lang="hu">XLIFF fordítási fájl</comment>
+ <comment xml:lang="hr">XLIFF datoteka prijevoda</comment>
+ <comment xml:lang="he">קובץ תרגום CLIFF</comment>
+ <comment xml:lang="gl">ficheiro de tradución XLIFF</comment>
+ <comment xml:lang="ga">comhad aistriúcháin XLIFF</comment>
+ <comment xml:lang="fur">file di traduzion XLIFF</comment>
+ <comment xml:lang="fr">fichier de traduction XLIFF</comment>
+ <comment xml:lang="fo">XLIFF týðingarfíla</comment>
+ <comment xml:lang="fi">XLIFF-käännöstiedosto</comment>
+ <comment xml:lang="eu">XLIFF itzulpen-fitxategia</comment>
+ <comment xml:lang="es">archivo de traducción XLIFF</comment>
+ <comment xml:lang="en_GB">XLIFF translation file</comment>
+ <comment xml:lang="el">Αρχείο μετάφρασης XLIFF</comment>
+ <comment xml:lang="de">XLIFF-Übersetzungsdatei</comment>
+ <comment xml:lang="da">XLIFF-oversættelsesfil</comment>
+ <comment xml:lang="cs">soubor překladu XLIFF</comment>
+ <comment xml:lang="ca">fitxer de traducció XLIFF</comment>
+ <comment xml:lang="bg">Превод — XLIFF</comment>
+ <comment xml:lang="be@latin">Fajł pierakładu XLIFF</comment>
+ <comment xml:lang="be">файл перакладу XLIFF</comment>
+ <comment xml:lang="ast">Ficheru de traducciones XLIFF</comment>
+ <comment xml:lang="ar">ملف ترجمة XLIFF</comment>
+ <comment xml:lang="af">XLIFF-vertaallêer</comment>
<acronym>XLIFF</acronym>
<expanded-acronym>XML Localization Interchange File Format</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -2550,125 +2871,173 @@
<glob pattern="*.xlf"/>
<glob pattern="*.xliff"/>
<magic priority="80">
- <match value="&lt;xliff" type="string" offset="0:256"/>
+ <match type="string" value="&lt;xliff" offset="0:256"/>
</magic>
- <root-XML namespaceURI='urn:oasis:names:tc:xliff:document:1.1' localName='xliff'/>
+ <root-XML namespaceURI="urn:oasis:names:tc:xliff:document:1.1" localName="xliff"/>
<alias type="application/x-xliff"/>
</mime-type>
- <mime-type type="application/x-yaml">
+ <mime-type type="application/toml">
+ <comment>TOML document</comment>
+ <comment xml:lang="zh_CN">TOML 文档</comment>
+ <comment xml:lang="uk">документ TOML</comment>
+ <comment xml:lang="tr">TOML belgesi</comment>
+ <comment xml:lang="sv">TOML-dokument</comment>
+ <comment xml:lang="sq">dokument TOML</comment>
+ <comment xml:lang="sl">Dokument TOML</comment>
+ <comment xml:lang="si">TOML ලේඛනය</comment>
+ <comment xml:lang="ru">Документ TOML</comment>
+ <comment xml:lang="pt_BR">Documento TOML</comment>
+ <comment xml:lang="pl">Dokument TOML</comment>
+ <comment xml:lang="oc">document TOML</comment>
+ <comment xml:lang="nl">TOML-document</comment>
+ <comment xml:lang="ko">TOML 문서</comment>
+ <comment xml:lang="kk">TOML құжаты</comment>
+ <comment xml:lang="ka">TOML დოკუმენტი</comment>
+ <comment xml:lang="ja">TOML ドキュメント</comment>
+ <comment xml:lang="it">Documento TOML</comment>
+ <comment xml:lang="hr">TOML dokument</comment>
+ <comment xml:lang="he">מסמך TOML</comment>
+ <comment xml:lang="gl">Documento TOML</comment>
+ <comment xml:lang="fi">TOML-asiakirja</comment>
+ <comment xml:lang="eu">TOML dokumentua</comment>
+ <comment xml:lang="es">documento TOML</comment>
+ <comment xml:lang="en_GB">TOML document</comment>
+ <comment xml:lang="de">TOML-Dokument</comment>
+ <comment xml:lang="be">дакумент TOML</comment>
+ <comment xml:lang="ar">مستند TOML</comment>
+ <acronym>TOML</acronym>
+ <expanded-acronym>Tom's Obvious Minimal Language</expanded-acronym>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-generic"/>
+ <glob pattern="*.toml"/>
+ </mime-type>
+ <mime-type type="application/yaml">
<comment>YAML document</comment>
- <comment xml:lang="ar">مستند YAML</comment>
- <comment xml:lang="ast">Documentu YAML</comment>
- <comment xml:lang="bg">Документ — YAML</comment>
- <comment xml:lang="ca">document YAML</comment>
- <comment xml:lang="cs">dokument YAML</comment>
- <comment xml:lang="da">YAML-dokument</comment>
- <comment xml:lang="de">YAML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο YAML</comment>
- <comment xml:lang="en_GB">YAML document</comment>
- <comment xml:lang="eo">YAML-dokumento</comment>
- <comment xml:lang="es">documento YAML</comment>
- <comment xml:lang="eu">YAML dokumentua</comment>
- <comment xml:lang="fi">YAML-asiakirja</comment>
- <comment xml:lang="fo">YAML skjal</comment>
- <comment xml:lang="fr">document YAML</comment>
- <comment xml:lang="ga">cáipéis YAML</comment>
- <comment xml:lang="gl">documento YAML</comment>
- <comment xml:lang="he">מסמך YAML</comment>
- <comment xml:lang="hr">YAML dokument</comment>
- <comment xml:lang="hu">YAML-dokumentum</comment>
- <comment xml:lang="ia">Documento YAML</comment>
- <comment xml:lang="id">Dokumen YAML</comment>
- <comment xml:lang="it">Documento YAML</comment>
- <comment xml:lang="ja">YAML ドキュメント</comment>
- <comment xml:lang="kk">YAML құжаты</comment>
- <comment xml:lang="ko">YAML 문서</comment>
- <comment xml:lang="lt">YAML dokumentas</comment>
- <comment xml:lang="lv">YAML dokuments</comment>
- <comment xml:lang="nl">YAML document</comment>
- <comment xml:lang="oc">document YAML</comment>
- <comment xml:lang="pl">Dokument YAML</comment>
- <comment xml:lang="pt">documento YAML</comment>
- <comment xml:lang="pt_BR">Documento YAML</comment>
- <comment xml:lang="ro">Document YAML</comment>
- <comment xml:lang="ru">Документ YAML</comment>
- <comment xml:lang="sk">Dokument YAML</comment>
- <comment xml:lang="sl">Dokument YAML</comment>
- <comment xml:lang="sr">ЈАМЛ документ</comment>
- <comment xml:lang="sv">YAML-dokument</comment>
- <comment xml:lang="tr">YAML belgesi</comment>
- <comment xml:lang="uk">документ YAML</comment>
- <comment xml:lang="zh_CN">YAML 文档</comment>
<comment xml:lang="zh_TW">YAML 文件</comment>
+ <comment xml:lang="zh_CN">YAML 文档</comment>
+ <comment xml:lang="uk">документ YAML</comment>
+ <comment xml:lang="tr">YAML belgesi</comment>
+ <comment xml:lang="sv">YAML-dokument</comment>
+ <comment xml:lang="sr">ЈАМЛ документ</comment>
+ <comment xml:lang="sq">dokument YAML</comment>
+ <comment xml:lang="sl">Dokument YAML</comment>
+ <comment xml:lang="si">YAML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument YAML</comment>
+ <comment xml:lang="ru">Документ YAML</comment>
+ <comment xml:lang="ro">Document YAML</comment>
+ <comment xml:lang="pt_BR">Documento YAML</comment>
+ <comment xml:lang="pt">documento YAML</comment>
+ <comment xml:lang="pl">Dokument YAML</comment>
+ <comment xml:lang="oc">document YAML</comment>
+ <comment xml:lang="nl">YAML-document</comment>
+ <comment xml:lang="lv">YAML dokuments</comment>
+ <comment xml:lang="lt">YAML dokumentas</comment>
+ <comment xml:lang="ko">YAML 문서</comment>
+ <comment xml:lang="kk">YAML құжаты</comment>
+ <comment xml:lang="ka">YAML დოკუმენტი</comment>
+ <comment xml:lang="ja">YAML ドキュメント</comment>
+ <comment xml:lang="it">Documento YAML</comment>
+ <comment xml:lang="is">YAML skjal</comment>
+ <comment xml:lang="id">Dokumen YAML</comment>
+ <comment xml:lang="ia">Documento YAML</comment>
+ <comment xml:lang="hu">YAML-dokumentum</comment>
+ <comment xml:lang="hr">YAML dokument</comment>
+ <comment xml:lang="he">מסמך YAML</comment>
+ <comment xml:lang="gl">documento YAML</comment>
+ <comment xml:lang="ga">cáipéis YAML</comment>
+ <comment xml:lang="fur">document YAML</comment>
+ <comment xml:lang="fr">document YAML</comment>
+ <comment xml:lang="fo">YAML skjal</comment>
+ <comment xml:lang="fi">YAML-asiakirja</comment>
+ <comment xml:lang="eu">YAML dokumentua</comment>
+ <comment xml:lang="es">documento YAML</comment>
+ <comment xml:lang="eo">YAML-dokumento</comment>
+ <comment xml:lang="en_GB">YAML document</comment>
+ <comment xml:lang="el">Έγγραφο YAML</comment>
+ <comment xml:lang="de">YAML-Dokument</comment>
+ <comment xml:lang="da">YAML-dokument</comment>
+ <comment xml:lang="cs">dokument YAML</comment>
+ <comment xml:lang="ca">document YAML</comment>
+ <comment xml:lang="bg">Документ — YAML</comment>
+ <comment xml:lang="be">дакумент YAML</comment>
+ <comment xml:lang="ast">Documentu YAML</comment>
+ <comment xml:lang="ar">مستند YAML</comment>
+ <comment xml:lang="af">YAML-dokument</comment>
<acronym>YAML</acronym>
<expanded-acronym>YAML Ain't Markup Language</expanded-acronym>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<magic>
- <match value="%YAML" type="string" offset="0"/>
+ <match type="string" value="%YAML" offset="0"/>
</magic>
<glob pattern="*.yaml"/>
<glob pattern="*.yml"/>
+ <alias type="application/x-yaml"/>
<alias type="text/yaml"/>
<alias type="text/x-yaml"/>
</mime-type>
<mime-type type="application/vnd.corel-draw">
<comment>Corel Draw drawing</comment>
- <comment xml:lang="ar">تصميم Corel Draw</comment>
- <comment xml:lang="ast">Dibuxu de Corel Draw</comment>
- <comment xml:lang="az">Corel Draw çəkimi</comment>
- <comment xml:lang="be@latin">Rysunak Corel Draw</comment>
- <comment xml:lang="bg">Чертеж — Corel Draw</comment>
- <comment xml:lang="ca">dibuix de Corel Draw</comment>
- <comment xml:lang="cs">kresba Corel Draw</comment>
- <comment xml:lang="cy">Darlun Corel Draw</comment>
- <comment xml:lang="da">Corel Draw-tegning</comment>
- <comment xml:lang="de">Corel-Draw-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Corel Draw </comment>
- <comment xml:lang="en_GB">Corel Draw drawing</comment>
- <comment xml:lang="eo">grafikaĵo de Corel Draw</comment>
- <comment xml:lang="es">dibujo de Corel Draw</comment>
- <comment xml:lang="eu">Corel Draw-eko marrazkia</comment>
- <comment xml:lang="fi">Corel Draw -piirros</comment>
- <comment xml:lang="fo">Corel Draw tekning</comment>
- <comment xml:lang="fr">dessin Corel Draw</comment>
- <comment xml:lang="ga">líníocht Corel Draw</comment>
- <comment xml:lang="gl">debuxo de Corel Draw</comment>
- <comment xml:lang="he">ציור של Corel Draw</comment>
- <comment xml:lang="hr">Corel Draw crtež</comment>
- <comment xml:lang="hu">Corel Draw-rajz</comment>
- <comment xml:lang="ia">Designo Corel Draw</comment>
- <comment xml:lang="id">Gambar Corel Draw</comment>
- <comment xml:lang="it">Disegno Corel Draw</comment>
- <comment xml:lang="ja">Corel Draw ドロー</comment>
- <comment xml:lang="ka">Corel Draw-ის ნახაზი</comment>
- <comment xml:lang="kk">Corel Draw суреті</comment>
- <comment xml:lang="ko">코렐 드로우 드로잉</comment>
- <comment xml:lang="lt">Corel Draw piešinys</comment>
- <comment xml:lang="lv">Corel Draw zīmējums</comment>
- <comment xml:lang="ms">Lukisan Corel Draw</comment>
- <comment xml:lang="nb">Corel Draw-tegning</comment>
- <comment xml:lang="nl">Corel Draw-tekening</comment>
- <comment xml:lang="nn">Corel Draw-teikning</comment>
- <comment xml:lang="oc">dessenh Corel Draw</comment>
- <comment xml:lang="pl">Rysunek Corel Draw</comment>
- <comment xml:lang="pt">desenho Corel Drawdesenho Corel Draw</comment>
- <comment xml:lang="pt_BR">Desenho do Corel Draw</comment>
- <comment xml:lang="ro">Desen Corel Draw</comment>
- <comment xml:lang="ru">Рисунок Corel Draw</comment>
- <comment xml:lang="sk">Kresba Corel Draw</comment>
- <comment xml:lang="sl">Datoteka risbe Corel Draw</comment>
- <comment xml:lang="sq">Vizatim Corel Draw</comment>
- <comment xml:lang="sr">Корелов цртеж</comment>
- <comment xml:lang="sv">Corel Draw-teckning</comment>
- <comment xml:lang="tr">Corel Draw çizimi</comment>
- <comment xml:lang="uk">малюнок Corel Draw</comment>
- <comment xml:lang="vi">Bản vẽ Corel Draw</comment>
- <comment xml:lang="zh_CN">Corel Draw 绘图</comment>
<comment xml:lang="zh_TW">Corel Draw 繪圖</comment>
+ <comment xml:lang="zh_CN">Corel Draw 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ Corel Draw</comment>
+ <comment xml:lang="uk">малюнок Corel Draw</comment>
+ <comment xml:lang="tr">Corel Draw çizimi</comment>
+ <comment xml:lang="sv">Corel Draw-teckning</comment>
+ <comment xml:lang="sr">Корелов цртеж</comment>
+ <comment xml:lang="sq">vizatim Corel Draw</comment>
+ <comment xml:lang="sl">Datoteka risbe Corel Draw</comment>
+ <comment xml:lang="si">Corel Draw ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba Corel Draw</comment>
+ <comment xml:lang="ru">Рисунок Corel Draw</comment>
+ <comment xml:lang="ro">Desen Corel Draw</comment>
+ <comment xml:lang="pt_BR">Desenho do Corel Draw</comment>
+ <comment xml:lang="pt">desenho Corel Drawdesenho Corel Draw</comment>
+ <comment xml:lang="pl">Rysunek Corel Draw</comment>
+ <comment xml:lang="oc">dessenh Corel Draw</comment>
+ <comment xml:lang="nn">Corel Draw-teikning</comment>
+ <comment xml:lang="nl">Corel Draw-tekening</comment>
+ <comment xml:lang="nb">Corel Draw-tegning</comment>
+ <comment xml:lang="ms">Lukisan Corel Draw</comment>
+ <comment xml:lang="lv">Corel Draw zīmējums</comment>
+ <comment xml:lang="lt">Corel Draw piešinys</comment>
+ <comment xml:lang="ko">Corel Draw 드로잉</comment>
+ <comment xml:lang="kk">Corel Draw суреті</comment>
+ <comment xml:lang="ka">Corel Draw-ის ნახაზი</comment>
+ <comment xml:lang="ja">Corel Draw ドロー</comment>
+ <comment xml:lang="it">Disegno Corel Draw</comment>
+ <comment xml:lang="is">Corel Draw teikning</comment>
+ <comment xml:lang="id">Gambar Corel Draw</comment>
+ <comment xml:lang="ia">Designo Corel Draw</comment>
+ <comment xml:lang="hu">Corel Draw-rajz</comment>
+ <comment xml:lang="hr">Corel Draw crtež</comment>
+ <comment xml:lang="he">ציור Corel Draw</comment>
+ <comment xml:lang="gl">debuxo de Corel Draw</comment>
+ <comment xml:lang="ga">líníocht Corel Draw</comment>
+ <comment xml:lang="fur">dissen Corel Draw</comment>
+ <comment xml:lang="fr">dessin Corel Draw</comment>
+ <comment xml:lang="fo">Corel Draw tekning</comment>
+ <comment xml:lang="fi">Corel Draw -piirros</comment>
+ <comment xml:lang="eu">Corel Draw-eko marrazkia</comment>
+ <comment xml:lang="es">dibujo de Corel Draw</comment>
+ <comment xml:lang="eo">grafikaĵo de Corel Draw</comment>
+ <comment xml:lang="en_GB">Corel Draw drawing</comment>
+ <comment xml:lang="el">Σχέδιο Corel Draw </comment>
+ <comment xml:lang="de">Corel-Draw-Zeichnung</comment>
+ <comment xml:lang="da">Corel Draw-tegning</comment>
+ <comment xml:lang="cy">Darlun Corel Draw</comment>
+ <comment xml:lang="cs">kresba Corel Draw</comment>
+ <comment xml:lang="ca">dibuix de Corel Draw</comment>
+ <comment xml:lang="bg">Чертеж — Corel Draw</comment>
+ <comment xml:lang="be@latin">Rysunak Corel Draw</comment>
+ <comment xml:lang="be">рысунак Corel Draw</comment>
+ <comment xml:lang="az">Corel Draw çəkimi</comment>
+ <comment xml:lang="ast">Dibuxu de Corel Draw</comment>
+ <comment xml:lang="ar">تصميم Corel Draw</comment>
+ <comment xml:lang="af">Corel Draw-tekening</comment>
<generic-icon name="image-x-generic"/>
<magic priority="80">
- <match value="CDRXvrsn" type="string" offset="8" mask="0xffffff00ffffffff"/>
+ <match type="string" value="CDRXvrsn" mask="0xffffff00ffffffff" offset="8"/>
</magic>
<glob pattern="*.cdr"/>
<alias type="application/cdr"/>
@@ -2681,54 +3050,60 @@
</mime-type>
<mime-type type="application/vnd.hp-hpgl">
<comment>HPGL file</comment>
- <comment xml:lang="ar">ملف HPGL</comment>
- <comment xml:lang="ast">Ficheru HPGL</comment>
- <comment xml:lang="be@latin">Fajł HPGL</comment>
- <comment xml:lang="bg">Файл — HPGL</comment>
- <comment xml:lang="ca">fitxer HPGL</comment>
- <comment xml:lang="cs">soubor HPGL</comment>
- <comment xml:lang="da">HPGL-fil</comment>
- <comment xml:lang="de">HPGL-Datei</comment>
- <comment xml:lang="el">Αρχείο HPGL</comment>
- <comment xml:lang="en_GB">HPGL file</comment>
- <comment xml:lang="eo">HPGL-dosiero</comment>
- <comment xml:lang="es">archivo HPGL</comment>
- <comment xml:lang="eu">HPGL fitxategia</comment>
- <comment xml:lang="fi">HPGL-tiedosto</comment>
- <comment xml:lang="fo">HPGL fíla</comment>
- <comment xml:lang="fr">fichier HPGL</comment>
- <comment xml:lang="ga">comhad HPGL</comment>
- <comment xml:lang="gl">ficheiro HPGL</comment>
- <comment xml:lang="he">קובץ HGPL</comment>
- <comment xml:lang="hr">HPGL datoteka</comment>
- <comment xml:lang="hu">HPGL fájl</comment>
- <comment xml:lang="ia">File HPGL</comment>
- <comment xml:lang="id">Berkas HPGL</comment>
- <comment xml:lang="it">File HPGL</comment>
- <comment xml:lang="ja">HPGL ファイル</comment>
- <comment xml:lang="kk">HPGL файлы</comment>
- <comment xml:lang="ko">HPGL 파일</comment>
- <comment xml:lang="lt">HPGL failas</comment>
- <comment xml:lang="lv">HPGL datne</comment>
- <comment xml:lang="nb">HPGL-fil</comment>
- <comment xml:lang="nl">HPGL-bestand</comment>
- <comment xml:lang="nn">HPGL-fil</comment>
- <comment xml:lang="oc">fichièr HPGL</comment>
- <comment xml:lang="pl">Plik HPGL</comment>
- <comment xml:lang="pt">ficheiro HPGL</comment>
- <comment xml:lang="pt_BR">Arquivo HPGL</comment>
- <comment xml:lang="ro">Fișier HPGL</comment>
- <comment xml:lang="ru">Файл HPGL</comment>
- <comment xml:lang="sk">Súbor HPGL</comment>
- <comment xml:lang="sl">Datoteka HPGL</comment>
- <comment xml:lang="sq">File HPGL</comment>
- <comment xml:lang="sr">ХПГЛ датотека</comment>
- <comment xml:lang="sv">HPGL-fil</comment>
- <comment xml:lang="tr">HPGL dosyası</comment>
- <comment xml:lang="uk">файл HPGL</comment>
- <comment xml:lang="vi">Tập tin HPGL</comment>
- <comment xml:lang="zh_CN">HPGL 文件</comment>
<comment xml:lang="zh_TW">HPGL 檔案</comment>
+ <comment xml:lang="zh_CN">HPGL 文件</comment>
+ <comment xml:lang="vi">Tập tin HPGL</comment>
+ <comment xml:lang="uk">файл HPGL</comment>
+ <comment xml:lang="tr">HPGL dosyası</comment>
+ <comment xml:lang="sv">HPGL-fil</comment>
+ <comment xml:lang="sr">ХПГЛ датотека</comment>
+ <comment xml:lang="sq">kartelë HPGL</comment>
+ <comment xml:lang="sl">Datoteka HPGL</comment>
+ <comment xml:lang="si">HPGL ගොනුව</comment>
+ <comment xml:lang="sk">Súbor HPGL</comment>
+ <comment xml:lang="ru">Файл HPGL</comment>
+ <comment xml:lang="ro">Fișier HPGL</comment>
+ <comment xml:lang="pt_BR">Arquivo HPGL</comment>
+ <comment xml:lang="pt">ficheiro HPGL</comment>
+ <comment xml:lang="pl">Plik HPGL</comment>
+ <comment xml:lang="oc">fichièr HPGL</comment>
+ <comment xml:lang="nn">HPGL-fil</comment>
+ <comment xml:lang="nl">HPGL-bestand</comment>
+ <comment xml:lang="nb">HPGL-fil</comment>
+ <comment xml:lang="lv">HPGL datne</comment>
+ <comment xml:lang="lt">HPGL failas</comment>
+ <comment xml:lang="ko">HPGL 파일</comment>
+ <comment xml:lang="kk">HPGL файлы</comment>
+ <comment xml:lang="ka">HPGL ფაილი</comment>
+ <comment xml:lang="ja">HPGL ファイル</comment>
+ <comment xml:lang="it">File HPGL</comment>
+ <comment xml:lang="is">HPGL skrá</comment>
+ <comment xml:lang="id">Berkas HPGL</comment>
+ <comment xml:lang="ia">File HPGL</comment>
+ <comment xml:lang="hu">HPGL fájl</comment>
+ <comment xml:lang="hr">HPGL datoteka</comment>
+ <comment xml:lang="he">קובץ HGPL</comment>
+ <comment xml:lang="gl">ficheiro HPGL</comment>
+ <comment xml:lang="ga">comhad HPGL</comment>
+ <comment xml:lang="fur">file HPGL</comment>
+ <comment xml:lang="fr">fichier HPGL</comment>
+ <comment xml:lang="fo">HPGL fíla</comment>
+ <comment xml:lang="fi">HPGL-tiedosto</comment>
+ <comment xml:lang="eu">HPGL fitxategia</comment>
+ <comment xml:lang="es">archivo HPGL</comment>
+ <comment xml:lang="eo">HPGL-dosiero</comment>
+ <comment xml:lang="en_GB">HPGL file</comment>
+ <comment xml:lang="el">Αρχείο HPGL</comment>
+ <comment xml:lang="de">HPGL-Datei</comment>
+ <comment xml:lang="da">HPGL-fil</comment>
+ <comment xml:lang="cs">soubor HPGL</comment>
+ <comment xml:lang="ca">fitxer HPGL</comment>
+ <comment xml:lang="bg">Файл — HPGL</comment>
+ <comment xml:lang="be@latin">Fajł HPGL</comment>
+ <comment xml:lang="be">файл HPGL</comment>
+ <comment xml:lang="ast">Ficheru HPGL</comment>
+ <comment xml:lang="ar">ملف HPGL</comment>
+ <comment xml:lang="af">HPGL-lêer</comment>
<acronym>HPGL</acronym>
<expanded-acronym>HP Graphics Language</expanded-acronym>
<generic-icon name="image-x-generic"/>
@@ -2736,115 +3111,141 @@
</mime-type>
<mime-type type="application/vnd.hp-pcl">
<comment>PCL file</comment>
- <comment xml:lang="ar">ملف PCL</comment>
- <comment xml:lang="ast">FIcheru PCL</comment>
- <comment xml:lang="be@latin">Fajł PCL</comment>
- <comment xml:lang="bg">Файл — PCL</comment>
- <comment xml:lang="ca">fitxer PCL</comment>
- <comment xml:lang="cs">soubor PCL</comment>
- <comment xml:lang="da">PCL-fil</comment>
- <comment xml:lang="de">PCL-Datei</comment>
- <comment xml:lang="el">Αρχείο PCL</comment>
- <comment xml:lang="en_GB">PCL file</comment>
- <comment xml:lang="eo">PCL-dosiero</comment>
- <comment xml:lang="es">archivo PCL</comment>
- <comment xml:lang="eu">PCL fitxategia</comment>
- <comment xml:lang="fi">PCL-tiedosto</comment>
- <comment xml:lang="fo">PCL fíla</comment>
- <comment xml:lang="fr">fichier PCL</comment>
- <comment xml:lang="ga">comhad PCL</comment>
- <comment xml:lang="gl">ficheiro PCL</comment>
- <comment xml:lang="he">קובץ PCL</comment>
- <comment xml:lang="hr">PCL datoteka</comment>
- <comment xml:lang="hu">PCL fájl</comment>
- <comment xml:lang="ia">File PCL</comment>
- <comment xml:lang="id">Berkas PCL</comment>
- <comment xml:lang="it">File PCL</comment>
- <comment xml:lang="ja">PCL ファイル</comment>
- <comment xml:lang="kk">PCL файлы</comment>
- <comment xml:lang="ko">PCL 파일</comment>
- <comment xml:lang="lt">PCL failas</comment>
- <comment xml:lang="lv">PCL datne</comment>
- <comment xml:lang="nb">PCL-fil</comment>
- <comment xml:lang="nl">PCL-bestand</comment>
- <comment xml:lang="nn">PCL-fil</comment>
- <comment xml:lang="oc">fichièr PCL</comment>
- <comment xml:lang="pl">Plik PCL</comment>
- <comment xml:lang="pt">ficheiro PCL</comment>
- <comment xml:lang="pt_BR">Arquivo PCL</comment>
- <comment xml:lang="ro">Fișier PCL</comment>
- <comment xml:lang="ru">Файл PCL</comment>
- <comment xml:lang="sk">Súbor PCL</comment>
- <comment xml:lang="sl">Datoteka PCL</comment>
- <comment xml:lang="sq">File PCL</comment>
- <comment xml:lang="sr">ПЦЛ датотека</comment>
- <comment xml:lang="sv">PCL-fil</comment>
- <comment xml:lang="tr">PCL dosyası</comment>
- <comment xml:lang="uk">файл PCL</comment>
- <comment xml:lang="vi">Tập tin PCL</comment>
- <comment xml:lang="zh_CN">PCL 文件</comment>
<comment xml:lang="zh_TW">PCL 檔</comment>
+ <comment xml:lang="zh_CN">PCL 文件</comment>
+ <comment xml:lang="vi">Tập tin PCL</comment>
+ <comment xml:lang="uk">файл PCL</comment>
+ <comment xml:lang="tr">PCL dosyası</comment>
+ <comment xml:lang="sv">PCL-fil</comment>
+ <comment xml:lang="sr">ПЦЛ датотека</comment>
+ <comment xml:lang="sq">kartelë PCL</comment>
+ <comment xml:lang="sl">Datoteka PCL</comment>
+ <comment xml:lang="si">PCL ගොනුව</comment>
+ <comment xml:lang="sk">Súbor PCL</comment>
+ <comment xml:lang="ru">Файл PCL</comment>
+ <comment xml:lang="ro">Fișier PCL</comment>
+ <comment xml:lang="pt_BR">Arquivo PCL</comment>
+ <comment xml:lang="pt">ficheiro PCL</comment>
+ <comment xml:lang="pl">Plik PCL</comment>
+ <comment xml:lang="oc">fichièr PCL</comment>
+ <comment xml:lang="nn">PCL-fil</comment>
+ <comment xml:lang="nl">PCL-bestand</comment>
+ <comment xml:lang="nb">PCL-fil</comment>
+ <comment xml:lang="lv">PCL datne</comment>
+ <comment xml:lang="lt">PCL failas</comment>
+ <comment xml:lang="ko">PCL 파일</comment>
+ <comment xml:lang="kk">PCL файлы</comment>
+ <comment xml:lang="ka">PCL ფაილი</comment>
+ <comment xml:lang="ja">PCL ファイル</comment>
+ <comment xml:lang="it">File PCL</comment>
+ <comment xml:lang="is">PCL skrá</comment>
+ <comment xml:lang="id">Berkas PCL</comment>
+ <comment xml:lang="ia">File PCL</comment>
+ <comment xml:lang="hu">PCL fájl</comment>
+ <comment xml:lang="hr">PCL datoteka</comment>
+ <comment xml:lang="he">קובץ PCL</comment>
+ <comment xml:lang="gl">ficheiro PCL</comment>
+ <comment xml:lang="ga">comhad PCL</comment>
+ <comment xml:lang="fur">file PCL</comment>
+ <comment xml:lang="fr">fichier PCL</comment>
+ <comment xml:lang="fo">PCL fíla</comment>
+ <comment xml:lang="fi">PCL-tiedosto</comment>
+ <comment xml:lang="eu">PCL fitxategia</comment>
+ <comment xml:lang="es">archivo PCL</comment>
+ <comment xml:lang="eo">PCL-dosiero</comment>
+ <comment xml:lang="en_GB">PCL file</comment>
+ <comment xml:lang="el">Αρχείο PCL</comment>
+ <comment xml:lang="de">PCL-Datei</comment>
+ <comment xml:lang="da">PCL-fil</comment>
+ <comment xml:lang="cs">soubor PCL</comment>
+ <comment xml:lang="ca">fitxer PCL</comment>
+ <comment xml:lang="bg">Файл — PCL</comment>
+ <comment xml:lang="be@latin">Fajł PCL</comment>
+ <comment xml:lang="be">файл PCL</comment>
+ <comment xml:lang="ast">FIcheru PCL</comment>
+ <comment xml:lang="ar">ملف PCL</comment>
+ <comment xml:lang="af">PCL-lêer</comment>
<acronym>PCL</acronym>
<expanded-acronym>HP Printer Control Language</expanded-acronym>
<generic-icon name="image-x-generic"/>
<glob pattern="*.pcl"/>
</mime-type>
+ <mime-type type="application/vnd.cups-ppd">
+ <comment>PostScript printer description</comment>
+ <comment xml:lang="uk">опис принтера PostScript</comment>
+ <comment xml:lang="sv">Postscript-skrivarbeskrivning</comment>
+ <comment xml:lang="ru">Описание принтера PostScript</comment>
+ <comment xml:lang="pt_BR">Descrição de impressora PostScript</comment>
+ <comment xml:lang="pl">Opis drukarki PostScript</comment>
+ <comment xml:lang="es">descripción de impresora PostScript</comment>
+ <comment xml:lang="de">PostScript-Druckerbeschreibung</comment>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="*PPD-Adobe:" offset="0"/>
+ </magic>
+ <glob pattern="*.ppd"/>
+ </mime-type>
<mime-type type="application/vnd.lotus-1-2-3">
<comment>Lotus 1-2-3 spreadsheet</comment>
- <comment xml:lang="ar">جدول Lotus 1-2-3</comment>
- <comment xml:lang="ast">Fueya de cálculu de Lotus 1-2-3</comment>
- <comment xml:lang="az">Lotus 1-2-3 hesab cədvəli</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš Lotus 1-2-3</comment>
- <comment xml:lang="bg">Таблица — Lotus 1-2-3</comment>
- <comment xml:lang="ca">full de càlcul de Lotus 1-2-3</comment>
- <comment xml:lang="cs">sešit Lotus 1-2-3</comment>
- <comment xml:lang="cy">Taenlen Lotus 1-2-3</comment>
- <comment xml:lang="da">Lotus 1-2-3-regneark</comment>
- <comment xml:lang="de">Lotus-1-2-3-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Lotus 1-2-3</comment>
- <comment xml:lang="en_GB">Lotus 1-2-3 spreadsheet</comment>
- <comment xml:lang="eo">Kalkultabelo de Lotus 1-2-3</comment>
- <comment xml:lang="es">hoja de cálculo de Lotus 1-2-3</comment>
- <comment xml:lang="eu">Lotus 1-2-3 kalkulu-orria</comment>
- <comment xml:lang="fi">Lotus 1-2-3 -taulukko</comment>
- <comment xml:lang="fo">Lotus 1-2-3 rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Lotus 1-2-3</comment>
- <comment xml:lang="ga">scarbhileog Lotus 1-2-3</comment>
- <comment xml:lang="gl">folla de cálculo de Lotus 1-2-3</comment>
- <comment xml:lang="he">גיליון נתונים של Lotus 1-2-3</comment>
- <comment xml:lang="hr">Lotus 1-2-3 proračunska tablica</comment>
- <comment xml:lang="hu">Lotus 1-2-3-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo Lotus 1-2-3</comment>
- <comment xml:lang="id">Lembar sebar Lotus 1-2-3</comment>
- <comment xml:lang="it">Foglio di calcolo Lotus 1-2-3</comment>
- <comment xml:lang="ja">Lotus 1-2-3 スプレッドシート</comment>
- <comment xml:lang="kk">Lotus 1-2-3 электрондық кестесі</comment>
- <comment xml:lang="ko">Lotus 1-2-3 스프레드시트</comment>
- <comment xml:lang="lt">Lotus 1-2-3 skaičialentė</comment>
- <comment xml:lang="lv">Lotus 1-2-3 izklājlapa</comment>
- <comment xml:lang="ms">Hamparan Lotus 1-2-3</comment>
- <comment xml:lang="nb">Lotus 1-2-3 regneark</comment>
- <comment xml:lang="nl">Lotus 1-2-3-rekenblad</comment>
- <comment xml:lang="nn">Lotus 1-2-3 rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul Lotus 1-2-3</comment>
- <comment xml:lang="pl">Arkusz Lotus 1-2-3</comment>
- <comment xml:lang="pt">folha de cálculo Lotus 1-2-3</comment>
- <comment xml:lang="pt_BR">Planilha do Lotus 1-2-3</comment>
- <comment xml:lang="ro">Foaie de calcul Lotus 1-2-3</comment>
- <comment xml:lang="ru">Электронная таблица Lotus 1-2-3</comment>
- <comment xml:lang="sk">Zošit Lotus 1-2-3</comment>
- <comment xml:lang="sl">Preglednica Lotus 1-2-3</comment>
- <comment xml:lang="sq">Fletë llogaritjesh Lotus 1-2-3</comment>
- <comment xml:lang="sr">Лотусова 1-2-3 табела</comment>
- <comment xml:lang="sv">Lotus 1-2-3-kalkylblad</comment>
- <comment xml:lang="tr">Lotus 1-2-3 hesap tablosu</comment>
- <comment xml:lang="uk">ел. таблиця Lotus 1-2-3</comment>
- <comment xml:lang="vi">Bảng tính Lotus 1-2-3</comment>
- <comment xml:lang="zh_CN">Lotus 1-2-3 电子表格</comment>
<comment xml:lang="zh_TW">Lotus 1-2-3 試算表</comment>
+ <comment xml:lang="zh_CN">Lotus 1-2-3 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Lotus 1-2-3</comment>
+ <comment xml:lang="uk">електронна таблиця Lotus 1-2-3</comment>
+ <comment xml:lang="tr">Lotus 1-2-3 hesap çizelgesi</comment>
+ <comment xml:lang="sv">Lotus 1-2-3-kalkylblad</comment>
+ <comment xml:lang="sr">Лотусова 1-2-3 табела</comment>
+ <comment xml:lang="sq">fletëllogaritje Lotus 1-2-3</comment>
+ <comment xml:lang="sl">Preglednica Lotus 1-2-3</comment>
+ <comment xml:lang="si">නෙළුම් 1-2-3 පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Lotus 1-2-3</comment>
+ <comment xml:lang="ru">Электронная таблица Lotus 1-2-3</comment>
+ <comment xml:lang="ro">Foaie de calcul Lotus 1-2-3</comment>
+ <comment xml:lang="pt_BR">Planilha do Lotus 1-2-3</comment>
+ <comment xml:lang="pt">folha de cálculo Lotus 1-2-3</comment>
+ <comment xml:lang="pl">Arkusz Lotus 1-2-3</comment>
+ <comment xml:lang="oc">fuèlh de calcul Lotus 1-2-3</comment>
+ <comment xml:lang="nn">Lotus 1-2-3 rekneark</comment>
+ <comment xml:lang="nl">Lotus 1-2-3-rekenblad</comment>
+ <comment xml:lang="nb">Lotus 1-2-3 regneark</comment>
+ <comment xml:lang="ms">Hamparan Lotus 1-2-3</comment>
+ <comment xml:lang="lv">Lotus 1-2-3 izklājlapa</comment>
+ <comment xml:lang="lt">Lotus 1-2-3 skaičialentė</comment>
+ <comment xml:lang="ko">Lotus 1-2-3 스프레드시트</comment>
+ <comment xml:lang="kk">Lotus 1-2-3 электрондық кестесі</comment>
+ <comment xml:lang="ja">Lotus 1-2-3 スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Lotus 1-2-3</comment>
+ <comment xml:lang="is">Lotus 1-2-3 töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Lotus 1-2-3</comment>
+ <comment xml:lang="ia">Folio de calculo Lotus 1-2-3</comment>
+ <comment xml:lang="hu">Lotus 1-2-3-munkafüzet</comment>
+ <comment xml:lang="hr">Lotus 1-2-3 proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Lotus 1-2-3</comment>
+ <comment xml:lang="gl">folla de cálculo de Lotus 1-2-3</comment>
+ <comment xml:lang="ga">scarbhileog Lotus 1-2-3</comment>
+ <comment xml:lang="fur">sfuei di calcul Lotus 1-2-3</comment>
+ <comment xml:lang="fr">feuille de calcul Lotus 1-2-3</comment>
+ <comment xml:lang="fo">Lotus 1-2-3 rokniark</comment>
+ <comment xml:lang="fi">Lotus 1-2-3 -taulukko</comment>
+ <comment xml:lang="eu">Lotus 1-2-3 kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Lotus 1-2-3</comment>
+ <comment xml:lang="eo">Kalkultabelo de Lotus 1-2-3</comment>
+ <comment xml:lang="en_GB">Lotus 1-2-3 spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Lotus 1-2-3</comment>
+ <comment xml:lang="de">Lotus-1-2-3-Tabelle</comment>
+ <comment xml:lang="da">Lotus 1-2-3-regneark</comment>
+ <comment xml:lang="cy">Taenlen Lotus 1-2-3</comment>
+ <comment xml:lang="cs">sešit Lotus 1-2-3</comment>
+ <comment xml:lang="ca">full de càlcul de Lotus 1-2-3</comment>
+ <comment xml:lang="bg">Таблица — Lotus 1-2-3</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš Lotus 1-2-3</comment>
+ <comment xml:lang="be">электронная табліца Lotus 1-2-3</comment>
+ <comment xml:lang="az">Lotus 1-2-3 hesab cədvəli</comment>
+ <comment xml:lang="ast">Fueya de cálculu de Lotus 1-2-3</comment>
+ <comment xml:lang="ar">جدول Lotus 1-2-3</comment>
+ <comment xml:lang="af">Lotus 1-2-3 sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="\x00\x00\x02\x00\x06\x04\x06\x00\x08\x00\x00\x00\x00\x00" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\x00\x00\x02\x00\x06\x04\x06\x00\x08\x00\x00\x00\x00\x00" offset="0"/>
</magic>
<glob pattern="*.123"/>
<glob pattern="*.wk1"/>
@@ -2858,107 +3259,134 @@
<alias type="zz-application/zz-winassoc-123"/>
</mime-type>
<mime-type type="application/vnd.lotus-wordpro">
- <comment>Lotus Word Pro</comment>
- <comment xml:lang="ast">Lotus Word Pro</comment>
- <comment xml:lang="ca">Lotus Word Pro</comment>
- <comment xml:lang="cs">Lotus Word Pro</comment>
- <comment xml:lang="da">Lotus Word Pro</comment>
- <comment xml:lang="de">Lotus Word Pro</comment>
- <comment xml:lang="el">Lotus Word Pro</comment>
- <comment xml:lang="en_GB">Lotus Word Pro</comment>
- <comment xml:lang="es">Lotus Word Pro</comment>
- <comment xml:lang="eu">Lotus Word Pro</comment>
- <comment xml:lang="fi">Lotus Word Pro</comment>
- <comment xml:lang="fr">Lotus Word Pro</comment>
- <comment xml:lang="ga">Lotus Word Pro</comment>
- <comment xml:lang="gl">Lotus Word Pro</comment>
- <comment xml:lang="he">Lotus Word Pro</comment>
- <comment xml:lang="hr">Lotus Word Pro</comment>
- <comment xml:lang="hu">Lotus Word Pro</comment>
- <comment xml:lang="ia">Lotus Word Pro</comment>
- <comment xml:lang="id">Lotus Word Pro</comment>
- <comment xml:lang="it">Lotus Word Pro</comment>
- <comment xml:lang="ja">Lotus Word Pro</comment>
- <comment xml:lang="kk">Lotus Word Pro</comment>
- <comment xml:lang="ko">Lotus Word Pro</comment>
- <comment xml:lang="lv">Lotus Word Pro</comment>
- <comment xml:lang="oc">Lotus Word Pro</comment>
- <comment xml:lang="pl">Lotus Word Pro</comment>
- <comment xml:lang="pt">Lotus Word Pro</comment>
- <comment xml:lang="pt_BR">Lotus Word Pro</comment>
- <comment xml:lang="ru">Lotus Word Pro</comment>
- <comment xml:lang="sk">Lotus Word Pro</comment>
- <comment xml:lang="sl">Lotus Word Pro</comment>
- <comment xml:lang="sr">Лотусов Писац Про</comment>
- <comment xml:lang="sv">Lotus Word Pro</comment>
- <comment xml:lang="tr">Lotus Word Pro</comment>
- <comment xml:lang="uk">Lotus Word Pro</comment>
- <comment xml:lang="zh_CN">Lotus Word Pro</comment>
- <comment xml:lang="zh_TW">Lotus Word Pro</comment>
+ <comment>Lotus Word Pro document</comment>
+ <comment xml:lang="zh_TW">Lotus Word Pro 文件</comment>
+ <comment xml:lang="zh_CN">Lotus Word Pro 文档</comment>
+ <comment xml:lang="uk">документ Lotus Word Pro</comment>
+ <comment xml:lang="tr">Lotus Word Pro belgesi</comment>
+ <comment xml:lang="sv">Lotus Word Pro-dokument</comment>
+ <comment xml:lang="sq">dokument Lotus Word Pro</comment>
+ <comment xml:lang="sl">Dokument Lotus Word Pro</comment>
+ <comment xml:lang="si">Lotus Word Pro ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Lotus Word Pro</comment>
+ <comment xml:lang="ru">Документ Lotus Word Pro</comment>
+ <comment xml:lang="pt_BR">Documento do Lotus Word Pro</comment>
+ <comment xml:lang="pt">documento Lotus Word Pro</comment>
+ <comment xml:lang="pl">Dokument Lotus Word Pro</comment>
+ <comment xml:lang="oc">document Lotus Word Pro</comment>
+ <comment xml:lang="nl">Lotus Word Pro-document</comment>
+ <comment xml:lang="ko">Lotus 워드 프로 문서</comment>
+ <comment xml:lang="kk">Lotus Word Pro құжаты</comment>
+ <comment xml:lang="ja">Lotus Word Pro ドキュメント</comment>
+ <comment xml:lang="it">Documento Lotus Word Pro</comment>
+ <comment xml:lang="is">Lotus Word Pro skjal</comment>
+ <comment xml:lang="id">Dokumen Lotus Word Pro</comment>
+ <comment xml:lang="hu">Lotus Word Pro dokumentum</comment>
+ <comment xml:lang="hr">Lotus Word Pro dokument</comment>
+ <comment xml:lang="he">מסמך Lotus Word Pro</comment>
+ <comment xml:lang="gl">Documento de Lotus Word Pro</comment>
+ <comment xml:lang="fr">document Lotus Word Pro</comment>
+ <comment xml:lang="fi">Lotus Word Pro -asiakirja</comment>
+ <comment xml:lang="eu">Lotus Word Pro dokumentua</comment>
+ <comment xml:lang="es">documento de Lotus Word Pro</comment>
+ <comment xml:lang="en_GB">Lotus Word Pro document</comment>
+ <comment xml:lang="de">Lotus-Word-Pro-Dokument</comment>
+ <comment xml:lang="da">Lotus Word Pro-dokument</comment>
+ <comment xml:lang="ca">document de Lotus Word Pro</comment>
+ <comment xml:lang="bg">Документ — Lotus Word Pro</comment>
+ <comment xml:lang="be">дакумент Lotus Word Pro</comment>
+ <comment xml:lang="ar">مستند لوتس ورد برو</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="WordPro" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="WordPro" offset="0"/>
</magic>
<glob pattern="*.lwp"/>
</mime-type>
+ <mime-type type="application/x-lmdb">
+ <comment>LMDB database</comment>
+ <comment xml:lang="uk">база даних LMDB</comment>
+ <comment xml:lang="sv">LMDB-databas</comment>
+ <comment xml:lang="sq">bazë të dhënash LMDB</comment>
+ <comment xml:lang="ru">База данных LMDB</comment>
+ <comment xml:lang="pt_BR">Banco de dados LMDB</comment>
+ <comment xml:lang="pl">Baza danych LMDB</comment>
+ <comment xml:lang="it">Database LMDB</comment>
+ <comment xml:lang="gl">Base de datos LMDB</comment>
+ <comment xml:lang="eu">LMDB datu-basea</comment>
+ <comment xml:lang="es">base de datos LMDB</comment>
+ <comment xml:lang="de">LMDB-Datenbank</comment>
+ <comment xml:lang="be">база даных LMDB</comment>
+ <acronym>LMDB</acronym>
+ <expanded-acronym>Lightning Memory-Mapped Database</expanded-acronym>
+ <generic-icon name="x-office-document"/>
+ <magic>
+ <match offset="16" type="little32" value="0xBEEFC0DE"/>
+ </magic>
+ <glob pattern="*.mdb"/>
+ <glob pattern="*.lmdb"/>
+ </mime-type>
<mime-type type="application/vnd.ms-access">
<comment>JET database</comment>
- <comment xml:lang="ar">قاعدة بيانات JET</comment>
- <comment xml:lang="ast">Base de datos JETº</comment>
- <comment xml:lang="be@latin">Baza źviestak JET</comment>
- <comment xml:lang="bg">База от данни — JET</comment>
- <comment xml:lang="ca">base de dades JET</comment>
- <comment xml:lang="cs">databáze JET</comment>
- <comment xml:lang="da">JET-database</comment>
- <comment xml:lang="de">JET-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων JET</comment>
- <comment xml:lang="en_GB">JET database</comment>
- <comment xml:lang="eo">JET-datumbazo</comment>
- <comment xml:lang="es">base de datos JET</comment>
- <comment xml:lang="eu">JET datu-basea</comment>
- <comment xml:lang="fi">JET-tietokanta</comment>
- <comment xml:lang="fo">JET dátustovnur</comment>
- <comment xml:lang="fr">base de données JET</comment>
- <comment xml:lang="ga">bunachar sonraí JET</comment>
- <comment xml:lang="gl">base de datos JET</comment>
- <comment xml:lang="he">מסד נתונים מסוג JET</comment>
- <comment xml:lang="hr">JET baza podataka</comment>
- <comment xml:lang="hu">JET adatbázis</comment>
- <comment xml:lang="ia">Base de datos JET</comment>
- <comment xml:lang="id">Basis data JET</comment>
- <comment xml:lang="it">Database JET</comment>
- <comment xml:lang="ja">JET データベース</comment>
- <comment xml:lang="kk">JET дерекқоры</comment>
- <comment xml:lang="ko">JET 데이터베이스</comment>
- <comment xml:lang="lt">JET duomenų bazė</comment>
- <comment xml:lang="lv">JET datubāze</comment>
- <comment xml:lang="nb">JET-database</comment>
- <comment xml:lang="nl">JET-gegevensbank</comment>
- <comment xml:lang="nn">JET-database</comment>
- <comment xml:lang="oc">banca de donadas JET</comment>
- <comment xml:lang="pl">Baza Danych JET</comment>
- <comment xml:lang="pt">base de dados JET</comment>
- <comment xml:lang="pt_BR">Banco de dados JET</comment>
- <comment xml:lang="ro">Bază de date JET</comment>
- <comment xml:lang="ru">База данных JET</comment>
- <comment xml:lang="sk">Databáza JET</comment>
- <comment xml:lang="sl">Podatkovna zbirka JET</comment>
- <comment xml:lang="sq">Bazë me të dhëna JET</comment>
- <comment xml:lang="sr">ЈЕТ база података</comment>
- <comment xml:lang="sv">JET-databas</comment>
- <comment xml:lang="tr">JET veritabanı</comment>
- <comment xml:lang="uk">База даних JET</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu JET</comment>
- <comment xml:lang="zh_CN">JET 数据库</comment>
<comment xml:lang="zh_TW">JET 資料庫</comment>
+ <comment xml:lang="zh_CN">JET 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu JET</comment>
+ <comment xml:lang="uk">База даних JET</comment>
+ <comment xml:lang="tr">JET veri tabanı</comment>
+ <comment xml:lang="sv">JET-databas</comment>
+ <comment xml:lang="sr">ЈЕТ база података</comment>
+ <comment xml:lang="sq">bazë të dhënash JET</comment>
+ <comment xml:lang="sl">Podatkovna zbirka JET</comment>
+ <comment xml:lang="si">JET දත්ත සමුදාය</comment>
+ <comment xml:lang="sk">Databáza JET</comment>
+ <comment xml:lang="ru">База данных JET</comment>
+ <comment xml:lang="ro">Bază de date JET</comment>
+ <comment xml:lang="pt_BR">Banco de dados JET</comment>
+ <comment xml:lang="pt">base de dados JET</comment>
+ <comment xml:lang="pl">Baza Danych JET</comment>
+ <comment xml:lang="oc">banca de donadas JET</comment>
+ <comment xml:lang="nn">JET-database</comment>
+ <comment xml:lang="nl">JET-gegevensbank</comment>
+ <comment xml:lang="nb">JET-database</comment>
+ <comment xml:lang="lv">JET datubāze</comment>
+ <comment xml:lang="lt">JET duomenų bazė</comment>
+ <comment xml:lang="ko">JET 데이터베이스</comment>
+ <comment xml:lang="kk">JET дерекқоры</comment>
+ <comment xml:lang="ja">JET データベース</comment>
+ <comment xml:lang="it">Database JET</comment>
+ <comment xml:lang="is">JET gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data JET</comment>
+ <comment xml:lang="ia">Base de datos JET</comment>
+ <comment xml:lang="hu">JET adatbázis</comment>
+ <comment xml:lang="hr">JET baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים מסוג JET</comment>
+ <comment xml:lang="gl">base de datos JET</comment>
+ <comment xml:lang="ga">bunachar sonraí JET</comment>
+ <comment xml:lang="fur">base di dâts JET</comment>
+ <comment xml:lang="fr">base de données JET</comment>
+ <comment xml:lang="fo">JET dátustovnur</comment>
+ <comment xml:lang="fi">JET-tietokanta</comment>
+ <comment xml:lang="eu">JET datu-basea</comment>
+ <comment xml:lang="es">base de datos JET</comment>
+ <comment xml:lang="eo">JET-datumbazo</comment>
+ <comment xml:lang="en_GB">JET database</comment>
+ <comment xml:lang="el">Βάση δεδομένων JET</comment>
+ <comment xml:lang="de">JET-Datenbank</comment>
+ <comment xml:lang="da">JET-database</comment>
+ <comment xml:lang="cs">databáze JET</comment>
+ <comment xml:lang="ca">base de dades JET</comment>
+ <comment xml:lang="bg">База от данни — JET</comment>
+ <comment xml:lang="be@latin">Baza źviestak JET</comment>
+ <comment xml:lang="be">база даных JET</comment>
+ <comment xml:lang="ast">Base de datos JETº</comment>
+ <comment xml:lang="ar">قاعدة بيانات JET</comment>
+ <comment xml:lang="af">JET-databasis</comment>
<acronym>JET</acronym>
<expanded-acronym>Joint Engine Technology</expanded-acronym>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="\x00\x01\x00\x00Standard Jet DB" type="string" offset="0"/>
+ <magic>
+ <match offset="0" type="string" value="\x00\x01\x00\x00Standard Jet DB"/>
</magic>
- <glob pattern="*.mdb"/>
- <alias type="application/x-msaccess"/>
+ <glob pattern="*.mdb" weight="60"/>
<alias type="application/msaccess"/>
<alias type="application/vnd.msaccess"/>
<alias type="application/x-msaccess"/>
@@ -2968,109 +3396,121 @@
</mime-type>
<mime-type type="application/vnd.ms-cab-compressed">
<comment>Microsoft Cabinet archive</comment>
- <comment xml:lang="ar">أرشيف Microsoft Cabinet</comment>
- <comment xml:lang="bg">Архив — Microsoft Cabinet</comment>
- <comment xml:lang="ca">arxiu de Microsoft Cabinet</comment>
- <comment xml:lang="cs">archiv Microsoft Cabinet</comment>
- <comment xml:lang="da">Microsoft Cabinet-arkiv</comment>
- <comment xml:lang="de">Microsoft-Cabinet-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Microsoft Cabinet</comment>
- <comment xml:lang="en_GB">Microsoft Cabinet archive</comment>
- <comment xml:lang="es">archivador Cabinet de Microsoft</comment>
- <comment xml:lang="eu">Microsoft Cabinet artxiboa</comment>
- <comment xml:lang="fi">Microsoft Cabinet -arkisto</comment>
- <comment xml:lang="fo">Microsoft Cabinet skjalasavn</comment>
- <comment xml:lang="fr">archive Cab Microsoft</comment>
- <comment xml:lang="ga">cartlann Microsoft Cabinet</comment>
- <comment xml:lang="gl">arquivo de Microsoft Cabinet</comment>
- <comment xml:lang="he">ארכיון CAB (מיקרוסופט)</comment>
- <comment xml:lang="hr">Microsoft Cabinet arhiva</comment>
- <comment xml:lang="hu">Microsoft Cabinet archívum</comment>
- <comment xml:lang="ia">Archivo Microsoft Cabinet</comment>
- <comment xml:lang="id">Arsip Microsoft Cabinet</comment>
- <comment xml:lang="it">Archivio Microsoft Cabinet</comment>
- <comment xml:lang="ja">Microsoft Cabinet アーカイブ</comment>
- <comment xml:lang="ka">Microsoft-ის Cabinet არქივი</comment>
- <comment xml:lang="kk">Microsoft Cabinet архиві</comment>
- <comment xml:lang="ko">Microsoft Cabinte 압축 파일</comment>
- <comment xml:lang="lt">Microsoft Cabinet archyvas</comment>
- <comment xml:lang="lv">Microsoft kabineta arhīvs</comment>
- <comment xml:lang="nl">Microsoft Cabinet-archief</comment>
- <comment xml:lang="oc">archiu Cab Microsoft</comment>
- <comment xml:lang="pl">Archiwum Microsoft Cabinet</comment>
- <comment xml:lang="pt">arquivo Microsoft Cabinet</comment>
- <comment xml:lang="pt_BR">Pacote Cabinet da Microsoft</comment>
- <comment xml:lang="ro">Arhivă Microsoft Cabinet</comment>
- <comment xml:lang="ru">Архив Microsoft Cabinet</comment>
- <comment xml:lang="sk">Archív Microsoft Cabinet</comment>
- <comment xml:lang="sl">Datoteka arhiva Microsoft Cabinet</comment>
- <comment xml:lang="sr">Мајкрософтова кабинет архива</comment>
- <comment xml:lang="sv">Microsoft Cabinet-arkiv</comment>
- <comment xml:lang="tr">Microsoft Cabinet arşivi</comment>
- <comment xml:lang="uk">архів Cabinet Microsoft</comment>
- <comment xml:lang="vi">Kho lưu Cabinet Microsoft</comment>
- <comment xml:lang="zh_CN">Microsoft Cabinet 归档文件</comment>
<comment xml:lang="zh_TW">微軟 Cabinet 封存檔</comment>
+ <comment xml:lang="zh_CN">Microsoft Cabinet 归档文件</comment>
+ <comment xml:lang="vi">Kho lưu Cabinet Microsoft</comment>
+ <comment xml:lang="uk">архів Cabinet Microsoft</comment>
+ <comment xml:lang="tr">Microsoft Cabinet arşivi</comment>
+ <comment xml:lang="sv">Microsoft Cabinet-arkiv</comment>
+ <comment xml:lang="sr">Мајкрософтова кабинет архива</comment>
+ <comment xml:lang="sq">arkiv Microsoft Cabinet</comment>
+ <comment xml:lang="sl">Datoteka arhiva Microsoft Cabinet</comment>
+ <comment xml:lang="si">Microsoft කැබිනට් සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Microsoft Cabinet</comment>
+ <comment xml:lang="ru">Архив Microsoft Cabinet</comment>
+ <comment xml:lang="ro">Arhivă Microsoft Cabinet</comment>
+ <comment xml:lang="pt_BR">Pacote Cabinet da Microsoft</comment>
+ <comment xml:lang="pt">arquivo Microsoft Cabinet</comment>
+ <comment xml:lang="pl">Archiwum Microsoft Cabinet</comment>
+ <comment xml:lang="oc">archiu Cab Microsoft</comment>
+ <comment xml:lang="nl">Microsoft Cabinet-archief</comment>
+ <comment xml:lang="lv">Microsoft kabineta arhīvs</comment>
+ <comment xml:lang="lt">Microsoft Cabinet archyvas</comment>
+ <comment xml:lang="ko">Microsoft Cabinet 압축 파일</comment>
+ <comment xml:lang="kk">Microsoft Cabinet архиві</comment>
+ <comment xml:lang="ka">Microsoft-ის Cabinet არქივი</comment>
+ <comment xml:lang="ja">Microsoft Cabinet アーカイブ</comment>
+ <comment xml:lang="it">Archivio Microsoft Cabinet</comment>
+ <comment xml:lang="is">Microsoft Cabinet safnskrá</comment>
+ <comment xml:lang="id">Arsip Microsoft Cabinet</comment>
+ <comment xml:lang="ia">Archivo Microsoft Cabinet</comment>
+ <comment xml:lang="hu">Microsoft Cabinet archívum</comment>
+ <comment xml:lang="hr">Microsoft Cabinet arhiva</comment>
+ <comment xml:lang="he">ארכיון CAB (מיקרוסופט)</comment>
+ <comment xml:lang="gl">arquivo de Microsoft Cabinet</comment>
+ <comment xml:lang="ga">cartlann Microsoft Cabinet</comment>
+ <comment xml:lang="fur">archivi Cabinet Microsoft</comment>
+ <comment xml:lang="fr">archive Cab Microsoft</comment>
+ <comment xml:lang="fo">Microsoft Cabinet skjalasavn</comment>
+ <comment xml:lang="fi">Microsoft Cabinet -arkisto</comment>
+ <comment xml:lang="eu">Microsoft Cabinet artxiboa</comment>
+ <comment xml:lang="es">archivador Cabinet de Microsoft</comment>
+ <comment xml:lang="en_GB">Microsoft Cabinet archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Microsoft Cabinet</comment>
+ <comment xml:lang="de">Microsoft-Cabinet-Archiv</comment>
+ <comment xml:lang="da">Microsoft Cabinet-arkiv</comment>
+ <comment xml:lang="cs">archiv Microsoft Cabinet</comment>
+ <comment xml:lang="ca">arxiu de Microsoft Cabinet</comment>
+ <comment xml:lang="bg">Архив — Microsoft Cabinet</comment>
+ <comment xml:lang="be">архіў Microsoft Cabinet</comment>
+ <comment xml:lang="ar">أرشيف Microsoft Cabinet</comment>
+ <comment xml:lang="af">Microsoft Cabinet-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="MSCF\0\0\0\0" type="string" offset="0"/>
+ <match offset="0" type="string" value="MSCF\0\0\0\0"/>
</magic>
<glob pattern="*.cab"/>
<alias type="zz-application/zz-winassoc-cab"/>
</mime-type>
<mime-type type="application/vnd.ms-excel">
<comment>Excel spreadsheet</comment>
- <comment xml:lang="ar">جدول Excel</comment>
- <comment xml:lang="be@latin">Raźlikovy akruš Excel</comment>
- <comment xml:lang="bg">Таблица — Excel</comment>
- <comment xml:lang="ca">full de càlcul d'Excel</comment>
- <comment xml:lang="cs">sešit Excel</comment>
- <comment xml:lang="da">Excelregneark</comment>
- <comment xml:lang="de">Excel-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Excel</comment>
- <comment xml:lang="en_GB">Excel spreadsheet</comment>
- <comment xml:lang="eo">Excel-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo de Excel</comment>
- <comment xml:lang="eu">Excel kalkulu-orria</comment>
- <comment xml:lang="fi">Excel-taulukko</comment>
- <comment xml:lang="fo">Excel rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Excel</comment>
- <comment xml:lang="ga">scarbhileog Excel</comment>
- <comment xml:lang="gl">folla de cálculo de Excel</comment>
- <comment xml:lang="he">גליון נתונים של Excel</comment>
- <comment xml:lang="hr">Excel proračunska tablica</comment>
- <comment xml:lang="hu">Excel táblázat</comment>
- <comment xml:lang="ia">Folio de calculo Excel</comment>
- <comment xml:lang="id">Lembar sebar Excel</comment>
- <comment xml:lang="it">Foglio di calcolo Excel</comment>
- <comment xml:lang="ja">Excel スプレッドシート</comment>
- <comment xml:lang="ka">Excel-ის ცხრილი</comment>
- <comment xml:lang="kk">Excel электрондық кестесі</comment>
- <comment xml:lang="ko">Excel 스프레드시트</comment>
- <comment xml:lang="lt">Excel skaičialentė</comment>
- <comment xml:lang="lv">Excel izklājlapa</comment>
- <comment xml:lang="nb">Excel regneark</comment>
- <comment xml:lang="nl">Excel-rekenblad</comment>
- <comment xml:lang="nn">Excel-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul Excel</comment>
- <comment xml:lang="pl">Arkusz Excel</comment>
- <comment xml:lang="pt">folha de cálculo Excel</comment>
- <comment xml:lang="pt_BR">Planilha do Excel</comment>
- <comment xml:lang="ro">Foaie de calcul Excel</comment>
- <comment xml:lang="ru">Электронная таблица Excel</comment>
- <comment xml:lang="sk">Zošit Excel</comment>
- <comment xml:lang="sl">Razpredelnica Microsoft Excel</comment>
- <comment xml:lang="sq">Fletë llogaritje Excel</comment>
- <comment xml:lang="sr">Екселова табела</comment>
- <comment xml:lang="sv">Excel-kalkylblad</comment>
- <comment xml:lang="tr">Excel çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Excel</comment>
- <comment xml:lang="vi">Bảng tính Excel</comment>
- <comment xml:lang="zh_CN">Excel 电子表格</comment>
<comment xml:lang="zh_TW">Excel 試算表</comment>
+ <comment xml:lang="zh_CN">Excel 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Excel</comment>
+ <comment xml:lang="uk">електронна таблиця Excel</comment>
+ <comment xml:lang="tr">Excel hesap çizelgesi</comment>
+ <comment xml:lang="sv">Excel-kalkylblad</comment>
+ <comment xml:lang="sr">Екселова табела</comment>
+ <comment xml:lang="sq">fletëllogaritje Excel</comment>
+ <comment xml:lang="sl">Razpredelnica Microsoft Excel</comment>
+ <comment xml:lang="si">එක්සෙල් පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Excel</comment>
+ <comment xml:lang="ru">Электронная таблица Excel</comment>
+ <comment xml:lang="ro">Foaie de calcul Excel</comment>
+ <comment xml:lang="pt_BR">Planilha do Excel</comment>
+ <comment xml:lang="pt">folha de cálculo Excel</comment>
+ <comment xml:lang="pl">Arkusz Excel</comment>
+ <comment xml:lang="oc">fuèlh de calcul Excel</comment>
+ <comment xml:lang="nn">Excel-rekneark</comment>
+ <comment xml:lang="nl">Excel-rekenblad</comment>
+ <comment xml:lang="nb">Excel regneark</comment>
+ <comment xml:lang="lv">Excel izklājlapa</comment>
+ <comment xml:lang="lt">Excel skaičialentė</comment>
+ <comment xml:lang="ko">Excel 스프레드시트</comment>
+ <comment xml:lang="kk">Excel электрондық кестесі</comment>
+ <comment xml:lang="ka">Excel-ის ცხრილი</comment>
+ <comment xml:lang="ja">Excel スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Excel</comment>
+ <comment xml:lang="is">Excel töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Excel</comment>
+ <comment xml:lang="ia">Folio de calculo Excel</comment>
+ <comment xml:lang="hu">Excel táblázat</comment>
+ <comment xml:lang="hr">Excel proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Excel</comment>
+ <comment xml:lang="gl">folla de cálculo de Excel</comment>
+ <comment xml:lang="ga">scarbhileog Excel</comment>
+ <comment xml:lang="fur">sfuei di calcul Excel</comment>
+ <comment xml:lang="fr">feuille de calcul Excel</comment>
+ <comment xml:lang="fo">Excel rokniark</comment>
+ <comment xml:lang="fi">Excel-taulukko</comment>
+ <comment xml:lang="eu">Excel kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Excel</comment>
+ <comment xml:lang="eo">Excel-kalkultabelo</comment>
+ <comment xml:lang="en_GB">Excel spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Excel</comment>
+ <comment xml:lang="de">Excel-Tabelle</comment>
+ <comment xml:lang="da">Excelregneark</comment>
+ <comment xml:lang="cs">sešit Excel</comment>
+ <comment xml:lang="ca">full de càlcul d'Excel</comment>
+ <comment xml:lang="bg">Таблица — Excel</comment>
+ <comment xml:lang="be@latin">Raźlikovy akruš Excel</comment>
+ <comment xml:lang="be">электронная табліца Excel</comment>
+ <comment xml:lang="ar">جدول اكسل</comment>
+ <comment xml:lang="af">Excel-sigblad</comment>
+ <sub-class-of type="application/x-ole-storage"/>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="Microsoft Excel 5.0 Worksheet" type="string" offset="2080"/>
+ <magic>
+ <match type="string" value="Microsoft Excel 5.0 Worksheet" offset="2080"/>
</magic>
<glob pattern="*.xls"/>
<glob pattern="*.xlc"/>
@@ -3086,232 +3526,269 @@
</mime-type>
<mime-type type="application/vnd.ms-excel.addin.macroEnabled.12">
<comment>Excel add-in</comment>
- <comment xml:lang="bg">Приставка — Excel</comment>
- <comment xml:lang="ca">complement d'Excel</comment>
- <comment xml:lang="cs">doplněk aplikace Excel</comment>
- <comment xml:lang="da">Excel-tilføjelse</comment>
- <comment xml:lang="de">Excel Add-in</comment>
- <comment xml:lang="el">Πρόσθετο Excel</comment>
- <comment xml:lang="en_GB">Excel add-in</comment>
- <comment xml:lang="es">complemento de Excel</comment>
- <comment xml:lang="eu">Excel gehigarria</comment>
- <comment xml:lang="fi">Excel-lisäosa</comment>
- <comment xml:lang="fr">complément Excel</comment>
- <comment xml:lang="ga">breiseán Excel</comment>
- <comment xml:lang="gl">complemento de Excel</comment>
- <comment xml:lang="he">תוסף של Excel</comment>
- <comment xml:lang="hr">Excel dodatak</comment>
- <comment xml:lang="hu">Excel bővítmény</comment>
- <comment xml:lang="ia">Add-in Excel</comment>
- <comment xml:lang="id">Add-in Excel</comment>
- <comment xml:lang="it">Add-in Excel</comment>
- <comment xml:lang="ja">Excel アドイン</comment>
- <comment xml:lang="ka">Excel-ის დამატება</comment>
- <comment xml:lang="kk">Excel қосымшасы</comment>
- <comment xml:lang="ko">Excel 추가 기능</comment>
- <comment xml:lang="lv">Excel pievienojumprogramma</comment>
- <comment xml:lang="nl">Excel add-in</comment>
- <comment xml:lang="oc">complement Excel</comment>
- <comment xml:lang="pl">Dodatek Excel</comment>
- <comment xml:lang="pt">Extensão Excel</comment>
- <comment xml:lang="pt_BR">Suplemento do Excel</comment>
- <comment xml:lang="ru">Дополнение Excel</comment>
- <comment xml:lang="sk">Doplnok aplikácie Excel</comment>
- <comment xml:lang="sl">Vstavek Excel</comment>
- <comment xml:lang="sr">Екселов додатак</comment>
- <comment xml:lang="sv">Excel-tillägg</comment>
- <comment xml:lang="tr">Excel eklentisi</comment>
- <comment xml:lang="uk">додаток Excel</comment>
- <comment xml:lang="zh_CN">Excel 外接程序</comment>
<comment xml:lang="zh_TW">Excel 增益集</comment>
+ <comment xml:lang="zh_CN">Excel 外接程序</comment>
+ <comment xml:lang="uk">додаток Excel</comment>
+ <comment xml:lang="tr">Excel eklentisi</comment>
+ <comment xml:lang="sv">Excel-tillägg</comment>
+ <comment xml:lang="sr">Екселов додатак</comment>
+ <comment xml:lang="sq">shtojcë Excel</comment>
+ <comment xml:lang="sl">Vstavek Excel</comment>
+ <comment xml:lang="si">එක්සෙල් ඇඩෝනය</comment>
+ <comment xml:lang="sk">Doplnok aplikácie Excel</comment>
+ <comment xml:lang="ru">Дополнение Excel</comment>
+ <comment xml:lang="pt_BR">Suplemento do Excel</comment>
+ <comment xml:lang="pt">Extensão Excel</comment>
+ <comment xml:lang="pl">Dodatek Excel</comment>
+ <comment xml:lang="oc">complement Excel</comment>
+ <comment xml:lang="nl">Excel-add-in</comment>
+ <comment xml:lang="lv">Excel pievienojumprogramma</comment>
+ <comment xml:lang="ko">Excel 추가 기능</comment>
+ <comment xml:lang="kk">Excel қосымшасы</comment>
+ <comment xml:lang="ka">Excel-ის დამატება</comment>
+ <comment xml:lang="ja">Excel アドイン</comment>
+ <comment xml:lang="it">Add-in Excel</comment>
+ <comment xml:lang="is">Excel viðbót</comment>
+ <comment xml:lang="id">Add-in Excel</comment>
+ <comment xml:lang="ia">Add-in Excel</comment>
+ <comment xml:lang="hu">Excel bővítmény</comment>
+ <comment xml:lang="hr">Excel dodatak</comment>
+ <comment xml:lang="he">תוסף של Excel</comment>
+ <comment xml:lang="gl">complemento de Excel</comment>
+ <comment xml:lang="ga">breiseán Excel</comment>
+ <comment xml:lang="fur">zonte Excel</comment>
+ <comment xml:lang="fr">complément Excel</comment>
+ <comment xml:lang="fi">Excel-lisäosa</comment>
+ <comment xml:lang="eu">Excel gehigarria</comment>
+ <comment xml:lang="es">complemento de Excel</comment>
+ <comment xml:lang="en_GB">Excel add-in</comment>
+ <comment xml:lang="el">Πρόσθετο Excel</comment>
+ <comment xml:lang="de">Excel-Add-in</comment>
+ <comment xml:lang="da">Excel-tilføjelse</comment>
+ <comment xml:lang="cs">doplněk aplikace Excel</comment>
+ <comment xml:lang="ca">complement d'Excel</comment>
+ <comment xml:lang="bg">Приставка — Excel</comment>
+ <comment xml:lang="be">надбудова Excel</comment>
+ <comment xml:lang="ar">إضافة اكسل</comment>
+ <comment xml:lang="af">Excel-byvoeging</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.xlam"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/>
</mime-type>
<mime-type type="application/vnd.ms-excel.sheet.binary.macroEnabled.12">
<comment>Excel 2007 binary spreadsheet</comment>
- <comment xml:lang="bg">Таблица — Excel 2007, двоична</comment>
- <comment xml:lang="ca">full de càlcul binari d'Excel 2007</comment>
- <comment xml:lang="cs">binární formát sešitu Excel 2007</comment>
- <comment xml:lang="da">Binært Excel 2007-regneark</comment>
- <comment xml:lang="de">Excel-2007-Tabelle (binär)</comment>
- <comment xml:lang="el">Δυαδικό λογιστικό φύλλο Excel 2007</comment>
- <comment xml:lang="en_GB">Excel 2007 binary spreadsheet</comment>
- <comment xml:lang="es">hoja de cálculo binaria de Excel 2007</comment>
- <comment xml:lang="eu">Excel 2007 kalkulu-orri binarioa</comment>
- <comment xml:lang="fi">Excel 2007:n binaarinen taulukko</comment>
- <comment xml:lang="fr">feuille de calcul binaire Excel 2007</comment>
- <comment xml:lang="ga">scarbhileog dhénártha Excel 2007</comment>
- <comment xml:lang="gl">ficheiro binario de folla de cálculo Excel 2007</comment>
- <comment xml:lang="he">גיליון נתונים בינרי של Excel 2007</comment>
- <comment xml:lang="hr">Excel 2007 binarna proračunska tablica</comment>
- <comment xml:lang="hu">Excel 2007 bináris táblázat</comment>
- <comment xml:lang="ia">Folio de calculo binari Excel 2007</comment>
- <comment xml:lang="id">Lembar kerja biner Excel 2007</comment>
- <comment xml:lang="it">Foglio di calcolo binario Excel 2007</comment>
- <comment xml:lang="ja">Excel 2007 バイナリスプレッドシート</comment>
- <comment xml:lang="ka">Excel 2007-ის ბინარული ცხრილი</comment>
- <comment xml:lang="kk">Excel 2007 бинарды кестесі</comment>
- <comment xml:lang="ko">Excel 2007 바이너리 스프레드시트</comment>
- <comment xml:lang="lv">Excel 2007 binārā izklājlapa</comment>
- <comment xml:lang="nl">Excel 2007 binary spreadsheet</comment>
- <comment xml:lang="oc">fuèlh de calcul binaire Excel 2007</comment>
- <comment xml:lang="pl">Binarny arkusz Excel 2007</comment>
- <comment xml:lang="pt">folha de cálculo binária Excel 2007</comment>
- <comment xml:lang="pt_BR">Planilha binária do Excel 2007</comment>
- <comment xml:lang="ru">Двоичная электронная таблица Excel 2007</comment>
- <comment xml:lang="sk">Binárny zošit Excel 2007</comment>
- <comment xml:lang="sl">Binarna preglednica Excel 2007</comment>
- <comment xml:lang="sr">Ексел 2007 бинарна табела</comment>
- <comment xml:lang="sv">Binärt Excel 2007-kalkylblad</comment>
- <comment xml:lang="tr">Excel 2007 ikilik çalışma sayfası</comment>
- <comment xml:lang="uk">бінарна електронна таблиця Excel 2007</comment>
- <comment xml:lang="zh_CN">Excel 2007 二进制电子表格</comment>
<comment xml:lang="zh_TW">Excel 2007 二進位試算表</comment>
+ <comment xml:lang="zh_CN">Excel 2007 二进制电子表格</comment>
+ <comment xml:lang="uk">бінарна електронна таблиця Excel 2007</comment>
+ <comment xml:lang="tr">Excel 2007 ikilik hesap çizelgesi</comment>
+ <comment xml:lang="sv">Binärt Excel 2007-kalkylblad</comment>
+ <comment xml:lang="sr">Ексел 2007 бинарна табела</comment>
+ <comment xml:lang="sq">fletëllogaritje dyore Excel 2007</comment>
+ <comment xml:lang="sl">Binarna preglednica Excel 2007</comment>
+ <comment xml:lang="si">Excel 2007 ද්විමය පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Binárny zošit Excel 2007</comment>
+ <comment xml:lang="ru">Двоичная электронная таблица Excel 2007</comment>
+ <comment xml:lang="pt_BR">Planilha binária do Excel 2007</comment>
+ <comment xml:lang="pt">folha de cálculo binária Excel 2007</comment>
+ <comment xml:lang="pl">Binarny arkusz Excel 2007</comment>
+ <comment xml:lang="oc">fuèlh de calcul binaire Excel 2007</comment>
+ <comment xml:lang="nl">Excel 2007 binair rekenblad</comment>
+ <comment xml:lang="lv">Excel 2007 binārā izklājlapa</comment>
+ <comment xml:lang="ko">Excel 2007 바이너리 스프레드시트</comment>
+ <comment xml:lang="kk">Excel 2007 бинарды кестесі</comment>
+ <comment xml:lang="ka">Excel 2007-ის ბინარული ცხრილი</comment>
+ <comment xml:lang="ja">Excel 2007 バイナリスプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo binario Excel 2007</comment>
+ <comment xml:lang="is">Excel tvíunddarkerfis töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar kerja biner Excel 2007</comment>
+ <comment xml:lang="ia">Folio de calculo binari Excel 2007</comment>
+ <comment xml:lang="hu">Excel 2007 bináris táblázat</comment>
+ <comment xml:lang="hr">Excel 2007 binarna proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים בינרי של Excel 2007</comment>
+ <comment xml:lang="gl">ficheiro binario de folla de cálculo Excel 2007</comment>
+ <comment xml:lang="ga">scarbhileog dhénártha Excel 2007</comment>
+ <comment xml:lang="fur">sfuei di calcul binari Excel 2007</comment>
+ <comment xml:lang="fr">feuille de calcul binaire Excel 2007</comment>
+ <comment xml:lang="fi">Excel 2007 binäärinen taulukko</comment>
+ <comment xml:lang="eu">Excel 2007 kalkulu-orri binarioa</comment>
+ <comment xml:lang="es">hoja de cálculo binaria de Excel 2007</comment>
+ <comment xml:lang="en_GB">Excel 2007 binary spreadsheet</comment>
+ <comment xml:lang="el">Δυαδικό λογιστικό φύλλο Excel 2007</comment>
+ <comment xml:lang="de">Excel-2007-Tabelle (binär)</comment>
+ <comment xml:lang="da">Binært Excel 2007-regneark</comment>
+ <comment xml:lang="cs">binární formát sešitu Excel 2007</comment>
+ <comment xml:lang="ca">full de càlcul binari d'Excel 2007</comment>
+ <comment xml:lang="bg">Таблица — Excel 2007, двоична</comment>
+ <comment xml:lang="be">двайковая электронная табліца Excel 2007</comment>
+ <comment xml:lang="ar">مستند اكسل 2007 ثنائي</comment>
+ <comment xml:lang="af">Excel 2007 binêre sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.xlsb"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/>
</mime-type>
<mime-type type="application/vnd.ms-excel.sheet.macroEnabled.12">
<comment>Excel spreadsheet</comment>
- <comment xml:lang="ar">جدول Excel</comment>
- <comment xml:lang="be@latin">Raźlikovy akruš Excel</comment>
- <comment xml:lang="bg">Таблица — Excel</comment>
- <comment xml:lang="ca">full de càlcul d'Excel</comment>
- <comment xml:lang="cs">sešit Excel</comment>
- <comment xml:lang="da">Excelregneark</comment>
- <comment xml:lang="de">Excel-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Excel</comment>
- <comment xml:lang="en_GB">Excel spreadsheet</comment>
- <comment xml:lang="eo">Excel-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo de Excel</comment>
- <comment xml:lang="eu">Excel kalkulu-orria</comment>
- <comment xml:lang="fi">Excel-taulukko</comment>
- <comment xml:lang="fo">Excel rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Excel</comment>
- <comment xml:lang="ga">scarbhileog Excel</comment>
- <comment xml:lang="gl">folla de cálculo de Excel</comment>
- <comment xml:lang="he">גליון נתונים של Excel</comment>
- <comment xml:lang="hr">Excel proračunska tablica</comment>
- <comment xml:lang="hu">Excel táblázat</comment>
- <comment xml:lang="ia">Folio de calculo Excel</comment>
- <comment xml:lang="id">Lembar sebar Excel</comment>
- <comment xml:lang="it">Foglio di calcolo Excel</comment>
- <comment xml:lang="ja">Excel スプレッドシート</comment>
- <comment xml:lang="ka">Excel-ის ცხრილი</comment>
- <comment xml:lang="kk">Excel электрондық кестесі</comment>
- <comment xml:lang="ko">Excel 스프레드시트</comment>
- <comment xml:lang="lt">Excel skaičialentė</comment>
- <comment xml:lang="lv">Excel izklājlapa</comment>
- <comment xml:lang="nb">Excel regneark</comment>
- <comment xml:lang="nl">Excel-rekenblad</comment>
- <comment xml:lang="nn">Excel-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul Excel</comment>
- <comment xml:lang="pl">Arkusz Excel</comment>
- <comment xml:lang="pt">folha de cálculo Excel</comment>
- <comment xml:lang="pt_BR">Planilha do Excel</comment>
- <comment xml:lang="ro">Foaie de calcul Excel</comment>
- <comment xml:lang="ru">Электронная таблица Excel</comment>
- <comment xml:lang="sk">Zošit Excel</comment>
- <comment xml:lang="sl">Razpredelnica Microsoft Excel</comment>
- <comment xml:lang="sq">Fletë llogaritje Excel</comment>
- <comment xml:lang="sr">Екселова табела</comment>
- <comment xml:lang="sv">Excel-kalkylblad</comment>
- <comment xml:lang="tr">Excel çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Excel</comment>
- <comment xml:lang="vi">Bảng tính Excel</comment>
- <comment xml:lang="zh_CN">Excel 电子表格</comment>
<comment xml:lang="zh_TW">Excel 試算表</comment>
+ <comment xml:lang="zh_CN">Excel 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Excel</comment>
+ <comment xml:lang="uk">електронна таблиця Excel</comment>
+ <comment xml:lang="tr">Excel hesap çizelgesi</comment>
+ <comment xml:lang="sv">Excel-kalkylblad</comment>
+ <comment xml:lang="sr">Екселова табела</comment>
+ <comment xml:lang="sq">fletëllogaritje Excel</comment>
+ <comment xml:lang="sl">Razpredelnica Microsoft Excel</comment>
+ <comment xml:lang="si">එක්සෙල් පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Excel</comment>
+ <comment xml:lang="ru">Электронная таблица Excel</comment>
+ <comment xml:lang="ro">Foaie de calcul Excel</comment>
+ <comment xml:lang="pt_BR">Planilha do Excel</comment>
+ <comment xml:lang="pt">folha de cálculo Excel</comment>
+ <comment xml:lang="pl">Arkusz Excel</comment>
+ <comment xml:lang="oc">fuèlh de calcul Excel</comment>
+ <comment xml:lang="nn">Excel-rekneark</comment>
+ <comment xml:lang="nl">Excel-rekenblad</comment>
+ <comment xml:lang="nb">Excel regneark</comment>
+ <comment xml:lang="lv">Excel izklājlapa</comment>
+ <comment xml:lang="lt">Excel skaičialentė</comment>
+ <comment xml:lang="ko">Excel 스프레드시트</comment>
+ <comment xml:lang="kk">Excel электрондық кестесі</comment>
+ <comment xml:lang="ka">Excel-ის ცხრილი</comment>
+ <comment xml:lang="ja">Excel スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Excel</comment>
+ <comment xml:lang="is">Excel töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Excel</comment>
+ <comment xml:lang="ia">Folio de calculo Excel</comment>
+ <comment xml:lang="hu">Excel táblázat</comment>
+ <comment xml:lang="hr">Excel proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Excel</comment>
+ <comment xml:lang="gl">folla de cálculo de Excel</comment>
+ <comment xml:lang="ga">scarbhileog Excel</comment>
+ <comment xml:lang="fur">sfuei di calcul Excel</comment>
+ <comment xml:lang="fr">feuille de calcul Excel</comment>
+ <comment xml:lang="fo">Excel rokniark</comment>
+ <comment xml:lang="fi">Excel-taulukko</comment>
+ <comment xml:lang="eu">Excel kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Excel</comment>
+ <comment xml:lang="eo">Excel-kalkultabelo</comment>
+ <comment xml:lang="en_GB">Excel spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Excel</comment>
+ <comment xml:lang="de">Excel-Tabelle</comment>
+ <comment xml:lang="da">Excelregneark</comment>
+ <comment xml:lang="cs">sešit Excel</comment>
+ <comment xml:lang="ca">full de càlcul d'Excel</comment>
+ <comment xml:lang="bg">Таблица — Excel</comment>
+ <comment xml:lang="be@latin">Raźlikovy akruš Excel</comment>
+ <comment xml:lang="be">электронная табліца Excel</comment>
+ <comment xml:lang="ar">جدول اكسل</comment>
+ <comment xml:lang="af">Excel-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.xlsm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/>
</mime-type>
<mime-type type="application/vnd.ms-excel.template.macroEnabled.12">
<comment>Excel spreadsheet template</comment>
- <comment xml:lang="ca">plantilla de full de càlcul d'Excel</comment>
- <comment xml:lang="cs">šablona tabulky Excel</comment>
- <comment xml:lang="da">Excel-regnearksskabelon</comment>
- <comment xml:lang="de">Excel-Tabellenvorlage</comment>
- <comment xml:lang="el">Πρότυπο λογιστικού φύλλου Excel</comment>
- <comment xml:lang="en_GB">Excel spreadsheet template</comment>
- <comment xml:lang="es">plantilla de libro de Excel</comment>
- <comment xml:lang="eu">Excel kalkulu-orri txantiloia</comment>
- <comment xml:lang="fi">Excel-taulukkomalli</comment>
- <comment xml:lang="fr">modèle de feuille de calcul Excel</comment>
- <comment xml:lang="ga">teimpléad scarbhileoige Excel</comment>
- <comment xml:lang="he">תבנית גיליון נתונים של Excel</comment>
- <comment xml:lang="hr">Predložak Excel proračunske tablice</comment>
- <comment xml:lang="hu">Excel munkafüzetsablon</comment>
- <comment xml:lang="ia">Patrono de folio de calculo Excel</comment>
- <comment xml:lang="id">Templat lembar kerja Excel</comment>
- <comment xml:lang="it">Modello foglio di calcolo Excel</comment>
- <comment xml:lang="kk">Excel кестесінің үлгісі</comment>
- <comment xml:lang="ko">Excel 스프레드시트 서식</comment>
- <comment xml:lang="oc">Modèl de fuèlh de calcul Excel</comment>
- <comment xml:lang="pl">Szablon arkusza Excel</comment>
- <comment xml:lang="pt">modelo de folha de cálculo Excel</comment>
- <comment xml:lang="pt_BR">Modelo de planilha do Excel</comment>
- <comment xml:lang="ru">Шаблон таблицы Excel</comment>
- <comment xml:lang="sk">Šablóna tabuľky aplikácie Excel</comment>
- <comment xml:lang="sr">Екселов шаблон табеле</comment>
- <comment xml:lang="sv">Excel-kalkylarksmall</comment>
- <comment xml:lang="tr">Excel hesap tablosu şablonu</comment>
- <comment xml:lang="uk">шаблон електронної таблиці Excel</comment>
- <comment xml:lang="zh_CN">Excel 电子表格模板</comment>
<comment xml:lang="zh_TW">Excel 試算表範本</comment>
+ <comment xml:lang="zh_CN">Excel 电子表格模板</comment>
+ <comment xml:lang="uk">шаблон електронної таблиці Excel</comment>
+ <comment xml:lang="tr">Excel hesap çizelgesi şablonu</comment>
+ <comment xml:lang="sv">Excel-kalkylarksmall</comment>
+ <comment xml:lang="sr">Екселов шаблон табеле</comment>
+ <comment xml:lang="sq">gjedhe fletëllogaritjesh Excel</comment>
+ <comment xml:lang="sl">Predloga preglednice Excel</comment>
+ <comment xml:lang="si">එක්සෙල් පැතුරුම්පත් අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna tabuľky aplikácie Excel</comment>
+ <comment xml:lang="ru">Шаблон таблицы Excel</comment>
+ <comment xml:lang="pt_BR">Modelo de planilha do Excel</comment>
+ <comment xml:lang="pt">predefinição da folha de cálculo Excel</comment>
+ <comment xml:lang="pl">Szablon arkusza Excel</comment>
+ <comment xml:lang="oc">Modèl de fuèlh de calcul Excel</comment>
+ <comment xml:lang="nl">Excel-rekenbladsjabloon</comment>
+ <comment xml:lang="ko">Excel 스프레드시트 서식</comment>
+ <comment xml:lang="kk">Excel кестесінің үлгісі</comment>
+ <comment xml:lang="ja">Excel スプレッドシートテンプレート</comment>
+ <comment xml:lang="it">Modello foglio di calcolo Excel</comment>
+ <comment xml:lang="is">Excel töflureiknisniðmát</comment>
+ <comment xml:lang="id">Templat lembar kerja Excel</comment>
+ <comment xml:lang="ia">Patrono de folio de calculo Excel</comment>
+ <comment xml:lang="hu">Excel munkafüzetsablon</comment>
+ <comment xml:lang="hr">Predložak Excel proračunske tablice</comment>
+ <comment xml:lang="he">תבנית גיליון נתונים של Excel</comment>
+ <comment xml:lang="gl">Modelo de folla de cálculo de Excel</comment>
+ <comment xml:lang="ga">teimpléad scarbhileoige Excel</comment>
+ <comment xml:lang="fur">model sfuei di calcul Excel</comment>
+ <comment xml:lang="fr">modèle de feuille de calcul Excel</comment>
+ <comment xml:lang="fi">Excel-taulukkomalli</comment>
+ <comment xml:lang="eu">Excel kalkulu-orri txantiloia</comment>
+ <comment xml:lang="es">plantilla de hoja de cálculo de Excel</comment>
+ <comment xml:lang="en_GB">Excel spreadsheet template</comment>
+ <comment xml:lang="el">Πρότυπο λογιστικού φύλλου Excel</comment>
+ <comment xml:lang="de">Excel-Tabellenvorlage</comment>
+ <comment xml:lang="da">Excel-regnearksskabelon</comment>
+ <comment xml:lang="cs">šablona tabulky Excel</comment>
+ <comment xml:lang="ca">plantilla de full de càlcul d'Excel</comment>
+ <comment xml:lang="bg">Шаблон за таблица — Excel</comment>
+ <comment xml:lang="be">шаблон электроннай табліцы Excel</comment>
+ <comment xml:lang="ar">قالب جدول اكسل</comment>
+ <comment xml:lang="af">Excel-sigbladsjabloon</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.xltm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.spreadsheetml.template"/>
</mime-type>
<mime-type type="application/vnd.ms-powerpoint">
<comment>PowerPoint presentation</comment>
- <comment xml:lang="ar">عرض تقديمي PowerPoint</comment>
- <comment xml:lang="be@latin">Prezentacyja PowerPoint</comment>
- <comment xml:lang="bg">Презентация — PowerPoint</comment>
- <comment xml:lang="ca">presentació de PowerPoint</comment>
- <comment xml:lang="cs">prezentace PowerPoint</comment>
- <comment xml:lang="da">PowerPoint-præsentation</comment>
- <comment xml:lang="de">PowerPoint-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση PowerPoint</comment>
- <comment xml:lang="en_GB">PowerPoint presentation</comment>
- <comment xml:lang="eo">PowerPoint-prezentaĵo</comment>
- <comment xml:lang="es">presentación de PowerPoint</comment>
- <comment xml:lang="eu">PowerPoint aurkezpena</comment>
- <comment xml:lang="fi">PowerPoint-esitys</comment>
- <comment xml:lang="fo">PowerPoint framløga</comment>
- <comment xml:lang="fr">présentation PowerPoint</comment>
- <comment xml:lang="ga">láithreoireacht PowerPoint</comment>
- <comment xml:lang="gl">presentación de PowerPoint</comment>
- <comment xml:lang="he">מצגת PowerPoint</comment>
- <comment xml:lang="hr">PowerPoint prezentacija</comment>
- <comment xml:lang="hu">PowerPoint prezentáció</comment>
- <comment xml:lang="ia">Presentation PowerPoint</comment>
- <comment xml:lang="id">Presentasi PowerPoint</comment>
- <comment xml:lang="it">Presentazione PowerPoint</comment>
- <comment xml:lang="ja">PowerPoint プレゼンテーション</comment>
- <comment xml:lang="kk">PowerPoint презентациясы</comment>
- <comment xml:lang="ko">PowerPoint 프레젠테이션</comment>
- <comment xml:lang="lt">PowerPoint pateiktis</comment>
- <comment xml:lang="lv">PowerPoint prezentācija</comment>
- <comment xml:lang="nb">PowerPoint-presentasjon</comment>
- <comment xml:lang="nl">PowerPoint-presentatie</comment>
- <comment xml:lang="nn">PowerPoint-presentasjon</comment>
- <comment xml:lang="oc">presentacion PowerPoint</comment>
- <comment xml:lang="pl">Prezentacja PowerPoint</comment>
- <comment xml:lang="pt">apresentação PowerPoint</comment>
- <comment xml:lang="pt_BR">Apresentação do PowerPoint</comment>
- <comment xml:lang="ro">Prezentare PowerPoint</comment>
- <comment xml:lang="ru">Презентация PowerPoint</comment>
- <comment xml:lang="sk">Prezentácia PowerPoint</comment>
- <comment xml:lang="sl">Predstavitev Microsoft PowerPoint</comment>
- <comment xml:lang="sq">Prezantim PowerPoint</comment>
- <comment xml:lang="sr">Пауер поинт презентација</comment>
- <comment xml:lang="sv">PowerPoint-presentation</comment>
- <comment xml:lang="tr">PowerPoint sunumu</comment>
- <comment xml:lang="uk">презентація PowerPoint</comment>
- <comment xml:lang="vi">Trình diễn PowerPoint</comment>
- <comment xml:lang="zh_CN">PowerPoint 演示文稿</comment>
<comment xml:lang="zh_TW">PowerPoint 簡報</comment>
+ <comment xml:lang="zh_CN">PowerPoint 演示文稿</comment>
+ <comment xml:lang="vi">Trình diễn PowerPoint</comment>
+ <comment xml:lang="uk">презентація PowerPoint</comment>
+ <comment xml:lang="tr">PowerPoint sunumu</comment>
+ <comment xml:lang="sv">PowerPoint-presentation</comment>
+ <comment xml:lang="sr">Пауер поинт презентација</comment>
+ <comment xml:lang="sq">paraqitje PowerPoint</comment>
+ <comment xml:lang="sl">Predstavitev Microsoft PowerPoint</comment>
+ <comment xml:lang="si">PowerPoint ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia PowerPoint</comment>
+ <comment xml:lang="ru">Презентация PowerPoint</comment>
+ <comment xml:lang="ro">Prezentare PowerPoint</comment>
+ <comment xml:lang="pt_BR">Apresentação do PowerPoint</comment>
+ <comment xml:lang="pt">apresentação PowerPoint</comment>
+ <comment xml:lang="pl">Prezentacja PowerPoint</comment>
+ <comment xml:lang="oc">presentacion PowerPoint</comment>
+ <comment xml:lang="nn">PowerPoint-presentasjon</comment>
+ <comment xml:lang="nl">PowerPoint-presentatie</comment>
+ <comment xml:lang="nb">PowerPoint-presentasjon</comment>
+ <comment xml:lang="lv">PowerPoint prezentācija</comment>
+ <comment xml:lang="lt">PowerPoint pateiktis</comment>
+ <comment xml:lang="ko">PowerPoint 프레젠테이션</comment>
+ <comment xml:lang="kk">PowerPoint презентациясы</comment>
+ <comment xml:lang="ja">PowerPoint プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione PowerPoint</comment>
+ <comment xml:lang="is">PowerPoint kynning</comment>
+ <comment xml:lang="id">Presentasi PowerPoint</comment>
+ <comment xml:lang="ia">Presentation PowerPoint</comment>
+ <comment xml:lang="hu">PowerPoint prezentáció</comment>
+ <comment xml:lang="hr">PowerPoint prezentacija</comment>
+ <comment xml:lang="he">מצגת PowerPoint</comment>
+ <comment xml:lang="gl">presentación de PowerPoint</comment>
+ <comment xml:lang="ga">láithreoireacht PowerPoint</comment>
+ <comment xml:lang="fur">presentazion PowerPoint</comment>
+ <comment xml:lang="fr">présentation PowerPoint</comment>
+ <comment xml:lang="fo">PowerPoint framløga</comment>
+ <comment xml:lang="fi">PowerPoint-esitys</comment>
+ <comment xml:lang="eu">PowerPoint aurkezpena</comment>
+ <comment xml:lang="es">presentación de PowerPoint</comment>
+ <comment xml:lang="eo">PowerPoint-prezentaĵo</comment>
+ <comment xml:lang="en_GB">PowerPoint presentation</comment>
+ <comment xml:lang="el">Παρουσίαση PowerPoint</comment>
+ <comment xml:lang="de">PowerPoint-Präsentation</comment>
+ <comment xml:lang="da">PowerPoint-præsentation</comment>
+ <comment xml:lang="cs">prezentace PowerPoint</comment>
+ <comment xml:lang="ca">presentació de PowerPoint</comment>
+ <comment xml:lang="bg">Презентация — PowerPoint</comment>
+ <comment xml:lang="be@latin">Prezentacyja PowerPoint</comment>
+ <comment xml:lang="be">прэзентацыя PowerPoint</comment>
+ <comment xml:lang="ar">عرض تقديمي بوربوينت</comment>
+ <comment xml:lang="af">PowerPoint-voorlegging</comment>
+ <sub-class-of type="application/x-ole-storage"/>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.ppz"/>
<glob pattern="*.ppt"/>
@@ -3323,644 +3800,781 @@
</mime-type>
<mime-type type="application/vnd.ms-powerpoint.addin.macroEnabled.12">
<comment>PowerPoint add-in</comment>
- <comment xml:lang="bg">Приставка — PowerPoint</comment>
- <comment xml:lang="ca">complement de PowerPoint</comment>
- <comment xml:lang="cs">doplněk PowerPoint</comment>
- <comment xml:lang="da">PowerPoint-tilføjelse</comment>
- <comment xml:lang="de">PowerPoint Add-in</comment>
- <comment xml:lang="el">Πρόσθετο PowerPoint</comment>
- <comment xml:lang="en_GB">PowerPoint add-in</comment>
- <comment xml:lang="es">complemento de PowerPoint</comment>
- <comment xml:lang="eu">PowerPoint gehigarria</comment>
- <comment xml:lang="fi">PowerPoint-lisäosa</comment>
- <comment xml:lang="fr">complément PowerPoint</comment>
- <comment xml:lang="ga">breiseán PowerPoint</comment>
- <comment xml:lang="gl">complemento de PowerPoint</comment>
- <comment xml:lang="he">תוסף של PowerPoint</comment>
- <comment xml:lang="hr">PowerPoint dodatak</comment>
- <comment xml:lang="hu">PowerPoint bővítmény</comment>
- <comment xml:lang="ia">Add-in PowerPoint</comment>
- <comment xml:lang="id">Add-in PowerPoint</comment>
- <comment xml:lang="it">Add-in PowerPoint</comment>
- <comment xml:lang="ja">PowerPoint アドイン</comment>
- <comment xml:lang="ka">PowerPoint-ის დამატება</comment>
- <comment xml:lang="kk">PowerPoint қосымшасы</comment>
- <comment xml:lang="ko">PowerPoint 추가 기능</comment>
- <comment xml:lang="lv">PowerPoint pievienojumprogramma</comment>
- <comment xml:lang="nl">PowerPoint add-in</comment>
- <comment xml:lang="oc">complement PowerPoint</comment>
- <comment xml:lang="pl">Dodatek PowerPoint</comment>
- <comment xml:lang="pt">extensão PowerPoint</comment>
- <comment xml:lang="pt_BR">Suplemento do PowerPoint</comment>
- <comment xml:lang="ru">Дополнение PowerPoint</comment>
- <comment xml:lang="sk">Doplnok aplikácie PowerPoint </comment>
- <comment xml:lang="sl">Vstavek PowerPoint</comment>
- <comment xml:lang="sr">Пауер поинт додатак</comment>
- <comment xml:lang="sv">PowerPoint-tillägg</comment>
- <comment xml:lang="tr">PowerPoint eklentisi</comment>
- <comment xml:lang="uk">додаток PowerPoint</comment>
- <comment xml:lang="zh_CN">PowerPoint 外接程序</comment>
<comment xml:lang="zh_TW">PowerPoint 增益集</comment>
+ <comment xml:lang="zh_CN">PowerPoint 外接程序</comment>
+ <comment xml:lang="uk">додаток PowerPoint</comment>
+ <comment xml:lang="tr">PowerPoint eklentisi</comment>
+ <comment xml:lang="sv">PowerPoint-tillägg</comment>
+ <comment xml:lang="sr">Пауер поинт додатак</comment>
+ <comment xml:lang="sq">shtojcë PowerPoint</comment>
+ <comment xml:lang="sl">Vstavek PowerPoint</comment>
+ <comment xml:lang="si">PowerPoint ඇඩෝනය</comment>
+ <comment xml:lang="sk">Doplnok aplikácie PowerPoint </comment>
+ <comment xml:lang="ru">Дополнение PowerPoint</comment>
+ <comment xml:lang="pt_BR">Suplemento do PowerPoint</comment>
+ <comment xml:lang="pt">extensão PowerPoint</comment>
+ <comment xml:lang="pl">Dodatek PowerPoint</comment>
+ <comment xml:lang="oc">complement PowerPoint</comment>
+ <comment xml:lang="nl">PowerPoint-add-in</comment>
+ <comment xml:lang="lv">PowerPoint pievienojumprogramma</comment>
+ <comment xml:lang="ko">PowerPoint 추가 기능</comment>
+ <comment xml:lang="kk">PowerPoint қосымшасы</comment>
+ <comment xml:lang="ka">PowerPoint-ის დამატება</comment>
+ <comment xml:lang="ja">PowerPoint アドイン</comment>
+ <comment xml:lang="it">Add-in PowerPoint</comment>
+ <comment xml:lang="is">PowerPoint viðbót</comment>
+ <comment xml:lang="id">Add-in PowerPoint</comment>
+ <comment xml:lang="ia">Add-in PowerPoint</comment>
+ <comment xml:lang="hu">PowerPoint bővítmény</comment>
+ <comment xml:lang="hr">PowerPoint dodatak</comment>
+ <comment xml:lang="he">תוסף של PowerPoint</comment>
+ <comment xml:lang="gl">complemento de PowerPoint</comment>
+ <comment xml:lang="ga">breiseán PowerPoint</comment>
+ <comment xml:lang="fur">zonte PowerPoint</comment>
+ <comment xml:lang="fr">complément PowerPoint</comment>
+ <comment xml:lang="fi">PowerPoint-lisäosa</comment>
+ <comment xml:lang="eu">PowerPoint gehigarria</comment>
+ <comment xml:lang="es">complemento de PowerPoint</comment>
+ <comment xml:lang="en_GB">PowerPoint add-in</comment>
+ <comment xml:lang="el">Πρόσθετο PowerPoint</comment>
+ <comment xml:lang="de">PowerPoint-Add-in</comment>
+ <comment xml:lang="da">PowerPoint-tilføjelse</comment>
+ <comment xml:lang="cs">doplněk PowerPoint</comment>
+ <comment xml:lang="ca">complement de PowerPoint</comment>
+ <comment xml:lang="bg">Приставка — PowerPoint</comment>
+ <comment xml:lang="be">надбудова PowerPoint</comment>
+ <comment xml:lang="ar">إضافة بوربوينت</comment>
+ <comment xml:lang="af">PowerPoint-byvoeging</comment>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.ppam"/>
</mime-type>
<mime-type type="application/vnd.ms-powerpoint.presentation.macroEnabled.12">
<comment>PowerPoint presentation</comment>
- <comment xml:lang="ar">عرض تقديمي PowerPoint</comment>
- <comment xml:lang="be@latin">Prezentacyja PowerPoint</comment>
- <comment xml:lang="bg">Презентация — PowerPoint</comment>
- <comment xml:lang="ca">presentació de PowerPoint</comment>
- <comment xml:lang="cs">prezentace PowerPoint</comment>
- <comment xml:lang="da">PowerPoint-præsentation</comment>
- <comment xml:lang="de">PowerPoint-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση PowerPoint</comment>
- <comment xml:lang="en_GB">PowerPoint presentation</comment>
- <comment xml:lang="eo">PowerPoint-prezentaĵo</comment>
- <comment xml:lang="es">presentación de PowerPoint</comment>
- <comment xml:lang="eu">PowerPoint aurkezpena</comment>
- <comment xml:lang="fi">PowerPoint-esitys</comment>
- <comment xml:lang="fo">PowerPoint framløga</comment>
- <comment xml:lang="fr">présentation PowerPoint</comment>
- <comment xml:lang="ga">láithreoireacht PowerPoint</comment>
- <comment xml:lang="gl">presentación de PowerPoint</comment>
- <comment xml:lang="he">מצגת PowerPoint</comment>
- <comment xml:lang="hr">PowerPoint prezentacija</comment>
- <comment xml:lang="hu">PowerPoint prezentáció</comment>
- <comment xml:lang="ia">Presentation PowerPoint</comment>
- <comment xml:lang="id">Presentasi PowerPoint</comment>
- <comment xml:lang="it">Presentazione PowerPoint</comment>
- <comment xml:lang="ja">PowerPoint プレゼンテーション</comment>
- <comment xml:lang="kk">PowerPoint презентациясы</comment>
- <comment xml:lang="ko">PowerPoint 프레젠테이션</comment>
- <comment xml:lang="lt">PowerPoint pateiktis</comment>
- <comment xml:lang="lv">PowerPoint prezentācija</comment>
- <comment xml:lang="nb">PowerPoint-presentasjon</comment>
- <comment xml:lang="nl">PowerPoint-presentatie</comment>
- <comment xml:lang="nn">PowerPoint-presentasjon</comment>
- <comment xml:lang="oc">presentacion PowerPoint</comment>
- <comment xml:lang="pl">Prezentacja PowerPoint</comment>
- <comment xml:lang="pt">apresentação PowerPoint</comment>
- <comment xml:lang="pt_BR">Apresentação do PowerPoint</comment>
- <comment xml:lang="ro">Prezentare PowerPoint</comment>
- <comment xml:lang="ru">Презентация PowerPoint</comment>
- <comment xml:lang="sk">Prezentácia PowerPoint</comment>
- <comment xml:lang="sl">Predstavitev Microsoft PowerPoint</comment>
- <comment xml:lang="sq">Prezantim PowerPoint</comment>
- <comment xml:lang="sr">Пауер поинт презентација</comment>
- <comment xml:lang="sv">PowerPoint-presentation</comment>
- <comment xml:lang="tr">PowerPoint sunumu</comment>
- <comment xml:lang="uk">презентація PowerPoint</comment>
- <comment xml:lang="vi">Trình diễn PowerPoint</comment>
- <comment xml:lang="zh_CN">PowerPoint 演示文稿</comment>
<comment xml:lang="zh_TW">PowerPoint 簡報</comment>
+ <comment xml:lang="zh_CN">PowerPoint 演示文稿</comment>
+ <comment xml:lang="vi">Trình diễn PowerPoint</comment>
+ <comment xml:lang="uk">презентація PowerPoint</comment>
+ <comment xml:lang="tr">PowerPoint sunumu</comment>
+ <comment xml:lang="sv">PowerPoint-presentation</comment>
+ <comment xml:lang="sr">Пауер поинт презентација</comment>
+ <comment xml:lang="sq">paraqitje PowerPoint</comment>
+ <comment xml:lang="sl">Predstavitev Microsoft PowerPoint</comment>
+ <comment xml:lang="si">PowerPoint ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia PowerPoint</comment>
+ <comment xml:lang="ru">Презентация PowerPoint</comment>
+ <comment xml:lang="ro">Prezentare PowerPoint</comment>
+ <comment xml:lang="pt_BR">Apresentação do PowerPoint</comment>
+ <comment xml:lang="pt">apresentação PowerPoint</comment>
+ <comment xml:lang="pl">Prezentacja PowerPoint</comment>
+ <comment xml:lang="oc">presentacion PowerPoint</comment>
+ <comment xml:lang="nn">PowerPoint-presentasjon</comment>
+ <comment xml:lang="nl">PowerPoint-presentatie</comment>
+ <comment xml:lang="nb">PowerPoint-presentasjon</comment>
+ <comment xml:lang="lv">PowerPoint prezentācija</comment>
+ <comment xml:lang="lt">PowerPoint pateiktis</comment>
+ <comment xml:lang="ko">PowerPoint 프레젠테이션</comment>
+ <comment xml:lang="kk">PowerPoint презентациясы</comment>
+ <comment xml:lang="ja">PowerPoint プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione PowerPoint</comment>
+ <comment xml:lang="is">PowerPoint kynning</comment>
+ <comment xml:lang="id">Presentasi PowerPoint</comment>
+ <comment xml:lang="ia">Presentation PowerPoint</comment>
+ <comment xml:lang="hu">PowerPoint prezentáció</comment>
+ <comment xml:lang="hr">PowerPoint prezentacija</comment>
+ <comment xml:lang="he">מצגת PowerPoint</comment>
+ <comment xml:lang="gl">presentación de PowerPoint</comment>
+ <comment xml:lang="ga">láithreoireacht PowerPoint</comment>
+ <comment xml:lang="fur">presentazion PowerPoint</comment>
+ <comment xml:lang="fr">présentation PowerPoint</comment>
+ <comment xml:lang="fo">PowerPoint framløga</comment>
+ <comment xml:lang="fi">PowerPoint-esitys</comment>
+ <comment xml:lang="eu">PowerPoint aurkezpena</comment>
+ <comment xml:lang="es">presentación de PowerPoint</comment>
+ <comment xml:lang="eo">PowerPoint-prezentaĵo</comment>
+ <comment xml:lang="en_GB">PowerPoint presentation</comment>
+ <comment xml:lang="el">Παρουσίαση PowerPoint</comment>
+ <comment xml:lang="de">PowerPoint-Präsentation</comment>
+ <comment xml:lang="da">PowerPoint-præsentation</comment>
+ <comment xml:lang="cs">prezentace PowerPoint</comment>
+ <comment xml:lang="ca">presentació de PowerPoint</comment>
+ <comment xml:lang="bg">Презентация — PowerPoint</comment>
+ <comment xml:lang="be@latin">Prezentacyja PowerPoint</comment>
+ <comment xml:lang="be">прэзентацыя PowerPoint</comment>
+ <comment xml:lang="ar">عرض تقديمي بوربوينت</comment>
+ <comment xml:lang="af">PowerPoint-voorlegging</comment>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.pptm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.presentation"/>
</mime-type>
<mime-type type="application/vnd.ms-powerpoint.slide.macroEnabled.12">
<comment>PowerPoint slide</comment>
- <comment xml:lang="ast">Diapositiva de PowerPoint</comment>
- <comment xml:lang="ca">dispositiva de PowerPoint</comment>
- <comment xml:lang="cs">promítání PowerPoint</comment>
- <comment xml:lang="da">PowerPoint-dias</comment>
- <comment xml:lang="de">PowerPoint-Folie</comment>
- <comment xml:lang="el">Διαφάνεια PowerPoint</comment>
- <comment xml:lang="en_GB">PowerPoint slide</comment>
- <comment xml:lang="es">diapositiva de PowerPoint</comment>
- <comment xml:lang="eu">PowerPoint diapositiba</comment>
- <comment xml:lang="fi">PowerPoint-dia</comment>
- <comment xml:lang="fr">diapositive PowerPoint</comment>
- <comment xml:lang="ga">sleamhnán PowerPoint</comment>
- <comment xml:lang="he">שקופית של PowerPoint</comment>
- <comment xml:lang="hr">PowerPoint prezentacija</comment>
- <comment xml:lang="hu">PowerPoint dia</comment>
- <comment xml:lang="ia">Diapositiva PowerPoint</comment>
- <comment xml:lang="id">Salindia PowerPoint</comment>
- <comment xml:lang="it">Diapositiva PowerPoint</comment>
- <comment xml:lang="kk">PowerPoint слайды</comment>
- <comment xml:lang="ko">파워포인트 슬라이드</comment>
- <comment xml:lang="oc">Diapositiva PowerPoint</comment>
- <comment xml:lang="pl">Slajd PowerPoint</comment>
- <comment xml:lang="pt">diapositivo PowerPoint</comment>
- <comment xml:lang="pt_BR">Slide do PowerPoint</comment>
- <comment xml:lang="ru">Слайд PowerPoint</comment>
- <comment xml:lang="sk">Snímka aplikácie PowerPoint</comment>
- <comment xml:lang="sr">Пауер поинт слајд</comment>
- <comment xml:lang="sv">PowerPoint-bildspel</comment>
- <comment xml:lang="tr">PowerPoint sunusu</comment>
- <comment xml:lang="uk">слайд PowerPoint</comment>
- <comment xml:lang="zh_CN">PowerPoint 幻灯片</comment>
<comment xml:lang="zh_TW">PowerPoint 投影片</comment>
+ <comment xml:lang="zh_CN">PowerPoint 幻灯片</comment>
+ <comment xml:lang="uk">слайд PowerPoint</comment>
+ <comment xml:lang="tr">PowerPoint sunusu</comment>
+ <comment xml:lang="sv">PowerPoint-bildspel</comment>
+ <comment xml:lang="sr">Пауер поинт слајд</comment>
+ <comment xml:lang="sq">diapozitiv PowerPoint</comment>
+ <comment xml:lang="sl">Prosojnica PowerPoint</comment>
+ <comment xml:lang="si">PowerPoint ස්ලයිඩය</comment>
+ <comment xml:lang="sk">Snímka aplikácie PowerPoint</comment>
+ <comment xml:lang="ru">Слайд PowerPoint</comment>
+ <comment xml:lang="pt_BR">Slide do PowerPoint</comment>
+ <comment xml:lang="pt">diapositivo PowerPoint</comment>
+ <comment xml:lang="pl">Slajd PowerPoint</comment>
+ <comment xml:lang="oc">Diapositiva PowerPoint</comment>
+ <comment xml:lang="nl">PowerPoint-dia</comment>
+ <comment xml:lang="ko">PowerPoint 슬라이드</comment>
+ <comment xml:lang="kk">PowerPoint слайды</comment>
+ <comment xml:lang="ja">PowerPoint スライド</comment>
+ <comment xml:lang="it">Diapositiva PowerPoint</comment>
+ <comment xml:lang="is">PowerPoint skyggna</comment>
+ <comment xml:lang="id">Salindia PowerPoint</comment>
+ <comment xml:lang="ia">Diapositiva PowerPoint</comment>
+ <comment xml:lang="hu">PowerPoint dia</comment>
+ <comment xml:lang="hr">PowerPoint prezentacija</comment>
+ <comment xml:lang="he">שקופית של PowerPoint</comment>
+ <comment xml:lang="gl">Diapositiva de PowerPoint</comment>
+ <comment xml:lang="ga">sleamhnán PowerPoint</comment>
+ <comment xml:lang="fur">diapositive PowerPoint</comment>
+ <comment xml:lang="fr">diapositive PowerPoint</comment>
+ <comment xml:lang="fi">PowerPoint-dia</comment>
+ <comment xml:lang="eu">PowerPoint diapositiba</comment>
+ <comment xml:lang="es">diapositiva de PowerPoint</comment>
+ <comment xml:lang="en_GB">PowerPoint slide</comment>
+ <comment xml:lang="el">Διαφάνεια PowerPoint</comment>
+ <comment xml:lang="de">PowerPoint-Folie</comment>
+ <comment xml:lang="da">PowerPoint-dias</comment>
+ <comment xml:lang="cs">promítání PowerPoint</comment>
+ <comment xml:lang="ca">dispositiva de PowerPoint</comment>
+ <comment xml:lang="bg">Кадър — PowerPoint</comment>
+ <comment xml:lang="be">слайд PowerPoint</comment>
+ <comment xml:lang="ast">Diapositiva de PowerPoint</comment>
+ <comment xml:lang="ar">شريحة بوربوينت</comment>
+ <comment xml:lang="af">PowerPoint-skyfie</comment>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.sldm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.slide"/>
</mime-type>
<mime-type type="application/vnd.ms-powerpoint.slideshow.macroEnabled.12">
<comment>PowerPoint presentation</comment>
- <comment xml:lang="ar">عرض تقديمي PowerPoint</comment>
- <comment xml:lang="be@latin">Prezentacyja PowerPoint</comment>
- <comment xml:lang="bg">Презентация — PowerPoint</comment>
- <comment xml:lang="ca">presentació de PowerPoint</comment>
- <comment xml:lang="cs">prezentace PowerPoint</comment>
- <comment xml:lang="da">PowerPoint-præsentation</comment>
- <comment xml:lang="de">PowerPoint-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση PowerPoint</comment>
- <comment xml:lang="en_GB">PowerPoint presentation</comment>
- <comment xml:lang="eo">PowerPoint-prezentaĵo</comment>
- <comment xml:lang="es">presentación de PowerPoint</comment>
- <comment xml:lang="eu">PowerPoint aurkezpena</comment>
- <comment xml:lang="fi">PowerPoint-esitys</comment>
- <comment xml:lang="fo">PowerPoint framløga</comment>
- <comment xml:lang="fr">présentation PowerPoint</comment>
- <comment xml:lang="ga">láithreoireacht PowerPoint</comment>
- <comment xml:lang="gl">presentación de PowerPoint</comment>
- <comment xml:lang="he">מצגת PowerPoint</comment>
- <comment xml:lang="hr">PowerPoint prezentacija</comment>
- <comment xml:lang="hu">PowerPoint prezentáció</comment>
- <comment xml:lang="ia">Presentation PowerPoint</comment>
- <comment xml:lang="id">Presentasi PowerPoint</comment>
- <comment xml:lang="it">Presentazione PowerPoint</comment>
- <comment xml:lang="ja">PowerPoint プレゼンテーション</comment>
- <comment xml:lang="kk">PowerPoint презентациясы</comment>
- <comment xml:lang="ko">PowerPoint 프레젠테이션</comment>
- <comment xml:lang="lt">PowerPoint pateiktis</comment>
- <comment xml:lang="lv">PowerPoint prezentācija</comment>
- <comment xml:lang="nb">PowerPoint-presentasjon</comment>
- <comment xml:lang="nl">PowerPoint-presentatie</comment>
- <comment xml:lang="nn">PowerPoint-presentasjon</comment>
- <comment xml:lang="oc">presentacion PowerPoint</comment>
- <comment xml:lang="pl">Prezentacja PowerPoint</comment>
- <comment xml:lang="pt">apresentação PowerPoint</comment>
- <comment xml:lang="pt_BR">Apresentação do PowerPoint</comment>
- <comment xml:lang="ro">Prezentare PowerPoint</comment>
- <comment xml:lang="ru">Презентация PowerPoint</comment>
- <comment xml:lang="sk">Prezentácia PowerPoint</comment>
- <comment xml:lang="sl">Predstavitev Microsoft PowerPoint</comment>
- <comment xml:lang="sq">Prezantim PowerPoint</comment>
- <comment xml:lang="sr">Пауер поинт презентација</comment>
- <comment xml:lang="sv">PowerPoint-presentation</comment>
- <comment xml:lang="tr">PowerPoint sunumu</comment>
- <comment xml:lang="uk">презентація PowerPoint</comment>
- <comment xml:lang="vi">Trình diễn PowerPoint</comment>
- <comment xml:lang="zh_CN">PowerPoint 演示文稿</comment>
<comment xml:lang="zh_TW">PowerPoint 簡報</comment>
+ <comment xml:lang="zh_CN">PowerPoint 演示文稿</comment>
+ <comment xml:lang="vi">Trình diễn PowerPoint</comment>
+ <comment xml:lang="uk">презентація PowerPoint</comment>
+ <comment xml:lang="tr">PowerPoint sunumu</comment>
+ <comment xml:lang="sv">PowerPoint-presentation</comment>
+ <comment xml:lang="sr">Пауер поинт презентација</comment>
+ <comment xml:lang="sq">paraqitje PowerPoint</comment>
+ <comment xml:lang="sl">Predstavitev Microsoft PowerPoint</comment>
+ <comment xml:lang="si">PowerPoint ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia PowerPoint</comment>
+ <comment xml:lang="ru">Презентация PowerPoint</comment>
+ <comment xml:lang="ro">Prezentare PowerPoint</comment>
+ <comment xml:lang="pt_BR">Apresentação do PowerPoint</comment>
+ <comment xml:lang="pt">apresentação PowerPoint</comment>
+ <comment xml:lang="pl">Prezentacja PowerPoint</comment>
+ <comment xml:lang="oc">presentacion PowerPoint</comment>
+ <comment xml:lang="nn">PowerPoint-presentasjon</comment>
+ <comment xml:lang="nl">PowerPoint-presentatie</comment>
+ <comment xml:lang="nb">PowerPoint-presentasjon</comment>
+ <comment xml:lang="lv">PowerPoint prezentācija</comment>
+ <comment xml:lang="lt">PowerPoint pateiktis</comment>
+ <comment xml:lang="ko">PowerPoint 프레젠테이션</comment>
+ <comment xml:lang="kk">PowerPoint презентациясы</comment>
+ <comment xml:lang="ja">PowerPoint プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione PowerPoint</comment>
+ <comment xml:lang="is">PowerPoint kynning</comment>
+ <comment xml:lang="id">Presentasi PowerPoint</comment>
+ <comment xml:lang="ia">Presentation PowerPoint</comment>
+ <comment xml:lang="hu">PowerPoint prezentáció</comment>
+ <comment xml:lang="hr">PowerPoint prezentacija</comment>
+ <comment xml:lang="he">מצגת PowerPoint</comment>
+ <comment xml:lang="gl">presentación de PowerPoint</comment>
+ <comment xml:lang="ga">láithreoireacht PowerPoint</comment>
+ <comment xml:lang="fur">presentazion PowerPoint</comment>
+ <comment xml:lang="fr">présentation PowerPoint</comment>
+ <comment xml:lang="fo">PowerPoint framløga</comment>
+ <comment xml:lang="fi">PowerPoint-esitys</comment>
+ <comment xml:lang="eu">PowerPoint aurkezpena</comment>
+ <comment xml:lang="es">presentación de PowerPoint</comment>
+ <comment xml:lang="eo">PowerPoint-prezentaĵo</comment>
+ <comment xml:lang="en_GB">PowerPoint presentation</comment>
+ <comment xml:lang="el">Παρουσίαση PowerPoint</comment>
+ <comment xml:lang="de">PowerPoint-Präsentation</comment>
+ <comment xml:lang="da">PowerPoint-præsentation</comment>
+ <comment xml:lang="cs">prezentace PowerPoint</comment>
+ <comment xml:lang="ca">presentació de PowerPoint</comment>
+ <comment xml:lang="bg">Презентация — PowerPoint</comment>
+ <comment xml:lang="be@latin">Prezentacyja PowerPoint</comment>
+ <comment xml:lang="be">прэзентацыя PowerPoint</comment>
+ <comment xml:lang="ar">عرض تقديمي بوربوينت</comment>
+ <comment xml:lang="af">PowerPoint-voorlegging</comment>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.ppsm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.slideshow"/>
</mime-type>
<mime-type type="application/vnd.ms-powerpoint.template.macroEnabled.12">
<comment>PowerPoint presentation template</comment>
- <comment xml:lang="ast">Plantía de presentaciones de PowerPoint</comment>
- <comment xml:lang="ca">plantilla de presentació de PowerPoint</comment>
- <comment xml:lang="cs">šablona prezentace PowerPoint</comment>
- <comment xml:lang="da">PowerPoint-præsentationsskabelon</comment>
- <comment xml:lang="de">PowerPoint-Präsentationsvorlage</comment>
- <comment xml:lang="el">Πρότυπο παρουσίασης PowerPoint</comment>
- <comment xml:lang="en_GB">PowerPoint presentation template</comment>
- <comment xml:lang="es">plantilla de presentación de PowerPoint</comment>
- <comment xml:lang="eu">PowerPoint aurkezpen txantiloia</comment>
- <comment xml:lang="fi">PowerPoint-esitysmalli</comment>
- <comment xml:lang="fr">modèle de présentation PowerPoint</comment>
- <comment xml:lang="ga">teimpléad láithreoireachta PowerPoint</comment>
- <comment xml:lang="he">תבנית מצגת PowerPoint</comment>
- <comment xml:lang="hr">Predložak PowerPoint prezentacije</comment>
- <comment xml:lang="hu">PowerPoint bemutatósablon</comment>
- <comment xml:lang="ia">Patrono de presentation PowerPoint</comment>
- <comment xml:lang="id">Templat presentasi PowerPoint</comment>
- <comment xml:lang="it">Modello presentazione PowerPoint</comment>
- <comment xml:lang="kk">PowerPoint презентация үлгісі</comment>
- <comment xml:lang="ko">PowerPoint 프리젠테이션 서식</comment>
- <comment xml:lang="oc">Modèl de presentacion PowerPoint</comment>
- <comment xml:lang="pl">Szablon prezentacji PowerPoint</comment>
- <comment xml:lang="pt">modelo de apresentação PowerPoint</comment>
- <comment xml:lang="pt_BR">Modelo de apresentação do PowerPoint</comment>
- <comment xml:lang="ru">Шаблон презентации PowerPoint</comment>
- <comment xml:lang="sk">Šablóna prezentácie aplikácie PowerPoint</comment>
- <comment xml:lang="sr">Шаблон презентације Пауер поинта</comment>
- <comment xml:lang="sv">PowerPoint-presentationsmall</comment>
- <comment xml:lang="tr">PowerPoint sunum şablonu</comment>
- <comment xml:lang="uk">шаблон презентації PowerPoint</comment>
- <comment xml:lang="zh_CN">PowerPoint 演示文稿模板</comment>
<comment xml:lang="zh_TW">PowerPoint 簡報範本</comment>
+ <comment xml:lang="zh_CN">PowerPoint 演示文稿模板</comment>
+ <comment xml:lang="uk">шаблон презентації PowerPoint</comment>
+ <comment xml:lang="tr">PowerPoint sunum şablonu</comment>
+ <comment xml:lang="sv">PowerPoint-presentationsmall</comment>
+ <comment xml:lang="sr">Шаблон презентације Пауер поинта</comment>
+ <comment xml:lang="sq">gjedhe paraqitjeje PowerPoint</comment>
+ <comment xml:lang="sl">Predloga predstavitve PowerPoint</comment>
+ <comment xml:lang="si">PowerPoint ඉදිරිපත් කිරීමේ අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna prezentácie aplikácie PowerPoint</comment>
+ <comment xml:lang="ru">Шаблон презентации PowerPoint</comment>
+ <comment xml:lang="pt_BR">Modelo de apresentação do PowerPoint</comment>
+ <comment xml:lang="pt">predefinição de apresentação PowerPoint</comment>
+ <comment xml:lang="pl">Szablon prezentacji PowerPoint</comment>
+ <comment xml:lang="oc">Modèl de presentacion PowerPoint</comment>
+ <comment xml:lang="nl">PowerPoint-presentatiesjabloon</comment>
+ <comment xml:lang="ko">PowerPoint 프레젠테이션 서식</comment>
+ <comment xml:lang="kk">PowerPoint презентация үлгісі</comment>
+ <comment xml:lang="ja">PowerPoint プレゼンテーションテンプレート</comment>
+ <comment xml:lang="it">Modello presentazione PowerPoint</comment>
+ <comment xml:lang="is">PowerPoint sniðmát fyrir glærukynningu</comment>
+ <comment xml:lang="id">Templat presentasi PowerPoint</comment>
+ <comment xml:lang="ia">Patrono de presentation PowerPoint</comment>
+ <comment xml:lang="hu">PowerPoint bemutatósablon</comment>
+ <comment xml:lang="hr">Predložak PowerPoint prezentacije</comment>
+ <comment xml:lang="he">תבנית מצגת PowerPoint</comment>
+ <comment xml:lang="gl">Modelo de presentación de PowerPoint</comment>
+ <comment xml:lang="ga">teimpléad láithreoireachta PowerPoint</comment>
+ <comment xml:lang="fur">model di presentazion PowerPoint</comment>
+ <comment xml:lang="fr">modèle de présentation PowerPoint</comment>
+ <comment xml:lang="fi">PowerPoint-esitysmalli</comment>
+ <comment xml:lang="eu">PowerPoint aurkezpen txantiloia</comment>
+ <comment xml:lang="es">plantilla de presentación de PowerPoint</comment>
+ <comment xml:lang="en_GB">PowerPoint presentation template</comment>
+ <comment xml:lang="el">Πρότυπο παρουσίασης PowerPoint</comment>
+ <comment xml:lang="de">PowerPoint-Präsentationsvorlage</comment>
+ <comment xml:lang="da">PowerPoint-præsentationsskabelon</comment>
+ <comment xml:lang="cs">šablona prezentace PowerPoint</comment>
+ <comment xml:lang="ca">plantilla de presentació de PowerPoint</comment>
+ <comment xml:lang="bg">Шаблон за презентация — PowerPoint</comment>
+ <comment xml:lang="be">шаблон прэзентацыі PowerPoint</comment>
+ <comment xml:lang="ast">Plantía de presentaciones de PowerPoint</comment>
+ <comment xml:lang="ar">قالب عرض بوربوينت</comment>
+ <comment xml:lang="af">PowerPoint-voorleggingsjabloon</comment>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.potm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.presentationml.template"/>
</mime-type>
- <mime-type type="application/vnd.ms-visio.drawing.main+xml">
- <comment>Office Open XML Visio Drawing</comment>
- <comment xml:lang="ca">dibuix en Office Open XML de Visio</comment>
- <comment xml:lang="cs">kresba Office Open XML Visio</comment>
- <comment xml:lang="da">Office Open XML Visio-tegning</comment>
- <comment xml:lang="de">Office-Open-XML-Visio-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Office Open XML Visio</comment>
- <comment xml:lang="en_GB">Office Open XML Visio Drawing</comment>
- <comment xml:lang="es">dibujo en OOXML de Visio</comment>
- <comment xml:lang="eu">Office Open XML Visio marrazkia</comment>
- <comment xml:lang="fi">Office Open XML Visio -piirros</comment>
- <comment xml:lang="fr">dessin Visio Office Open XML</comment>
- <comment xml:lang="ga">Líníocht Office Open XML Visio</comment>
- <comment xml:lang="he">ציור Visio ב־Open XML מבית Office</comment>
- <comment xml:lang="hr">Office Open XML Visio crtež</comment>
- <comment xml:lang="hu">Office Open XML Visio rajz</comment>
- <comment xml:lang="ia">Designo Office Open XML Visio</comment>
- <comment xml:lang="id">Gambar Visio Office Open XML</comment>
- <comment xml:lang="it">Disegno Visio Office Open XML</comment>
- <comment xml:lang="kk">Office Open XML Visio суреті</comment>
- <comment xml:lang="ko">오피스 오픈 XML 비지오 드로잉</comment>
- <comment xml:lang="pl">Rysunek Office Open XML Visio</comment>
- <comment xml:lang="pt">desenho Office Open XML Visio</comment>
- <comment xml:lang="pt_BR">Desenho do Visio em Office Open XML</comment>
- <comment xml:lang="ru">Рисунок Visio формата Office Open XML</comment>
- <comment xml:lang="sk">Kresba aplikácie Visio Office Open XML</comment>
- <comment xml:lang="sr">Офисов отворени ИксМЛ Визио цртеж</comment>
- <comment xml:lang="sv">Office Open XML Visio-teckning</comment>
- <comment xml:lang="tr">Office Open XML Visio Çizimi</comment>
- <comment xml:lang="uk">схема VIisio у форматі Office Open XML</comment>
- <comment xml:lang="zh_CN">Office Open XML Visio 绘图</comment>
+ <mime-type type="application/vnd.ms-visio.drawing.main+xml">
+ <comment>Office Open XML Visio drawing</comment>
<comment xml:lang="zh_TW">Office Open XML Visio 繪圖</comment>
+ <comment xml:lang="zh_CN">Office Open XML Visio 绘图</comment>
+ <comment xml:lang="uk">малюнок Visio Office Open у XML</comment>
+ <comment xml:lang="tr">Office Open XML Visio çizimi</comment>
+ <comment xml:lang="sv">Office Open XML Visio-ritning</comment>
+ <comment xml:lang="sq">vizatim Office Open XML Visio</comment>
+ <comment xml:lang="sl">Risba Office Open XML Visio</comment>
+ <comment xml:lang="si">කාර්යාල විවෘත XML Visio ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba aplikácie Office Open XML Visio</comment>
+ <comment xml:lang="ru">Рисунок Visio формата Office Open XML</comment>
+ <comment xml:lang="pt_BR">Desenho do Office Open XML Visio</comment>
+ <comment xml:lang="pt">desenho Visio do Open Office XML</comment>
+ <comment xml:lang="pl">Rysunek Office Open XML Visio</comment>
+ <comment xml:lang="nl">Office Open XML Visio-tekening</comment>
+ <comment xml:lang="ko">오피스 오픈 XML Visio 드로잉</comment>
+ <comment xml:lang="kk">Office Open XML Visio суреті</comment>
+ <comment xml:lang="ja">Office Open XML Visio ドロー</comment>
+ <comment xml:lang="it">Disegno Visio Office Open XML</comment>
+ <comment xml:lang="is">Office Open XML Visio teikning</comment>
+ <comment xml:lang="id">Gambar Office Open XML Visio</comment>
+ <comment xml:lang="hu">Office Open XML Visio rajz</comment>
+ <comment xml:lang="hr">Office Open XML Visio crtež</comment>
+ <comment xml:lang="he">ציור Office Open XML Visio</comment>
+ <comment xml:lang="gl">Debuxo de Office Open XML Visio</comment>
+ <comment xml:lang="fr">dessin Visio Office Open XML</comment>
+ <comment xml:lang="fi">Office Open XML Visio -piirros</comment>
+ <comment xml:lang="eu">Office Open XML Visio marrazkia</comment>
+ <comment xml:lang="es">dibujo Office Open XML de Visio</comment>
+ <comment xml:lang="en_GB">Office Open XML Visio drawing</comment>
+ <comment xml:lang="de">Office-Open-XML-Visio-Zeichnung</comment>
+ <comment xml:lang="da">Office Open XML Visio-tegning</comment>
+ <comment xml:lang="ca">dibuix en Office Open XML de Visio</comment>
+ <comment xml:lang="bg">Чертеж — Office Open XML Visio</comment>
+ <comment xml:lang="be">рысунак Office Open XML Visio</comment>
+ <comment xml:lang="ar">رسم فيزيو Open XML</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.vsdx"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/vnd.ms-visio.template.main+xml">
- <comment>Office Open XML Visio Template</comment>
- <comment xml:lang="ca">plantilla en Office Open XML de Visio</comment>
- <comment xml:lang="cs">šablona Office Open XML Visio</comment>
- <comment xml:lang="da">Office Open XML Visio-skabelon</comment>
- <comment xml:lang="de">Office-Open-XML-Visio-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο Office Open XML Visio</comment>
- <comment xml:lang="en_GB">Office Open XML Visio Template</comment>
- <comment xml:lang="es">plantilla en OOXML de Visio</comment>
- <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
- <comment xml:lang="fi">Office Open XML Visio -malli</comment>
- <comment xml:lang="fr">modèle Visio Office Open XML</comment>
- <comment xml:lang="ga">Teimpléad Office Open XML Visio</comment>
- <comment xml:lang="he">תבנית Visio ב־Open XML מבית Office</comment>
- <comment xml:lang="hr">Predložak Office Open XML Visio</comment>
- <comment xml:lang="hu">Office Open XML Visio sablon</comment>
- <comment xml:lang="ia">Patrono Office Open XML Visio</comment>
- <comment xml:lang="id">Templat Visio Office Open XML</comment>
- <comment xml:lang="it">Modello Visio Office Open XML</comment>
- <comment xml:lang="kk">Office Open XML Visio үлгісі</comment>
- <comment xml:lang="ko">오피스 오픈 XML 비지오 서식</comment>
- <comment xml:lang="pl">Szablon Office Open XML Visio</comment>
- <comment xml:lang="pt">modelo Office Open XML Visio</comment>
- <comment xml:lang="pt_BR">Modelo do Visio em Office Open XML</comment>
- <comment xml:lang="ru">Шаблон Visio формата Office Open XML</comment>
- <comment xml:lang="sk">Šablóna aplikácie Visio Office Open XML</comment>
- <comment xml:lang="sr">Офисов отворени ИксМЛ Визио шаблон</comment>
- <comment xml:lang="sv">Office Open XML Visio-mall</comment>
- <comment xml:lang="tr">Office Open XML Visio Şablonu</comment>
- <comment xml:lang="uk">шаблон Visio у форматі Office Open XML</comment>
- <comment xml:lang="zh_CN">Office Open XML Visio 模板</comment>
+ <comment>Office Open XML Visio template</comment>
<comment xml:lang="zh_TW">Office Open XML Visio 範本</comment>
+ <comment xml:lang="zh_CN">Office Open XML Visio 模板</comment>
+ <comment xml:lang="uk">шаблон Visio Office Open у XML</comment>
+ <comment xml:lang="tr">Office Open XML Visio şablonu</comment>
+ <comment xml:lang="sv">Office Open XML Visio-mall</comment>
+ <comment xml:lang="sq">gjedhe Office Open XML Visio</comment>
+ <comment xml:lang="sl">Predloga Office Open XML Visio</comment>
+ <comment xml:lang="si">Office Open XML Visio අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna aplikácie Office Open XML Visio</comment>
+ <comment xml:lang="ru">Шаблон Visio формата Office Open XML</comment>
+ <comment xml:lang="pt_BR">Modelo Office Open XML Visio</comment>
+ <comment xml:lang="pt">predefinição Visio do Open Office XML</comment>
+ <comment xml:lang="pl">Szablon Office Open XML Visio</comment>
+ <comment xml:lang="nl">Office Open XML Visio-sjabloon</comment>
+ <comment xml:lang="ko">오피스 오픈 XML Visio 양식</comment>
+ <comment xml:lang="kk">Office Open XML Visio үлгісі</comment>
+ <comment xml:lang="ja">Office Open XML Visio テンプレート</comment>
+ <comment xml:lang="it">Modello Visio Office Open XML</comment>
+ <comment xml:lang="is">Office Open XML Visio sniðmát</comment>
+ <comment xml:lang="id">Templat Office Open XML Visio</comment>
+ <comment xml:lang="hu">Office Open XML Visio sablon</comment>
+ <comment xml:lang="hr">Office Open XML Visio predložak</comment>
+ <comment xml:lang="he">תבנית Office Open XML Visio</comment>
+ <comment xml:lang="gl">Modelo de Office Open XML Visio</comment>
+ <comment xml:lang="fr">modèle Visio Office Open XML</comment>
+ <comment xml:lang="fi">Office Open XML Visio -malli</comment>
+ <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
+ <comment xml:lang="es">plantilla Office Open XML de Visio</comment>
+ <comment xml:lang="en_GB">Office Open XML Visio template</comment>
+ <comment xml:lang="de">Office-Open-XML-Visio-Vorlage</comment>
+ <comment xml:lang="da">Office Open XML Visio-skabelon</comment>
+ <comment xml:lang="ca">plantilla en Office Open XML de Visio</comment>
+ <comment xml:lang="bg">Шаблон за чертеж — Office Open XML Visio</comment>
+ <comment xml:lang="be">шаблон Office Open XML Visio</comment>
+ <comment xml:lang="ar">قالب فيزيو Open XML</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.vstx"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/vnd.ms-visio.stencil.main+xml">
- <comment>Office Open XML Visio Stencil</comment>
- <comment xml:lang="ca">patró en Office Open XML de Visio</comment>
- <comment xml:lang="cs">objekty Office Open XML Visio</comment>
- <comment xml:lang="da">Office Open XML Visio-stencil</comment>
- <comment xml:lang="de">Office-Open-XML-Visio-Schablone</comment>
- <comment xml:lang="en_GB">Office Open XML Visio Stencil</comment>
- <comment xml:lang="es">esténcil en OOXML de Visio</comment>
- <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
- <comment xml:lang="fi">Office Open XML Visio -kaavio</comment>
- <comment xml:lang="fr">stencil Visio Office Open XML</comment>
- <comment xml:lang="ga">Stionsal Office Open XML Visio</comment>
- <comment xml:lang="he">דגם ל־Visio ב־Open XML מבית Office</comment>
- <comment xml:lang="hr">Office Open XML Visio šablona</comment>
- <comment xml:lang="hu">Office Open XML Visio stencil</comment>
- <comment xml:lang="ia">Stencil Office Open XML Visio</comment>
- <comment xml:lang="id">Stensil Visio Office Open XML</comment>
- <comment xml:lang="it">Stencil Visio Office Open XML</comment>
- <comment xml:lang="kk">Office Open XML пішімінің Visio трафареті</comment>
- <comment xml:lang="ko">오피스 오픈 XML 비지오 스텐실</comment>
- <comment xml:lang="pl">Wzór Office Open XML Visio</comment>
- <comment xml:lang="pt">Stencil Office Open XML Visio</comment>
- <comment xml:lang="pt_BR">Estêncil do Visio em Office Open XML</comment>
- <comment xml:lang="ru">Трафарет Visio формата Office Open XML</comment>
- <comment xml:lang="sk">Objekt aplikácie Visio Office Open XML</comment>
- <comment xml:lang="sr">Офисов отворени ИксМЛ Визио шаблон</comment>
- <comment xml:lang="sv">Office Open XML Visio-stencil</comment>
- <comment xml:lang="tr">Office Open XML Visio Kalıbı</comment>
- <comment xml:lang="uk">трафарет Visio у форматі Office Open XML</comment>
+ <comment>Office Open XML Visio stencil</comment>
<comment xml:lang="zh_CN">Office Open XML Visio 模具</comment>
- <comment xml:lang="zh_TW">Office Open XML Visio 圖形樣本</comment>
+ <comment xml:lang="uk">трафарет Visio Office Open у XML</comment>
+ <comment xml:lang="tr">Office Open XML Visio kalıbı</comment>
+ <comment xml:lang="sv">Office Open XML Visio-stencil</comment>
+ <comment xml:lang="sq">model Office Open XML Visio</comment>
+ <comment xml:lang="si">කාර්යාල විවෘත XML Visio ස්ටෙන්සිල්</comment>
+ <comment xml:lang="ru">Трафарет Visio формата Office Open XML</comment>
+ <comment xml:lang="pt_BR">Estêncil do Office Open XML Visio</comment>
+ <comment xml:lang="pt">estêncil Visio do Open Office XML</comment>
+ <comment xml:lang="pl">Wzór Office Open XML Visio</comment>
+ <comment xml:lang="nl">Office Open XML Visio-stencil</comment>
+ <comment xml:lang="ko">오피스 오픈 XML Visio 스텐실</comment>
+ <comment xml:lang="kk">Office Open XML Visio трафареті</comment>
+ <comment xml:lang="ja">Office Open XML Visio ステンシル</comment>
+ <comment xml:lang="it">Stencil Visio Office Open XML</comment>
+ <comment xml:lang="is">Office Open XML Visio stensill</comment>
+ <comment xml:lang="id">Stensil Office Open XML Visio</comment>
+ <comment xml:lang="hu">Office Open XML Visio stencil</comment>
+ <comment xml:lang="hr">Office Open XML Visio šablona</comment>
+ <comment xml:lang="he">סטנסיל ל־Visio ב־Open XML מבית Office</comment>
+ <comment xml:lang="gl">Pincel de de Office Open XML Visio</comment>
+ <comment xml:lang="fr">stencil Visio Office Open XML</comment>
+ <comment xml:lang="fi">Office Open XML Visio -malli</comment>
+ <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
+ <comment xml:lang="es">galería de símbolos Office Open XML de Visio</comment>
+ <comment xml:lang="en_GB">Office Open XML Visio stencil</comment>
+ <comment xml:lang="de">Office-Open-XML-Visio-Schablone</comment>
+ <comment xml:lang="da">Office Open XML Visio-stencil</comment>
+ <comment xml:lang="ca">patró en Office Open XML de Visio</comment>
+ <comment xml:lang="bg">Образци — Office Open XML Visio</comment>
+ <comment xml:lang="be">трафарэт Office Open XML Visio</comment>
+ <comment xml:lang="ar">شكل فيزيو Open XML</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.vssx"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/vnd.ms-visio.drawing.macroEnabled.main+xml">
- <comment>Office Open XML Visio Drawing</comment>
- <comment xml:lang="ca">dibuix en Office Open XML de Visio</comment>
- <comment xml:lang="cs">kresba Office Open XML Visio</comment>
- <comment xml:lang="da">Office Open XML Visio-tegning</comment>
- <comment xml:lang="de">Office-Open-XML-Visio-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Office Open XML Visio</comment>
- <comment xml:lang="en_GB">Office Open XML Visio Drawing</comment>
- <comment xml:lang="es">dibujo en OOXML de Visio</comment>
- <comment xml:lang="eu">Office Open XML Visio marrazkia</comment>
- <comment xml:lang="fi">Office Open XML Visio -piirros</comment>
- <comment xml:lang="fr">dessin Visio Office Open XML</comment>
- <comment xml:lang="ga">Líníocht Office Open XML Visio</comment>
- <comment xml:lang="he">ציור Visio ב־Open XML מבית Office</comment>
- <comment xml:lang="hr">Office Open XML Visio crtež</comment>
- <comment xml:lang="hu">Office Open XML Visio rajz</comment>
- <comment xml:lang="ia">Designo Office Open XML Visio</comment>
- <comment xml:lang="id">Gambar Visio Office Open XML</comment>
- <comment xml:lang="it">Disegno Visio Office Open XML</comment>
- <comment xml:lang="kk">Office Open XML Visio суреті</comment>
- <comment xml:lang="ko">오피스 오픈 XML 비지오 드로잉</comment>
- <comment xml:lang="pl">Rysunek Office Open XML Visio</comment>
- <comment xml:lang="pt">desenho Office Open XML Visio</comment>
- <comment xml:lang="pt_BR">Desenho do Visio em Office Open XML</comment>
- <comment xml:lang="ru">Рисунок Visio формата Office Open XML</comment>
- <comment xml:lang="sk">Kresba aplikácie Visio Office Open XML</comment>
- <comment xml:lang="sr">Офисов отворени ИксМЛ Визио цртеж</comment>
- <comment xml:lang="sv">Office Open XML Visio-teckning</comment>
- <comment xml:lang="tr">Office Open XML Visio Çizimi</comment>
- <comment xml:lang="uk">схема VIisio у форматі Office Open XML</comment>
- <comment xml:lang="zh_CN">Office Open XML Visio 绘图</comment>
+ <comment>Office Open XML Visio drawing</comment>
<comment xml:lang="zh_TW">Office Open XML Visio 繪圖</comment>
+ <comment xml:lang="zh_CN">Office Open XML Visio 绘图</comment>
+ <comment xml:lang="uk">малюнок Visio Office Open у XML</comment>
+ <comment xml:lang="tr">Office Open XML Visio çizimi</comment>
+ <comment xml:lang="sv">Office Open XML Visio-ritning</comment>
+ <comment xml:lang="sq">vizatim Office Open XML Visio</comment>
+ <comment xml:lang="sl">Risba Office Open XML Visio</comment>
+ <comment xml:lang="si">කාර්යාල විවෘත XML Visio ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba aplikácie Office Open XML Visio</comment>
+ <comment xml:lang="ru">Рисунок Visio формата Office Open XML</comment>
+ <comment xml:lang="pt_BR">Desenho do Office Open XML Visio</comment>
+ <comment xml:lang="pt">desenho Visio do Open Office XML</comment>
+ <comment xml:lang="pl">Rysunek Office Open XML Visio</comment>
+ <comment xml:lang="nl">Office Open XML Visio-tekening</comment>
+ <comment xml:lang="ko">오피스 오픈 XML Visio 드로잉</comment>
+ <comment xml:lang="kk">Office Open XML Visio суреті</comment>
+ <comment xml:lang="ja">Office Open XML Visio ドロー</comment>
+ <comment xml:lang="it">Disegno Visio Office Open XML</comment>
+ <comment xml:lang="is">Office Open XML Visio teikning</comment>
+ <comment xml:lang="id">Gambar Office Open XML Visio</comment>
+ <comment xml:lang="hu">Office Open XML Visio rajz</comment>
+ <comment xml:lang="hr">Office Open XML Visio crtež</comment>
+ <comment xml:lang="he">ציור Office Open XML Visio</comment>
+ <comment xml:lang="gl">Debuxo de Office Open XML Visio</comment>
+ <comment xml:lang="fr">dessin Visio Office Open XML</comment>
+ <comment xml:lang="fi">Office Open XML Visio -piirros</comment>
+ <comment xml:lang="eu">Office Open XML Visio marrazkia</comment>
+ <comment xml:lang="es">dibujo Office Open XML de Visio</comment>
+ <comment xml:lang="en_GB">Office Open XML Visio drawing</comment>
+ <comment xml:lang="de">Office-Open-XML-Visio-Zeichnung</comment>
+ <comment xml:lang="da">Office Open XML Visio-tegning</comment>
+ <comment xml:lang="ca">dibuix en Office Open XML de Visio</comment>
+ <comment xml:lang="bg">Чертеж — Office Open XML Visio</comment>
+ <comment xml:lang="be">рысунак Office Open XML Visio</comment>
+ <comment xml:lang="ar">رسم فيزيو Open XML</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.vsdm"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/vnd.ms-visio.template.macroEnabled.main+xml">
- <comment>Office Open XML Visio Template</comment>
- <comment xml:lang="ca">plantilla en Office Open XML de Visio</comment>
- <comment xml:lang="cs">šablona Office Open XML Visio</comment>
- <comment xml:lang="da">Office Open XML Visio-skabelon</comment>
- <comment xml:lang="de">Office-Open-XML-Visio-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο Office Open XML Visio</comment>
- <comment xml:lang="en_GB">Office Open XML Visio Template</comment>
- <comment xml:lang="es">plantilla en OOXML de Visio</comment>
- <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
- <comment xml:lang="fi">Office Open XML Visio -malli</comment>
- <comment xml:lang="fr">modèle Visio Office Open XML</comment>
- <comment xml:lang="ga">Teimpléad Office Open XML Visio</comment>
- <comment xml:lang="he">תבנית Visio ב־Open XML מבית Office</comment>
- <comment xml:lang="hr">Predložak Office Open XML Visio</comment>
- <comment xml:lang="hu">Office Open XML Visio sablon</comment>
- <comment xml:lang="ia">Patrono Office Open XML Visio</comment>
- <comment xml:lang="id">Templat Visio Office Open XML</comment>
- <comment xml:lang="it">Modello Visio Office Open XML</comment>
- <comment xml:lang="kk">Office Open XML Visio үлгісі</comment>
- <comment xml:lang="ko">오피스 오픈 XML 비지오 서식</comment>
- <comment xml:lang="pl">Szablon Office Open XML Visio</comment>
- <comment xml:lang="pt">modelo Office Open XML Visio</comment>
- <comment xml:lang="pt_BR">Modelo do Visio em Office Open XML</comment>
- <comment xml:lang="ru">Шаблон Visio формата Office Open XML</comment>
- <comment xml:lang="sk">Šablóna aplikácie Visio Office Open XML</comment>
- <comment xml:lang="sr">Офисов отворени ИксМЛ Визио шаблон</comment>
- <comment xml:lang="sv">Office Open XML Visio-mall</comment>
- <comment xml:lang="tr">Office Open XML Visio Şablonu</comment>
- <comment xml:lang="uk">шаблон Visio у форматі Office Open XML</comment>
- <comment xml:lang="zh_CN">Office Open XML Visio 模板</comment>
+ <comment>Office Open XML Visio template</comment>
<comment xml:lang="zh_TW">Office Open XML Visio 範本</comment>
+ <comment xml:lang="zh_CN">Office Open XML Visio 模板</comment>
+ <comment xml:lang="uk">шаблон Visio Office Open у XML</comment>
+ <comment xml:lang="tr">Office Open XML Visio şablonu</comment>
+ <comment xml:lang="sv">Office Open XML Visio-mall</comment>
+ <comment xml:lang="sq">gjedhe Office Open XML Visio</comment>
+ <comment xml:lang="sl">Predloga Office Open XML Visio</comment>
+ <comment xml:lang="si">Office Open XML Visio අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna aplikácie Office Open XML Visio</comment>
+ <comment xml:lang="ru">Шаблон Visio формата Office Open XML</comment>
+ <comment xml:lang="pt_BR">Modelo Office Open XML Visio</comment>
+ <comment xml:lang="pt">predefinição Visio do Open Office XML</comment>
+ <comment xml:lang="pl">Szablon Office Open XML Visio</comment>
+ <comment xml:lang="nl">Office Open XML Visio-sjabloon</comment>
+ <comment xml:lang="ko">오피스 오픈 XML Visio 양식</comment>
+ <comment xml:lang="kk">Office Open XML Visio үлгісі</comment>
+ <comment xml:lang="ja">Office Open XML Visio テンプレート</comment>
+ <comment xml:lang="it">Modello Visio Office Open XML</comment>
+ <comment xml:lang="is">Office Open XML Visio sniðmát</comment>
+ <comment xml:lang="id">Templat Office Open XML Visio</comment>
+ <comment xml:lang="hu">Office Open XML Visio sablon</comment>
+ <comment xml:lang="hr">Office Open XML Visio predložak</comment>
+ <comment xml:lang="he">תבנית Office Open XML Visio</comment>
+ <comment xml:lang="gl">Modelo de Office Open XML Visio</comment>
+ <comment xml:lang="fr">modèle Visio Office Open XML</comment>
+ <comment xml:lang="fi">Office Open XML Visio -malli</comment>
+ <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
+ <comment xml:lang="es">plantilla Office Open XML de Visio</comment>
+ <comment xml:lang="en_GB">Office Open XML Visio template</comment>
+ <comment xml:lang="de">Office-Open-XML-Visio-Vorlage</comment>
+ <comment xml:lang="da">Office Open XML Visio-skabelon</comment>
+ <comment xml:lang="ca">plantilla en Office Open XML de Visio</comment>
+ <comment xml:lang="bg">Шаблон за чертеж — Office Open XML Visio</comment>
+ <comment xml:lang="be">шаблон Office Open XML Visio</comment>
+ <comment xml:lang="ar">قالب فيزيو Open XML</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.vstm"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/vnd.ms-visio.stencil.macroEnabled.main+xml">
- <comment>Office Open XML Visio Stencil</comment>
- <comment xml:lang="ca">patró en Office Open XML de Visio</comment>
- <comment xml:lang="cs">objekty Office Open XML Visio</comment>
- <comment xml:lang="da">Office Open XML Visio-stencil</comment>
- <comment xml:lang="de">Office-Open-XML-Visio-Schablone</comment>
- <comment xml:lang="en_GB">Office Open XML Visio Stencil</comment>
- <comment xml:lang="es">esténcil en OOXML de Visio</comment>
- <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
- <comment xml:lang="fi">Office Open XML Visio -kaavio</comment>
- <comment xml:lang="fr">stencil Visio Office Open XML</comment>
- <comment xml:lang="ga">Stionsal Office Open XML Visio</comment>
- <comment xml:lang="he">דגם ל־Visio ב־Open XML מבית Office</comment>
- <comment xml:lang="hr">Office Open XML Visio šablona</comment>
- <comment xml:lang="hu">Office Open XML Visio stencil</comment>
- <comment xml:lang="ia">Stencil Office Open XML Visio</comment>
- <comment xml:lang="id">Stensil Visio Office Open XML</comment>
- <comment xml:lang="it">Stencil Visio Office Open XML</comment>
- <comment xml:lang="kk">Office Open XML пішімінің Visio трафареті</comment>
- <comment xml:lang="ko">오피스 오픈 XML 비지오 스텐실</comment>
- <comment xml:lang="pl">Wzór Office Open XML Visio</comment>
- <comment xml:lang="pt">Stencil Office Open XML Visio</comment>
- <comment xml:lang="pt_BR">Estêncil do Visio em Office Open XML</comment>
- <comment xml:lang="ru">Трафарет Visio формата Office Open XML</comment>
- <comment xml:lang="sk">Objekt aplikácie Visio Office Open XML</comment>
- <comment xml:lang="sr">Офисов отворени ИксМЛ Визио шаблон</comment>
- <comment xml:lang="sv">Office Open XML Visio-stencil</comment>
- <comment xml:lang="tr">Office Open XML Visio Kalıbı</comment>
- <comment xml:lang="uk">трафарет Visio у форматі Office Open XML</comment>
+ <comment>Office Open XML Visio stencil</comment>
<comment xml:lang="zh_CN">Office Open XML Visio 模具</comment>
- <comment xml:lang="zh_TW">Office Open XML Visio 圖形樣本</comment>
+ <comment xml:lang="uk">трафарет Visio Office Open у XML</comment>
+ <comment xml:lang="tr">Office Open XML Visio kalıbı</comment>
+ <comment xml:lang="sv">Office Open XML Visio-stencil</comment>
+ <comment xml:lang="sq">model Office Open XML Visio</comment>
+ <comment xml:lang="si">කාර්යාල විවෘත XML Visio ස්ටෙන්සිල්</comment>
+ <comment xml:lang="ru">Трафарет Visio формата Office Open XML</comment>
+ <comment xml:lang="pt_BR">Estêncil do Office Open XML Visio</comment>
+ <comment xml:lang="pt">estêncil Visio do Open Office XML</comment>
+ <comment xml:lang="pl">Wzór Office Open XML Visio</comment>
+ <comment xml:lang="nl">Office Open XML Visio-stencil</comment>
+ <comment xml:lang="ko">오피스 오픈 XML Visio 스텐실</comment>
+ <comment xml:lang="kk">Office Open XML Visio трафареті</comment>
+ <comment xml:lang="ja">Office Open XML Visio ステンシル</comment>
+ <comment xml:lang="it">Stencil Visio Office Open XML</comment>
+ <comment xml:lang="is">Office Open XML Visio stensill</comment>
+ <comment xml:lang="id">Stensil Office Open XML Visio</comment>
+ <comment xml:lang="hu">Office Open XML Visio stencil</comment>
+ <comment xml:lang="hr">Office Open XML Visio šablona</comment>
+ <comment xml:lang="he">סטנסיל ל־Visio ב־Open XML מבית Office</comment>
+ <comment xml:lang="gl">Pincel de de Office Open XML Visio</comment>
+ <comment xml:lang="fr">stencil Visio Office Open XML</comment>
+ <comment xml:lang="fi">Office Open XML Visio -malli</comment>
+ <comment xml:lang="eu">Office Open XML Visio txantiloia</comment>
+ <comment xml:lang="es">galería de símbolos Office Open XML de Visio</comment>
+ <comment xml:lang="en_GB">Office Open XML Visio stencil</comment>
+ <comment xml:lang="de">Office-Open-XML-Visio-Schablone</comment>
+ <comment xml:lang="da">Office Open XML Visio-stencil</comment>
+ <comment xml:lang="ca">patró en Office Open XML de Visio</comment>
+ <comment xml:lang="bg">Образци — Office Open XML Visio</comment>
+ <comment xml:lang="be">трафарэт Office Open XML Visio</comment>
+ <comment xml:lang="ar">شكل فيزيو Open XML</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.vssm"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/vnd.ms-word.document.macroEnabled.12">
<comment>Word document</comment>
- <comment xml:lang="ar">مستند Word</comment>
- <comment xml:lang="ast">Documentu de Word</comment>
- <comment xml:lang="be@latin">Dakument Word</comment>
- <comment xml:lang="bg">Документ — Word</comment>
- <comment xml:lang="ca">document Word</comment>
- <comment xml:lang="cs">dokument Word</comment>
- <comment xml:lang="da">Worddokument</comment>
- <comment xml:lang="de">Word-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Word</comment>
- <comment xml:lang="en_GB">Word document</comment>
- <comment xml:lang="eo">Word-dokumento</comment>
- <comment xml:lang="es">documento de Word</comment>
- <comment xml:lang="eu">Word dokumentua</comment>
- <comment xml:lang="fi">Word-asiakirja</comment>
- <comment xml:lang="fo">Word skjal</comment>
- <comment xml:lang="fr">document Word</comment>
- <comment xml:lang="ga">cáipéis Word</comment>
- <comment xml:lang="gl">documento de Word</comment>
- <comment xml:lang="he">מסמך Word</comment>
- <comment xml:lang="hr">Word dokument</comment>
- <comment xml:lang="hu">Word dokumentum</comment>
- <comment xml:lang="ia">Documento Word</comment>
- <comment xml:lang="id">Dokumen Word</comment>
- <comment xml:lang="it">Documento Word</comment>
- <comment xml:lang="ja">Word ドキュメント</comment>
- <comment xml:lang="kk">Word құжаты</comment>
- <comment xml:lang="ko">Word 문서</comment>
- <comment xml:lang="lt">Word dokumentas</comment>
- <comment xml:lang="lv">Word dokuments</comment>
- <comment xml:lang="nb">Word-dokument</comment>
- <comment xml:lang="nl">Word-document</comment>
- <comment xml:lang="nn">Word-dokument</comment>
- <comment xml:lang="oc">document Word</comment>
- <comment xml:lang="pl">Dokument Word</comment>
- <comment xml:lang="pt">documento Word</comment>
- <comment xml:lang="pt_BR">Documento do Word</comment>
- <comment xml:lang="ro">Document Word</comment>
- <comment xml:lang="ru">Документ Word</comment>
- <comment xml:lang="sk">Dokument Word</comment>
- <comment xml:lang="sl">Dokument Word</comment>
- <comment xml:lang="sq">Dokument Word</comment>
- <comment xml:lang="sr">Ворд документ</comment>
- <comment xml:lang="sv">Word-dokument</comment>
- <comment xml:lang="tr">Word belgesi</comment>
- <comment xml:lang="uk">документ Word</comment>
- <comment xml:lang="vi">Tài liệu Word</comment>
- <comment xml:lang="zh_CN">Word 文档</comment>
<comment xml:lang="zh_TW">Word 文件</comment>
+ <comment xml:lang="zh_CN">Word 文档</comment>
+ <comment xml:lang="vi">Tài liệu Word</comment>
+ <comment xml:lang="uk">документ Word</comment>
+ <comment xml:lang="tr">Word belgesi</comment>
+ <comment xml:lang="sv">Word-dokument</comment>
+ <comment xml:lang="sr">Ворд документ</comment>
+ <comment xml:lang="sq">dokument Word</comment>
+ <comment xml:lang="sl">Dokument Word</comment>
+ <comment xml:lang="si">වචන ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Word</comment>
+ <comment xml:lang="ru">Документ Word</comment>
+ <comment xml:lang="ro">Document Word</comment>
+ <comment xml:lang="pt_BR">Documento do Word</comment>
+ <comment xml:lang="pt">documento Word</comment>
+ <comment xml:lang="pl">Dokument Word</comment>
+ <comment xml:lang="oc">document Word</comment>
+ <comment xml:lang="nn">Word-dokument</comment>
+ <comment xml:lang="nl">Word-document</comment>
+ <comment xml:lang="nb">Word-dokument</comment>
+ <comment xml:lang="lv">Word dokuments</comment>
+ <comment xml:lang="lt">Word dokumentas</comment>
+ <comment xml:lang="ko">Word 문서</comment>
+ <comment xml:lang="kk">Word құжаты</comment>
+ <comment xml:lang="ka">Word -ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Word ドキュメント</comment>
+ <comment xml:lang="it">Documento Word</comment>
+ <comment xml:lang="is">Word skjal</comment>
+ <comment xml:lang="id">Dokumen Word</comment>
+ <comment xml:lang="ia">Documento Word</comment>
+ <comment xml:lang="hu">Word dokumentum</comment>
+ <comment xml:lang="hr">Word dokument</comment>
+ <comment xml:lang="he">מסמך Word</comment>
+ <comment xml:lang="gl">documento de Word</comment>
+ <comment xml:lang="ga">cáipéis Word</comment>
+ <comment xml:lang="fur">document Word</comment>
+ <comment xml:lang="fr">document Word</comment>
+ <comment xml:lang="fo">Word skjal</comment>
+ <comment xml:lang="fi">Word-asiakirja</comment>
+ <comment xml:lang="eu">Word dokumentua</comment>
+ <comment xml:lang="es">documento de Word</comment>
+ <comment xml:lang="eo">Word-dokumento</comment>
+ <comment xml:lang="en_GB">Word document</comment>
+ <comment xml:lang="el">Έγγραφο Word</comment>
+ <comment xml:lang="de">Word-Dokument</comment>
+ <comment xml:lang="da">Worddokument</comment>
+ <comment xml:lang="cs">dokument Word</comment>
+ <comment xml:lang="ca">document Word</comment>
+ <comment xml:lang="bg">Документ — Word</comment>
+ <comment xml:lang="be@latin">Dakument Word</comment>
+ <comment xml:lang="be">дакумент Word</comment>
+ <comment xml:lang="ast">Documentu de Word</comment>
+ <comment xml:lang="ar">مستند ورد</comment>
+ <comment xml:lang="af">Word-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.docm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.wordprocessingml.document"/>
</mime-type>
<mime-type type="application/vnd.ms-word.template.macroEnabled.12">
<comment>Word document template</comment>
- <comment xml:lang="ast">Plantía de documentu de Word</comment>
- <comment xml:lang="ca">plantilla de document Word</comment>
- <comment xml:lang="cs">šablona dokumentu Word</comment>
- <comment xml:lang="da">Word-dokumentskabelon</comment>
- <comment xml:lang="de">Word-Dokumentvorlage</comment>
- <comment xml:lang="el">Πρότυπο έγγραφο Word</comment>
- <comment xml:lang="en_GB">Word document template</comment>
- <comment xml:lang="es">plantilla de documento de Word</comment>
- <comment xml:lang="eu">Word dokumentuaren txantiloia</comment>
- <comment xml:lang="fi">Word-asiakirjamalli</comment>
- <comment xml:lang="fr">modèle de document Word</comment>
- <comment xml:lang="ga">teimpléad Word</comment>
- <comment xml:lang="he">תבנית מסמך Word</comment>
- <comment xml:lang="hr">Predložak Word dokumenta</comment>
- <comment xml:lang="hu">Word dokumentumsablon</comment>
- <comment xml:lang="ia">Patrono de documento Word</comment>
- <comment xml:lang="id">Templat dokumen Word</comment>
- <comment xml:lang="it">Modello documento Word</comment>
- <comment xml:lang="kk">Word құжатының үлгісі</comment>
- <comment xml:lang="ko">Word 문서 서식</comment>
- <comment xml:lang="oc">modèl de document Word</comment>
- <comment xml:lang="pl">Szablon dokumentu Word</comment>
- <comment xml:lang="pt">modelo de documento Word</comment>
- <comment xml:lang="pt_BR">Modelo de documento do Word</comment>
- <comment xml:lang="ru">Шаблон документа Word</comment>
- <comment xml:lang="sk">Šablóna dokumentu aplikácie Word</comment>
- <comment xml:lang="sr">Шаблон Ворд документа</comment>
- <comment xml:lang="sv">Word-dokumentmall</comment>
- <comment xml:lang="tr">Word belgesi şablonu</comment>
- <comment xml:lang="uk">шаблон документа Word</comment>
- <comment xml:lang="zh_CN">Word 文档模板</comment>
<comment xml:lang="zh_TW">Word 文件範本</comment>
+ <comment xml:lang="zh_CN">Word 文档模板</comment>
+ <comment xml:lang="uk">шаблон документа Word</comment>
+ <comment xml:lang="tr">Word belgesi şablonu</comment>
+ <comment xml:lang="sv">Word-dokumentmall</comment>
+ <comment xml:lang="sr">Шаблон Ворд документа</comment>
+ <comment xml:lang="sq">gjedhe dokumenti Word</comment>
+ <comment xml:lang="sl">Predloga dokumenta Word</comment>
+ <comment xml:lang="si">වචන ලේඛන ආකෘතිය</comment>
+ <comment xml:lang="sk">Šablóna dokumentu aplikácie Word</comment>
+ <comment xml:lang="ru">Шаблон документа Word</comment>
+ <comment xml:lang="pt_BR">Modelo de documento do Word</comment>
+ <comment xml:lang="pt">modelo de documento Word</comment>
+ <comment xml:lang="pl">Szablon dokumentu Word</comment>
+ <comment xml:lang="oc">modèl de document Word</comment>
+ <comment xml:lang="nl">Word-documentsjabloon</comment>
+ <comment xml:lang="ko">Word 문서 서식</comment>
+ <comment xml:lang="kk">Word құжатының үлгісі</comment>
+ <comment xml:lang="ja">Word ドキュメントテンプレート</comment>
+ <comment xml:lang="it">Modello documento Word</comment>
+ <comment xml:lang="is">Word sniðmát fyrir textaskjal</comment>
+ <comment xml:lang="id">Templat dokumen Word</comment>
+ <comment xml:lang="ia">Patrono de documento Word</comment>
+ <comment xml:lang="hu">Word dokumentumsablon</comment>
+ <comment xml:lang="hr">Predložak Word dokumenta</comment>
+ <comment xml:lang="he">תבנית מסמך Word</comment>
+ <comment xml:lang="gl">Modelo de documento Word</comment>
+ <comment xml:lang="ga">teimpléad Word</comment>
+ <comment xml:lang="fur">model di document Word</comment>
+ <comment xml:lang="fr">modèle de document Word</comment>
+ <comment xml:lang="fi">Word-asiakirjamalli</comment>
+ <comment xml:lang="eu">Word dokumentuaren txantiloia</comment>
+ <comment xml:lang="es">plantilla de documento de Word</comment>
+ <comment xml:lang="en_GB">Word document template</comment>
+ <comment xml:lang="el">Πρότυπο έγγραφο Word</comment>
+ <comment xml:lang="de">Word-Dokumentvorlage</comment>
+ <comment xml:lang="da">Word-dokumentskabelon</comment>
+ <comment xml:lang="cs">šablona dokumentu Word</comment>
+ <comment xml:lang="ca">plantilla de document Word</comment>
+ <comment xml:lang="bg">Шаблон за документ — Word</comment>
+ <comment xml:lang="be">шаблон дакумента Word</comment>
+ <comment xml:lang="ast">Plantía de documentu de Word</comment>
+ <comment xml:lang="ar">قالب مستند ورد</comment>
+ <comment xml:lang="af">Word-dokumentsjabloon</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.dotm"/>
<sub-class-of type="application/vnd.openxmlformats-officedocument.wordprocessingml.template"/>
</mime-type>
<mime-type type="application/oxps">
+ <comment>OpenXPS document</comment>
+ <comment xml:lang="zh_TW">OpenXPS 文件</comment>
+ <comment xml:lang="zh_CN">OpenXPS 文档</comment>
+ <comment xml:lang="uk">документ OpenXPS</comment>
+ <comment xml:lang="tr">OpenXPS belgesi</comment>
+ <comment xml:lang="sv">OpenXPS-dokument</comment>
+ <comment xml:lang="sl">Dokument OpenXPS</comment>
+ <comment xml:lang="si">OpenXPS ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument OpenXPS</comment>
+ <comment xml:lang="ru">Документ OpenXPS</comment>
+ <comment xml:lang="pt_BR">Documento OpenXPS</comment>
+ <comment xml:lang="pt">documento OpenXPS</comment>
+ <comment xml:lang="pl">Dokument OpenXPS</comment>
+ <comment xml:lang="oc">document OpenXPS</comment>
+ <comment xml:lang="nl">OpenXPS-document</comment>
+ <comment xml:lang="ko">OpenXPS 문서</comment>
+ <comment xml:lang="kk">OpenXPS құжаты</comment>
+ <comment xml:lang="ka">OpenXPS -ის დოკუმენტი</comment>
+ <comment xml:lang="ja">OpenXPS ドキュメント</comment>
+ <comment xml:lang="it">Documento OpenXPS</comment>
+ <comment xml:lang="is">OpenXPS skjal</comment>
+ <comment xml:lang="id">Dokumen OpenXPS</comment>
+ <comment xml:lang="hu">OpenXPS-dokumentum</comment>
+ <comment xml:lang="hr">OpenXPS dokument</comment>
+ <comment xml:lang="he">מסמך OpenXPS</comment>
+ <comment xml:lang="gl">Documento de OpenXPS</comment>
+ <comment xml:lang="fr">Document OpenXPS</comment>
+ <comment xml:lang="fi">OpenXPS-asiakirja</comment>
+ <comment xml:lang="eu">OpenXPS dokumentua</comment>
+ <comment xml:lang="es">documento OpenXPS</comment>
+ <comment xml:lang="en_GB">OpenXPS document</comment>
+ <comment xml:lang="de">OpenXPS-Dokument</comment>
+ <comment xml:lang="da">OpenXPS-dokument</comment>
+ <comment xml:lang="ca">document OpenXPS</comment>
+ <comment xml:lang="be">дакумент OpenXPS</comment>
+ <comment xml:lang="ar">مستند OpenXPS</comment>
+ <acronym>OpenXPS</acronym>
+ <expanded-acronym>Open XML Paper Specification</expanded-acronym>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="x-office-document"/>
+ <glob pattern="*.oxps"/>
+ </mime-type>
+ <mime-type type="application/vnd.ms-xpsdocument">
<comment>XPS document</comment>
- <comment xml:lang="ar">مستند XPS</comment>
- <comment xml:lang="ast">Documentu XPS</comment>
- <comment xml:lang="be@latin">Dakument XPS</comment>
- <comment xml:lang="bg">Документ — XPS</comment>
- <comment xml:lang="ca">document XPS</comment>
- <comment xml:lang="cs">dokument XPS</comment>
- <comment xml:lang="da">XPS-dokument</comment>
- <comment xml:lang="de">XPS-Dokument</comment>
- <comment xml:lang="el">Έγγραφο XPS</comment>
- <comment xml:lang="en_GB">XPS document</comment>
- <comment xml:lang="eo">XPS-dokumento</comment>
- <comment xml:lang="es">documento XPS</comment>
- <comment xml:lang="eu">XPS dokumentua</comment>
- <comment xml:lang="fi">XPS-asiakirja</comment>
- <comment xml:lang="fo">XPS skjal</comment>
- <comment xml:lang="fr">document XPS</comment>
- <comment xml:lang="ga">cáipéis XPS</comment>
- <comment xml:lang="gl">documento XPS</comment>
- <comment xml:lang="he">מסמך XPS</comment>
- <comment xml:lang="hr">XPS dokument</comment>
- <comment xml:lang="hu">XPS dokumentum</comment>
- <comment xml:lang="ia">Documento XPS</comment>
- <comment xml:lang="id">Dokumen XPS</comment>
- <comment xml:lang="it">Documento XPS</comment>
- <comment xml:lang="ja">XPS ドキュメント</comment>
- <comment xml:lang="kk">XPS құжаты</comment>
- <comment xml:lang="ko">XPS 문서</comment>
- <comment xml:lang="lt">XPS dokumentas</comment>
- <comment xml:lang="lv">XPS dokuments</comment>
- <comment xml:lang="nb">XPS-dokument</comment>
- <comment xml:lang="nl">XPS-document</comment>
- <comment xml:lang="nn">XPS-dokument</comment>
- <comment xml:lang="oc">document XPS</comment>
- <comment xml:lang="pl">Dokument XPS</comment>
- <comment xml:lang="pt">documento XPS</comment>
- <comment xml:lang="pt_BR">Documento XPS</comment>
- <comment xml:lang="ro">Document XPS</comment>
- <comment xml:lang="ru">Документ XPS</comment>
- <comment xml:lang="sk">Dokument XPS</comment>
- <comment xml:lang="sl">Dokument XPS</comment>
- <comment xml:lang="sq">Dokument XPS</comment>
- <comment xml:lang="sr">ИксПС документ</comment>
- <comment xml:lang="sv">XPS-dokument</comment>
- <comment xml:lang="tr">XPS belgesi</comment>
- <comment xml:lang="uk">документ XPS</comment>
- <comment xml:lang="vi">Tài liệu XPS</comment>
- <comment xml:lang="zh_CN">XPS 文档</comment>
<comment xml:lang="zh_TW">XPS 文件</comment>
+ <comment xml:lang="zh_CN">XPS 文档</comment>
+ <comment xml:lang="vi">Tài liệu XPS</comment>
+ <comment xml:lang="uk">документ XPS</comment>
+ <comment xml:lang="tr">XPS belgesi</comment>
+ <comment xml:lang="sv">XPS-dokument</comment>
+ <comment xml:lang="sr">ИксПС документ</comment>
+ <comment xml:lang="sq">dokument XPS</comment>
+ <comment xml:lang="sl">Dokument XPS</comment>
+ <comment xml:lang="si">XPS ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument XPS</comment>
+ <comment xml:lang="ru">Документ XPS</comment>
+ <comment xml:lang="ro">Document XPS</comment>
+ <comment xml:lang="pt_BR">Documento XPS</comment>
+ <comment xml:lang="pt">documento XPS</comment>
+ <comment xml:lang="pl">Dokument XPS</comment>
+ <comment xml:lang="oc">document XPS</comment>
+ <comment xml:lang="nn">XPS-dokument</comment>
+ <comment xml:lang="nl">XPS-document</comment>
+ <comment xml:lang="nb">XPS-dokument</comment>
+ <comment xml:lang="lv">XPS dokuments</comment>
+ <comment xml:lang="lt">XPS dokumentas</comment>
+ <comment xml:lang="ko">XPS 문서</comment>
+ <comment xml:lang="kk">XPS құжаты</comment>
+ <comment xml:lang="ka">XPS -ის დოკუმენტი</comment>
+ <comment xml:lang="ja">XPS ドキュメント</comment>
+ <comment xml:lang="it">Documento XPS</comment>
+ <comment xml:lang="is">XPS skjal</comment>
+ <comment xml:lang="id">Dokumen XPS</comment>
+ <comment xml:lang="ia">Documento XPS</comment>
+ <comment xml:lang="hu">XPS dokumentum</comment>
+ <comment xml:lang="hr">XPS dokument</comment>
+ <comment xml:lang="he">מסמך XPS</comment>
+ <comment xml:lang="gl">documento XPS</comment>
+ <comment xml:lang="ga">cáipéis XPS</comment>
+ <comment xml:lang="fur">document XPS</comment>
+ <comment xml:lang="fr">document XPS</comment>
+ <comment xml:lang="fo">XPS skjal</comment>
+ <comment xml:lang="fi">XPS-asiakirja</comment>
+ <comment xml:lang="eu">XPS dokumentua</comment>
+ <comment xml:lang="es">documento XPS</comment>
+ <comment xml:lang="eo">XPS-dokumento</comment>
+ <comment xml:lang="en_GB">XPS document</comment>
+ <comment xml:lang="el">Έγγραφο XPS</comment>
+ <comment xml:lang="de">XPS-Dokument</comment>
+ <comment xml:lang="da">XPS-dokument</comment>
+ <comment xml:lang="cs">dokument XPS</comment>
+ <comment xml:lang="ca">document XPS</comment>
+ <comment xml:lang="bg">Документ — XPS</comment>
+ <comment xml:lang="be@latin">Dakument XPS</comment>
+ <comment xml:lang="be">дакумент XPS</comment>
+ <comment xml:lang="ast">Documentu XPS</comment>
+ <comment xml:lang="ar">مستند XPS</comment>
+ <comment xml:lang="af">XPS-dokument</comment>
<acronym>XPS</acronym>
- <expanded-acronym>Open XML Paper Specification</expanded-acronym>
+ <expanded-acronym>XML Paper Specification</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
- <glob pattern="*.oxps"/>
<glob pattern="*.xps"/>
- <alias type="application/vnd.ms-xpsdocument"/>
<alias type="application/xps"/>
</mime-type>
<mime-type type="application/vnd.ms-works">
<comment>Microsoft Works document</comment>
- <comment xml:lang="ar">مستند Microsoft Works</comment>
- <comment xml:lang="ast">Documentu de Microsoft Works</comment>
- <comment xml:lang="be@latin">Dakument Microsoft Works</comment>
- <comment xml:lang="bg">Документ — Microsoft Works</comment>
- <comment xml:lang="ca">document de Microsoft Works</comment>
- <comment xml:lang="cs">dokument Microsoft Works</comment>
- <comment xml:lang="da">Microsoft Works-dokument</comment>
- <comment xml:lang="de">Microsoft-Works-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Microsoft Works</comment>
- <comment xml:lang="en_GB">Microsoft Works document</comment>
- <comment xml:lang="es">documento de Microsoft Works</comment>
- <comment xml:lang="eu">Microsoft Works dokumentua</comment>
- <comment xml:lang="fi">Microsoft Works -asiakirja</comment>
- <comment xml:lang="fo">Microsoft Works skjal</comment>
- <comment xml:lang="fr">document Microsoft Works</comment>
- <comment xml:lang="ga">cáipéis Microsoft Works</comment>
- <comment xml:lang="gl">documento de Microsoft Works</comment>
- <comment xml:lang="he">מסמך Microsoft Works</comment>
- <comment xml:lang="hr">Microsoft Works dokument</comment>
- <comment xml:lang="hu">Microsoft Works dokumentum</comment>
- <comment xml:lang="ia">Documento Microsoft Works</comment>
- <comment xml:lang="id">Dokumen Microsoft Works</comment>
- <comment xml:lang="it">Documento Microsoft Works</comment>
- <comment xml:lang="ja">Microsoft Works ドキュメント</comment>
- <comment xml:lang="ka">Microsoft Works-ის დოკუმენტი</comment>
- <comment xml:lang="kk">Microsoft Works құжаты</comment>
- <comment xml:lang="ko">Microsoft Works 문서</comment>
- <comment xml:lang="lt">Microsoft Works dokumentas</comment>
- <comment xml:lang="lv">Microsoft Works dokuments</comment>
- <comment xml:lang="nb">Microsoft Works-dokument</comment>
- <comment xml:lang="nl">Microsoft Works-document</comment>
- <comment xml:lang="nn">Microsoft Works-dokument</comment>
- <comment xml:lang="oc">document Microsoft Works</comment>
- <comment xml:lang="pl">Dokument Microsoft Works</comment>
- <comment xml:lang="pt">documento Microsoft Works</comment>
- <comment xml:lang="pt_BR">Documento do Microsoft Works</comment>
- <comment xml:lang="ro">Document Microsoft Works</comment>
- <comment xml:lang="ru">Документ Microsoft Works</comment>
- <comment xml:lang="sk">Dokument Microsoft Works</comment>
- <comment xml:lang="sl">Dokument Microsoft Works</comment>
- <comment xml:lang="sq">Dokument Microsoft Works</comment>
- <comment xml:lang="sr">документ Мајкрософт Воркса</comment>
- <comment xml:lang="sv">Microsoft Works-dokument</comment>
- <comment xml:lang="tr">Microsoft Works belgesi</comment>
- <comment xml:lang="uk">документ Microsoft Works</comment>
- <comment xml:lang="vi">Tài liệu Microsoft Works</comment>
- <comment xml:lang="zh_CN">Microsoft Works 文档</comment>
<comment xml:lang="zh_TW">微軟 Works 文件</comment>
+ <comment xml:lang="zh_CN">Microsoft Works 文档</comment>
+ <comment xml:lang="vi">Tài liệu Microsoft Works</comment>
+ <comment xml:lang="uk">документ Microsoft Works</comment>
+ <comment xml:lang="tr">Microsoft Works belgesi</comment>
+ <comment xml:lang="sv">Microsoft Works-dokument</comment>
+ <comment xml:lang="sr">документ Мајкрософт Воркса</comment>
+ <comment xml:lang="sq">dokument Microsoft Works</comment>
+ <comment xml:lang="sl">Dokument Microsoft Works</comment>
+ <comment xml:lang="si">Microsoft Works ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Microsoft Works</comment>
+ <comment xml:lang="ru">Документ Microsoft Works</comment>
+ <comment xml:lang="ro">Document Microsoft Works</comment>
+ <comment xml:lang="pt_BR">Documento do Microsoft Works</comment>
+ <comment xml:lang="pt">documento Microsoft Works</comment>
+ <comment xml:lang="pl">Dokument Microsoft Works</comment>
+ <comment xml:lang="oc">document Microsoft Works</comment>
+ <comment xml:lang="nn">Microsoft Works-dokument</comment>
+ <comment xml:lang="nl">Microsoft Works-document</comment>
+ <comment xml:lang="nb">Microsoft Works-dokument</comment>
+ <comment xml:lang="lv">Microsoft Works dokuments</comment>
+ <comment xml:lang="lt">Microsoft Works dokumentas</comment>
+ <comment xml:lang="ko">Microsoft Works 문서</comment>
+ <comment xml:lang="kk">Microsoft Works құжаты</comment>
+ <comment xml:lang="ka">Microsoft Works-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Microsoft Works ドキュメント</comment>
+ <comment xml:lang="it">Documento Microsoft Works</comment>
+ <comment xml:lang="is">Microsoft Works skjal</comment>
+ <comment xml:lang="id">Dokumen Microsoft Works</comment>
+ <comment xml:lang="ia">Documento Microsoft Works</comment>
+ <comment xml:lang="hu">Microsoft Works dokumentum</comment>
+ <comment xml:lang="hr">Microsoft Works dokument</comment>
+ <comment xml:lang="he">מסמך Microsoft Works</comment>
+ <comment xml:lang="gl">documento de Microsoft Works</comment>
+ <comment xml:lang="ga">cáipéis Microsoft Works</comment>
+ <comment xml:lang="fur">document Microsoft Works</comment>
+ <comment xml:lang="fr">document Microsoft Works</comment>
+ <comment xml:lang="fo">Microsoft Works skjal</comment>
+ <comment xml:lang="fi">Microsoft Works -asiakirja</comment>
+ <comment xml:lang="eu">Microsoft Works dokumentua</comment>
+ <comment xml:lang="es">documento de Microsoft Works</comment>
+ <comment xml:lang="en_GB">Microsoft Works document</comment>
+ <comment xml:lang="el">Έγγραφο Microsoft Works</comment>
+ <comment xml:lang="de">Microsoft-Works-Dokument</comment>
+ <comment xml:lang="da">Microsoft Works-dokument</comment>
+ <comment xml:lang="cs">dokument Microsoft Works</comment>
+ <comment xml:lang="ca">document de Microsoft Works</comment>
+ <comment xml:lang="bg">Документ — Microsoft Works</comment>
+ <comment xml:lang="be@latin">Dakument Microsoft Works</comment>
+ <comment xml:lang="be">дакумент Microsoft Works</comment>
+ <comment xml:lang="ast">Documentu de Microsoft Works</comment>
+ <comment xml:lang="ar">مستند Microsoft Works</comment>
+ <comment xml:lang="af">Microsoft Works-dokument</comment>
<sub-class-of type="application/x-ole-storage"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.wcm"/>
@@ -3971,45 +4585,52 @@
</mime-type>
<mime-type type="application/vnd.visio">
<comment>Microsoft Visio document</comment>
- <comment xml:lang="ast">Documentu de Microsoft Visio</comment>
- <comment xml:lang="bg">Документ — Microsoft Visio</comment>
- <comment xml:lang="ca">document de Microsoft Visio</comment>
- <comment xml:lang="cs">dokument Microsoft Visio</comment>
- <comment xml:lang="da">Microsoft Visio-dokument</comment>
- <comment xml:lang="de">Microsoft-Visio-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Microsoft Visio</comment>
- <comment xml:lang="en_GB">Microsoft Visio document</comment>
- <comment xml:lang="es">documento de Microsoft Visio</comment>
- <comment xml:lang="eu">Microsoft Visio dokumentua</comment>
- <comment xml:lang="fi">Microsoft Visio -asiakirja</comment>
- <comment xml:lang="fr">document Microsoft Visio</comment>
- <comment xml:lang="ga">cáipéis Microsoft Visio</comment>
- <comment xml:lang="gl">Documento de Microsoft Visio</comment>
- <comment xml:lang="he">מסמך </comment>
- <comment xml:lang="hr">Microsoft Visio dokument</comment>
- <comment xml:lang="hu">Microsoft Visio dokumentum</comment>
- <comment xml:lang="ia">Documento Microsoft Visio</comment>
- <comment xml:lang="id">Dokumen Microsoft Visio</comment>
- <comment xml:lang="it">Documento Microsoft Visio</comment>
- <comment xml:lang="ja">Microsoft Visio ドキュメント</comment>
- <comment xml:lang="ka">Microsoft Visio-ის დოკუმენტი</comment>
- <comment xml:lang="kk">Microsoft Visio құжаты</comment>
- <comment xml:lang="ko">Microsoft Visio 문서</comment>
- <comment xml:lang="lv">Microsoft Visio dokuments</comment>
- <comment xml:lang="nl">Microsoft Visio document</comment>
- <comment xml:lang="oc">document Microsoft Visio</comment>
- <comment xml:lang="pl">Dokument Microsoft Visio</comment>
- <comment xml:lang="pt">documento Microsoft Visio</comment>
- <comment xml:lang="pt_BR">Documento do Microsoft Visio</comment>
- <comment xml:lang="ru">Документ Microsoft Visio</comment>
- <comment xml:lang="sk">Dokument Microsoft Visio</comment>
- <comment xml:lang="sl">Dokument Microsoft Visio</comment>
- <comment xml:lang="sr">документ Мајкрософт Визиа</comment>
- <comment xml:lang="sv">Microsoft Visio-dokument</comment>
- <comment xml:lang="tr">Microsoft Visio belgesi</comment>
- <comment xml:lang="uk">документ Microsoft Visio</comment>
+ <comment xml:lang="zh_TW">微軟 Visio 文件</comment>
<comment xml:lang="zh_CN">Microsoft Visio 文档</comment>
- <comment xml:lang="zh_TW">Microsoft Visio文件</comment>
+ <comment xml:lang="uk">документ Microsoft Visio</comment>
+ <comment xml:lang="tr">Microsoft Visio belgesi</comment>
+ <comment xml:lang="sv">Microsoft Visio-dokument</comment>
+ <comment xml:lang="sr">документ Мајкрософт Визиа</comment>
+ <comment xml:lang="sq">dokument Microsoft Visio</comment>
+ <comment xml:lang="sl">Dokument Microsoft Visio</comment>
+ <comment xml:lang="si">Microsoft Visio ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Microsoft Visio</comment>
+ <comment xml:lang="ru">Документ Microsoft Visio</comment>
+ <comment xml:lang="pt_BR">Documento do Microsoft Visio</comment>
+ <comment xml:lang="pt">documento Microsoft Visio</comment>
+ <comment xml:lang="pl">Dokument Microsoft Visio</comment>
+ <comment xml:lang="oc">document Microsoft Visio</comment>
+ <comment xml:lang="nl">Microsoft Visio document</comment>
+ <comment xml:lang="lv">Microsoft Visio dokuments</comment>
+ <comment xml:lang="ko">Microsoft Visio 문서</comment>
+ <comment xml:lang="kk">Microsoft Visio құжаты</comment>
+ <comment xml:lang="ka">Microsoft Visio-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Microsoft Visio ドキュメント</comment>
+ <comment xml:lang="it">Documento Microsoft Visio</comment>
+ <comment xml:lang="is">Microsoft Visio skjal</comment>
+ <comment xml:lang="id">Dokumen Microsoft Visio</comment>
+ <comment xml:lang="ia">Documento Microsoft Visio</comment>
+ <comment xml:lang="hu">Microsoft Visio dokumentum</comment>
+ <comment xml:lang="hr">Microsoft Visio dokument</comment>
+ <comment xml:lang="he">מסמך Microsoft Visio</comment>
+ <comment xml:lang="gl">Documento de Microsoft Visio</comment>
+ <comment xml:lang="ga">cáipéis Microsoft Visio</comment>
+ <comment xml:lang="fur">document Microsoft Visio</comment>
+ <comment xml:lang="fr">document Microsoft Visio</comment>
+ <comment xml:lang="fi">Microsoft Visio -asiakirja</comment>
+ <comment xml:lang="eu">Microsoft Visio dokumentua</comment>
+ <comment xml:lang="es">documento de Microsoft Visio</comment>
+ <comment xml:lang="en_GB">Microsoft Visio document</comment>
+ <comment xml:lang="el">Έγγραφο Microsoft Visio</comment>
+ <comment xml:lang="de">Microsoft-Visio-Dokument</comment>
+ <comment xml:lang="da">Microsoft Visio-dokument</comment>
+ <comment xml:lang="cs">dokument Microsoft Visio</comment>
+ <comment xml:lang="ca">document de Microsoft Visio</comment>
+ <comment xml:lang="bg">Документ — Microsoft Visio</comment>
+ <comment xml:lang="be">дакумент Microsoft Visio</comment>
+ <comment xml:lang="ast">Documentu de Microsoft Visio</comment>
+ <comment xml:lang="ar">مستند مايكروسوفت فيزو</comment>
+ <comment xml:lang="af">Microsoft Visio-dokument</comment>
<sub-class-of type="application/x-ole-storage"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.vsd"/>
@@ -4019,66 +4640,72 @@
</mime-type>
<mime-type type="application/msword">
<comment>Word document</comment>
- <comment xml:lang="ar">مستند Word</comment>
- <comment xml:lang="ast">Documentu de Word</comment>
- <comment xml:lang="be@latin">Dakument Word</comment>
- <comment xml:lang="bg">Документ — Word</comment>
- <comment xml:lang="ca">document Word</comment>
- <comment xml:lang="cs">dokument Word</comment>
- <comment xml:lang="da">Worddokument</comment>
- <comment xml:lang="de">Word-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Word</comment>
- <comment xml:lang="en_GB">Word document</comment>
- <comment xml:lang="eo">Word-dokumento</comment>
- <comment xml:lang="es">documento de Word</comment>
- <comment xml:lang="eu">Word dokumentua</comment>
- <comment xml:lang="fi">Word-asiakirja</comment>
- <comment xml:lang="fo">Word skjal</comment>
- <comment xml:lang="fr">document Word</comment>
- <comment xml:lang="ga">cáipéis Word</comment>
- <comment xml:lang="gl">documento de Word</comment>
- <comment xml:lang="he">מסמך Word</comment>
- <comment xml:lang="hr">Word dokument</comment>
- <comment xml:lang="hu">Word dokumentum</comment>
- <comment xml:lang="ia">Documento Word</comment>
- <comment xml:lang="id">Dokumen Word</comment>
- <comment xml:lang="it">Documento Word</comment>
- <comment xml:lang="ja">Word ドキュメント</comment>
- <comment xml:lang="kk">Word құжаты</comment>
- <comment xml:lang="ko">Word 문서</comment>
- <comment xml:lang="lt">Word dokumentas</comment>
- <comment xml:lang="lv">Word dokuments</comment>
- <comment xml:lang="nb">Word-dokument</comment>
- <comment xml:lang="nl">Word-document</comment>
- <comment xml:lang="nn">Word-dokument</comment>
- <comment xml:lang="oc">document Word</comment>
- <comment xml:lang="pl">Dokument Word</comment>
- <comment xml:lang="pt">documento Word</comment>
- <comment xml:lang="pt_BR">Documento do Word</comment>
- <comment xml:lang="ro">Document Word</comment>
- <comment xml:lang="ru">Документ Word</comment>
- <comment xml:lang="sk">Dokument Word</comment>
- <comment xml:lang="sl">Dokument Word</comment>
- <comment xml:lang="sq">Dokument Word</comment>
- <comment xml:lang="sr">Ворд документ</comment>
- <comment xml:lang="sv">Word-dokument</comment>
- <comment xml:lang="tr">Word belgesi</comment>
- <comment xml:lang="uk">документ Word</comment>
- <comment xml:lang="vi">Tài liệu Word</comment>
- <comment xml:lang="zh_CN">Word 文档</comment>
<comment xml:lang="zh_TW">Word 文件</comment>
+ <comment xml:lang="zh_CN">Word 文档</comment>
+ <comment xml:lang="vi">Tài liệu Word</comment>
+ <comment xml:lang="uk">документ Word</comment>
+ <comment xml:lang="tr">Word belgesi</comment>
+ <comment xml:lang="sv">Word-dokument</comment>
+ <comment xml:lang="sr">Ворд документ</comment>
+ <comment xml:lang="sq">dokument Word</comment>
+ <comment xml:lang="sl">Dokument Word</comment>
+ <comment xml:lang="si">වචන ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Word</comment>
+ <comment xml:lang="ru">Документ Word</comment>
+ <comment xml:lang="ro">Document Word</comment>
+ <comment xml:lang="pt_BR">Documento do Word</comment>
+ <comment xml:lang="pt">documento Word</comment>
+ <comment xml:lang="pl">Dokument Word</comment>
+ <comment xml:lang="oc">document Word</comment>
+ <comment xml:lang="nn">Word-dokument</comment>
+ <comment xml:lang="nl">Word-document</comment>
+ <comment xml:lang="nb">Word-dokument</comment>
+ <comment xml:lang="lv">Word dokuments</comment>
+ <comment xml:lang="lt">Word dokumentas</comment>
+ <comment xml:lang="ko">Word 문서</comment>
+ <comment xml:lang="kk">Word құжаты</comment>
+ <comment xml:lang="ka">Word -ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Word ドキュメント</comment>
+ <comment xml:lang="it">Documento Word</comment>
+ <comment xml:lang="is">Word skjal</comment>
+ <comment xml:lang="id">Dokumen Word</comment>
+ <comment xml:lang="ia">Documento Word</comment>
+ <comment xml:lang="hu">Word dokumentum</comment>
+ <comment xml:lang="hr">Word dokument</comment>
+ <comment xml:lang="he">מסמך Word</comment>
+ <comment xml:lang="gl">documento de Word</comment>
+ <comment xml:lang="ga">cáipéis Word</comment>
+ <comment xml:lang="fur">document Word</comment>
+ <comment xml:lang="fr">document Word</comment>
+ <comment xml:lang="fo">Word skjal</comment>
+ <comment xml:lang="fi">Word-asiakirja</comment>
+ <comment xml:lang="eu">Word dokumentua</comment>
+ <comment xml:lang="es">documento de Word</comment>
+ <comment xml:lang="eo">Word-dokumento</comment>
+ <comment xml:lang="en_GB">Word document</comment>
+ <comment xml:lang="el">Έγγραφο Word</comment>
+ <comment xml:lang="de">Word-Dokument</comment>
+ <comment xml:lang="da">Worddokument</comment>
+ <comment xml:lang="cs">dokument Word</comment>
+ <comment xml:lang="ca">document Word</comment>
+ <comment xml:lang="bg">Документ — Word</comment>
+ <comment xml:lang="be@latin">Dakument Word</comment>
+ <comment xml:lang="be">дакумент Word</comment>
+ <comment xml:lang="ast">Documentu de Word</comment>
+ <comment xml:lang="ar">مستند ورد</comment>
+ <comment xml:lang="af">Word-dokument</comment>
<sub-class-of type="application/x-ole-storage"/>
<generic-icon name="x-office-document"/>
<magic priority="60">
- <match value="\x31\xbe\x00\x00" type="string" offset="0"/>
- <match value="PO^Q`" type="string" offset="0"/>
- <match value="\376\067\0\043" type="string" offset="0"/>
- <match value="\333\245-\0\0\0" type="string" offset="0"/>
- <match value="MSWordDoc" type="string" offset="2112"/>
- <match value="MSWordDoc" type="string" offset="2108"/>
- <match value="Microsoft Word document data" type="string" offset="2112"/>
- <match value="bjbj" type="string" offset="546"/>
- <match value="jbjb" type="string" offset="546"/>
+ <match type="string" value="\x31\xbe\x00\x00" offset="0"/>
+ <match type="string" value="PO^Q`" offset="0"/>
+ <match type="string" value="\376\067\0\043" offset="0"/>
+ <match type="string" value="\333\245-\0\0\0" offset="0"/>
+ <match type="string" value="MSWordDoc" offset="2112"/>
+ <match type="string" value="MSWordDoc" offset="2108"/>
+ <match type="string" value="Microsoft Word document data" offset="2112"/>
+ <match type="string" value="bjbj" offset="546"/>
+ <match type="string" value="jbjb" offset="546"/>
</magic>
<glob pattern="*.doc"/>
<alias type="application/vnd.ms-word"/>
@@ -4087,96 +4714,112 @@
</mime-type>
<mime-type type="application/msword-template">
<comment>Word template</comment>
- <comment xml:lang="ar">قالب Word</comment>
- <comment xml:lang="ast">Plantía de Word</comment>
- <comment xml:lang="be@latin">Šablon Word</comment>
- <comment xml:lang="bg">Шаблон за документи — Word</comment>
- <comment xml:lang="ca">plantilla de Word</comment>
- <comment xml:lang="cs">šablona Word</comment>
- <comment xml:lang="da">Wordskabelon</comment>
- <comment xml:lang="de">Word-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο έγγραφο Word</comment>
- <comment xml:lang="en_GB">Word template</comment>
- <comment xml:lang="eo">Word-ŝablono</comment>
- <comment xml:lang="es">plantilla de Word</comment>
- <comment xml:lang="eu">Word txantiloia</comment>
- <comment xml:lang="fi">Word-malli</comment>
- <comment xml:lang="fo">Word formur</comment>
- <comment xml:lang="fr">modèle Word</comment>
- <comment xml:lang="ga">teimpléad Word</comment>
- <comment xml:lang="gl">Plantilla de Word</comment>
- <comment xml:lang="he">תבנית Word</comment>
- <comment xml:lang="hr">Word predložak</comment>
- <comment xml:lang="hu">Word sablon</comment>
- <comment xml:lang="ia">Patrono Word</comment>
- <comment xml:lang="id">Templat Word</comment>
- <comment xml:lang="it">Modello Word</comment>
- <comment xml:lang="ja">Word テンプレート</comment>
- <comment xml:lang="kk">Word үлгісі</comment>
- <comment xml:lang="ko">Word 서식</comment>
- <comment xml:lang="lt">Word šablonas</comment>
- <comment xml:lang="lv">Word veidne</comment>
- <comment xml:lang="nb">Word-mal</comment>
- <comment xml:lang="nl">Word-sjabloon</comment>
- <comment xml:lang="nn">Word-mal</comment>
- <comment xml:lang="oc">modèl Word</comment>
- <comment xml:lang="pl">Szablon Word</comment>
- <comment xml:lang="pt">modelo Word</comment>
- <comment xml:lang="pt_BR">Modelo do Word</comment>
- <comment xml:lang="ro">Șablon Word</comment>
- <comment xml:lang="ru">Шаблон Word</comment>
- <comment xml:lang="sk">Šablóna Word</comment>
- <comment xml:lang="sl">Predloga dokumenta Microsoft Word</comment>
- <comment xml:lang="sq">Model Word</comment>
- <comment xml:lang="sr">Ворд шаблон</comment>
- <comment xml:lang="sv">Word-mall</comment>
- <comment xml:lang="tr">Word şablonu</comment>
- <comment xml:lang="uk">шаблон Word</comment>
- <comment xml:lang="vi">Mẫu Word</comment>
- <comment xml:lang="zh_CN">Word 模板</comment>
<comment xml:lang="zh_TW">Word 範本</comment>
+ <comment xml:lang="zh_CN">Word 模板</comment>
+ <comment xml:lang="vi">Mẫu Word</comment>
+ <comment xml:lang="uk">шаблон Word</comment>
+ <comment xml:lang="tr">Word şablonu</comment>
+ <comment xml:lang="sv">Word-mall</comment>
+ <comment xml:lang="sr">Ворд шаблон</comment>
+ <comment xml:lang="sq">gjedhe Word</comment>
+ <comment xml:lang="sl">Predloga dokumenta Microsoft Word</comment>
+ <comment xml:lang="si">වචන සැකිල්ල</comment>
+ <comment xml:lang="sk">Šablóna Word</comment>
+ <comment xml:lang="ru">Шаблон Word</comment>
+ <comment xml:lang="ro">Șablon Word</comment>
+ <comment xml:lang="pt_BR">Modelo do Word</comment>
+ <comment xml:lang="pt">modelo Word</comment>
+ <comment xml:lang="pl">Szablon Word</comment>
+ <comment xml:lang="oc">modèl Word</comment>
+ <comment xml:lang="nn">Word-mal</comment>
+ <comment xml:lang="nl">Word-sjabloon</comment>
+ <comment xml:lang="nb">Word-mal</comment>
+ <comment xml:lang="lv">Word veidne</comment>
+ <comment xml:lang="lt">Word šablonas</comment>
+ <comment xml:lang="ko">Word 서식</comment>
+ <comment xml:lang="kk">Word үлгісі</comment>
+ <comment xml:lang="ja">Word テンプレート</comment>
+ <comment xml:lang="it">Modello Word</comment>
+ <comment xml:lang="is">Word sniðmát</comment>
+ <comment xml:lang="id">Templat Word</comment>
+ <comment xml:lang="ia">Patrono Word</comment>
+ <comment xml:lang="hu">Word sablon</comment>
+ <comment xml:lang="hr">Word predložak</comment>
+ <comment xml:lang="he">תבנית Word</comment>
+ <comment xml:lang="gl">Plantilla de Word</comment>
+ <comment xml:lang="ga">teimpléad Word</comment>
+ <comment xml:lang="fur">model Word</comment>
+ <comment xml:lang="fr">modèle Word</comment>
+ <comment xml:lang="fo">Word formur</comment>
+ <comment xml:lang="fi">Word-malli</comment>
+ <comment xml:lang="eu">Word txantiloia</comment>
+ <comment xml:lang="es">plantilla de Word</comment>
+ <comment xml:lang="eo">Word-ŝablono</comment>
+ <comment xml:lang="en_GB">Word template</comment>
+ <comment xml:lang="el">Πρότυπο έγγραφο Word</comment>
+ <comment xml:lang="de">Word-Vorlage</comment>
+ <comment xml:lang="da">Wordskabelon</comment>
+ <comment xml:lang="cs">šablona Word</comment>
+ <comment xml:lang="ca">plantilla de Word</comment>
+ <comment xml:lang="bg">Шаблон за документи — Word</comment>
+ <comment xml:lang="be@latin">Šablon Word</comment>
+ <comment xml:lang="be">шаблон Word</comment>
+ <comment xml:lang="ast">Plantía de Word</comment>
+ <comment xml:lang="ar">قالب ورد</comment>
+ <comment xml:lang="af">Word-sjabloon</comment>
<sub-class-of type="application/msword"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.dot"/>
</mime-type>
<mime-type type="application/gml+xml">
<comment>GML document</comment>
- <comment xml:lang="ast">Documentu GML</comment>
- <comment xml:lang="ca">document GML</comment>
- <comment xml:lang="cs">dokument GML</comment>
- <comment xml:lang="da">GML-dokument</comment>
- <comment xml:lang="de">GML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο GML</comment>
- <comment xml:lang="en_GB">GML document</comment>
- <comment xml:lang="es">documento GML</comment>
- <comment xml:lang="eu">GML dokumentua</comment>
- <comment xml:lang="fi">GML-asiakirja</comment>
- <comment xml:lang="fr">document GML</comment>
- <comment xml:lang="ga">cáipéis GML</comment>
- <comment xml:lang="gl">Documento GML</comment>
- <comment xml:lang="he">מסמך GML</comment>
- <comment xml:lang="hr">GML dokument</comment>
- <comment xml:lang="hu">GML dokumentum</comment>
- <comment xml:lang="ia">Documento GML</comment>
- <comment xml:lang="id">Dokumen GML</comment>
- <comment xml:lang="it">Documento GML</comment>
- <comment xml:lang="ja">GML ドキュメント</comment>
- <comment xml:lang="kk">GML құжаты</comment>
- <comment xml:lang="ko">GML 문서</comment>
- <comment xml:lang="lv">GML dokuments</comment>
- <comment xml:lang="oc">document GML</comment>
- <comment xml:lang="pl">Dokument GML</comment>
- <comment xml:lang="pt">documento GML</comment>
- <comment xml:lang="pt_BR">Documento GML</comment>
- <comment xml:lang="ru">Документ GML</comment>
- <comment xml:lang="sk">Dokument GML</comment>
- <comment xml:lang="sl">Dokument GML</comment>
- <comment xml:lang="sr">ГМЛ документ</comment>
- <comment xml:lang="sv">GML-dokument</comment>
- <comment xml:lang="tr">GML belgesi</comment>
- <comment xml:lang="uk">документ GML</comment>
- <comment xml:lang="zh_CN">GML 文档</comment>
<comment xml:lang="zh_TW">GML 文件</comment>
+ <comment xml:lang="zh_CN">GML 文档</comment>
+ <comment xml:lang="uk">документ GML</comment>
+ <comment xml:lang="tr">GML belgesi</comment>
+ <comment xml:lang="sv">GML-dokument</comment>
+ <comment xml:lang="sr">ГМЛ документ</comment>
+ <comment xml:lang="sq">dokument GML</comment>
+ <comment xml:lang="sl">Dokument GML</comment>
+ <comment xml:lang="si">GML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument GML</comment>
+ <comment xml:lang="ru">Документ GML</comment>
+ <comment xml:lang="pt_BR">Documento GML</comment>
+ <comment xml:lang="pt">documento GML</comment>
+ <comment xml:lang="pl">Dokument GML</comment>
+ <comment xml:lang="oc">document GML</comment>
+ <comment xml:lang="nl">GML-document</comment>
+ <comment xml:lang="lv">GML dokuments</comment>
+ <comment xml:lang="lt">GML dokumentas</comment>
+ <comment xml:lang="ko">GML 문서</comment>
+ <comment xml:lang="kk">GML құжаты</comment>
+ <comment xml:lang="ka">GML -ის დოკუმენტი</comment>
+ <comment xml:lang="ja">GML ドキュメント</comment>
+ <comment xml:lang="it">Documento GML</comment>
+ <comment xml:lang="is">GML skjal</comment>
+ <comment xml:lang="id">Dokumen GML</comment>
+ <comment xml:lang="ia">Documento GML</comment>
+ <comment xml:lang="hu">GML dokumentum</comment>
+ <comment xml:lang="hr">GML dokument</comment>
+ <comment xml:lang="he">מסמך GML</comment>
+ <comment xml:lang="gl">Documento GML</comment>
+ <comment xml:lang="ga">cáipéis GML</comment>
+ <comment xml:lang="fur">document GML</comment>
+ <comment xml:lang="fr">document GML</comment>
+ <comment xml:lang="fi">GML-asiakirja</comment>
+ <comment xml:lang="eu">GML dokumentua</comment>
+ <comment xml:lang="es">documento GML</comment>
+ <comment xml:lang="en_GB">GML document</comment>
+ <comment xml:lang="el">Έγγραφο GML</comment>
+ <comment xml:lang="de">GML-Dokument</comment>
+ <comment xml:lang="da">GML-dokument</comment>
+ <comment xml:lang="cs">dokument GML</comment>
+ <comment xml:lang="ca">document GML</comment>
+ <comment xml:lang="bg">Документ — GML</comment>
+ <comment xml:lang="be">дакумент GML</comment>
+ <comment xml:lang="ast">Documentu GML</comment>
+ <comment xml:lang="ar">مستند GML</comment>
+ <comment xml:lang="af">GML-dokument</comment>
<acronym>GML</acronym>
<expanded-acronym>Geography Markup Language</expanded-acronym>
<glob pattern="*.gml"/>
@@ -4185,111 +4828,121 @@
</mime-type>
<mime-type type="application/gnunet-directory">
<comment>GNUnet search file</comment>
- <comment xml:lang="ar">ملف بحث GNUnet</comment>
- <comment xml:lang="be@latin">fajł pošuku GNUnet</comment>
- <comment xml:lang="bg">Указател за търсене — GNUnet</comment>
- <comment xml:lang="ca">fitxer de cerca GNUnet</comment>
- <comment xml:lang="cs">vyhledávací soubor GNUnet</comment>
- <comment xml:lang="da">GNunet-søgefil</comment>
- <comment xml:lang="de">GNUnet-Suchdatei</comment>
- <comment xml:lang="el">Αρχείο αναζήτησης GNUnet</comment>
- <comment xml:lang="en_GB">GNUnet search file</comment>
- <comment xml:lang="es">archivo de búsqueda GNUnet</comment>
- <comment xml:lang="eu">GNUnet bilaketako fitxategia</comment>
- <comment xml:lang="fi">GNUnet-hakutiedosto</comment>
- <comment xml:lang="fo">GNUnet leitifíla</comment>
- <comment xml:lang="fr">fichier de recherche GNUnet</comment>
- <comment xml:lang="ga">comhad cuardaigh GNUnet</comment>
- <comment xml:lang="gl">ficheiro de busca de GNUnet</comment>
- <comment xml:lang="he">קובץ חיפוש של GNUnet</comment>
- <comment xml:lang="hr">GNUnet datoteka pretrage</comment>
- <comment xml:lang="hu">GNUnet keresési fájl</comment>
- <comment xml:lang="ia">File de recerca GNUnet</comment>
- <comment xml:lang="id">Berkas telusur GNUnet</comment>
- <comment xml:lang="it">File ricerca GNUnet</comment>
- <comment xml:lang="ja">GNUnet 検索ファイル</comment>
- <comment xml:lang="ka">GNUnet ძებნის ფაილი</comment>
- <comment xml:lang="kk">GNUnet іздеу файлы</comment>
- <comment xml:lang="ko">GNUnet 검색 파일</comment>
- <comment xml:lang="lt">GNUnet paieškos failas</comment>
- <comment xml:lang="lv">GNUnet meklēšanas datne</comment>
- <comment xml:lang="nb">GNUnet søkefil</comment>
- <comment xml:lang="nl">GNUnet-zoekbestand</comment>
- <comment xml:lang="nn">GNUnet-søkjefil</comment>
- <comment xml:lang="oc">fichièr de recèrca GNUnet</comment>
- <comment xml:lang="pl">Plik wyszukiwania GNUnet</comment>
- <comment xml:lang="pt">ficheiro de procura GNUnet</comment>
- <comment xml:lang="pt_BR">Arquivo de pesquisa do GNUnet</comment>
- <comment xml:lang="ro">Fișier căutare GNUnet</comment>
- <comment xml:lang="ru">Файл поиска GNUnet</comment>
- <comment xml:lang="sk">Vyhľadávací súbor GNUnet</comment>
- <comment xml:lang="sl">Iskalna datoteka GNUnet</comment>
- <comment xml:lang="sq">File kërkimi GNUnet</comment>
- <comment xml:lang="sr">ГНУнет датотека претраге</comment>
- <comment xml:lang="sv">GNUnet-sökfil</comment>
- <comment xml:lang="tr">GNUnet arama dosyası</comment>
- <comment xml:lang="uk">файл пошуку GNUnet</comment>
- <comment xml:lang="vi">Tập tin tìm kiếm GNUnet</comment>
- <comment xml:lang="zh_CN">GNUnet 搜索文件</comment>
<comment xml:lang="zh_TW">GNUnet 搜尋檔案</comment>
- <magic priority="50">
- <match value="\211GND\r\n\032\n" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">GNUnet 搜索文件</comment>
+ <comment xml:lang="vi">Tập tin tìm kiếm GNUnet</comment>
+ <comment xml:lang="uk">файл пошуку GNUnet</comment>
+ <comment xml:lang="tr">GNUnet arama dosyası</comment>
+ <comment xml:lang="sv">GNUnet-sökfil</comment>
+ <comment xml:lang="sr">ГНУнет датотека претраге</comment>
+ <comment xml:lang="sq">kartelë kërkimi GNUnet</comment>
+ <comment xml:lang="sl">Iskalna datoteka GNUnet</comment>
+ <comment xml:lang="si">GNUnet සෙවුම් ගොනුව</comment>
+ <comment xml:lang="sk">Vyhľadávací súbor GNUnet</comment>
+ <comment xml:lang="ru">Файл поиска GNUnet</comment>
+ <comment xml:lang="ro">Fișier căutare GNUnet</comment>
+ <comment xml:lang="pt_BR">Arquivo de pesquisa do GNUnet</comment>
+ <comment xml:lang="pt">ficheiro de procura GNUnet</comment>
+ <comment xml:lang="pl">Plik wyszukiwania GNUnet</comment>
+ <comment xml:lang="oc">fichièr de recèrca GNUnet</comment>
+ <comment xml:lang="nn">GNUnet-søkjefil</comment>
+ <comment xml:lang="nl">GNUnet-zoekbestand</comment>
+ <comment xml:lang="nb">GNUnet søkefil</comment>
+ <comment xml:lang="lv">GNUnet meklēšanas datne</comment>
+ <comment xml:lang="lt">GNUnet paieškos failas</comment>
+ <comment xml:lang="ko">GNUnet 검색 파일</comment>
+ <comment xml:lang="kk">GNUnet іздеу файлы</comment>
+ <comment xml:lang="ka">GNUnet ძებნის ფაილი</comment>
+ <comment xml:lang="ja">GNUnet 検索ファイル</comment>
+ <comment xml:lang="it">File ricerca GNUnet</comment>
+ <comment xml:lang="is">GNUnet leitarskrá</comment>
+ <comment xml:lang="id">Berkas telusur GNUnet</comment>
+ <comment xml:lang="ia">File de recerca GNUnet</comment>
+ <comment xml:lang="hu">GNUnet keresési fájl</comment>
+ <comment xml:lang="hr">GNUnet datoteka pretrage</comment>
+ <comment xml:lang="he">קובץ חיפוש של GNUnet</comment>
+ <comment xml:lang="gl">ficheiro de busca de GNUnet</comment>
+ <comment xml:lang="ga">comhad cuardaigh GNUnet</comment>
+ <comment xml:lang="fur">file di ricercje GNUnet</comment>
+ <comment xml:lang="fr">fichier de recherche GNUnet</comment>
+ <comment xml:lang="fo">GNUnet leitifíla</comment>
+ <comment xml:lang="fi">GNUnet-hakutiedosto</comment>
+ <comment xml:lang="eu">GNUnet bilaketako fitxategia</comment>
+ <comment xml:lang="es">archivo de búsqueda GNUnet</comment>
+ <comment xml:lang="en_GB">GNUnet search file</comment>
+ <comment xml:lang="el">Αρχείο αναζήτησης GNUnet</comment>
+ <comment xml:lang="de">GNUnet-Suchdatei</comment>
+ <comment xml:lang="da">GNunet-søgefil</comment>
+ <comment xml:lang="cs">vyhledávací soubor GNUnet</comment>
+ <comment xml:lang="ca">fitxer de cerca GNUnet</comment>
+ <comment xml:lang="bg">Указател за търсене — GNUnet</comment>
+ <comment xml:lang="be@latin">fajł pošuku GNUnet</comment>
+ <comment xml:lang="be">файл пошуку GNUnet</comment>
+ <comment xml:lang="ar">ملف بحث GNUnet</comment>
+ <comment xml:lang="af">GNUnet-soeklêer</comment>
+ <magic>
+ <match type="string" value="\211GND\r\n\032\n" offset="0"/>
</magic>
<glob pattern="*.gnd"/>
</mime-type>
<mime-type type="application/vnd.ms-tnef">
<comment>TNEF message</comment>
- <comment xml:lang="ar">رسالة TNEF</comment>
- <comment xml:lang="ast">Mensaxe TNEF</comment>
- <comment xml:lang="be@latin">List TNEF</comment>
- <comment xml:lang="bg">Съобщение — TNEF</comment>
- <comment xml:lang="ca">missatge TNEF</comment>
- <comment xml:lang="cs">zpráva TNEF</comment>
- <comment xml:lang="da">TNEF-meddelelse</comment>
- <comment xml:lang="de">TNEF-Nachricht</comment>
- <comment xml:lang="el">Μήνυμα TNEF</comment>
- <comment xml:lang="en_GB">TNEF message</comment>
- <comment xml:lang="es">mensaje TNEF</comment>
- <comment xml:lang="eu">TNEF mezua</comment>
- <comment xml:lang="fi">TNEF-viesti</comment>
- <comment xml:lang="fo">TNEF boð</comment>
- <comment xml:lang="fr">message TNEF</comment>
- <comment xml:lang="ga">teachtaireacht TNEF</comment>
- <comment xml:lang="gl">mensaxe TNEF</comment>
- <comment xml:lang="he">הודעת TNEF</comment>
- <comment xml:lang="hr">TNEF poruka</comment>
- <comment xml:lang="hu">TNEF üzenet</comment>
- <comment xml:lang="ia">Message TNEF</comment>
- <comment xml:lang="id">Pesan TNEF</comment>
- <comment xml:lang="it">Messaggio TNEF</comment>
- <comment xml:lang="ja">TNEF メッセージ</comment>
- <comment xml:lang="kk">TNEF мәлімдемесі</comment>
- <comment xml:lang="ko">TNEF 메시지</comment>
- <comment xml:lang="lt">TNEF žinutė</comment>
- <comment xml:lang="lv">TNEF ziņojums</comment>
- <comment xml:lang="nb">TNEF-melding</comment>
- <comment xml:lang="nl">TNEF-bericht</comment>
- <comment xml:lang="nn">TNEF-melding</comment>
- <comment xml:lang="oc">messatge TNEF</comment>
- <comment xml:lang="pl">Wiadomość TNEF</comment>
- <comment xml:lang="pt">mensagem TNEF</comment>
- <comment xml:lang="pt_BR">Mensagem TNEF</comment>
- <comment xml:lang="ro">Mesaj TNEF</comment>
- <comment xml:lang="ru">Сообщение TNEF</comment>
- <comment xml:lang="sk">Správa TNEF</comment>
- <comment xml:lang="sl">Datoteka sporočila TNEF</comment>
- <comment xml:lang="sq">Mesazh TNEF</comment>
- <comment xml:lang="sr">ТНЕФ порука</comment>
- <comment xml:lang="sv">TNEF-meddelande</comment>
- <comment xml:lang="tr">TNEF iletisi</comment>
- <comment xml:lang="uk">повідомлення TNEF</comment>
- <comment xml:lang="vi">Thông điệp TNEF</comment>
- <comment xml:lang="zh_CN">TNEF 信件</comment>
<comment xml:lang="zh_TW">TNEF 訊息</comment>
+ <comment xml:lang="zh_CN">TNEF 信件</comment>
+ <comment xml:lang="vi">Thông điệp TNEF</comment>
+ <comment xml:lang="uk">повідомлення TNEF</comment>
+ <comment xml:lang="tr">TNEF iletisi</comment>
+ <comment xml:lang="sv">TNEF-meddelande</comment>
+ <comment xml:lang="sr">ТНЕФ порука</comment>
+ <comment xml:lang="sq">mesazh TNEF</comment>
+ <comment xml:lang="sl">Datoteka sporočila TNEF</comment>
+ <comment xml:lang="si">TNEF පණිවිඩය</comment>
+ <comment xml:lang="sk">Správa TNEF</comment>
+ <comment xml:lang="ru">Сообщение TNEF</comment>
+ <comment xml:lang="ro">Mesaj TNEF</comment>
+ <comment xml:lang="pt_BR">Mensagem TNEF</comment>
+ <comment xml:lang="pt">mensagem TNEF</comment>
+ <comment xml:lang="pl">Wiadomość TNEF</comment>
+ <comment xml:lang="oc">messatge TNEF</comment>
+ <comment xml:lang="nn">TNEF-melding</comment>
+ <comment xml:lang="nl">TNEF-bericht</comment>
+ <comment xml:lang="nb">TNEF-melding</comment>
+ <comment xml:lang="lv">TNEF ziņojums</comment>
+ <comment xml:lang="lt">TNEF žinutė</comment>
+ <comment xml:lang="ko">TNEF 메시지</comment>
+ <comment xml:lang="kk">TNEF мәлімдемесі</comment>
+ <comment xml:lang="ja">TNEF メッセージ</comment>
+ <comment xml:lang="it">Messaggio TNEF</comment>
+ <comment xml:lang="is">TNEF skilaboð</comment>
+ <comment xml:lang="id">Pesan TNEF</comment>
+ <comment xml:lang="ia">Message TNEF</comment>
+ <comment xml:lang="hu">TNEF üzenet</comment>
+ <comment xml:lang="hr">TNEF poruka</comment>
+ <comment xml:lang="he">הודעת TNEF</comment>
+ <comment xml:lang="gl">mensaxe TNEF</comment>
+ <comment xml:lang="ga">teachtaireacht TNEF</comment>
+ <comment xml:lang="fur">messaç TNEF</comment>
+ <comment xml:lang="fr">message TNEF</comment>
+ <comment xml:lang="fo">TNEF boð</comment>
+ <comment xml:lang="fi">TNEF-viesti</comment>
+ <comment xml:lang="eu">TNEF mezua</comment>
+ <comment xml:lang="es">mensaje TNEF</comment>
+ <comment xml:lang="en_GB">TNEF message</comment>
+ <comment xml:lang="el">Μήνυμα TNEF</comment>
+ <comment xml:lang="de">TNEF-Nachricht</comment>
+ <comment xml:lang="da">TNEF-meddelelse</comment>
+ <comment xml:lang="cs">zpráva TNEF</comment>
+ <comment xml:lang="ca">missatge TNEF</comment>
+ <comment xml:lang="bg">Съобщение — TNEF</comment>
+ <comment xml:lang="be@latin">List TNEF</comment>
+ <comment xml:lang="be">паведамленне TNEF</comment>
+ <comment xml:lang="ast">Mensaxe TNEF</comment>
+ <comment xml:lang="ar">رسالة TNEF</comment>
+ <comment xml:lang="af">TNEF-boodskap</comment>
<acronym>TNEF</acronym>
<expanded-acronym>Transport Neutral Encapsulation Format</expanded-acronym>
- <magic priority="50">
- <match value="0x223e9f78" type="little32" offset="0"/>
+ <magic>
+ <match type="little32" value="0x223e9f78" offset="0"/>
</magic>
<glob pattern="*.tnef"/>
<glob pattern="*.tnf"/>
@@ -4298,998 +4951,662 @@
</mime-type>
<mime-type type="application/vnd.stardivision.calc">
<comment>StarCalc spreadsheet</comment>
- <comment xml:lang="ar">جدول StarCalc</comment>
- <comment xml:lang="az">StarCalc hesab cədvəli</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš StarCalc</comment>
- <comment xml:lang="bg">Таблица — StarCalc</comment>
- <comment xml:lang="ca">full de càlcul de StarCalc</comment>
- <comment xml:lang="cs">sešit StarCalc</comment>
- <comment xml:lang="cy">Taenlen StarCalc</comment>
- <comment xml:lang="da">StarCalc-regneark</comment>
- <comment xml:lang="de">StarCalc-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο StarCalc</comment>
- <comment xml:lang="en_GB">StarCalc spreadsheet</comment>
- <comment xml:lang="eo">StarCalc-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo de StarCalc</comment>
- <comment xml:lang="eu">StarCalc kalkulu-orria</comment>
- <comment xml:lang="fi">StarCalc-taulukko</comment>
- <comment xml:lang="fo">StarCalc rokniark</comment>
- <comment xml:lang="fr">feuille de calcul StarCalc</comment>
- <comment xml:lang="ga">scarbhileog StarCalc</comment>
- <comment xml:lang="gl">folla de cálculo de StarCalc</comment>
- <comment xml:lang="he">גליון נתונים של StarCalc</comment>
- <comment xml:lang="hr">StarCalc proračunska tablica</comment>
- <comment xml:lang="hu">StarCalc-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo StarCalc</comment>
- <comment xml:lang="id">Lembar sebar StarCalc</comment>
- <comment xml:lang="it">Foglio di calcolo StarCalc</comment>
- <comment xml:lang="ja">StarCalc スプレッドシート</comment>
- <comment xml:lang="kk">StarCalc электрондық кестесі</comment>
- <comment xml:lang="ko">StarCalc 스프레드시트</comment>
- <comment xml:lang="lt">StarCalc skaičialentė</comment>
- <comment xml:lang="lv">StarCalc izklājlapa</comment>
- <comment xml:lang="ms">Hamparan StarCalc</comment>
- <comment xml:lang="nb">StarCalc-regneark</comment>
- <comment xml:lang="nl">StarCalc-rekenblad</comment>
- <comment xml:lang="nn">StarCalc-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul StarCalc</comment>
- <comment xml:lang="pl">Arkusz StarCalc</comment>
- <comment xml:lang="pt">folha de cálculo do StarCalc</comment>
- <comment xml:lang="pt_BR">Planilha do StarCalc</comment>
- <comment xml:lang="ro">Foaie de calcul StarCalc</comment>
- <comment xml:lang="ru">Электронная таблица StarCalc</comment>
- <comment xml:lang="sk">Zošit StarCalc</comment>
- <comment xml:lang="sl">Preglednica StarCalc</comment>
- <comment xml:lang="sq">Fletë llogaritjesh StarCalc</comment>
- <comment xml:lang="sr">Стар калк табела</comment>
- <comment xml:lang="sv">StarCalc-kalkylblad</comment>
- <comment xml:lang="tr">StarCalc çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця StarCalc</comment>
- <comment xml:lang="vi">Bảng tính StarCalc</comment>
- <comment xml:lang="zh_CN">StarCalc 电子表格</comment>
<comment xml:lang="zh_TW">StarCalc 試算表</comment>
+ <comment xml:lang="zh_CN">StarCalc 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính StarCalc</comment>
+ <comment xml:lang="uk">електронна таблиця StarCalc</comment>
+ <comment xml:lang="tr">StarCalc hesap çizelgesi</comment>
+ <comment xml:lang="sv">StarCalc-kalkylblad</comment>
+ <comment xml:lang="sr">Стар калк табела</comment>
+ <comment xml:lang="sq">fletëllogaritje StarCalc</comment>
+ <comment xml:lang="sl">Preglednica StarCalc</comment>
+ <comment xml:lang="si">StarCalc පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit StarCalc</comment>
+ <comment xml:lang="ru">Электронная таблица StarCalc</comment>
+ <comment xml:lang="ro">Foaie de calcul StarCalc</comment>
+ <comment xml:lang="pt_BR">Planilha do StarCalc</comment>
+ <comment xml:lang="pt">folha de cálculo do StarCalc</comment>
+ <comment xml:lang="pl">Arkusz StarCalc</comment>
+ <comment xml:lang="oc">fuèlh de calcul StarCalc</comment>
+ <comment xml:lang="nn">StarCalc-rekneark</comment>
+ <comment xml:lang="nl">StarCalc-rekenblad</comment>
+ <comment xml:lang="nb">StarCalc-regneark</comment>
+ <comment xml:lang="ms">Hamparan StarCalc</comment>
+ <comment xml:lang="lv">StarCalc izklājlapa</comment>
+ <comment xml:lang="lt">StarCalc skaičialentė</comment>
+ <comment xml:lang="ko">StarCalc 스프레드시트</comment>
+ <comment xml:lang="kk">StarCalc электрондық кестесі</comment>
+ <comment xml:lang="ja">StarCalc スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo StarCalc</comment>
+ <comment xml:lang="is">StarCalc töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar StarCalc</comment>
+ <comment xml:lang="ia">Folio de calculo StarCalc</comment>
+ <comment xml:lang="hu">StarCalc-munkafüzet</comment>
+ <comment xml:lang="hr">StarCalc proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של StarCalc</comment>
+ <comment xml:lang="gl">folla de cálculo de StarCalc</comment>
+ <comment xml:lang="ga">scarbhileog StarCalc</comment>
+ <comment xml:lang="fur">sfuei di calcul StarCalc</comment>
+ <comment xml:lang="fr">feuille de calcul StarCalc</comment>
+ <comment xml:lang="fo">StarCalc rokniark</comment>
+ <comment xml:lang="fi">StarCalc-taulukko</comment>
+ <comment xml:lang="eu">StarCalc kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de StarCalc</comment>
+ <comment xml:lang="eo">StarCalc-kalkultabelo</comment>
+ <comment xml:lang="en_GB">StarCalc spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο StarCalc</comment>
+ <comment xml:lang="de">StarCalc-Tabelle</comment>
+ <comment xml:lang="da">StarCalc-regneark</comment>
+ <comment xml:lang="cy">Taenlen StarCalc</comment>
+ <comment xml:lang="cs">sešit StarCalc</comment>
+ <comment xml:lang="ca">full de càlcul de StarCalc</comment>
+ <comment xml:lang="bg">Таблица — StarCalc</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš StarCalc</comment>
+ <comment xml:lang="be">электронная табліца StarCalc</comment>
+ <comment xml:lang="az">StarCalc hesab cədvəli</comment>
+ <comment xml:lang="ar">جدول StarCalc</comment>
+ <comment xml:lang="af">StarCalc-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.sdc"/>
</mime-type>
<mime-type type="application/vnd.stardivision.chart">
<comment>StarChart chart</comment>
- <comment xml:lang="ar">مخطط StarChart</comment>
- <comment xml:lang="az">StarChart cədvəli</comment>
- <comment xml:lang="be@latin">Dyjahrama StarChart</comment>
- <comment xml:lang="bg">Диаграма — StarChart</comment>
- <comment xml:lang="ca">diagrama de StarChart</comment>
- <comment xml:lang="cs">graf StarChart</comment>
- <comment xml:lang="cy">Siart StarChart</comment>
- <comment xml:lang="da">StarChart-diagram</comment>
- <comment xml:lang="de">StarChart-Diagramm</comment>
- <comment xml:lang="el">Γράφημα StarChart</comment>
- <comment xml:lang="en_GB">StarChart chart</comment>
- <comment xml:lang="eo">StarChart-diagramo</comment>
- <comment xml:lang="es">gráfico de StarChart</comment>
- <comment xml:lang="eu">StarChart diagrama</comment>
- <comment xml:lang="fi">StarChart-kaavio</comment>
- <comment xml:lang="fo">StarChart strikumynd</comment>
- <comment xml:lang="fr">graphique StarChart</comment>
- <comment xml:lang="ga">cairt StarChart</comment>
- <comment xml:lang="gl">gráfica de StarChart</comment>
- <comment xml:lang="he">טבלה של StarChart</comment>
- <comment xml:lang="hr">StarChart grafikon</comment>
- <comment xml:lang="hu">StarChart-grafikon</comment>
- <comment xml:lang="ia">Graphico StarChart</comment>
- <comment xml:lang="id">Bagan StarChart</comment>
- <comment xml:lang="it">Grafico StarChart</comment>
- <comment xml:lang="ja">StarChart チャート</comment>
- <comment xml:lang="kk">StarChart диаграммасы</comment>
- <comment xml:lang="ko">StarCalc 표</comment>
- <comment xml:lang="lt">StarChart diagrama</comment>
- <comment xml:lang="lv">StarChart diagramma</comment>
- <comment xml:lang="ms">Carta StarChart</comment>
- <comment xml:lang="nb">StarChart graf</comment>
- <comment xml:lang="nl">StarChart-kaart</comment>
- <comment xml:lang="nn">StarChart-graf</comment>
- <comment xml:lang="oc">grafic StarChart</comment>
- <comment xml:lang="pl">Wykres StarChart</comment>
- <comment xml:lang="pt">gráfico do StarChart</comment>
- <comment xml:lang="pt_BR">Gráfico do StarChart</comment>
- <comment xml:lang="ro">Diagramă StarChart</comment>
- <comment xml:lang="ru">Диаграмма StarChart</comment>
- <comment xml:lang="sk">Graf StarChart</comment>
- <comment xml:lang="sl">Datoteka grafikona StarChart</comment>
- <comment xml:lang="sq">Grafik StarChart</comment>
- <comment xml:lang="sr">График Стар Графика</comment>
- <comment xml:lang="sv">StarChart-diagram</comment>
- <comment xml:lang="tr">StarChart çizgelgesi</comment>
- <comment xml:lang="uk">діаграма StarChart</comment>
- <comment xml:lang="vi">Đồ thị StarChart</comment>
- <comment xml:lang="zh_CN">StarCalc 图表</comment>
<comment xml:lang="zh_TW">StarChart 圖表</comment>
+ <comment xml:lang="zh_CN">StarCalc 图表</comment>
+ <comment xml:lang="vi">Đồ thị StarChart</comment>
+ <comment xml:lang="uk">діаграма StarChart</comment>
+ <comment xml:lang="tr">StarChart çizgesi</comment>
+ <comment xml:lang="sv">StarChart-diagram</comment>
+ <comment xml:lang="sr">График Стар Графика</comment>
+ <comment xml:lang="sq">grafik StarChart</comment>
+ <comment xml:lang="sl">Datoteka grafikona StarChart</comment>
+ <comment xml:lang="si">StarChart සටහන</comment>
+ <comment xml:lang="sk">Graf StarChart</comment>
+ <comment xml:lang="ru">Диаграмма StarChart</comment>
+ <comment xml:lang="ro">Diagramă StarChart</comment>
+ <comment xml:lang="pt_BR">Gráfico do StarChart</comment>
+ <comment xml:lang="pt">gráfico do StarChart</comment>
+ <comment xml:lang="pl">Wykres StarChart</comment>
+ <comment xml:lang="oc">grafic StarChart</comment>
+ <comment xml:lang="nn">StarChart-graf</comment>
+ <comment xml:lang="nl">StarChart-kaart</comment>
+ <comment xml:lang="nb">StarChart graf</comment>
+ <comment xml:lang="ms">Carta StarChart</comment>
+ <comment xml:lang="lv">StarChart diagramma</comment>
+ <comment xml:lang="lt">StarChart diagrama</comment>
+ <comment xml:lang="ko">StarCalc 표</comment>
+ <comment xml:lang="kk">StarChart диаграммасы</comment>
+ <comment xml:lang="ja">StarChart チャート</comment>
+ <comment xml:lang="it">Grafico StarChart</comment>
+ <comment xml:lang="is">StarChart kort</comment>
+ <comment xml:lang="id">Bagan StarChart</comment>
+ <comment xml:lang="ia">Graphico StarChart</comment>
+ <comment xml:lang="hu">StarChart-grafikon</comment>
+ <comment xml:lang="hr">StarChart grafikon</comment>
+ <comment xml:lang="he">טבלת StarChart</comment>
+ <comment xml:lang="gl">gráfica de StarChart</comment>
+ <comment xml:lang="ga">cairt StarChart</comment>
+ <comment xml:lang="fur">grafic StarChart</comment>
+ <comment xml:lang="fr">graphique StarChart</comment>
+ <comment xml:lang="fo">StarChart strikumynd</comment>
+ <comment xml:lang="fi">StarChart-kaavio</comment>
+ <comment xml:lang="eu">StarChart diagrama</comment>
+ <comment xml:lang="es">gráfico de StarChart</comment>
+ <comment xml:lang="eo">StarChart-diagramo</comment>
+ <comment xml:lang="en_GB">StarChart chart</comment>
+ <comment xml:lang="el">Γράφημα StarChart</comment>
+ <comment xml:lang="de">StarChart-Diagramm</comment>
+ <comment xml:lang="da">StarChart-diagram</comment>
+ <comment xml:lang="cy">Siart StarChart</comment>
+ <comment xml:lang="cs">graf StarChart</comment>
+ <comment xml:lang="ca">diagrama de StarChart</comment>
+ <comment xml:lang="bg">Диаграма — StarChart</comment>
+ <comment xml:lang="be@latin">Dyjahrama StarChart</comment>
+ <comment xml:lang="be">дыяграма StarChart</comment>
+ <comment xml:lang="az">StarChart cədvəli</comment>
+ <comment xml:lang="ar">مخطط StarChart</comment>
+ <comment xml:lang="af">StarChart-grafiek</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.sds"/>
</mime-type>
<mime-type type="application/vnd.stardivision.draw">
<comment>StarDraw drawing</comment>
- <comment xml:lang="ar">تصميم StarDraw</comment>
- <comment xml:lang="az">StarDraw çəkimi</comment>
- <comment xml:lang="be@latin">Rysunak StarDraw</comment>
- <comment xml:lang="bg">Чертеж — StarDraw</comment>
- <comment xml:lang="ca">dibuix de StarDraw</comment>
- <comment xml:lang="cs">kresba StarDraw</comment>
- <comment xml:lang="cy">Darlun StarDraw</comment>
- <comment xml:lang="da">StarDraw-tegning</comment>
- <comment xml:lang="de">StarDraw-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο StarDraw</comment>
- <comment xml:lang="en_GB">StarDraw drawing</comment>
- <comment xml:lang="eo">StarDraw-grafikaĵo</comment>
- <comment xml:lang="es">dibujo de StarDraw</comment>
- <comment xml:lang="eu">StarDraw marrazkia</comment>
- <comment xml:lang="fi">StarDraw-piirros</comment>
- <comment xml:lang="fo">StarDraw tekning</comment>
- <comment xml:lang="fr">dessin StarDraw</comment>
- <comment xml:lang="ga">líníocht StarDraw</comment>
- <comment xml:lang="gl">debuxo de StarDraw</comment>
- <comment xml:lang="he">ציור של StarDrawing</comment>
- <comment xml:lang="hr">StarDraw crtež</comment>
- <comment xml:lang="hu">StarDraw-rajz</comment>
- <comment xml:lang="ia">Designo StarDraw</comment>
- <comment xml:lang="id">Gambar StarDraw</comment>
- <comment xml:lang="it">Disegno StarDraw</comment>
- <comment xml:lang="ja">StarDraw ドロー</comment>
- <comment xml:lang="kk">StarDraw суреті</comment>
- <comment xml:lang="ko">StarCalc 드로잉</comment>
- <comment xml:lang="lt">StarDraw piešinys</comment>
- <comment xml:lang="lv">StarDraw zīmējums</comment>
- <comment xml:lang="ms">Lukisan StarDraw</comment>
- <comment xml:lang="nb">StarDraw tegning</comment>
- <comment xml:lang="nl">StarDraw-tekening</comment>
- <comment xml:lang="nn">StarDraw-teikning</comment>
- <comment xml:lang="oc">dessenh StarDraw</comment>
- <comment xml:lang="pl">Rysunek StarDraw</comment>
- <comment xml:lang="pt">desenho do StarDraw</comment>
- <comment xml:lang="pt_BR">Desenho do StarDraw</comment>
- <comment xml:lang="ro">Desen StarDraw</comment>
- <comment xml:lang="ru">Рисунок StarDraw</comment>
- <comment xml:lang="sk">Kresba StarDraw</comment>
- <comment xml:lang="sl">Datoteka risbe StarDraw</comment>
- <comment xml:lang="sq">Vizatim StarDraw</comment>
- <comment xml:lang="sr">Цртеж Стар Цртежа</comment>
- <comment xml:lang="sv">StarDraw-teckning</comment>
- <comment xml:lang="tr">StarDraw çizimi</comment>
- <comment xml:lang="uk">малюнок StarDraw</comment>
- <comment xml:lang="vi">Bản vẽ StarDraw</comment>
- <comment xml:lang="zh_CN">StarDraw 绘图</comment>
<comment xml:lang="zh_TW">StarDraw 繪圖</comment>
+ <comment xml:lang="zh_CN">StarDraw 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ StarDraw</comment>
+ <comment xml:lang="uk">малюнок StarDraw</comment>
+ <comment xml:lang="tr">StarDraw çizimi</comment>
+ <comment xml:lang="sv">StarDraw-teckning</comment>
+ <comment xml:lang="sr">Цртеж Стар Цртежа</comment>
+ <comment xml:lang="sq">vizatim StarDraw</comment>
+ <comment xml:lang="sl">Datoteka risbe StarDraw</comment>
+ <comment xml:lang="si">StarDraw ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba StarDraw</comment>
+ <comment xml:lang="ru">Рисунок StarDraw</comment>
+ <comment xml:lang="ro">Desen StarDraw</comment>
+ <comment xml:lang="pt_BR">Desenho do StarDraw</comment>
+ <comment xml:lang="pt">desenho do StarDraw</comment>
+ <comment xml:lang="pl">Rysunek StarDraw</comment>
+ <comment xml:lang="oc">dessenh StarDraw</comment>
+ <comment xml:lang="nn">StarDraw-teikning</comment>
+ <comment xml:lang="nl">StarDraw-tekening</comment>
+ <comment xml:lang="nb">StarDraw tegning</comment>
+ <comment xml:lang="ms">Lukisan StarDraw</comment>
+ <comment xml:lang="lv">StarDraw zīmējums</comment>
+ <comment xml:lang="lt">StarDraw piešinys</comment>
+ <comment xml:lang="ko">StarCalc 드로잉</comment>
+ <comment xml:lang="kk">StarDraw суреті</comment>
+ <comment xml:lang="ja">StarDraw ドロー</comment>
+ <comment xml:lang="it">Disegno StarDraw</comment>
+ <comment xml:lang="is">StarDraw teikning</comment>
+ <comment xml:lang="id">Gambar StarDraw</comment>
+ <comment xml:lang="ia">Designo StarDraw</comment>
+ <comment xml:lang="hu">StarDraw-rajz</comment>
+ <comment xml:lang="hr">StarDraw crtež</comment>
+ <comment xml:lang="he">ציור StarDrawing</comment>
+ <comment xml:lang="gl">debuxo de StarDraw</comment>
+ <comment xml:lang="ga">líníocht StarDraw</comment>
+ <comment xml:lang="fur">dissen StarDraw</comment>
+ <comment xml:lang="fr">dessin StarDraw</comment>
+ <comment xml:lang="fo">StarDraw tekning</comment>
+ <comment xml:lang="fi">StarDraw-piirros</comment>
+ <comment xml:lang="eu">StarDraw marrazkia</comment>
+ <comment xml:lang="es">dibujo de StarDraw</comment>
+ <comment xml:lang="eo">StarDraw-grafikaĵo</comment>
+ <comment xml:lang="en_GB">StarDraw drawing</comment>
+ <comment xml:lang="el">Σχέδιο StarDraw</comment>
+ <comment xml:lang="de">StarDraw-Zeichnung</comment>
+ <comment xml:lang="da">StarDraw-tegning</comment>
+ <comment xml:lang="cy">Darlun StarDraw</comment>
+ <comment xml:lang="cs">kresba StarDraw</comment>
+ <comment xml:lang="ca">dibuix de StarDraw</comment>
+ <comment xml:lang="bg">Чертеж — StarDraw</comment>
+ <comment xml:lang="be@latin">Rysunak StarDraw</comment>
+ <comment xml:lang="be">рысунак StarDraw</comment>
+ <comment xml:lang="az">StarDraw çəkimi</comment>
+ <comment xml:lang="ar">تصميم StarDraw</comment>
+ <comment xml:lang="af">StarDraw-tekening</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.sda"/>
</mime-type>
<mime-type type="application/vnd.stardivision.impress">
<comment>StarImpress presentation</comment>
- <comment xml:lang="ar">عرض تقديمي StarImpress</comment>
- <comment xml:lang="az">StarImpress təqdimatı</comment>
- <comment xml:lang="be@latin">Prezentacyja StarImpress</comment>
- <comment xml:lang="bg">Презентация — StarImpress</comment>
- <comment xml:lang="ca">presentació de StarImpress</comment>
- <comment xml:lang="cs">prezentace StarImpress</comment>
- <comment xml:lang="cy">Cyflwyniad StarImpress</comment>
- <comment xml:lang="da">StarImpress-præsentation</comment>
- <comment xml:lang="de">StarImpress-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση StarImpress</comment>
- <comment xml:lang="en_GB">StarImpress presentation</comment>
- <comment xml:lang="eo">StarImpress-prezentaĵo</comment>
- <comment xml:lang="es">presentación de StarImpress</comment>
- <comment xml:lang="eu">StarImpress aurkezpena</comment>
- <comment xml:lang="fi">StarImpress-esitys</comment>
- <comment xml:lang="fo">StarImpress framløga</comment>
- <comment xml:lang="fr">présentation StarImpress</comment>
- <comment xml:lang="ga">láithreoireacht StarImpress</comment>
- <comment xml:lang="gl">presentación de StarImpress</comment>
- <comment xml:lang="he">מצגת של StarImpress</comment>
- <comment xml:lang="hr">StarImpress prezentacija</comment>
- <comment xml:lang="hu">StarImpress-bemutató</comment>
- <comment xml:lang="ia">Presentation StarImpress</comment>
- <comment xml:lang="id">Presentasi StarImpress</comment>
- <comment xml:lang="it">Presentazione StarImpress</comment>
- <comment xml:lang="ja">StarImpress プレゼンテーション</comment>
- <comment xml:lang="kk">StarImpress презентациясы</comment>
- <comment xml:lang="ko">StarImpress 프레젠테이션</comment>
- <comment xml:lang="lt">StarImpress pateiktis</comment>
- <comment xml:lang="lv">StarImpress prezentācija</comment>
- <comment xml:lang="ms">Persembahan StarImpress</comment>
- <comment xml:lang="nb">StarImpress-presentasjon</comment>
- <comment xml:lang="nl">StarImpress-presentatie</comment>
- <comment xml:lang="nn">StarImpress-presentasjon</comment>
- <comment xml:lang="oc">presentacion StarImpress</comment>
- <comment xml:lang="pl">Prezentacja StarImpress</comment>
- <comment xml:lang="pt">apresentação do StarImpress</comment>
- <comment xml:lang="pt_BR">Apresentação do StarImpress</comment>
- <comment xml:lang="ro">Prezentare StarImpress</comment>
- <comment xml:lang="ru">Презентация StarImpress</comment>
- <comment xml:lang="sk">Prezentácia StarImpress</comment>
- <comment xml:lang="sl">Predstavitev StarImpress</comment>
- <comment xml:lang="sq">Prezantim StarImpress</comment>
- <comment xml:lang="sr">Презентација Стар Импреса</comment>
- <comment xml:lang="sv">StarImpress-presentation</comment>
- <comment xml:lang="tr">StarImpress sunumu</comment>
- <comment xml:lang="uk">презентація StarImpress</comment>
- <comment xml:lang="vi">Trình diễn StarImpress</comment>
+ <comment xml:lang="zh_TW">StarImpress 簡報</comment>
<comment xml:lang="zh_CN">StarImpress 演示文稿</comment>
- <comment xml:lang="zh_TW">StarImpress 簡報檔</comment>
+ <comment xml:lang="vi">Trình diễn StarImpress</comment>
+ <comment xml:lang="uk">презентація StarImpress</comment>
+ <comment xml:lang="tr">StarImpress sunumu</comment>
+ <comment xml:lang="sv">StarImpress-presentation</comment>
+ <comment xml:lang="sr">Презентација Стар Импреса</comment>
+ <comment xml:lang="sq">paraqitje StarImpress</comment>
+ <comment xml:lang="sl">Predstavitev StarImpress</comment>
+ <comment xml:lang="si">StarImpress ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia StarImpress</comment>
+ <comment xml:lang="ru">Презентация StarImpress</comment>
+ <comment xml:lang="ro">Prezentare StarImpress</comment>
+ <comment xml:lang="pt_BR">Apresentação do StarImpress</comment>
+ <comment xml:lang="pt">apresentação do StarImpress</comment>
+ <comment xml:lang="pl">Prezentacja StarImpress</comment>
+ <comment xml:lang="oc">presentacion StarImpress</comment>
+ <comment xml:lang="nn">StarImpress-presentasjon</comment>
+ <comment xml:lang="nl">StarImpress-presentatie</comment>
+ <comment xml:lang="nb">StarImpress-presentasjon</comment>
+ <comment xml:lang="ms">Persembahan StarImpress</comment>
+ <comment xml:lang="lv">StarImpress prezentācija</comment>
+ <comment xml:lang="lt">StarImpress pateiktis</comment>
+ <comment xml:lang="ko">StarImpress 프레젠테이션</comment>
+ <comment xml:lang="kk">StarImpress презентациясы</comment>
+ <comment xml:lang="ja">StarImpress プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione StarImpress</comment>
+ <comment xml:lang="is">StarImpress framsetning</comment>
+ <comment xml:lang="id">Presentasi StarImpress</comment>
+ <comment xml:lang="ia">Presentation StarImpress</comment>
+ <comment xml:lang="hu">StarImpress-bemutató</comment>
+ <comment xml:lang="hr">StarImpress prezentacija</comment>
+ <comment xml:lang="he">מצגת StarImpress</comment>
+ <comment xml:lang="gl">presentación de StarImpress</comment>
+ <comment xml:lang="ga">láithreoireacht StarImpress</comment>
+ <comment xml:lang="fur">presentazion StarImpress</comment>
+ <comment xml:lang="fr">présentation StarImpress</comment>
+ <comment xml:lang="fo">StarImpress framløga</comment>
+ <comment xml:lang="fi">StarImpress-esitys</comment>
+ <comment xml:lang="eu">StarImpress aurkezpena</comment>
+ <comment xml:lang="es">presentación de StarImpress</comment>
+ <comment xml:lang="eo">StarImpress-prezentaĵo</comment>
+ <comment xml:lang="en_GB">StarImpress presentation</comment>
+ <comment xml:lang="el">Παρουσίαση StarImpress</comment>
+ <comment xml:lang="de">StarImpress-Präsentation</comment>
+ <comment xml:lang="da">StarImpress-præsentation</comment>
+ <comment xml:lang="cy">Cyflwyniad StarImpress</comment>
+ <comment xml:lang="cs">prezentace StarImpress</comment>
+ <comment xml:lang="ca">presentació de StarImpress</comment>
+ <comment xml:lang="bg">Презентация — StarImpress</comment>
+ <comment xml:lang="be@latin">Prezentacyja StarImpress</comment>
+ <comment xml:lang="be">прэзентацыя StarImpress</comment>
+ <comment xml:lang="az">StarImpress təqdimatı</comment>
+ <comment xml:lang="ar">عرض تقديمي StarImpress</comment>
+ <comment xml:lang="af">StarImpress-voorlegging</comment>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.sdd"/>
<glob pattern="*.sdp"/>
</mime-type>
<mime-type type="application/vnd.stardivision.mail">
<comment>StarMail email</comment>
- <comment xml:lang="ar">بريد StarMail الإلكتروني</comment>
- <comment xml:lang="be@latin">Email StarMail</comment>
- <comment xml:lang="bg">Електронно писмо — StarMail</comment>
- <comment xml:lang="ca">correu electrònic de StarMail</comment>
- <comment xml:lang="cs">e-mail StarMail</comment>
- <comment xml:lang="da">StarMail-e-brev</comment>
- <comment xml:lang="de">StarMail-E-Mail</comment>
- <comment xml:lang="el">Ηλ. μήνυμα StarMail</comment>
- <comment xml:lang="en_GB">StarMail email</comment>
- <comment xml:lang="eo">StarMail-retpoŝto</comment>
- <comment xml:lang="es">correo electrónico de StarMail</comment>
- <comment xml:lang="eu">StarMail helb.el.</comment>
- <comment xml:lang="fi">StarMail-sähköposti</comment>
- <comment xml:lang="fo">StarMail t-postur</comment>
- <comment xml:lang="fr">courriel StarMail</comment>
- <comment xml:lang="ga">ríomhphost StarMail</comment>
- <comment xml:lang="gl">Correo electrónico de StarMail</comment>
- <comment xml:lang="he">דוא״ל של StarMail</comment>
- <comment xml:lang="hr">StarMail e-pošta</comment>
- <comment xml:lang="hu">StarMail e-mail</comment>
- <comment xml:lang="ia">Message electronic StarMail</comment>
- <comment xml:lang="id">Email StarMail</comment>
- <comment xml:lang="it">Email StarMail</comment>
- <comment xml:lang="ja">StarMail メール</comment>
- <comment xml:lang="kk">StarMail электрондық хаты</comment>
- <comment xml:lang="ko">StarMail 전자우편</comment>
- <comment xml:lang="lt">StarMail el. laiškas</comment>
- <comment xml:lang="lv">StarMail epasts</comment>
- <comment xml:lang="ms">Emel StarMail</comment>
- <comment xml:lang="nb">StarMail-melding</comment>
- <comment xml:lang="nl">StarMail-e-mail</comment>
- <comment xml:lang="nn">StarMail-fil</comment>
- <comment xml:lang="oc">corrièr electronic StarMail</comment>
- <comment xml:lang="pl">E-Mail StarMail</comment>
- <comment xml:lang="pt">email do StarMail</comment>
- <comment xml:lang="pt_BR">E-mail do StarMail</comment>
- <comment xml:lang="ro">Email StarEmail</comment>
- <comment xml:lang="ru">Электронное письмо StarMail</comment>
- <comment xml:lang="sk">E-mail StarMail</comment>
- <comment xml:lang="sl">Datoteka pošte StarMail</comment>
- <comment xml:lang="sq">Mesazh StarMail</comment>
- <comment xml:lang="sr">Ел. пошта Стар Поште</comment>
- <comment xml:lang="sv">StarMail-e-post</comment>
- <comment xml:lang="tr">StarMail epostası</comment>
- <comment xml:lang="uk">поштове повідомлення StarMail</comment>
- <comment xml:lang="vi">Thư điện tử StarMail</comment>
- <comment xml:lang="zh_CN">StarMail 电子邮件</comment>
<comment xml:lang="zh_TW">StarMail 郵件</comment>
+ <comment xml:lang="zh_CN">StarMail 电子邮件</comment>
+ <comment xml:lang="vi">Thư điện tử StarMail</comment>
+ <comment xml:lang="uk">поштове повідомлення StarMail</comment>
+ <comment xml:lang="tr">StarMail epostası</comment>
+ <comment xml:lang="sv">StarMail-e-post</comment>
+ <comment xml:lang="sr">Ел. пошта Стар Поште</comment>
+ <comment xml:lang="sq">email StarMail</comment>
+ <comment xml:lang="sl">Datoteka pošte StarMail</comment>
+ <comment xml:lang="si">StarMail ඊමේල්</comment>
+ <comment xml:lang="sk">E-mail StarMail</comment>
+ <comment xml:lang="ru">Электронное письмо StarMail</comment>
+ <comment xml:lang="ro">Email StarEmail</comment>
+ <comment xml:lang="pt_BR">E-mail do StarMail</comment>
+ <comment xml:lang="pt">email do StarMail</comment>
+ <comment xml:lang="pl">E-Mail StarMail</comment>
+ <comment xml:lang="oc">corrièr electronic StarMail</comment>
+ <comment xml:lang="nn">StarMail-fil</comment>
+ <comment xml:lang="nl">StarMail-e-mail</comment>
+ <comment xml:lang="nb">StarMail-melding</comment>
+ <comment xml:lang="ms">Emel StarMail</comment>
+ <comment xml:lang="lv">StarMail epasts</comment>
+ <comment xml:lang="lt">StarMail el. laiškas</comment>
+ <comment xml:lang="ko">StarMail 전자우편</comment>
+ <comment xml:lang="kk">StarMail электрондық хаты</comment>
+ <comment xml:lang="ja">StarMail メール</comment>
+ <comment xml:lang="it">Email StarMail</comment>
+ <comment xml:lang="is">StarMail tölvupóstur</comment>
+ <comment xml:lang="id">Email StarMail</comment>
+ <comment xml:lang="ia">Message electronic StarMail</comment>
+ <comment xml:lang="hu">StarMail e-mail</comment>
+ <comment xml:lang="hr">StarMail e-pošta</comment>
+ <comment xml:lang="he">דוא״ל של StarMail</comment>
+ <comment xml:lang="gl">Correo electrónico de StarMail</comment>
+ <comment xml:lang="ga">ríomhphost StarMail</comment>
+ <comment xml:lang="fur">e-mail StarMail</comment>
+ <comment xml:lang="fr">courriel StarMail</comment>
+ <comment xml:lang="fo">StarMail t-postur</comment>
+ <comment xml:lang="fi">StarMail-sähköposti</comment>
+ <comment xml:lang="eu">StarMail helb.el.</comment>
+ <comment xml:lang="es">correo electrónico de StarMail</comment>
+ <comment xml:lang="eo">StarMail-retpoŝto</comment>
+ <comment xml:lang="en_GB">StarMail e-mail</comment>
+ <comment xml:lang="el">Ηλ. μήνυμα StarMail</comment>
+ <comment xml:lang="de">StarMail-E-Mail</comment>
+ <comment xml:lang="da">StarMail-e-brev</comment>
+ <comment xml:lang="cs">e-mail StarMail</comment>
+ <comment xml:lang="ca">correu electrònic de StarMail</comment>
+ <comment xml:lang="bg">Електронно писмо — StarMail</comment>
+ <comment xml:lang="be@latin">Email StarMail</comment>
+ <comment xml:lang="be">Email StarMail</comment>
+ <comment xml:lang="ar">بريد إلكتروني StarMail</comment>
+ <comment xml:lang="af">StarMail-e-pos</comment>
<glob pattern="*.smd"/>
</mime-type>
<mime-type type="application/vnd.stardivision.math">
<comment>StarMath formula</comment>
- <comment xml:lang="ar">صيغة StarMath</comment>
- <comment xml:lang="be@latin">Formuła StarMath</comment>
- <comment xml:lang="bg">Формула — StarMath</comment>
- <comment xml:lang="ca">fórmula de StarMath</comment>
- <comment xml:lang="cs">vzorec StarMath</comment>
- <comment xml:lang="da">StarMath-formel</comment>
- <comment xml:lang="de">StarMath-Formel</comment>
- <comment xml:lang="el">Μαθηματικός τύπος StarMath</comment>
- <comment xml:lang="en_GB">StarMath formula</comment>
- <comment xml:lang="eo">StarMath-formulo</comment>
- <comment xml:lang="es">fórmula de StarMath</comment>
- <comment xml:lang="eu">StarMath formula</comment>
- <comment xml:lang="fi">StarMath-kaava</comment>
- <comment xml:lang="fo">StarMath frymil</comment>
- <comment xml:lang="fr">formule StarMath</comment>
- <comment xml:lang="ga">foirmle StarMath</comment>
- <comment xml:lang="gl">fórmula de StarMath</comment>
- <comment xml:lang="he">נוסחה של StarMath</comment>
- <comment xml:lang="hr">StarMath formula</comment>
- <comment xml:lang="hu">StarMath-képlet</comment>
- <comment xml:lang="ia">Formula StarMath</comment>
- <comment xml:lang="id">Formula StarMath</comment>
- <comment xml:lang="it">Formula StarMath</comment>
- <comment xml:lang="ja">StarMath 計算式</comment>
- <comment xml:lang="kk">StarMath формуласы</comment>
- <comment xml:lang="ko">StarMath 수식</comment>
- <comment xml:lang="lt">StarMath formulė</comment>
- <comment xml:lang="lv">StarMath formula</comment>
- <comment xml:lang="ms">Formula StarMath</comment>
- <comment xml:lang="nb">StarMath-formel</comment>
- <comment xml:lang="nl">StarMath-formule</comment>
- <comment xml:lang="nn">StarMath-formel</comment>
- <comment xml:lang="oc">formula StarMath</comment>
- <comment xml:lang="pl">Formuła StarMath</comment>
- <comment xml:lang="pt">fórmula do StarMath</comment>
- <comment xml:lang="pt_BR">Fórmula do StarMath</comment>
- <comment xml:lang="ro">Formulă StarMath</comment>
- <comment xml:lang="ru">Формула StarMath</comment>
- <comment xml:lang="sk">Vzorec StarMath</comment>
- <comment xml:lang="sl">Datoteka formule StarMath</comment>
- <comment xml:lang="sq">Formulë StarMath</comment>
- <comment xml:lang="sr">Формула Стар Математике</comment>
- <comment xml:lang="sv">StarMath-formel</comment>
- <comment xml:lang="tr">StarMath formülü</comment>
- <comment xml:lang="uk">формула StarMath</comment>
- <comment xml:lang="vi">Công thức StarMath</comment>
- <comment xml:lang="zh_CN">StarMath 公式</comment>
<comment xml:lang="zh_TW">StarMath 公式</comment>
+ <comment xml:lang="zh_CN">StarMath 公式</comment>
+ <comment xml:lang="vi">Công thức StarMath</comment>
+ <comment xml:lang="uk">формула StarMath</comment>
+ <comment xml:lang="tr">StarMath formülü</comment>
+ <comment xml:lang="sv">StarMath-formel</comment>
+ <comment xml:lang="sr">Формула Стар Математике</comment>
+ <comment xml:lang="sq">formulë StarMath</comment>
+ <comment xml:lang="sl">Datoteka formule StarMath</comment>
+ <comment xml:lang="si">StarMath සූත්‍රය</comment>
+ <comment xml:lang="sk">Vzorec StarMath</comment>
+ <comment xml:lang="ru">Формула StarMath</comment>
+ <comment xml:lang="ro">Formulă StarMath</comment>
+ <comment xml:lang="pt_BR">Fórmula do StarMath</comment>
+ <comment xml:lang="pt">fórmula do StarMath</comment>
+ <comment xml:lang="pl">Formuła StarMath</comment>
+ <comment xml:lang="oc">formula StarMath</comment>
+ <comment xml:lang="nn">StarMath-formel</comment>
+ <comment xml:lang="nl">StarMath-formule</comment>
+ <comment xml:lang="nb">StarMath-formel</comment>
+ <comment xml:lang="ms">Formula StarMath</comment>
+ <comment xml:lang="lv">StarMath formula</comment>
+ <comment xml:lang="lt">StarMath formulė</comment>
+ <comment xml:lang="ko">StarMath 수식</comment>
+ <comment xml:lang="kk">StarMath формуласы</comment>
+ <comment xml:lang="ja">StarMath 計算式</comment>
+ <comment xml:lang="it">Formula StarMath</comment>
+ <comment xml:lang="is">StarMath formúla</comment>
+ <comment xml:lang="id">Formula StarMath</comment>
+ <comment xml:lang="ia">Formula StarMath</comment>
+ <comment xml:lang="hu">StarMath-képlet</comment>
+ <comment xml:lang="hr">StarMath formula</comment>
+ <comment xml:lang="he">נוסחה של StarMath</comment>
+ <comment xml:lang="gl">fórmula de StarMath</comment>
+ <comment xml:lang="ga">foirmle StarMath</comment>
+ <comment xml:lang="fur">formule StarMath</comment>
+ <comment xml:lang="fr">formule StarMath</comment>
+ <comment xml:lang="fo">StarMath frymil</comment>
+ <comment xml:lang="fi">StarMath-kaava</comment>
+ <comment xml:lang="eu">StarMath formula</comment>
+ <comment xml:lang="es">fórmula de StarMath</comment>
+ <comment xml:lang="eo">StarMath-formulo</comment>
+ <comment xml:lang="en_GB">StarMath formula</comment>
+ <comment xml:lang="el">Μαθηματικός τύπος StarMath</comment>
+ <comment xml:lang="de">StarMath-Formel</comment>
+ <comment xml:lang="da">StarMath-formel</comment>
+ <comment xml:lang="cs">vzorec StarMath</comment>
+ <comment xml:lang="ca">fórmula de StarMath</comment>
+ <comment xml:lang="bg">Формула — StarMath</comment>
+ <comment xml:lang="be@latin">Formuła StarMath</comment>
+ <comment xml:lang="be">формула StarMath</comment>
+ <comment xml:lang="ar">صيغة StarMath</comment>
+ <comment xml:lang="af">StarMath-formule</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.smf"/>
</mime-type>
<mime-type type="application/vnd.stardivision.writer">
<comment>StarWriter document</comment>
- <comment xml:lang="ar">مستند StarWriter</comment>
- <comment xml:lang="ast">Documentu de StarWriter</comment>
- <comment xml:lang="az">StarWriter sənədi</comment>
- <comment xml:lang="be@latin">Dakument StarWriter</comment>
- <comment xml:lang="bg">Документ — StarWriter</comment>
- <comment xml:lang="ca">document StarWriter</comment>
- <comment xml:lang="cs">dokument StarWriter</comment>
- <comment xml:lang="cy">Dogfen StarWriter</comment>
- <comment xml:lang="da">StarWriter-dokument</comment>
- <comment xml:lang="de">StarWriter-Dokument</comment>
- <comment xml:lang="el">Έγγραφο StarWriter</comment>
- <comment xml:lang="en_GB">StarWriter document</comment>
- <comment xml:lang="eo">StarWriter-dokumento</comment>
- <comment xml:lang="es">documento de StarWriter</comment>
- <comment xml:lang="eu">StarWriter dokumentua</comment>
- <comment xml:lang="fi">StarWriter-asiakirja</comment>
- <comment xml:lang="fo">StarWriter skjal</comment>
- <comment xml:lang="fr">document StarWriter</comment>
- <comment xml:lang="ga">cáipéis StarWriter</comment>
- <comment xml:lang="gl">documento de StarWriter</comment>
- <comment xml:lang="he">מסמך של StarWriter</comment>
- <comment xml:lang="hr">StarWriter dokument</comment>
- <comment xml:lang="hu">StarWriter-dokumentum</comment>
- <comment xml:lang="ia">Documento StarWriter</comment>
- <comment xml:lang="id">Dokumen StarWriter</comment>
- <comment xml:lang="it">Documento StrarWriter</comment>
- <comment xml:lang="ja">StarWriter ドキュメント</comment>
- <comment xml:lang="kk">StarWriter құжаты</comment>
- <comment xml:lang="ko">StarWriter 문서</comment>
- <comment xml:lang="lt">StarWriter dokumentas</comment>
- <comment xml:lang="lv">StarWriter dokuments</comment>
- <comment xml:lang="ms">Dokumen StarWriter</comment>
- <comment xml:lang="nb">StarWriter-dokument</comment>
- <comment xml:lang="nl">StarWriter-document</comment>
- <comment xml:lang="nn">StarWriter document</comment>
- <comment xml:lang="oc">document StarWriter</comment>
- <comment xml:lang="pl">Dokument StarWriter</comment>
- <comment xml:lang="pt">documento do StarWriter</comment>
- <comment xml:lang="pt_BR">Documento do StarWriter</comment>
- <comment xml:lang="ro">Document StarWriter</comment>
- <comment xml:lang="ru">Документ StarWriter</comment>
- <comment xml:lang="sk">Dokument StarWriter</comment>
- <comment xml:lang="sl">Dokument StarWriter</comment>
- <comment xml:lang="sq">Dokument StarWriter</comment>
- <comment xml:lang="sr">Документ Стар Писца</comment>
- <comment xml:lang="sv">StarWriter-dokument</comment>
- <comment xml:lang="tr">StarWriter belgesi</comment>
- <comment xml:lang="uk">документ StarWriter</comment>
- <comment xml:lang="vi">Tài liệu StarWriter</comment>
- <comment xml:lang="zh_CN">StarWriter 文档</comment>
<comment xml:lang="zh_TW">StarWriter 文件</comment>
+ <comment xml:lang="zh_CN">StarWriter 文档</comment>
+ <comment xml:lang="vi">Tài liệu StarWriter</comment>
+ <comment xml:lang="uk">документ StarWriter</comment>
+ <comment xml:lang="tr">StarWriter belgesi</comment>
+ <comment xml:lang="sv">StarWriter-dokument</comment>
+ <comment xml:lang="sr">Документ Стар Писца</comment>
+ <comment xml:lang="sq">dokument StarWriter</comment>
+ <comment xml:lang="sl">Dokument StarWriter</comment>
+ <comment xml:lang="si">StarWriter ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument StarWriter</comment>
+ <comment xml:lang="ru">Документ StarWriter</comment>
+ <comment xml:lang="ro">Document StarWriter</comment>
+ <comment xml:lang="pt_BR">Documento do StarWriter</comment>
+ <comment xml:lang="pt">documento do StarWriter</comment>
+ <comment xml:lang="pl">Dokument StarWriter</comment>
+ <comment xml:lang="oc">document StarWriter</comment>
+ <comment xml:lang="nn">StarWriter document</comment>
+ <comment xml:lang="nl">StarWriter-document</comment>
+ <comment xml:lang="nb">StarWriter-dokument</comment>
+ <comment xml:lang="ms">Dokumen StarWriter</comment>
+ <comment xml:lang="lv">StarWriter dokuments</comment>
+ <comment xml:lang="lt">StarWriter dokumentas</comment>
+ <comment xml:lang="ko">StarWriter 문서</comment>
+ <comment xml:lang="kk">StarWriter құжаты</comment>
+ <comment xml:lang="ja">StarWriter ドキュメント</comment>
+ <comment xml:lang="it">Documento StrarWriter</comment>
+ <comment xml:lang="is">StarWriter skjal</comment>
+ <comment xml:lang="id">Dokumen StarWriter</comment>
+ <comment xml:lang="ia">Documento StarWriter</comment>
+ <comment xml:lang="hu">StarWriter-dokumentum</comment>
+ <comment xml:lang="hr">StarWriter dokument</comment>
+ <comment xml:lang="he">מסמך StarWriter</comment>
+ <comment xml:lang="gl">documento de StarWriter</comment>
+ <comment xml:lang="ga">cáipéis StarWriter</comment>
+ <comment xml:lang="fur">document StarWriter</comment>
+ <comment xml:lang="fr">document StarWriter</comment>
+ <comment xml:lang="fo">StarWriter skjal</comment>
+ <comment xml:lang="fi">StarWriter-asiakirja</comment>
+ <comment xml:lang="eu">StarWriter dokumentua</comment>
+ <comment xml:lang="es">documento de StarWriter</comment>
+ <comment xml:lang="eo">StarWriter-dokumento</comment>
+ <comment xml:lang="en_GB">StarWriter document</comment>
+ <comment xml:lang="el">Έγγραφο StarWriter</comment>
+ <comment xml:lang="de">StarWriter-Dokument</comment>
+ <comment xml:lang="da">StarWriter-dokument</comment>
+ <comment xml:lang="cy">Dogfen StarWriter</comment>
+ <comment xml:lang="cs">dokument StarWriter</comment>
+ <comment xml:lang="ca">document StarWriter</comment>
+ <comment xml:lang="bg">Документ — StarWriter</comment>
+ <comment xml:lang="be@latin">Dakument StarWriter</comment>
+ <comment xml:lang="be">дакумент StarWriter</comment>
+ <comment xml:lang="az">StarWriter sənədi</comment>
+ <comment xml:lang="ast">Documentu de StarWriter</comment>
+ <comment xml:lang="ar">مستند StarWriter</comment>
+ <comment xml:lang="af">StarWriter-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.sdw"/>
<glob pattern="*.vor"/>
<glob pattern="*.sgl"/>
<magic priority="90">
- <match value="StarWriter" type="string" offset="2089"/>
+ <match type="string" value="StarWriter" offset="2089"/>
</magic>
<alias type="application/vnd.stardivision.writer-global"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.calc">
- <comment>OpenOffice Calc spreadsheet</comment>
- <comment xml:lang="ar">جدول Calc المكتب المفتوح</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš OpenOffice Calc</comment>
- <comment xml:lang="bg">Таблица — OpenOffice Calc</comment>
- <comment xml:lang="ca">full de càlcul d'OpenOffice Calc</comment>
- <comment xml:lang="cs">sešit OpenOffice Calc</comment>
- <comment xml:lang="da">OpenOffice Calc-regneark</comment>
- <comment xml:lang="de">OpenOffice-Calc-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο OpenOffice Calc</comment>
- <comment xml:lang="en_GB">OpenOffice Calc spreadsheet</comment>
- <comment xml:lang="es">hoja de cálculo de OpenOffice Calc</comment>
- <comment xml:lang="eu">OpenOffice.org Calc kalkulu-orria</comment>
- <comment xml:lang="fi">OpenOffice Calc -taulukko</comment>
- <comment xml:lang="fo">OpenOffice Calc rokniark</comment>
- <comment xml:lang="fr">feuille de calcul OpenOffice Calc</comment>
- <comment xml:lang="ga">scarbhileog OpenOffice Calc</comment>
- <comment xml:lang="gl">folla de cálculo de OpenOffice Calc</comment>
- <comment xml:lang="he">גליון נתונים של OpenOffice Calc</comment>
- <comment xml:lang="hr">OpenOffice Calc proračunska tablica</comment>
- <comment xml:lang="hu">OpenOffice Calc táblázat</comment>
- <comment xml:lang="ia">Folio de calculo OpenOffice Calc</comment>
- <comment xml:lang="id">Lembar sebar OpenOffice Calc</comment>
- <comment xml:lang="it">Foglio di calcolo OpenOffice Calc</comment>
- <comment xml:lang="ja">OpenOffice Calc スプレッドシート</comment>
- <comment xml:lang="ka">OpenOffice Calc-ის ცხრილი</comment>
- <comment xml:lang="kk">OpenOffice Calc электрондық кестесі</comment>
- <comment xml:lang="ko">OpenOffice Calc 스프레드시트</comment>
- <comment xml:lang="lt">OpenOffice Calc skaičialentė</comment>
- <comment xml:lang="lv">OpenOffice Calc izklājlapa</comment>
- <comment xml:lang="nb">OpenOffice Calc-regneark</comment>
- <comment xml:lang="nl">OpenOffice.org Calc-rekenblad</comment>
- <comment xml:lang="nn">OpenOffice Calc-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul OpenOffice Calc</comment>
- <comment xml:lang="pl">Arkusz kalkulacyjny OpenOffice.org Calc</comment>
- <comment xml:lang="pt">folha de cálculo OpenOffice Calc</comment>
- <comment xml:lang="pt_BR">Planilha do OpenOffice Calc</comment>
- <comment xml:lang="ro">Foaie de calcul OpenOffice Calc</comment>
- <comment xml:lang="ru">Электронная таблица OpenOffice Calc</comment>
- <comment xml:lang="sk">Zošit OpenOffice Calc</comment>
- <comment xml:lang="sl">Razpredelnica OpenOffice.org Calc</comment>
- <comment xml:lang="sq">Fletë llogaritjesh OpenOffice Calc</comment>
- <comment xml:lang="sr">Табела Опен Офис Рачуна</comment>
- <comment xml:lang="sv">OpenOffice Calc-kalkylblad</comment>
- <comment xml:lang="tr">OpenOffice Calc çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця OpenOffice Calc</comment>
- <comment xml:lang="vi">Bảng tính Calc của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Calc 电子表格</comment>
- <comment xml:lang="zh_TW">OpenOffice Calc 試算表</comment>
+ <comment>LibreOffice Calc spreadsheet</comment>
+ <comment xml:lang="uk">електронна таблиця LibreOffice Calc</comment>
+ <comment xml:lang="sv">LibreOffice Calc-kalkylblad</comment>
+ <comment xml:lang="ru">Электронная таблица LibreOffice Calc</comment>
+ <comment xml:lang="pt_BR">Planilha do LibreOffice Calc</comment>
+ <comment xml:lang="pl">Arkusz LibreOffice Calc</comment>
+ <comment xml:lang="it">Foglio di calcolo LibreOffice Calc</comment>
+ <comment xml:lang="gl">Folla de cálculo de LibreOffice Calc</comment>
+ <comment xml:lang="eu">LibreOffice Calc kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de LibreOffice Calc</comment>
+ <comment xml:lang="de">LibreOffice Calc-Tabelle</comment>
+ <comment xml:lang="be">электронная табліца LibreOffice Calc</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.calc" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.calc"/>
</match>
</match>
</magic>
<glob pattern="*.sxc"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.calc.template">
- <comment>OpenOffice Calc template</comment>
- <comment xml:lang="ar">قالب Calc المكتب المفتوح</comment>
- <comment xml:lang="be@latin">Šablon OpenOffice Calc</comment>
- <comment xml:lang="bg">Шаблон за таблици — OpenOffice Calc</comment>
- <comment xml:lang="ca">plantilla d'OpenOffice Calc</comment>
- <comment xml:lang="cs">šablona OpenOffice Calc</comment>
- <comment xml:lang="da">OpenOffice Calc-skabelon</comment>
- <comment xml:lang="de">OpenOffice-Calc-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο OpenOffice Calc</comment>
- <comment xml:lang="en_GB">OpenOffice Calc template</comment>
- <comment xml:lang="es">plantilla de OpenOffice Calc</comment>
- <comment xml:lang="eu">OpenOffice Calc txantiloia</comment>
- <comment xml:lang="fi">OpenOffice Calc -malli</comment>
- <comment xml:lang="fo">OpenOffice Calc formur</comment>
- <comment xml:lang="fr">modèle OpenOffice Calc</comment>
- <comment xml:lang="ga">teimpléad OpenOffice Calc</comment>
- <comment xml:lang="gl">modelo de OpenOffice Calc</comment>
- <comment xml:lang="he">תבנית של OpenOffice Calc</comment>
- <comment xml:lang="hr">OpenOffice Calc predložak</comment>
- <comment xml:lang="hu">OpenOffice Calc sablon</comment>
- <comment xml:lang="ia">Patrono OpenOffice Calc</comment>
- <comment xml:lang="id">Templat OpenOffice Calc</comment>
- <comment xml:lang="it">Modello OpenOffice Calc</comment>
- <comment xml:lang="ja">OpenOffice Calc テンプレート</comment>
- <comment xml:lang="ka">OpenOffice Calc-ის შაბლონი</comment>
- <comment xml:lang="kk">OpenOffice Calc үлгісі</comment>
- <comment xml:lang="ko">OpenOffice Calc 스프레드시트 문서 서식</comment>
- <comment xml:lang="lt">OpenOffice Calc šablonas</comment>
- <comment xml:lang="lv">OpenOffice Calc veidne</comment>
- <comment xml:lang="nb">OpenOffice Calc-mal</comment>
- <comment xml:lang="nl">OpenOffice.org Calc-sjabloon</comment>
- <comment xml:lang="nn">OpenOffice Calc-mal</comment>
- <comment xml:lang="oc">modèl OpenOffice Calc</comment>
- <comment xml:lang="pl">Szablon arkusza OpenOffice.org Calc</comment>
- <comment xml:lang="pt">modelo OpenOffice Calc</comment>
- <comment xml:lang="pt_BR">Modelo do OpenOffice Calc</comment>
- <comment xml:lang="ro">Șablon OpenOffice Calc</comment>
- <comment xml:lang="ru">Шаблон OpenOffice Calc</comment>
- <comment xml:lang="sk">Šablóna OpenOffice Calc</comment>
- <comment xml:lang="sl">Predloga OpenOffice.org Calc</comment>
- <comment xml:lang="sq">Model OpenOffice Calc</comment>
- <comment xml:lang="sr">Шаблон Опен Офис Рачуна</comment>
- <comment xml:lang="sv">OpenOffice Calc-mall</comment>
- <comment xml:lang="tr">OpenOffice Calc şablonu</comment>
- <comment xml:lang="uk">шаблон ел.таблиці OpenOffice Calc</comment>
- <comment xml:lang="vi">Mẫu bảng tính Calc của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Calc 模板</comment>
- <comment xml:lang="zh_TW">OpenOffice Calc 範本</comment>
+ <comment>LibreOffice Calc template</comment>
+ <comment xml:lang="uk">шаблон LibreOffice Calc</comment>
+ <comment xml:lang="sv">LibreOffice Calc-mall</comment>
+ <comment xml:lang="ru">Шаблон LibreOffice Calc</comment>
+ <comment xml:lang="pt_BR">Modelo do LibreOffice Calc</comment>
+ <comment xml:lang="pl">Szablon arkusza LibreOffice Calc</comment>
+ <comment xml:lang="it">Modello LibreOffice Calc</comment>
+ <comment xml:lang="gl">Modelo de LibreOffice Calc</comment>
+ <comment xml:lang="eu">LibreOffice Calc txantiloia</comment>
+ <comment xml:lang="es">plantilla de LibreOffice Calc</comment>
+ <comment xml:lang="de">LibreOffice Calc-Vorlage</comment>
+ <comment xml:lang="be">шаблон LibreOffice Calc</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.calc" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.calc"/>
</match>
</match>
</magic>
<glob pattern="*.stc"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.draw">
- <comment>OpenOffice Draw drawing</comment>
- <comment xml:lang="ar">تصميم Draw المكتب المفتوح</comment>
- <comment xml:lang="be@latin">Rysunak OpenOffice Draw</comment>
- <comment xml:lang="bg">Чертеж — OpenOffice Draw</comment>
- <comment xml:lang="ca">dibuix d'OpenOffice Draw</comment>
- <comment xml:lang="cs">kresba OpenOffice Draw</comment>
- <comment xml:lang="da">OpenOffice Draw-tegning</comment>
- <comment xml:lang="de">OpenOffice-Draw-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο OpenOffice Draw</comment>
- <comment xml:lang="en_GB">OpenOffice Draw drawing</comment>
- <comment xml:lang="es">dibujo de OpenOffice Draw</comment>
- <comment xml:lang="eu">OpenOffice.org Draw marrazkia</comment>
- <comment xml:lang="fi">OpenOffice Draw -piirros</comment>
- <comment xml:lang="fo">OpenOffice Draw tekning</comment>
- <comment xml:lang="fr">dessin OpenOffice Draw</comment>
- <comment xml:lang="ga">líníocht OpenOffice Draw</comment>
- <comment xml:lang="gl">debuxo de OpenOffice Draw</comment>
- <comment xml:lang="he">ציור של OpenOffice Draw</comment>
- <comment xml:lang="hr">OpenOffice Draw crtež</comment>
- <comment xml:lang="hu">OpenOffice Draw rajz</comment>
- <comment xml:lang="ia">Designo OpenOffice Draw</comment>
- <comment xml:lang="id">Gambar OpenOffice Draw</comment>
- <comment xml:lang="it">Disegno OpenOffice Draw</comment>
- <comment xml:lang="ja">OpenOffice Draw ドロー</comment>
- <comment xml:lang="ka">OpenOffice Draw-ის ნახაზი</comment>
- <comment xml:lang="kk">OpenOffice Draw суреті</comment>
- <comment xml:lang="ko">OpenOffice Draw 그림</comment>
- <comment xml:lang="lt">OpenOffice Draw piešinys</comment>
- <comment xml:lang="lv">OpenOffice Draw zīmējums</comment>
- <comment xml:lang="nb">OpenOffice Draw-tegning</comment>
- <comment xml:lang="nl">OpenOffice.org Draw-tekening</comment>
- <comment xml:lang="nn">OpenOffice Draw-teikning</comment>
- <comment xml:lang="oc">dessenh OpenOffice Draw</comment>
- <comment xml:lang="pl">Rysunek OpenOffice.org Draw</comment>
- <comment xml:lang="pt">desenho OpenOffice Draw</comment>
- <comment xml:lang="pt_BR">Desenho do OpenOffice Draw</comment>
- <comment xml:lang="ro">Desen OpenOffice Draw</comment>
- <comment xml:lang="ru">Рисунок OpenOffice Draw</comment>
- <comment xml:lang="sk">Kresba OpenOffice Draw</comment>
- <comment xml:lang="sl">Datoteka risbe OpenOffice.org Draw</comment>
- <comment xml:lang="sq">Vizatim OpenOffice Draw</comment>
- <comment xml:lang="sr">Цртеж Опен Офис Цртежа</comment>
- <comment xml:lang="sv">OpenOffice Draw-teckning</comment>
- <comment xml:lang="tr">OpenOffice Draw çizimi</comment>
- <comment xml:lang="uk">малюнок OpenOffice Draw</comment>
- <comment xml:lang="vi">Bản vẽ Draw của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Draw 绘图</comment>
- <comment xml:lang="zh_TW">OpenOffice Draw 繪圖</comment>
+ <comment>LibreOffice Draw drawing</comment>
+ <comment xml:lang="uk">рисунок LibreOffice Draw</comment>
+ <comment xml:lang="sv">LibreOffice Draw-teckning</comment>
+ <comment xml:lang="ru">Рисунок LibreOffice Draw</comment>
+ <comment xml:lang="pt_BR">Desenho do LibreOffice Draw</comment>
+ <comment xml:lang="pl">Rysunek LibreOffice Draw</comment>
+ <comment xml:lang="it">Disegno LibreOffice Draw</comment>
+ <comment xml:lang="gl">Debuxo de LibreOffice Draw</comment>
+ <comment xml:lang="eu">LibreOffice Draw marrazkia</comment>
+ <comment xml:lang="es">dibujo de LibreOffice Draw</comment>
+ <comment xml:lang="de">LibreOffice Draw-Zeichnung</comment>
+ <comment xml:lang="be">рысунак LibreOffice Draw</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="image-x-generic"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.draw" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.draw"/>
</match>
</match>
</magic>
<glob pattern="*.sxd"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.draw.template">
- <comment>OpenOffice Draw template</comment>
- <comment xml:lang="ar">قالب Draw المكتب المفتوح</comment>
- <comment xml:lang="be@latin">Šablon OpenOffice Draw</comment>
- <comment xml:lang="bg">Шаблон за чертежи — OpenOffice Draw</comment>
- <comment xml:lang="ca">plantilla d'OpenOffice Draw</comment>
- <comment xml:lang="cs">šablona OpenOffice Draw</comment>
- <comment xml:lang="da">OpenOffice Draw-skabelon</comment>
- <comment xml:lang="de">OpenOffice-Draw-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο OpenOffice Draw</comment>
- <comment xml:lang="en_GB">OpenOffice Draw template</comment>
- <comment xml:lang="es">plantilla de OpenOffice Draw</comment>
- <comment xml:lang="eu">OpenOffice Draw txantiloia</comment>
- <comment xml:lang="fi">OpenOffice Draw -malli</comment>
- <comment xml:lang="fo">OpenOffice Draw formur</comment>
- <comment xml:lang="fr">modèle OpenOffice Draw</comment>
- <comment xml:lang="ga">teimpléad OpenOffice Draw</comment>
- <comment xml:lang="gl">modelo de OpenOffice Draw</comment>
- <comment xml:lang="he">תבנית של OpenOffice Draw</comment>
- <comment xml:lang="hr">Predložak OpenOffice Drawa</comment>
- <comment xml:lang="hu">OpenOffice Draw sablon</comment>
- <comment xml:lang="ia">Patrono OpenOffice Draw</comment>
- <comment xml:lang="id">Templat OpenOffice Draw</comment>
- <comment xml:lang="it">Modello OpenOffice Draw</comment>
- <comment xml:lang="ja">OpenOffice Draw テンプレート</comment>
- <comment xml:lang="ka">OpenOffice Draw-ის შაბლონი</comment>
- <comment xml:lang="kk">OpenOffice Draw үлгісі</comment>
- <comment xml:lang="ko">OpenOffice Draw 그림 문서 서식</comment>
- <comment xml:lang="lt">OpenOffice Draw šablonas</comment>
- <comment xml:lang="lv">OpenOffice Draw veidne</comment>
- <comment xml:lang="nb">OpenOffice Draw-mal</comment>
- <comment xml:lang="nl">OpenOffice.org Draw-sjabloon</comment>
- <comment xml:lang="nn">OpenOffice Draw-mal</comment>
- <comment xml:lang="oc">modèl OpenOffice Draw</comment>
- <comment xml:lang="pl">Szablon rysunku OpenOffice.org Draw</comment>
- <comment xml:lang="pt">modelo OpenOffice Draw</comment>
- <comment xml:lang="pt_BR">Modelo do OpenOffice Draw</comment>
- <comment xml:lang="ro">Șablon OpenOffice Draw</comment>
- <comment xml:lang="ru">Шаблон OpenOffice Draw</comment>
- <comment xml:lang="sk">Šablóna OpenOffice Draw</comment>
- <comment xml:lang="sl">Predloga OpenOffice.org Draw</comment>
- <comment xml:lang="sq">Model OpenOffice Draw</comment>
- <comment xml:lang="sr">Шаблон Опен Офис Цртежа</comment>
- <comment xml:lang="sv">OpenOffice Draw-mall</comment>
- <comment xml:lang="tr">OpenOffice Draw şablonu</comment>
- <comment xml:lang="uk">шаблон малюнку OpenOffice Draw</comment>
- <comment xml:lang="vi">Mẫu bản vẽ Draw của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Draw 模板</comment>
- <comment xml:lang="zh_TW">OpenOffice Draw 範本</comment>
+ <comment>LibreOffice Draw template</comment>
+ <comment xml:lang="uk">шаблон LibreOffice Draw</comment>
+ <comment xml:lang="sv">LibreOffice Draw-mall</comment>
+ <comment xml:lang="ru">Шаблон LibreOffice Draw</comment>
+ <comment xml:lang="pt_BR">Modelo do LibreOffice Draw</comment>
+ <comment xml:lang="pl">Szablon rysunku LibreOffice Draw</comment>
+ <comment xml:lang="it">Modello LibreOffice Draw</comment>
+ <comment xml:lang="gl">Modelo de LibreOffice Draw</comment>
+ <comment xml:lang="eu">LibreOffice Draw txantiloia</comment>
+ <comment xml:lang="es">plantilla de LibreOffice Draw</comment>
+ <comment xml:lang="de">LibreOffice Draw-Vorlage</comment>
+ <comment xml:lang="be">шаблон LibreOffice Draw</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="image-x-generic"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.draw" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.draw"/>
</match>
</match>
</magic>
<glob pattern="*.std"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.impress">
- <comment>OpenOffice Impress presentation</comment>
- <comment xml:lang="ar">عرض تقديمي Impress المكتب المفتوح</comment>
- <comment xml:lang="az">OpenOffice Impress sənədi</comment>
- <comment xml:lang="be@latin">Prezentacyja OpenOffice Impress</comment>
- <comment xml:lang="bg">Презентация — OpenOffice Impress</comment>
- <comment xml:lang="ca">presentació d'OpenOffice Impress</comment>
- <comment xml:lang="cs">prezentace OpenOffice Impress</comment>
- <comment xml:lang="cy">Cyflwyniad OpenOffice (Impress)</comment>
- <comment xml:lang="da">OpenOffice Impress-præsentation</comment>
- <comment xml:lang="de">OpenOffice-Impress-Vorlage</comment>
- <comment xml:lang="el">Παρουσίαση OpenOffice Impress</comment>
- <comment xml:lang="en_GB">OpenOffice Impress presentation</comment>
- <comment xml:lang="es">presentación de OpenOffice Impress</comment>
- <comment xml:lang="eu">OpenOffice.org Impress aurkezpena</comment>
- <comment xml:lang="fi">OpenOffice Impress -esitys</comment>
- <comment xml:lang="fo">OpenOffice Impress framløga</comment>
- <comment xml:lang="fr">présentation OpenOffice Impress</comment>
- <comment xml:lang="ga">láithreoireacht OpenOffice Impress</comment>
- <comment xml:lang="gl">presentación de de OpenOffice Impress</comment>
- <comment xml:lang="he">מצגת של OpenOffice Impress</comment>
- <comment xml:lang="hr">OpenOffice Impress prezentacija</comment>
- <comment xml:lang="hu">OpenOffice Impress bemutató</comment>
- <comment xml:lang="ia">Presentation OpenOffice Impress</comment>
- <comment xml:lang="id">Presentasi OpenOffice Impress</comment>
- <comment xml:lang="it">Presentazione OpenOffice Impress</comment>
- <comment xml:lang="ja">OpenOffice Impress プレゼンテーション</comment>
- <comment xml:lang="ka">OpenOffice Impress-ის პრეზენტაცია</comment>
- <comment xml:lang="kk">OpenOffice Impress презентациясы</comment>
- <comment xml:lang="ko">OpenOffice Impress 프레젠테이션</comment>
- <comment xml:lang="lt">OpenOffice Impress pateiktis</comment>
- <comment xml:lang="lv">OpenOffice Impress prezentācija</comment>
- <comment xml:lang="nb">OpenOffice Impress-presentasjon</comment>
- <comment xml:lang="nl">OpenOffice.org Impress-presentatie</comment>
- <comment xml:lang="nn">OpenOffice Impress-presentasjon</comment>
- <comment xml:lang="oc">presentacion OpenOffice Impress</comment>
- <comment xml:lang="pl">Prezentacja OpenOffice.org Impress</comment>
- <comment xml:lang="pt">apresentação OpenOffice Impress</comment>
- <comment xml:lang="pt_BR">Apresentação do OpenOffice Impress</comment>
- <comment xml:lang="ro">Prezentare OpenOffice Impress</comment>
- <comment xml:lang="ru">Презентация OpenOffice Impress</comment>
- <comment xml:lang="sk">Prezentácia OpenOffice Impress</comment>
- <comment xml:lang="sl">Predstavitev OpenOffice.org Impress</comment>
- <comment xml:lang="sq">Prezantim OpenOffice Impress</comment>
- <comment xml:lang="sr">Презентација Опен Офис Импреса</comment>
- <comment xml:lang="sv">OpenOffice Impress-presentation</comment>
- <comment xml:lang="tr">OpenOffice Impress sunumu</comment>
- <comment xml:lang="uk">презентація OpenOffice Impress</comment>
- <comment xml:lang="vi">Trình diễn Impress của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Impress 演示文稿</comment>
- <comment xml:lang="zh_TW">OpenOffice Impress 簡報</comment>
+ <comment>LibreOffice Impress presentation</comment>
+ <comment xml:lang="uk">презентація LibreOffice Impress</comment>
+ <comment xml:lang="sv">LibreOffice Impress-presentation</comment>
+ <comment xml:lang="ru">Презентация LibreOffice Impress</comment>
+ <comment xml:lang="pt_BR">Apresentação do LibreOffice Impress</comment>
+ <comment xml:lang="pl">Prezentacja LibreOffice Impress</comment>
+ <comment xml:lang="it">Presentazione LibreOffice Impress</comment>
+ <comment xml:lang="gl">Presentación de LibreOffice Impress</comment>
+ <comment xml:lang="eu">LibreOffice Impress aurkezpena</comment>
+ <comment xml:lang="es">presentación de LibreOffice Impress</comment>
+ <comment xml:lang="de">LibreOffice Impress-Präsentation</comment>
+ <comment xml:lang="be">прэзентацыя LibreOffice Impress</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.impress" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.impress"/>
</match>
</match>
</magic>
<glob pattern="*.sxi"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.impress.template">
- <comment>OpenOffice Impress template</comment>
- <comment xml:lang="ar">قالب Impress المكتب المفتوح</comment>
- <comment xml:lang="be@latin">Šablon OpenOffice Impress</comment>
- <comment xml:lang="bg">Шаблон за презентации — OpenOffice Impress</comment>
- <comment xml:lang="ca">plantilla d'OpenOffice Impress</comment>
- <comment xml:lang="cs">šablona OpenOffice Impress</comment>
- <comment xml:lang="da">OpenOffice Impress-skabelon</comment>
- <comment xml:lang="de">OpenOffice-Impress-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο OpenOffice Impress</comment>
- <comment xml:lang="en_GB">OpenOffice Impress template</comment>
- <comment xml:lang="es">plantilla de OpenOffice Impress</comment>
- <comment xml:lang="eu">OpenOffice Impress txantiloia</comment>
- <comment xml:lang="fi">OpenOffice Impress -malli</comment>
- <comment xml:lang="fo">OpenOffice Impress formur</comment>
- <comment xml:lang="fr">modèle OpenOffice Impress</comment>
- <comment xml:lang="ga">teimpléad OpenOffice Impress</comment>
- <comment xml:lang="gl">modelo de OpenOffice Impress</comment>
- <comment xml:lang="he">תבנית של OpenOffice Impress</comment>
- <comment xml:lang="hr">Predložak OpenOffice Impressa</comment>
- <comment xml:lang="hu">OpenOffice Impress sablon</comment>
- <comment xml:lang="ia">Patrono OpenOffice Impress</comment>
- <comment xml:lang="id">Templat OpenOffice Impress</comment>
- <comment xml:lang="it">Modello OpenOffice Impress</comment>
- <comment xml:lang="ja">OpenOffice Impress テンプレート</comment>
- <comment xml:lang="ka">OpenOffice Impress-ის შაბლონი</comment>
- <comment xml:lang="kk">OpenOffice Impress үлгісі</comment>
- <comment xml:lang="ko">OpenOffice Impress 프레젠테이션 문서 서식</comment>
- <comment xml:lang="lt">OpenOffice Impress šablonas</comment>
- <comment xml:lang="lv">OpenOffice Impress veidne</comment>
- <comment xml:lang="nb">OpenOffice Impress-mal</comment>
- <comment xml:lang="nl">OpenOffice.org Impress-sjabloon</comment>
- <comment xml:lang="nn">OpenOffice Impress-mal</comment>
- <comment xml:lang="oc">modèl OpenOffice Impress</comment>
- <comment xml:lang="pl">Szablon prezentacji OpenOffice.org Impress</comment>
- <comment xml:lang="pt">modelo OpenOffice Impress</comment>
- <comment xml:lang="pt_BR">Modelo do OpenOffice Impress</comment>
- <comment xml:lang="ro">Șablon OpenOffice Impress</comment>
- <comment xml:lang="ru">Шаблон OpenOffice Impress</comment>
- <comment xml:lang="sk">Šablóna OpenOffice Impress</comment>
- <comment xml:lang="sl">Predloga OpenOffice.org Impress</comment>
- <comment xml:lang="sq">Model OpenOffice Impress</comment>
- <comment xml:lang="sr">Шаблон Опен Офис Импреса</comment>
- <comment xml:lang="sv">OpenOffice Impress-mall</comment>
- <comment xml:lang="tr">OpenOffice Impress şablonu</comment>
- <comment xml:lang="uk">шаблон презентації OpenOffice Impress</comment>
- <comment xml:lang="vi">Mẫu trình diễn Impress của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Impress 模板</comment>
- <comment xml:lang="zh_TW">OpenOffice Impress 範本</comment>
+ <comment>LibreOffice Impress template</comment>
+ <comment xml:lang="uk">шаблон LibreOffice Impress</comment>
+ <comment xml:lang="sv">LibreOffice Impress-mall</comment>
+ <comment xml:lang="ru">Шаблон LibreOffice Impress</comment>
+ <comment xml:lang="pt_BR">Documento do LibreOffice Impress</comment>
+ <comment xml:lang="pl">Szablon prezentacji LibreOffice Impress</comment>
+ <comment xml:lang="it">Modello LibreOffice Impress</comment>
+ <comment xml:lang="gl">Modelo de LibreOffice Impress</comment>
+ <comment xml:lang="eu">LibreOffice Impress txantiloia</comment>
+ <comment xml:lang="es">plantilla de LibreOffice Impress</comment>
+ <comment xml:lang="de">LibreOffice Impress-Vorlage</comment>
+ <comment xml:lang="be">шаблон LibreOffice Impress</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.impress" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.impress"/>
</match>
</match>
</magic>
<glob pattern="*.sti"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.math">
- <comment>OpenOffice Math formula</comment>
- <comment xml:lang="ar">صيغة Math المكتب المفتوح</comment>
- <comment xml:lang="be@latin">Formuła OpenOffice Math</comment>
- <comment xml:lang="bg">Формула — OpenOffice Math</comment>
- <comment xml:lang="ca">fórmula d'OpenOffice Math</comment>
- <comment xml:lang="cs">vzorec OpenOffice Math</comment>
- <comment xml:lang="da">OpenOffice Math-formel</comment>
- <comment xml:lang="de">OpenOffice-Math-Formel</comment>
- <comment xml:lang="el">Μαθηματικός τύπος OpenOffice Math</comment>
- <comment xml:lang="en_GB">OpenOffice Math formula</comment>
- <comment xml:lang="es">fórmula de OpenOffice Math</comment>
- <comment xml:lang="eu">OpenOffice.org Math formula</comment>
- <comment xml:lang="fi">OpenOffice Math -kaava</comment>
- <comment xml:lang="fo">OpenOffice Math frymil</comment>
- <comment xml:lang="fr">formule OpenOffice Math</comment>
- <comment xml:lang="ga">foirmle OpenOffice Math</comment>
- <comment xml:lang="gl">fórmula de OpenOffice Math</comment>
- <comment xml:lang="he">נוסחה של OpenOffice Math</comment>
- <comment xml:lang="hr">OpenOffice Math formula</comment>
- <comment xml:lang="hu">OpenOffice Math képlet</comment>
- <comment xml:lang="ia">Formula OpenOffice Math</comment>
- <comment xml:lang="id">Formula OpenOffice Math</comment>
- <comment xml:lang="it">Formula OpenOffice Math</comment>
- <comment xml:lang="ja">OpenOffice Math 計算式</comment>
- <comment xml:lang="ka">OpenOffice Math-ის ფორმულა</comment>
- <comment xml:lang="kk">OpenOffice Math формуласы</comment>
- <comment xml:lang="ko">OpenOffice Math 수식</comment>
- <comment xml:lang="lt">OpenOffice Math formulė</comment>
- <comment xml:lang="lv">OpenOffice Math formula</comment>
- <comment xml:lang="nb">OpenOffice Math-formel</comment>
- <comment xml:lang="nl">OpenOffice.org Math-formule</comment>
- <comment xml:lang="nn">OpenOffice Math-formel</comment>
- <comment xml:lang="oc">formula OpenOffice Math</comment>
- <comment xml:lang="pl">Formuła OpenOffice.org Math</comment>
- <comment xml:lang="pt">fórmula OpenOffice Math</comment>
- <comment xml:lang="pt_BR">Fórmula do OpenOffice Math</comment>
- <comment xml:lang="ro">Formulă OpenOffice Math</comment>
- <comment xml:lang="ru">Формула OpenOffice Math</comment>
- <comment xml:lang="sk">Vzorec OpenOffice Math</comment>
- <comment xml:lang="sl">Dokument formule OpenOffice.org Math</comment>
- <comment xml:lang="sq">Formulë OpenOffice Math</comment>
- <comment xml:lang="sr">Формула Опен Офис Математике</comment>
- <comment xml:lang="sv">OpenOffice Math-formel</comment>
- <comment xml:lang="tr">OpenOffice Math formülü</comment>
- <comment xml:lang="uk">формула OpenOffice Math</comment>
- <comment xml:lang="vi">Công thức Math của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Math 公式</comment>
- <comment xml:lang="zh_TW">OpenOffice Math 公式</comment>
+ <comment>LibreOffice Math formula</comment>
+ <comment xml:lang="uk">формула LibreOffice Math</comment>
+ <comment xml:lang="sv">LibreOffice Math-formel</comment>
+ <comment xml:lang="ru">Формула LibreOffice Math</comment>
+ <comment xml:lang="pt_BR">Fórmula do LibreOffice Math</comment>
+ <comment xml:lang="pl">Formuła LibreOffice Math</comment>
+ <comment xml:lang="it">Formula LibreOffice Math</comment>
+ <comment xml:lang="gl">Fórmula de LibreOffice Math</comment>
+ <comment xml:lang="eu">LibreOffice Math formula</comment>
+ <comment xml:lang="es">fórmula de LibreOffice Math</comment>
+ <comment xml:lang="de">LibreOffice Math-Formel</comment>
+ <comment xml:lang="be">формула LibreOffice Math</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.math" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.math"/>
</match>
</match>
</magic>
<glob pattern="*.sxm"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.writer">
- <comment>OpenOffice Writer document</comment>
- <comment xml:lang="ar">مستند Writer المكتب المفتوح</comment>
- <comment xml:lang="ast">Documentu d'OpenOffice Writer</comment>
- <comment xml:lang="az">OpenOffice Writer sənədi</comment>
- <comment xml:lang="be@latin">Dakument OpenOffice Writer</comment>
- <comment xml:lang="bg">Документ — OpenOffice Writer</comment>
- <comment xml:lang="ca">document d'OpenOffice Writer</comment>
- <comment xml:lang="cs">dokument OpenOffice Writer</comment>
- <comment xml:lang="cy">Dogfen OpenOffice (Writer)</comment>
- <comment xml:lang="da">OpenOffice Writer-dokument</comment>
- <comment xml:lang="de">OpenOffice-Writer-Dokument</comment>
- <comment xml:lang="el">Έγγραφο OpenOffice Writer</comment>
- <comment xml:lang="en_GB">OpenOffice Writer document</comment>
- <comment xml:lang="es">documento de OpenOffice Writer</comment>
- <comment xml:lang="eu">OpenOffice.org Writer dokumentua</comment>
- <comment xml:lang="fi">OpenOffice Writer -asiakirja</comment>
- <comment xml:lang="fo">OpenOffice Writer skjal</comment>
- <comment xml:lang="fr">document OpenOffice Writer</comment>
- <comment xml:lang="ga">cáipéis OpenOffice Writer</comment>
- <comment xml:lang="gl">documento de OpenOffice Writer</comment>
- <comment xml:lang="he">מסמך של OpenOffice Writer</comment>
- <comment xml:lang="hr">OpenOffice Writer dokument</comment>
- <comment xml:lang="hu">OpenOffice Writer dokumentum</comment>
- <comment xml:lang="ia">Documento OpenOffice Writer</comment>
- <comment xml:lang="id">Dokumen OpenOffice Writer</comment>
- <comment xml:lang="it">Documento OpenOffice Writer</comment>
- <comment xml:lang="ja">OpenOffice Writer ドキュメント</comment>
- <comment xml:lang="ka">OpenOffice Writer-ის დოკუმენტი</comment>
- <comment xml:lang="kk">OpenOffice Writer құжаты</comment>
- <comment xml:lang="ko">OpenOffice Writer 문서</comment>
- <comment xml:lang="lt">OpenOffice Writer dokumentas</comment>
- <comment xml:lang="lv">OpenOffice Writer dokuments</comment>
- <comment xml:lang="nb">OpenOffice Writer-dokument</comment>
- <comment xml:lang="nl">OpenOffice.org Writer-document</comment>
- <comment xml:lang="nn">OpenOffice Writer-dokument</comment>
- <comment xml:lang="oc">document OpenOffice Writer</comment>
- <comment xml:lang="pl">Dokument OpenOffice.org Writer</comment>
- <comment xml:lang="pt">documento OpenOffice Writer</comment>
- <comment xml:lang="pt_BR">Documento do OpenOffice Writer</comment>
- <comment xml:lang="ro">Document OpenOffice Writer</comment>
- <comment xml:lang="ru">Документ OpenOffice Writer</comment>
- <comment xml:lang="sk">Dokument OpenOffice Writer</comment>
- <comment xml:lang="sl">Dokument OpenOffice.org Writer</comment>
- <comment xml:lang="sq">Dokument OpenOffice Writer</comment>
- <comment xml:lang="sr">Документ Опен Офис Писца</comment>
- <comment xml:lang="sv">OpenOffice Writer-dokument</comment>
- <comment xml:lang="tr">OpenOffice Writer belgesi</comment>
- <comment xml:lang="uk">документ OpenOffice Writer</comment>
- <comment xml:lang="vi">Tài liệu Writer của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Writer 文档</comment>
- <comment xml:lang="zh_TW">OpenOffice Writer 文件</comment>
+ <comment>LibreOffice Writer document</comment>
+ <comment xml:lang="uk">документ LibreOffice Writer</comment>
+ <comment xml:lang="sv">LibreOffice Writer-dokument</comment>
+ <comment xml:lang="ru">Документ LibreOffice Writer</comment>
+ <comment xml:lang="pt_BR">Documento do LibreOffice Writer</comment>
+ <comment xml:lang="pl">Dokument LibreOffice Writer</comment>
+ <comment xml:lang="it">Documento LibreOffice Writer</comment>
+ <comment xml:lang="gl">Documento de LibreOffice Writer</comment>
+ <comment xml:lang="eu">LibreOffice Writer dokumentua</comment>
+ <comment xml:lang="es">documento de LibreOffice Writer</comment>
+ <comment xml:lang="de">LibreOffice Writer-Dokument</comment>
+ <comment xml:lang="be">дакумент LibreOffice Writer</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.writer" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.writer"/>
</match>
</match>
</magic>
<glob pattern="*.sxw"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.writer.global">
- <comment>OpenOffice Writer global document</comment>
- <comment xml:lang="ar">مستند المكتب المفتوح Writer العالمي</comment>
- <comment xml:lang="ast">Documentu global d'OpenOffice Writer</comment>
- <comment xml:lang="az">OpenOffice Writer qlobal sənədi</comment>
- <comment xml:lang="be@latin">Hlabalny dakument OpenOffice Writer</comment>
- <comment xml:lang="bg">Документ - глобален — OpenOffice Writer</comment>
- <comment xml:lang="ca">document global d'OpenOffice Writer</comment>
- <comment xml:lang="cs">globální dokument OpenOffice Writer</comment>
- <comment xml:lang="cy">Dogfen eang OpenOffice (Writer)</comment>
- <comment xml:lang="da">OpenOffice Writer-globalt dokument</comment>
- <comment xml:lang="de">OpenOffice-Writer-Globaldokument</comment>
- <comment xml:lang="el">Καθολικό έγγραφο OpenOffice Writer</comment>
- <comment xml:lang="en_GB">OpenOffice Writer global document</comment>
- <comment xml:lang="es">documento global de OpenOffice Writer</comment>
- <comment xml:lang="eu">OpenOffice.org Writer dokumentu globala</comment>
- <comment xml:lang="fi">OpenOffice Writer - yleinen asiakirja</comment>
- <comment xml:lang="fo">OpenOffice Writer heiltøkt skjal</comment>
- <comment xml:lang="fr">document global OpenOffice Writer</comment>
- <comment xml:lang="ga">cáipéis chomhchoiteann OpenOffice Writer</comment>
- <comment xml:lang="gl">documento global de OpenOffice Writer</comment>
- <comment xml:lang="he">מסמך גלובלי של OpenOffice Writer</comment>
- <comment xml:lang="hr">OpenOffice Writer globalni dokument</comment>
- <comment xml:lang="hu">OpenOffice Writer globális dokumentum</comment>
- <comment xml:lang="ia">Documento global OpenOffice Writer</comment>
- <comment xml:lang="id">Dokumen global OpenOffice Writer</comment>
- <comment xml:lang="it">Documento globale OpenOffice Writer</comment>
- <comment xml:lang="ja">OpenOffice Writer グローバルドキュメント</comment>
- <comment xml:lang="ka">OpenOffice Writer-ის გლობალური დოკუმენტი</comment>
- <comment xml:lang="kk">OpenOffice Writer негізгі құжаты</comment>
- <comment xml:lang="ko">OpenOffice Writer 글로벌 문서</comment>
- <comment xml:lang="lt">OpenOffice Writer bendrinis dokumentas</comment>
- <comment xml:lang="lv">OpenOffice Writer globālais dokuments</comment>
- <comment xml:lang="nb">Global OpenOffice Writer globalt dokument</comment>
- <comment xml:lang="nl">OpenOffice.org Writer-globaal-document</comment>
- <comment xml:lang="nn">OpenOffice Writer globalt dokument</comment>
- <comment xml:lang="oc">document global OpenOffice Writer</comment>
- <comment xml:lang="pl">Globalny dokument OpenOffice.org Writer</comment>
- <comment xml:lang="pt">documento global OpenOffice Writer</comment>
- <comment xml:lang="pt_BR">Documento global do OpenOffice Writer</comment>
- <comment xml:lang="ro">Document global OpenOffice Writer</comment>
- <comment xml:lang="ru">Основной документ OpenOffice Writer</comment>
- <comment xml:lang="sk">Globálny dokument OpenOffice Writer</comment>
- <comment xml:lang="sl">Splošni dokument OpenOffice.org Writer</comment>
- <comment xml:lang="sq">Dokument i përgjithshëm OpenOffice Writer</comment>
- <comment xml:lang="sr">Општи документ Опен Офис Писца</comment>
- <comment xml:lang="sv">OpenOffice Writer-globaldokument</comment>
- <comment xml:lang="tr">OpenOffice Writer global belgesi</comment>
- <comment xml:lang="uk">загальний документ OpenOffice Writer</comment>
- <comment xml:lang="vi">Tài liệu toàn cục Writer của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Writer 全局文档</comment>
- <comment xml:lang="zh_TW">OpenOffice Writer 主控文件</comment>
+ <comment>LibreOffice Writer global document</comment>
+ <comment xml:lang="uk">загальний документ LibreOffice Writer</comment>
+ <comment xml:lang="sv">LibreOffice Writer-globaldokument</comment>
+ <comment xml:lang="ru">Основной документ LibreOffice Writer</comment>
+ <comment xml:lang="pt_BR">Documento global do LibreOffice Writer</comment>
+ <comment xml:lang="pl">Globalny dokument LibreOffice Writer</comment>
+ <comment xml:lang="it">Documento globale LibreOffice Writer</comment>
+ <comment xml:lang="gl">Documento global de LibreOffice Writer</comment>
+ <comment xml:lang="eu">LibreOffice Writer dokumentu globala</comment>
+ <comment xml:lang="es">documento global de LibreOffice Writer</comment>
+ <comment xml:lang="de">LibreOffice Writer-Globaldokument</comment>
+ <comment xml:lang="be">глабальны дакумент LibreOffice Writer</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.writer" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.writer"/>
</match>
</match>
</magic>
<glob pattern="*.sxg"/>
</mime-type>
<mime-type type="application/vnd.sun.xml.writer.template">
- <comment>OpenOffice Writer template</comment>
- <comment xml:lang="ar">قالب Writer المكتب المفتوح</comment>
- <comment xml:lang="az">OpenOffice Writer şablonu</comment>
- <comment xml:lang="be@latin">Šablon OpenOffice Writer</comment>
- <comment xml:lang="bg">Шаблон за документи — OpenOffice Writer</comment>
- <comment xml:lang="ca">plantilla d'OpenOffice Writer</comment>
- <comment xml:lang="cs">šablona OpenOffice Writer</comment>
- <comment xml:lang="cy">Templed OpenOffice (Writer)</comment>
- <comment xml:lang="da">OpenOffice Writer-skabelon</comment>
- <comment xml:lang="de">OpenOffice-Writer-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο OpenOffice Writer</comment>
- <comment xml:lang="en_GB">OpenOffice Writer template</comment>
- <comment xml:lang="es">plantilla de OpenOffice Writer</comment>
- <comment xml:lang="eu">OpenOffice Writer txantiloia</comment>
- <comment xml:lang="fi">OpenOffice Writer -malli</comment>
- <comment xml:lang="fo">OpenOffice Writer formur</comment>
- <comment xml:lang="fr">modèle OpenOffice Writer</comment>
- <comment xml:lang="ga">teimpléad OpenOffice Writer</comment>
- <comment xml:lang="gl">modelo de OpenOffice Writer</comment>
- <comment xml:lang="he">תסנית של OpenOffice Writer</comment>
- <comment xml:lang="hr">OpenOffice Writer predložak</comment>
- <comment xml:lang="hu">OpenOffice Writer sablon</comment>
- <comment xml:lang="ia">Patrono OpenOffice Writer</comment>
- <comment xml:lang="id">Templat OpenOffice Writer</comment>
- <comment xml:lang="it">Modello OpenOffice Writer</comment>
- <comment xml:lang="ja">OpenOffice Writer ドキュメントテンプレート</comment>
- <comment xml:lang="ka">OpenOffice Writer-ის შაბლონი</comment>
- <comment xml:lang="kk">OpenOffice Writer үлгісі</comment>
- <comment xml:lang="ko">OpenOffice Writer 문서 서식</comment>
- <comment xml:lang="lt">OpenOffice Writer šablonas</comment>
- <comment xml:lang="lv">OpenOffice Writer veidne</comment>
- <comment xml:lang="ms">Templat OpenOffice Writer</comment>
- <comment xml:lang="nb">OpenOffice Writer-mal</comment>
- <comment xml:lang="nl">OpenOffice.org Writer-sjabloon</comment>
- <comment xml:lang="nn">OpenOffice Writer-mal</comment>
- <comment xml:lang="oc">modèl OpenOffice Writer</comment>
- <comment xml:lang="pl">Szablon dokumentu OpenOffice.org Writer</comment>
- <comment xml:lang="pt">modelo OpenOffice Writer</comment>
- <comment xml:lang="pt_BR">Modelo do OpenOffice Writer</comment>
- <comment xml:lang="ro">Șablon OpenOffice Writer</comment>
- <comment xml:lang="ru">Шаблон OpenOffice Writer</comment>
- <comment xml:lang="sk">Šablóna OpenOffice Writer</comment>
- <comment xml:lang="sl">Predloga OpenOffice.org Writer</comment>
- <comment xml:lang="sq">Model OpenOffice Writer</comment>
- <comment xml:lang="sr">Шаблон Опен Офис Писца</comment>
- <comment xml:lang="sv">OpenOffice Writer-mall</comment>
- <comment xml:lang="tr">OpenOffice Writer şablonu</comment>
- <comment xml:lang="uk">шаблон документа OpenOffice Writer</comment>
- <comment xml:lang="vi">Mẫu tài liệu Writer của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice Writer 模板</comment>
- <comment xml:lang="zh_TW">OpenOffice Writer 範本</comment>
+ <comment>LibreOffice Writer template</comment>
+ <comment xml:lang="uk">шаблон LibreOffice Writer</comment>
+ <comment xml:lang="sv">LibreOffice Writer-mall</comment>
+ <comment xml:lang="ru">Шаблон LibreOffice Writer</comment>
+ <comment xml:lang="pt_BR">Modelo do LibreOffice Writer</comment>
+ <comment xml:lang="pl">Szablon dokumentu LibreOffice Writer</comment>
+ <comment xml:lang="it">Modello LibreOffice Writer</comment>
+ <comment xml:lang="gl">Modelo de LibreOffice Writer</comment>
+ <comment xml:lang="eu">LibreOffice Writer txantiloia</comment>
+ <comment xml:lang="es">plantilla de LibreOffice Writer</comment>
+ <comment xml:lang="de">LibreOffice Writer-Vorlage</comment>
+ <comment xml:lang="be">шаблон LibreOffice Writer</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.sun.xml.writer" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" offset="38" value="application/vnd.sun.xml.writer"/>
</match>
</match>
</magic>
@@ -5297,63 +5614,68 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.text">
<comment>ODT document</comment>
- <comment xml:lang="ar">مستند ODT</comment>
- <comment xml:lang="ast">Documentu ODT</comment>
- <comment xml:lang="be@latin">Dakument ODT</comment>
- <comment xml:lang="bg">Документ — ODT</comment>
- <comment xml:lang="ca">document ODT</comment>
- <comment xml:lang="cs">dokument ODT</comment>
- <comment xml:lang="da">ODT-dokument</comment>
- <comment xml:lang="de">ODT-Dokument</comment>
- <comment xml:lang="el">Έγγραφο ODT</comment>
- <comment xml:lang="en_GB">ODT document</comment>
- <comment xml:lang="eo">ODT-dokumento</comment>
- <comment xml:lang="es">documento ODT</comment>
- <comment xml:lang="eu">ODT dokumentua</comment>
- <comment xml:lang="fi">ODT-asiakirja</comment>
- <comment xml:lang="fo">ODT skjal</comment>
- <comment xml:lang="fr">document ODT</comment>
- <comment xml:lang="ga">cáipéis ODT</comment>
- <comment xml:lang="gl">documento ODT</comment>
- <comment xml:lang="he">מסמך ODT</comment>
- <comment xml:lang="hr">ODT dokument</comment>
- <comment xml:lang="hu">ODT-dokumentum</comment>
- <comment xml:lang="ia">Documento ODT</comment>
- <comment xml:lang="id">Dokumen ODT</comment>
- <comment xml:lang="it">Documento ODT</comment>
- <comment xml:lang="ja">ODT ドキュメント</comment>
- <comment xml:lang="ka">ODT დოკუმენტი</comment>
- <comment xml:lang="kk">ODT құжаты</comment>
- <comment xml:lang="ko">ODT 문서</comment>
- <comment xml:lang="lt">ODT dokumentas</comment>
- <comment xml:lang="lv">ODT dokuments</comment>
- <comment xml:lang="nb">ODT-dokument</comment>
- <comment xml:lang="nl">ODT-document</comment>
- <comment xml:lang="nn">ODT-dokument</comment>
- <comment xml:lang="oc">document ODT</comment>
- <comment xml:lang="pl">Dokument ODT</comment>
- <comment xml:lang="pt">documento ODT</comment>
- <comment xml:lang="pt_BR">Documento ODT</comment>
- <comment xml:lang="ro">Document ODT</comment>
- <comment xml:lang="ru">Документ ODT</comment>
- <comment xml:lang="sk">Dokument ODT</comment>
- <comment xml:lang="sl">Dokument ODT</comment>
- <comment xml:lang="sq">Dokument ODT</comment>
- <comment xml:lang="sr">ОДТ документ</comment>
- <comment xml:lang="sv">ODT-dokument</comment>
- <comment xml:lang="tr">ODT belgesi</comment>
- <comment xml:lang="uk">документ ODT</comment>
- <comment xml:lang="vi">Tài liệu ODT</comment>
- <comment xml:lang="zh_CN">ODT 文档</comment>
<comment xml:lang="zh_TW">ODT 文件</comment>
+ <comment xml:lang="zh_CN">ODT 文档</comment>
+ <comment xml:lang="vi">Tài liệu ODT</comment>
+ <comment xml:lang="uk">документ ODT</comment>
+ <comment xml:lang="tr">ODT belgesi</comment>
+ <comment xml:lang="sv">ODT-dokument</comment>
+ <comment xml:lang="sr">ОДТ документ</comment>
+ <comment xml:lang="sq">dokument ODT</comment>
+ <comment xml:lang="sl">Dokument ODT</comment>
+ <comment xml:lang="si">ODT ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument ODT</comment>
+ <comment xml:lang="ru">Документ ODT</comment>
+ <comment xml:lang="ro">Document ODT</comment>
+ <comment xml:lang="pt_BR">Documento ODT</comment>
+ <comment xml:lang="pt">documento ODT</comment>
+ <comment xml:lang="pl">Dokument ODT</comment>
+ <comment xml:lang="oc">document ODT</comment>
+ <comment xml:lang="nn">ODT-dokument</comment>
+ <comment xml:lang="nl">ODT-document</comment>
+ <comment xml:lang="nb">ODT-dokument</comment>
+ <comment xml:lang="lv">ODT dokuments</comment>
+ <comment xml:lang="lt">ODT dokumentas</comment>
+ <comment xml:lang="ko">ODT 문서</comment>
+ <comment xml:lang="kk">ODT құжаты</comment>
+ <comment xml:lang="ka">ODT დოკუმენტი</comment>
+ <comment xml:lang="ja">ODT ドキュメント</comment>
+ <comment xml:lang="it">Documento ODT</comment>
+ <comment xml:lang="is">ODT skjal</comment>
+ <comment xml:lang="id">Dokumen ODT</comment>
+ <comment xml:lang="ia">Documento ODT</comment>
+ <comment xml:lang="hu">ODT-dokumentum</comment>
+ <comment xml:lang="hr">ODT dokument</comment>
+ <comment xml:lang="he">מסמך ODT</comment>
+ <comment xml:lang="gl">documento ODT</comment>
+ <comment xml:lang="ga">cáipéis ODT</comment>
+ <comment xml:lang="fur">document ODT</comment>
+ <comment xml:lang="fr">document ODT</comment>
+ <comment xml:lang="fo">ODT skjal</comment>
+ <comment xml:lang="fi">ODT-asiakirja</comment>
+ <comment xml:lang="eu">ODT dokumentua</comment>
+ <comment xml:lang="es">documento ODT</comment>
+ <comment xml:lang="eo">ODT-dokumento</comment>
+ <comment xml:lang="en_GB">ODT document</comment>
+ <comment xml:lang="el">Έγγραφο ODT</comment>
+ <comment xml:lang="de">ODT-Dokument</comment>
+ <comment xml:lang="da">ODT-dokument</comment>
+ <comment xml:lang="cs">dokument ODT</comment>
+ <comment xml:lang="ca">document ODT</comment>
+ <comment xml:lang="bg">Документ — ODT</comment>
+ <comment xml:lang="be@latin">Dakument ODT</comment>
+ <comment xml:lang="be">дакумент ODT</comment>
+ <comment xml:lang="ast">Documentu ODT</comment>
+ <comment xml:lang="ar">مستند ODT</comment>
+ <comment xml:lang="af">ODT-dokument</comment>
<acronym>ODT</acronym>
<expanded-acronym>OpenDocument Text</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.text" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.text" offset="38"/>
</match>
</match>
</magic>
@@ -5361,49 +5683,55 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.text-flat-xml">
<comment>ODT document (Flat XML)</comment>
- <comment xml:lang="ar">مستند ODT (Flat XML)</comment>
- <comment xml:lang="ast">Documentu ODT (XML planu)</comment>
- <comment xml:lang="bg">Документ — ODT (само XML)</comment>
- <comment xml:lang="ca">document ODT (XML pla)</comment>
- <comment xml:lang="cs">dokument ODT (Flat XML)</comment>
- <comment xml:lang="da">ODT-dokument (flad XML)</comment>
- <comment xml:lang="de">ODT-Dokument (Unkomprimiertes XML)</comment>
- <comment xml:lang="el">Έγγραφο ODT (Flat XML)</comment>
- <comment xml:lang="en_GB">ODT document (Flat XML)</comment>
- <comment xml:lang="es">documento ODT (XML plano)</comment>
- <comment xml:lang="eu">ODT dokumentua (XML soila)</comment>
- <comment xml:lang="fi">ODT-asiakirja (Flat XML)</comment>
- <comment xml:lang="fo">ODT skjal (Flat XML)</comment>
- <comment xml:lang="fr">document ODT (XML plat)</comment>
- <comment xml:lang="ga">cáipéis ODT (XML cothrom)</comment>
- <comment xml:lang="gl">documento ODT (XML plano)</comment>
- <comment xml:lang="he">מסמך ODT‏ (Flat XML)</comment>
- <comment xml:lang="hr">ODT dokument (Flat XML)</comment>
- <comment xml:lang="hu">ODT-dokumentum (egyszerű XML)</comment>
- <comment xml:lang="ia">Documento ODT (XML platte)</comment>
- <comment xml:lang="id">Dokumen ODT (Flat XML)</comment>
- <comment xml:lang="it">Documento ODT (XML semplice)</comment>
- <comment xml:lang="ja">ODT ドキュメント (Flat XML)</comment>
- <comment xml:lang="ka">ODT დოკუმენტი (Flat XML)</comment>
- <comment xml:lang="kk">ODT құжаты (Тек XML)</comment>
- <comment xml:lang="ko">ODT 문서(단일 XML)</comment>
- <comment xml:lang="lt">ODT dokumentas (Flat XML)</comment>
- <comment xml:lang="lv">ODT dokuments (plakans XML)</comment>
- <comment xml:lang="nl">ODT document (Flat XML)</comment>
- <comment xml:lang="oc">document ODT (XML plat)</comment>
- <comment xml:lang="pl">Dokument ODT (prosty XML)</comment>
- <comment xml:lang="pt">documento ODT (XML plano)</comment>
- <comment xml:lang="pt_BR">Documento ODT (Flat XML)</comment>
- <comment xml:lang="ro">Document ODT (XML simplu)</comment>
- <comment xml:lang="ru">Документ ODT (простой XML)</comment>
- <comment xml:lang="sk">Dokument ODT (čisté XML)</comment>
- <comment xml:lang="sl">Datoteka dokumenta ODT (nepovezan XML)</comment>
- <comment xml:lang="sr">ОДТ документ (Обични ИксМЛ)</comment>
- <comment xml:lang="sv">ODT-dokument (platt XML)</comment>
- <comment xml:lang="tr">ODT belgesi (Düz XML)</comment>
- <comment xml:lang="uk">документ ODT (Flat XML)</comment>
- <comment xml:lang="zh_CN">ODT 文档(Flat XML)</comment>
<comment xml:lang="zh_TW">ODT 文件 (Flat XML)</comment>
+ <comment xml:lang="zh_CN">ODT 文档(Flat XML)</comment>
+ <comment xml:lang="uk">документ ODT (Flat XML)</comment>
+ <comment xml:lang="tr">ODT belgesi (Düz XML)</comment>
+ <comment xml:lang="sv">ODT-dokument (platt XML)</comment>
+ <comment xml:lang="sr">ОДТ документ (Обични ИксМЛ)</comment>
+ <comment xml:lang="sq">dokument ODT (Flat XML)</comment>
+ <comment xml:lang="sl">Datoteka dokumenta ODT (nepovezan XML)</comment>
+ <comment xml:lang="si">ODT ලේඛනය (පැතලි XML)</comment>
+ <comment xml:lang="sk">Dokument ODT (čisté XML)</comment>
+ <comment xml:lang="ru">Документ ODT (простой XML)</comment>
+ <comment xml:lang="ro">Document ODT (XML simplu)</comment>
+ <comment xml:lang="pt_BR">Documento ODT (Flat XML)</comment>
+ <comment xml:lang="pt">documento ODT (XML plano)</comment>
+ <comment xml:lang="pl">Dokument ODT (prosty XML)</comment>
+ <comment xml:lang="oc">document ODT (XML plat)</comment>
+ <comment xml:lang="nl">ODT document (Flat XML)</comment>
+ <comment xml:lang="lv">ODT dokuments (plakans XML)</comment>
+ <comment xml:lang="lt">ODT dokumentas (Flat XML)</comment>
+ <comment xml:lang="ko">ODT 문서(단일 XML)</comment>
+ <comment xml:lang="kk">ODT құжаты (Тек XML)</comment>
+ <comment xml:lang="ka">ODT დოკუმენტი (Flat XML)</comment>
+ <comment xml:lang="ja">ODT ドキュメント (Flat XML)</comment>
+ <comment xml:lang="it">Documento ODT (XML semplice)</comment>
+ <comment xml:lang="is">ODT skjal (flatt XML)</comment>
+ <comment xml:lang="id">Dokumen ODT (Flat XML)</comment>
+ <comment xml:lang="ia">Documento ODT (XML platte)</comment>
+ <comment xml:lang="hu">ODT-dokumentum (egyszerű XML)</comment>
+ <comment xml:lang="hr">ODT dokument (Flat XML)</comment>
+ <comment xml:lang="he">מסמך ODT‏ (Flat XML)</comment>
+ <comment xml:lang="gl">documento ODT (XML plano)</comment>
+ <comment xml:lang="ga">cáipéis ODT (XML cothrom)</comment>
+ <comment xml:lang="fur">document ODT (XML sempliç)</comment>
+ <comment xml:lang="fr">document ODT (XML plat)</comment>
+ <comment xml:lang="fo">ODT skjal (Flat XML)</comment>
+ <comment xml:lang="fi">ODT-asiakirja (Flat XML)</comment>
+ <comment xml:lang="eu">ODT dokumentua (XML soila)</comment>
+ <comment xml:lang="es">documento ODT (XML plano)</comment>
+ <comment xml:lang="en_GB">ODT document (Flat XML)</comment>
+ <comment xml:lang="el">Έγγραφο ODT (Flat XML)</comment>
+ <comment xml:lang="de">ODT-Dokument (einfaches XML)</comment>
+ <comment xml:lang="da">ODT-dokument (flad XML)</comment>
+ <comment xml:lang="cs">dokument ODT (Flat XML)</comment>
+ <comment xml:lang="ca">document ODT (XML pla)</comment>
+ <comment xml:lang="bg">Документ — ODT (само XML)</comment>
+ <comment xml:lang="be">дакумент ODT (плоскі XML)</comment>
+ <comment xml:lang="ast">Documentu ODT (XML planu)</comment>
+ <comment xml:lang="ar">مستند ODT (Flat XML)</comment>
+ <comment xml:lang="af">ODT-dokument (plat XML)</comment>
<acronym>FODT</acronym>
<expanded-acronym>OpenDocument Text (Flat XML)</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -5412,62 +5740,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.text-template">
<comment>ODT template</comment>
- <comment xml:lang="ar">قالب ODT</comment>
- <comment xml:lang="be@latin">Šablon ODT</comment>
- <comment xml:lang="bg">Шаблон за документи — ODT</comment>
- <comment xml:lang="ca">plantilla ODT</comment>
- <comment xml:lang="cs">šablona ODT</comment>
- <comment xml:lang="da">ODT-skabelon</comment>
- <comment xml:lang="de">ODT-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο ODT</comment>
- <comment xml:lang="en_GB">ODT template</comment>
- <comment xml:lang="eo">ODT-ŝablono</comment>
- <comment xml:lang="es">plantilla ODT</comment>
- <comment xml:lang="eu">ODT txantiloia</comment>
- <comment xml:lang="fi">ODT-malli</comment>
- <comment xml:lang="fo">ODT formur</comment>
- <comment xml:lang="fr">modèle ODT</comment>
- <comment xml:lang="ga">teimpléad ODT</comment>
- <comment xml:lang="gl">modelo ODT</comment>
- <comment xml:lang="he">תבנית ODT</comment>
- <comment xml:lang="hr">ODT predložak</comment>
- <comment xml:lang="hu">ODT-sablon</comment>
- <comment xml:lang="ia">Patrono ODT</comment>
- <comment xml:lang="id">Templat ODT</comment>
- <comment xml:lang="it">Modello ODT</comment>
- <comment xml:lang="ja">ODT テンプレート</comment>
- <comment xml:lang="ka">ODT დოკუმენტი</comment>
- <comment xml:lang="kk">ODT үлгісі</comment>
- <comment xml:lang="ko">ODT 문서 서식</comment>
- <comment xml:lang="lt">ODT šablonas</comment>
- <comment xml:lang="lv">ODT veidne</comment>
- <comment xml:lang="nb">ODT-mal</comment>
- <comment xml:lang="nl">ODT-sjabloon</comment>
- <comment xml:lang="nn">ODT-mal</comment>
- <comment xml:lang="oc">modèl ODT</comment>
- <comment xml:lang="pl">Szablon ODT</comment>
- <comment xml:lang="pt">modelo ODT</comment>
- <comment xml:lang="pt_BR">Modelo ODT</comment>
- <comment xml:lang="ro">Șablon ODT</comment>
- <comment xml:lang="ru">Шаблон ODT</comment>
- <comment xml:lang="sk">Šablóna ODT</comment>
- <comment xml:lang="sl">Predloga dokumenta ODT</comment>
- <comment xml:lang="sq">Model ODT</comment>
- <comment xml:lang="sr">ОДТ шаблон</comment>
- <comment xml:lang="sv">ODT-mall</comment>
- <comment xml:lang="tr">ODT şablonu</comment>
- <comment xml:lang="uk">шаблон ODT</comment>
- <comment xml:lang="vi">Mẫu ODT</comment>
- <comment xml:lang="zh_CN">ODT 模板</comment>
<comment xml:lang="zh_TW">ODT 範本</comment>
+ <comment xml:lang="zh_CN">ODT 模板</comment>
+ <comment xml:lang="vi">Mẫu ODT</comment>
+ <comment xml:lang="uk">шаблон ODT</comment>
+ <comment xml:lang="tr">ODT şablonu</comment>
+ <comment xml:lang="sv">ODT-mall</comment>
+ <comment xml:lang="sr">ОДТ шаблон</comment>
+ <comment xml:lang="sq">gjedhe ODT</comment>
+ <comment xml:lang="sl">Predloga dokumenta ODT</comment>
+ <comment xml:lang="si">ODT අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna ODT</comment>
+ <comment xml:lang="ru">Шаблон ODT</comment>
+ <comment xml:lang="ro">Șablon ODT</comment>
+ <comment xml:lang="pt_BR">Modelo ODT</comment>
+ <comment xml:lang="pt">modelo ODT</comment>
+ <comment xml:lang="pl">Szablon ODT</comment>
+ <comment xml:lang="oc">modèl ODT</comment>
+ <comment xml:lang="nn">ODT-mal</comment>
+ <comment xml:lang="nl">ODT-sjabloon</comment>
+ <comment xml:lang="nb">ODT-mal</comment>
+ <comment xml:lang="lv">ODT veidne</comment>
+ <comment xml:lang="lt">ODT šablonas</comment>
+ <comment xml:lang="ko">ODT 문서 서식</comment>
+ <comment xml:lang="kk">ODT үлгісі</comment>
+ <comment xml:lang="ka">ODT დოკუმენტი</comment>
+ <comment xml:lang="ja">ODT テンプレート</comment>
+ <comment xml:lang="it">Modello ODT</comment>
+ <comment xml:lang="is">ODT sniðmát</comment>
+ <comment xml:lang="id">Templat ODT</comment>
+ <comment xml:lang="ia">Patrono ODT</comment>
+ <comment xml:lang="hu">ODT-sablon</comment>
+ <comment xml:lang="hr">ODT predložak</comment>
+ <comment xml:lang="he">תבנית ODT</comment>
+ <comment xml:lang="gl">modelo ODT</comment>
+ <comment xml:lang="ga">teimpléad ODT</comment>
+ <comment xml:lang="fur">model ODT</comment>
+ <comment xml:lang="fr">modèle ODT</comment>
+ <comment xml:lang="fo">ODT formur</comment>
+ <comment xml:lang="fi">ODT-malli</comment>
+ <comment xml:lang="eu">ODT txantiloia</comment>
+ <comment xml:lang="es">plantilla ODT</comment>
+ <comment xml:lang="eo">ODT-ŝablono</comment>
+ <comment xml:lang="en_GB">ODT template</comment>
+ <comment xml:lang="el">Πρότυπο ODT</comment>
+ <comment xml:lang="de">ODT-Vorlage</comment>
+ <comment xml:lang="da">ODT-skabelon</comment>
+ <comment xml:lang="cs">šablona ODT</comment>
+ <comment xml:lang="ca">plantilla ODT</comment>
+ <comment xml:lang="bg">Шаблон за документи — ODT</comment>
+ <comment xml:lang="be@latin">Šablon ODT</comment>
+ <comment xml:lang="be">шаблон ODT</comment>
+ <comment xml:lang="ar">قالب ODT</comment>
+ <comment xml:lang="af">ODT-sjabloon</comment>
<acronym>ODT</acronym>
<expanded-acronym>OpenDocument Text</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.text-template" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.text-template" offset="38"/>
</match>
</match>
</magic>
@@ -5475,62 +5808,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.text-web">
<comment>OTH template</comment>
- <comment xml:lang="ar">قالب OTH</comment>
- <comment xml:lang="be@latin">Šablon OTH</comment>
- <comment xml:lang="bg">Шаблон за страници — OTH</comment>
- <comment xml:lang="ca">plantilla OTH</comment>
- <comment xml:lang="cs">šablona OTH</comment>
- <comment xml:lang="da">OTH-skabelon</comment>
- <comment xml:lang="de">OTH-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο OTH</comment>
- <comment xml:lang="en_GB">OTH template</comment>
- <comment xml:lang="eo">OTH-ŝablono</comment>
- <comment xml:lang="es">plantilla OTH</comment>
- <comment xml:lang="eu">OTH txantiloia</comment>
- <comment xml:lang="fi">OTH-malli</comment>
- <comment xml:lang="fo">OTH formur</comment>
- <comment xml:lang="fr">modèle OTH</comment>
- <comment xml:lang="ga">teimpléad OTH</comment>
- <comment xml:lang="gl">modelo OTH</comment>
- <comment xml:lang="he">תבנית OTH</comment>
- <comment xml:lang="hr">OTH predložak</comment>
- <comment xml:lang="hu">OTH-sablon</comment>
- <comment xml:lang="ia">Patrono OTH</comment>
- <comment xml:lang="id">Templat OTH</comment>
- <comment xml:lang="it">Modello OTH</comment>
- <comment xml:lang="ja">OTH テンプレート</comment>
- <comment xml:lang="ka">OTH შაბლონი</comment>
- <comment xml:lang="kk">OTH үлгісі</comment>
- <comment xml:lang="ko">OTH 문서 서식</comment>
- <comment xml:lang="lt">OTH šablonas</comment>
- <comment xml:lang="lv">OTH veidne</comment>
- <comment xml:lang="nb">OTH-mal</comment>
- <comment xml:lang="nl">OTH-sjabloon</comment>
- <comment xml:lang="nn">OTH-mal</comment>
- <comment xml:lang="oc">modèl OTH</comment>
- <comment xml:lang="pl">Szablon OTH</comment>
- <comment xml:lang="pt">modelo OTH</comment>
- <comment xml:lang="pt_BR">Modelo OTH</comment>
- <comment xml:lang="ro">Șablon OTH</comment>
- <comment xml:lang="ru">Шаблон OTH</comment>
- <comment xml:lang="sk">Šablóna OTH</comment>
- <comment xml:lang="sl">Predloga OTH</comment>
- <comment xml:lang="sq">Model OTH</comment>
- <comment xml:lang="sr">ОТХ шаблон</comment>
- <comment xml:lang="sv">OTH-mall</comment>
- <comment xml:lang="tr">OTH şablonu</comment>
- <comment xml:lang="uk">шаблон OTH</comment>
- <comment xml:lang="vi">Mẫu ODH</comment>
- <comment xml:lang="zh_CN">OTH 模板</comment>
<comment xml:lang="zh_TW">OTH 範本</comment>
+ <comment xml:lang="zh_CN">OTH 模板</comment>
+ <comment xml:lang="vi">Mẫu ODH</comment>
+ <comment xml:lang="uk">шаблон OTH</comment>
+ <comment xml:lang="tr">OTH şablonu</comment>
+ <comment xml:lang="sv">OTH-mall</comment>
+ <comment xml:lang="sr">ОТХ шаблон</comment>
+ <comment xml:lang="sq">gjedhe OTH</comment>
+ <comment xml:lang="sl">Predloga OTH</comment>
+ <comment xml:lang="si">OTH අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna OTH</comment>
+ <comment xml:lang="ru">Шаблон OTH</comment>
+ <comment xml:lang="ro">Șablon OTH</comment>
+ <comment xml:lang="pt_BR">Modelo OTH</comment>
+ <comment xml:lang="pt">modelo OTH</comment>
+ <comment xml:lang="pl">Szablon OTH</comment>
+ <comment xml:lang="oc">modèl OTH</comment>
+ <comment xml:lang="nn">OTH-mal</comment>
+ <comment xml:lang="nl">OTH-sjabloon</comment>
+ <comment xml:lang="nb">OTH-mal</comment>
+ <comment xml:lang="lv">OTH veidne</comment>
+ <comment xml:lang="lt">OTH šablonas</comment>
+ <comment xml:lang="ko">OTH 문서 서식</comment>
+ <comment xml:lang="kk">OTH үлгісі</comment>
+ <comment xml:lang="ka">OTH შაბლონი</comment>
+ <comment xml:lang="ja">OTH テンプレート</comment>
+ <comment xml:lang="it">Modello OTH</comment>
+ <comment xml:lang="is">OTH sniðmát</comment>
+ <comment xml:lang="id">Templat OTH</comment>
+ <comment xml:lang="ia">Patrono OTH</comment>
+ <comment xml:lang="hu">OTH-sablon</comment>
+ <comment xml:lang="hr">OTH predložak</comment>
+ <comment xml:lang="he">תבנית OTH</comment>
+ <comment xml:lang="gl">modelo OTH</comment>
+ <comment xml:lang="ga">teimpléad OTH</comment>
+ <comment xml:lang="fur">model OTH</comment>
+ <comment xml:lang="fr">modèle OTH</comment>
+ <comment xml:lang="fo">OTH formur</comment>
+ <comment xml:lang="fi">OTH-malli</comment>
+ <comment xml:lang="eu">OTH txantiloia</comment>
+ <comment xml:lang="es">plantilla OTH</comment>
+ <comment xml:lang="eo">OTH-ŝablono</comment>
+ <comment xml:lang="en_GB">OTH template</comment>
+ <comment xml:lang="el">Πρότυπο OTH</comment>
+ <comment xml:lang="de">OTH-Vorlage</comment>
+ <comment xml:lang="da">OTH-skabelon</comment>
+ <comment xml:lang="cs">šablona OTH</comment>
+ <comment xml:lang="ca">plantilla OTH</comment>
+ <comment xml:lang="bg">Шаблон за страници — OTH</comment>
+ <comment xml:lang="be@latin">Šablon OTH</comment>
+ <comment xml:lang="be">шаблон OTH</comment>
+ <comment xml:lang="ar">قالب OTH</comment>
+ <comment xml:lang="af">OTH-sjabloon</comment>
<acronym>OTH</acronym>
<expanded-acronym>OpenDocument HTML</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="text-html"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.text-web" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.text-web" offset="38"/>
</match>
</match>
</magic>
@@ -5538,63 +5876,68 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.text-master">
<comment>ODM document</comment>
- <comment xml:lang="ar">مستند ODM</comment>
- <comment xml:lang="ast">Documentu ODM</comment>
- <comment xml:lang="be@latin">Dakument ODM</comment>
- <comment xml:lang="bg">Документ — ODM</comment>
- <comment xml:lang="ca">document ODM</comment>
- <comment xml:lang="cs">dokument ODM</comment>
- <comment xml:lang="da">ODM-dokument</comment>
- <comment xml:lang="de">ODM-Dokument</comment>
- <comment xml:lang="el">Έγγραφο ODM</comment>
- <comment xml:lang="en_GB">ODM document</comment>
- <comment xml:lang="eo">ODM-dokumento</comment>
- <comment xml:lang="es">documento ODM</comment>
- <comment xml:lang="eu">ODM dokumentua</comment>
- <comment xml:lang="fi">ODM-asiakirja</comment>
- <comment xml:lang="fo">ODM skjal</comment>
- <comment xml:lang="fr">document ODM</comment>
- <comment xml:lang="ga">cáipéis ODM</comment>
- <comment xml:lang="gl">documento ODM</comment>
- <comment xml:lang="he">מסמך ODM</comment>
- <comment xml:lang="hr">ODM dokument</comment>
- <comment xml:lang="hu">ODM-dokumentum</comment>
- <comment xml:lang="ia">Documento ODM</comment>
- <comment xml:lang="id">Dokumen ODM</comment>
- <comment xml:lang="it">Documento ODM</comment>
- <comment xml:lang="ja">ODM ドキュメント</comment>
- <comment xml:lang="ka">ODM დოკუმენტი</comment>
- <comment xml:lang="kk">ODM құжаты</comment>
- <comment xml:lang="ko">ODM 문서</comment>
- <comment xml:lang="lt">ODM dokumentas</comment>
- <comment xml:lang="lv">ODM dokuments</comment>
- <comment xml:lang="nb">ODM-dokument</comment>
- <comment xml:lang="nl">ODM-document</comment>
- <comment xml:lang="nn">ODM-dokument</comment>
- <comment xml:lang="oc">document ODM</comment>
- <comment xml:lang="pl">Dokument ODM</comment>
- <comment xml:lang="pt">documento ODM</comment>
- <comment xml:lang="pt_BR">Documento ODM</comment>
- <comment xml:lang="ro">Document ODM</comment>
- <comment xml:lang="ru">Документ ODM</comment>
- <comment xml:lang="sk">Dokument ODM</comment>
- <comment xml:lang="sl">Dokument ODM</comment>
- <comment xml:lang="sq">Dokument ODM</comment>
- <comment xml:lang="sr">ОДМ документ</comment>
- <comment xml:lang="sv">ODM-dokument</comment>
- <comment xml:lang="tr">ODM belgesi</comment>
- <comment xml:lang="uk">документ ODM</comment>
- <comment xml:lang="vi">Tài liệu ODM</comment>
- <comment xml:lang="zh_CN">ODM 文档</comment>
<comment xml:lang="zh_TW">ODM 文件</comment>
+ <comment xml:lang="zh_CN">ODM 文档</comment>
+ <comment xml:lang="vi">Tài liệu ODM</comment>
+ <comment xml:lang="uk">документ ODM</comment>
+ <comment xml:lang="tr">ODM belgesi</comment>
+ <comment xml:lang="sv">ODM-dokument</comment>
+ <comment xml:lang="sr">ОДМ документ</comment>
+ <comment xml:lang="sq">dokument ODM</comment>
+ <comment xml:lang="sl">Dokument ODM</comment>
+ <comment xml:lang="si">ODM ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument ODM</comment>
+ <comment xml:lang="ru">Документ ODM</comment>
+ <comment xml:lang="ro">Document ODM</comment>
+ <comment xml:lang="pt_BR">Documento ODM</comment>
+ <comment xml:lang="pt">documento ODM</comment>
+ <comment xml:lang="pl">Dokument ODM</comment>
+ <comment xml:lang="oc">document ODM</comment>
+ <comment xml:lang="nn">ODM-dokument</comment>
+ <comment xml:lang="nl">ODM-document</comment>
+ <comment xml:lang="nb">ODM-dokument</comment>
+ <comment xml:lang="lv">ODM dokuments</comment>
+ <comment xml:lang="lt">ODM dokumentas</comment>
+ <comment xml:lang="ko">ODM 문서</comment>
+ <comment xml:lang="kk">ODM құжаты</comment>
+ <comment xml:lang="ka">ODM დოკუმენტი</comment>
+ <comment xml:lang="ja">ODM ドキュメント</comment>
+ <comment xml:lang="it">Documento ODM</comment>
+ <comment xml:lang="is">ODM skjal</comment>
+ <comment xml:lang="id">Dokumen ODM</comment>
+ <comment xml:lang="ia">Documento ODM</comment>
+ <comment xml:lang="hu">ODM-dokumentum</comment>
+ <comment xml:lang="hr">ODM dokument</comment>
+ <comment xml:lang="he">מסמך ODM</comment>
+ <comment xml:lang="gl">documento ODM</comment>
+ <comment xml:lang="ga">cáipéis ODM</comment>
+ <comment xml:lang="fur">document ODM</comment>
+ <comment xml:lang="fr">document ODM</comment>
+ <comment xml:lang="fo">ODM skjal</comment>
+ <comment xml:lang="fi">ODM-asiakirja</comment>
+ <comment xml:lang="eu">ODM dokumentua</comment>
+ <comment xml:lang="es">documento ODM</comment>
+ <comment xml:lang="eo">ODM-dokumento</comment>
+ <comment xml:lang="en_GB">ODM document</comment>
+ <comment xml:lang="el">Έγγραφο ODM</comment>
+ <comment xml:lang="de">ODM-Dokument</comment>
+ <comment xml:lang="da">ODM-dokument</comment>
+ <comment xml:lang="cs">dokument ODM</comment>
+ <comment xml:lang="ca">document ODM</comment>
+ <comment xml:lang="bg">Документ — ODM</comment>
+ <comment xml:lang="be@latin">Dakument ODM</comment>
+ <comment xml:lang="be">дакумент ODM</comment>
+ <comment xml:lang="ast">Documentu ODM</comment>
+ <comment xml:lang="ar">مستند ODM</comment>
+ <comment xml:lang="af">ODM-dokument</comment>
<acronym>ODM</acronym>
<expanded-acronym>OpenDocument Master</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.text-master" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.text-master" offset="38"/>
</match>
</match>
</magic>
@@ -5602,62 +5945,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.graphics">
<comment>ODG drawing</comment>
- <comment xml:lang="ar">تصميم ODG</comment>
- <comment xml:lang="be@latin">Rysunak ODG</comment>
- <comment xml:lang="bg">Чертеж — ODG</comment>
- <comment xml:lang="ca">dibuix ODG</comment>
- <comment xml:lang="cs">kresba ODG</comment>
- <comment xml:lang="da">ODG-tegning</comment>
- <comment xml:lang="de">ODG-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο ODG</comment>
- <comment xml:lang="en_GB">ODG drawing</comment>
- <comment xml:lang="eo">ODG-desegnaĵo</comment>
- <comment xml:lang="es">dibujo ODG</comment>
- <comment xml:lang="eu">ODG marrazkia</comment>
- <comment xml:lang="fi">ODG-piirros</comment>
- <comment xml:lang="fo">ODG tekning</comment>
- <comment xml:lang="fr">dessin ODG</comment>
- <comment xml:lang="ga">líníocht ODG</comment>
- <comment xml:lang="gl">debuxo ODG</comment>
- <comment xml:lang="he">ציור ODG</comment>
- <comment xml:lang="hr">ODG crtež</comment>
- <comment xml:lang="hu">ODG-rajz</comment>
- <comment xml:lang="ia">Designo ODG</comment>
- <comment xml:lang="id">Gambar ODG</comment>
- <comment xml:lang="it">Disegno ODG</comment>
- <comment xml:lang="ja">ODG ドロー</comment>
- <comment xml:lang="ka">ODG-ის ნახაზი</comment>
- <comment xml:lang="kk">ODG суреті</comment>
- <comment xml:lang="ko">ODG 드로잉</comment>
- <comment xml:lang="lt">ODG piešinys</comment>
- <comment xml:lang="lv">ODG zīmējums</comment>
- <comment xml:lang="nb">ODG-tegning</comment>
- <comment xml:lang="nl">ODG-tekening</comment>
- <comment xml:lang="nn">ODG-teikning</comment>
- <comment xml:lang="oc">dessenh ODG</comment>
- <comment xml:lang="pl">Rysunek ODG</comment>
- <comment xml:lang="pt">desenho ODG</comment>
- <comment xml:lang="pt_BR">Desenho ODG</comment>
- <comment xml:lang="ro">Desen ODG</comment>
- <comment xml:lang="ru">Рисунок ODG</comment>
- <comment xml:lang="sk">Kresba ODG</comment>
- <comment xml:lang="sl">Datoteka risbe ODG</comment>
- <comment xml:lang="sq">Vizatim ODG</comment>
- <comment xml:lang="sr">ОДГ цртеж</comment>
- <comment xml:lang="sv">ODG-teckning</comment>
- <comment xml:lang="tr">ODG çizimi</comment>
- <comment xml:lang="uk">малюнок ODG</comment>
- <comment xml:lang="vi">Bản vẽ ODG</comment>
- <comment xml:lang="zh_CN">ODG 绘图</comment>
<comment xml:lang="zh_TW">ODG 繪圖</comment>
+ <comment xml:lang="zh_CN">ODG 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ ODG</comment>
+ <comment xml:lang="uk">малюнок ODG</comment>
+ <comment xml:lang="tr">ODG çizimi</comment>
+ <comment xml:lang="sv">ODG-teckning</comment>
+ <comment xml:lang="sr">ОДГ цртеж</comment>
+ <comment xml:lang="sq">vizatim ODG</comment>
+ <comment xml:lang="sl">Datoteka risbe ODG</comment>
+ <comment xml:lang="si">ODG ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba ODG</comment>
+ <comment xml:lang="ru">Рисунок ODG</comment>
+ <comment xml:lang="ro">Desen ODG</comment>
+ <comment xml:lang="pt_BR">Desenho ODG</comment>
+ <comment xml:lang="pt">desenho ODG</comment>
+ <comment xml:lang="pl">Rysunek ODG</comment>
+ <comment xml:lang="oc">dessenh ODG</comment>
+ <comment xml:lang="nn">ODG-teikning</comment>
+ <comment xml:lang="nl">ODG-tekening</comment>
+ <comment xml:lang="nb">ODG-tegning</comment>
+ <comment xml:lang="lv">ODG zīmējums</comment>
+ <comment xml:lang="lt">ODG piešinys</comment>
+ <comment xml:lang="ko">ODG 드로잉</comment>
+ <comment xml:lang="kk">ODG суреті</comment>
+ <comment xml:lang="ka">ODG-ის ნახაზი</comment>
+ <comment xml:lang="ja">ODG ドロー</comment>
+ <comment xml:lang="it">Disegno ODG</comment>
+ <comment xml:lang="is">ODG teikning</comment>
+ <comment xml:lang="id">Gambar ODG</comment>
+ <comment xml:lang="ia">Designo ODG</comment>
+ <comment xml:lang="hu">ODG-rajz</comment>
+ <comment xml:lang="hr">ODG crtež</comment>
+ <comment xml:lang="he">ציור ODG</comment>
+ <comment xml:lang="gl">debuxo ODG</comment>
+ <comment xml:lang="ga">líníocht ODG</comment>
+ <comment xml:lang="fur">dissen ODG</comment>
+ <comment xml:lang="fr">dessin ODG</comment>
+ <comment xml:lang="fo">ODG tekning</comment>
+ <comment xml:lang="fi">ODG-piirros</comment>
+ <comment xml:lang="eu">ODG marrazkia</comment>
+ <comment xml:lang="es">dibujo ODG</comment>
+ <comment xml:lang="eo">ODG-desegnaĵo</comment>
+ <comment xml:lang="en_GB">ODG drawing</comment>
+ <comment xml:lang="el">Σχέδιο ODG</comment>
+ <comment xml:lang="de">ODG-Zeichnung</comment>
+ <comment xml:lang="da">ODG-tegning</comment>
+ <comment xml:lang="cs">kresba ODG</comment>
+ <comment xml:lang="ca">dibuix ODG</comment>
+ <comment xml:lang="bg">Чертеж — ODG</comment>
+ <comment xml:lang="be@latin">Rysunak ODG</comment>
+ <comment xml:lang="be">рысунак ODG</comment>
+ <comment xml:lang="ar">تصميم ODG</comment>
+ <comment xml:lang="af">ODG-tekening</comment>
<acronym>ODG</acronym>
<expanded-acronym>OpenDocument Drawing</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="image-x-generic"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.graphics" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.graphics" offset="38"/>
</match>
</match>
</magic>
@@ -5665,48 +6013,54 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.graphics-flat-xml">
<comment>ODG drawing (Flat XML)</comment>
- <comment xml:lang="ar">رسمة ODG (Flat XML)</comment>
- <comment xml:lang="bg">Чертеж — ODG (само XML)</comment>
- <comment xml:lang="ca">dibuix ODG (XML pla) </comment>
- <comment xml:lang="cs">kresba ODG (Flat XML)</comment>
- <comment xml:lang="da">ODG-tegning (flad XML)</comment>
- <comment xml:lang="de">ODG-Zeichnung (Unkomprimiertes XML)</comment>
- <comment xml:lang="el">Σχέδιο ODG (Flat XML)</comment>
- <comment xml:lang="en_GB">ODG drawing (Flat XML)</comment>
- <comment xml:lang="es">dibujo ODG (XML plano)</comment>
- <comment xml:lang="eu">ODG marrazkia (XML soila)</comment>
- <comment xml:lang="fi">ODG-piirros (Flat XML)</comment>
- <comment xml:lang="fo">ODG tekning (Flat XML)</comment>
- <comment xml:lang="fr">dessin ODG (XML plat)</comment>
- <comment xml:lang="ga">líníocht ODG (XML cothrom)</comment>
- <comment xml:lang="gl">debuxo ODB (XML plano)</comment>
- <comment xml:lang="he">ציור ODG (Flat XML(</comment>
- <comment xml:lang="hr">ODG crtež (Flat XML)</comment>
- <comment xml:lang="hu">ODG-rajz (egyszerű XML)</comment>
- <comment xml:lang="ia">Designo ODG (XML platte)</comment>
- <comment xml:lang="id">Gambar ODG (FLAT XML)</comment>
- <comment xml:lang="it">Disegno ODG (XML semplice)</comment>
- <comment xml:lang="ja">ODG ドロー (Flat XML)</comment>
- <comment xml:lang="ka">ODG-ის ნახაზი (Flat XML)</comment>
- <comment xml:lang="kk">ODG сызбасы (Тек XML)</comment>
- <comment xml:lang="ko">ODG 드로잉(단일 XML)</comment>
- <comment xml:lang="lt">ODG piešinys (Flat XML)</comment>
- <comment xml:lang="lv">ODG zīmējums (plakans XML)</comment>
- <comment xml:lang="nl">ODG-tekening (Flat XML)</comment>
- <comment xml:lang="oc">dessenh ODG (XML plat)</comment>
- <comment xml:lang="pl">Rysunek ODG (prosty XML)</comment>
- <comment xml:lang="pt">desenho ODG (XML plano)</comment>
- <comment xml:lang="pt_BR">Desenho ODG (Flat XML)</comment>
- <comment xml:lang="ro">Desen ODG (XML simplu)</comment>
- <comment xml:lang="ru">Рисунок ODG (простой XML)</comment>
- <comment xml:lang="sk">Kresba ODG (čisté XML)</comment>
- <comment xml:lang="sl">Datoteka risbe ODG (nepovezan XML)</comment>
- <comment xml:lang="sr">ОДГ цртеж (Обичан ИксМЛ)</comment>
- <comment xml:lang="sv">ODG-teckning (platt XML)</comment>
- <comment xml:lang="tr">ODG çizimi (Düz XML)</comment>
- <comment xml:lang="uk">малюнок ODG (Flat XML)</comment>
- <comment xml:lang="zh_CN">ODG 绘图(Flat XML)</comment>
<comment xml:lang="zh_TW">ODG 繪圖 (Flat XML)</comment>
+ <comment xml:lang="zh_CN">ODG 绘图(Flat XML)</comment>
+ <comment xml:lang="uk">малюнок ODG (простий XML)</comment>
+ <comment xml:lang="tr">ODG çizimi (Düz XML)</comment>
+ <comment xml:lang="sv">ODG-teckning (platt XML)</comment>
+ <comment xml:lang="sr">ОДГ цртеж (Обичан ИксМЛ)</comment>
+ <comment xml:lang="sq">vizatim ODF (Flat XML)</comment>
+ <comment xml:lang="sl">Datoteka risbe ODG (nepovezan XML)</comment>
+ <comment xml:lang="si">ODG ඇඳීම (පැතලි XML)</comment>
+ <comment xml:lang="sk">Kresba ODG (čisté XML)</comment>
+ <comment xml:lang="ru">Рисунок ODG (простой XML)</comment>
+ <comment xml:lang="ro">Desen ODG (XML simplu)</comment>
+ <comment xml:lang="pt_BR">Desenho ODG (Flat XML)</comment>
+ <comment xml:lang="pt">desenho ODG (XML plano)</comment>
+ <comment xml:lang="pl">Rysunek ODG (prosty XML)</comment>
+ <comment xml:lang="oc">dessenh ODG (XML plat)</comment>
+ <comment xml:lang="nl">ODG-tekening (Flat XML)</comment>
+ <comment xml:lang="lv">ODG zīmējums (plakans XML)</comment>
+ <comment xml:lang="lt">ODG piešinys (Flat XML)</comment>
+ <comment xml:lang="ko">ODG 드로잉(단일 XML)</comment>
+ <comment xml:lang="kk">ODG сызбасы (Тек XML)</comment>
+ <comment xml:lang="ka">ODG-ის ნახაზი (Flat XML)</comment>
+ <comment xml:lang="ja">ODG ドロー (Flat XML)</comment>
+ <comment xml:lang="it">Disegno ODG (XML semplice)</comment>
+ <comment xml:lang="is">ODG teikning (flatt XML)</comment>
+ <comment xml:lang="id">Gambar ODG (FLAT XML)</comment>
+ <comment xml:lang="ia">Designo ODG (XML platte)</comment>
+ <comment xml:lang="hu">ODG-rajz (egyszerű XML)</comment>
+ <comment xml:lang="hr">ODG crtež (Flat XML)</comment>
+ <comment xml:lang="he">ציור ODG ‏(Flat XML)</comment>
+ <comment xml:lang="gl">debuxo ODB (XML plano)</comment>
+ <comment xml:lang="ga">líníocht ODG (XML cothrom)</comment>
+ <comment xml:lang="fur">dissen ODG (XML sempliç)</comment>
+ <comment xml:lang="fr">dessin ODG (XML plat)</comment>
+ <comment xml:lang="fo">ODG tekning (Flat XML)</comment>
+ <comment xml:lang="fi">ODG-piirros (Flat XML)</comment>
+ <comment xml:lang="eu">ODG marrazkia (XML soila)</comment>
+ <comment xml:lang="es">dibujo ODG (XML plano)</comment>
+ <comment xml:lang="en_GB">ODG drawing (Flat XML)</comment>
+ <comment xml:lang="el">Σχέδιο ODG (Flat XML)</comment>
+ <comment xml:lang="de">ODG-Zeichnung (einfaches XML)</comment>
+ <comment xml:lang="da">ODG-tegning (flad XML)</comment>
+ <comment xml:lang="cs">kresba ODG (Flat XML)</comment>
+ <comment xml:lang="ca">dibuix ODG (XML pla) </comment>
+ <comment xml:lang="bg">Чертеж — ODG (само XML)</comment>
+ <comment xml:lang="be">рысунак ODG (плоскі XML)</comment>
+ <comment xml:lang="ar">رسمة ODG (Flat XML)</comment>
+ <comment xml:lang="af">ODG-tekening (plat XML)</comment>
<acronym>FODG</acronym>
<expanded-acronym>OpenDocument Drawing (Flat XML)</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -5715,62 +6069,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.graphics-template">
<comment>ODG template</comment>
- <comment xml:lang="ar">قالب ODG</comment>
- <comment xml:lang="be@latin">Šablon ODG</comment>
- <comment xml:lang="bg">Шаблон за чертежи — ODG</comment>
- <comment xml:lang="ca">plantilla ODG</comment>
- <comment xml:lang="cs">šablona ODG</comment>
- <comment xml:lang="da">ODG-skabelon</comment>
- <comment xml:lang="de">ODG-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο ODG</comment>
- <comment xml:lang="en_GB">ODG template</comment>
- <comment xml:lang="eo">ODG-ŝablono</comment>
- <comment xml:lang="es">plantilla ODG</comment>
- <comment xml:lang="eu">ODG txantiloia</comment>
- <comment xml:lang="fi">ODG-malli</comment>
- <comment xml:lang="fo">ODG formur</comment>
- <comment xml:lang="fr">modèle ODG</comment>
- <comment xml:lang="ga">teimpléad ODG</comment>
- <comment xml:lang="gl">modelo ODG</comment>
- <comment xml:lang="he">תבנית ODG</comment>
- <comment xml:lang="hr">ODG predložak</comment>
- <comment xml:lang="hu">ODG-sablon</comment>
- <comment xml:lang="ia">Patrono ODG</comment>
- <comment xml:lang="id">Templat ODG</comment>
- <comment xml:lang="it">Modello ODG</comment>
- <comment xml:lang="ja">ODG テンプレート</comment>
- <comment xml:lang="ka">ODG-ის შაბლონი</comment>
- <comment xml:lang="kk">ODG үлгісі</comment>
- <comment xml:lang="ko">ODG 문서 서식</comment>
- <comment xml:lang="lt">ODG šablonas</comment>
- <comment xml:lang="lv">ODG veidne</comment>
- <comment xml:lang="nb">ODG-mal</comment>
- <comment xml:lang="nl">ODG-sjabloon</comment>
- <comment xml:lang="nn">ODG-mal</comment>
- <comment xml:lang="oc">modèl ODG</comment>
- <comment xml:lang="pl">Szablon ODG</comment>
- <comment xml:lang="pt">modelo ODG</comment>
- <comment xml:lang="pt_BR">Modelo ODG</comment>
- <comment xml:lang="ro">Șablon ODG</comment>
- <comment xml:lang="ru">Шаблон ODG</comment>
- <comment xml:lang="sk">Šablóna ODG</comment>
- <comment xml:lang="sl">Predloga dokumenta ODG</comment>
- <comment xml:lang="sq">Model ODG</comment>
- <comment xml:lang="sr">ОДГ шаблон</comment>
- <comment xml:lang="sv">ODG-mall</comment>
- <comment xml:lang="tr">ODG şablonu</comment>
- <comment xml:lang="uk">шаблон ODG</comment>
- <comment xml:lang="vi">Mẫu ODG</comment>
- <comment xml:lang="zh_CN">ODG 模板</comment>
<comment xml:lang="zh_TW">ODG 範本</comment>
+ <comment xml:lang="zh_CN">ODG 模板</comment>
+ <comment xml:lang="vi">Mẫu ODG</comment>
+ <comment xml:lang="uk">шаблон ODG</comment>
+ <comment xml:lang="tr">ODG şablonu</comment>
+ <comment xml:lang="sv">ODG-mall</comment>
+ <comment xml:lang="sr">ОДГ шаблон</comment>
+ <comment xml:lang="sq">gjedhe ODG</comment>
+ <comment xml:lang="sl">Predloga dokumenta ODG</comment>
+ <comment xml:lang="si">ODG අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna ODG</comment>
+ <comment xml:lang="ru">Шаблон ODG</comment>
+ <comment xml:lang="ro">Șablon ODG</comment>
+ <comment xml:lang="pt_BR">Modelo ODG</comment>
+ <comment xml:lang="pt">modelo ODG</comment>
+ <comment xml:lang="pl">Szablon ODG</comment>
+ <comment xml:lang="oc">modèl ODG</comment>
+ <comment xml:lang="nn">ODG-mal</comment>
+ <comment xml:lang="nl">ODG-sjabloon</comment>
+ <comment xml:lang="nb">ODG-mal</comment>
+ <comment xml:lang="lv">ODG veidne</comment>
+ <comment xml:lang="lt">ODG šablonas</comment>
+ <comment xml:lang="ko">ODG 문서 서식</comment>
+ <comment xml:lang="kk">ODG үлгісі</comment>
+ <comment xml:lang="ka">ODG-ის შაბლონი</comment>
+ <comment xml:lang="ja">ODG テンプレート</comment>
+ <comment xml:lang="it">Modello ODG</comment>
+ <comment xml:lang="is">ODG sniðmát</comment>
+ <comment xml:lang="id">Templat ODG</comment>
+ <comment xml:lang="ia">Patrono ODG</comment>
+ <comment xml:lang="hu">ODG-sablon</comment>
+ <comment xml:lang="hr">ODG predložak</comment>
+ <comment xml:lang="he">תבנית ODG</comment>
+ <comment xml:lang="gl">modelo ODG</comment>
+ <comment xml:lang="ga">teimpléad ODG</comment>
+ <comment xml:lang="fur">model ODG</comment>
+ <comment xml:lang="fr">modèle ODG</comment>
+ <comment xml:lang="fo">ODG formur</comment>
+ <comment xml:lang="fi">ODG-malli</comment>
+ <comment xml:lang="eu">ODG txantiloia</comment>
+ <comment xml:lang="es">plantilla ODG</comment>
+ <comment xml:lang="eo">ODG-ŝablono</comment>
+ <comment xml:lang="en_GB">ODG template</comment>
+ <comment xml:lang="el">Πρότυπο ODG</comment>
+ <comment xml:lang="de">ODG-Vorlage</comment>
+ <comment xml:lang="da">ODG-skabelon</comment>
+ <comment xml:lang="cs">šablona ODG</comment>
+ <comment xml:lang="ca">plantilla ODG</comment>
+ <comment xml:lang="bg">Шаблон за чертежи — ODG</comment>
+ <comment xml:lang="be@latin">Šablon ODG</comment>
+ <comment xml:lang="be">шаблон ODG</comment>
+ <comment xml:lang="ar">قالب ODG</comment>
+ <comment xml:lang="af">ODG-sjabloon</comment>
<acronym>ODG</acronym>
<expanded-acronym>OpenDocument Drawing</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="image-x-generic"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.graphics-template" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.graphics-template" offset="38"/>
</match>
</match>
</magic>
@@ -5778,62 +6137,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.presentation">
<comment>ODP presentation</comment>
- <comment xml:lang="ar">عرض تقديمي ODP</comment>
- <comment xml:lang="be@latin">Prezentacyja ODP</comment>
- <comment xml:lang="bg">Презентация — ODP</comment>
- <comment xml:lang="ca">presentació ODP</comment>
- <comment xml:lang="cs">prezentace ODP</comment>
- <comment xml:lang="da">ODP-præsentation</comment>
- <comment xml:lang="de">ODP-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση ODP</comment>
- <comment xml:lang="en_GB">ODP presentation</comment>
- <comment xml:lang="eo">ODP-prezentaĵo</comment>
- <comment xml:lang="es">presentación ODP</comment>
- <comment xml:lang="eu">ODP aurkezpena</comment>
- <comment xml:lang="fi">ODP-esitys</comment>
- <comment xml:lang="fo">ODP framløga</comment>
- <comment xml:lang="fr">présentation ODP</comment>
- <comment xml:lang="ga">láithreoireacht ODP</comment>
- <comment xml:lang="gl">presentación ODP</comment>
- <comment xml:lang="he">מצגת ODP</comment>
- <comment xml:lang="hr">ODP prezentacija</comment>
- <comment xml:lang="hu">ODP-prezentáció</comment>
- <comment xml:lang="ia">Presentation ODP</comment>
- <comment xml:lang="id">Presentasi ODP</comment>
- <comment xml:lang="it">Presentazione ODP</comment>
- <comment xml:lang="ja">ODP プレゼンテーション</comment>
- <comment xml:lang="ka">ODP პრეზენტაცია</comment>
- <comment xml:lang="kk">ODP презентациясы</comment>
- <comment xml:lang="ko">ODP 프레젠테이션</comment>
- <comment xml:lang="lt">ODP pateiktis</comment>
- <comment xml:lang="lv">ODP prezentācija</comment>
- <comment xml:lang="nb">ODP-presentasjon</comment>
- <comment xml:lang="nl">ODP-presentatie</comment>
- <comment xml:lang="nn">ODP-presentasjon</comment>
- <comment xml:lang="oc">presentacion ODP</comment>
- <comment xml:lang="pl">Prezentacja ODP</comment>
- <comment xml:lang="pt">apresentação ODP</comment>
- <comment xml:lang="pt_BR">Apresentação ODP</comment>
- <comment xml:lang="ro">Prezentare ODP</comment>
- <comment xml:lang="ru">Презентация ODP</comment>
- <comment xml:lang="sk">Prezentácia ODP</comment>
- <comment xml:lang="sl">Predstavitev ODP</comment>
- <comment xml:lang="sq">Prezantim ODP</comment>
- <comment xml:lang="sr">ОДП презентација</comment>
- <comment xml:lang="sv">ODP-presentation</comment>
- <comment xml:lang="tr">ODP sunumu</comment>
- <comment xml:lang="uk">презентація ODP</comment>
- <comment xml:lang="vi">Trình diễn ODM</comment>
- <comment xml:lang="zh_CN">ODP 演示文稿</comment>
<comment xml:lang="zh_TW">ODP 簡報</comment>
+ <comment xml:lang="zh_CN">ODP 演示文稿</comment>
+ <comment xml:lang="vi">Trình diễn ODM</comment>
+ <comment xml:lang="uk">презентація ODP</comment>
+ <comment xml:lang="tr">ODP sunumu</comment>
+ <comment xml:lang="sv">ODP-presentation</comment>
+ <comment xml:lang="sr">ОДП презентација</comment>
+ <comment xml:lang="sq">paraqitje ODP</comment>
+ <comment xml:lang="sl">Predstavitev ODP</comment>
+ <comment xml:lang="si">ODP ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia ODP</comment>
+ <comment xml:lang="ru">Презентация ODP</comment>
+ <comment xml:lang="ro">Prezentare ODP</comment>
+ <comment xml:lang="pt_BR">Apresentação ODP</comment>
+ <comment xml:lang="pt">apresentação ODP</comment>
+ <comment xml:lang="pl">Prezentacja ODP</comment>
+ <comment xml:lang="oc">presentacion ODP</comment>
+ <comment xml:lang="nn">ODP-presentasjon</comment>
+ <comment xml:lang="nl">ODP-presentatie</comment>
+ <comment xml:lang="nb">ODP-presentasjon</comment>
+ <comment xml:lang="lv">ODP prezentācija</comment>
+ <comment xml:lang="lt">ODP pateiktis</comment>
+ <comment xml:lang="ko">ODP 프레젠테이션</comment>
+ <comment xml:lang="kk">ODP презентациясы</comment>
+ <comment xml:lang="ka">ODP პრეზენტაცია</comment>
+ <comment xml:lang="ja">ODP プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione ODP</comment>
+ <comment xml:lang="is">ODP kynning</comment>
+ <comment xml:lang="id">Presentasi ODP</comment>
+ <comment xml:lang="ia">Presentation ODP</comment>
+ <comment xml:lang="hu">ODP-prezentáció</comment>
+ <comment xml:lang="hr">ODP prezentacija</comment>
+ <comment xml:lang="he">מצגת ODP</comment>
+ <comment xml:lang="gl">presentación ODP</comment>
+ <comment xml:lang="ga">láithreoireacht ODP</comment>
+ <comment xml:lang="fur">presentazion ODP</comment>
+ <comment xml:lang="fr">présentation ODP</comment>
+ <comment xml:lang="fo">ODP framløga</comment>
+ <comment xml:lang="fi">ODP-esitys</comment>
+ <comment xml:lang="eu">ODP aurkezpena</comment>
+ <comment xml:lang="es">presentación ODP</comment>
+ <comment xml:lang="eo">ODP-prezentaĵo</comment>
+ <comment xml:lang="en_GB">ODP presentation</comment>
+ <comment xml:lang="el">Παρουσίαση ODP</comment>
+ <comment xml:lang="de">ODP-Präsentation</comment>
+ <comment xml:lang="da">ODP-præsentation</comment>
+ <comment xml:lang="cs">prezentace ODP</comment>
+ <comment xml:lang="ca">presentació ODP</comment>
+ <comment xml:lang="bg">Презентация — ODP</comment>
+ <comment xml:lang="be@latin">Prezentacyja ODP</comment>
+ <comment xml:lang="be">прэзентацыя ODP</comment>
+ <comment xml:lang="ar">عرض تقديمي ODP</comment>
+ <comment xml:lang="af">ODP-voorlegging</comment>
<acronym>ODP</acronym>
<expanded-acronym>OpenDocument Presentation</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.presentation" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.presentation" offset="38"/>
</match>
</match>
</magic>
@@ -5841,48 +6205,54 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.presentation-flat-xml">
<comment>ODP presentation (Flat XML)</comment>
- <comment xml:lang="ar">عرض ODP (Flat XML)</comment>
- <comment xml:lang="bg">Презентация — ODP (само XML)</comment>
- <comment xml:lang="ca">presentació ODP (XML pla)</comment>
- <comment xml:lang="cs">prezentace ODP (Flat XML)</comment>
- <comment xml:lang="da">ODP-præsentation (flad XML)</comment>
- <comment xml:lang="de">ODP-Präsentation (Unkomprimiertes XML)</comment>
- <comment xml:lang="el">Παρουσίαση ODP (Flat XML)</comment>
- <comment xml:lang="en_GB">ODP presentation (Flat XML)</comment>
- <comment xml:lang="es">presentación ODP (XML plano)</comment>
- <comment xml:lang="eu">ODP aurkezpena (XML soila)</comment>
- <comment xml:lang="fi">ODP-esitys (Flat XML)</comment>
- <comment xml:lang="fo">ODP framløga (Flat XML)</comment>
- <comment xml:lang="fr">présentation ODP (XML plat)</comment>
- <comment xml:lang="ga">láithreoireacht ODP (XML cothrom)</comment>
- <comment xml:lang="gl">presentación ODP (XML plano)</comment>
- <comment xml:lang="he">מצגת ODP‏ (Flat XML)</comment>
- <comment xml:lang="hr">ODP prezentacija (Flat XML)</comment>
- <comment xml:lang="hu">ODP-prezentáció (egyszerű XML)</comment>
- <comment xml:lang="ia">Presentation ODP (XML platte)</comment>
- <comment xml:lang="id">Presentasi ODP (Flat XML)</comment>
- <comment xml:lang="it">Presentazione ODP (XML semplice)</comment>
- <comment xml:lang="ja">ODP プレゼンテーション (Flat XML)</comment>
- <comment xml:lang="ka">ODP პრეზენტაცია (Flat XML)</comment>
- <comment xml:lang="kk">ODP презентациясы (Тек XML)</comment>
- <comment xml:lang="ko">ODP 프레젠테이션(단일 XML)</comment>
- <comment xml:lang="lt">ODP pateiktis (Flat XML)</comment>
- <comment xml:lang="lv">ODP prezentācija (plakans XML)</comment>
- <comment xml:lang="nl">ODP presentatie (Flat XML)</comment>
- <comment xml:lang="oc">presentacion ODP (XML plat)</comment>
- <comment xml:lang="pl">Prezentacja ODP (prosty XML)</comment>
- <comment xml:lang="pt">apresentação ODP (XML plano)</comment>
- <comment xml:lang="pt_BR">Apresentação ODP (Flat XML)</comment>
- <comment xml:lang="ro">Prezentare ODP (XML simplu)</comment>
- <comment xml:lang="ru">Презентация ODP (простой XML)</comment>
- <comment xml:lang="sk">Prezentácia ODP (čisté XML)</comment>
- <comment xml:lang="sl">Predstavitev ODP (nepovezan XML)</comment>
- <comment xml:lang="sr">ОДП презентација (Обични ИксМЛ)</comment>
- <comment xml:lang="sv">ODP-presentation (platt XML)</comment>
- <comment xml:lang="tr">ODP sunumu (Düz XML)</comment>
- <comment xml:lang="uk">презентація ODP (Flat XML)</comment>
- <comment xml:lang="zh_CN">ODP 演示文稿(Flat XML)</comment>
<comment xml:lang="zh_TW">ODP 範本 (Flat XML)</comment>
+ <comment xml:lang="zh_CN">ODP 演示文稿(Flat XML)</comment>
+ <comment xml:lang="uk">презентація ODP (Flat XML)</comment>
+ <comment xml:lang="tr">ODP sunumu (Düz XML)</comment>
+ <comment xml:lang="sv">ODP-presentation (platt XML)</comment>
+ <comment xml:lang="sr">ОДП презентација (Обични ИксМЛ)</comment>
+ <comment xml:lang="sq">paraqitje ODF (Flat XML)</comment>
+ <comment xml:lang="sl">Predstavitev ODP (nepovezan XML)</comment>
+ <comment xml:lang="si">ODP ඉදිරිපත් කිරීම (පැතලි XML)</comment>
+ <comment xml:lang="sk">Prezentácia ODP (čisté XML)</comment>
+ <comment xml:lang="ru">Презентация ODP (простой XML)</comment>
+ <comment xml:lang="ro">Prezentare ODP (XML simplu)</comment>
+ <comment xml:lang="pt_BR">Apresentação ODP (Flat XML)</comment>
+ <comment xml:lang="pt">apresentação ODP (XML plano)</comment>
+ <comment xml:lang="pl">Prezentacja ODP (prosty XML)</comment>
+ <comment xml:lang="oc">presentacion ODP (XML plat)</comment>
+ <comment xml:lang="nl">ODP presentatie (Flat XML)</comment>
+ <comment xml:lang="lv">ODP prezentācija (plakans XML)</comment>
+ <comment xml:lang="lt">ODP pateiktis (Flat XML)</comment>
+ <comment xml:lang="ko">ODP 프레젠테이션(단일 XML)</comment>
+ <comment xml:lang="kk">ODP презентациясы (Тек XML)</comment>
+ <comment xml:lang="ka">ODP პრეზენტაცია (Flat XML)</comment>
+ <comment xml:lang="ja">ODP プレゼンテーション (Flat XML)</comment>
+ <comment xml:lang="it">Presentazione ODP (XML semplice)</comment>
+ <comment xml:lang="is">ODP glærukynning (flatt XML)</comment>
+ <comment xml:lang="id">Presentasi ODP (Flat XML)</comment>
+ <comment xml:lang="ia">Presentation ODP (XML platte)</comment>
+ <comment xml:lang="hu">ODP-prezentáció (egyszerű XML)</comment>
+ <comment xml:lang="hr">ODP prezentacija (Flat XML)</comment>
+ <comment xml:lang="he">מצגת ODP‏ (Flat XML)</comment>
+ <comment xml:lang="gl">presentación ODP (XML plano)</comment>
+ <comment xml:lang="ga">láithreoireacht ODP (XML cothrom)</comment>
+ <comment xml:lang="fur">presentazion ODP (XML sempliç)</comment>
+ <comment xml:lang="fr">présentation ODP (XML plat)</comment>
+ <comment xml:lang="fo">ODP framløga (Flat XML)</comment>
+ <comment xml:lang="fi">ODP-esitys (Flat XML)</comment>
+ <comment xml:lang="eu">ODP aurkezpena (XML soila)</comment>
+ <comment xml:lang="es">presentación ODP (XML plano)</comment>
+ <comment xml:lang="en_GB">ODP presentation (Flat XML)</comment>
+ <comment xml:lang="el">Παρουσίαση ODP (Flat XML)</comment>
+ <comment xml:lang="de">ODP-Präsentation (einfaches XML)</comment>
+ <comment xml:lang="da">ODP-præsentation (flad XML)</comment>
+ <comment xml:lang="cs">prezentace ODP (Flat XML)</comment>
+ <comment xml:lang="ca">presentació ODP (XML pla)</comment>
+ <comment xml:lang="bg">Презентация — ODP (само XML)</comment>
+ <comment xml:lang="be">прэзентацыя ODP (плоскі XML)</comment>
+ <comment xml:lang="ar">عرض ODP (Flat XML)</comment>
+ <comment xml:lang="af">ODP-voorlegging (plat XML)</comment>
<acronym>FODP</acronym>
<expanded-acronym>OpenDocument Presentation (Flat XML)</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -5891,62 +6261,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.presentation-template">
<comment>ODP template</comment>
- <comment xml:lang="ar">قالب ODP</comment>
- <comment xml:lang="be@latin">Šablon ODP</comment>
- <comment xml:lang="bg">Шаблон за презентации — ODP</comment>
- <comment xml:lang="ca">plantilla ODP</comment>
- <comment xml:lang="cs">šablona ODP</comment>
- <comment xml:lang="da">ODP-skabelon</comment>
- <comment xml:lang="de">ODP-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο ODP</comment>
- <comment xml:lang="en_GB">ODP template</comment>
- <comment xml:lang="eo">ODP-ŝablono</comment>
- <comment xml:lang="es">plantilla ODP</comment>
- <comment xml:lang="eu">ODP txantiloia</comment>
- <comment xml:lang="fi">ODP-malli</comment>
- <comment xml:lang="fo">ODP formur</comment>
- <comment xml:lang="fr">modèle ODP</comment>
- <comment xml:lang="ga">teimpléad ODP</comment>
- <comment xml:lang="gl">modelo ODP</comment>
- <comment xml:lang="he">תבנית ODP</comment>
- <comment xml:lang="hr">ODP predložak</comment>
- <comment xml:lang="hu">ODP-sablon</comment>
- <comment xml:lang="ia">Patrono ODP</comment>
- <comment xml:lang="id">Templat ODP</comment>
- <comment xml:lang="it">Modello ODP</comment>
- <comment xml:lang="ja">ODP テンプレート</comment>
- <comment xml:lang="ka">ODP შაბლონი</comment>
- <comment xml:lang="kk">ODP үлгісі</comment>
- <comment xml:lang="ko">ODP 문서 서식</comment>
- <comment xml:lang="lt">ODP šablonas</comment>
- <comment xml:lang="lv">ODP veidne</comment>
- <comment xml:lang="nb">ODP-mal</comment>
- <comment xml:lang="nl">ODP-sjabloon</comment>
- <comment xml:lang="nn">ODP-mal</comment>
- <comment xml:lang="oc">modèl ODP</comment>
- <comment xml:lang="pl">Szablon ODP</comment>
- <comment xml:lang="pt">modelo ODP</comment>
- <comment xml:lang="pt_BR">Modelo ODP</comment>
- <comment xml:lang="ro">Șablon ODP</comment>
- <comment xml:lang="ru">Шаблон ODP</comment>
- <comment xml:lang="sk">Šablóna ODP</comment>
- <comment xml:lang="sl">Predloga dokumenta ODP</comment>
- <comment xml:lang="sq">Model ODP</comment>
- <comment xml:lang="sr">ОДП шаблон</comment>
- <comment xml:lang="sv">ODP-mall</comment>
- <comment xml:lang="tr">ODP şablonu</comment>
- <comment xml:lang="uk">шаблон ODP</comment>
- <comment xml:lang="vi">Mẫu ODP</comment>
- <comment xml:lang="zh_CN">ODP 模板</comment>
<comment xml:lang="zh_TW">ODP 範本</comment>
+ <comment xml:lang="zh_CN">ODP 模板</comment>
+ <comment xml:lang="vi">Mẫu ODP</comment>
+ <comment xml:lang="uk">шаблон ODP</comment>
+ <comment xml:lang="tr">ODP şablonu</comment>
+ <comment xml:lang="sv">ODP-mall</comment>
+ <comment xml:lang="sr">ОДП шаблон</comment>
+ <comment xml:lang="sq">gjedhe ODP</comment>
+ <comment xml:lang="sl">Predloga dokumenta ODP</comment>
+ <comment xml:lang="si">ODP අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna ODP</comment>
+ <comment xml:lang="ru">Шаблон ODP</comment>
+ <comment xml:lang="ro">Șablon ODP</comment>
+ <comment xml:lang="pt_BR">Modelo ODP</comment>
+ <comment xml:lang="pt">modelo ODP</comment>
+ <comment xml:lang="pl">Szablon ODP</comment>
+ <comment xml:lang="oc">modèl ODP</comment>
+ <comment xml:lang="nn">ODP-mal</comment>
+ <comment xml:lang="nl">ODP-sjabloon</comment>
+ <comment xml:lang="nb">ODP-mal</comment>
+ <comment xml:lang="lv">ODP veidne</comment>
+ <comment xml:lang="lt">ODP šablonas</comment>
+ <comment xml:lang="ko">ODP 문서 서식</comment>
+ <comment xml:lang="kk">ODP үлгісі</comment>
+ <comment xml:lang="ka">ODP შაბლონი</comment>
+ <comment xml:lang="ja">ODP テンプレート</comment>
+ <comment xml:lang="it">Modello ODP</comment>
+ <comment xml:lang="is">ODP sniðmát</comment>
+ <comment xml:lang="id">Templat ODP</comment>
+ <comment xml:lang="ia">Patrono ODP</comment>
+ <comment xml:lang="hu">ODP-sablon</comment>
+ <comment xml:lang="hr">ODP predložak</comment>
+ <comment xml:lang="he">תבנית ODP</comment>
+ <comment xml:lang="gl">modelo ODP</comment>
+ <comment xml:lang="ga">teimpléad ODP</comment>
+ <comment xml:lang="fur">model ODP</comment>
+ <comment xml:lang="fr">modèle ODP</comment>
+ <comment xml:lang="fo">ODP formur</comment>
+ <comment xml:lang="fi">ODP-malli</comment>
+ <comment xml:lang="eu">ODP txantiloia</comment>
+ <comment xml:lang="es">plantilla ODP</comment>
+ <comment xml:lang="eo">ODP-ŝablono</comment>
+ <comment xml:lang="en_GB">ODP template</comment>
+ <comment xml:lang="el">Πρότυπο ODP</comment>
+ <comment xml:lang="de">ODP-Vorlage</comment>
+ <comment xml:lang="da">ODP-skabelon</comment>
+ <comment xml:lang="cs">šablona ODP</comment>
+ <comment xml:lang="ca">plantilla ODP</comment>
+ <comment xml:lang="bg">Шаблон за презентации — ODP</comment>
+ <comment xml:lang="be@latin">Šablon ODP</comment>
+ <comment xml:lang="be">шаблон ODP</comment>
+ <comment xml:lang="ar">قالب ODP</comment>
+ <comment xml:lang="af">ODP-sjabloon</comment>
<acronym>ODP</acronym>
<expanded-acronym>OpenDocument Presentation</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.presentation-template" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.presentation-template" offset="38"/>
</match>
</match>
</magic>
@@ -5954,62 +6329,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.spreadsheet">
<comment>ODS spreadsheet</comment>
- <comment xml:lang="ar">جدول ODS</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš ODS</comment>
- <comment xml:lang="bg">Таблица — ODS</comment>
- <comment xml:lang="ca">full de càlcul ODS</comment>
- <comment xml:lang="cs">sešit ODS</comment>
- <comment xml:lang="da">ODS-regneark</comment>
- <comment xml:lang="de">ODS-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο ODS</comment>
- <comment xml:lang="en_GB">ODS spreadsheet</comment>
- <comment xml:lang="eo">ODS-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo ODS</comment>
- <comment xml:lang="eu">ODS kalkulu-orria</comment>
- <comment xml:lang="fi">ODS-taulukko</comment>
- <comment xml:lang="fo">ODS rokniark</comment>
- <comment xml:lang="fr">feuille de calcul ODS</comment>
- <comment xml:lang="ga">scarbhileog ODS</comment>
- <comment xml:lang="gl">folla de cálculo ODS</comment>
- <comment xml:lang="he">גליון נתונים ODS</comment>
- <comment xml:lang="hr">ODS proračunska tablica</comment>
- <comment xml:lang="hu">ODS-táblázat</comment>
- <comment xml:lang="ia">Folio de calculo ODS</comment>
- <comment xml:lang="id">Lembar sebar ODS</comment>
- <comment xml:lang="it">Foglio di calcolo ODS</comment>
- <comment xml:lang="ja">ODS スプレッドシート</comment>
- <comment xml:lang="ka">ODS ცხრილი</comment>
- <comment xml:lang="kk">ODS электрондық кестесі</comment>
- <comment xml:lang="ko">ODS 스프레드시트</comment>
- <comment xml:lang="lt">ODS skaičialentė</comment>
- <comment xml:lang="lv">ODS izklājlapa</comment>
- <comment xml:lang="nb">ODS-regneark</comment>
- <comment xml:lang="nl">ODS-rekenblad</comment>
- <comment xml:lang="nn">ODS-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul ODS</comment>
- <comment xml:lang="pl">Arkusz ODS</comment>
- <comment xml:lang="pt">folha de cálculo ODS</comment>
- <comment xml:lang="pt_BR">Planilha ODS</comment>
- <comment xml:lang="ro">Foaie de calcul ODS</comment>
- <comment xml:lang="ru">Электронная таблица ODS</comment>
- <comment xml:lang="sk">Zošit ODS</comment>
- <comment xml:lang="sl">Preglednica ODS</comment>
- <comment xml:lang="sq">Fletë llogaritjesh ODS</comment>
- <comment xml:lang="sr">ОДС табела</comment>
- <comment xml:lang="sv">ODS-kalkylblad</comment>
- <comment xml:lang="tr">ODS çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця ODS</comment>
- <comment xml:lang="vi">Bảng tính ODS</comment>
- <comment xml:lang="zh_CN">ODS 电子表格</comment>
<comment xml:lang="zh_TW">ODS 試算表</comment>
+ <comment xml:lang="zh_CN">ODS 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính ODS</comment>
+ <comment xml:lang="uk">електронна таблиця ODS</comment>
+ <comment xml:lang="tr">ODS hesap çizelgesi</comment>
+ <comment xml:lang="sv">ODS-kalkylblad</comment>
+ <comment xml:lang="sr">ОДС табела</comment>
+ <comment xml:lang="sq">fletëllogaritje ODS</comment>
+ <comment xml:lang="sl">Preglednica ODS</comment>
+ <comment xml:lang="si">ODS පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit ODS</comment>
+ <comment xml:lang="ru">Электронная таблица ODS</comment>
+ <comment xml:lang="ro">Foaie de calcul ODS</comment>
+ <comment xml:lang="pt_BR">Planilha ODS</comment>
+ <comment xml:lang="pt">folha de cálculo ODS</comment>
+ <comment xml:lang="pl">Arkusz ODS</comment>
+ <comment xml:lang="oc">fuèlh de calcul ODS</comment>
+ <comment xml:lang="nn">ODS-rekneark</comment>
+ <comment xml:lang="nl">ODS-rekenblad</comment>
+ <comment xml:lang="nb">ODS-regneark</comment>
+ <comment xml:lang="lv">ODS izklājlapa</comment>
+ <comment xml:lang="lt">ODS skaičialentė</comment>
+ <comment xml:lang="ko">ODS 스프레드시트</comment>
+ <comment xml:lang="kk">ODS электрондық кестесі</comment>
+ <comment xml:lang="ka">ODS ცხრილი</comment>
+ <comment xml:lang="ja">ODS スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo ODS</comment>
+ <comment xml:lang="is">ODS töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar ODS</comment>
+ <comment xml:lang="ia">Folio de calculo ODS</comment>
+ <comment xml:lang="hu">ODS-táblázat</comment>
+ <comment xml:lang="hr">ODS proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים ODS</comment>
+ <comment xml:lang="gl">folla de cálculo ODS</comment>
+ <comment xml:lang="ga">scarbhileog ODS</comment>
+ <comment xml:lang="fur">sfuei di calcul ODS</comment>
+ <comment xml:lang="fr">feuille de calcul ODS</comment>
+ <comment xml:lang="fo">ODS rokniark</comment>
+ <comment xml:lang="fi">ODS-taulukko</comment>
+ <comment xml:lang="eu">ODS kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo ODS</comment>
+ <comment xml:lang="eo">ODS-kalkultabelo</comment>
+ <comment xml:lang="en_GB">ODS spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο ODS</comment>
+ <comment xml:lang="de">ODS-Tabelle</comment>
+ <comment xml:lang="da">ODS-regneark</comment>
+ <comment xml:lang="cs">sešit ODS</comment>
+ <comment xml:lang="ca">full de càlcul ODS</comment>
+ <comment xml:lang="bg">Таблица — ODS</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš ODS</comment>
+ <comment xml:lang="be">электронная табліца ODS</comment>
+ <comment xml:lang="ar">جدول ODS</comment>
+ <comment xml:lang="af">ODS-sigblad</comment>
<acronym>ODS</acronym>
<expanded-acronym>OpenDocument Spreadsheet</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.spreadsheet" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.spreadsheet" offset="38"/>
</match>
</match>
</magic>
@@ -6017,48 +6397,54 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.spreadsheet-flat-xml">
<comment>ODS spreadsheet (Flat XML)</comment>
- <comment xml:lang="ar">جدول ODS (Flat XML)</comment>
- <comment xml:lang="bg">Таблица — ODS (само XML)</comment>
- <comment xml:lang="ca">full de càlcul ODS (XML pla)</comment>
- <comment xml:lang="cs">sešit ODS (Flat XML)</comment>
- <comment xml:lang="da">ODS-regneark (flad XML)</comment>
- <comment xml:lang="de">ODS-Tabelle (Unkomprimiertes XML)</comment>
- <comment xml:lang="el">Λογιστικό φύλλο ODS (Flat XML)</comment>
- <comment xml:lang="en_GB">ODS spreadsheet (Flat XML)</comment>
- <comment xml:lang="es">hoja de cálculo ODS (XML plano)</comment>
- <comment xml:lang="eu">ODS kalkulu-orria (XML soila)</comment>
- <comment xml:lang="fi">ODS-laskentataulukko (Flat XML)</comment>
- <comment xml:lang="fo">ODS rokniark (Flat XML)</comment>
- <comment xml:lang="fr">feuille de calcul ODS (XML plat)</comment>
- <comment xml:lang="ga">scarbhileog ODS (XML cothrom)</comment>
- <comment xml:lang="gl">folla de cálculo ODS (XML plano)</comment>
- <comment xml:lang="he">גליון נתונים ODS‏ (XML פשוט)</comment>
- <comment xml:lang="hr">ODS proračunska tablica (Flat XML)</comment>
- <comment xml:lang="hu">ODS-táblázat (egyszerű XML)</comment>
- <comment xml:lang="ia">Folio de calculo ODS (XML platte)</comment>
- <comment xml:lang="id">Lembar sebar ODS (Flat XML)</comment>
- <comment xml:lang="it">Foglio di calcolo ODS (XML semplice)</comment>
- <comment xml:lang="ja">ODS スプレッドシート (Flat XML)</comment>
- <comment xml:lang="ka">ODS ცხრილი (Flat XML)</comment>
- <comment xml:lang="kk">ODS электрондық кестесі (Тек XML)</comment>
- <comment xml:lang="ko">ODS 스프레드시트(단일 XML)</comment>
- <comment xml:lang="lt">ODS skaičialentė (Flat XML)</comment>
- <comment xml:lang="lv">ODS izklājlapa (plakans XML)</comment>
- <comment xml:lang="nl">ODS spreadsheet (Flat XML)</comment>
- <comment xml:lang="oc">fuèlh de calcul ODS (XML plat)</comment>
- <comment xml:lang="pl">Arkusz ODS (prosty XML)</comment>
- <comment xml:lang="pt">folha de cálculo ODS (XML plano)</comment>
- <comment xml:lang="pt_BR">Planilha ODS (Flat XML)</comment>
- <comment xml:lang="ro">Foaie de calcul ODS (XML simplu)</comment>
- <comment xml:lang="ru">Электронная таблица ODS (простой XML)</comment>
- <comment xml:lang="sk">Zošit ODS (čisté XML)</comment>
- <comment xml:lang="sl">Preglednica ODS (nepovezan XML)</comment>
- <comment xml:lang="sr">ОДС табела (обични ИксМЛ)</comment>
- <comment xml:lang="sv">ODS-kalkylblad (platt XML)</comment>
- <comment xml:lang="tr">ODS sunumu (Düz XML)</comment>
- <comment xml:lang="uk">ел. таблиця ODS (Flat XML)</comment>
- <comment xml:lang="zh_CN">ODS 电子表格 (Flat XML)</comment>
<comment xml:lang="zh_TW">ODS 試算表 (Flat XML)</comment>
+ <comment xml:lang="zh_CN">ODS 电子表格 (Flat XML)</comment>
+ <comment xml:lang="uk">електронна таблиця ODS (Flat XML)</comment>
+ <comment xml:lang="tr">ODS hesap çizelgesi (Düz XML)</comment>
+ <comment xml:lang="sv">ODS-kalkylblad (platt XML)</comment>
+ <comment xml:lang="sr">ОДС табела (обични ИксМЛ)</comment>
+ <comment xml:lang="sq">fletëllogaritje ODF (Flat XML)</comment>
+ <comment xml:lang="sl">Preglednica ODS (nepovezan XML)</comment>
+ <comment xml:lang="si">ODS පැතුරුම්පත (පැතලි XML)</comment>
+ <comment xml:lang="sk">Zošit ODS (čisté XML)</comment>
+ <comment xml:lang="ru">Электронная таблица ODS (простой XML)</comment>
+ <comment xml:lang="ro">Foaie de calcul ODS (XML simplu)</comment>
+ <comment xml:lang="pt_BR">Planilha ODS (Flat XML)</comment>
+ <comment xml:lang="pt">folha de cálculo ODS (XML plano)</comment>
+ <comment xml:lang="pl">Arkusz ODS (prosty XML)</comment>
+ <comment xml:lang="oc">fuèlh de calcul ODS (XML plat)</comment>
+ <comment xml:lang="nl">ODS spreadsheet (Flat XML)</comment>
+ <comment xml:lang="lv">ODS izklājlapa (plakans XML)</comment>
+ <comment xml:lang="lt">ODS skaičialentė (Flat XML)</comment>
+ <comment xml:lang="ko">ODS 스프레드시트(단일 XML)</comment>
+ <comment xml:lang="kk">ODS электрондық кестесі (Тек XML)</comment>
+ <comment xml:lang="ka">ODS ცხრილი (Flat XML)</comment>
+ <comment xml:lang="ja">ODS スプレッドシート (Flat XML)</comment>
+ <comment xml:lang="it">Foglio di calcolo ODS (XML semplice)</comment>
+ <comment xml:lang="is">ODS töflureikniskjal (flatt XML)</comment>
+ <comment xml:lang="id">Lembar sebar ODS (Flat XML)</comment>
+ <comment xml:lang="ia">Folio de calculo ODS (XML platte)</comment>
+ <comment xml:lang="hu">ODS-táblázat (egyszerű XML)</comment>
+ <comment xml:lang="hr">ODS proračunska tablica (Flat XML)</comment>
+ <comment xml:lang="he">גיליון נתונים ODS‏ (XML פשוט)</comment>
+ <comment xml:lang="gl">folla de cálculo ODS (XML plano)</comment>
+ <comment xml:lang="ga">scarbhileog ODS (XML cothrom)</comment>
+ <comment xml:lang="fur">sfuei di calcul ODS (XML sempliç)</comment>
+ <comment xml:lang="fr">feuille de calcul ODS (XML plat)</comment>
+ <comment xml:lang="fo">ODS rokniark (Flat XML)</comment>
+ <comment xml:lang="fi">ODS-laskentataulukko (Flat XML)</comment>
+ <comment xml:lang="eu">ODS kalkulu-orria (XML soila)</comment>
+ <comment xml:lang="es">hoja de cálculo ODS (XML plano)</comment>
+ <comment xml:lang="en_GB">ODS spreadsheet (Flat XML)</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο ODS (Flat XML)</comment>
+ <comment xml:lang="de">ODS-Tabelle (einfaches XML)</comment>
+ <comment xml:lang="da">ODS-regneark (flad XML)</comment>
+ <comment xml:lang="cs">sešit ODS (Flat XML)</comment>
+ <comment xml:lang="ca">full de càlcul ODS (XML pla)</comment>
+ <comment xml:lang="bg">Таблица — ODS (само XML)</comment>
+ <comment xml:lang="be">электронная табліца ODS (плоскі XML)</comment>
+ <comment xml:lang="ar">جدول ODS (Flat XML)</comment>
+ <comment xml:lang="af">ODS-sigblad (plat XML)</comment>
<acronym>FODS</acronym>
<expanded-acronym>OpenDocument Spreadsheet (Flat XML)</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -6067,62 +6453,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.spreadsheet-template">
<comment>ODS template</comment>
- <comment xml:lang="ar">قالب ODS</comment>
- <comment xml:lang="be@latin">Šablon ODS</comment>
- <comment xml:lang="bg">Шаблон за таблици — ODS</comment>
- <comment xml:lang="ca">plantilla ODS</comment>
- <comment xml:lang="cs">šablona ODS</comment>
- <comment xml:lang="da">ODS-skabelon</comment>
- <comment xml:lang="de">ODS-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο ODS</comment>
- <comment xml:lang="en_GB">ODS template</comment>
- <comment xml:lang="eo">ODS-ŝablono</comment>
- <comment xml:lang="es">plantilla ODS</comment>
- <comment xml:lang="eu">ODS txantiloia</comment>
- <comment xml:lang="fi">ODS-malli</comment>
- <comment xml:lang="fo">ODS formur</comment>
- <comment xml:lang="fr">modèle ODS</comment>
- <comment xml:lang="ga">teimpléad ODS</comment>
- <comment xml:lang="gl">modelo ODS</comment>
- <comment xml:lang="he">תבנית ODS</comment>
- <comment xml:lang="hr">ODS predložak</comment>
- <comment xml:lang="hu">ODS-sablon</comment>
- <comment xml:lang="ia">Patrono ODS</comment>
- <comment xml:lang="id">Templat ODS</comment>
- <comment xml:lang="it">Modello ODS</comment>
- <comment xml:lang="ja">ODS テンプレート</comment>
- <comment xml:lang="ka">ODS-ის შაბლონი</comment>
- <comment xml:lang="kk">ODS үлгісі</comment>
- <comment xml:lang="ko">ODS 문서 서식</comment>
- <comment xml:lang="lt">ODS šablonas</comment>
- <comment xml:lang="lv">ODS veidne</comment>
- <comment xml:lang="nb">ODS-mal</comment>
- <comment xml:lang="nl">ODS-sjabloon</comment>
- <comment xml:lang="nn">ODS-mal</comment>
- <comment xml:lang="oc">modèl ODS</comment>
- <comment xml:lang="pl">Szablon ODS</comment>
- <comment xml:lang="pt">modelo ODS</comment>
- <comment xml:lang="pt_BR">Modelo ODS</comment>
- <comment xml:lang="ro">Șablon ODS</comment>
- <comment xml:lang="ru">Шаблон ODS</comment>
- <comment xml:lang="sk">Šablóna ODS</comment>
- <comment xml:lang="sl">Predloga dokumenta ODS</comment>
- <comment xml:lang="sq">Model ODS</comment>
- <comment xml:lang="sr">ОДС шаблон</comment>
- <comment xml:lang="sv">ODS-mall</comment>
- <comment xml:lang="tr">ODS şablonu</comment>
- <comment xml:lang="uk">шаблон ODS</comment>
- <comment xml:lang="vi">Mẫu ODS</comment>
- <comment xml:lang="zh_CN">ODS 模板</comment>
<comment xml:lang="zh_TW">ODS 範本</comment>
+ <comment xml:lang="zh_CN">ODS 模板</comment>
+ <comment xml:lang="vi">Mẫu ODS</comment>
+ <comment xml:lang="uk">шаблон ODS</comment>
+ <comment xml:lang="tr">ODS şablonu</comment>
+ <comment xml:lang="sv">ODS-mall</comment>
+ <comment xml:lang="sr">ОДС шаблон</comment>
+ <comment xml:lang="sq">gjedhe ODS</comment>
+ <comment xml:lang="sl">Predloga dokumenta ODS</comment>
+ <comment xml:lang="si">ODS ආකෘතිය</comment>
+ <comment xml:lang="sk">Šablóna ODS</comment>
+ <comment xml:lang="ru">Шаблон ODS</comment>
+ <comment xml:lang="ro">Șablon ODS</comment>
+ <comment xml:lang="pt_BR">Modelo ODS</comment>
+ <comment xml:lang="pt">modelo ODS</comment>
+ <comment xml:lang="pl">Szablon ODS</comment>
+ <comment xml:lang="oc">modèl ODS</comment>
+ <comment xml:lang="nn">ODS-mal</comment>
+ <comment xml:lang="nl">ODS-sjabloon</comment>
+ <comment xml:lang="nb">ODS-mal</comment>
+ <comment xml:lang="lv">ODS veidne</comment>
+ <comment xml:lang="lt">ODS šablonas</comment>
+ <comment xml:lang="ko">ODS 문서 서식</comment>
+ <comment xml:lang="kk">ODS үлгісі</comment>
+ <comment xml:lang="ka">ODS-ის შაბლონი</comment>
+ <comment xml:lang="ja">ODS テンプレート</comment>
+ <comment xml:lang="it">Modello ODS</comment>
+ <comment xml:lang="is">ODS sniðmát</comment>
+ <comment xml:lang="id">Templat ODS</comment>
+ <comment xml:lang="ia">Patrono ODS</comment>
+ <comment xml:lang="hu">ODS-sablon</comment>
+ <comment xml:lang="hr">ODS predložak</comment>
+ <comment xml:lang="he">תבנית ODS</comment>
+ <comment xml:lang="gl">modelo ODS</comment>
+ <comment xml:lang="ga">teimpléad ODS</comment>
+ <comment xml:lang="fur">model ODS</comment>
+ <comment xml:lang="fr">modèle ODS</comment>
+ <comment xml:lang="fo">ODS formur</comment>
+ <comment xml:lang="fi">ODS-malli</comment>
+ <comment xml:lang="eu">ODS txantiloia</comment>
+ <comment xml:lang="es">plantilla ODS</comment>
+ <comment xml:lang="eo">ODS-ŝablono</comment>
+ <comment xml:lang="en_GB">ODS template</comment>
+ <comment xml:lang="el">Πρότυπο ODS</comment>
+ <comment xml:lang="de">ODS-Vorlage</comment>
+ <comment xml:lang="da">ODS-skabelon</comment>
+ <comment xml:lang="cs">šablona ODS</comment>
+ <comment xml:lang="ca">plantilla ODS</comment>
+ <comment xml:lang="bg">Шаблон за таблици — ODS</comment>
+ <comment xml:lang="be@latin">Šablon ODS</comment>
+ <comment xml:lang="be">шаблон ODS</comment>
+ <comment xml:lang="ar">قالب ODS</comment>
+ <comment xml:lang="af">ODS-sjabloon</comment>
<acronym>ODS</acronym>
<expanded-acronym>OpenDocument Spreadsheet</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.spreadsheet-template" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.spreadsheet-template" offset="38"/>
</match>
</match>
</magic>
@@ -6130,61 +6521,66 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.chart">
<comment>ODC chart</comment>
- <comment xml:lang="ar">مخطط ODC</comment>
- <comment xml:lang="be@latin">Dyjahrama ODC</comment>
- <comment xml:lang="bg">Диаграма — ODC</comment>
- <comment xml:lang="ca">diagrama ODC</comment>
- <comment xml:lang="cs">graf ODC</comment>
- <comment xml:lang="da">ODC-diagram</comment>
- <comment xml:lang="de">ODC-Diagramm</comment>
- <comment xml:lang="el">Διάγραμμα ODC</comment>
- <comment xml:lang="en_GB">ODC chart</comment>
- <comment xml:lang="eo">ODC-diagramo</comment>
- <comment xml:lang="es">gráfico ODC</comment>
- <comment xml:lang="eu">ODC diagrama</comment>
- <comment xml:lang="fi">ODC-kaavio</comment>
- <comment xml:lang="fo">ODC strikumynd</comment>
- <comment xml:lang="fr">graphique ODC</comment>
- <comment xml:lang="ga">cairt ODC</comment>
- <comment xml:lang="gl">gráfica ODC</comment>
- <comment xml:lang="he">תו ODC</comment>
- <comment xml:lang="hr">ODC grafikon</comment>
- <comment xml:lang="hu">ODC-táblázat</comment>
- <comment xml:lang="ia">Graphico ODC</comment>
- <comment xml:lang="id">Bagan ODC</comment>
- <comment xml:lang="it">Grafico ODC</comment>
- <comment xml:lang="ja">ODC チャート</comment>
- <comment xml:lang="kk">ODC диаграммасы</comment>
- <comment xml:lang="ko">ODC 차트</comment>
- <comment xml:lang="lt">ODC diagrama</comment>
- <comment xml:lang="lv">ODC diagramma</comment>
- <comment xml:lang="nb">ODC-graf</comment>
- <comment xml:lang="nl">ODC-grafiek</comment>
- <comment xml:lang="nn">ODC-diagram</comment>
- <comment xml:lang="oc">grafic ODC</comment>
- <comment xml:lang="pl">Wykres ODC</comment>
- <comment xml:lang="pt">gráfico ODC</comment>
- <comment xml:lang="pt_BR">Gráfico ODC</comment>
- <comment xml:lang="ro">Diagramă ODC</comment>
- <comment xml:lang="ru">Диаграмма ODC</comment>
- <comment xml:lang="sk">Graf ODC</comment>
- <comment xml:lang="sl">Datoteka grafikona ODC</comment>
- <comment xml:lang="sq">Grafik ODC</comment>
- <comment xml:lang="sr">ОДЦ график</comment>
- <comment xml:lang="sv">ODC-diagram</comment>
- <comment xml:lang="tr">ODC çizelgesi</comment>
- <comment xml:lang="uk">діаграма ODC</comment>
- <comment xml:lang="vi">Sơ đồ ODC</comment>
- <comment xml:lang="zh_CN">ODC 图表</comment>
<comment xml:lang="zh_TW">ODC 圖表</comment>
+ <comment xml:lang="zh_CN">ODC 图表</comment>
+ <comment xml:lang="vi">Sơ đồ ODC</comment>
+ <comment xml:lang="uk">діаграма ODC</comment>
+ <comment xml:lang="tr">ODC çizgesi</comment>
+ <comment xml:lang="sv">ODC-diagram</comment>
+ <comment xml:lang="sr">ОДЦ график</comment>
+ <comment xml:lang="sq">grafik ODC</comment>
+ <comment xml:lang="sl">Datoteka grafikona ODC</comment>
+ <comment xml:lang="si">ODC ප්‍රස්ථාරය</comment>
+ <comment xml:lang="sk">Graf ODC</comment>
+ <comment xml:lang="ru">Диаграмма ODC</comment>
+ <comment xml:lang="ro">Diagramă ODC</comment>
+ <comment xml:lang="pt_BR">Gráfico ODC</comment>
+ <comment xml:lang="pt">gráfico ODC</comment>
+ <comment xml:lang="pl">Wykres ODC</comment>
+ <comment xml:lang="oc">grafic ODC</comment>
+ <comment xml:lang="nn">ODC-diagram</comment>
+ <comment xml:lang="nl">ODC-grafiek</comment>
+ <comment xml:lang="nb">ODC-graf</comment>
+ <comment xml:lang="lv">ODC diagramma</comment>
+ <comment xml:lang="lt">ODC diagrama</comment>
+ <comment xml:lang="ko">ODC 차트</comment>
+ <comment xml:lang="kk">ODC диаграммасы</comment>
+ <comment xml:lang="ja">ODC チャート</comment>
+ <comment xml:lang="it">Grafico ODC</comment>
+ <comment xml:lang="is">ODC graf</comment>
+ <comment xml:lang="id">Bagan ODC</comment>
+ <comment xml:lang="ia">Graphico ODC</comment>
+ <comment xml:lang="hu">ODC-táblázat</comment>
+ <comment xml:lang="hr">ODC grafikon</comment>
+ <comment xml:lang="he">תו ODC</comment>
+ <comment xml:lang="gl">gráfica ODC</comment>
+ <comment xml:lang="ga">cairt ODC</comment>
+ <comment xml:lang="fur">grafic ODC</comment>
+ <comment xml:lang="fr">graphique ODC</comment>
+ <comment xml:lang="fo">ODC strikumynd</comment>
+ <comment xml:lang="fi">ODC-kaavio</comment>
+ <comment xml:lang="eu">ODC diagrama</comment>
+ <comment xml:lang="es">gráfico ODC</comment>
+ <comment xml:lang="eo">ODC-diagramo</comment>
+ <comment xml:lang="en_GB">ODC chart</comment>
+ <comment xml:lang="el">Διάγραμμα ODC</comment>
+ <comment xml:lang="de">ODC-Diagramm</comment>
+ <comment xml:lang="da">ODC-diagram</comment>
+ <comment xml:lang="cs">graf ODC</comment>
+ <comment xml:lang="ca">diagrama ODC</comment>
+ <comment xml:lang="bg">Диаграма — ODC</comment>
+ <comment xml:lang="be@latin">Dyjahrama ODC</comment>
+ <comment xml:lang="be">дыяграма ODC</comment>
+ <comment xml:lang="ar">مخطط ODC</comment>
+ <comment xml:lang="af">ODC-grafiek</comment>
<acronym>ODC</acronym>
<expanded-acronym>OpenDocument Chart</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.chart" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.chart" offset="38"/>
</match>
</match>
</magic>
@@ -6192,58 +6588,64 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.chart-template">
<comment>ODC template</comment>
- <comment xml:lang="ar">قالب ODC</comment>
- <comment xml:lang="bg">Шаблон за диаграми — ODC</comment>
- <comment xml:lang="ca">plantilla ODC</comment>
- <comment xml:lang="cs">šablona ODC</comment>
- <comment xml:lang="da">ODC-skabelon</comment>
- <comment xml:lang="de">ODC-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο ODC</comment>
- <comment xml:lang="en_GB">ODC template</comment>
- <comment xml:lang="eo">ODC-ŝablono</comment>
- <comment xml:lang="es">plantilla ODC</comment>
- <comment xml:lang="eu">ODC txantiloia</comment>
- <comment xml:lang="fi">ODC-malli</comment>
- <comment xml:lang="fo">ODC formur</comment>
- <comment xml:lang="fr">modèle ODC</comment>
- <comment xml:lang="ga">teimpléad ODC</comment>
- <comment xml:lang="gl">modelo ODC</comment>
- <comment xml:lang="he">תבנית ODC</comment>
- <comment xml:lang="hr">ODC predložak</comment>
- <comment xml:lang="hu">ODC-sablon</comment>
- <comment xml:lang="ia">Patrono ODC</comment>
- <comment xml:lang="id">Templat ODC</comment>
- <comment xml:lang="it">Modello ODC</comment>
- <comment xml:lang="ja">ODC テンプレート</comment>
- <comment xml:lang="ka">ODC შაბლონი</comment>
- <comment xml:lang="kk">ODC үлгісі</comment>
- <comment xml:lang="ko">ODC 문서 서식</comment>
- <comment xml:lang="lt">ODC šablonas</comment>
- <comment xml:lang="lv">ODC veidne</comment>
- <comment xml:lang="nl">ODC-sjabloon</comment>
- <comment xml:lang="oc">modèl ODC</comment>
- <comment xml:lang="pl">Szablon ODC</comment>
- <comment xml:lang="pt">modelo ODC</comment>
- <comment xml:lang="pt_BR">Modelo ODC</comment>
- <comment xml:lang="ro">Șablon ODC</comment>
- <comment xml:lang="ru">Шаблон ODC</comment>
- <comment xml:lang="sk">Šablóna ODC</comment>
- <comment xml:lang="sl">Predloga ODC</comment>
- <comment xml:lang="sr">ОДЦ шаблон</comment>
- <comment xml:lang="sv">ODC-mall</comment>
- <comment xml:lang="tr">ODC şablonu</comment>
- <comment xml:lang="uk">шаблон ODC</comment>
- <comment xml:lang="vi">Mẫu ODC</comment>
- <comment xml:lang="zh_CN">ODC 模板</comment>
<comment xml:lang="zh_TW">ODC 範本</comment>
+ <comment xml:lang="zh_CN">ODC 模板</comment>
+ <comment xml:lang="vi">Mẫu ODC</comment>
+ <comment xml:lang="uk">шаблон ODC</comment>
+ <comment xml:lang="tr">ODC şablonu</comment>
+ <comment xml:lang="sv">ODC-mall</comment>
+ <comment xml:lang="sr">ОДЦ шаблон</comment>
+ <comment xml:lang="sq">gjedhe ODC</comment>
+ <comment xml:lang="sl">Predloga ODC</comment>
+ <comment xml:lang="si">ODC අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna ODC</comment>
+ <comment xml:lang="ru">Шаблон ODC</comment>
+ <comment xml:lang="ro">Șablon ODC</comment>
+ <comment xml:lang="pt_BR">Modelo ODC</comment>
+ <comment xml:lang="pt">modelo ODC</comment>
+ <comment xml:lang="pl">Szablon ODC</comment>
+ <comment xml:lang="oc">modèl ODC</comment>
+ <comment xml:lang="nl">ODC-sjabloon</comment>
+ <comment xml:lang="lv">ODC veidne</comment>
+ <comment xml:lang="lt">ODC šablonas</comment>
+ <comment xml:lang="ko">ODC 문서 서식</comment>
+ <comment xml:lang="kk">ODC үлгісі</comment>
+ <comment xml:lang="ka">ODC შაბლონი</comment>
+ <comment xml:lang="ja">ODC テンプレート</comment>
+ <comment xml:lang="it">Modello ODC</comment>
+ <comment xml:lang="is">ODC sniðmát</comment>
+ <comment xml:lang="id">Templat ODC</comment>
+ <comment xml:lang="ia">Patrono ODC</comment>
+ <comment xml:lang="hu">ODC-sablon</comment>
+ <comment xml:lang="hr">ODC predložak</comment>
+ <comment xml:lang="he">תבנית ODC</comment>
+ <comment xml:lang="gl">modelo ODC</comment>
+ <comment xml:lang="ga">teimpléad ODC</comment>
+ <comment xml:lang="fur">model ODC</comment>
+ <comment xml:lang="fr">modèle ODC</comment>
+ <comment xml:lang="fo">ODC formur</comment>
+ <comment xml:lang="fi">ODC-malli</comment>
+ <comment xml:lang="eu">ODC txantiloia</comment>
+ <comment xml:lang="es">plantilla ODC</comment>
+ <comment xml:lang="eo">ODC-ŝablono</comment>
+ <comment xml:lang="en_GB">ODC template</comment>
+ <comment xml:lang="el">Πρότυπο ODC</comment>
+ <comment xml:lang="de">ODC-Vorlage</comment>
+ <comment xml:lang="da">ODC-skabelon</comment>
+ <comment xml:lang="cs">šablona ODC</comment>
+ <comment xml:lang="ca">plantilla ODC</comment>
+ <comment xml:lang="bg">Шаблон за диаграми — ODC</comment>
+ <comment xml:lang="be">шаблон ODC</comment>
+ <comment xml:lang="ar">قالب ODC</comment>
+ <comment xml:lang="af">ODC-sjabloon</comment>
<acronym>ODC</acronym>
<expanded-acronym>OpenDocument Chart</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.chart-template" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.chart-template" offset="38"/>
</match>
</match>
</magic>
@@ -6251,62 +6653,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.formula">
<comment>ODF formula</comment>
- <comment xml:lang="ar">صيغة ODF</comment>
- <comment xml:lang="be@latin">Formuła ODF</comment>
- <comment xml:lang="bg">Формула — ODF</comment>
- <comment xml:lang="ca">fórmula ODF</comment>
- <comment xml:lang="cs">vzorec ODF</comment>
- <comment xml:lang="da">ODF-formel</comment>
- <comment xml:lang="de">ODF-Formel</comment>
- <comment xml:lang="el">Μαθηματικός τύπος ODF</comment>
- <comment xml:lang="en_GB">ODF formula</comment>
- <comment xml:lang="eo">ODF-formulo</comment>
- <comment xml:lang="es">fórmula ODF</comment>
- <comment xml:lang="eu">ODF formula</comment>
- <comment xml:lang="fi">ODF-kaava</comment>
- <comment xml:lang="fo">ODF frymil</comment>
- <comment xml:lang="fr">formule ODF</comment>
- <comment xml:lang="ga">foirmle ODF</comment>
- <comment xml:lang="gl">Fórula ODF</comment>
- <comment xml:lang="he">נוסחת ODF</comment>
- <comment xml:lang="hr">ODF formula</comment>
- <comment xml:lang="hu">ODF-képlet</comment>
- <comment xml:lang="ia">Formula ODF</comment>
- <comment xml:lang="id">Formula ODF</comment>
- <comment xml:lang="it">Formula ODF</comment>
- <comment xml:lang="ja">ODF 計算式</comment>
- <comment xml:lang="ka">ODF-ის ფორმულა</comment>
- <comment xml:lang="kk">ODF формуласы</comment>
- <comment xml:lang="ko">ODF 수식</comment>
- <comment xml:lang="lt">ODF formulė</comment>
- <comment xml:lang="lv">ODF formula</comment>
- <comment xml:lang="nb">ODF-formel</comment>
- <comment xml:lang="nl">ODF-formule</comment>
- <comment xml:lang="nn">ODF-formel</comment>
- <comment xml:lang="oc">formula ODF</comment>
- <comment xml:lang="pl">Formuła ODF</comment>
- <comment xml:lang="pt">fórmula ODF</comment>
- <comment xml:lang="pt_BR">Fórmula ODF</comment>
- <comment xml:lang="ro">Formulă ODF</comment>
- <comment xml:lang="ru">Формула ODF</comment>
- <comment xml:lang="sk">Vzorec ODF</comment>
- <comment xml:lang="sl">Dokument formule ODF</comment>
- <comment xml:lang="sq">Formulë ODF</comment>
- <comment xml:lang="sr">ОДФ формула</comment>
- <comment xml:lang="sv">ODF-formel</comment>
- <comment xml:lang="tr">ODF formülü</comment>
- <comment xml:lang="uk">формула ODF</comment>
- <comment xml:lang="vi">Công thức ODF</comment>
- <comment xml:lang="zh_CN">ODF 公式</comment>
<comment xml:lang="zh_TW">ODF 公式</comment>
+ <comment xml:lang="zh_CN">ODF 公式</comment>
+ <comment xml:lang="vi">Công thức ODF</comment>
+ <comment xml:lang="uk">формула ODF</comment>
+ <comment xml:lang="tr">ODF formülü</comment>
+ <comment xml:lang="sv">ODF-formel</comment>
+ <comment xml:lang="sr">ОДФ формула</comment>
+ <comment xml:lang="sq">formulë ODF</comment>
+ <comment xml:lang="sl">Dokument formule ODF</comment>
+ <comment xml:lang="si">ODF සූත්‍රය</comment>
+ <comment xml:lang="sk">Vzorec ODF</comment>
+ <comment xml:lang="ru">Формула ODF</comment>
+ <comment xml:lang="ro">Formulă ODF</comment>
+ <comment xml:lang="pt_BR">Fórmula ODF</comment>
+ <comment xml:lang="pt">fórmula ODF</comment>
+ <comment xml:lang="pl">Formuła ODF</comment>
+ <comment xml:lang="oc">formula ODF</comment>
+ <comment xml:lang="nn">ODF-formel</comment>
+ <comment xml:lang="nl">ODF-formule</comment>
+ <comment xml:lang="nb">ODF-formel</comment>
+ <comment xml:lang="lv">ODF formula</comment>
+ <comment xml:lang="lt">ODF formulė</comment>
+ <comment xml:lang="ko">ODF 수식</comment>
+ <comment xml:lang="kk">ODF формуласы</comment>
+ <comment xml:lang="ka">ODF-ის ფორმულა</comment>
+ <comment xml:lang="ja">ODF 計算式</comment>
+ <comment xml:lang="it">Formula ODF</comment>
+ <comment xml:lang="is">ODF formúla</comment>
+ <comment xml:lang="id">Formula ODF</comment>
+ <comment xml:lang="ia">Formula ODF</comment>
+ <comment xml:lang="hu">ODF-képlet</comment>
+ <comment xml:lang="hr">ODF formula</comment>
+ <comment xml:lang="he">נוסחת ODF</comment>
+ <comment xml:lang="gl">Fórula ODF</comment>
+ <comment xml:lang="ga">foirmle ODF</comment>
+ <comment xml:lang="fur">formule ODF</comment>
+ <comment xml:lang="fr">formule ODF</comment>
+ <comment xml:lang="fo">ODF frymil</comment>
+ <comment xml:lang="fi">ODF-kaava</comment>
+ <comment xml:lang="eu">ODF formula</comment>
+ <comment xml:lang="es">fórmula ODF</comment>
+ <comment xml:lang="eo">ODF-formulo</comment>
+ <comment xml:lang="en_GB">ODF formula</comment>
+ <comment xml:lang="el">Μαθηματικός τύπος ODF</comment>
+ <comment xml:lang="de">ODF-Formel</comment>
+ <comment xml:lang="da">ODF-formel</comment>
+ <comment xml:lang="cs">vzorec ODF</comment>
+ <comment xml:lang="ca">fórmula ODF</comment>
+ <comment xml:lang="bg">Формула — ODF</comment>
+ <comment xml:lang="be@latin">Formuła ODF</comment>
+ <comment xml:lang="be">формула ODF</comment>
+ <comment xml:lang="ar">صيغة ODF</comment>
+ <comment xml:lang="af">ODF-formule</comment>
<acronym>ODF</acronym>
<expanded-acronym>OpenDocument Formula</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.formula" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.formula" offset="38"/>
</match>
</match>
</magic>
@@ -6314,58 +6721,64 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.formula-template">
<comment>ODF template</comment>
- <comment xml:lang="ar">قالب ODF</comment>
- <comment xml:lang="bg">Шаблон за формули — ODF</comment>
- <comment xml:lang="ca">plantilla ODF</comment>
- <comment xml:lang="cs">šablona ODF</comment>
- <comment xml:lang="da">ODF-skabelon</comment>
- <comment xml:lang="de">ODF-Vorlage</comment>
- <comment xml:lang="el">Πρότυπο ODF</comment>
- <comment xml:lang="en_GB">ODF template</comment>
- <comment xml:lang="eo">ODF-ŝablono</comment>
- <comment xml:lang="es">plantilla ODF</comment>
- <comment xml:lang="eu">ODF txantiloia</comment>
- <comment xml:lang="fi">ODF-malli</comment>
- <comment xml:lang="fo">ODF formur</comment>
- <comment xml:lang="fr">modèle ODF</comment>
- <comment xml:lang="ga">teimpléad ODF</comment>
- <comment xml:lang="gl">modelo ODF</comment>
- <comment xml:lang="he">תבנית ODF</comment>
- <comment xml:lang="hr">ODF predložak</comment>
- <comment xml:lang="hu">ODG-sablon</comment>
- <comment xml:lang="ia">Patrono ODF</comment>
- <comment xml:lang="id">Templat ODF</comment>
- <comment xml:lang="it">Modello ODF</comment>
- <comment xml:lang="ja">ODF テンプレート</comment>
- <comment xml:lang="ka">ODF-ის შაბლონი</comment>
- <comment xml:lang="kk">ODF үлгісі</comment>
- <comment xml:lang="ko">ODF 문서 서식</comment>
- <comment xml:lang="lt">ODF šablonas</comment>
- <comment xml:lang="lv">ODF veidne</comment>
- <comment xml:lang="nl">ODF-sjabloon</comment>
- <comment xml:lang="oc">modèl ODF</comment>
- <comment xml:lang="pl">Szablon ODF</comment>
- <comment xml:lang="pt">modelo ODF</comment>
- <comment xml:lang="pt_BR">Modelo ODF</comment>
- <comment xml:lang="ro">Șablon ODF</comment>
- <comment xml:lang="ru">Шаблон ODF</comment>
- <comment xml:lang="sk">Šablóna ODF</comment>
- <comment xml:lang="sl">Predloga dokumenta ODF</comment>
- <comment xml:lang="sr">ОДФ шаблон</comment>
- <comment xml:lang="sv">ODF-mall</comment>
- <comment xml:lang="tr">ODF şablonu</comment>
- <comment xml:lang="uk">шаблон ODF</comment>
- <comment xml:lang="vi">Mẫu ODF</comment>
- <comment xml:lang="zh_CN">ODF 模板</comment>
<comment xml:lang="zh_TW">ODF 範本</comment>
+ <comment xml:lang="zh_CN">ODF 模板</comment>
+ <comment xml:lang="vi">Mẫu ODF</comment>
+ <comment xml:lang="uk">шаблон ODF</comment>
+ <comment xml:lang="tr">ODF şablonu</comment>
+ <comment xml:lang="sv">ODF-mall</comment>
+ <comment xml:lang="sr">ОДФ шаблон</comment>
+ <comment xml:lang="sq">gjedhe ODF</comment>
+ <comment xml:lang="sl">Predloga dokumenta ODF</comment>
+ <comment xml:lang="si">ODF ආකෘතිය</comment>
+ <comment xml:lang="sk">Šablóna ODF</comment>
+ <comment xml:lang="ru">Шаблон ODF</comment>
+ <comment xml:lang="ro">Șablon ODF</comment>
+ <comment xml:lang="pt_BR">Modelo ODF</comment>
+ <comment xml:lang="pt">modelo ODF</comment>
+ <comment xml:lang="pl">Szablon ODF</comment>
+ <comment xml:lang="oc">modèl ODF</comment>
+ <comment xml:lang="nl">ODF-sjabloon</comment>
+ <comment xml:lang="lv">ODF veidne</comment>
+ <comment xml:lang="lt">ODF šablonas</comment>
+ <comment xml:lang="ko">ODF 문서 서식</comment>
+ <comment xml:lang="kk">ODF үлгісі</comment>
+ <comment xml:lang="ka">ODF-ის შაბლონი</comment>
+ <comment xml:lang="ja">ODF テンプレート</comment>
+ <comment xml:lang="it">Modello ODF</comment>
+ <comment xml:lang="is">ODF sniðmát</comment>
+ <comment xml:lang="id">Templat ODF</comment>
+ <comment xml:lang="ia">Patrono ODF</comment>
+ <comment xml:lang="hu">ODG-sablon</comment>
+ <comment xml:lang="hr">ODF predložak</comment>
+ <comment xml:lang="he">תבנית ODF</comment>
+ <comment xml:lang="gl">modelo ODF</comment>
+ <comment xml:lang="ga">teimpléad ODF</comment>
+ <comment xml:lang="fur">model ODF</comment>
+ <comment xml:lang="fr">modèle ODF</comment>
+ <comment xml:lang="fo">ODF formur</comment>
+ <comment xml:lang="fi">ODF-malli</comment>
+ <comment xml:lang="eu">ODF txantiloia</comment>
+ <comment xml:lang="es">plantilla ODF</comment>
+ <comment xml:lang="eo">ODF-ŝablono</comment>
+ <comment xml:lang="en_GB">ODF template</comment>
+ <comment xml:lang="el">Πρότυπο ODF</comment>
+ <comment xml:lang="de">ODF-Vorlage</comment>
+ <comment xml:lang="da">ODF-skabelon</comment>
+ <comment xml:lang="cs">šablona ODF</comment>
+ <comment xml:lang="ca">plantilla ODF</comment>
+ <comment xml:lang="bg">Шаблон за формули — ODF</comment>
+ <comment xml:lang="be">шаблон ODF</comment>
+ <comment xml:lang="ar">قالب ODF</comment>
+ <comment xml:lang="af">ODF-sjabloon</comment>
<acronym>ODF</acronym>
<expanded-acronym>OpenDocument Formula</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.formula-template" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.formula-template" offset="38"/>
</match>
</match>
</magic>
@@ -6373,62 +6786,67 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.database">
<comment>ODB database</comment>
- <comment xml:lang="ar">قاعدة بيانات ODB</comment>
- <comment xml:lang="be@latin">Baza źviestak ODB</comment>
- <comment xml:lang="bg">База от данни — ODB</comment>
- <comment xml:lang="ca">base de dades ODB</comment>
- <comment xml:lang="cs">databáze ODB</comment>
- <comment xml:lang="da">ODB-database</comment>
- <comment xml:lang="de">ODB-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων ODB</comment>
- <comment xml:lang="en_GB">ODB database</comment>
- <comment xml:lang="eo">ODB-datumbazo</comment>
- <comment xml:lang="es">base de datos ODB</comment>
- <comment xml:lang="eu">ODB datu-basea</comment>
- <comment xml:lang="fi">ODB-tietokanta</comment>
- <comment xml:lang="fo">ODB dátustovnur</comment>
- <comment xml:lang="fr">base de données ODB</comment>
- <comment xml:lang="ga">bunachar sonraí ODB</comment>
- <comment xml:lang="gl">base de datos ODB</comment>
- <comment xml:lang="he">מסד נתונים ODB</comment>
- <comment xml:lang="hr">ODB baza podataka</comment>
- <comment xml:lang="hu">ODB-adatbázis</comment>
- <comment xml:lang="ia">Base de datos ODB</comment>
- <comment xml:lang="id">Basis data ODB</comment>
- <comment xml:lang="it">Database ODB</comment>
- <comment xml:lang="ja">ODB データベース</comment>
- <comment xml:lang="ka">ODB-ის მონაცემთა ბაზა</comment>
- <comment xml:lang="kk">ODB дерекқоры</comment>
- <comment xml:lang="ko">ODB 데이터베이스</comment>
- <comment xml:lang="lt">ODB duomenų bazė</comment>
- <comment xml:lang="lv">ODB datubāze</comment>
- <comment xml:lang="nb">ODB-database</comment>
- <comment xml:lang="nl">ODB-gegevensbank</comment>
- <comment xml:lang="nn">ODB-database</comment>
- <comment xml:lang="oc">banca de donadas ODB</comment>
- <comment xml:lang="pl">Baza danych ODB</comment>
- <comment xml:lang="pt">base de dados ODB</comment>
- <comment xml:lang="pt_BR">Banco de dados ODB</comment>
- <comment xml:lang="ro">Bază de date ODB</comment>
- <comment xml:lang="ru">База данных ODB</comment>
- <comment xml:lang="sk">Databáza ODB</comment>
- <comment xml:lang="sl">Podatkovna zbirka ODB</comment>
- <comment xml:lang="sq">Bazë me të dhëna ODB</comment>
- <comment xml:lang="sr">ОДБ база података</comment>
- <comment xml:lang="sv">ODB-databas</comment>
- <comment xml:lang="tr">ODB veritabanı</comment>
- <comment xml:lang="uk">база даних ODB</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu ODB</comment>
- <comment xml:lang="zh_CN">ODB 数据库</comment>
<comment xml:lang="zh_TW">ODB 資料庫</comment>
+ <comment xml:lang="zh_CN">ODB 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu ODB</comment>
+ <comment xml:lang="uk">база даних ODB</comment>
+ <comment xml:lang="tr">ODB veri tabanı</comment>
+ <comment xml:lang="sv">ODB-databas</comment>
+ <comment xml:lang="sr">ОДБ база података</comment>
+ <comment xml:lang="sq">bazë të dhënash ODB</comment>
+ <comment xml:lang="sl">Podatkovna zbirka ODB</comment>
+ <comment xml:lang="si">ODB දත්ත සමුදාය</comment>
+ <comment xml:lang="sk">Databáza ODB</comment>
+ <comment xml:lang="ru">База данных ODB</comment>
+ <comment xml:lang="ro">Bază de date ODB</comment>
+ <comment xml:lang="pt_BR">Banco de dados ODB</comment>
+ <comment xml:lang="pt">base de dados ODB</comment>
+ <comment xml:lang="pl">Baza danych ODB</comment>
+ <comment xml:lang="oc">banca de donadas ODB</comment>
+ <comment xml:lang="nn">ODB-database</comment>
+ <comment xml:lang="nl">ODB-gegevensbank</comment>
+ <comment xml:lang="nb">ODB-database</comment>
+ <comment xml:lang="lv">ODB datubāze</comment>
+ <comment xml:lang="lt">ODB duomenų bazė</comment>
+ <comment xml:lang="ko">ODB 데이터베이스</comment>
+ <comment xml:lang="kk">ODB дерекқоры</comment>
+ <comment xml:lang="ka">ODB-ის მონაცემთა ბაზა</comment>
+ <comment xml:lang="ja">ODB データベース</comment>
+ <comment xml:lang="it">Database ODB</comment>
+ <comment xml:lang="is">ODB gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data ODB</comment>
+ <comment xml:lang="ia">Base de datos ODB</comment>
+ <comment xml:lang="hu">ODB-adatbázis</comment>
+ <comment xml:lang="hr">ODB baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים ODB</comment>
+ <comment xml:lang="gl">base de datos ODB</comment>
+ <comment xml:lang="ga">bunachar sonraí ODB</comment>
+ <comment xml:lang="fur">base di dâts ODB</comment>
+ <comment xml:lang="fr">base de données ODB</comment>
+ <comment xml:lang="fo">ODB dátustovnur</comment>
+ <comment xml:lang="fi">ODB-tietokanta</comment>
+ <comment xml:lang="eu">ODB datu-basea</comment>
+ <comment xml:lang="es">base de datos ODB</comment>
+ <comment xml:lang="eo">ODB-datumbazo</comment>
+ <comment xml:lang="en_GB">ODB database</comment>
+ <comment xml:lang="el">Βάση δεδομένων ODB</comment>
+ <comment xml:lang="de">ODB-Datenbank</comment>
+ <comment xml:lang="da">ODB-database</comment>
+ <comment xml:lang="cs">databáze ODB</comment>
+ <comment xml:lang="ca">base de dades ODB</comment>
+ <comment xml:lang="bg">База от данни — ODB</comment>
+ <comment xml:lang="be@latin">Baza źviestak ODB</comment>
+ <comment xml:lang="be">база даных ODB</comment>
+ <comment xml:lang="ar">قاعدة بيانات ODB</comment>
+ <comment xml:lang="af">ODB-databasis</comment>
<acronym>ODB</acronym>
<expanded-acronym>OpenDocument Database</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.base" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.base" offset="38"/>
</match>
</match>
</magic>
@@ -6437,63 +6855,68 @@
</mime-type>
<mime-type type="application/vnd.oasis.opendocument.image">
<comment>ODI image</comment>
- <comment xml:lang="ar">صورة ODI</comment>
- <comment xml:lang="ast">Imaxe ODI</comment>
- <comment xml:lang="be@latin">Vyjava ODI</comment>
- <comment xml:lang="bg">Изображение — ODI</comment>
- <comment xml:lang="ca">imatge ODI</comment>
- <comment xml:lang="cs">obrázek ODI</comment>
- <comment xml:lang="da">ODI-billede</comment>
- <comment xml:lang="de">ODI-Bild</comment>
- <comment xml:lang="el">Εικόνα ODI</comment>
- <comment xml:lang="en_GB">ODI image</comment>
- <comment xml:lang="eo">ODI-bildo</comment>
- <comment xml:lang="es">imagen ODI</comment>
- <comment xml:lang="eu">ODI irudia</comment>
- <comment xml:lang="fi">ODI-kuva</comment>
- <comment xml:lang="fo">ODI mynd</comment>
- <comment xml:lang="fr">image ODI</comment>
- <comment xml:lang="ga">íomhá ODI</comment>
- <comment xml:lang="gl">imaxe ODI</comment>
- <comment xml:lang="he">תמונת ODI</comment>
- <comment xml:lang="hr">ODI slika</comment>
- <comment xml:lang="hu">ODI-kép</comment>
- <comment xml:lang="ia">Imagine ODI</comment>
- <comment xml:lang="id">Citra ODI</comment>
- <comment xml:lang="it">Immagine ODI</comment>
- <comment xml:lang="ja">ODI 画像</comment>
- <comment xml:lang="ka">ODI გამოსახულება</comment>
- <comment xml:lang="kk">ODI суреті</comment>
- <comment xml:lang="ko">ODI 그림</comment>
- <comment xml:lang="lt">ODI paveikslėlis</comment>
- <comment xml:lang="lv">ODI attēls</comment>
- <comment xml:lang="nb">ODI-bilde</comment>
- <comment xml:lang="nl">ODI-afbeelding</comment>
- <comment xml:lang="nn">ODI-bilete</comment>
- <comment xml:lang="oc">imatge ODI</comment>
- <comment xml:lang="pl">Obraz ODI</comment>
- <comment xml:lang="pt">imagem ODI</comment>
- <comment xml:lang="pt_BR">Imagem ODI</comment>
- <comment xml:lang="ro">Imagine ODI</comment>
- <comment xml:lang="ru">Изображение ODI</comment>
- <comment xml:lang="sk">Obrázok ODI</comment>
- <comment xml:lang="sl">Slikovna datoteka ODI</comment>
- <comment xml:lang="sq">Figurë ODI</comment>
- <comment xml:lang="sr">ОДИ слика</comment>
- <comment xml:lang="sv">ODI-bild</comment>
- <comment xml:lang="tr">ODI görüntüsü</comment>
- <comment xml:lang="uk">зображення ODI</comment>
- <comment xml:lang="vi">Ảnh ODI</comment>
- <comment xml:lang="zh_CN">ODI 图像</comment>
<comment xml:lang="zh_TW">ODI 影像</comment>
+ <comment xml:lang="zh_CN">ODI 图像</comment>
+ <comment xml:lang="vi">Ảnh ODI</comment>
+ <comment xml:lang="uk">зображення ODI</comment>
+ <comment xml:lang="tr">ODI görüntüsü</comment>
+ <comment xml:lang="sv">ODI-bild</comment>
+ <comment xml:lang="sr">ОДИ слика</comment>
+ <comment xml:lang="sq">figurë ODI</comment>
+ <comment xml:lang="sl">Slikovna datoteka ODI</comment>
+ <comment xml:lang="si">ODI රූපය</comment>
+ <comment xml:lang="sk">Obrázok ODI</comment>
+ <comment xml:lang="ru">Изображение ODI</comment>
+ <comment xml:lang="ro">Imagine ODI</comment>
+ <comment xml:lang="pt_BR">Imagem ODI</comment>
+ <comment xml:lang="pt">imagem ODI</comment>
+ <comment xml:lang="pl">Obraz ODI</comment>
+ <comment xml:lang="oc">imatge ODI</comment>
+ <comment xml:lang="nn">ODI-bilete</comment>
+ <comment xml:lang="nl">ODI-afbeelding</comment>
+ <comment xml:lang="nb">ODI-bilde</comment>
+ <comment xml:lang="lv">ODI attēls</comment>
+ <comment xml:lang="lt">ODI paveikslėlis</comment>
+ <comment xml:lang="ko">ODI 그림</comment>
+ <comment xml:lang="kk">ODI суреті</comment>
+ <comment xml:lang="ka">ODI გამოსახულება</comment>
+ <comment xml:lang="ja">ODI 画像</comment>
+ <comment xml:lang="it">Immagine ODI</comment>
+ <comment xml:lang="is">ODI mynd</comment>
+ <comment xml:lang="id">Citra ODI</comment>
+ <comment xml:lang="ia">Imagine ODI</comment>
+ <comment xml:lang="hu">ODI-kép</comment>
+ <comment xml:lang="hr">ODI slika</comment>
+ <comment xml:lang="he">תמונת ODI</comment>
+ <comment xml:lang="gl">imaxe ODI</comment>
+ <comment xml:lang="ga">íomhá ODI</comment>
+ <comment xml:lang="fur">imagjin ODI</comment>
+ <comment xml:lang="fr">image ODI</comment>
+ <comment xml:lang="fo">ODI mynd</comment>
+ <comment xml:lang="fi">ODI-kuva</comment>
+ <comment xml:lang="eu">ODI irudia</comment>
+ <comment xml:lang="es">imagen ODI</comment>
+ <comment xml:lang="eo">ODI-bildo</comment>
+ <comment xml:lang="en_GB">ODI image</comment>
+ <comment xml:lang="el">Εικόνα ODI</comment>
+ <comment xml:lang="de">ODI-Bild</comment>
+ <comment xml:lang="da">ODI-billede</comment>
+ <comment xml:lang="cs">obrázek ODI</comment>
+ <comment xml:lang="ca">imatge ODI</comment>
+ <comment xml:lang="bg">Изображение — ODI</comment>
+ <comment xml:lang="be@latin">Vyjava ODI</comment>
+ <comment xml:lang="be">выява ODI</comment>
+ <comment xml:lang="ast">Imaxe ODI</comment>
+ <comment xml:lang="ar">صورة ODI</comment>
+ <comment xml:lang="af">ODI-beeld</comment>
<acronym>ODI</acronym>
<expanded-acronym>OpenDocument Image</expanded-acronym>
<sub-class-of type="application/zip"/>
<generic-icon name="image-x-generic"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/vnd.oasis.opendocument.image" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/vnd.oasis.opendocument.image" offset="38"/>
</match>
</match>
</magic>
@@ -6501,261 +6924,256 @@
</mime-type>
<mime-type type="application/vnd.openofficeorg.extension">
<comment>OpenOffice.org extension</comment>
- <comment xml:lang="ar">امتداد OpenOffice.org</comment>
- <comment xml:lang="ast">Estensión d'OpenOffice.org</comment>
- <comment xml:lang="be@latin">Pašyreńnie OpenOffice.org</comment>
- <comment xml:lang="bg">Разширение — OpenOffice</comment>
- <comment xml:lang="ca">extensió d'OpenOffice.org</comment>
- <comment xml:lang="cs">rozšíření OpenOffice.org</comment>
- <comment xml:lang="da">OpenOffice.org-udvidelse</comment>
- <comment xml:lang="de">OpenOffice.org-Erweiterung</comment>
- <comment xml:lang="el">Επέκταση OpenOffice.org</comment>
- <comment xml:lang="en_GB">OpenOffice.org extension</comment>
- <comment xml:lang="es">extensión de LibreOffice</comment>
- <comment xml:lang="eu">OpenOffice.org luzapena</comment>
- <comment xml:lang="fi">OpenOffice.org-laajennus</comment>
- <comment xml:lang="fo">OpenOffice.org víðkan</comment>
- <comment xml:lang="fr">extension OpenOffice.org</comment>
- <comment xml:lang="ga">eisínteacht OpenOffice.org</comment>
- <comment xml:lang="gl">Extensión de OpenOffice.org</comment>
- <comment xml:lang="he">הרחבה של OpenOffice.org</comment>
- <comment xml:lang="hr">OpenOffice.org proširenje</comment>
- <comment xml:lang="hu">OpenOffice.org kiterjesztés</comment>
- <comment xml:lang="ia">Extension OpenOffice.org</comment>
- <comment xml:lang="id">Ekstensi OpenOffice.org</comment>
- <comment xml:lang="it">Estensione OpenOffice.org</comment>
- <comment xml:lang="ja">OpenOffice.org 拡張機能</comment>
- <comment xml:lang="ka">OpenOffice.org-ის გაფართოება</comment>
- <comment xml:lang="kk">OpenOffice.org кеңейтуі</comment>
- <comment xml:lang="ko">OpenOffice.org 확장</comment>
- <comment xml:lang="lt">OpenOffice.org plėtinys</comment>
- <comment xml:lang="lv">OpenOffice.org paplašinājums</comment>
- <comment xml:lang="nl">OpenOffice.org-uitbreiding</comment>
- <comment xml:lang="nn">OpenOffice Writer-utviding</comment>
- <comment xml:lang="oc">extension OpenOffice.org</comment>
- <comment xml:lang="pl">Rozszerzenie OpenOffice.org</comment>
- <comment xml:lang="pt">extensão OpenOffice.org</comment>
- <comment xml:lang="pt_BR">Extensão do OpenOffice</comment>
- <comment xml:lang="ro">Extensie OpenOffice.org</comment>
- <comment xml:lang="ru">Расширение OpenOffice.org</comment>
- <comment xml:lang="sk">Rozšírenie OpenOffice.org</comment>
- <comment xml:lang="sl">Razširitev OpenOffice.org</comment>
- <comment xml:lang="sq">Shtojcë për OpenOffice.org</comment>
- <comment xml:lang="sr">проширење ОпенОфис.орг-а</comment>
- <comment xml:lang="sv">OpenOffice.org-tillägg</comment>
- <comment xml:lang="tr">OpenOffice.org eklentisi</comment>
- <comment xml:lang="uk">розширення OpenOffice.org</comment>
- <comment xml:lang="vi">Phần mở rộng của OpenOffice.org</comment>
- <comment xml:lang="zh_CN">OpenOffice.org 扩展</comment>
<comment xml:lang="zh_TW">OpenOffice.org 擴充套件</comment>
+ <comment xml:lang="zh_CN">OpenOffice.org 扩展</comment>
+ <comment xml:lang="vi">Phần mở rộng của OpenOffice.org</comment>
+ <comment xml:lang="uk">розширення OpenOffice.org</comment>
+ <comment xml:lang="tr">OpenOffice.org eklentisi</comment>
+ <comment xml:lang="sv">OpenOffice.org-tillägg</comment>
+ <comment xml:lang="sr">проширење ОпенОфис.орг-а</comment>
+ <comment xml:lang="sq">zgjerim OpenOffice.org</comment>
+ <comment xml:lang="sl">Razširitev OpenOffice.org</comment>
+ <comment xml:lang="si">OpenOffice.org දිගුව</comment>
+ <comment xml:lang="sk">Rozšírenie OpenOffice.org</comment>
+ <comment xml:lang="ru">Расширение OpenOffice.org</comment>
+ <comment xml:lang="ro">Extensie OpenOffice.org</comment>
+ <comment xml:lang="pt_BR">Extensão do OpenOffice</comment>
+ <comment xml:lang="pt">extensão OpenOffice.org</comment>
+ <comment xml:lang="pl">Rozszerzenie OpenOffice.org</comment>
+ <comment xml:lang="oc">extension OpenOffice.org</comment>
+ <comment xml:lang="nn">OpenOffice Writer-utviding</comment>
+ <comment xml:lang="nl">OpenOffice.org-uitbreiding</comment>
+ <comment xml:lang="lv">OpenOffice.org paplašinājums</comment>
+ <comment xml:lang="lt">OpenOffice.org plėtinys</comment>
+ <comment xml:lang="ko">OpenOffice.org 확장</comment>
+ <comment xml:lang="kk">OpenOffice.org кеңейтуі</comment>
+ <comment xml:lang="ka">OpenOffice.org-ის გაფართოება</comment>
+ <comment xml:lang="ja">OpenOffice.org 拡張機能</comment>
+ <comment xml:lang="it">Estensione OpenOffice.org</comment>
+ <comment xml:lang="is">OpenOffice.org viðauki</comment>
+ <comment xml:lang="id">Ekstensi OpenOffice.org</comment>
+ <comment xml:lang="ia">Extension OpenOffice.org</comment>
+ <comment xml:lang="hu">OpenOffice.org kiterjesztés</comment>
+ <comment xml:lang="hr">OpenOffice.org proširenje</comment>
+ <comment xml:lang="he">הרחבה של OpenOffice.org</comment>
+ <comment xml:lang="gl">Extensión de OpenOffice.org</comment>
+ <comment xml:lang="ga">eisínteacht OpenOffice.org</comment>
+ <comment xml:lang="fur">estension OpenOffice.org</comment>
+ <comment xml:lang="fr">extension OpenOffice.org</comment>
+ <comment xml:lang="fo">OpenOffice.org víðkan</comment>
+ <comment xml:lang="fi">OpenOffice.org-laajennus</comment>
+ <comment xml:lang="eu">OpenOffice.org luzapena</comment>
+ <comment xml:lang="es">extensión de LibreOffice</comment>
+ <comment xml:lang="en_GB">OpenOffice.org extension</comment>
+ <comment xml:lang="el">Επέκταση OpenOffice.org</comment>
+ <comment xml:lang="de">OpenOffice.org-Erweiterung</comment>
+ <comment xml:lang="da">OpenOffice.org-udvidelse</comment>
+ <comment xml:lang="cs">rozšíření OpenOffice.org</comment>
+ <comment xml:lang="ca">extensió d'OpenOffice.org</comment>
+ <comment xml:lang="bg">Приставка — OpenOffice</comment>
+ <comment xml:lang="be@latin">Pašyreńnie OpenOffice.org</comment>
+ <comment xml:lang="be">пашырэнне OpenOffice.org</comment>
+ <comment xml:lang="ast">Estensión d'OpenOffice.org</comment>
+ <comment xml:lang="ar">امتداد OpenOffice.org</comment>
+ <comment xml:lang="af">OpenOffice.org-uitbreiding</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.oxt"/>
</mime-type>
<mime-type type="application/vnd.android.package-archive">
<comment>Android package</comment>
- <comment xml:lang="ast">Paquete d'Android</comment>
- <comment xml:lang="bg">Пакет — Android</comment>
- <comment xml:lang="ca">paquet d'Android</comment>
- <comment xml:lang="cs">balíčky systému Android</comment>
- <comment xml:lang="da">Android-pakke</comment>
- <comment xml:lang="de">Android-Paket</comment>
- <comment xml:lang="el">Πακέτο Android</comment>
- <comment xml:lang="en_GB">Android package</comment>
- <comment xml:lang="eo">Android-pakaĵo</comment>
- <comment xml:lang="es">paquete de Android</comment>
- <comment xml:lang="eu">Android paketea</comment>
- <comment xml:lang="fi">Android-paketti</comment>
- <comment xml:lang="fr">paquet Android</comment>
- <comment xml:lang="ga">pacáiste Android</comment>
- <comment xml:lang="gl">paquete de Android</comment>
- <comment xml:lang="he">חבילת אנדרויד</comment>
- <comment xml:lang="hr">Android paket</comment>
- <comment xml:lang="hu">Android csomag</comment>
- <comment xml:lang="ia">Pacchetto Android</comment>
- <comment xml:lang="id">Paket Android</comment>
- <comment xml:lang="it">Pacchetto Android</comment>
- <comment xml:lang="ja">Android パッケージ</comment>
- <comment xml:lang="ka">Android-ის პაკეტი</comment>
- <comment xml:lang="kk">Android дестесі</comment>
- <comment xml:lang="ko">Android 패키지</comment>
- <comment xml:lang="lv">Android pakotne</comment>
- <comment xml:lang="nl">Android pakket</comment>
- <comment xml:lang="oc">paquet Android</comment>
- <comment xml:lang="pl">Pakiet Androida</comment>
- <comment xml:lang="pt">pacote Android</comment>
- <comment xml:lang="pt_BR">Pacote do Android</comment>
- <comment xml:lang="ru">Пакет Android</comment>
- <comment xml:lang="sk">Balík Android</comment>
- <comment xml:lang="sl">Paket Android</comment>
- <comment xml:lang="sr">Андроидов пакет</comment>
- <comment xml:lang="sv">Android-paket</comment>
- <comment xml:lang="tr">Android paketi</comment>
- <comment xml:lang="uk">пакунок Android</comment>
- <comment xml:lang="zh_CN">Android 应用包</comment>
<comment xml:lang="zh_TW">Android 軟體包</comment>
- <sub-class-of type="application/x-java-archive"/>
+ <comment xml:lang="zh_CN">Android 应用包</comment>
+ <comment xml:lang="uk">пакунок Android</comment>
+ <comment xml:lang="tr">Android paketi</comment>
+ <comment xml:lang="sv">Android-paket</comment>
+ <comment xml:lang="sr">Андроидов пакет</comment>
+ <comment xml:lang="sq">pakete Android</comment>
+ <comment xml:lang="sl">Paket Android</comment>
+ <comment xml:lang="si">Android පැකේජය</comment>
+ <comment xml:lang="sk">Balík Android</comment>
+ <comment xml:lang="ru">Пакет Android</comment>
+ <comment xml:lang="pt_BR">Pacote do Android</comment>
+ <comment xml:lang="pt">pacote Android</comment>
+ <comment xml:lang="pl">Pakiet Androida</comment>
+ <comment xml:lang="oc">paquet Android</comment>
+ <comment xml:lang="nl">Android-pakket</comment>
+ <comment xml:lang="lv">Android pakotne</comment>
+ <comment xml:lang="lt">Android paketas</comment>
+ <comment xml:lang="ko">Android 패키지</comment>
+ <comment xml:lang="kk">Android дестесі</comment>
+ <comment xml:lang="ka">Android-ის პაკეტი</comment>
+ <comment xml:lang="ja">Android パッケージ</comment>
+ <comment xml:lang="it">Pacchetto Android</comment>
+ <comment xml:lang="is">Android pakki</comment>
+ <comment xml:lang="id">Paket Android</comment>
+ <comment xml:lang="ia">Pacchetto Android</comment>
+ <comment xml:lang="hu">Android csomag</comment>
+ <comment xml:lang="hr">Android paket</comment>
+ <comment xml:lang="he">חבילת Android</comment>
+ <comment xml:lang="gl">paquete de Android</comment>
+ <comment xml:lang="ga">pacáiste Android</comment>
+ <comment xml:lang="fur">pachet Android</comment>
+ <comment xml:lang="fr">paquet Android</comment>
+ <comment xml:lang="fi">Android-paketti</comment>
+ <comment xml:lang="eu">Android paketea</comment>
+ <comment xml:lang="es">paquete de Android</comment>
+ <comment xml:lang="eo">Android-pakaĵo</comment>
+ <comment xml:lang="en_GB">Android package</comment>
+ <comment xml:lang="el">Πακέτο Android</comment>
+ <comment xml:lang="de">Android-Paket</comment>
+ <comment xml:lang="da">Android-pakke</comment>
+ <comment xml:lang="cs">balíčky systému Android</comment>
+ <comment xml:lang="ca">paquet d'Android</comment>
+ <comment xml:lang="bg">Пакет — Android</comment>
+ <comment xml:lang="be">пакет Android</comment>
+ <comment xml:lang="ast">Paquete d'Android</comment>
+ <comment xml:lang="ar">حزمة أندرويد</comment>
+ <comment xml:lang="af">Android-pakket</comment>
+ <sub-class-of type="application/java-archive"/>
<glob pattern="*.apk"/>
</mime-type>
<mime-type type="application/vnd.symbian.install">
<comment>SIS package</comment>
- <comment xml:lang="ar">حزمة SIS</comment>
- <comment xml:lang="ast">Paquete SIS</comment>
- <comment xml:lang="be@latin">Pakunak SIS</comment>
- <comment xml:lang="bg">Пакет — SIS</comment>
- <comment xml:lang="ca">paquet SIS</comment>
- <comment xml:lang="cs">balíček SIS</comment>
- <comment xml:lang="da">SIS-pakke</comment>
- <comment xml:lang="de">SIS-Paket</comment>
- <comment xml:lang="el">Πακέτο SIS</comment>
- <comment xml:lang="en_GB">SIS package</comment>
- <comment xml:lang="eo">SIS-pakaĵo</comment>
- <comment xml:lang="es">paquete SIS</comment>
- <comment xml:lang="eu">SIS paketea</comment>
- <comment xml:lang="fi">SIS-paketti</comment>
- <comment xml:lang="fo">SIS pakki</comment>
- <comment xml:lang="fr">paquet SIS</comment>
- <comment xml:lang="ga">pacáiste SIS</comment>
- <comment xml:lang="gl">paquete SIS</comment>
- <comment xml:lang="he">חבילת SIS</comment>
- <comment xml:lang="hr">SIS paket</comment>
- <comment xml:lang="hu">SIS csomag</comment>
- <comment xml:lang="ia">Pacchetto SIS</comment>
- <comment xml:lang="id">Paket SIS</comment>
- <comment xml:lang="it">Pacchetto SIS</comment>
- <comment xml:lang="ja">SIS パッケージ</comment>
- <comment xml:lang="kk">SIS дестесі</comment>
- <comment xml:lang="ko">SIS 패키지</comment>
- <comment xml:lang="lt">SIS paketas</comment>
- <comment xml:lang="lv">SIS pakotne</comment>
- <comment xml:lang="nb">SIS-pakke</comment>
- <comment xml:lang="nl">SIS-pakket</comment>
- <comment xml:lang="nn">SIS-pakke</comment>
- <comment xml:lang="oc">paquet SIS</comment>
- <comment xml:lang="pl">Pakiet SIS</comment>
- <comment xml:lang="pt">pacote SIS</comment>
- <comment xml:lang="pt_BR">Pacote SIS</comment>
- <comment xml:lang="ro">Pachet SIS</comment>
- <comment xml:lang="ru">Пакет SIS</comment>
- <comment xml:lang="sk">Balíček SIS</comment>
- <comment xml:lang="sl">Datoteka paketa SIS</comment>
- <comment xml:lang="sq">Paketë SIS</comment>
- <comment xml:lang="sr">СИС пакет</comment>
- <comment xml:lang="sv">SIS-paket</comment>
- <comment xml:lang="tr">SIS paketi</comment>
- <comment xml:lang="uk">пакунок SIS</comment>
- <comment xml:lang="vi">Gói SIS</comment>
- <comment xml:lang="zh_CN">SIS 软件包</comment>
<comment xml:lang="zh_TW">SIS 軟體包</comment>
+ <comment xml:lang="zh_CN">SIS 软件包</comment>
+ <comment xml:lang="vi">Gói SIS</comment>
+ <comment xml:lang="uk">пакунок SIS</comment>
+ <comment xml:lang="tr">SIS paketi</comment>
+ <comment xml:lang="sv">SIS-paket</comment>
+ <comment xml:lang="sr">СИС пакет</comment>
+ <comment xml:lang="sq">paketë SIS</comment>
+ <comment xml:lang="sl">Datoteka paketa SIS</comment>
+ <comment xml:lang="si">SIS පැකේජය</comment>
+ <comment xml:lang="sk">Balíček SIS</comment>
+ <comment xml:lang="ru">Пакет SIS</comment>
+ <comment xml:lang="ro">Pachet SIS</comment>
+ <comment xml:lang="pt_BR">Pacote SIS</comment>
+ <comment xml:lang="pt">pacote SIS</comment>
+ <comment xml:lang="pl">Pakiet SIS</comment>
+ <comment xml:lang="oc">paquet SIS</comment>
+ <comment xml:lang="nn">SIS-pakke</comment>
+ <comment xml:lang="nl">SIS-pakket</comment>
+ <comment xml:lang="nb">SIS-pakke</comment>
+ <comment xml:lang="lv">SIS pakotne</comment>
+ <comment xml:lang="lt">SIS paketas</comment>
+ <comment xml:lang="ko">SIS 패키지</comment>
+ <comment xml:lang="kk">SIS дестесі</comment>
+ <comment xml:lang="ja">SIS パッケージ</comment>
+ <comment xml:lang="it">Pacchetto SIS</comment>
+ <comment xml:lang="is">SIS pakki</comment>
+ <comment xml:lang="id">Paket SIS</comment>
+ <comment xml:lang="ia">Pacchetto SIS</comment>
+ <comment xml:lang="hu">SIS csomag</comment>
+ <comment xml:lang="hr">SIS paket</comment>
+ <comment xml:lang="he">חבילת SIS</comment>
+ <comment xml:lang="gl">paquete SIS</comment>
+ <comment xml:lang="ga">pacáiste SIS</comment>
+ <comment xml:lang="fur">pachet SIS</comment>
+ <comment xml:lang="fr">paquet SIS</comment>
+ <comment xml:lang="fo">SIS pakki</comment>
+ <comment xml:lang="fi">SIS-paketti</comment>
+ <comment xml:lang="eu">SIS paketea</comment>
+ <comment xml:lang="es">paquete SIS</comment>
+ <comment xml:lang="eo">SIS-pakaĵo</comment>
+ <comment xml:lang="en_GB">SIS package</comment>
+ <comment xml:lang="el">Πακέτο SIS</comment>
+ <comment xml:lang="de">SIS-Paket</comment>
+ <comment xml:lang="da">SIS-pakke</comment>
+ <comment xml:lang="cs">balíček SIS</comment>
+ <comment xml:lang="ca">paquet SIS</comment>
+ <comment xml:lang="bg">Пакет — SIS</comment>
+ <comment xml:lang="be@latin">Pakunak SIS</comment>
+ <comment xml:lang="be">пакет SIS</comment>
+ <comment xml:lang="ast">Paquete SIS</comment>
+ <comment xml:lang="ar">حزمة SIS</comment>
+ <comment xml:lang="af">SIS-pakket</comment>
<acronym>SIS</acronym>
<expanded-acronym>Symbian Installation File</expanded-acronym>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="0x10000419" type="little32" offset="8"/>
+ <magic>
+ <match type="little32" value="0x10000419" offset="8"/>
</magic>
<glob pattern="*.sis"/>
</mime-type>
<mime-type type="x-epoc/x-sisx-app">
<comment>SISX package</comment>
- <comment xml:lang="ar">حزمة SISX</comment>
- <comment xml:lang="ast">Paquete SISX</comment>
- <comment xml:lang="be@latin">Pakunak SISX</comment>
- <comment xml:lang="bg">Пакет — SISX</comment>
- <comment xml:lang="ca">paquet SISX</comment>
- <comment xml:lang="cs">balíček SISX</comment>
- <comment xml:lang="da">SISX-pakke</comment>
- <comment xml:lang="de">SISX-Paket</comment>
- <comment xml:lang="el">Πακέτο SISX</comment>
- <comment xml:lang="en_GB">SISX package</comment>
- <comment xml:lang="eo">SISX-pakaĵo</comment>
- <comment xml:lang="es">paquete SISX</comment>
- <comment xml:lang="eu">SISX paketea</comment>
- <comment xml:lang="fi">SISX-paketti</comment>
- <comment xml:lang="fo">SISX pakki</comment>
- <comment xml:lang="fr">paquet SISX</comment>
- <comment xml:lang="ga">pacáiste SISX</comment>
- <comment xml:lang="gl">paquete SISX</comment>
- <comment xml:lang="he">חבילת SISX</comment>
- <comment xml:lang="hr">SISX paket</comment>
- <comment xml:lang="hu">SISX csomag</comment>
- <comment xml:lang="ia">Pacchetto SISX</comment>
- <comment xml:lang="id">Paket SISX</comment>
- <comment xml:lang="it">Pacchetto SISX</comment>
- <comment xml:lang="ja">SISX パッケージ</comment>
- <comment xml:lang="kk">SISX дестесі</comment>
- <comment xml:lang="ko">SISX 패키지</comment>
- <comment xml:lang="lt">SISX paketas</comment>
- <comment xml:lang="lv">SISX pakotne</comment>
- <comment xml:lang="nb">SISX-pakke</comment>
- <comment xml:lang="nl">SISX-pakket</comment>
- <comment xml:lang="nn">SISX-pakke</comment>
- <comment xml:lang="oc">paquet SISX</comment>
- <comment xml:lang="pl">Pakiet SISX</comment>
- <comment xml:lang="pt">pacote SISX</comment>
- <comment xml:lang="pt_BR">Pacote SISX</comment>
- <comment xml:lang="ro">Pachet SISX</comment>
- <comment xml:lang="ru">Пакет SISX</comment>
- <comment xml:lang="sk">Balíček SISX</comment>
- <comment xml:lang="sl">Datoteka paketa SISX</comment>
- <comment xml:lang="sq">Paketë SISX</comment>
- <comment xml:lang="sr">СИСИкс пакет</comment>
- <comment xml:lang="sv">SISX-paket</comment>
- <comment xml:lang="tr">SISX paketi</comment>
- <comment xml:lang="uk">пакунок SISX</comment>
- <comment xml:lang="vi">Gói SISX</comment>
- <comment xml:lang="zh_CN">SISX 软件包</comment>
<comment xml:lang="zh_TW">SISX 軟體包</comment>
+ <comment xml:lang="zh_CN">SISX 软件包</comment>
+ <comment xml:lang="vi">Gói SISX</comment>
+ <comment xml:lang="uk">пакунок SISX</comment>
+ <comment xml:lang="tr">SISX paketi</comment>
+ <comment xml:lang="sv">SISX-paket</comment>
+ <comment xml:lang="sr">СИСИкс пакет</comment>
+ <comment xml:lang="sq">paketë SISX</comment>
+ <comment xml:lang="sl">Datoteka paketa SISX</comment>
+ <comment xml:lang="si">SISX පැකේජය</comment>
+ <comment xml:lang="sk">Balíček SISX</comment>
+ <comment xml:lang="ru">Пакет SISX</comment>
+ <comment xml:lang="ro">Pachet SISX</comment>
+ <comment xml:lang="pt_BR">Pacote SISX</comment>
+ <comment xml:lang="pt">pacote SISX</comment>
+ <comment xml:lang="pl">Pakiet SISX</comment>
+ <comment xml:lang="oc">paquet SISX</comment>
+ <comment xml:lang="nn">SISX-pakke</comment>
+ <comment xml:lang="nl">SISX-pakket</comment>
+ <comment xml:lang="nb">SISX-pakke</comment>
+ <comment xml:lang="lv">SISX pakotne</comment>
+ <comment xml:lang="lt">SISX paketas</comment>
+ <comment xml:lang="ko">SISX 패키지</comment>
+ <comment xml:lang="kk">SISX дестесі</comment>
+ <comment xml:lang="ja">SISX パッケージ</comment>
+ <comment xml:lang="it">Pacchetto SISX</comment>
+ <comment xml:lang="is">SISX pakki</comment>
+ <comment xml:lang="id">Paket SISX</comment>
+ <comment xml:lang="ia">Pacchetto SISX</comment>
+ <comment xml:lang="hu">SISX csomag</comment>
+ <comment xml:lang="hr">SISX paket</comment>
+ <comment xml:lang="he">חבילת SISX</comment>
+ <comment xml:lang="gl">paquete SISX</comment>
+ <comment xml:lang="ga">pacáiste SISX</comment>
+ <comment xml:lang="fur">pachet SISX</comment>
+ <comment xml:lang="fr">paquet SISX</comment>
+ <comment xml:lang="fo">SISX pakki</comment>
+ <comment xml:lang="fi">SISX-paketti</comment>
+ <comment xml:lang="eu">SISX paketea</comment>
+ <comment xml:lang="es">paquete SISX</comment>
+ <comment xml:lang="eo">SISX-pakaĵo</comment>
+ <comment xml:lang="en_GB">SISX package</comment>
+ <comment xml:lang="el">Πακέτο SISX</comment>
+ <comment xml:lang="de">SISX-Paket</comment>
+ <comment xml:lang="da">SISX-pakke</comment>
+ <comment xml:lang="cs">balíček SISX</comment>
+ <comment xml:lang="ca">paquet SISX</comment>
+ <comment xml:lang="bg">Пакет — SISX</comment>
+ <comment xml:lang="be@latin">Pakunak SISX</comment>
+ <comment xml:lang="be">пакет SISX</comment>
+ <comment xml:lang="ast">Paquete SISX</comment>
+ <comment xml:lang="ar">حزمة SISX</comment>
+ <comment xml:lang="af">SISX-pakket</comment>
<acronym>SIS</acronym>
<expanded-acronym>Symbian Installation File</expanded-acronym>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="0x10201a7a" type="little32" offset="0"/>
+ <magic>
+ <match type="little32" value="0x10201a7a" offset="0"/>
</magic>
<glob pattern="*.sisx"/>
</mime-type>
<mime-type type="application/vnd.tcpdump.pcap">
- <comment>Network Packet Capture</comment>
- <comment xml:lang="bg">Прихванати пакети по мрежата</comment>
- <comment xml:lang="ca">captura de paquets de xarxa</comment>
- <comment xml:lang="cs">Network Packet Capture</comment>
- <comment xml:lang="da">Netværkspakkeoptegnelse</comment>
- <comment xml:lang="de">Netzwerk-Paketmitschnitt</comment>
- <comment xml:lang="el">Σύλληψη πακέτων δικτύου</comment>
- <comment xml:lang="en_GB">Network Packet Capture</comment>
- <comment xml:lang="es">captura de paquete de red</comment>
- <comment xml:lang="eu">Sareko pakete kaptura</comment>
- <comment xml:lang="fi">Verkkopakettien kaappaus</comment>
- <comment xml:lang="fr">capture de paquet réseau</comment>
- <comment xml:lang="ga">Gabháltas Paicéid Líonra</comment>
- <comment xml:lang="gl">Captura de Network Packet</comment>
- <comment xml:lang="he">לכידה של מנות נתונים ברשת</comment>
- <comment xml:lang="hr">Mrežno hvatanje paketa</comment>
- <comment xml:lang="hu">Hálózati csomagelfogás</comment>
- <comment xml:lang="ia">Captura de pacchettos de rete</comment>
- <comment xml:lang="id">Tangkapan Paket Jaringan</comment>
- <comment xml:lang="it">Cattura pacchetti rete</comment>
- <comment xml:lang="ja">ネットワークパケットキャプチャー</comment>
- <comment xml:lang="ka">ქსელური პაკეტის ანაბეჭდი</comment>
- <comment xml:lang="kk">ұсталған желілік пакеттер</comment>
- <comment xml:lang="ko">네트워크 패킷 캡처</comment>
- <comment xml:lang="lv">Network Packet Capture</comment>
- <comment xml:lang="nl">Network Packet Capture</comment>
- <comment xml:lang="oc">captura de paquet ret</comment>
- <comment xml:lang="pl">Przechwycenie pakietu sieciowego</comment>
- <comment xml:lang="pt">captura Network Packet</comment>
- <comment xml:lang="pt_BR">Pacote de captura de rede</comment>
+ <comment>Network packet capture</comment>
+ <comment xml:lang="uk">перехоплення пакетів мережі</comment>
+ <comment xml:lang="sv">Nätverkspaketsspårning</comment>
<comment xml:lang="ru">Захваченные сетевые пакеты</comment>
- <comment xml:lang="sk">Zachytené sieťové pakety</comment>
- <comment xml:lang="sl">Zajem omrežnih paketov</comment>
- <comment xml:lang="sr">Снимање мрежног пакета</comment>
- <comment xml:lang="sv">Fångst av nätverkspaket</comment>
- <comment xml:lang="tr">Ağ Paket Yakalaması</comment>
- <comment xml:lang="uk">перехоплені дані мережевих пакетів</comment>
- <comment xml:lang="zh_CN">网络包抓取</comment>
- <comment xml:lang="zh_TW">網路封包捕捉</comment>
- <magic priority="50">
- <match value="0xa1b2c3d4" type="host32" offset="0"/>
- <match value="0xd4c3b2a1" type="host32" offset="0"/>
+ <comment xml:lang="pt_BR">Captura de pacotes de rede</comment>
+ <comment xml:lang="pl">Przechwycenie pakietu sieciowego</comment>
+ <comment xml:lang="it">Cattura pacchetti di rete</comment>
+ <comment xml:lang="gl">Captura de paquetes de red</comment>
+ <comment xml:lang="es">captura de paquetes de red</comment>
+ <comment xml:lang="de">Netzwerkpaket-Aufzeichnung</comment>
+ <comment xml:lang="be">захопленыя сеткавыя пакеты</comment>
+ <magic>
+ <match type="host32" value="0xa1b2c3d4" offset="0"/>
+ <match type="host32" value="0xd4c3b2a1" offset="0"/>
</magic>
<glob pattern="*.pcap"/>
<glob pattern="*.cap"/>
@@ -6765,63 +7183,69 @@
</mime-type>
<mime-type type="application/vnd.wordperfect">
<comment>WordPerfect document</comment>
- <comment xml:lang="ar">مستند WordPerfect</comment>
- <comment xml:lang="ast">Documentu de WordPerfect</comment>
- <comment xml:lang="az">WordPerfect sənədi</comment>
- <comment xml:lang="be@latin">Dakument WordPerfect</comment>
- <comment xml:lang="bg">Документ — WordPerfect</comment>
- <comment xml:lang="ca">document WordPerfect</comment>
- <comment xml:lang="cs">dokument WordPerfect</comment>
- <comment xml:lang="cy">Dogfen WordPerfect</comment>
- <comment xml:lang="da">WordPerfect-dokument</comment>
- <comment xml:lang="de">WordPerfect-Dokument</comment>
- <comment xml:lang="el">Έγγραφο WordPerfect</comment>
- <comment xml:lang="en_GB">WordPerfect document</comment>
- <comment xml:lang="eo">WordPerfect-dokumento</comment>
- <comment xml:lang="es">documento de WordPerfect</comment>
- <comment xml:lang="eu">WordPerfect dokumentua</comment>
- <comment xml:lang="fi">WordPerfect-asiakirja</comment>
- <comment xml:lang="fo">WordPerfect skjal</comment>
- <comment xml:lang="fr">document WordPerfect</comment>
- <comment xml:lang="ga">cáipéis WordPerfect</comment>
- <comment xml:lang="gl">documento de WordPerfect</comment>
- <comment xml:lang="he">מסמך WordPerfect</comment>
- <comment xml:lang="hr">WordPerfect dokument</comment>
- <comment xml:lang="hu">WordPerfect-dokumentum</comment>
- <comment xml:lang="ia">Documento WordPerfect</comment>
- <comment xml:lang="id">Dokumen WordPerfect</comment>
- <comment xml:lang="it">Documento WordPerfect</comment>
- <comment xml:lang="ja">WordPerfect ドキュメント</comment>
- <comment xml:lang="kk">WordPerfect құжаты</comment>
- <comment xml:lang="ko">WordPerfect 문서</comment>
- <comment xml:lang="lt">WordPerfect dokumentas</comment>
- <comment xml:lang="lv">WordPerfect dokuments</comment>
- <comment xml:lang="ms">Dokumen WordPerfect</comment>
- <comment xml:lang="nb">WordPerfect-dokument</comment>
- <comment xml:lang="nl">WordPerfect-document</comment>
- <comment xml:lang="nn">WordPerfect-dokument</comment>
- <comment xml:lang="oc">document WordPerfect</comment>
- <comment xml:lang="pl">Dokument WordPerfect</comment>
- <comment xml:lang="pt">documento WordPerfect</comment>
- <comment xml:lang="pt_BR">Documento do WordPerfect</comment>
- <comment xml:lang="ro">Document WordPerfect</comment>
- <comment xml:lang="ru">Документ WordPerfect</comment>
- <comment xml:lang="sk">Dokument WordPerfect</comment>
- <comment xml:lang="sl">Dokument WordPerfect</comment>
- <comment xml:lang="sq">Dokument WordPerfect</comment>
- <comment xml:lang="sr">документ Ворд перфекта</comment>
- <comment xml:lang="sv">WordPerfect-dokument</comment>
- <comment xml:lang="tr">WordPerfect belgesi</comment>
- <comment xml:lang="uk">документ WordPerfect</comment>
- <comment xml:lang="vi">Tài liệu WordPerfect</comment>
- <comment xml:lang="zh_CN">WordPerfect 文档</comment>
<comment xml:lang="zh_TW">WordPerfect 文件</comment>
+ <comment xml:lang="zh_CN">WordPerfect 文档</comment>
+ <comment xml:lang="vi">Tài liệu WordPerfect</comment>
+ <comment xml:lang="uk">документ WordPerfect</comment>
+ <comment xml:lang="tr">WordPerfect belgesi</comment>
+ <comment xml:lang="sv">WordPerfect-dokument</comment>
+ <comment xml:lang="sr">документ Ворд перфекта</comment>
+ <comment xml:lang="sq">dokument WordPerfect</comment>
+ <comment xml:lang="sl">Dokument WordPerfect</comment>
+ <comment xml:lang="si">WordPerfect ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument WordPerfect</comment>
+ <comment xml:lang="ru">Документ WordPerfect</comment>
+ <comment xml:lang="ro">Document WordPerfect</comment>
+ <comment xml:lang="pt_BR">Documento do WordPerfect</comment>
+ <comment xml:lang="pt">documento WordPerfect</comment>
+ <comment xml:lang="pl">Dokument WordPerfect</comment>
+ <comment xml:lang="oc">document WordPerfect</comment>
+ <comment xml:lang="nn">WordPerfect-dokument</comment>
+ <comment xml:lang="nl">WordPerfect-document</comment>
+ <comment xml:lang="nb">WordPerfect-dokument</comment>
+ <comment xml:lang="ms">Dokumen WordPerfect</comment>
+ <comment xml:lang="lv">WordPerfect dokuments</comment>
+ <comment xml:lang="lt">WordPerfect dokumentas</comment>
+ <comment xml:lang="ko">WordPerfect 문서</comment>
+ <comment xml:lang="kk">WordPerfect құжаты</comment>
+ <comment xml:lang="ka">WordPerfect -ის დოკუმენტი</comment>
+ <comment xml:lang="ja">WordPerfect ドキュメント</comment>
+ <comment xml:lang="it">Documento WordPerfect</comment>
+ <comment xml:lang="is">WordPerfect skjal</comment>
+ <comment xml:lang="id">Dokumen WordPerfect</comment>
+ <comment xml:lang="ia">Documento WordPerfect</comment>
+ <comment xml:lang="hu">WordPerfect-dokumentum</comment>
+ <comment xml:lang="hr">WordPerfect dokument</comment>
+ <comment xml:lang="he">מסמך WordPerfect</comment>
+ <comment xml:lang="gl">documento de WordPerfect</comment>
+ <comment xml:lang="ga">cáipéis WordPerfect</comment>
+ <comment xml:lang="fur">document WordPerfect</comment>
+ <comment xml:lang="fr">document WordPerfect</comment>
+ <comment xml:lang="fo">WordPerfect skjal</comment>
+ <comment xml:lang="fi">WordPerfect-asiakirja</comment>
+ <comment xml:lang="eu">WordPerfect dokumentua</comment>
+ <comment xml:lang="es">documento de WordPerfect</comment>
+ <comment xml:lang="eo">WordPerfect-dokumento</comment>
+ <comment xml:lang="en_GB">WordPerfect document</comment>
+ <comment xml:lang="el">Έγγραφο WordPerfect</comment>
+ <comment xml:lang="de">WordPerfect-Dokument</comment>
+ <comment xml:lang="da">WordPerfect-dokument</comment>
+ <comment xml:lang="cy">Dogfen WordPerfect</comment>
+ <comment xml:lang="cs">dokument WordPerfect</comment>
+ <comment xml:lang="ca">document WordPerfect</comment>
+ <comment xml:lang="bg">Документ — WordPerfect</comment>
+ <comment xml:lang="be@latin">Dakument WordPerfect</comment>
+ <comment xml:lang="be">дакумент WordPerfect</comment>
+ <comment xml:lang="az">WordPerfect sənədi</comment>
+ <comment xml:lang="ast">Documentu de WordPerfect</comment>
+ <comment xml:lang="ar">مستند WordPerfect</comment>
+ <comment xml:lang="af">WordPerfect-dokument</comment>
<alias type="application/x-wordperfect"/>
<alias type="application/wordperfect"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="WPC" type="string" offset="1"/>
-
+ <magic>
+ <match type="string" value="WPC" offset="1"/>
+ <!-- <match type="big32" value="0xff575053c405" offset="0"/> -->
</magic>
<glob pattern="*.wp"/>
<glob pattern="*.wp4"/>
@@ -6830,283 +7254,332 @@
<glob pattern="*.wpd"/>
<glob pattern="*.wpp"/>
</mime-type>
- <mime-type type="application/vnd.youtube.yt">
- <comment>YouTube Media Archive</comment>
+ <mime-type type="video/vnd.youtube.yt">
+ <comment>YouTube media archive</comment>
+ <comment xml:lang="zh_CN">YouTube 媒体存档</comment>
+ <comment xml:lang="uk">мультимедійний архів YouTube</comment>
+ <comment xml:lang="tr">YouTube ortam arşivi</comment>
+ <comment xml:lang="sv">YouTube-mediaarkiv</comment>
+ <comment xml:lang="sq">arkiv media YouTube</comment>
+ <comment xml:lang="sl">Medijski arhiv YouTube</comment>
+ <comment xml:lang="si">YouTube මාධ්‍ය සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív médií YouTube</comment>
+ <comment xml:lang="ru">Медиа-архив YouTube</comment>
+ <comment xml:lang="pt_BR">Arquivo de mídia do Youtube</comment>
+ <comment xml:lang="pt">arquivo multimédia do YouTube</comment>
+ <comment xml:lang="pl">Archiwum multimediów YouTube</comment>
+ <comment xml:lang="oc">archiu mèdia YouTube</comment>
+ <comment xml:lang="nl">YouTube-media-archief</comment>
+ <comment xml:lang="ko">유튜브 미디어 저장 파일</comment>
+ <comment xml:lang="kk">YouTube медиа архиві</comment>
+ <comment xml:lang="ja">YouTube メディアアーカイブ</comment>
+ <comment xml:lang="it">Archivio multimediale YouTube</comment>
+ <comment xml:lang="is">YouTube margmiðlunarsafnskrá</comment>
+ <comment xml:lang="id">Arsip media YouTube</comment>
+ <comment xml:lang="hu">YouTube médiaarchívum</comment>
+ <comment xml:lang="hr">YouTube medijska arhiva</comment>
+ <comment xml:lang="he">ארכיון מדיה של YouTube</comment>
+ <comment xml:lang="gl">Arquivo multimedia de Youtube</comment>
+ <comment xml:lang="fr">archive média YouTube</comment>
+ <comment xml:lang="fi">YouTube-media-arkisto</comment>
+ <comment xml:lang="eu">YouTube media fitxategia</comment>
+ <comment xml:lang="es">archivador multimedia de YouTube</comment>
+ <comment xml:lang="en_GB">YouTube media archive</comment>
+ <comment xml:lang="de">YouTube-Medienarchiv</comment>
+ <comment xml:lang="da">YouTube-mediearkiv</comment>
+ <comment xml:lang="ca">arxiu de mitjans de YouTube</comment>
+ <comment xml:lang="bg">Медиен архив — YouTube</comment>
+ <comment xml:lang="be">архіў мультымедыя YouTube</comment>
+ <comment xml:lang="ar">أرشيف وسائط يوتيوب</comment>
+ <alias type="application/vnd.youtube.yt"/>
<generic-icon name="video-x-generic"/>
+ <magic>
+ <match type="string" value="ftypyt4 " offset="4"/>
+ </magic>
<glob pattern="*.yt"/>
<sub-class-of type="application/zip"/>
</mime-type>
<mime-type type="application/x-spss-por">
- <comment>SPSS Portable Data File</comment>
- <comment xml:lang="ar">ملف بيانات SPSS متنقلة</comment>
- <comment xml:lang="bg">Данни — SPSS, преносими</comment>
- <comment xml:lang="ca">fitxer de dades portables SPSS</comment>
- <comment xml:lang="cs">soubor přenositelných dat SPSS</comment>
- <comment xml:lang="da">Portabel SPSS-datafil</comment>
- <comment xml:lang="de">SPSS portable Datendatei</comment>
- <comment xml:lang="el">Φορητό αρχείο δεδομένων SPSS</comment>
- <comment xml:lang="en_GB">SPSS Portable Data File</comment>
- <comment xml:lang="es">archivo de datos portátil de SPSS</comment>
- <comment xml:lang="eu">SPSS datuen fitxategi eramangarria</comment>
- <comment xml:lang="fo">SPSS flytifør dátufíla</comment>
- <comment xml:lang="fr">fichier portable de données SPSS</comment>
- <comment xml:lang="ga">comhad iniompartha sonraí SPSS</comment>
- <comment xml:lang="gl">ficheiro de datos portábel SPSS</comment>
- <comment xml:lang="he">קובץ מידע נייד SPSS</comment>
- <comment xml:lang="hr">SPSS prenosiva podatkovna datoteka</comment>
- <comment xml:lang="hu">SPSS hordozható adatfájl</comment>
- <comment xml:lang="ia">File portabile de datos SPSS</comment>
- <comment xml:lang="id">Berkas Data Portabel SPSS</comment>
- <comment xml:lang="it">File dati SPSS Portable</comment>
- <comment xml:lang="ja">SPSS ポータブルデータファイル</comment>
- <comment xml:lang="kk">SPSS тасымалы ақпарат файлы</comment>
- <comment xml:lang="ko">SPSS 이동식 데이터 파일</comment>
- <comment xml:lang="lt">SPSS perkeliamų duomenų failas</comment>
- <comment xml:lang="lv">SPSS pārvietojamu datu datne</comment>
- <comment xml:lang="nl">SPSS Portable Databestand</comment>
- <comment xml:lang="oc">fichièr portable de donadas SPSS</comment>
- <comment xml:lang="pl">Plik przenośnych danych SPSS</comment>
- <comment xml:lang="pt">ficheiro de dados portátil SPSS</comment>
- <comment xml:lang="pt_BR">Arquivo de Dados Portáteis SPSS</comment>
- <comment xml:lang="ro">Fișier portabil de date SPSS</comment>
- <comment xml:lang="ru">Файл переносимых данных SPSS</comment>
- <comment xml:lang="sk">Súbor prenosných dát SPSS</comment>
- <comment xml:lang="sl">Prenosna podatkovna datoteka SPSS</comment>
- <comment xml:lang="sr">СПСС датотека преносних података</comment>
- <comment xml:lang="sv">Portabel SPSS-datafil</comment>
- <comment xml:lang="tr">SPSS Taşınabilir Veri Dosyası</comment>
- <comment xml:lang="uk">файл даних SPSS Portable</comment>
+ <comment>SPSS portable data file</comment>
+ <comment xml:lang="zh_TW">SPSS 可攜資料檔</comment>
<comment xml:lang="zh_CN">SPSS 便携式数据文件</comment>
- <comment xml:lang="zh_TW">SPSS 可攜式資料檔</comment>
- <magic priority="50">
- <match value="ASCII SPSS PORT FILE" type="string" offset="40"/>
+ <comment xml:lang="uk">портативний файл даних SPSS</comment>
+ <comment xml:lang="tr">SPSS taşınabilir veri dosyası</comment>
+ <comment xml:lang="sv">SPSS portabel datafil</comment>
+ <comment xml:lang="sq">kartelë të dhënash të bartshme SPSS</comment>
+ <comment xml:lang="sl">Prenosna podatkovna datoteka SPSS</comment>
+ <comment xml:lang="si">SPSS අතේ ගෙන යා හැකි දත්ත ගොනුව</comment>
+ <comment xml:lang="sk">Súbor prenosných údajov SPSS</comment>
+ <comment xml:lang="ru">Файл переносимых данных SPSS</comment>
+ <comment xml:lang="pt_BR">Arquivo de dados portáteis SPSS</comment>
+ <comment xml:lang="pt">ficheiro de dados portátil SPSS</comment>
+ <comment xml:lang="pl">Plik przenośnych danych SPSS</comment>
+ <comment xml:lang="nl">SPSS-portable-gegevensbestand</comment>
+ <comment xml:lang="ko">SPSS 휴대 데이터 파일</comment>
+ <comment xml:lang="kk">SPSS тасымалы деректер файлы</comment>
+ <comment xml:lang="ka">SPSS გადატანადი მონაცემების ფაილი</comment>
+ <comment xml:lang="ja">SPSS ポータブルデータファイル</comment>
+ <comment xml:lang="it">File dati SPSS Portable</comment>
+ <comment xml:lang="is">yfirfæranleg SPSS gagnaskrá</comment>
+ <comment xml:lang="id">Berkas data portabel SPSS</comment>
+ <comment xml:lang="hu">SPSS hordozható adatfájl</comment>
+ <comment xml:lang="hr">SPSS prenosiva podatkovna datoteka</comment>
+ <comment xml:lang="he">קובץ נתונים נייד של SPSS</comment>
+ <comment xml:lang="gl">Ficheiro de datos portábel de SPSS</comment>
+ <comment xml:lang="fr">fichier portable de données SPSS</comment>
+ <comment xml:lang="fi">Siirrettävä SPSS-tiedosto</comment>
+ <comment xml:lang="eu">SPSS datu fitxategi eramangarria</comment>
+ <comment xml:lang="es">archivo de datos portátiles de SPSS</comment>
+ <comment xml:lang="en_GB">SPSS portable data file</comment>
+ <comment xml:lang="de">Portierbare SPSS-Datendatei</comment>
+ <comment xml:lang="da">SPSS portable data-fil</comment>
+ <comment xml:lang="ca">fitxer de dades portables SPSS</comment>
+ <comment xml:lang="bg">Данни — SPSS, преносими</comment>
+ <comment xml:lang="be">файл пераносу даных SPSS</comment>
+ <comment xml:lang="ar">ملف بيانات SPSS متنقل</comment>
+ <acronym>SPSS</acronym>
+ <expanded-acronym>Statistical Package for the Social Sciences</expanded-acronym>
+ <magic>
+ <match type="string" offset="40" value="ASCII SPSS PORT FILE"/>
</magic>
<glob pattern="*.por"/>
</mime-type>
<mime-type type="application/x-spss-sav">
- <comment>SPSS Data File</comment>
- <comment xml:lang="ar">ملف بيانات SPSS</comment>
- <comment xml:lang="bg">Данни — SPSS</comment>
- <comment xml:lang="ca">fitxer de dades SPSS</comment>
- <comment xml:lang="cs">datový soubor SPSS</comment>
- <comment xml:lang="da">SPSS-datafil</comment>
- <comment xml:lang="de">SPSS-Datendatei</comment>
- <comment xml:lang="el">Αρχείο δεδομένων SPSS</comment>
- <comment xml:lang="en_GB">SPSS Data File</comment>
- <comment xml:lang="es">archivo de datos SPSS</comment>
- <comment xml:lang="eu">SPSS datuen fitxategia</comment>
- <comment xml:lang="fi">SPSS-datatiedosto</comment>
- <comment xml:lang="fo">SPSS dátufíla</comment>
- <comment xml:lang="fr">fichier de données SPSS</comment>
- <comment xml:lang="ga">comhad sonraí SPSS</comment>
- <comment xml:lang="gl">ficheiro de datos SPSS</comment>
- <comment xml:lang="he">קובץ מידע SPSS</comment>
- <comment xml:lang="hr">SPSS podatkovna datoteka</comment>
- <comment xml:lang="hu">SPSS adatfájl</comment>
- <comment xml:lang="ia">File de datos SPSS</comment>
- <comment xml:lang="id">Berkas Data SPSS</comment>
- <comment xml:lang="it">File dati SPSS</comment>
- <comment xml:lang="ja">SPSS データファイル</comment>
- <comment xml:lang="kk">SPSS ақпарат файлы</comment>
- <comment xml:lang="ko">SPSS 데이터 파일</comment>
- <comment xml:lang="lt">SPSS duomenų failas</comment>
- <comment xml:lang="lv">SPSS datu datne</comment>
- <comment xml:lang="nl">SPSS Databstand</comment>
- <comment xml:lang="oc">fichièr de donadas SPSS</comment>
- <comment xml:lang="pl">Plik danych SPSS</comment>
- <comment xml:lang="pt">ficheiro de dados SPSS</comment>
- <comment xml:lang="pt_BR">Arquivo de dados SPSS</comment>
- <comment xml:lang="ro">Fișier date SPSS</comment>
- <comment xml:lang="ru">Файл данных SPSS</comment>
- <comment xml:lang="sk">Dátový súbor SPSS</comment>
- <comment xml:lang="sl">Podatkovna datoteka SPSS</comment>
- <comment xml:lang="sr">СПСС датотека података</comment>
- <comment xml:lang="sv">SPSS-datafil</comment>
- <comment xml:lang="tr">SPSS Veri Dosyası</comment>
- <comment xml:lang="uk">файл даних SPSS</comment>
- <comment xml:lang="zh_CN">SPSS 数据文件</comment>
+ <comment>SPSS data file</comment>
<comment xml:lang="zh_TW">SPSS 資料檔</comment>
+ <comment xml:lang="zh_CN">SPSS 数据文件</comment>
+ <comment xml:lang="uk">файл даних SPSS</comment>
+ <comment xml:lang="tr">SPSS veri dosyası</comment>
+ <comment xml:lang="sv">SPSS-datafil</comment>
+ <comment xml:lang="sq">kartelë të dhënash SPSS</comment>
+ <comment xml:lang="sl">Podatkovna datoteka SPSS</comment>
+ <comment xml:lang="si">SPSS දත්ත ගොනුව</comment>
+ <comment xml:lang="sk">Súbor údajov SPSS</comment>
+ <comment xml:lang="ru">Файл данных SPSS</comment>
+ <comment xml:lang="pt_BR">Arquivo de dados SPSS</comment>
+ <comment xml:lang="pt">ficheiro de dados SPSS</comment>
+ <comment xml:lang="pl">Plik danych SPSS</comment>
+ <comment xml:lang="nl">SPSS-gegevensbestand</comment>
+ <comment xml:lang="ko">SPSS 데이터 파일</comment>
+ <comment xml:lang="kk">SPSS деректер файлы</comment>
+ <comment xml:lang="ja">SPSS データファイル</comment>
+ <comment xml:lang="it">File dati SPSS</comment>
+ <comment xml:lang="is">SPSS gagnaskrá</comment>
+ <comment xml:lang="id">Berkas data SPSS</comment>
+ <comment xml:lang="hu">SPSS adatfájl</comment>
+ <comment xml:lang="hr">SPSS podatkovna datoteka</comment>
+ <comment xml:lang="he">קובץ נתונים של SPSS</comment>
+ <comment xml:lang="gl">Ficheiro de datos SPSS</comment>
+ <comment xml:lang="fr">fichier de données SPSS</comment>
+ <comment xml:lang="fi">SPSS-datatiedosto</comment>
+ <comment xml:lang="eu">SPSS datu fitxategia</comment>
+ <comment xml:lang="es">archivo de datos de SPSS</comment>
+ <comment xml:lang="en_GB">SPSS data file</comment>
+ <comment xml:lang="de">SPSS-Datendatei</comment>
+ <comment xml:lang="da">SPSS data-fil</comment>
+ <comment xml:lang="ca">fitxer de dades SPSS</comment>
+ <comment xml:lang="bg">Данни — SPSS</comment>
+ <comment xml:lang="be">файл даных SPSS</comment>
+ <comment xml:lang="ar">ملف بيانات SPSS</comment>
+ <acronym>SPSS</acronym>
+ <expanded-acronym>Statistical Package for the Social Sciences</expanded-acronym>
<alias type="application/x-spss-savefile"/>
- <magic priority="50">
- <match value="$FL2" type="string" offset="0"/>
- <match value="$FL3" type="string" offset="0"/>
+ <magic>
+ <match type="string" offset="0" value="$FL2"/>
+ <match type="string" offset="0" value="$FL3"/>
</magic>
<glob pattern="*.sav"/>
<glob pattern="*.zsav"/>
</mime-type>
<mime-type type="application/x-xbel">
<comment>XBEL bookmarks</comment>
- <comment xml:lang="ar">علامات XBEL</comment>
- <comment xml:lang="be@latin">Zakładki XBEL</comment>
- <comment xml:lang="bg">Отметки — XBEL</comment>
- <comment xml:lang="ca">llista d'adreces d'interès XBEL</comment>
- <comment xml:lang="cs">záložky XBEL</comment>
- <comment xml:lang="da">XBEL-bogmærker</comment>
- <comment xml:lang="de">XBEL-Lesezeichen</comment>
- <comment xml:lang="el">Σελιδοδείκτες XBEL</comment>
- <comment xml:lang="en_GB">XBEL bookmarks</comment>
- <comment xml:lang="eo">XBEL-legosignoj</comment>
- <comment xml:lang="es">marcadores XBEL</comment>
- <comment xml:lang="eu">XBEL laster-markak</comment>
- <comment xml:lang="fi">XBEL-kirjanmerkit</comment>
- <comment xml:lang="fo">XBEL bókamerki</comment>
- <comment xml:lang="fr">marque-pages XBEL</comment>
- <comment xml:lang="ga">leabharmharcanna XBEL</comment>
- <comment xml:lang="gl">Marcadores XBEL</comment>
- <comment xml:lang="he">סימניית XBEL</comment>
- <comment xml:lang="hr">XBEL zabilješka</comment>
- <comment xml:lang="hu">XBEL-könyvjelzők</comment>
- <comment xml:lang="ia">Marcapaginas XBEL</comment>
- <comment xml:lang="id">Bookmark XBEL</comment>
- <comment xml:lang="it">Segnalibri XBEL</comment>
- <comment xml:lang="ja">XBEL ブックマーク</comment>
- <comment xml:lang="kk">XBEL бетбелгілері</comment>
- <comment xml:lang="ko">XBEL 책갈피</comment>
- <comment xml:lang="lt">XBEL žymelės</comment>
- <comment xml:lang="lv">XBEL grāmatzīmes</comment>
- <comment xml:lang="ms">Tandabuku XBEL</comment>
- <comment xml:lang="nb">XBEL-bokmerker</comment>
- <comment xml:lang="nl">XBEL-bladwijzers</comment>
- <comment xml:lang="nn">XBEL-bokmerker</comment>
- <comment xml:lang="oc">marcapaginas XBEL</comment>
- <comment xml:lang="pl">Zakładki XBEL</comment>
- <comment xml:lang="pt">marcadores XBEL</comment>
- <comment xml:lang="pt_BR">Marcadores do XBEL</comment>
- <comment xml:lang="ro">Semne de carte XBEL</comment>
- <comment xml:lang="ru">Закладки XBEL</comment>
- <comment xml:lang="sk">Záložky XBEL</comment>
- <comment xml:lang="sl">Datoteka zaznamkov XBEL</comment>
- <comment xml:lang="sq">Libërshënues XBEL</comment>
- <comment xml:lang="sr">ИксБЕЛ обележивачи</comment>
- <comment xml:lang="sv">XBEL-bokmärken</comment>
- <comment xml:lang="tr">XBEL yer imleri</comment>
- <comment xml:lang="uk">закладки XBEL</comment>
- <comment xml:lang="vi">Liên kết đã lưu XBEL</comment>
- <comment xml:lang="zh_CN">XBEL 书签</comment>
<comment xml:lang="zh_TW">XBEL 格式書籤</comment>
+ <comment xml:lang="zh_CN">XBEL 书签</comment>
+ <comment xml:lang="vi">Liên kết đã lưu XBEL</comment>
+ <comment xml:lang="uk">закладки XBEL</comment>
+ <comment xml:lang="tr">XBEL yer imleri</comment>
+ <comment xml:lang="sv">XBEL-bokmärken</comment>
+ <comment xml:lang="sr">ИксБЕЛ обележивачи</comment>
+ <comment xml:lang="sq">faqerojtës XBEL</comment>
+ <comment xml:lang="sl">Datoteka zaznamkov XBEL</comment>
+ <comment xml:lang="si">XBEL පිටුසන්</comment>
+ <comment xml:lang="sk">Záložky XBEL</comment>
+ <comment xml:lang="ru">Закладки XBEL</comment>
+ <comment xml:lang="ro">Semne de carte XBEL</comment>
+ <comment xml:lang="pt_BR">Marcadores do XBEL</comment>
+ <comment xml:lang="pt">marcadores XBEL</comment>
+ <comment xml:lang="pl">Zakładki XBEL</comment>
+ <comment xml:lang="oc">marcapaginas XBEL</comment>
+ <comment xml:lang="nn">XBEL-bokmerker</comment>
+ <comment xml:lang="nl">XBEL-bladwijzers</comment>
+ <comment xml:lang="nb">XBEL-bokmerker</comment>
+ <comment xml:lang="ms">Tandabuku XBEL</comment>
+ <comment xml:lang="lv">XBEL grāmatzīmes</comment>
+ <comment xml:lang="lt">XBEL žymelės</comment>
+ <comment xml:lang="ko">XBEL 책갈피</comment>
+ <comment xml:lang="kk">XBEL бетбелгілері</comment>
+ <comment xml:lang="ja">XBEL ブックマーク</comment>
+ <comment xml:lang="it">Segnalibri XBEL</comment>
+ <comment xml:lang="is">XBEL bókamerki</comment>
+ <comment xml:lang="id">Bookmark XBEL</comment>
+ <comment xml:lang="ia">Marcapaginas XBEL</comment>
+ <comment xml:lang="hu">XBEL-könyvjelzők</comment>
+ <comment xml:lang="hr">XBEL zabilješka</comment>
+ <comment xml:lang="he">סימניית XBEL</comment>
+ <comment xml:lang="gl">Marcadores XBEL</comment>
+ <comment xml:lang="ga">leabharmharcanna XBEL</comment>
+ <comment xml:lang="fur">segnelibris XBEL</comment>
+ <comment xml:lang="fr">marque-pages XBEL</comment>
+ <comment xml:lang="fo">XBEL bókamerki</comment>
+ <comment xml:lang="fi">XBEL-kirjanmerkit</comment>
+ <comment xml:lang="eu">XBEL laster-markak</comment>
+ <comment xml:lang="es">marcadores XBEL</comment>
+ <comment xml:lang="eo">XBEL-legosignoj</comment>
+ <comment xml:lang="en_GB">XBEL bookmarks</comment>
+ <comment xml:lang="el">Σελιδοδείκτες XBEL</comment>
+ <comment xml:lang="de">XBEL-Lesezeichen</comment>
+ <comment xml:lang="da">XBEL-bogmærker</comment>
+ <comment xml:lang="cs">záložky XBEL</comment>
+ <comment xml:lang="ca">llista d'adreces d'interès XBEL</comment>
+ <comment xml:lang="bg">Отметки — XBEL</comment>
+ <comment xml:lang="be@latin">Zakładki XBEL</comment>
+ <comment xml:lang="be">закладкі XBEL</comment>
+ <comment xml:lang="ar">علامات XBEL</comment>
+ <comment xml:lang="af">XBEL-boekmerke</comment>
<acronym>XBEL</acronym>
<expanded-acronym>XML Bookmark Exchange Language</expanded-acronym>
<sub-class-of type="application/xml"/>
<generic-icon name="text-html"/>
- <magic priority="50">
- <match value="&lt;!DOCTYPE\ xbel" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;!DOCTYPE\ xbel" offset="0:256"/>
</magic>
<glob pattern="*.xbel"/>
</mime-type>
<mime-type type="application/x-7z-compressed">
<comment>7-zip archive</comment>
- <comment xml:lang="ar">أرشيف 7-zip</comment>
- <comment xml:lang="ast">Archivu 7-zip</comment>
- <comment xml:lang="be@latin">Archiŭ 7-zip</comment>
- <comment xml:lang="bg">Архив — 7-zip</comment>
- <comment xml:lang="ca">arxiu 7-zip</comment>
- <comment xml:lang="cs">archiv 7-zip</comment>
- <comment xml:lang="da">7-zip-arkiv</comment>
- <comment xml:lang="de">7zip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο 7-zip</comment>
- <comment xml:lang="en_GB">7-zip archive</comment>
- <comment xml:lang="eo">7z-arkivo</comment>
- <comment xml:lang="es">archivador 7-zip</comment>
- <comment xml:lang="eu">7-zip artxiboa</comment>
- <comment xml:lang="fi">7-zip-arkisto</comment>
- <comment xml:lang="fo">7-zip skjalasavn</comment>
- <comment xml:lang="fr">archive 7-zip</comment>
- <comment xml:lang="ga">cartlann 7-zip</comment>
- <comment xml:lang="gl">arquivo 7-zip</comment>
- <comment xml:lang="he">ארכיון 7-zip</comment>
- <comment xml:lang="hr">7-zip arhiva</comment>
- <comment xml:lang="hu">7-zip archívum</comment>
- <comment xml:lang="ia">Archivo 7-zip</comment>
- <comment xml:lang="id">Arsip 7-zip</comment>
- <comment xml:lang="it">Archivio 7-zip</comment>
- <comment xml:lang="ja">7-zip アーカイブ</comment>
- <comment xml:lang="ka">7-zip არქივი</comment>
- <comment xml:lang="kk">7-zip архиві</comment>
- <comment xml:lang="ko">7-ZIP 압축 파일</comment>
- <comment xml:lang="lt">7-zip archyvas</comment>
- <comment xml:lang="lv">7-zip arhīvs</comment>
- <comment xml:lang="nb">7-zip-arkiv</comment>
- <comment xml:lang="nl">7-zip-archief</comment>
- <comment xml:lang="nn">7-zip-arkiv</comment>
- <comment xml:lang="oc">archiu 7-zip</comment>
- <comment xml:lang="pl">Archiwum 7-zip</comment>
- <comment xml:lang="pt">arquivo 7-zip</comment>
- <comment xml:lang="pt_BR">Pacote 7-Zip</comment>
- <comment xml:lang="ro">Arhivă 7-zip</comment>
- <comment xml:lang="ru">Архив 7-zip</comment>
- <comment xml:lang="sk">Archív 7-zip</comment>
- <comment xml:lang="sl">Datoteka arhiva 7-zip</comment>
- <comment xml:lang="sq">Arkiv 7-zip</comment>
- <comment xml:lang="sr">7-зип архива</comment>
- <comment xml:lang="sv">7-zip-arkiv</comment>
- <comment xml:lang="tr">7-Zip arşivi</comment>
- <comment xml:lang="uk">архів 7-zip</comment>
- <comment xml:lang="vi">Kho nén 7-zip</comment>
- <comment xml:lang="zh_CN">7-zip 归档文件</comment>
<comment xml:lang="zh_TW">7-zip 封存檔</comment>
+ <comment xml:lang="zh_CN">7-zip 归档文件</comment>
+ <comment xml:lang="vi">Kho nén 7-zip</comment>
+ <comment xml:lang="uk">архів 7-zip</comment>
+ <comment xml:lang="tr">7-Zip arşivi</comment>
+ <comment xml:lang="sv">7-zip-arkiv</comment>
+ <comment xml:lang="sr">7-зип архива</comment>
+ <comment xml:lang="sq">arkiv 7-zip</comment>
+ <comment xml:lang="sl">Datoteka arhiva 7-zip</comment>
+ <comment xml:lang="si">7-zip සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív 7-zip</comment>
+ <comment xml:lang="ru">Архив 7-zip</comment>
+ <comment xml:lang="ro">Arhivă 7-zip</comment>
+ <comment xml:lang="pt_BR">Pacote 7-Zip</comment>
+ <comment xml:lang="pt">arquivo 7-zip</comment>
+ <comment xml:lang="pl">Archiwum 7-zip</comment>
+ <comment xml:lang="oc">archiu 7-zip</comment>
+ <comment xml:lang="nn">7-zip-arkiv</comment>
+ <comment xml:lang="nl">7-zip-archief</comment>
+ <comment xml:lang="nb">7-zip-arkiv</comment>
+ <comment xml:lang="lv">7-zip arhīvs</comment>
+ <comment xml:lang="lt">7-zip archyvas</comment>
+ <comment xml:lang="ko">7-ZIP 압축 파일</comment>
+ <comment xml:lang="kk">7-zip архиві</comment>
+ <comment xml:lang="ka">7-zip არქივი</comment>
+ <comment xml:lang="ja">7-zip アーカイブ</comment>
+ <comment xml:lang="it">Archivio 7-zip</comment>
+ <comment xml:lang="is">7-zip safnskrá</comment>
+ <comment xml:lang="id">Arsip 7-zip</comment>
+ <comment xml:lang="ia">Archivo 7-zip</comment>
+ <comment xml:lang="hu">7-zip archívum</comment>
+ <comment xml:lang="hr">7-zip arhiva</comment>
+ <comment xml:lang="he">ארכיון 7-zip</comment>
+ <comment xml:lang="gl">arquivo 7-zip</comment>
+ <comment xml:lang="ga">cartlann 7-zip</comment>
+ <comment xml:lang="fur">archivi 7-zip</comment>
+ <comment xml:lang="fr">archive 7-zip</comment>
+ <comment xml:lang="fo">7-zip skjalasavn</comment>
+ <comment xml:lang="fi">7-zip-arkisto</comment>
+ <comment xml:lang="eu">7-zip artxiboa</comment>
+ <comment xml:lang="es">archivador 7-zip</comment>
+ <comment xml:lang="eo">7z-arkivo</comment>
+ <comment xml:lang="en_GB">7-zip archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο 7-zip</comment>
+ <comment xml:lang="de">7-Zip-Archiv</comment>
+ <comment xml:lang="da">7-zip-arkiv</comment>
+ <comment xml:lang="cs">archiv 7-zip</comment>
+ <comment xml:lang="ca">arxiu 7-zip</comment>
+ <comment xml:lang="bg">Архив — 7-zip</comment>
+ <comment xml:lang="be@latin">Archiŭ 7-zip</comment>
+ <comment xml:lang="be">архіў 7-zip</comment>
+ <comment xml:lang="ast">Archivu 7-zip</comment>
+ <comment xml:lang="ar">أرشيف 7-zip</comment>
+ <comment xml:lang="af">7-zip-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="7z\274\257\047\034" type="string" offset="0"/>
+ <match type="string" value="7z\274\257\047\034" offset="0"/>
</magic>
<glob pattern="*.7z"/>
+ <glob pattern="*.7z.001"/>
</mime-type>
<mime-type type="application/x-abiword">
<comment>AbiWord document</comment>
- <comment xml:lang="ar">مستند آبي وورد</comment>
- <comment xml:lang="ast">Documentu d'AbiWord</comment>
- <comment xml:lang="be@latin">Dakument AbiWord</comment>
- <comment xml:lang="bg">Документ — AbiWord</comment>
- <comment xml:lang="ca">document AbiWord</comment>
- <comment xml:lang="cs">dokument AbiWord</comment>
- <comment xml:lang="da">AbiWord-dokument</comment>
- <comment xml:lang="de">AbiWord-Dokument</comment>
- <comment xml:lang="el">Έγγραφο AbiWord</comment>
- <comment xml:lang="en_GB">AbiWord document</comment>
- <comment xml:lang="eo">AbiWord-dokumento</comment>
- <comment xml:lang="es">documento de Abiword</comment>
- <comment xml:lang="eu">AbiWord dokumentua</comment>
- <comment xml:lang="fi">AbiWord-asiakirja</comment>
- <comment xml:lang="fo">AbiWord skjal</comment>
- <comment xml:lang="fr">document AbiWord</comment>
- <comment xml:lang="ga">cáipéis AbiWord</comment>
- <comment xml:lang="gl">documento de AbiWord</comment>
- <comment xml:lang="he">מסמך AbiWord</comment>
- <comment xml:lang="hr">AbiWord dokument</comment>
- <comment xml:lang="hu">AbiWord-dokumentum</comment>
- <comment xml:lang="ia">Documento AbiWord</comment>
- <comment xml:lang="id">Dokumen AbiWord</comment>
- <comment xml:lang="it">Documento AbiWord</comment>
- <comment xml:lang="ja">AbiWord ドキュメント</comment>
- <comment xml:lang="ka">AbiWord-ის დოკუმენტი</comment>
- <comment xml:lang="kk">AbiWord құжаты</comment>
- <comment xml:lang="ko">AbiWord 문서</comment>
- <comment xml:lang="lt">AbiWord dokumentas</comment>
- <comment xml:lang="lv">AbiWord dokuments</comment>
- <comment xml:lang="ms">Dokumen AbiWord</comment>
- <comment xml:lang="nb">AbiWord-dokument</comment>
- <comment xml:lang="nl">AbiWord-document</comment>
- <comment xml:lang="nn">AbiWord-dokument</comment>
- <comment xml:lang="oc">document AbiWord</comment>
- <comment xml:lang="pl">Dokument AbiWord</comment>
- <comment xml:lang="pt">documento AbiWord</comment>
- <comment xml:lang="pt_BR">Documento do AbiWord</comment>
- <comment xml:lang="ro">Document AbiWord</comment>
- <comment xml:lang="ru">Документ AbiWord</comment>
- <comment xml:lang="sk">Dokument AbiWord</comment>
- <comment xml:lang="sl">Dokument AbiWord</comment>
- <comment xml:lang="sq">Dokument AbiWord</comment>
- <comment xml:lang="sr">Абиворд документ</comment>
- <comment xml:lang="sv">AbiWord-dokument</comment>
- <comment xml:lang="tr">AbiWord belgesi</comment>
- <comment xml:lang="uk">документ AbiWord</comment>
- <comment xml:lang="vi">Tài liệu AbiWord</comment>
- <comment xml:lang="zh_CN">AbiWord 文档</comment>
<comment xml:lang="zh_TW">AbiWord 文件</comment>
+ <comment xml:lang="zh_CN">AbiWord 文档</comment>
+ <comment xml:lang="vi">Tài liệu AbiWord</comment>
+ <comment xml:lang="uk">документ AbiWord</comment>
+ <comment xml:lang="tr">AbiWord belgesi</comment>
+ <comment xml:lang="sv">AbiWord-dokument</comment>
+ <comment xml:lang="sr">Абиворд документ</comment>
+ <comment xml:lang="sq">dokument AbiWord</comment>
+ <comment xml:lang="sl">Dokument AbiWord</comment>
+ <comment xml:lang="si">AbiWord ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument AbiWord</comment>
+ <comment xml:lang="ru">Документ AbiWord</comment>
+ <comment xml:lang="ro">Document AbiWord</comment>
+ <comment xml:lang="pt_BR">Documento do AbiWord</comment>
+ <comment xml:lang="pt">documento AbiWord</comment>
+ <comment xml:lang="pl">Dokument AbiWord</comment>
+ <comment xml:lang="oc">document AbiWord</comment>
+ <comment xml:lang="nn">AbiWord-dokument</comment>
+ <comment xml:lang="nl">AbiWord-document</comment>
+ <comment xml:lang="nb">AbiWord-dokument</comment>
+ <comment xml:lang="ms">Dokumen AbiWord</comment>
+ <comment xml:lang="lv">AbiWord dokuments</comment>
+ <comment xml:lang="lt">AbiWord dokumentas</comment>
+ <comment xml:lang="ko">AbiWord 문서</comment>
+ <comment xml:lang="kk">AbiWord құжаты</comment>
+ <comment xml:lang="ka">AbiWord-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">AbiWord ドキュメント</comment>
+ <comment xml:lang="it">Documento AbiWord</comment>
+ <comment xml:lang="is">AbiWord skjal</comment>
+ <comment xml:lang="id">Dokumen AbiWord</comment>
+ <comment xml:lang="ia">Documento AbiWord</comment>
+ <comment xml:lang="hu">AbiWord-dokumentum</comment>
+ <comment xml:lang="hr">AbiWord dokument</comment>
+ <comment xml:lang="he">מסמך AbiWord</comment>
+ <comment xml:lang="gl">documento de AbiWord</comment>
+ <comment xml:lang="ga">cáipéis AbiWord</comment>
+ <comment xml:lang="fur">document AbiWord</comment>
+ <comment xml:lang="fr">document AbiWord</comment>
+ <comment xml:lang="fo">AbiWord skjal</comment>
+ <comment xml:lang="fi">AbiWord-asiakirja</comment>
+ <comment xml:lang="eu">AbiWord dokumentua</comment>
+ <comment xml:lang="es">documento de AbiWord</comment>
+ <comment xml:lang="eo">AbiWord-dokumento</comment>
+ <comment xml:lang="en_GB">AbiWord document</comment>
+ <comment xml:lang="el">Έγγραφο AbiWord</comment>
+ <comment xml:lang="de">AbiWord-Dokument</comment>
+ <comment xml:lang="da">AbiWord-dokument</comment>
+ <comment xml:lang="cs">dokument AbiWord</comment>
+ <comment xml:lang="ca">document AbiWord</comment>
+ <comment xml:lang="bg">Документ — AbiWord</comment>
+ <comment xml:lang="be@latin">Dakument AbiWord</comment>
+ <comment xml:lang="be">дакумент AbiWord</comment>
+ <comment xml:lang="ast">Documentu d'AbiWord</comment>
+ <comment xml:lang="ar">مستند آبي وورد</comment>
+ <comment xml:lang="af">AbiWord-dokument</comment>
<sub-class-of type="application/xml"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="&lt;abiword" type="string" offset="0:256"/>
- <match value="&lt;!DOCTYPE abiword" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;abiword" offset="0:256"/>
+ <match type="string" value="&lt;!DOCTYPE abiword" offset="0:256"/>
</magic>
<glob pattern="*.abw"/>
<glob pattern="*.abw.CRASHED"/>
@@ -7116,520 +7589,614 @@
</mime-type>
<mime-type type="application/x-cue">
<comment>CD image cuesheet</comment>
- <comment xml:lang="ar">صفيحة صورة الـCD جديلة</comment>
- <comment xml:lang="be@latin">Infarmacyjny arkuš vyjavy CD</comment>
- <comment xml:lang="bg">Описание на изображение на CD</comment>
- <comment xml:lang="ca">«cuesheet» d'imatge de CD</comment>
- <comment xml:lang="cs">rozvržení stop obrazu CD</comment>
- <comment xml:lang="da">Cd-aftrykscuesheet</comment>
- <comment xml:lang="de">CD-Abbild-Cuesheet</comment>
- <comment xml:lang="el">Φύλλο cue εικόνας CD</comment>
- <comment xml:lang="en_GB">CD image cuesheet</comment>
- <comment xml:lang="es">hoja CUE de imagen de CD</comment>
- <comment xml:lang="eu">CD irudiaren CUE orria</comment>
- <comment xml:lang="fi">CD-vedos cuesheet</comment>
- <comment xml:lang="fr">index de pistes de CD</comment>
- <comment xml:lang="ga">bileog chiúála íomhá CD</comment>
- <comment xml:lang="gl">cue sheet dunha imaxe de CD</comment>
- <comment xml:lang="he">גליון נתונים לתמונת דיסק</comment>
- <comment xml:lang="hr">CD slika s meta podacima</comment>
- <comment xml:lang="hu">CD kép cuesheet</comment>
- <comment xml:lang="ia">Indice de pistas de CD</comment>
- <comment xml:lang="id">Citra cuesheet CD</comment>
- <comment xml:lang="it">Cuesheet immagine CD</comment>
- <comment xml:lang="ja">CD イメージキューシート</comment>
- <comment xml:lang="kk">CD бейнесінің құрама кестесі</comment>
- <comment xml:lang="ko">CD 이미지 큐시트</comment>
- <comment xml:lang="lt">CD atvaizdžio aprašas</comment>
- <comment xml:lang="lv">CD attēla rindulapa</comment>
- <comment xml:lang="nb">Filliste for CD-avtrykk</comment>
- <comment xml:lang="nl">CD-inhoudsopgave</comment>
- <comment xml:lang="nn">CD-bilete-indeksfil</comment>
- <comment xml:lang="oc">indèx de pistas de CD</comment>
- <comment xml:lang="pl">Obraz cuesheet płyty CD</comment>
- <comment xml:lang="pt">índice de CD de imagem</comment>
- <comment xml:lang="pt_BR">Índice de Imagem de CD</comment>
- <comment xml:lang="ro">Imagine CD cuesheet</comment>
- <comment xml:lang="ru">Таблица содержания образа CD</comment>
- <comment xml:lang="sk">Rozvrhnutie stôp obrazu CD</comment>
- <comment xml:lang="sl">Datoteka razpredelnice odtisa CD cue</comment>
- <comment xml:lang="sq">Cuesheet imazhi CD</comment>
- <comment xml:lang="sr">Кју лист ЦД одраза</comment>
- <comment xml:lang="sv">Indexblad för cd-avbild</comment>
- <comment xml:lang="tr">CD görüntüsü belgesi</comment>
- <comment xml:lang="uk">таблиця CUE образу CD</comment>
- <comment xml:lang="vi">Tờ tín hiệu báo ảnh CD</comment>
- <comment xml:lang="zh_CN">CD 映像标记文件</comment>
<comment xml:lang="zh_TW">CD 映像指示表</comment>
+ <comment xml:lang="zh_CN">CD 映像标记文件</comment>
+ <comment xml:lang="vi">Tờ tín hiệu báo ảnh CD</comment>
+ <comment xml:lang="uk">таблиця CUE образу CD</comment>
+ <comment xml:lang="tr">CD görüntüsü çizelgesi</comment>
+ <comment xml:lang="sv">Indexblad för cd-avbild</comment>
+ <comment xml:lang="sr">Кју лист ЦД одраза</comment>
+ <comment xml:lang="sl">Datoteka razpredelnice odtisa CD cue</comment>
+ <comment xml:lang="si">සීඩී රූප කුට්ටිය</comment>
+ <comment xml:lang="sk">Rozvrhnutie stôp obrazu CD</comment>
+ <comment xml:lang="ru">Таблица содержания образа CD</comment>
+ <comment xml:lang="ro">Imagine CD cuesheet</comment>
+ <comment xml:lang="pt_BR">Índice de Imagem de CD</comment>
+ <comment xml:lang="pt">índice de imagem do CD</comment>
+ <comment xml:lang="pl">Obraz cuesheet płyty CD</comment>
+ <comment xml:lang="oc">indèx de pistas de CD</comment>
+ <comment xml:lang="nn">CD-bilete-indeksfil</comment>
+ <comment xml:lang="nl">CD-inhoudsopgave</comment>
+ <comment xml:lang="nb">Filliste for CD-avtrykk</comment>
+ <comment xml:lang="lv">CD attēla rindulapa</comment>
+ <comment xml:lang="lt">CD atvaizdžio aprašas</comment>
+ <comment xml:lang="ko">CD 이미지 큐시트</comment>
+ <comment xml:lang="kk">CD бейнесінің құрама кестесі</comment>
+ <comment xml:lang="ja">CD イメージキューシート</comment>
+ <comment xml:lang="it">Cuesheet immagine CD</comment>
+ <comment xml:lang="is">cuesheet CD diskmyndar</comment>
+ <comment xml:lang="id">Citra cuesheet CD</comment>
+ <comment xml:lang="ia">Indice de pistas de CD</comment>
+ <comment xml:lang="hu">CD lemezkép-jelölőlap</comment>
+ <comment xml:lang="hr">CD slika s meta podacima</comment>
+ <comment xml:lang="he">גיליון נתונים לדמות תקליטור</comment>
+ <comment xml:lang="gl">cue sheet dunha imaxe de CD</comment>
+ <comment xml:lang="ga">bileog chiúála íomhá CD</comment>
+ <comment xml:lang="fur">sfuei-brivade CUE de imagjin CD</comment>
+ <comment xml:lang="fr">index de pistes de CD</comment>
+ <comment xml:lang="fi">CD-levykuvan taulukko</comment>
+ <comment xml:lang="eu">CD irudiaren CUE orria</comment>
+ <comment xml:lang="es">hoja CUE de imagen de CD</comment>
+ <comment xml:lang="en_GB">CD image cuesheet</comment>
+ <comment xml:lang="el">Φύλλο cue εικόνας CD</comment>
+ <comment xml:lang="de">CD-Abbild-Cuesheet</comment>
+ <comment xml:lang="da">Cd-aftrykscuesheet</comment>
+ <comment xml:lang="cs">rozvržení stop obrazu CD</comment>
+ <comment xml:lang="ca">«cuesheet» d'imatge de CD</comment>
+ <comment xml:lang="bg">Съдържание на CD</comment>
+ <comment xml:lang="be@latin">Infarmacyjny arkuš vyjavy CD</comment>
+ <comment xml:lang="be">табліца разметкі вобраза CD</comment>
+ <comment xml:lang="ar">صفيحة صورة CD جديلة</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<glob pattern="*.cue"/>
</mime-type>
<mime-type type="application/x-amipro">
<comment>Lotus AmiPro document</comment>
- <comment xml:lang="ar">مستند Lotus AmiPro</comment>
- <comment xml:lang="ast">Documentu de Lotus AmiPro</comment>
- <comment xml:lang="az">Lotus AmiPro sənədi</comment>
- <comment xml:lang="be@latin">Dakument Lotus AmiPro</comment>
- <comment xml:lang="bg">Документ — Lotus AmiPro</comment>
- <comment xml:lang="ca">document de Lotus AmiPro</comment>
- <comment xml:lang="cs">dokument Lotus AmiPro</comment>
- <comment xml:lang="cy">Dogfen Lotus AmiPro</comment>
- <comment xml:lang="da">Lotus AmiPro-dokument</comment>
- <comment xml:lang="de">Lotus-AmiPro-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Lotus AmiPro</comment>
- <comment xml:lang="en_GB">Lotus AmiPro document</comment>
- <comment xml:lang="eo">dokumento de Lotus AmiPro</comment>
- <comment xml:lang="es">documento de Lotus AmiPro</comment>
- <comment xml:lang="eu">Lotus AmiPro dokumentua</comment>
- <comment xml:lang="fi">Lotus AmiPro -asiakirja</comment>
- <comment xml:lang="fo">Lotus AmiPro skjal</comment>
- <comment xml:lang="fr">document Lotus AmiPro</comment>
- <comment xml:lang="ga">cáipéis Lotus AmiPro</comment>
- <comment xml:lang="gl">documento de Lotus AmiPro</comment>
- <comment xml:lang="he">מסמך של Lotus AmiPro</comment>
- <comment xml:lang="hr">Lotus AmiPro dokument</comment>
- <comment xml:lang="hu">Lotus AmiPro-dokumentum</comment>
- <comment xml:lang="ia">Documento Lotus AmiPro</comment>
- <comment xml:lang="id">Dokumen Lotus AmiPro</comment>
- <comment xml:lang="it">Documento Lotus AmiPro</comment>
- <comment xml:lang="ja">Lotus AmiPro ドキュメント</comment>
- <comment xml:lang="kk">Lotus AmiPro құжаты</comment>
- <comment xml:lang="ko">Lotus AmiPro 문서</comment>
- <comment xml:lang="lt">Lotus AmiPro dokumentas</comment>
- <comment xml:lang="lv">Lotus AmiPro dokuments</comment>
- <comment xml:lang="ms">Dokumen Lotus AmiPro</comment>
- <comment xml:lang="nb">Lotus AmiPro-dokument</comment>
- <comment xml:lang="nl">Lotus AmiPro-document</comment>
- <comment xml:lang="nn">Lotus AmiPro-dokument</comment>
- <comment xml:lang="oc">document Lotus AmiPro</comment>
- <comment xml:lang="pl">Dokument Lotus AmiPro</comment>
- <comment xml:lang="pt">documento Lotus AmiPro</comment>
- <comment xml:lang="pt_BR">Documento do Lotus AmiPro</comment>
- <comment xml:lang="ro">Document Lotus AmiPro</comment>
- <comment xml:lang="ru">Документ Lotus AmiPro</comment>
- <comment xml:lang="sk">Dokument Lotus AmiPro</comment>
- <comment xml:lang="sl">Dokument Lotus AmiPro</comment>
- <comment xml:lang="sq">Dokument Lotus AmiPro</comment>
- <comment xml:lang="sr">Лотусов Ами Про документ</comment>
- <comment xml:lang="sv">Lotus AmiPro-dokument</comment>
- <comment xml:lang="tr">Lotus AmiPro belgesi</comment>
- <comment xml:lang="uk">документ Lotus AmiPro</comment>
- <comment xml:lang="vi">Tài liệu Lotus AmiPro</comment>
- <comment xml:lang="zh_CN">Lotus AmiPro 文档</comment>
<comment xml:lang="zh_TW">Lotus AmiPro 文件</comment>
+ <comment xml:lang="zh_CN">Lotus AmiPro 文档</comment>
+ <comment xml:lang="vi">Tài liệu Lotus AmiPro</comment>
+ <comment xml:lang="uk">документ Lotus AmiPro</comment>
+ <comment xml:lang="tr">Lotus AmiPro belgesi</comment>
+ <comment xml:lang="sv">Lotus AmiPro-dokument</comment>
+ <comment xml:lang="sr">Лотусов Ами Про документ</comment>
+ <comment xml:lang="sq">dokument Lotus AmiPro</comment>
+ <comment xml:lang="sl">Dokument Lotus AmiPro</comment>
+ <comment xml:lang="si">Lotus AmiPro ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Lotus AmiPro</comment>
+ <comment xml:lang="ru">Документ Lotus AmiPro</comment>
+ <comment xml:lang="ro">Document Lotus AmiPro</comment>
+ <comment xml:lang="pt_BR">Documento do Lotus AmiPro</comment>
+ <comment xml:lang="pt">documento Lotus AmiPro</comment>
+ <comment xml:lang="pl">Dokument Lotus AmiPro</comment>
+ <comment xml:lang="oc">document Lotus AmiPro</comment>
+ <comment xml:lang="nn">Lotus AmiPro-dokument</comment>
+ <comment xml:lang="nl">Lotus AmiPro-document</comment>
+ <comment xml:lang="nb">Lotus AmiPro-dokument</comment>
+ <comment xml:lang="ms">Dokumen Lotus AmiPro</comment>
+ <comment xml:lang="lv">Lotus AmiPro dokuments</comment>
+ <comment xml:lang="lt">Lotus AmiPro dokumentas</comment>
+ <comment xml:lang="ko">Lotus AmiPro 문서</comment>
+ <comment xml:lang="kk">Lotus AmiPro құжаты</comment>
+ <comment xml:lang="ja">Lotus AmiPro ドキュメント</comment>
+ <comment xml:lang="it">Documento Lotus AmiPro</comment>
+ <comment xml:lang="is">Lotus AmiPro skjal</comment>
+ <comment xml:lang="id">Dokumen Lotus AmiPro</comment>
+ <comment xml:lang="ia">Documento Lotus AmiPro</comment>
+ <comment xml:lang="hu">Lotus AmiPro-dokumentum</comment>
+ <comment xml:lang="hr">Lotus AmiPro dokument</comment>
+ <comment xml:lang="he">מסמך של Lotus AmiPro</comment>
+ <comment xml:lang="gl">documento de Lotus AmiPro</comment>
+ <comment xml:lang="ga">cáipéis Lotus AmiPro</comment>
+ <comment xml:lang="fur">document Lotus AmiPro</comment>
+ <comment xml:lang="fr">document Lotus AmiPro</comment>
+ <comment xml:lang="fo">Lotus AmiPro skjal</comment>
+ <comment xml:lang="fi">Lotus AmiPro -asiakirja</comment>
+ <comment xml:lang="eu">Lotus AmiPro dokumentua</comment>
+ <comment xml:lang="es">documento de Lotus AmiPro</comment>
+ <comment xml:lang="eo">dokumento de Lotus AmiPro</comment>
+ <comment xml:lang="en_GB">Lotus AmiPro document</comment>
+ <comment xml:lang="el">Έγγραφο Lotus AmiPro</comment>
+ <comment xml:lang="de">Lotus-AmiPro-Dokument</comment>
+ <comment xml:lang="da">Lotus AmiPro-dokument</comment>
+ <comment xml:lang="cy">Dogfen Lotus AmiPro</comment>
+ <comment xml:lang="cs">dokument Lotus AmiPro</comment>
+ <comment xml:lang="ca">document de Lotus AmiPro</comment>
+ <comment xml:lang="bg">Документ — Lotus AmiPro</comment>
+ <comment xml:lang="be@latin">Dakument Lotus AmiPro</comment>
+ <comment xml:lang="be">дакумент Lotus AmiPro</comment>
+ <comment xml:lang="az">Lotus AmiPro sənədi</comment>
+ <comment xml:lang="ast">Documentu de Lotus AmiPro</comment>
+ <comment xml:lang="ar">مستند Lotus AmiPro</comment>
+ <comment xml:lang="af">Lotus AmiPro-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.sam"/>
</mime-type>
<mime-type type="application/x-aportisdoc">
<comment>AportisDoc document</comment>
- <comment xml:lang="ar">مستند AportisDoc</comment>
- <comment xml:lang="ast">Documentu d'AportisDoc</comment>
- <comment xml:lang="bg">Документ — AportisDoc</comment>
- <comment xml:lang="ca">document AportisDoc</comment>
- <comment xml:lang="cs">dokument AportisDoc</comment>
- <comment xml:lang="da">AportisDoc-dokument</comment>
- <comment xml:lang="de">AportisDoc-Dokument</comment>
- <comment xml:lang="el">Έγγραφο AportisDoc</comment>
- <comment xml:lang="en_GB">AportisDoc document</comment>
- <comment xml:lang="eo">AportisDoc-dokumento</comment>
- <comment xml:lang="es">documento de AportisDoc</comment>
- <comment xml:lang="eu">AportisDoc dokumentua</comment>
- <comment xml:lang="fi">AportisDoc-asiakirja</comment>
- <comment xml:lang="fo">AportisDoc skjal</comment>
- <comment xml:lang="fr">document AportisDoc</comment>
- <comment xml:lang="ga">cáipéis AportisDoc</comment>
- <comment xml:lang="gl">documento de AportiDoc</comment>
- <comment xml:lang="he">מסמך AportisDoc</comment>
- <comment xml:lang="hr">AportisDoc dokument</comment>
- <comment xml:lang="hu">AportisDoc-dokumentum</comment>
- <comment xml:lang="ia">Documento AportisDoc</comment>
- <comment xml:lang="id">Dokumen AportisDoc</comment>
- <comment xml:lang="it">Documento AportisDoc</comment>
- <comment xml:lang="ja">AportisDoc ドキュメント</comment>
- <comment xml:lang="ka">AportisDoc-ის დოკუმენტი</comment>
- <comment xml:lang="kk">AportisDoc құжаты</comment>
- <comment xml:lang="ko">AportisDoc 문서</comment>
- <comment xml:lang="lt">AportisDoc dokumentas</comment>
- <comment xml:lang="lv">AportisDoc dokuments</comment>
- <comment xml:lang="nl">AportisDoc-document</comment>
- <comment xml:lang="oc">document AportisDoc</comment>
- <comment xml:lang="pl">Dokument AportisDoc</comment>
- <comment xml:lang="pt">documento AportisDoc</comment>
- <comment xml:lang="pt_BR">Documento do AportisDoc</comment>
- <comment xml:lang="ro">Document AportisDoc</comment>
- <comment xml:lang="ru">Документ AportisDoc</comment>
- <comment xml:lang="sk">Dokument AportisDoc</comment>
- <comment xml:lang="sl">Dokument AportisDoc</comment>
- <comment xml:lang="sr">Апортис Док документ</comment>
- <comment xml:lang="sv">AportisDoc-dokument</comment>
- <comment xml:lang="tr">AportisDoc belgesi</comment>
- <comment xml:lang="uk">документ AportisDoc</comment>
- <comment xml:lang="vi">Tài liệu AportisDoc</comment>
- <comment xml:lang="zh_CN">AportisDoc 文档</comment>
<comment xml:lang="zh_TW">AportisDoc 文件</comment>
+ <comment xml:lang="zh_CN">AportisDoc 文档</comment>
+ <comment xml:lang="vi">Tài liệu AportisDoc</comment>
+ <comment xml:lang="uk">документ AportisDoc</comment>
+ <comment xml:lang="tr">AportisDoc belgesi</comment>
+ <comment xml:lang="sv">AportisDoc-dokument</comment>
+ <comment xml:lang="sr">Апортис Док документ</comment>
+ <comment xml:lang="sq">dokument AportisDoc</comment>
+ <comment xml:lang="sl">Dokument AportisDoc</comment>
+ <comment xml:lang="si">AportisDoc ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument AportisDoc</comment>
+ <comment xml:lang="ru">Документ AportisDoc</comment>
+ <comment xml:lang="ro">Document AportisDoc</comment>
+ <comment xml:lang="pt_BR">Documento do AportisDoc</comment>
+ <comment xml:lang="pt">documento AportisDoc</comment>
+ <comment xml:lang="pl">Dokument AportisDoc</comment>
+ <comment xml:lang="oc">document AportisDoc</comment>
+ <comment xml:lang="nl">AportisDoc-document</comment>
+ <comment xml:lang="lv">AportisDoc dokuments</comment>
+ <comment xml:lang="lt">AportisDoc dokumentas</comment>
+ <comment xml:lang="ko">AportisDoc 문서</comment>
+ <comment xml:lang="kk">AportisDoc құжаты</comment>
+ <comment xml:lang="ka">AportisDoc-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">AportisDoc ドキュメント</comment>
+ <comment xml:lang="it">Documento AportisDoc</comment>
+ <comment xml:lang="is">AportisDoc skjal</comment>
+ <comment xml:lang="id">Dokumen AportisDoc</comment>
+ <comment xml:lang="ia">Documento AportisDoc</comment>
+ <comment xml:lang="hu">AportisDoc-dokumentum</comment>
+ <comment xml:lang="hr">AportisDoc dokument</comment>
+ <comment xml:lang="he">מסמך AportisDoc</comment>
+ <comment xml:lang="gl">documento de AportiDoc</comment>
+ <comment xml:lang="ga">cáipéis AportisDoc</comment>
+ <comment xml:lang="fur">document AportisDoc</comment>
+ <comment xml:lang="fr">document AportisDoc</comment>
+ <comment xml:lang="fo">AportisDoc skjal</comment>
+ <comment xml:lang="fi">AportisDoc-asiakirja</comment>
+ <comment xml:lang="eu">AportisDoc dokumentua</comment>
+ <comment xml:lang="es">documento de AportisDoc</comment>
+ <comment xml:lang="eo">AportisDoc-dokumento</comment>
+ <comment xml:lang="en_GB">AportisDoc document</comment>
+ <comment xml:lang="el">Έγγραφο AportisDoc</comment>
+ <comment xml:lang="de">AportisDoc-Dokument</comment>
+ <comment xml:lang="da">AportisDoc-dokument</comment>
+ <comment xml:lang="cs">dokument AportisDoc</comment>
+ <comment xml:lang="ca">document AportisDoc</comment>
+ <comment xml:lang="bg">Документ — AportisDoc</comment>
+ <comment xml:lang="be">дакумент AportisDoc</comment>
+ <comment xml:lang="ast">Documentu d'AportisDoc</comment>
+ <comment xml:lang="ar">مستند AportisDoc</comment>
+ <comment xml:lang="af">AportisDoc-dokument</comment>
<sub-class-of type="application/vnd.palm"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="TEXtREAd" type="string" offset="60"/>
- <match value="TEXtTlDc" type="string" offset="60"/>
+ <magic>
+ <match type="string" value="TEXtREAd" offset="60"/>
+ <match type="string" value="TEXtTlDc" offset="60"/>
</magic>
- <glob pattern="*.pdb"/>
+ <glob pattern="*.pdb" weight="30"/>
<glob pattern="*.pdc"/>
</mime-type>
+ <mime-type type="chemical/x-pdb">
+ <comment>Protein Data Bank file</comment>
+ <comment xml:lang="uk">файл банку даних протеїнів</comment>
+ <comment xml:lang="sv">Protein Data Bank-fil</comment>
+ <comment xml:lang="ru">Файл Protein Data Bank</comment>
+ <comment xml:lang="pl">Plik Protein Data Bank</comment>
+ <comment xml:lang="de">Protein-Datenbank-Datei</comment>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-generic"/>
+ <magic priority="40">
+ <match type="string" value="HEADER " offset="0"/>
+ </magic>
+ <glob pattern="*.pdb"/>
+ <glob pattern="*.brk"/>
+ </mime-type>
<mime-type type="application/x-applix-spreadsheet">
<comment>Applix Spreadsheets spreadsheet</comment>
- <comment xml:lang="ar">جداول بيانات Applix</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš Applix Spreadsheets</comment>
- <comment xml:lang="bg">Таблица — Applix Spreadsheets</comment>
- <comment xml:lang="ca">full de càlcul d'Applix Spreadsheets</comment>
- <comment xml:lang="cs">sešit Applix Spreadsheets</comment>
- <comment xml:lang="da">Applix Spreadsheets-regneark</comment>
- <comment xml:lang="de">Applix-Spreadsheets-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Applix Spreadsheets</comment>
- <comment xml:lang="en_GB">Applix Spreadsheets spreadsheet</comment>
- <comment xml:lang="eo">sterntabelo de Applix Spreadsheets</comment>
- <comment xml:lang="es">hoja de cálculo de Applix Spreadsheets</comment>
- <comment xml:lang="eu">Applix Spreadsheets kalkulu-orria</comment>
- <comment xml:lang="fi">Applix Spreadsheets -taulukko</comment>
- <comment xml:lang="fo">Applix Spreadsheets rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Applix</comment>
- <comment xml:lang="ga">scarbhileog Applix Spreadsheets</comment>
- <comment xml:lang="gl">folla de cálculo de Applix</comment>
- <comment xml:lang="he">גליון נתונים של Applix Spreadsheets</comment>
- <comment xml:lang="hr">Applix Spreadsheets proračunska tablica</comment>
- <comment xml:lang="hu">Applix Spreadsheets-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo Applix Spreadsheets</comment>
- <comment xml:lang="id">Lembar sebar Applix Spreadsheets</comment>
- <comment xml:lang="it">Foglio di calcolo Applix Spreadsheets</comment>
- <comment xml:lang="ja">Applix Spreadsheets スプレッドシート</comment>
- <comment xml:lang="ka">Applix Spreadsheets-ის ცხრილი</comment>
- <comment xml:lang="kk">Applix Spreadsheets электрондық кестесі</comment>
- <comment xml:lang="ko">Applix 스프레드시트</comment>
- <comment xml:lang="lt">Applix Spreadsheets skaičialentė</comment>
- <comment xml:lang="lv">Applix Spreadsheets izklājlapa</comment>
- <comment xml:lang="ms">Hamparan Applix Spreadsheets</comment>
- <comment xml:lang="nb">Applix Spreadsheets-regneark</comment>
- <comment xml:lang="nl">Applix Spreadsheets-rekenblad</comment>
- <comment xml:lang="nn">Applix Spreadsheets-dokument</comment>
- <comment xml:lang="oc">fuèlh de calcul Applix</comment>
- <comment xml:lang="pl">Arkusz Applix Spreadsheets</comment>
- <comment xml:lang="pt">folha de cálculo Applix Spreadsheets</comment>
- <comment xml:lang="pt_BR">Planilha do Applix Spreadsheets</comment>
- <comment xml:lang="ro">Foaie de calcul Applix</comment>
- <comment xml:lang="ru">Электронная таблица Applix Spreadsheets</comment>
- <comment xml:lang="sk">Zošit Applix Spreadsheets</comment>
- <comment xml:lang="sl">Razpredelnica Applix Spreadsheets</comment>
- <comment xml:lang="sq">Fletë llogaritjesh Applix Spreadsheets</comment>
- <comment xml:lang="sr">документ Апликсове Табеле</comment>
- <comment xml:lang="sv">Applix Spreadsheets-kalkylblad</comment>
- <comment xml:lang="tr">Applix Spreadsheets çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Applix Spreadsheets</comment>
- <comment xml:lang="vi">Bảng tính Applix Spreadsheets</comment>
- <comment xml:lang="zh_CN">Applix Spreadsheets 电子表格</comment>
<comment xml:lang="zh_TW">Applix Spreadsheets 試算表</comment>
+ <comment xml:lang="zh_CN">Applix Spreadsheets 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Applix Spreadsheets</comment>
+ <comment xml:lang="uk">електронна таблиця Applix Spreadsheets</comment>
+ <comment xml:lang="tr">Applix Spreadsheets hesap çizelgesi</comment>
+ <comment xml:lang="sv">Applix Spreadsheets-kalkylblad</comment>
+ <comment xml:lang="sr">документ Апликсове Табеле</comment>
+ <comment xml:lang="sq">fletëllogaritje Applix Spreadsheets</comment>
+ <comment xml:lang="sl">Razpredelnica Applix Spreadsheets</comment>
+ <comment xml:lang="si">Applix පැතුරුම්පත් පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Applix Spreadsheets</comment>
+ <comment xml:lang="ru">Электронная таблица Applix Spreadsheets</comment>
+ <comment xml:lang="ro">Foaie de calcul Applix</comment>
+ <comment xml:lang="pt_BR">Planilha do Applix Spreadsheets</comment>
+ <comment xml:lang="pt">folha de cálculo Applix Spreadsheets</comment>
+ <comment xml:lang="pl">Arkusz Applix Spreadsheets</comment>
+ <comment xml:lang="oc">fuèlh de calcul Applix</comment>
+ <comment xml:lang="nn">Applix Spreadsheets-dokument</comment>
+ <comment xml:lang="nl">Applix Spreadsheets-rekenblad</comment>
+ <comment xml:lang="nb">Applix Spreadsheets-regneark</comment>
+ <comment xml:lang="ms">Hamparan Applix Spreadsheets</comment>
+ <comment xml:lang="lv">Applix Spreadsheets izklājlapa</comment>
+ <comment xml:lang="lt">Applix Spreadsheets skaičialentė</comment>
+ <comment xml:lang="ko">Applix 스프레드시트</comment>
+ <comment xml:lang="kk">Applix Spreadsheets электрондық кестесі</comment>
+ <comment xml:lang="ka">Applix Spreadsheets-ის ცხრილი</comment>
+ <comment xml:lang="ja">Applix Spreadsheets スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Applix Spreadsheets</comment>
+ <comment xml:lang="is">Applix Spreadsheets töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Applix Spreadsheets</comment>
+ <comment xml:lang="ia">Folio de calculo Applix Spreadsheets</comment>
+ <comment xml:lang="hu">Applix Spreadsheets-munkafüzet</comment>
+ <comment xml:lang="hr">Applix Spreadsheets proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Applix Spreadsheets</comment>
+ <comment xml:lang="gl">folla de cálculo de Applix</comment>
+ <comment xml:lang="ga">scarbhileog Applix Spreadsheets</comment>
+ <comment xml:lang="fur">sfuei di calcul Applix Spreadsheets</comment>
+ <comment xml:lang="fr">feuille de calcul Applix</comment>
+ <comment xml:lang="fo">Applix Spreadsheets rokniark</comment>
+ <comment xml:lang="fi">Applix Spreadsheets -taulukko</comment>
+ <comment xml:lang="eu">Applix Spreadsheets kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Applix Spreadsheets</comment>
+ <comment xml:lang="eo">sterntabelo de Applix Spreadsheets</comment>
+ <comment xml:lang="en_GB">Applix Spreadsheets spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Applix Spreadsheets</comment>
+ <comment xml:lang="de">Applix-Spreadsheets-Tabelle</comment>
+ <comment xml:lang="da">Applix Spreadsheets-regneark</comment>
+ <comment xml:lang="cs">sešit Applix Spreadsheets</comment>
+ <comment xml:lang="ca">full de càlcul d'Applix Spreadsheets</comment>
+ <comment xml:lang="bg">Таблица — Applix Spreadsheets</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš Applix Spreadsheets</comment>
+ <comment xml:lang="be">электронная табліца Applix Spreadsheets</comment>
+ <comment xml:lang="ar">جداول بيانات Applix</comment>
+ <comment xml:lang="af">Applix Spreadsheets-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="*BEGIN SPREADSHEETS" type="string" offset="0"/>
- <match value="*BEGIN" type="string" offset="0">
- <match value="SPREADSHEETS" type="string" offset="7"/>
+ <magic>
+ <match type="string" value="*BEGIN SPREADSHEETS" offset="0"/>
+ <match type="string" value="*BEGIN" offset="0">
+ <match type="string" value="SPREADSHEETS" offset="7"/>
</match>
</magic>
<glob pattern="*.as"/>
</mime-type>
<mime-type type="application/x-applix-word">
<comment>Applix Words document</comment>
- <comment xml:lang="ar">مستند كلمات Applix</comment>
- <comment xml:lang="ast">Documentu d'Applix Words</comment>
- <comment xml:lang="az">Applix Words sənədi</comment>
- <comment xml:lang="be@latin">Dakument Applix Words</comment>
- <comment xml:lang="bg">Документ — Applix Words</comment>
- <comment xml:lang="ca">document d'Applix Words</comment>
- <comment xml:lang="cs">dokument Applix Words</comment>
- <comment xml:lang="cy">Dogfen Applix Words</comment>
- <comment xml:lang="da">Applix Words-dokument</comment>
- <comment xml:lang="de">Applix-Words-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Applix Words</comment>
- <comment xml:lang="en_GB">Applix Words document</comment>
- <comment xml:lang="eo">dokumento de Applix Words</comment>
- <comment xml:lang="es">documento de Applix Words</comment>
- <comment xml:lang="eu">Applix Words dokumentua</comment>
- <comment xml:lang="fi">Applix Words -asiakirja</comment>
- <comment xml:lang="fo">Applix Words skjal</comment>
- <comment xml:lang="fr">document Applix Words</comment>
- <comment xml:lang="ga">cáipéis Applix Words</comment>
- <comment xml:lang="gl">documento de Applix Words</comment>
- <comment xml:lang="he">מסמך של Applix Words</comment>
- <comment xml:lang="hr">Applix Words dokument</comment>
- <comment xml:lang="hu">Applix Words-dokumentum</comment>
- <comment xml:lang="ia">Documento Applix Words</comment>
- <comment xml:lang="id">Dokumen Applix Words</comment>
- <comment xml:lang="it">Documento Applix Words</comment>
- <comment xml:lang="ja">Applix Words ドキュメント</comment>
- <comment xml:lang="ka">Applix Words-ის დოკუმენტი</comment>
- <comment xml:lang="kk">Applix Words құжаты</comment>
- <comment xml:lang="ko">Applix Words 문서</comment>
- <comment xml:lang="lt">Applix Words dokumentas</comment>
- <comment xml:lang="lv">Applix Words dokuments</comment>
- <comment xml:lang="ms">Dokumen Perkataan Applix</comment>
- <comment xml:lang="nb">Applix Words-dokument</comment>
- <comment xml:lang="nl">Applix Words-document</comment>
- <comment xml:lang="nn">Applix Words dokument</comment>
- <comment xml:lang="oc">document Applix Words</comment>
- <comment xml:lang="pl">Dokument Applix Words</comment>
- <comment xml:lang="pt">documento Applix Words</comment>
- <comment xml:lang="pt_BR">Documento do Applix Words</comment>
- <comment xml:lang="ro">Document Applix Words</comment>
- <comment xml:lang="ru">Документ Applix Words</comment>
- <comment xml:lang="sk">Dokument Applix Words</comment>
- <comment xml:lang="sl">Dokument Applix Words</comment>
- <comment xml:lang="sq">Dokument Applix Words</comment>
- <comment xml:lang="sr">документ Апликсових Речи</comment>
- <comment xml:lang="sv">Applix Words-dokument</comment>
- <comment xml:lang="tr">Applix Words belgesi</comment>
- <comment xml:lang="uk">документ Applix Words</comment>
- <comment xml:lang="vi">Tài liệu Applix Words</comment>
- <comment xml:lang="zh_CN">Applix Words 文档</comment>
<comment xml:lang="zh_TW">Applix Words 文件</comment>
+ <comment xml:lang="zh_CN">Applix Words 文档</comment>
+ <comment xml:lang="vi">Tài liệu Applix Words</comment>
+ <comment xml:lang="uk">документ Applix Words</comment>
+ <comment xml:lang="tr">Applix Words belgesi</comment>
+ <comment xml:lang="sv">Applix Words-dokument</comment>
+ <comment xml:lang="sr">документ Апликсових Речи</comment>
+ <comment xml:lang="sq">dokument Applix Words</comment>
+ <comment xml:lang="sl">Dokument Applix Words</comment>
+ <comment xml:lang="si">Applix Words ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Applix Words</comment>
+ <comment xml:lang="ru">Документ Applix Words</comment>
+ <comment xml:lang="ro">Document Applix Words</comment>
+ <comment xml:lang="pt_BR">Documento do Applix Words</comment>
+ <comment xml:lang="pt">documento Applix Words</comment>
+ <comment xml:lang="pl">Dokument Applix Words</comment>
+ <comment xml:lang="oc">document Applix Words</comment>
+ <comment xml:lang="nn">Applix Words dokument</comment>
+ <comment xml:lang="nl">Applix Words-document</comment>
+ <comment xml:lang="nb">Applix Words-dokument</comment>
+ <comment xml:lang="ms">Dokumen Perkataan Applix</comment>
+ <comment xml:lang="lv">Applix Words dokuments</comment>
+ <comment xml:lang="lt">Applix Words dokumentas</comment>
+ <comment xml:lang="ko">Applix Words 문서</comment>
+ <comment xml:lang="kk">Applix Words құжаты</comment>
+ <comment xml:lang="ka">Applix Words-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Applix Words ドキュメント</comment>
+ <comment xml:lang="it">Documento Applix Words</comment>
+ <comment xml:lang="is">Applix Words skjal</comment>
+ <comment xml:lang="id">Dokumen Applix Words</comment>
+ <comment xml:lang="ia">Documento Applix Words</comment>
+ <comment xml:lang="hu">Applix Words-dokumentum</comment>
+ <comment xml:lang="hr">Applix Words dokument</comment>
+ <comment xml:lang="he">מסמך של Applix Words</comment>
+ <comment xml:lang="gl">documento de Applix Words</comment>
+ <comment xml:lang="ga">cáipéis Applix Words</comment>
+ <comment xml:lang="fur">document Applix Words</comment>
+ <comment xml:lang="fr">document Applix Words</comment>
+ <comment xml:lang="fo">Applix Words skjal</comment>
+ <comment xml:lang="fi">Applix Words -asiakirja</comment>
+ <comment xml:lang="eu">Applix Words dokumentua</comment>
+ <comment xml:lang="es">documento de Applix Words</comment>
+ <comment xml:lang="eo">dokumento de Applix Words</comment>
+ <comment xml:lang="en_GB">Applix Words document</comment>
+ <comment xml:lang="el">Έγγραφο Applix Words</comment>
+ <comment xml:lang="de">Applix-Words-Dokument</comment>
+ <comment xml:lang="da">Applix Words-dokument</comment>
+ <comment xml:lang="cy">Dogfen Applix Words</comment>
+ <comment xml:lang="cs">dokument Applix Words</comment>
+ <comment xml:lang="ca">document d'Applix Words</comment>
+ <comment xml:lang="bg">Документ — Applix Words</comment>
+ <comment xml:lang="be@latin">Dakument Applix Words</comment>
+ <comment xml:lang="be">дакумент Applix Words</comment>
+ <comment xml:lang="az">Applix Words sənədi</comment>
+ <comment xml:lang="ast">Documentu d'Applix Words</comment>
+ <comment xml:lang="ar">مستند كلمات Applix</comment>
+ <comment xml:lang="af">Applix Words-dokument</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="*BEGIN" type="string" offset="0">
- <match value="WORDS" type="string" offset="7"/>
+ <magic>
+ <match type="string" value="*BEGIN" offset="0">
+ <match type="string" value="WORDS" offset="7"/>
</match>
</magic>
<glob pattern="*.aw"/>
</mime-type>
<mime-type type="application/x-arc">
<comment>ARC archive</comment>
- <comment xml:lang="ar">أرشيف ARC</comment>
- <comment xml:lang="be@latin">Archiŭ ARC</comment>
- <comment xml:lang="bg">Архив — ARC</comment>
- <comment xml:lang="ca">arxiu ARC</comment>
- <comment xml:lang="cs">archiv ARC</comment>
- <comment xml:lang="da">ARC-arkiv</comment>
- <comment xml:lang="de">ARC-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο ARC</comment>
- <comment xml:lang="en_GB">ARC archive</comment>
- <comment xml:lang="eo">ARC-arkivo</comment>
- <comment xml:lang="es">archivador ARC</comment>
- <comment xml:lang="eu">ARC artxiboa</comment>
- <comment xml:lang="fi">ARC-arkisto</comment>
- <comment xml:lang="fo">ARC skjalasavn</comment>
- <comment xml:lang="fr">archive ARC</comment>
- <comment xml:lang="ga">cartlann ARC</comment>
- <comment xml:lang="gl">arquivo ARC</comment>
- <comment xml:lang="he">ארכיון ARC</comment>
- <comment xml:lang="hr">ARC arhiva</comment>
- <comment xml:lang="hu">ARC-archívum</comment>
- <comment xml:lang="ia">Archivo ARC</comment>
- <comment xml:lang="id">Arsip ARC</comment>
- <comment xml:lang="it">Archivio ARC</comment>
- <comment xml:lang="ja">ARC アーカイブ</comment>
- <comment xml:lang="ka">ARC არქივი</comment>
- <comment xml:lang="kk">ARC архиві</comment>
- <comment xml:lang="ko">ARC 압축 파일</comment>
- <comment xml:lang="lt">ARC archyvas</comment>
- <comment xml:lang="lv">ARC arhīvs</comment>
- <comment xml:lang="nb">ARC-arkiv</comment>
- <comment xml:lang="nl">ARC-archief</comment>
- <comment xml:lang="nn">ARC-arkiv</comment>
- <comment xml:lang="oc">archiu ARC</comment>
- <comment xml:lang="pl">Archiwum ARC</comment>
- <comment xml:lang="pt">arquivo ARC</comment>
- <comment xml:lang="pt_BR">Pacote ARC</comment>
- <comment xml:lang="ro">Arhivă ARC</comment>
- <comment xml:lang="ru">Архив ARC</comment>
- <comment xml:lang="sk">Archív ARC</comment>
- <comment xml:lang="sl">Datoteka arhiva ARC</comment>
- <comment xml:lang="sq">Arkiv ARC</comment>
- <comment xml:lang="sr">АРЦ архива</comment>
- <comment xml:lang="sv">ARC-arkiv</comment>
- <comment xml:lang="tr">ARC arşivi</comment>
- <comment xml:lang="uk">архів ARC</comment>
- <comment xml:lang="vi">Kho nén ARC</comment>
- <comment xml:lang="zh_CN">ARC 归档文件</comment>
<comment xml:lang="zh_TW">ARC 封存檔</comment>
+ <comment xml:lang="zh_CN">ARC 归档文件</comment>
+ <comment xml:lang="vi">Kho nén ARC</comment>
+ <comment xml:lang="uk">архів ARC</comment>
+ <comment xml:lang="tr">ARC arşivi</comment>
+ <comment xml:lang="sv">ARC-arkiv</comment>
+ <comment xml:lang="sr">АРЦ архива</comment>
+ <comment xml:lang="sq">arkiv ARC</comment>
+ <comment xml:lang="sl">Datoteka arhiva ARC</comment>
+ <comment xml:lang="si">ARC ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív ARC</comment>
+ <comment xml:lang="ru">Архив ARC</comment>
+ <comment xml:lang="ro">Arhivă ARC</comment>
+ <comment xml:lang="pt_BR">Pacote ARC</comment>
+ <comment xml:lang="pt">arquivo ARC</comment>
+ <comment xml:lang="pl">Archiwum ARC</comment>
+ <comment xml:lang="oc">archiu ARC</comment>
+ <comment xml:lang="nn">ARC-arkiv</comment>
+ <comment xml:lang="nl">ARC-archief</comment>
+ <comment xml:lang="nb">ARC-arkiv</comment>
+ <comment xml:lang="lv">ARC arhīvs</comment>
+ <comment xml:lang="lt">ARC archyvas</comment>
+ <comment xml:lang="ko">ARC 압축 파일</comment>
+ <comment xml:lang="kk">ARC архиві</comment>
+ <comment xml:lang="ka">ARC არქივი</comment>
+ <comment xml:lang="ja">ARC アーカイブ</comment>
+ <comment xml:lang="it">Archivio ARC</comment>
+ <comment xml:lang="is">ARC safnskrá</comment>
+ <comment xml:lang="id">Arsip ARC</comment>
+ <comment xml:lang="ia">Archivo ARC</comment>
+ <comment xml:lang="hu">ARC-archívum</comment>
+ <comment xml:lang="hr">ARC arhiva</comment>
+ <comment xml:lang="he">ארכיון ARC</comment>
+ <comment xml:lang="gl">arquivo ARC</comment>
+ <comment xml:lang="ga">cartlann ARC</comment>
+ <comment xml:lang="fur">archivi ARC</comment>
+ <comment xml:lang="fr">archive ARC</comment>
+ <comment xml:lang="fo">ARC skjalasavn</comment>
+ <comment xml:lang="fi">ARC-arkisto</comment>
+ <comment xml:lang="eu">ARC artxiboa</comment>
+ <comment xml:lang="es">archivador ARC</comment>
+ <comment xml:lang="eo">ARC-arkivo</comment>
+ <comment xml:lang="en_GB">ARC archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο ARC</comment>
+ <comment xml:lang="de">ARC-Archiv</comment>
+ <comment xml:lang="da">ARC-arkiv</comment>
+ <comment xml:lang="cs">archiv ARC</comment>
+ <comment xml:lang="ca">arxiu ARC</comment>
+ <comment xml:lang="bg">Архив — ARC</comment>
+ <comment xml:lang="be@latin">Archiŭ ARC</comment>
+ <comment xml:lang="be">архіў ARC</comment>
+ <comment xml:lang="ar">أرشيف ARC</comment>
+ <comment xml:lang="af">ARC-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="0x0000081a" type="little32" offset="0" mask="0x8080ffff"/>
- <match value="0x0000091a" type="little32" offset="0" mask="0x8080ffff"/>
- <match value="0x0000021a" type="little32" offset="0" mask="0x8080ffff"/>
- <match value="0x0000031a" type="little32" offset="0" mask="0x8080ffff"/>
- <match value="0x0000041a" type="little32" offset="0" mask="0x8080ffff"/>
- <match value="0x0000061a" type="little32" offset="0" mask="0x8080ffff"/>
+ <match type="little32" mask="0x8080ffff" value="0x0000081a" offset="0"/>
+ <match type="little32" mask="0x8080ffff" value="0x0000091a" offset="0"/>
+ <match type="little32" mask="0x8080ffff" value="0x0000021a" offset="0"/>
+ <match type="little32" mask="0x8080ffff" value="0x0000031a" offset="0"/>
+ <match type="little32" mask="0x8080ffff" value="0x0000041a" offset="0"/>
+ <match type="little32" mask="0x8080ffff" value="0x0000061a" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-archive">
<comment>AR archive</comment>
- <comment xml:lang="ar">أرشيف AR</comment>
- <comment xml:lang="be@latin">Archiŭ AR</comment>
- <comment xml:lang="bg">Архив — AR</comment>
- <comment xml:lang="ca">arxiu AR</comment>
- <comment xml:lang="cs">archiv AR</comment>
- <comment xml:lang="da">AR-arkiv</comment>
- <comment xml:lang="de">AR-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο AR</comment>
- <comment xml:lang="en_GB">AR archive</comment>
- <comment xml:lang="eo">AR-arkivo</comment>
- <comment xml:lang="es">archivador AR</comment>
- <comment xml:lang="eu">AR artxiboa</comment>
- <comment xml:lang="fi">AR-arkisto</comment>
- <comment xml:lang="fo">AR skjalasavn</comment>
- <comment xml:lang="fr">archive AR</comment>
- <comment xml:lang="ga">cartlann AR</comment>
- <comment xml:lang="gl">arquivo AR</comment>
- <comment xml:lang="he">ארכיון AR</comment>
- <comment xml:lang="hr">AR arhiva</comment>
- <comment xml:lang="hu">AR-archívum</comment>
- <comment xml:lang="ia">Archivo AR</comment>
- <comment xml:lang="id">Arsip AR</comment>
- <comment xml:lang="it">Archivio AR</comment>
- <comment xml:lang="ja">AR アーカイブ</comment>
- <comment xml:lang="ka">AR არქივი</comment>
- <comment xml:lang="kk">AR архиві</comment>
- <comment xml:lang="ko">AR 묶음 파일</comment>
- <comment xml:lang="lt">AR archyvas</comment>
- <comment xml:lang="lv">AR arhīvs</comment>
- <comment xml:lang="ms">Arkib AR</comment>
- <comment xml:lang="nb">AR-arkiv</comment>
- <comment xml:lang="nl">AR-archief</comment>
- <comment xml:lang="nn">AR-arkiv</comment>
- <comment xml:lang="oc">archiu AR</comment>
- <comment xml:lang="pl">Archiwum AR</comment>
- <comment xml:lang="pt">arquivo AR</comment>
- <comment xml:lang="pt_BR">Pacote AR</comment>
- <comment xml:lang="ro">Arhivă AR</comment>
- <comment xml:lang="ru">Архив AR</comment>
- <comment xml:lang="sk">Archív AR</comment>
- <comment xml:lang="sl">Datoteka arhiva AR</comment>
- <comment xml:lang="sq">Arkiv AR</comment>
- <comment xml:lang="sr">АР архива</comment>
- <comment xml:lang="sv">AR-arkiv</comment>
- <comment xml:lang="tr">AR arşivi</comment>
- <comment xml:lang="uk">архів AR</comment>
- <comment xml:lang="vi">Kho nén AR</comment>
- <comment xml:lang="zh_CN">AR 归档文件</comment>
<comment xml:lang="zh_TW">AR 封存檔</comment>
+ <comment xml:lang="zh_CN">AR 归档文件</comment>
+ <comment xml:lang="vi">Kho nén AR</comment>
+ <comment xml:lang="uk">архів AR</comment>
+ <comment xml:lang="tr">AR arşivi</comment>
+ <comment xml:lang="sv">AR-arkiv</comment>
+ <comment xml:lang="sr">АР архива</comment>
+ <comment xml:lang="sq">arkiv AR</comment>
+ <comment xml:lang="sl">Datoteka arhiva AR</comment>
+ <comment xml:lang="si">AR ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív AR</comment>
+ <comment xml:lang="ru">Архив AR</comment>
+ <comment xml:lang="ro">Arhivă AR</comment>
+ <comment xml:lang="pt_BR">Pacote AR</comment>
+ <comment xml:lang="pt">arquivo AR</comment>
+ <comment xml:lang="pl">Archiwum AR</comment>
+ <comment xml:lang="oc">archiu AR</comment>
+ <comment xml:lang="nn">AR-arkiv</comment>
+ <comment xml:lang="nl">AR-archief</comment>
+ <comment xml:lang="nb">AR-arkiv</comment>
+ <comment xml:lang="ms">Arkib AR</comment>
+ <comment xml:lang="lv">AR arhīvs</comment>
+ <comment xml:lang="lt">AR archyvas</comment>
+ <comment xml:lang="ko">AR 묶음 파일</comment>
+ <comment xml:lang="kk">AR архиві</comment>
+ <comment xml:lang="ka">AR არქივი</comment>
+ <comment xml:lang="ja">AR アーカイブ</comment>
+ <comment xml:lang="it">Archivio AR</comment>
+ <comment xml:lang="is">AR safnskrá</comment>
+ <comment xml:lang="id">Arsip AR</comment>
+ <comment xml:lang="ia">Archivo AR</comment>
+ <comment xml:lang="hu">AR-archívum</comment>
+ <comment xml:lang="hr">AR arhiva</comment>
+ <comment xml:lang="he">ארכיון AR</comment>
+ <comment xml:lang="gl">arquivo AR</comment>
+ <comment xml:lang="ga">cartlann AR</comment>
+ <comment xml:lang="fur">archivi AR</comment>
+ <comment xml:lang="fr">archive AR</comment>
+ <comment xml:lang="fo">AR skjalasavn</comment>
+ <comment xml:lang="fi">AR-arkisto</comment>
+ <comment xml:lang="eu">AR artxiboa</comment>
+ <comment xml:lang="es">archivador AR</comment>
+ <comment xml:lang="eo">AR-arkivo</comment>
+ <comment xml:lang="en_GB">AR archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο AR</comment>
+ <comment xml:lang="de">AR-Archiv</comment>
+ <comment xml:lang="da">AR-arkiv</comment>
+ <comment xml:lang="cs">archiv AR</comment>
+ <comment xml:lang="ca">arxiu AR</comment>
+ <comment xml:lang="bg">Архив — AR</comment>
+ <comment xml:lang="be@latin">Archiŭ AR</comment>
+ <comment xml:lang="be">архіў AR</comment>
+ <comment xml:lang="ar">أرشيف AR</comment>
+ <comment xml:lang="af">AR-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="45">
- <match value="&lt;ar&gt;" type="string" offset="0"/>
- <match value="!&lt;arch&gt;" type="string" offset="0"/>
+ <match type="string" value="&lt;ar&gt;" offset="0"/>
+ <match type="string" value="!&lt;arch&gt;" offset="0"/>
</magic>
<glob pattern="*.a"/>
<glob pattern="*.ar"/>
</mime-type>
<mime-type type="application/x-arj">
<comment>ARJ archive</comment>
- <comment xml:lang="ar">أرشيف ARJ</comment>
- <comment xml:lang="az">ARJ arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ ARJ</comment>
- <comment xml:lang="bg">Архив — ARJ</comment>
- <comment xml:lang="ca">arxiu ARJ</comment>
- <comment xml:lang="cs">archiv ARJ</comment>
- <comment xml:lang="cy">Archif ARJ</comment>
- <comment xml:lang="da">ARJ-arkiv</comment>
- <comment xml:lang="de">ARJ-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο ARJ</comment>
- <comment xml:lang="en_GB">ARJ archive</comment>
- <comment xml:lang="eo">ARJ-arkivo</comment>
- <comment xml:lang="es">archivador ARJ</comment>
- <comment xml:lang="eu">ARJ artxiboa</comment>
- <comment xml:lang="fi">ARJ-arkisto</comment>
- <comment xml:lang="fo">ARJ skjalasavn</comment>
- <comment xml:lang="fr">archive ARJ</comment>
- <comment xml:lang="ga">cartlann ARJ</comment>
- <comment xml:lang="gl">arquivo ARJ</comment>
- <comment xml:lang="he">ארכיון ARJ</comment>
- <comment xml:lang="hr">ARJ arhiva</comment>
- <comment xml:lang="hu">ARJ-archívum</comment>
- <comment xml:lang="ia">Archivo ARJ</comment>
- <comment xml:lang="id">Arsip ARJ</comment>
- <comment xml:lang="it">Archivio ARJ</comment>
- <comment xml:lang="ja">ARJ アーカイブ</comment>
- <comment xml:lang="ka">ARJ არქივი</comment>
- <comment xml:lang="kk">ARJ архиві</comment>
- <comment xml:lang="ko">ARJ 압축 파일</comment>
- <comment xml:lang="lt">ARJ archyvas</comment>
- <comment xml:lang="lv">ARJ arhīvs</comment>
- <comment xml:lang="ms">Arkib ARJ</comment>
- <comment xml:lang="nb">ARJ-arkiv</comment>
- <comment xml:lang="nl">ARJ-archief</comment>
- <comment xml:lang="nn">ARJ-arkiv</comment>
- <comment xml:lang="oc">archiu ARJ</comment>
- <comment xml:lang="pl">Archiwum ARJ</comment>
- <comment xml:lang="pt">arquivo ARJ</comment>
- <comment xml:lang="pt_BR">Pacote ARJ</comment>
- <comment xml:lang="ro">Arhivă ARJ</comment>
- <comment xml:lang="ru">Архив ARJ</comment>
- <comment xml:lang="sk">Archív ARJ</comment>
- <comment xml:lang="sl">Datoteka arhiva ARJ</comment>
- <comment xml:lang="sq">Arkiv ARJ</comment>
- <comment xml:lang="sr">АРЈ архива</comment>
- <comment xml:lang="sv">ARJ-arkiv</comment>
- <comment xml:lang="tr">ARJ arşivi</comment>
- <comment xml:lang="uk">архів ARJ</comment>
- <comment xml:lang="vi">Kho nén ARJ</comment>
- <comment xml:lang="zh_CN">ARJ 归档文件</comment>
<comment xml:lang="zh_TW">ARJ 封存檔</comment>
+ <comment xml:lang="zh_CN">ARJ 归档文件</comment>
+ <comment xml:lang="vi">Kho nén ARJ</comment>
+ <comment xml:lang="uk">архів ARJ</comment>
+ <comment xml:lang="tr">ARJ arşivi</comment>
+ <comment xml:lang="sv">ARJ-arkiv</comment>
+ <comment xml:lang="sr">АРЈ архива</comment>
+ <comment xml:lang="sq">arkiv ARJ</comment>
+ <comment xml:lang="sl">Datoteka arhiva ARJ</comment>
+ <comment xml:lang="si">ARJ ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív ARJ</comment>
+ <comment xml:lang="ru">Архив ARJ</comment>
+ <comment xml:lang="ro">Arhivă ARJ</comment>
+ <comment xml:lang="pt_BR">Pacote ARJ</comment>
+ <comment xml:lang="pt">arquivo ARJ</comment>
+ <comment xml:lang="pl">Archiwum ARJ</comment>
+ <comment xml:lang="oc">archiu ARJ</comment>
+ <comment xml:lang="nn">ARJ-arkiv</comment>
+ <comment xml:lang="nl">ARJ-archief</comment>
+ <comment xml:lang="nb">ARJ-arkiv</comment>
+ <comment xml:lang="ms">Arkib ARJ</comment>
+ <comment xml:lang="lv">ARJ arhīvs</comment>
+ <comment xml:lang="lt">ARJ archyvas</comment>
+ <comment xml:lang="ko">ARJ 압축 파일</comment>
+ <comment xml:lang="kk">ARJ архиві</comment>
+ <comment xml:lang="ka">ARJ არქივი</comment>
+ <comment xml:lang="ja">ARJ アーカイブ</comment>
+ <comment xml:lang="it">Archivio ARJ</comment>
+ <comment xml:lang="is">ARJ safnskrá</comment>
+ <comment xml:lang="id">Arsip ARJ</comment>
+ <comment xml:lang="ia">Archivo ARJ</comment>
+ <comment xml:lang="hu">ARJ-archívum</comment>
+ <comment xml:lang="hr">ARJ arhiva</comment>
+ <comment xml:lang="he">ארכיון ARJ</comment>
+ <comment xml:lang="gl">arquivo ARJ</comment>
+ <comment xml:lang="ga">cartlann ARJ</comment>
+ <comment xml:lang="fur">archivi ARJ</comment>
+ <comment xml:lang="fr">archive ARJ</comment>
+ <comment xml:lang="fo">ARJ skjalasavn</comment>
+ <comment xml:lang="fi">ARJ-arkisto</comment>
+ <comment xml:lang="eu">ARJ artxiboa</comment>
+ <comment xml:lang="es">archivador ARJ</comment>
+ <comment xml:lang="eo">ARJ-arkivo</comment>
+ <comment xml:lang="en_GB">ARJ archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο ARJ</comment>
+ <comment xml:lang="de">ARJ-Archiv</comment>
+ <comment xml:lang="da">ARJ-arkiv</comment>
+ <comment xml:lang="cy">Archif ARJ</comment>
+ <comment xml:lang="cs">archiv ARJ</comment>
+ <comment xml:lang="ca">arxiu ARJ</comment>
+ <comment xml:lang="bg">Архив — ARJ</comment>
+ <comment xml:lang="be@latin">Archiŭ ARJ</comment>
+ <comment xml:lang="be">архіў ARJ</comment>
+ <comment xml:lang="az">ARJ arxivi</comment>
+ <comment xml:lang="ar">أرشيف ARJ</comment>
+ <comment xml:lang="af">ARJ-argief</comment>
<acronym>ARJ</acronym>
<expanded-acronym>Archived by Robert Jung</expanded-acronym>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="0xea60" type="little16" offset="0"/>
+ <magic>
+ <match type="little16" value="0xea60" offset="0"/>
</magic>
<glob pattern="*.arj"/>
</mime-type>
+ <mime-type type="application/x-asar">
+ <comment>Electron Archive (ASAR)</comment>
+ <comment xml:lang="zh_CN">Electron 归档 (ASAR)</comment>
+ <comment xml:lang="uk">архів Electron (ASAR)</comment>
+ <comment xml:lang="tr">Electron Arşivi (ASAR)</comment>
+ <comment xml:lang="sv">Electron-arkiv (ASAR)</comment>
+ <comment xml:lang="sl">Arhiv Electron (ASAR)</comment>
+ <comment xml:lang="si">ඉලෙක්ට්‍රෝන ලේඛනාගාරය (ASAR)</comment>
+ <comment xml:lang="ru">Electron Archive (ASAR)</comment>
+ <comment xml:lang="pt_BR">Arquivo do Electron (ASAR)</comment>
+ <comment xml:lang="pl">Archiwum Electron (ASAR)</comment>
+ <comment xml:lang="nl">Electron Archive (ASAR)</comment>
+ <comment xml:lang="ko">일렉트론 묶음 파일 (ASAR)</comment>
+ <comment xml:lang="kk">Electron архиві (ASAR)</comment>
+ <comment xml:lang="ja">Electron アーカイブ (ASAR)</comment>
+ <comment xml:lang="it">Archivio Electron (ASAR)</comment>
+ <comment xml:lang="hr">Electron arhiva (ASAR)</comment>
+ <comment xml:lang="he">ארכיון Electron‏ (ASAR)</comment>
+ <comment xml:lang="gl">Arquivo Electron (ASAR)</comment>
+ <comment xml:lang="fi">Electron Archive (ASAR)</comment>
+ <comment xml:lang="eu">Electron artxiboa (ASAR)</comment>
+ <comment xml:lang="es">archivador Electron (ASARP)</comment>
+ <comment xml:lang="en_GB">Electron Archive (ASAR)</comment>
+ <comment xml:lang="de">Electron-Archiv (ASAR)</comment>
+ <comment xml:lang="be">архіў Electron (ASAR)</comment>
+ <comment xml:lang="ar">أرشيف إليكترون (ASAR)</comment>
+ <acronym>ASAR</acronym>
+ <expanded-acronym>Atom Shell Archive Format</expanded-acronym>
+ <magic>
+ <match type="string" value="\004\000\000\000" offset="0">
+ <match type="string" value="{&quot;files&quot;:" offset="16"/>
+ </match>
+ </magic>
+ <glob pattern="*.asar"/>
+ </mime-type>
<mime-type type="application/x-asp">
<comment>ASP page</comment>
- <comment xml:lang="ar">صفحة ASP</comment>
- <comment xml:lang="ast">Páxina ASP</comment>
- <comment xml:lang="be@latin">Staronka ASP</comment>
- <comment xml:lang="bg">Страница — ASP</comment>
- <comment xml:lang="ca">pàgina ASP</comment>
- <comment xml:lang="cs">stránka ASP</comment>
- <comment xml:lang="da">ASP-side</comment>
- <comment xml:lang="de">ASP-Seite</comment>
- <comment xml:lang="el">Σελίδα ASP</comment>
- <comment xml:lang="en_GB">ASP page</comment>
- <comment xml:lang="eo">ASP-paĝo</comment>
- <comment xml:lang="es">página ASP</comment>
- <comment xml:lang="eu">ASP orria</comment>
- <comment xml:lang="fi">ASP-sivu</comment>
- <comment xml:lang="fo">ASP síða</comment>
- <comment xml:lang="fr">page ASP</comment>
- <comment xml:lang="ga">leathanach ASP</comment>
- <comment xml:lang="gl">páxina ASP</comment>
- <comment xml:lang="he">עמוד ASP</comment>
- <comment xml:lang="hr">ASP stranica</comment>
- <comment xml:lang="hu">ASP oldal</comment>
- <comment xml:lang="ia">Pagina ASP</comment>
- <comment xml:lang="id">Halaman ASP</comment>
- <comment xml:lang="it">Pagina ASP</comment>
- <comment xml:lang="ja">ASP ページ</comment>
- <comment xml:lang="ka">ASP გვერდი</comment>
- <comment xml:lang="kk">ASP парағы</comment>
- <comment xml:lang="ko">ASP 페이지</comment>
- <comment xml:lang="lt">ASP puslapis</comment>
- <comment xml:lang="lv">ASP lapa</comment>
- <comment xml:lang="nb">ASP-side</comment>
- <comment xml:lang="nl">ASP-pagina</comment>
- <comment xml:lang="nn">ASP-side</comment>
- <comment xml:lang="oc">pagina ASP</comment>
- <comment xml:lang="pl">Strona ASP</comment>
- <comment xml:lang="pt">página ASP</comment>
- <comment xml:lang="pt_BR">Página ASP</comment>
- <comment xml:lang="ro">Pagină ASP</comment>
- <comment xml:lang="ru">Страница ASP</comment>
- <comment xml:lang="sk">Stránka ASP</comment>
- <comment xml:lang="sl">Datoteka spletne strani ASP</comment>
- <comment xml:lang="sq">Faqe ASP</comment>
- <comment xml:lang="sr">АСП страница</comment>
- <comment xml:lang="sv">ASP-sida</comment>
- <comment xml:lang="tr">ASP sayfası</comment>
- <comment xml:lang="uk">сторінка ASP</comment>
- <comment xml:lang="vi">Trang ASP</comment>
- <comment xml:lang="zh_CN">ASP 页面</comment>
<comment xml:lang="zh_TW">ASP 頁面</comment>
+ <comment xml:lang="zh_CN">ASP 页面</comment>
+ <comment xml:lang="vi">Trang ASP</comment>
+ <comment xml:lang="uk">сторінка ASP</comment>
+ <comment xml:lang="tr">ASP sayfası</comment>
+ <comment xml:lang="sv">ASP-sida</comment>
+ <comment xml:lang="sr">АСП страница</comment>
+ <comment xml:lang="sq">faqe ASP</comment>
+ <comment xml:lang="sl">Datoteka spletne strani ASP</comment>
+ <comment xml:lang="si">ASP පිටුව</comment>
+ <comment xml:lang="sk">Stránka ASP</comment>
+ <comment xml:lang="ru">Страница ASP</comment>
+ <comment xml:lang="ro">Pagină ASP</comment>
+ <comment xml:lang="pt_BR">Página ASP</comment>
+ <comment xml:lang="pt">página ASP</comment>
+ <comment xml:lang="pl">Strona ASP</comment>
+ <comment xml:lang="oc">pagina ASP</comment>
+ <comment xml:lang="nn">ASP-side</comment>
+ <comment xml:lang="nl">ASP-pagina</comment>
+ <comment xml:lang="nb">ASP-side</comment>
+ <comment xml:lang="lv">ASP lapa</comment>
+ <comment xml:lang="lt">ASP puslapis</comment>
+ <comment xml:lang="ko">ASP 페이지</comment>
+ <comment xml:lang="kk">ASP парағы</comment>
+ <comment xml:lang="ka">ASP გვერდი</comment>
+ <comment xml:lang="ja">ASP ページ</comment>
+ <comment xml:lang="it">Pagina ASP</comment>
+ <comment xml:lang="is">ASP síða</comment>
+ <comment xml:lang="id">Halaman ASP</comment>
+ <comment xml:lang="ia">Pagina ASP</comment>
+ <comment xml:lang="hu">ASP oldal</comment>
+ <comment xml:lang="hr">ASP stranica</comment>
+ <comment xml:lang="he">עמוד ASP</comment>
+ <comment xml:lang="gl">páxina ASP</comment>
+ <comment xml:lang="ga">leathanach ASP</comment>
+ <comment xml:lang="fur">pagjine ASP</comment>
+ <comment xml:lang="fr">page ASP</comment>
+ <comment xml:lang="fo">ASP síða</comment>
+ <comment xml:lang="fi">ASP-sivu</comment>
+ <comment xml:lang="eu">ASP orria</comment>
+ <comment xml:lang="es">página ASP</comment>
+ <comment xml:lang="eo">ASP-paĝo</comment>
+ <comment xml:lang="en_GB">ASP page</comment>
+ <comment xml:lang="el">Σελίδα ASP</comment>
+ <comment xml:lang="de">ASP-Seite</comment>
+ <comment xml:lang="da">ASP-side</comment>
+ <comment xml:lang="cs">stránka ASP</comment>
+ <comment xml:lang="ca">pàgina ASP</comment>
+ <comment xml:lang="bg">Страница — ASP</comment>
+ <comment xml:lang="be@latin">Staronka ASP</comment>
+ <comment xml:lang="be">старонка ASP</comment>
+ <comment xml:lang="ast">Páxina ASP</comment>
+ <comment xml:lang="ar">صفحة ASP</comment>
+ <comment xml:lang="af">ASP-bladsy</comment>
<acronym>ASP</acronym>
<expanded-acronym>Active Server Page</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -7638,129 +8205,108 @@
</mime-type>
<mime-type type="application/x-awk">
<comment>AWK script</comment>
- <comment xml:lang="ar">سكربت AWK</comment>
- <comment xml:lang="ast">Script AWK</comment>
- <comment xml:lang="az">AWK skripti</comment>
- <comment xml:lang="be@latin">Skrypt AWK</comment>
- <comment xml:lang="bg">Скрипт — AWK</comment>
- <comment xml:lang="ca">script AWK</comment>
- <comment xml:lang="cs">skript AWK</comment>
- <comment xml:lang="cy">Sgript AWK</comment>
- <comment xml:lang="da">AWK-program</comment>
- <comment xml:lang="de">AWK-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών AWK</comment>
- <comment xml:lang="en_GB">AWK script</comment>
- <comment xml:lang="eo">AWK-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en AWK</comment>
- <comment xml:lang="eu">AWK script-a</comment>
- <comment xml:lang="fi">AWK-komentotiedosto</comment>
- <comment xml:lang="fo">AWK boðrøð</comment>
- <comment xml:lang="fr">script AWK</comment>
- <comment xml:lang="ga">script AWK</comment>
- <comment xml:lang="gl">script de AWK</comment>
- <comment xml:lang="he">תסריט AWK</comment>
- <comment xml:lang="hr">AWK skripta</comment>
- <comment xml:lang="hu">AWK-parancsfájl</comment>
- <comment xml:lang="ia">Script AWK</comment>
- <comment xml:lang="id">Skrip AWK</comment>
- <comment xml:lang="it">Script AWK</comment>
- <comment xml:lang="ja">AWK スクリプト</comment>
- <comment xml:lang="ka">AWK სცენარი</comment>
- <comment xml:lang="kk">AWK сценарийі</comment>
- <comment xml:lang="ko">AWK 스크립트</comment>
- <comment xml:lang="lt">AWK scenarijus</comment>
- <comment xml:lang="lv">AWK skripts</comment>
- <comment xml:lang="ms">Skrip AWK</comment>
- <comment xml:lang="nb">AWK-skript</comment>
- <comment xml:lang="nl">AWK-script</comment>
- <comment xml:lang="nn">WAK-skript</comment>
- <comment xml:lang="oc">escript AWK</comment>
- <comment xml:lang="pl">Skrypt AWK</comment>
- <comment xml:lang="pt">script AWK</comment>
- <comment xml:lang="pt_BR">Script AWK</comment>
- <comment xml:lang="ro">Script AWK</comment>
- <comment xml:lang="ru">Сценарий AWK</comment>
- <comment xml:lang="sk">Skript AWK</comment>
- <comment xml:lang="sl">Skriptna datoteka AWK</comment>
- <comment xml:lang="sq">Script AWK</comment>
- <comment xml:lang="sr">АВК скрипта</comment>
- <comment xml:lang="sv">AWK-skript</comment>
- <comment xml:lang="tr">AWK betiği</comment>
- <comment xml:lang="uk">скрипт AWK</comment>
- <comment xml:lang="vi">Văn lệnh AWK</comment>
- <comment xml:lang="zh_CN">AWK 脚本</comment>
<comment xml:lang="zh_TW">AWK 指令稿</comment>
+ <comment xml:lang="zh_CN">AWK 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh AWK</comment>
+ <comment xml:lang="uk">скрипт AWK</comment>
+ <comment xml:lang="tr">AWK betiği</comment>
+ <comment xml:lang="sv">AWK-skript</comment>
+ <comment xml:lang="sr">АВК скрипта</comment>
+ <comment xml:lang="sq">programth AWK</comment>
+ <comment xml:lang="sl">Skriptna datoteka AWK</comment>
+ <comment xml:lang="si">AWK පිටපත</comment>
+ <comment xml:lang="sk">Skript AWK</comment>
+ <comment xml:lang="ru">Сценарий AWK</comment>
+ <comment xml:lang="ro">Script AWK</comment>
+ <comment xml:lang="pt_BR">Script AWK</comment>
+ <comment xml:lang="pt">script AWK</comment>
+ <comment xml:lang="pl">Skrypt AWK</comment>
+ <comment xml:lang="oc">escript AWK</comment>
+ <comment xml:lang="nn">WAK-skript</comment>
+ <comment xml:lang="nl">AWK-script</comment>
+ <comment xml:lang="nb">AWK-skript</comment>
+ <comment xml:lang="ms">Skrip AWK</comment>
+ <comment xml:lang="lv">AWK skripts</comment>
+ <comment xml:lang="lt">AWK scenarijus</comment>
+ <comment xml:lang="ko">AWK 스크립트</comment>
+ <comment xml:lang="kk">AWK сценарийі</comment>
+ <comment xml:lang="ka">AWK სცენარი</comment>
+ <comment xml:lang="ja">AWK スクリプト</comment>
+ <comment xml:lang="it">Script AWK</comment>
+ <comment xml:lang="is">AWK skrifta</comment>
+ <comment xml:lang="id">Skrip AWK</comment>
+ <comment xml:lang="ia">Script AWK</comment>
+ <comment xml:lang="hu">AWK-parancsfájl</comment>
+ <comment xml:lang="hr">AWK skripta</comment>
+ <comment xml:lang="he">תסריט AWK</comment>
+ <comment xml:lang="gl">script de AWK</comment>
+ <comment xml:lang="ga">script AWK</comment>
+ <comment xml:lang="fur">script AWK</comment>
+ <comment xml:lang="fr">script AWK</comment>
+ <comment xml:lang="fo">AWK boðrøð</comment>
+ <comment xml:lang="fi">AWK-komentotiedosto</comment>
+ <comment xml:lang="eu">AWK script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en AWK</comment>
+ <comment xml:lang="eo">AWK-skripto</comment>
+ <comment xml:lang="en_GB">AWK script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών AWK</comment>
+ <comment xml:lang="de">AWK-Skript</comment>
+ <comment xml:lang="da">AWK-program</comment>
+ <comment xml:lang="cy">Sgript AWK</comment>
+ <comment xml:lang="cs">skript AWK</comment>
+ <comment xml:lang="ca">script AWK</comment>
+ <comment xml:lang="bg">Скрипт — AWK</comment>
+ <comment xml:lang="be@latin">Skrypt AWK</comment>
+ <comment xml:lang="be">скрыпт AWK</comment>
+ <comment xml:lang="az">AWK skripti</comment>
+ <comment xml:lang="ast">Script AWK</comment>
+ <comment xml:lang="ar">سكربت AWK</comment>
+ <comment xml:lang="af">AWK-skrip</comment>
<sub-class-of type="application/x-executable"/>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
- <magic priority="50">
- <match value="#!/bin/gawk" type="string" offset="0"/>
- <match value="#! /bin/gawk" type="string" offset="0"/>
- <match value="#!/usr/bin/gawk" type="string" offset="0"/>
- <match value="#! /usr/bin/gawk" type="string" offset="0"/>
- <match value="#!/usr/local/bin/gawk" type="string" offset="0"/>
- <match value="#! /usr/local/bin/gawk" type="string" offset="0"/>
- <match value="#!/bin/awk" type="string" offset="0"/>
- <match value="#! /bin/awk" type="string" offset="0"/>
- <match value="#!/usr/bin/awk" type="string" offset="0"/>
- <match value="#! /usr/bin/awk" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#!/bin/gawk" offset="0"/>
+ <match type="string" value="#! /bin/gawk" offset="0"/>
+ <match type="string" value="#!/usr/bin/gawk" offset="0"/>
+ <match type="string" value="#! /usr/bin/gawk" offset="0"/>
+ <match type="string" value="#!/usr/local/bin/gawk" offset="0"/>
+ <match type="string" value="#! /usr/local/bin/gawk" offset="0"/>
+ <match type="string" value="#!/bin/awk" offset="0"/>
+ <match type="string" value="#! /bin/awk" offset="0"/>
+ <match type="string" value="#!/usr/bin/awk" offset="0"/>
+ <match type="string" value="#! /usr/bin/awk" offset="0"/>
</magic>
<glob pattern="*.awk"/>
</mime-type>
<mime-type type="application/x-bcpio">
- <comment>BCPIO document</comment>
- <comment xml:lang="ar">مستند BCPIO</comment>
- <comment xml:lang="ast">Documentu BCPIO</comment>
- <comment xml:lang="az">BCPIO sənədi</comment>
- <comment xml:lang="be@latin">Dakument BCPIO</comment>
- <comment xml:lang="bg">Документ — BCPIO</comment>
- <comment xml:lang="ca">document BCPIO</comment>
- <comment xml:lang="cs">dokument BCPIO</comment>
- <comment xml:lang="cy">Dogfen BCPIO</comment>
- <comment xml:lang="da">BCPIO-dokument</comment>
- <comment xml:lang="de">BCPIO-Dokument</comment>
- <comment xml:lang="el">Έγγραφο BCPIO</comment>
- <comment xml:lang="en_GB">BCPIO document</comment>
- <comment xml:lang="eo">BCPIO-dokumento</comment>
- <comment xml:lang="es">documento BCPIO</comment>
- <comment xml:lang="eu">BCPIO dokumentua</comment>
- <comment xml:lang="fi">BCPIO-asiakirja</comment>
- <comment xml:lang="fo">BCPIO skjal</comment>
- <comment xml:lang="fr">document BCPIO</comment>
- <comment xml:lang="ga">cáipéis BCPIO</comment>
- <comment xml:lang="gl">documento BCPIO</comment>
- <comment xml:lang="he">מסמך של BCPO</comment>
- <comment xml:lang="hr">BCPIO dokument</comment>
- <comment xml:lang="hu">BCPIO-dokumentum</comment>
- <comment xml:lang="ia">Documento BCPIO</comment>
- <comment xml:lang="id">Dokumen BCPIO</comment>
- <comment xml:lang="it">Documento BCPIO</comment>
- <comment xml:lang="ja">BCPIO ドキュメント</comment>
- <comment xml:lang="ka">BCPIO-ის დოკუმენტი</comment>
- <comment xml:lang="kk">BCPIO құжаты</comment>
- <comment xml:lang="ko">BCPIO 문서</comment>
- <comment xml:lang="lt">BCPIO dokumentas</comment>
- <comment xml:lang="lv">BCPIO dokuments</comment>
- <comment xml:lang="ms">Dokumen BCPIO</comment>
- <comment xml:lang="nb">BCPIO-dokument</comment>
- <comment xml:lang="nl">BCPIO-document</comment>
- <comment xml:lang="nn">BCPIO-dokument</comment>
- <comment xml:lang="oc">document BCPIO</comment>
- <comment xml:lang="pl">Dokument BCPIO</comment>
- <comment xml:lang="pt">documento BCPIO</comment>
- <comment xml:lang="pt_BR">Documento BCPIO</comment>
- <comment xml:lang="ro">Document BCPIO</comment>
- <comment xml:lang="ru">Документ BCPIO</comment>
- <comment xml:lang="sk">Dokument BCPIO</comment>
- <comment xml:lang="sl">Dokument BCPIO</comment>
- <comment xml:lang="sq">Dokument BCPIO</comment>
- <comment xml:lang="sr">БЦПИО документ</comment>
- <comment xml:lang="sv">BCPIO-dokument</comment>
- <comment xml:lang="tr">BCPIO belgesi</comment>
- <comment xml:lang="uk">документ BCPIO</comment>
- <comment xml:lang="vi">Tài liệu BCPIO</comment>
- <comment xml:lang="zh_CN">BCPIO 文档</comment>
- <comment xml:lang="zh_TW">BCPIO 文件</comment>
+ <comment>BCPIO archive</comment>
+ <comment xml:lang="zh_CN">BCPIO 归档</comment>
+ <comment xml:lang="uk">архів BCPIO</comment>
+ <comment xml:lang="tr">BCPIO arşivi</comment>
+ <comment xml:lang="sv">BCPIO-arkiv</comment>
+ <comment xml:lang="sl">Arhiv BCPIO</comment>
+ <comment xml:lang="si">BCPIO ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív BCPIO</comment>
+ <comment xml:lang="ru">Архив BCPIO</comment>
+ <comment xml:lang="pt_BR">Arquivo BCPIO</comment>
+ <comment xml:lang="pl">Archiwum BCPIO</comment>
+ <comment xml:lang="oc">archiu BCPIO</comment>
+ <comment xml:lang="nl">BCPIO-archief</comment>
+ <comment xml:lang="ko">BCPIO 묶음 파일</comment>
+ <comment xml:lang="kk">BCPIO архиві</comment>
+ <comment xml:lang="ja">BCPIO アーカイブ</comment>
+ <comment xml:lang="it">Archivio BCPIO</comment>
+ <comment xml:lang="hr">BCPIO arhiva</comment>
+ <comment xml:lang="he">ארכיון BCPIO</comment>
+ <comment xml:lang="gl">Arquivo BCPIO</comment>
+ <comment xml:lang="fi">BCPIO-arkisto</comment>
+ <comment xml:lang="eu">BCPIO artxiboa</comment>
+ <comment xml:lang="es">archivador BCPIO</comment>
+ <comment xml:lang="en_GB">BCPIO archive</comment>
+ <comment xml:lang="de">BCPIO-Archiv</comment>
+ <comment xml:lang="be">архіў BCPIO</comment>
+ <comment xml:lang="ar">أرشيف BCPIO</comment>
<acronym>BCPIO</acronym>
<expanded-acronym>Binary CPIO</expanded-acronym>
<generic-icon name="package-x-generic"/>
@@ -7768,601 +8314,323 @@
</mime-type>
<mime-type type="application/x-bittorrent">
<comment>BitTorrent seed file</comment>
- <comment xml:lang="ar">ملف باذر البت تورنت</comment>
- <comment xml:lang="az">BitTorrent seed faylı</comment>
- <comment xml:lang="be@latin">Fajł krynicy BitTorrent</comment>
- <comment xml:lang="bg">Файл-източник — BitTorrent</comment>
- <comment xml:lang="ca">fitxer de llavor BitTorrent</comment>
- <comment xml:lang="cs">soubor BitTorrent</comment>
- <comment xml:lang="cy">Ffeil hadu BitTorrent</comment>
- <comment xml:lang="da">BitTorrent-frøfil</comment>
- <comment xml:lang="de">BitTorrent-Seed-Datei</comment>
- <comment xml:lang="el">Αρχείο BitTorrent seed</comment>
- <comment xml:lang="en_GB">BitTorrent seed file</comment>
- <comment xml:lang="eo">BitTorrent-semdosiero</comment>
- <comment xml:lang="es">archivo semilla de BitTorrent</comment>
- <comment xml:lang="eu">BitTorrent hazi-fitxategia</comment>
- <comment xml:lang="fi">BitTorrent-siementiedosto</comment>
- <comment xml:lang="fo">BitTorrent seed fíla</comment>
- <comment xml:lang="fr">fichier graine BitTorrent</comment>
- <comment xml:lang="ga">comhad síl BitTorrent</comment>
- <comment xml:lang="gl">ficheiro de orixe BitTorrent</comment>
- <comment xml:lang="he">קובץ זריעה של BitTorrent</comment>
- <comment xml:lang="hr">BitTorrent datoteka</comment>
- <comment xml:lang="hu">BitTorrent-magfájl</comment>
- <comment xml:lang="ia">File seminal de BitTorrent</comment>
- <comment xml:lang="id">Berkas benih BitTorrent</comment>
- <comment xml:lang="it">File seed BitTorrent</comment>
- <comment xml:lang="ja">BitTorrent シードファイル</comment>
- <comment xml:lang="kk">BitTorrent көз файлы</comment>
- <comment xml:lang="ko">비트토렌트 시드 파일</comment>
- <comment xml:lang="lt">BitTorrent šaltinio failas</comment>
- <comment xml:lang="lv">BitTorrent avota datne</comment>
- <comment xml:lang="ms">Fail seed BitTorrent</comment>
- <comment xml:lang="nb">Fil med utgangsverdi for BitTorrent</comment>
- <comment xml:lang="nl">BitTorrent-bestand</comment>
- <comment xml:lang="nn">Nedlastingsfil for BitTorrent</comment>
- <comment xml:lang="oc">fichièr grana BitTorrent</comment>
- <comment xml:lang="pl">Plik ziarna BitTorrent</comment>
- <comment xml:lang="pt">ficheiro de semente BitTorrent</comment>
- <comment xml:lang="pt_BR">Arquivo semente BitTorrent</comment>
- <comment xml:lang="ro">Fișier sursă-completă BitTorrent</comment>
- <comment xml:lang="ru">Файл источника BitTorrent</comment>
- <comment xml:lang="sk">Súbor BitTorrent</comment>
- <comment xml:lang="sl">Datoteka sejanja BitTorrent</comment>
- <comment xml:lang="sq">File bazë BitTorrent</comment>
- <comment xml:lang="sr">датотека сејача Бит Торента</comment>
- <comment xml:lang="sv">BitTorrent-distributionsfil</comment>
- <comment xml:lang="tr">BitTorrent tohum dosyası</comment>
- <comment xml:lang="uk">файл поширення BitTorrent</comment>
- <comment xml:lang="vi">Tải tập hạt BitTorrent</comment>
- <comment xml:lang="zh_CN">BitTorrent 种子文件</comment>
<comment xml:lang="zh_TW">BitTorrent 種子檔</comment>
- <magic priority="50">
- <match value="d8:announce" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">BitTorrent 种子文件</comment>
+ <comment xml:lang="vi">Tải tập hạt BitTorrent</comment>
+ <comment xml:lang="uk">файл поширення BitTorrent</comment>
+ <comment xml:lang="tr">BitTorrent tohum dosyası</comment>
+ <comment xml:lang="sv">BitTorrent-distributionsfil</comment>
+ <comment xml:lang="sr">датотека сејача Бит Торента</comment>
+ <comment xml:lang="sq">kartelë seed BitTorrent</comment>
+ <comment xml:lang="sl">Datoteka sejanja BitTorrent</comment>
+ <comment xml:lang="si">BitTorrent බීජ ගොනුව</comment>
+ <comment xml:lang="sk">Súbor BitTorrent</comment>
+ <comment xml:lang="ru">Файл источника BitTorrent</comment>
+ <comment xml:lang="ro">Fișier sursă-completă BitTorrent</comment>
+ <comment xml:lang="pt_BR">Arquivo semente BitTorrent</comment>
+ <comment xml:lang="pt">ficheiro de semente BitTorrent</comment>
+ <comment xml:lang="pl">Plik ziarna BitTorrent</comment>
+ <comment xml:lang="oc">fichièr grana BitTorrent</comment>
+ <comment xml:lang="nn">Nedlastingsfil for BitTorrent</comment>
+ <comment xml:lang="nl">BitTorrent-bestand</comment>
+ <comment xml:lang="nb">Fil med utgangsverdi for BitTorrent</comment>
+ <comment xml:lang="ms">Fail seed BitTorrent</comment>
+ <comment xml:lang="lv">BitTorrent avota datne</comment>
+ <comment xml:lang="lt">BitTorrent šaltinio failas</comment>
+ <comment xml:lang="ko">비트토렌트 시드 파일</comment>
+ <comment xml:lang="kk">BitTorrent көз файлы</comment>
+ <comment xml:lang="ja">BitTorrent シードファイル</comment>
+ <comment xml:lang="it">File seed BitTorrent</comment>
+ <comment xml:lang="is">BitTorrent sáningarskrá</comment>
+ <comment xml:lang="id">Berkas benih BitTorrent</comment>
+ <comment xml:lang="ia">File seminal de BitTorrent</comment>
+ <comment xml:lang="hu">BitTorrent-magfájl</comment>
+ <comment xml:lang="hr">BitTorrent datoteka</comment>
+ <comment xml:lang="he">קובץ זריעה של BitTorrent</comment>
+ <comment xml:lang="gl">ficheiro de orixe BitTorrent</comment>
+ <comment xml:lang="ga">comhad síl BitTorrent</comment>
+ <comment xml:lang="fur">file semence di BitTorrent</comment>
+ <comment xml:lang="fr">fichier graine BitTorrent</comment>
+ <comment xml:lang="fo">BitTorrent seed fíla</comment>
+ <comment xml:lang="fi">BitTorrent-siementiedosto</comment>
+ <comment xml:lang="eu">BitTorrent hazi-fitxategia</comment>
+ <comment xml:lang="es">archivo semilla de BitTorrent</comment>
+ <comment xml:lang="eo">BitTorrent-semdosiero</comment>
+ <comment xml:lang="en_GB">BitTorrent seed file</comment>
+ <comment xml:lang="el">Αρχείο BitTorrent seed</comment>
+ <comment xml:lang="de">BitTorrent-Startdatei</comment>
+ <comment xml:lang="da">BitTorrent-frøfil</comment>
+ <comment xml:lang="cy">Ffeil hadu BitTorrent</comment>
+ <comment xml:lang="cs">soubor BitTorrent</comment>
+ <comment xml:lang="ca">fitxer de llavor BitTorrent</comment>
+ <comment xml:lang="bg">Файл-източник — BitTorrent</comment>
+ <comment xml:lang="be@latin">Fajł krynicy BitTorrent</comment>
+ <comment xml:lang="be">файл раздачы BitTorrent</comment>
+ <comment xml:lang="az">BitTorrent seed faylı</comment>
+ <comment xml:lang="ar">ملف باذر بت تورنت</comment>
+ <comment xml:lang="af">BitTorrent-saadlêer</comment>
+ <magic>
+ <match type="string" value="d8:announce" offset="0"/>
</magic>
<glob pattern="*.torrent"/>
</mime-type>
<mime-type type="application/x-blender">
<comment>Blender scene</comment>
- <comment xml:lang="ar">مشهد بلندر</comment>
- <comment xml:lang="ast">Escena de Blender</comment>
- <comment xml:lang="be@latin">Scena Blender</comment>
- <comment xml:lang="bg">Сцена — Blender</comment>
- <comment xml:lang="ca">escena de Blender</comment>
- <comment xml:lang="cs">scéna Blender</comment>
- <comment xml:lang="da">Blenderscene</comment>
- <comment xml:lang="de">Blender-Szene</comment>
- <comment xml:lang="el">Σκηνή Blender</comment>
- <comment xml:lang="en_GB">Blender scene</comment>
- <comment xml:lang="eo">Blender-sceno</comment>
- <comment xml:lang="es">escena de Blender</comment>
- <comment xml:lang="eu">Blender-eko fitxategia</comment>
- <comment xml:lang="fi">Blender-näkymä</comment>
- <comment xml:lang="fo">Blender leikmynd</comment>
- <comment xml:lang="fr">scène Blender</comment>
- <comment xml:lang="ga">radharc Blender</comment>
- <comment xml:lang="gl">escena de Blender</comment>
- <comment xml:lang="he">סצנת Blender</comment>
- <comment xml:lang="hr">Blender scena</comment>
- <comment xml:lang="hu">Blender-jelenet</comment>
- <comment xml:lang="ia">Scena Blender</comment>
- <comment xml:lang="id">Scene Blender</comment>
- <comment xml:lang="it">Scena Blender</comment>
- <comment xml:lang="ja">Blender シーン</comment>
- <comment xml:lang="ka">Blender-ის სცენა</comment>
- <comment xml:lang="kk">Blender сахнасы</comment>
- <comment xml:lang="ko">Blender 장면</comment>
- <comment xml:lang="lt">Blender scena</comment>
- <comment xml:lang="lv">Blender aina</comment>
- <comment xml:lang="ms">Babak Blender</comment>
- <comment xml:lang="nb">Blender-scene</comment>
- <comment xml:lang="nl">Blender-scène</comment>
- <comment xml:lang="nn">Blender-scene</comment>
- <comment xml:lang="oc">scèna Blender</comment>
- <comment xml:lang="pl">Scena programu Blender</comment>
- <comment xml:lang="pt">cenário Blender</comment>
- <comment xml:lang="pt_BR">Cena do Blender</comment>
- <comment xml:lang="ro">Scenă Blender</comment>
- <comment xml:lang="ru">Сцена Blender</comment>
- <comment xml:lang="sk">Scéna Blender</comment>
- <comment xml:lang="sl">Datoteka scene Blender</comment>
- <comment xml:lang="sq">Skenë Blender</comment>
- <comment xml:lang="sr">Блендерова сцена</comment>
- <comment xml:lang="sv">Blender-scen</comment>
- <comment xml:lang="tr">Blender sahnesi</comment>
- <comment xml:lang="uk">сцена Blender</comment>
- <comment xml:lang="vi">Cảnh Blender</comment>
- <comment xml:lang="zh_CN">Blender 场景</comment>
<comment xml:lang="zh_TW">Blender 場景</comment>
+ <comment xml:lang="zh_CN">Blender 场景</comment>
+ <comment xml:lang="vi">Cảnh Blender</comment>
+ <comment xml:lang="uk">сцена Blender</comment>
+ <comment xml:lang="tr">Blender sahnesi</comment>
+ <comment xml:lang="sv">Blender-scen</comment>
+ <comment xml:lang="sr">Блендерова сцена</comment>
+ <comment xml:lang="sq">skenë Blender</comment>
+ <comment xml:lang="sl">Datoteka scene Blender</comment>
+ <comment xml:lang="si">බ්ලෙන්ඩර් දර්ශනය</comment>
+ <comment xml:lang="sk">Scéna Blender</comment>
+ <comment xml:lang="ru">Сцена Blender</comment>
+ <comment xml:lang="ro">Scenă Blender</comment>
+ <comment xml:lang="pt_BR">Cena do Blender</comment>
+ <comment xml:lang="pt">cenário Blender</comment>
+ <comment xml:lang="pl">Scena programu Blender</comment>
+ <comment xml:lang="oc">scèna Blender</comment>
+ <comment xml:lang="nn">Blender-scene</comment>
+ <comment xml:lang="nl">Blender-scène</comment>
+ <comment xml:lang="nb">Blender-scene</comment>
+ <comment xml:lang="ms">Babak Blender</comment>
+ <comment xml:lang="lv">Blender aina</comment>
+ <comment xml:lang="lt">Blender scena</comment>
+ <comment xml:lang="ko">Blender 장면</comment>
+ <comment xml:lang="kk">Blender сахнасы</comment>
+ <comment xml:lang="ka">Blender-ის სცენა</comment>
+ <comment xml:lang="ja">Blender シーン</comment>
+ <comment xml:lang="it">Scena Blender</comment>
+ <comment xml:lang="is">Blender sviðsmynd</comment>
+ <comment xml:lang="id">Scene Blender</comment>
+ <comment xml:lang="ia">Scena Blender</comment>
+ <comment xml:lang="hu">Blender-jelenet</comment>
+ <comment xml:lang="hr">Blender scena</comment>
+ <comment xml:lang="he">סצנת Blender</comment>
+ <comment xml:lang="gl">escena de Blender</comment>
+ <comment xml:lang="ga">radharc Blender</comment>
+ <comment xml:lang="fur">sene Blender</comment>
+ <comment xml:lang="fr">scène Blender</comment>
+ <comment xml:lang="fo">Blender leikmynd</comment>
+ <comment xml:lang="fi">Blender-näkymä</comment>
+ <comment xml:lang="eu">Blender-eko fitxategia</comment>
+ <comment xml:lang="es">escena de Blender</comment>
+ <comment xml:lang="eo">Blender-sceno</comment>
+ <comment xml:lang="en_GB">Blender scene</comment>
+ <comment xml:lang="el">Σκηνή Blender</comment>
+ <comment xml:lang="de">Blender-Szene</comment>
+ <comment xml:lang="da">Blenderscene</comment>
+ <comment xml:lang="cs">scéna Blender</comment>
+ <comment xml:lang="ca">escena de Blender</comment>
+ <comment xml:lang="bg">Сцена — Blender</comment>
+ <comment xml:lang="be@latin">Scena Blender</comment>
+ <comment xml:lang="be">сцэна Blender</comment>
+ <comment xml:lang="ast">Escena de Blender</comment>
+ <comment xml:lang="ar">مشهد بلندر</comment>
+ <comment xml:lang="af">Blender-toneel</comment>
<generic-icon name="image-x-generic"/>
- <glob pattern="*.blender"/>
<glob pattern="*.blend"/>
<glob pattern="*.BLEND"/>
- <magic priority="50">
- <match value="BLENDER" type="string" offset="0"/>
+ <glob pattern="*.blender"/>
+ <magic>
+ <match type="string" value="BLENDER" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-bzdvi">
- <comment>TeX DVI document (bzip-compressed)</comment>
- <comment xml:lang="ar">مستند TeX DVI (مضغوط-bzip)</comment>
- <comment xml:lang="ast">Documentu Tex DVI (comprimíu en bzip)</comment>
- <comment xml:lang="be@latin">Dakument TeX DVI (bzip-skampresavany)</comment>
- <comment xml:lang="bg">Документ — TeX DVI, компресиран с bzip</comment>
- <comment xml:lang="ca">document de TeX DVI (amb compressió bzip)</comment>
- <comment xml:lang="cs">dokument TeX DVI (komprimovaný pomocí bzip)</comment>
- <comment xml:lang="da">TeX DVI-dokument (bzip-komprimeret)</comment>
- <comment xml:lang="de">TeX-DVI-Dokument (bzip-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο TeX DVI (συμπιεσμένο με bzip)</comment>
- <comment xml:lang="en_GB">TeX DVI document (bzip-compressed)</comment>
- <comment xml:lang="es">documento DVI de TeX (comprimido con bzip)</comment>
- <comment xml:lang="eu">TeX DVI dokumentua (bzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">TeX DVI -asiakirja (bzip-pakattu)</comment>
- <comment xml:lang="fo">TeX DVI skjal (bzip-stappað)</comment>
- <comment xml:lang="fr">document DVI TeX (compressé bzip)</comment>
- <comment xml:lang="ga">cáipéis DVI TeX (comhbhrúite le bzip)</comment>
- <comment xml:lang="gl">documento DVI de TeX (comprimido con bzip)</comment>
- <comment xml:lang="he">מסמך מסוג TeX DVI (מכווץ ע״י bzip)</comment>
- <comment xml:lang="hr">TeX DVI dokument (bzip sažeto)</comment>
- <comment xml:lang="hu">TeX DVI dokumentum (bzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Documento TeX DVI (comprimite con bzip)</comment>
- <comment xml:lang="id">Dokumen TeX DVI (terkompresi bzip)</comment>
- <comment xml:lang="it">Documento TeX DVI (compresso con bzip)</comment>
- <comment xml:lang="ja">Tex DVI ドキュメント (bzip 圧縮)</comment>
- <comment xml:lang="kk">TeX DVI құжаты (bzip-пен сығылған)</comment>
- <comment xml:lang="ko">TeX DVI 문서(BZIP 압축)</comment>
- <comment xml:lang="lt">TeX DVI dokumentas (suglaudintas su bzip)</comment>
- <comment xml:lang="lv">TeX DVI dokuments (saspiests ar bzip)</comment>
- <comment xml:lang="nb">TeX DVI-dokument (bzip-komprimert)</comment>
- <comment xml:lang="nl">TeX DVI-document (ingepakt met bzip)</comment>
- <comment xml:lang="nn">TeX DVI-dokument (pakka med bzip)</comment>
- <comment xml:lang="oc">document DVI TeX (compressat bzip)</comment>
- <comment xml:lang="pl">Dokument TeX DVI (kompresja bzip)</comment>
- <comment xml:lang="pt">documento TeX DVI (compressão bzip)</comment>
- <comment xml:lang="pt_BR">Documento DVI TeX (compactado com bzip)</comment>
- <comment xml:lang="ro">Document TeX DVI (comprimat bzip)</comment>
- <comment xml:lang="ru">Документ TeX DVI (сжатый bzip)</comment>
- <comment xml:lang="sk">Dokument TeX DVI (komprimovaný pomocou bzip)</comment>
- <comment xml:lang="sl">Dokument TeX DVI (stisnjen z bzip)</comment>
- <comment xml:lang="sq">Dokument Tex DVI (i kompresuar me bzip)</comment>
- <comment xml:lang="sr">ТеКс ДВИ документ (запакована бзипом)</comment>
- <comment xml:lang="sv">TeX DVI-dokument (bzip-komprimerat)</comment>
- <comment xml:lang="tr">TeX DVI belgesi (bzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ TeX DVI (стиснений bzip)</comment>
- <comment xml:lang="vi">Tài liệu DVI TeX (đã nén bzip)</comment>
- <comment xml:lang="zh_CN">TeX DVI 文档(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">TeX DVI 文件 (bzip 格式壓縮)</comment>
- <sub-class-of type="application/x-bzip"/>
+ <comment>TeX DVI document (bzip2-compressed)</comment>
+ <comment xml:lang="uk">документ DVI TeX (стиснений bzip2)</comment>
+ <comment xml:lang="sv">TeX DVI-dokument (bzip2-komprimerat)</comment>
+ <comment xml:lang="ru">Документ DVI издательской системы TeX (сжатый bzip2)</comment>
+ <comment xml:lang="pt_BR">Documento DVI TeX (compactado com bzip2)</comment>
+ <comment xml:lang="pl">Dokument TeX DVI (kompresja bzip2)</comment>
+ <comment xml:lang="es">documento DVI de TeX (comprimido con BZIP2)</comment>
+ <comment xml:lang="de">TeX-DVI-Dokument (bzip2-komprimiert)</comment>
+ <sub-class-of type="application/x-bzip2"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.dvi.bz2"/>
</mime-type>
- <mime-type type="application/x-bzip">
- <comment>Bzip archive</comment>
- <comment xml:lang="ar">أرشيف Bzip</comment>
- <comment xml:lang="ast">Archivu Bzip</comment>
- <comment xml:lang="be@latin">Archiŭ bzip</comment>
- <comment xml:lang="bg">Архив — bzip</comment>
- <comment xml:lang="ca">arxiu bzip</comment>
- <comment xml:lang="cs">archiv bzip</comment>
- <comment xml:lang="da">Bzip-arkiv</comment>
- <comment xml:lang="de">Bzip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Bzip</comment>
- <comment xml:lang="en_GB">Bzip archive</comment>
- <comment xml:lang="eo">Bzip-arkivo</comment>
- <comment xml:lang="es">archivador Bzip</comment>
- <comment xml:lang="eu">Bzip artxiboa</comment>
- <comment xml:lang="fi">Bzip-arkisto</comment>
- <comment xml:lang="fo">Bzip skjalasavn</comment>
- <comment xml:lang="fr">archive bzip</comment>
- <comment xml:lang="ga">cartlann Bzip</comment>
- <comment xml:lang="gl">arquivo Bzip</comment>
- <comment xml:lang="he">ארכיון Bzip</comment>
- <comment xml:lang="hr">Bzip arhiva</comment>
- <comment xml:lang="hu">Bzip archívum</comment>
- <comment xml:lang="ia">Archivo Bzip</comment>
- <comment xml:lang="id">Arsip Bzip</comment>
- <comment xml:lang="it">Archivio bzip</comment>
- <comment xml:lang="ja">Bzip アーカイブ</comment>
- <comment xml:lang="ka">Bzip არქივი</comment>
- <comment xml:lang="kk">Bzip архиві</comment>
- <comment xml:lang="ko">BZIP 압축 파일</comment>
- <comment xml:lang="lt">Bzip archyvas</comment>
- <comment xml:lang="lv">Bzip arhīvs</comment>
- <comment xml:lang="nb">Bzip-arkiv</comment>
- <comment xml:lang="nl">Bzip-archief</comment>
- <comment xml:lang="nn">Bzip-arkiv</comment>
- <comment xml:lang="oc">archiu bzip</comment>
- <comment xml:lang="pl">Archiwum bzip</comment>
- <comment xml:lang="pt">arquivo Bzip</comment>
- <comment xml:lang="pt_BR">Pacote Bzip</comment>
- <comment xml:lang="ro">Arhivă Bzip</comment>
- <comment xml:lang="ru">Архив BZIP</comment>
- <comment xml:lang="sk">Archív bzip</comment>
- <comment xml:lang="sl">Datoteka arhiva Bzip</comment>
- <comment xml:lang="sq">Arkiv bzip</comment>
- <comment xml:lang="sr">Бзип архива</comment>
- <comment xml:lang="sv">Bzip-arkiv</comment>
- <comment xml:lang="tr">Bzip arşivi</comment>
- <comment xml:lang="uk">архів bzip</comment>
- <comment xml:lang="vi">Kho nén bzip</comment>
- <comment xml:lang="zh_CN">Bzip 归档文件</comment>
- <comment xml:lang="zh_TW">Bzip 封存檔</comment>
+ <mime-type type="application/x-bzip1">
+ <comment>Bzip1 archive</comment>
+ <comment xml:lang="uk">архів bzip1</comment>
+ <comment xml:lang="sv">Bzip1-arkiv</comment>
+ <comment xml:lang="ru">Архив Bzip1</comment>
+ <comment xml:lang="pl">Archiwum bzip1</comment>
+ <comment xml:lang="es">archivador BZIP1</comment>
+ <comment xml:lang="de">Bzip1-Archiv</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="BZh" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="BZ0" offset="0"/>
</magic>
- <glob pattern="*.bz2"/>
<glob pattern="*.bz"/>
- <alias type="application/x-bzip2"/>
- </mime-type>
- <mime-type type="application/x-bzip-compressed-tar">
- <comment>Tar archive (bzip-compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط-bzip)</comment>
- <comment xml:lang="ast">Archivu Tar (comprimíu en bzip)</comment>
- <comment xml:lang="be@latin">Archiŭ tar (bzip-skampresavany)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран с bzip</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió bzip)</comment>
- <comment xml:lang="cs">archiv Tar (komprimovaný pomocí bzip)</comment>
- <comment xml:lang="da">Tar-arkiv (bzip-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (bzip-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με bzip)</comment>
- <comment xml:lang="en_GB">Tar archive (bzip-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con bzip)</comment>
- <comment xml:lang="eu">Tar artxiboa (bzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (bzip-pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn (bzip-stappað)</comment>
- <comment xml:lang="fr">archive tar (compressée bzip)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le bzip)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido con bzip)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י bzip)</comment>
- <comment xml:lang="hr">Tar arhiva (bzip sažeto)</comment>
- <comment xml:lang="hu">Tar archívum (bzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite con bzip)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi bzip)</comment>
- <comment xml:lang="it">Archivio tar (compresso con bzip)</comment>
- <comment xml:lang="ja">Tar アーカイブ (bzip 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (bzip-пен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(BZIP 압축)</comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas su bzip)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests ar bzip)</comment>
- <comment xml:lang="nb">Tar-arkiv (bzip-komprimert)</comment>
- <comment xml:lang="nl">Tar-archief (ingepakt met bzip)</comment>
- <comment xml:lang="nn">Tar-arkiv (pakka med bzip)</comment>
- <comment xml:lang="oc">archiu tar (compressat bzip)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja bzip)</comment>
- <comment xml:lang="pt">arquivo Tar (compressão bzip)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado com bzip)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată bzip)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый bzip)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou bzip)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z bzip)</comment>
- <comment xml:lang="sq">Arkiv tar (i kompresuar me bzip)</comment>
- <comment xml:lang="sr">Тар архива (запакована бзипом)</comment>
- <comment xml:lang="sv">Tar-arkiv (bzip-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (bzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений bzip)</comment>
- <comment xml:lang="vi">Kho nén tar (đã nén bzip)</comment>
- <comment xml:lang="zh_CN">Tar 归档文件(bzip 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (bzip 格式壓縮)</comment>
+ </mime-type>
+ <mime-type type="application/x-bzip1-compressed-tar">
+ <comment>Tar archive (bzip1-compressed)</comment>
+ <comment xml:lang="uk">архів tar (стиснений bzip1)</comment>
+ <comment xml:lang="sv">Tar-arkiv (bzip1-komprimerat)</comment>
+ <comment xml:lang="ru">Архив Tar (сжатый bzip1)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja bzip1)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con BZIP1)</comment>
+ <comment xml:lang="de">Tar-Archiv (bzip1-komprimiert)</comment>
<generic-icon name="package-x-generic"/>
- <sub-class-of type="application/x-bzip"/>
- <glob pattern="*.tar.bz2"/>
+ <sub-class-of type="application/x-bzip1"/>
<glob pattern="*.tar.bz"/>
- <glob pattern="*.tbz2"/>
<glob pattern="*.tbz"/>
+ </mime-type>
+ <mime-type type="application/x-bzip2">
+ <comment>Bzip2 archive</comment>
+ <comment xml:lang="uk">архів bzip2</comment>
+ <comment xml:lang="sv">Bzip2-arkiv</comment>
+ <comment xml:lang="ru">Архив Bzip2</comment>
+ <comment xml:lang="pt_BR">Pacote Bzip2</comment>
+ <comment xml:lang="pl">Archiwum bzip2</comment>
+ <comment xml:lang="it">Archivio bzip2</comment>
+ <comment xml:lang="gl">Arquivo Bzip2</comment>
+ <comment xml:lang="eu">Bzip2 artxiboa</comment>
+ <comment xml:lang="es">archivador BZIP2</comment>
+ <comment xml:lang="de">Bzip2-Archiv</comment>
+ <comment xml:lang="be">архіў bzip2</comment>
+ <generic-icon name="package-x-generic"/>
+ <magic>
+ <match type="string" value="BZh" offset="0"/>
+ </magic>
+ <glob pattern="*.bz2"/>
+ <alias type="application/bzip2"/>
+ <alias type="application/x-bzip"/>
+ </mime-type>
+ <mime-type type="application/x-bzip2-compressed-tar">
+ <comment>Tar archive (bzip2-compressed)</comment>
+ <comment xml:lang="uk">архів tar (стиснений bzip2)</comment>
+ <comment xml:lang="sv">Tar-arkiv (bzip2-komprimerat)</comment>
+ <comment xml:lang="ru">Архив Tar (сжатый bzip2)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja bzip2)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con BZIP2)</comment>
+ <comment xml:lang="de">Tar-Archiv (bzip2-komprimiert)</comment>
+ <generic-icon name="package-x-generic"/>
+ <sub-class-of type="application/x-bzip2"/>
+ <glob pattern="*.tar.bz2"/>
+ <glob pattern="*.tbz2"/>
<glob pattern="*.tb2"/>
+ <alias type="application/x-bzip-compressed-tar"/>
+ </mime-type>
+ <mime-type type="application/x-bzip3">
+ <comment>Bzip3 archive</comment>
+ <comment xml:lang="uk">архів bzip3</comment>
+ <comment xml:lang="sv">Bzip3-arkiv</comment>
+ <comment xml:lang="ru">Архив Bzip3</comment>
+ <comment xml:lang="pl">Archiwum bzip3</comment>
+ <comment xml:lang="it">Archivio bzip3</comment>
+ <comment xml:lang="gl">Arquivo Bzip3</comment>
+ <comment xml:lang="eu">Bzip3 artxiboa</comment>
+ <comment xml:lang="es">archivador BZIP3</comment>
+ <comment xml:lang="de">Bzip3-Archiv</comment>
+ <comment xml:lang="be">архіў bzip3</comment>
+ <generic-icon name="package-x-generic"/>
+ <magic>
+ <match type="string" value="BZ3v1" offset="0"/>
+ </magic>
+ <glob pattern="*.bz3"/>
+ </mime-type>
+ <mime-type type="application/x-bzip3-compressed-tar">
+ <comment>Tar archive (bzip3-compressed)</comment>
+ <comment xml:lang="uk">архів tar (стиснений bzip3)</comment>
+ <comment xml:lang="sv">Tar-arkiv (bzip3-komprimerat)</comment>
+ <comment xml:lang="ru">TAR Архив (сжатый bzip3)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja bzip3)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con bzip3)</comment>
+ <comment xml:lang="gl">Arquivo Tar (comprimido con bzip3)</comment>
+ <comment xml:lang="eu">Tar artxiboa (bzip3-compressed)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con BZIP3)</comment>
+ <comment xml:lang="de">Tar-Archiv (bzip3-komprimiert)</comment>
+ <comment xml:lang="be">архіў tar (сцісканне bzip3)</comment>
+ <generic-icon name="package-x-generic"/>
+ <sub-class-of type="application/x-bzip3"/>
+ <glob pattern="*.tar.bz3"/>
+ <glob pattern="*.tbz3"/>
</mime-type>
<mime-type type="application/x-bzpdf">
- <comment>PDF document (bzip-compressed)</comment>
- <comment xml:lang="ar">مستند PDF (مضغوط-bzip)</comment>
- <comment xml:lang="ast">Documentu PDF (comprimíu en bzip)</comment>
- <comment xml:lang="be@latin">Dakument PDF (bzip-skampresavany)</comment>
- <comment xml:lang="bg">Документ — PDF, компресиран с bzip</comment>
- <comment xml:lang="ca">document PDF (amb compressió bzip)</comment>
- <comment xml:lang="cs">dokument PDF (komprimovaný pomocí bzip)</comment>
- <comment xml:lang="da">PDF-dokument (bzip-komprimeret)</comment>
- <comment xml:lang="de">PDF-Dokument (bzip-komprimiert)</comment>
- <comment xml:lang="el">Έγγραφο PDF (συμπιεσμένο με bzip)</comment>
- <comment xml:lang="en_GB">PDF document (bzip-compressed)</comment>
- <comment xml:lang="es">documento PDF (comprimido con bzip)</comment>
- <comment xml:lang="eu">PostScript dokumentua (bzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">PDF-asiakirja (bzip-pakattu)</comment>
- <comment xml:lang="fo">PDF skjal (bzip-stappað)</comment>
- <comment xml:lang="fr">document PDF (compressé bzip)</comment>
- <comment xml:lang="ga">cáipéis PDF (comhbhrúite le bzip)</comment>
- <comment xml:lang="gl">documento PDF (comprimido en bzip)</comment>
- <comment xml:lang="he">מסמך PDF (מכווץ ע״י bzip)</comment>
- <comment xml:lang="hr">PDF dokument (bzip sažet)</comment>
- <comment xml:lang="hu">PDF dokumentum (bzip-tömörítésű)</comment>
- <comment xml:lang="ia">Documento PDF (comprimite con bzip)</comment>
- <comment xml:lang="id">Dokumen PDF (terkompresi bzip)</comment>
- <comment xml:lang="it">Documento PDF (compresso con bzip)</comment>
- <comment xml:lang="ja">PDF ドキュメント (bzip 圧縮)</comment>
- <comment xml:lang="kk">PDF құжаты (bzip-пен сығылған)</comment>
- <comment xml:lang="ko">PDF 문서(BZIP 압축)</comment>
- <comment xml:lang="lt">PDF dokumentas (suglaudintas su bzip)</comment>
- <comment xml:lang="lv">PDF dokuments (saspiests ar bzip)</comment>
- <comment xml:lang="nb">PDF-dokument (bzip-komprimert)</comment>
- <comment xml:lang="nl">PDF-document (ingepakt met bzip)</comment>
- <comment xml:lang="nn">PDF-dokument (pakka med bzip)</comment>
- <comment xml:lang="oc">document PDF (compressat bzip)</comment>
- <comment xml:lang="pl">Dokument PDF (kompresja bzip)</comment>
- <comment xml:lang="pt">documento PDF (compressão bzip)</comment>
- <comment xml:lang="pt_BR">Documento PDF (compactado com bzip)</comment>
- <comment xml:lang="ro">Document PDF (comprimat bzip)</comment>
- <comment xml:lang="ru">Документ PDF (сжатый bzip)</comment>
- <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou bzip)</comment>
- <comment xml:lang="sl">Dokument PDF (stisnjen z bzip)</comment>
- <comment xml:lang="sq">Dokument PDF (i kompresuar me bzip)</comment>
- <comment xml:lang="sr">ПДФ документ (запакован бзипом)</comment>
- <comment xml:lang="sv">PDF-dokument (bzip-komprimerat)</comment>
- <comment xml:lang="tr">PDF belgesi (bzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ PDF (стиснений bzip)</comment>
- <comment xml:lang="vi">Tài liệu PDF (đã nén bzip)</comment>
- <comment xml:lang="zh_CN">PDF 文档(bzip 压缩)</comment>
- <comment xml:lang="zh_TW">PDF 文件 (bzip 格式壓縮)</comment>
- <sub-class-of type="application/x-bzip"/>
+ <comment>PDF document (bzip2-compressed)</comment>
+ <comment xml:lang="uk">документ PDF (стиснений bzip2)</comment>
+ <comment xml:lang="sv">PDF-dokument (bzip2-komprimerat)</comment>
+ <comment xml:lang="ru">Документ PDF (сжатый bzip2)</comment>
+ <comment xml:lang="pl">Dokument PDF (kompresja bzip2)</comment>
+ <comment xml:lang="es">documento PDF (comprimido con BZIP2)</comment>
+ <comment xml:lang="de">PDF-Dokument (bzip2-komprimiert)</comment>
+ <sub-class-of type="application/x-bzip2"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.pdf.bz2"/>
</mime-type>
<mime-type type="application/x-bzpostscript">
- <comment>PostScript document (bzip-compressed)</comment>
- <comment xml:lang="ar">مستند PostScript (مضغوط-bzip)</comment>
- <comment xml:lang="ast">Documentu PostScript (comprimíu en bzip)</comment>
- <comment xml:lang="be@latin">Dakument PostScript (bzip-skampresavany)</comment>
- <comment xml:lang="bg">Документ — PostScript, компресиран с bzip</comment>
- <comment xml:lang="ca">document PostScript (amb compressió bzip)</comment>
- <comment xml:lang="cs">dokument PostScript (komprimovaný pomocí bzip)</comment>
- <comment xml:lang="da">PostScript-dokument (bzip-komprimeret)</comment>
- <comment xml:lang="de">PostScript-Dokument (bzip-komprimiert)</comment>
- <comment xml:lang="el">Έγγραφο PostScript (συμπιεσμένο με bzip)</comment>
- <comment xml:lang="en_GB">PostScript document (bzip-compressed)</comment>
- <comment xml:lang="es">documento PostScript (comprimido con bzip)</comment>
- <comment xml:lang="eu">PostScript dokumentua (bzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">PostScript-asiakirja (bzip-pakattu)</comment>
- <comment xml:lang="fo">PostScript skjal (bzip-stappað)</comment>
- <comment xml:lang="fr">document PostScript (compressé bzip)</comment>
- <comment xml:lang="ga">cáipéis PostScript (comhbhrúite le bzip)</comment>
- <comment xml:lang="gl">documento PostScript (comprimido con bzip)</comment>
- <comment xml:lang="he">מסמך PostDcript (מכווץ ע״י bzip)</comment>
- <comment xml:lang="hr">PostScript dokument (bzip sažet)</comment>
- <comment xml:lang="hu">PostScript dokumentum (bzip-tömörítésű)</comment>
- <comment xml:lang="ia">Documento PostScript (comprimite con bzip)</comment>
- <comment xml:lang="id">Dokumen PostScript (terkompresi bzip)</comment>
- <comment xml:lang="it">Documento PostScript (compresso con bzip)</comment>
- <comment xml:lang="ja">PostScript ドキュメント (bzip 圧縮)</comment>
- <comment xml:lang="kk">PostScript құжаты (bzip-пен сығылған)</comment>
- <comment xml:lang="ko">PostScript 문서(BZIP 압축)</comment>
- <comment xml:lang="lt">PostScript dokumentas (suglaudintas su bzip)</comment>
- <comment xml:lang="lv">PostScript dokuments (saspiests ar bzip)</comment>
- <comment xml:lang="nb">PostScript-dokument (bzip-komprimert)</comment>
- <comment xml:lang="nl">PostScript-document (ingepakt met bzip)</comment>
- <comment xml:lang="nn">PostScript-dokument (pakka med bzip)</comment>
- <comment xml:lang="oc">document PostEscript (compressat bzip)</comment>
- <comment xml:lang="pl">Dokument Postscript (kompresja bzip)</comment>
- <comment xml:lang="pt">documento PostScript (compressão bzip)</comment>
- <comment xml:lang="pt_BR">Documento PostScript (compactado com bzip)</comment>
- <comment xml:lang="ro">Document PostScript (comprimat bzip)</comment>
- <comment xml:lang="ru">Документ PostScript (сжатый bzip)</comment>
- <comment xml:lang="sk">Dokument PostScript (komprimovaný pomocou bzip)</comment>
- <comment xml:lang="sl">Dokument PostScript (stisnjen z bzip)</comment>
- <comment xml:lang="sq">Dokument PostScript (i kompresuar me bzip)</comment>
- <comment xml:lang="sr">Постскрипт документ (запакован бзипом)</comment>
- <comment xml:lang="sv">Postscript-dokument (bzip-komprimerat)</comment>
- <comment xml:lang="tr">PostScript belgesi (bzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ PostScript (стиснене bzip)</comment>
- <comment xml:lang="vi">Tài liệu PostScript (đã nén bzip)</comment>
- <comment xml:lang="zh_CN">PostScript 文档(bzip 压缩)</comment>
- <comment xml:lang="zh_TW">PostScript 文件 (bzip 格式壓縮)</comment>
- <sub-class-of type="application/x-bzip"/>
+ <comment>PostScript document (bzip2-compressed)</comment>
+ <comment xml:lang="uk">документ PostScript (стиснений bzip2)</comment>
+ <comment xml:lang="sv">Postscript-dokument (bzip2-komprimerat)</comment>
+ <comment xml:lang="ru">Документ PostScript (сжатый bzip2)</comment>
+ <comment xml:lang="pl">Dokument PostScript (kompresja bzip2)</comment>
+ <comment xml:lang="es">documento PostScript (comprimido con BZIP2)</comment>
+ <comment xml:lang="de">PostScript-Dokument (bzip2-komprimiert)</comment>
+ <sub-class-of type="application/x-bzip2"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.ps.bz2"/>
</mime-type>
<mime-type type="application/vnd.comicbook-rar">
- <comment>comic book archive</comment>
- <comment xml:lang="ar">أرشيف comic book</comment>
- <comment xml:lang="be@latin">archiŭ komiksaŭ</comment>
- <comment xml:lang="bg">Архив — комикси</comment>
- <comment xml:lang="ca">arxiu comic book</comment>
- <comment xml:lang="cs">archiv knihy komiksů</comment>
- <comment xml:lang="da">comic book-arkiv</comment>
- <comment xml:lang="de">Comic-Book-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο κόμικ</comment>
- <comment xml:lang="en_GB">comic book archive</comment>
- <comment xml:lang="es">archivador de libro de cómic</comment>
- <comment xml:lang="eu">komiki artxiboa</comment>
- <comment xml:lang="fi">sarjakuva-arkisto</comment>
- <comment xml:lang="fo">teknisøgubóka skjalasavn</comment>
- <comment xml:lang="fr">archive Comic Book</comment>
- <comment xml:lang="ga">cartlann chartúin</comment>
- <comment xml:lang="gl">ficheiro de libro de banda deseñada</comment>
- <comment xml:lang="he">ארכיון ספר קומי</comment>
- <comment xml:lang="hr">Strip arhiva</comment>
- <comment xml:lang="hu">képregényarchívum</comment>
- <comment xml:lang="ia">Archivo Comic Book</comment>
- <comment xml:lang="id">arsip buku komik</comment>
- <comment xml:lang="it">Archivio comic book</comment>
- <comment xml:lang="ja">コミックブックアーカイブ</comment>
- <comment xml:lang="kk">комикстар архиві</comment>
- <comment xml:lang="ko">만화책 압축 파일</comment>
- <comment xml:lang="lt">komiksų knygos archyvas</comment>
- <comment xml:lang="lv">komiksu grāmatas arhīvs</comment>
- <comment xml:lang="nb">Tegneseriearkiv</comment>
- <comment xml:lang="nl">stripboek-archief</comment>
- <comment xml:lang="nn">teikneseriearkiv</comment>
- <comment xml:lang="oc">archiu Comic Book</comment>
- <comment xml:lang="pl">Archiwum komiksu</comment>
- <comment xml:lang="pt">arquivo de banda desenhada</comment>
- <comment xml:lang="pt_BR">Pacote de histórias em quadrinhos</comment>
- <comment xml:lang="ro">arhivă benzi desenate</comment>
- <comment xml:lang="ru">Архив комиксов</comment>
- <comment xml:lang="sk">Archív knihy komiksov</comment>
- <comment xml:lang="sl">Datoteka arhiva stripov</comment>
- <comment xml:lang="sq">Arkiv comic book</comment>
- <comment xml:lang="sr">архива стрипа</comment>
- <comment xml:lang="sv">serietidningsarkiv</comment>
- <comment xml:lang="tr">çizgi roman arşivi</comment>
- <comment xml:lang="uk">архів коміксів</comment>
- <comment xml:lang="vi">Kho nén sách tranh chuyện vui</comment>
- <comment xml:lang="zh_CN">漫画书归档文件</comment>
- <comment xml:lang="zh_TW">漫畫書封存檔</comment>
+ <comment>Comic book archive (rar container)</comment>
+ <comment xml:lang="uk">архів коміксів (контейнер rar)</comment>
+ <comment xml:lang="sv">Serietidningsarkiv (rar-behållare)</comment>
+ <comment xml:lang="ru">Архив комиксов (rar-контейнер)</comment>
+ <comment xml:lang="pl">Archiwum komiksu (kontener RAR)</comment>
+ <comment xml:lang="it">Archivio comic book (contenitore rar)</comment>
+ <comment xml:lang="gl">Arquivo de libro de banda deseñada (contedor rar)</comment>
+ <comment xml:lang="es">archivador de libro de historietas (contenedor RAR)</comment>
+ <comment xml:lang="de">Comic-Book-Archiv (rar-Container)</comment>
+ <comment xml:lang="be">архіў comic book (кантэйнер rar)</comment>
<sub-class-of type="application/vnd.rar"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.cbr"/>
<alias type="application/x-cbr"/>
</mime-type>
<mime-type type="application/x-cb7">
- <comment>comic book archive</comment>
- <comment xml:lang="ar">أرشيف comic book</comment>
- <comment xml:lang="be@latin">archiŭ komiksaŭ</comment>
- <comment xml:lang="bg">Архив — комикси</comment>
- <comment xml:lang="ca">arxiu comic book</comment>
- <comment xml:lang="cs">archiv knihy komiksů</comment>
- <comment xml:lang="da">comic book-arkiv</comment>
- <comment xml:lang="de">Comic-Book-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο κόμικ</comment>
- <comment xml:lang="en_GB">comic book archive</comment>
- <comment xml:lang="es">archivador de libro de cómic</comment>
- <comment xml:lang="eu">komiki artxiboa</comment>
- <comment xml:lang="fi">sarjakuva-arkisto</comment>
- <comment xml:lang="fo">teknisøgubóka skjalasavn</comment>
- <comment xml:lang="fr">archive Comic Book</comment>
- <comment xml:lang="ga">cartlann chartúin</comment>
- <comment xml:lang="gl">ficheiro de libro de banda deseñada</comment>
- <comment xml:lang="he">ארכיון ספר קומי</comment>
- <comment xml:lang="hr">Strip arhiva</comment>
- <comment xml:lang="hu">képregényarchívum</comment>
- <comment xml:lang="ia">Archivo Comic Book</comment>
- <comment xml:lang="id">arsip buku komik</comment>
- <comment xml:lang="it">Archivio comic book</comment>
- <comment xml:lang="ja">コミックブックアーカイブ</comment>
- <comment xml:lang="kk">комикстар архиві</comment>
- <comment xml:lang="ko">만화책 압축 파일</comment>
- <comment xml:lang="lt">komiksų knygos archyvas</comment>
- <comment xml:lang="lv">komiksu grāmatas arhīvs</comment>
- <comment xml:lang="nb">Tegneseriearkiv</comment>
- <comment xml:lang="nl">stripboek-archief</comment>
- <comment xml:lang="nn">teikneseriearkiv</comment>
- <comment xml:lang="oc">archiu Comic Book</comment>
- <comment xml:lang="pl">Archiwum komiksu</comment>
- <comment xml:lang="pt">arquivo de banda desenhada</comment>
- <comment xml:lang="pt_BR">Pacote de histórias em quadrinhos</comment>
- <comment xml:lang="ro">arhivă benzi desenate</comment>
- <comment xml:lang="ru">Архив комиксов</comment>
- <comment xml:lang="sk">Archív knihy komiksov</comment>
- <comment xml:lang="sl">Datoteka arhiva stripov</comment>
- <comment xml:lang="sq">Arkiv comic book</comment>
- <comment xml:lang="sr">архива стрипа</comment>
- <comment xml:lang="sv">serietidningsarkiv</comment>
- <comment xml:lang="tr">çizgi roman arşivi</comment>
- <comment xml:lang="uk">архів коміксів</comment>
- <comment xml:lang="vi">Kho nén sách tranh chuyện vui</comment>
- <comment xml:lang="zh_CN">漫画书归档文件</comment>
- <comment xml:lang="zh_TW">漫畫書封存檔</comment>
+ <comment>Comic book archive (7z container)</comment>
+ <comment xml:lang="uk">архів коміксів (контейнер 7z)</comment>
+ <comment xml:lang="sv">Serietidningsarkiv (7z-behållare)</comment>
+ <comment xml:lang="ru">Архив комиксов (7z-контейнер)</comment>
+ <comment xml:lang="pl">Archiwum komiksu (kontener 7z)</comment>
+ <comment xml:lang="it">Archivio comic book (contenitore 7z)</comment>
+ <comment xml:lang="gl">Arquivo de libro de banda deseñada (contedor 7z)</comment>
+ <comment xml:lang="es">archivador de libro de historietas (contenedor 7Z)</comment>
+ <comment xml:lang="de">Comic-Book-Archiv (7z-Container)</comment>
+ <comment xml:lang="be">архіў comic book (кантэйнер 7z)</comment>
<sub-class-of type="application/x-7z-compressed"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.cb7"/>
</mime-type>
<mime-type type="application/x-cbt">
- <comment>comic book archive</comment>
- <comment xml:lang="ar">أرشيف comic book</comment>
- <comment xml:lang="be@latin">archiŭ komiksaŭ</comment>
- <comment xml:lang="bg">Архив — комикси</comment>
- <comment xml:lang="ca">arxiu comic book</comment>
- <comment xml:lang="cs">archiv knihy komiksů</comment>
- <comment xml:lang="da">comic book-arkiv</comment>
- <comment xml:lang="de">Comic-Book-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο κόμικ</comment>
- <comment xml:lang="en_GB">comic book archive</comment>
- <comment xml:lang="es">archivador de libro de cómic</comment>
- <comment xml:lang="eu">komiki artxiboa</comment>
- <comment xml:lang="fi">sarjakuva-arkisto</comment>
- <comment xml:lang="fo">teknisøgubóka skjalasavn</comment>
- <comment xml:lang="fr">archive Comic Book</comment>
- <comment xml:lang="ga">cartlann chartúin</comment>
- <comment xml:lang="gl">ficheiro de libro de banda deseñada</comment>
- <comment xml:lang="he">ארכיון ספר קומי</comment>
- <comment xml:lang="hr">Strip arhiva</comment>
- <comment xml:lang="hu">képregényarchívum</comment>
- <comment xml:lang="ia">Archivo Comic Book</comment>
- <comment xml:lang="id">arsip buku komik</comment>
- <comment xml:lang="it">Archivio comic book</comment>
- <comment xml:lang="ja">コミックブックアーカイブ</comment>
- <comment xml:lang="kk">комикстар архиві</comment>
- <comment xml:lang="ko">만화책 압축 파일</comment>
- <comment xml:lang="lt">komiksų knygos archyvas</comment>
- <comment xml:lang="lv">komiksu grāmatas arhīvs</comment>
- <comment xml:lang="nb">Tegneseriearkiv</comment>
- <comment xml:lang="nl">stripboek-archief</comment>
- <comment xml:lang="nn">teikneseriearkiv</comment>
- <comment xml:lang="oc">archiu Comic Book</comment>
- <comment xml:lang="pl">Archiwum komiksu</comment>
- <comment xml:lang="pt">arquivo de banda desenhada</comment>
- <comment xml:lang="pt_BR">Pacote de histórias em quadrinhos</comment>
- <comment xml:lang="ro">arhivă benzi desenate</comment>
- <comment xml:lang="ru">Архив комиксов</comment>
- <comment xml:lang="sk">Archív knihy komiksov</comment>
- <comment xml:lang="sl">Datoteka arhiva stripov</comment>
- <comment xml:lang="sq">Arkiv comic book</comment>
- <comment xml:lang="sr">архива стрипа</comment>
- <comment xml:lang="sv">serietidningsarkiv</comment>
- <comment xml:lang="tr">çizgi roman arşivi</comment>
- <comment xml:lang="uk">архів коміксів</comment>
- <comment xml:lang="vi">Kho nén sách tranh chuyện vui</comment>
- <comment xml:lang="zh_CN">漫画书归档文件</comment>
- <comment xml:lang="zh_TW">漫畫書封存檔</comment>
+ <comment>Comic book archive (tar container)</comment>
+ <comment xml:lang="uk">архів коміксів (контейнер tar)</comment>
+ <comment xml:lang="sv">Serietidningsarkiv (tar-behållare)</comment>
+ <comment xml:lang="ru">Архив комиксов (tar-контейнер)</comment>
+ <comment xml:lang="pl">Archiwum komiksu (kontener tar)</comment>
+ <comment xml:lang="it">Archivio comic book (contenitore tar)</comment>
+ <comment xml:lang="gl">Arquivo de libro de banda deseñada (contedor tar)</comment>
+ <comment xml:lang="es">archivador de libro de historietas (contenedor TAR)</comment>
+ <comment xml:lang="de">Comic-Book-Archiv (tar-Container)</comment>
+ <comment xml:lang="be">архіў comic book (кантэйнер tar)</comment>
<sub-class-of type="application/x-tar"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.cbt"/>
</mime-type>
<mime-type type="application/vnd.comicbook+zip">
- <comment>comic book archive</comment>
- <comment xml:lang="ar">أرشيف comic book</comment>
- <comment xml:lang="be@latin">archiŭ komiksaŭ</comment>
- <comment xml:lang="bg">Архив — комикси</comment>
- <comment xml:lang="ca">arxiu comic book</comment>
- <comment xml:lang="cs">archiv knihy komiksů</comment>
- <comment xml:lang="da">comic book-arkiv</comment>
- <comment xml:lang="de">Comic-Book-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο κόμικ</comment>
- <comment xml:lang="en_GB">comic book archive</comment>
- <comment xml:lang="es">archivador de libro de cómic</comment>
- <comment xml:lang="eu">komiki artxiboa</comment>
- <comment xml:lang="fi">sarjakuva-arkisto</comment>
- <comment xml:lang="fo">teknisøgubóka skjalasavn</comment>
- <comment xml:lang="fr">archive Comic Book</comment>
- <comment xml:lang="ga">cartlann chartúin</comment>
- <comment xml:lang="gl">ficheiro de libro de banda deseñada</comment>
- <comment xml:lang="he">ארכיון ספר קומי</comment>
- <comment xml:lang="hr">Strip arhiva</comment>
- <comment xml:lang="hu">képregényarchívum</comment>
- <comment xml:lang="ia">Archivo Comic Book</comment>
- <comment xml:lang="id">arsip buku komik</comment>
- <comment xml:lang="it">Archivio comic book</comment>
- <comment xml:lang="ja">コミックブックアーカイブ</comment>
- <comment xml:lang="kk">комикстар архиві</comment>
- <comment xml:lang="ko">만화책 압축 파일</comment>
- <comment xml:lang="lt">komiksų knygos archyvas</comment>
- <comment xml:lang="lv">komiksu grāmatas arhīvs</comment>
- <comment xml:lang="nb">Tegneseriearkiv</comment>
- <comment xml:lang="nl">stripboek-archief</comment>
- <comment xml:lang="nn">teikneseriearkiv</comment>
- <comment xml:lang="oc">archiu Comic Book</comment>
- <comment xml:lang="pl">Archiwum komiksu</comment>
- <comment xml:lang="pt">arquivo de banda desenhada</comment>
- <comment xml:lang="pt_BR">Pacote de histórias em quadrinhos</comment>
- <comment xml:lang="ro">arhivă benzi desenate</comment>
- <comment xml:lang="ru">Архив комиксов</comment>
- <comment xml:lang="sk">Archív knihy komiksov</comment>
- <comment xml:lang="sl">Datoteka arhiva stripov</comment>
- <comment xml:lang="sq">Arkiv comic book</comment>
- <comment xml:lang="sr">архива стрипа</comment>
- <comment xml:lang="sv">serietidningsarkiv</comment>
- <comment xml:lang="tr">çizgi roman arşivi</comment>
- <comment xml:lang="uk">архів коміксів</comment>
- <comment xml:lang="vi">Kho nén sách tranh chuyện vui</comment>
- <comment xml:lang="zh_CN">漫画书归档文件</comment>
- <comment xml:lang="zh_TW">漫畫書封存檔</comment>
+ <comment>Comic book archive (zip container)</comment>
+ <comment xml:lang="uk">архів коміксів (контейнер zip)</comment>
+ <comment xml:lang="sv">Serietidningsarkiv (zip-behållare)</comment>
+ <comment xml:lang="ru">Архив комиксов (zip-контейнер)</comment>
+ <comment xml:lang="pl">Archiwum komiksu (kontener ZIP)</comment>
+ <comment xml:lang="it">Archivio comic book (contenitore zip)</comment>
+ <comment xml:lang="gl">Arquivo de libro de banda deseñada (contedor zip)</comment>
+ <comment xml:lang="es">archivador de libro de historietas (contenedor ZIP)</comment>
+ <comment xml:lang="de">Comic-Book-Archiv (zip-Container)</comment>
+ <comment xml:lang="be">архіў comic book (кантэйнер zip)</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.cbz"/>
@@ -8370,97 +8638,111 @@
</mime-type>
<mime-type type="application/x-lrzip">
<comment>Lrzip archive</comment>
- <comment xml:lang="ar">أرشيف Lrzip</comment>
- <comment xml:lang="bg">Архив — lrzip</comment>
- <comment xml:lang="ca">arxiu lrzip</comment>
- <comment xml:lang="cs">archiv Lrzip</comment>
- <comment xml:lang="da">Lrzip-arkiv</comment>
- <comment xml:lang="de">Lrzip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Lrzip</comment>
- <comment xml:lang="en_GB">Lrzip archive</comment>
- <comment xml:lang="eo">Lrzip-arkivo</comment>
- <comment xml:lang="es">archivador Lrzip</comment>
- <comment xml:lang="eu">Lrzip artxiboa</comment>
- <comment xml:lang="fi">Lrzip-arkisto</comment>
- <comment xml:lang="fo">Lrzip skjalasavn</comment>
- <comment xml:lang="fr">archive lrzip</comment>
- <comment xml:lang="ga">cartlann Lrzip</comment>
- <comment xml:lang="gl">arquivo Lrzip</comment>
- <comment xml:lang="he">ארכיון Lrzip</comment>
- <comment xml:lang="hr">Lrzip arhiva</comment>
- <comment xml:lang="hu">Lrzip archívum</comment>
- <comment xml:lang="ia">Archivo Lrzip</comment>
- <comment xml:lang="id">Arsip Lrzip</comment>
- <comment xml:lang="it">Archivio Lrzip</comment>
- <comment xml:lang="ja">Lrzip アーカイブ</comment>
- <comment xml:lang="kk">Lrzip архиві</comment>
- <comment xml:lang="ko">LRZIP 압축 파일</comment>
- <comment xml:lang="lt">Lrzip archyvas</comment>
- <comment xml:lang="lv">Lrzip arhīvs</comment>
- <comment xml:lang="nl">Lrzip archief</comment>
- <comment xml:lang="oc">archiu lrzip</comment>
- <comment xml:lang="pl">Archiwum lrzip</comment>
- <comment xml:lang="pt">arquivo Lrzip</comment>
- <comment xml:lang="pt_BR">Pacote Lrzip</comment>
- <comment xml:lang="ro">Arhivă Lrzip</comment>
- <comment xml:lang="ru">Архив LRZIP</comment>
- <comment xml:lang="sk">Archív Lrzip</comment>
- <comment xml:lang="sl">Datoteka arhiva Lrzip</comment>
- <comment xml:lang="sr">Лрзип архива</comment>
- <comment xml:lang="sv">Lrzip-arkiv</comment>
- <comment xml:lang="tr">Lrzip arşivi</comment>
- <comment xml:lang="uk">архів lrzip</comment>
- <comment xml:lang="zh_CN">Lrzip 归档文件</comment>
<comment xml:lang="zh_TW">Lrzip 封存檔</comment>
+ <comment xml:lang="zh_CN">Lrzip 归档文件</comment>
+ <comment xml:lang="uk">архів lrzip</comment>
+ <comment xml:lang="tr">Lrzip arşivi</comment>
+ <comment xml:lang="sv">Lrzip-arkiv</comment>
+ <comment xml:lang="sr">Лрзип архива</comment>
+ <comment xml:lang="sq">arkiv Lrzip</comment>
+ <comment xml:lang="sl">Datoteka arhiva Lrzip</comment>
+ <comment xml:lang="si">Lrzip සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Lrzip</comment>
+ <comment xml:lang="ru">Архив LRZIP</comment>
+ <comment xml:lang="ro">Arhivă Lrzip</comment>
+ <comment xml:lang="pt_BR">Pacote Lrzip</comment>
+ <comment xml:lang="pt">arquivo Lrzip</comment>
+ <comment xml:lang="pl">Archiwum lrzip</comment>
+ <comment xml:lang="oc">archiu lrzip</comment>
+ <comment xml:lang="nl">Lrzip-archief</comment>
+ <comment xml:lang="lv">Lrzip arhīvs</comment>
+ <comment xml:lang="lt">Lrzip archyvas</comment>
+ <comment xml:lang="ko">LRZIP 압축 파일</comment>
+ <comment xml:lang="kk">Lrzip архиві</comment>
+ <comment xml:lang="ja">Lrzip アーカイブ</comment>
+ <comment xml:lang="it">Archivio Lrzip</comment>
+ <comment xml:lang="is">Lrzip safnskrá</comment>
+ <comment xml:lang="id">Arsip Lrzip</comment>
+ <comment xml:lang="ia">Archivo Lrzip</comment>
+ <comment xml:lang="hu">Lrzip archívum</comment>
+ <comment xml:lang="hr">Lrzip arhiva</comment>
+ <comment xml:lang="he">ארכיון Lrzip</comment>
+ <comment xml:lang="gl">arquivo Lrzip</comment>
+ <comment xml:lang="ga">cartlann Lrzip</comment>
+ <comment xml:lang="fur">archivi Lrzip</comment>
+ <comment xml:lang="fr">archive lrzip</comment>
+ <comment xml:lang="fo">Lrzip skjalasavn</comment>
+ <comment xml:lang="fi">Lrzip-arkisto</comment>
+ <comment xml:lang="eu">Lrzip artxiboa</comment>
+ <comment xml:lang="es">archivador LRZIP</comment>
+ <comment xml:lang="eo">Lrzip-arkivo</comment>
+ <comment xml:lang="en_GB">Lrzip archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Lrzip</comment>
+ <comment xml:lang="de">Lrzip-Archiv</comment>
+ <comment xml:lang="da">Lrzip-arkiv</comment>
+ <comment xml:lang="cs">archiv Lrzip</comment>
+ <comment xml:lang="ca">arxiu lrzip</comment>
+ <comment xml:lang="bg">Архив — lrzip</comment>
+ <comment xml:lang="be">архіў Lrzip</comment>
+ <comment xml:lang="ar">أرشيف Lrzip</comment>
+ <comment xml:lang="af">Lrzip-argief</comment>
+ <acronym>Lrzip</acronym>
+ <expanded-acronym>Long Range Zip</expanded-acronym>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="LRZI" type="string" offset="0"/>
+ <match type="string" value="LRZI" offset="0"/>
</magic>
<glob pattern="*.lrz"/>
</mime-type>
<mime-type type="application/x-lrzip-compressed-tar">
<comment>Tar archive (lrzip-compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط-lrzip)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран с lrzip</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió lrzip)</comment>
- <comment xml:lang="cs">archiv Tar (komprimovaný pomocí lrzip)</comment>
- <comment xml:lang="da">Tar-arkiv (lrzip-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (lrzip-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με lrzip)</comment>
- <comment xml:lang="en_GB">Tar archive (lrzip-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con lrzip)</comment>
- <comment xml:lang="eu">Tar artxiboa (lrzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (lrzip-pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn (lrzip-stappað)</comment>
- <comment xml:lang="fr">archive tar (compressée lrzip)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le lrzip)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido con lrzip)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י lrzip)</comment>
- <comment xml:lang="hr">Tar arhiva (lrzip sažeta)</comment>
- <comment xml:lang="hu">Tar archívum (lrzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite con lrzip)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi lrzip)</comment>
- <comment xml:lang="it">Archivio tar (compresso con lrzip)</comment>
- <comment xml:lang="ja">Tar アーカイブ (lrzip 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (lrzip-пен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(LRZIP 압축)</comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas su lrzip)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests ar lrzip)</comment>
- <comment xml:lang="nl">Tar archief (lrzip-compressed)</comment>
- <comment xml:lang="oc">archiu tar (compressat lrzip)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja lrzip)</comment>
- <comment xml:lang="pt">arquivo Tar (compressão Lrzip)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado com lrzip)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată lrzip)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый lrzip)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou lrzip)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z lrzip)</comment>
- <comment xml:lang="sr">Тар архива (запакована лрзипом)</comment>
- <comment xml:lang="sv">Tar-arkiv (lrzip-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (lrzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений lrzip)</comment>
- <comment xml:lang="zh_CN">Tar 归档文件(lrzip 压缩)</comment>
<comment xml:lang="zh_TW">Tar 封存檔 (lrzip 格式壓縮)</comment>
+ <comment xml:lang="zh_CN">Tar 归档文件(lrzip 压缩)</comment>
+ <comment xml:lang="uk">архів tar (стиснений lrzip)</comment>
+ <comment xml:lang="tr">Tar arşivi (lrzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (lrzip-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована лрзипом)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me lrzip)</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z lrzip)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (lrzip-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou lrzip)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый lrzip)</comment>
+ <comment xml:lang="ro">Arhivă Tar (comprimată lrzip)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado com lrzip)</comment>
+ <comment xml:lang="pt">arquivo Tar (compressão Lrzip)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja lrzip)</comment>
+ <comment xml:lang="oc">archiu tar (compressat lrzip)</comment>
+ <comment xml:lang="nl">Tar-archief (gecomprimeerd met lrzip)</comment>
+ <comment xml:lang="lv">Tar arhīvs (saspiests ar lrzip)</comment>
+ <comment xml:lang="lt">Tar archyvas (suglaudintas su lrzip)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(LRZIP 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (lrzip-пен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (lrzip 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con lrzip)</comment>
+ <comment xml:lang="is">Tar safnskrá (lrzip-þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi lrzip)</comment>
+ <comment xml:lang="ia">Archivo Tar (comprimite con lrzip)</comment>
+ <comment xml:lang="hu">Tar archívum (lrzip tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (lrzip sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י lrzip)</comment>
+ <comment xml:lang="gl">arquivo Tar (comprimido con lrzip)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le lrzip)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun lrzip)</comment>
+ <comment xml:lang="fr">archive tar (compressée lrzip)</comment>
+ <comment xml:lang="fo">Tar skjalasavn (lrzip-stappað)</comment>
+ <comment xml:lang="fi">Tar-arkisto (lrzip-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (lrzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con LRZIP)</comment>
+ <comment xml:lang="en_GB">Tar archive (lrzip-compressed)</comment>
+ <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με lrzip)</comment>
+ <comment xml:lang="de">Tar-Archiv (lrzip-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (lrzip-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimovaný pomocí lrzip)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió lrzip)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с lrzip</comment>
+ <comment xml:lang="be">архіў tar (сцісканне lrzip)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-lrzip)</comment>
+ <comment xml:lang="af">Tar-argief (lrzip-saamgepers)</comment>
<generic-icon name="package-x-generic"/>
<sub-class-of type="application/x-lrzip"/>
<glob pattern="*.tar.lrz"/>
@@ -8468,223 +8750,309 @@
</mime-type>
<mime-type type="application/x-apple-diskimage">
<comment>Apple disk image</comment>
- <comment xml:lang="ast">Imaxe de discu d'Apple</comment>
- <comment xml:lang="bg">Диск — Apple</comment>
- <comment xml:lang="ca">imatge de disc d'Apple</comment>
- <comment xml:lang="cs">obraz disku Apple</comment>
- <comment xml:lang="da">Apple-diskaftryk</comment>
- <comment xml:lang="de">Apple-Datenträgerabbild</comment>
- <comment xml:lang="el">Εικόνα δίσκου Apple</comment>
- <comment xml:lang="en_GB">Apple disk image</comment>
- <comment xml:lang="es">imagen de disco de Apple</comment>
- <comment xml:lang="eu">Apple disko irudia</comment>
- <comment xml:lang="fi">Apple-levytiedosto</comment>
- <comment xml:lang="fr">image disque Apple</comment>
- <comment xml:lang="ga">íomhá diosca Apple</comment>
- <comment xml:lang="gl">imaxe de disco de Appl</comment>
- <comment xml:lang="he">תמונת כונן Apple</comment>
- <comment xml:lang="hr">Apple slika diska</comment>
- <comment xml:lang="hu">Apple lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco Apple</comment>
- <comment xml:lang="id">Image disk Apple</comment>
- <comment xml:lang="it">Immagine disco Apple</comment>
- <comment xml:lang="ja">Apple ディスクイメージ</comment>
- <comment xml:lang="ka">Apple-ის სადისკო გამოსახულება</comment>
- <comment xml:lang="kk">Apple диск бейнесі</comment>
- <comment xml:lang="ko">Apple 디스크 이미지</comment>
- <comment xml:lang="lv">Apple diska attēls</comment>
- <comment xml:lang="nl">Apple disk image</comment>
- <comment xml:lang="oc">imatge disc Apple</comment>
- <comment xml:lang="pl">Obraz dysku Apple</comment>
- <comment xml:lang="pt">imagem de disco Apple</comment>
- <comment xml:lang="pt_BR">Imagem de disco Apple</comment>
- <comment xml:lang="ru">Образ диска Apple Mac OS X</comment>
- <comment xml:lang="sk">Obraz disku Apple</comment>
- <comment xml:lang="sl">Odtis diska Apple</comment>
- <comment xml:lang="sr">Еплов одраз диска</comment>
- <comment xml:lang="sv">Apple-diskavbild</comment>
- <comment xml:lang="tr">Apple disk görüntüsü</comment>
- <comment xml:lang="uk">образ диска Apple</comment>
- <comment xml:lang="zh_CN">Apple 磁盘映像</comment>
<comment xml:lang="zh_TW">Apple 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">Apple 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска Apple</comment>
+ <comment xml:lang="tr">Apple disk görüntüsü</comment>
+ <comment xml:lang="sv">Apple-diskavbild</comment>
+ <comment xml:lang="sr">Еплов одраз диска</comment>
+ <comment xml:lang="sq">pamje disku Apple</comment>
+ <comment xml:lang="sl">Odtis diska Apple</comment>
+ <comment xml:lang="si">ඇපල් තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku Apple</comment>
+ <comment xml:lang="ru">Образ диска Apple Mac OS X</comment>
+ <comment xml:lang="pt_BR">Imagem de disco Apple</comment>
+ <comment xml:lang="pt">imagem de disco Apple</comment>
+ <comment xml:lang="pl">Obraz dysku Apple</comment>
+ <comment xml:lang="oc">imatge disc Apple</comment>
+ <comment xml:lang="nl">Apple-schijfkopiebestand</comment>
+ <comment xml:lang="lv">Apple diska attēls</comment>
+ <comment xml:lang="ko">Apple 디스크 이미지</comment>
+ <comment xml:lang="kk">Apple диск бейнесі</comment>
+ <comment xml:lang="ka">Apple-ის სადისკო გამოსახულება</comment>
+ <comment xml:lang="ja">Apple ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco Apple</comment>
+ <comment xml:lang="is">Apple diskmynd</comment>
+ <comment xml:lang="id">Image disk Apple</comment>
+ <comment xml:lang="ia">Imagine de disco Apple</comment>
+ <comment xml:lang="hu">Apple lemezkép</comment>
+ <comment xml:lang="hr">Apple slika diska</comment>
+ <comment xml:lang="he">תמונת כונן Apple</comment>
+ <comment xml:lang="gl">imaxe de disco de Appl</comment>
+ <comment xml:lang="ga">íomhá diosca Apple</comment>
+ <comment xml:lang="fur">imagjin disc Apple</comment>
+ <comment xml:lang="fr">image disque Apple</comment>
+ <comment xml:lang="fi">Apple-levykuva</comment>
+ <comment xml:lang="eu">Apple disko irudia</comment>
+ <comment xml:lang="es">imagen de disco de Apple</comment>
+ <comment xml:lang="en_GB">Apple disk image</comment>
+ <comment xml:lang="el">Εικόνα δίσκου Apple</comment>
+ <comment xml:lang="de">Apple-Datenträgerabbild</comment>
+ <comment xml:lang="da">Apple-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku Apple</comment>
+ <comment xml:lang="ca">imatge de disc d'Apple</comment>
+ <comment xml:lang="bg">Диск — Apple</comment>
+ <comment xml:lang="be">вобраз дыска Apple</comment>
+ <comment xml:lang="ast">Imaxe de discu d'Apple</comment>
+ <comment xml:lang="ar">صورة قرص أبل</comment>
+ <comment xml:lang="af">Apple-skyfbeeldlêer</comment>
<glob pattern="*.dmg"/>
</mime-type>
- <mime-type type="application/x-raw-disk-image">
+ <mime-type type="application/vnd.efi.img">
<comment>Raw disk image</comment>
- <comment xml:lang="ast">Imaxe de discu en bruto</comment>
- <comment xml:lang="ca">imatge de disc RAW</comment>
- <comment xml:lang="cs">surový obraz disku</comment>
- <comment xml:lang="da">Rå diskaftryk</comment>
- <comment xml:lang="de">Rohes Datenträgerabbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα δίσκου</comment>
- <comment xml:lang="en_GB">Raw disk image</comment>
- <comment xml:lang="es">imagen de disco en bruto</comment>
- <comment xml:lang="eu">Disko gordinaren irudia</comment>
- <comment xml:lang="fi">Raaka levytiedosto</comment>
- <comment xml:lang="fr">image disque Raw</comment>
- <comment xml:lang="ga">Amhíomha diosca</comment>
- <comment xml:lang="gl">Imaxe de disco en bruto</comment>
- <comment xml:lang="he">דמות גולמית של כונן</comment>
- <comment xml:lang="hr">Osnovna slika diska</comment>
- <comment xml:lang="hu">Nyers lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco crude</comment>
- <comment xml:lang="id">Image disk mentah</comment>
- <comment xml:lang="it">Immagine disco raw</comment>
- <comment xml:lang="kk">Шикі диск бейнесі</comment>
- <comment xml:lang="ko">RAW 디스크 이미지</comment>
- <comment xml:lang="oc">imatge disc Raw</comment>
- <comment xml:lang="pl">Surowy obraz dysku</comment>
- <comment xml:lang="pt">imagem de disco Raw</comment>
- <comment xml:lang="pt_BR">Imagem bruta de disco</comment>
- <comment xml:lang="ru">Необработанный образ диска</comment>
- <comment xml:lang="sk">Obraz disku</comment>
- <comment xml:lang="sl">Surovi odtis diska</comment>
- <comment xml:lang="sr">сиров одраз диска</comment>
- <comment xml:lang="sv">Rå diskavbild</comment>
- <comment xml:lang="tr">İşlem görmemiş disk imajı</comment>
- <comment xml:lang="uk">простий образ диска</comment>
+ <comment xml:lang="zh_TW">原始磁碟映像檔</comment>
<comment xml:lang="zh_CN">原始磁盘映像</comment>
- <comment xml:lang="zh_TW">原生磁碟映像檔</comment>
+ <comment xml:lang="uk">простий образ диска</comment>
+ <comment xml:lang="tr">Ham disk görüntüsü</comment>
+ <comment xml:lang="sv">Rå diskavbild</comment>
+ <comment xml:lang="sr">сиров одраз диска</comment>
+ <comment xml:lang="sq">pamje disku e papërpunuar</comment>
+ <comment xml:lang="sl">Surovi odtis diska</comment>
+ <comment xml:lang="si">අමු තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku</comment>
+ <comment xml:lang="ru">Необработанный образ диска</comment>
+ <comment xml:lang="pt_BR">Imagem bruta de disco</comment>
+ <comment xml:lang="pt">imagem de disco Raw</comment>
+ <comment xml:lang="pl">Surowy obraz dysku</comment>
+ <comment xml:lang="oc">imatge disc Raw</comment>
+ <comment xml:lang="nl">Onbewerkt schijfkopiebestand</comment>
+ <comment xml:lang="ko">RAW 디스크 이미지</comment>
+ <comment xml:lang="kk">Шикі диск бейнесі</comment>
+ <comment xml:lang="ja">Raw ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco raw</comment>
+ <comment xml:lang="is">Hrá diskmynd</comment>
+ <comment xml:lang="id">Image disk mentah</comment>
+ <comment xml:lang="ia">Imagine de disco crude</comment>
+ <comment xml:lang="hu">Nyers lemezkép</comment>
+ <comment xml:lang="hr">Osnovna slika diska</comment>
+ <comment xml:lang="he">דמות גולמית של כונן</comment>
+ <comment xml:lang="gl">Imaxe de disco en bruto</comment>
+ <comment xml:lang="ga">Amhíomha diosca</comment>
+ <comment xml:lang="fur">imagjin disc grese</comment>
+ <comment xml:lang="fr">image disque Raw</comment>
+ <comment xml:lang="fi">Raaka levykuva</comment>
+ <comment xml:lang="eu">Disko gordinaren irudia</comment>
+ <comment xml:lang="es">imagen de disco en bruto</comment>
+ <comment xml:lang="en_GB">Raw disk image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα δίσκου</comment>
+ <comment xml:lang="de">Rohes Datenträgerabbild</comment>
+ <comment xml:lang="da">Raw-diskaftryk</comment>
+ <comment xml:lang="cs">surový obraz disku</comment>
+ <comment xml:lang="ca">imatge de disc RAW</comment>
+ <comment xml:lang="bg">Диск — raw</comment>
+ <comment xml:lang="be">неапрацаваны вобраз дыска</comment>
+ <comment xml:lang="ast">Imaxe de discu en bruto</comment>
+ <comment xml:lang="ar">صورة قرص خام</comment>
+ <comment xml:lang="af">Rou skyfbeeldlêer</comment>
+ <alias type="application/x-raw-disk-image"/>
<glob pattern="*.raw-disk-image"/>
<glob pattern="*.img"/>
</mime-type>
<mime-type type="application/x-raw-floppy-disk-image">
<comment>Floppy disk image</comment>
- <sub-class-of type="application/x-raw-disk-image"/>
+ <comment xml:lang="zh_TW">Floppy 軟碟映像檔</comment>
+ <comment xml:lang="zh_CN">软盘映像</comment>
+ <comment xml:lang="uk">образ дискети</comment>
+ <comment xml:lang="tr">Disket görüntüsü</comment>
+ <comment xml:lang="sv">Diskettavbild</comment>
+ <comment xml:lang="sr">одраз флопи диска</comment>
+ <comment xml:lang="sq">pamje diskete</comment>
+ <comment xml:lang="sl">Slika diskete</comment>
+ <comment xml:lang="si">නම්ය තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz pružného disku</comment>
+ <comment xml:lang="ru">Образ дискеты</comment>
+ <comment xml:lang="pt_BR">Imagem de disco flexível</comment>
+ <comment xml:lang="pt">imagem da disquete</comment>
+ <comment xml:lang="pl">Obraz dyskietki</comment>
+ <comment xml:lang="oc">imatge disc disqueta</comment>
+ <comment xml:lang="nl">Diskette-schijfkopiebestand</comment>
+ <comment xml:lang="ko">플로피 디스크 이미지</comment>
+ <comment xml:lang="kk">Иілгіш диск бейнесі</comment>
+ <comment xml:lang="ja">Floppy ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco floppy</comment>
+ <comment xml:lang="is">Disklingsmynd</comment>
+ <comment xml:lang="id">Image disk floppy</comment>
+ <comment xml:lang="hu">Flopi lemezkép</comment>
+ <comment xml:lang="hr">Slika diskete</comment>
+ <comment xml:lang="he">דמות תקליטון</comment>
+ <comment xml:lang="gl">Imaxe de disco de Disquete</comment>
+ <comment xml:lang="ga">íomhá diosca fhlapaigh</comment>
+ <comment xml:lang="fur">imagjin disc floppy</comment>
+ <comment xml:lang="fr">image disquette</comment>
+ <comment xml:lang="fi">Levykkeen levykuva</comment>
+ <comment xml:lang="eu">Diskete disko irudia</comment>
+ <comment xml:lang="es">imagen de disquete</comment>
+ <comment xml:lang="en_GB">Floppy disk image</comment>
+ <comment xml:lang="de">Diskettenabbild</comment>
+ <comment xml:lang="da">Floppy-diskaftryk</comment>
+ <comment xml:lang="cs">obraz diskety</comment>
+ <comment xml:lang="ca">imatge de disquet</comment>
+ <comment xml:lang="bg">Диск — флопи</comment>
+ <comment xml:lang="be">вобраз гнуткага дыска</comment>
+ <comment xml:lang="ar">صورة قرص مرن</comment>
+ <comment xml:lang="af">Disket-skyfbeeldlêer</comment>
+ <sub-class-of type="application/vnd.efi.img"/>
+ <generic-icon name="media-floppy"/>
<alias type="application/x-fd-file"/>
<glob pattern="*.fd"/>
<glob pattern="*.qd"/>
</mime-type>
<mime-type type="application/x-raw-disk-image-xz-compressed">
<comment>Raw disk image (XZ-compressed)</comment>
- <comment xml:lang="ast">Imaxe de discu en bruto (comprimida en XZ)</comment>
- <comment xml:lang="ca">imatge de disc RAW (amb compressió XZ)</comment>
- <comment xml:lang="cs">surový obraz disku (komprimovaný pomocí XZ)</comment>
- <comment xml:lang="da">Rå diskaftryk (XZ-komprimeret)</comment>
- <comment xml:lang="de">Rohes Datenträgerabbild (XZ-komprimiert)</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα δίσκου (συμπιεσμένη XZ)</comment>
- <comment xml:lang="en_GB">Raw disk image (XZ-compressed)</comment>
- <comment xml:lang="es">imagen de disco en bruto (comprimida con XZ)</comment>
- <comment xml:lang="eu">Disko gordinaren irudia (XZ-rekin konprimitua)</comment>
- <comment xml:lang="fi">Raaka levytiedosto (XZ-pakattu)</comment>
- <comment xml:lang="fr">image disque Raw (compression XZ)</comment>
- <comment xml:lang="ga">Amhíomhá (comhbhrúite le XZ)</comment>
- <comment xml:lang="gl">Imaxe de disco en bruto (comprimida en XZ)</comment>
- <comment xml:lang="he">דמות גולמית של כונן (בדחיסת XZ)</comment>
- <comment xml:lang="hr">Osnovna slika diska (XZ sažeta)</comment>
- <comment xml:lang="hu">Nyers lemezkép (XZ-vel tömörítve)</comment>
- <comment xml:lang="ia">Imagine de disco crude (comprimite con XZ)</comment>
- <comment xml:lang="id">Image disk mentah (terkompresi XZ)</comment>
- <comment xml:lang="it">Immagine disco raw (compressa XZ)</comment>
- <comment xml:lang="kk">Шикі диск бейнесі (XZ-мен сығылған)</comment>
- <comment xml:lang="ko">RAW 디스크 이미지(XZ 압축)</comment>
- <comment xml:lang="oc">imatge disc Raw (compression XZ)</comment>
- <comment xml:lang="pl">Surowy obraz dysku (kompresja XZ)</comment>
- <comment xml:lang="pt">imagem de disco Raw (compressão XZ)</comment>
- <comment xml:lang="pt_BR">Imagem bruta de disco (compactada com XZ)</comment>
- <comment xml:lang="ru">Необработанный образ диска (сжатый xz)</comment>
- <comment xml:lang="sk">Obraz disku (komprimovaný pomocou XZ)</comment>
- <comment xml:lang="sl">Surovi odtis diska (stisnjeno z XZ)</comment>
- <comment xml:lang="sr">сиров одраз диска (запакована ИксЗ-ом)</comment>
- <comment xml:lang="sv">Rå diskavbild (XZ-komprimerad)</comment>
- <comment xml:lang="tr">İşlem görmemiş disk imajı (XZ ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">простий образ диска (стиснений XZ)</comment>
+ <comment xml:lang="zh_TW">原始磁碟映像檔 (XZ 壓縮)</comment>
<comment xml:lang="zh_CN">原始磁盘映像(XZ 压缩)</comment>
- <comment xml:lang="zh_TW">原生磁碟映像 (XZ 格式壓縮)</comment>
+ <comment xml:lang="uk">простий образ диска (стиснений XZ)</comment>
+ <comment xml:lang="tr">Ham disk görüntüsü (XZ ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Rå diskavbild (XZ-komprimerad)</comment>
+ <comment xml:lang="sr">сиров одраз диска (запакована ИксЗ-ом)</comment>
+ <comment xml:lang="sq">pamje disku e papërpunuar (ngjeshur me XZ)</comment>
+ <comment xml:lang="sl">Surovi odtis diska (stisnjeno z XZ)</comment>
+ <comment xml:lang="si">අමු තැටි රූපය (XZ-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Obraz disku (komprimovaný pomocou XZ)</comment>
+ <comment xml:lang="ru">Необработанный образ диска (сжатый XZ)</comment>
+ <comment xml:lang="pt_BR">Imagem bruta de disco (compactada com XZ)</comment>
+ <comment xml:lang="pt">imagem de disco Raw (compressão XZ)</comment>
+ <comment xml:lang="pl">Surowy obraz dysku (kompresja XZ)</comment>
+ <comment xml:lang="oc">imatge disc Raw (compression XZ)</comment>
+ <comment xml:lang="nl">Onbewerkt schijfkopiebestand (gecomprimeerd met XZ)</comment>
+ <comment xml:lang="ko">RAW 디스크 이미지(XZ 압축)</comment>
+ <comment xml:lang="kk">Шикі диск бейнесі (XZ-мен сығылған)</comment>
+ <comment xml:lang="ja">Raw ディスクイメージ (XZ 圧縮)</comment>
+ <comment xml:lang="it">Immagine disco raw (compressa XZ)</comment>
+ <comment xml:lang="is">Hrá diskmynd (XZ-þjöppuð)</comment>
+ <comment xml:lang="id">Image disk mentah (terkompresi XZ)</comment>
+ <comment xml:lang="ia">Imagine de disco crude (comprimite con XZ)</comment>
+ <comment xml:lang="hu">Nyers lemezkép (XZ tömörítésű)</comment>
+ <comment xml:lang="hr">Osnovna slika diska (XZ sažeta)</comment>
+ <comment xml:lang="he">דמות גולמית של כונן (בדחיסת XZ)</comment>
+ <comment xml:lang="gl">Imaxe de disco en bruto (comprimida en XZ)</comment>
+ <comment xml:lang="ga">Amhíomhá (comhbhrúite le XZ)</comment>
+ <comment xml:lang="fur">imagjin disc grese (comprimude cun XZ)</comment>
+ <comment xml:lang="fr">image disque Raw (compression XZ)</comment>
+ <comment xml:lang="fi">Raaka levykuva (XZ-pakattu)</comment>
+ <comment xml:lang="eu">Disko gordinaren irudia (XZ-rekin konprimitua)</comment>
+ <comment xml:lang="es">imagen de disco en bruto (comprimida con XZ)</comment>
+ <comment xml:lang="en_GB">Raw disk image (XZ-compressed)</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα δίσκου (συμπιεσμένη XZ)</comment>
+ <comment xml:lang="de">Rohes Datenträgerabbild (XZ-komprimiert)</comment>
+ <comment xml:lang="da">Raw-diskaftryk (XZ-komprimeret)</comment>
+ <comment xml:lang="cs">surový obraz disku (komprimovaný pomocí XZ)</comment>
+ <comment xml:lang="ca">imatge de disc RAW (amb compressió XZ)</comment>
+ <comment xml:lang="bg">Диск — raw, компресиран с xz</comment>
+ <comment xml:lang="be">неапрацаваны вобраз дыска (сцісканне XZ)</comment>
+ <comment xml:lang="ast">Imaxe de discu en bruto (comprimida en XZ)</comment>
+ <comment xml:lang="ar">صورة قرص خام (مضغوطة-ZX)</comment>
+ <comment xml:lang="af">Rou skyfbeeldlêer (XZ-saamgepers)</comment>
<sub-class-of type="application/x-xz"/>
<glob pattern="*.raw-disk-image.xz"/>
<glob pattern="*.img.xz"/>
</mime-type>
- <mime-type type="application/x-cd-image">
- <comment>raw CD image</comment>
- <comment xml:lang="ar">صورة CD خامة</comment>
- <comment xml:lang="ast">imaxe de CD en bruto</comment>
- <comment xml:lang="be@latin">suvoraja vyjava CD</comment>
- <comment xml:lang="bg">Изображение — raw CD</comment>
- <comment xml:lang="ca">imatge de CD en cru</comment>
- <comment xml:lang="cs">surový obraz CD</comment>
- <comment xml:lang="da">rå cd-aftryk</comment>
- <comment xml:lang="de">CD-Roh-Abbild</comment>
- <comment xml:lang="el">Εικόνα περιεχομένου ψηφιακού δίσκου</comment>
- <comment xml:lang="en_GB">raw CD image</comment>
- <comment xml:lang="eo">kruda lumdiskbildo</comment>
- <comment xml:lang="es">imagen de CD en bruto</comment>
- <comment xml:lang="eu">CD gordinaren irudia </comment>
- <comment xml:lang="fi">raaka CD-vedos</comment>
- <comment xml:lang="fo">rá CD mynd</comment>
- <comment xml:lang="fr">image CD brute</comment>
- <comment xml:lang="ga">amhíomhá dhlúthdhiosca</comment>
- <comment xml:lang="gl">imaxe de CD en bruto</comment>
- <comment xml:lang="he">תמונת דיסק גולמית</comment>
- <comment xml:lang="hr">Osnovna CD slika</comment>
- <comment xml:lang="hu">nyers CD-lemezkép</comment>
- <comment xml:lang="ia">Imagine CD brute</comment>
- <comment xml:lang="id">citra CD mentah</comment>
- <comment xml:lang="it">Immagine raw CD</comment>
- <comment xml:lang="ja">生 CD イメージ</comment>
- <comment xml:lang="kk">өңделмеген CD бейнесі</comment>
- <comment xml:lang="ko">CD 이미지</comment>
- <comment xml:lang="lt">raw CD atvaizdis</comment>
- <comment xml:lang="lv">CD jēlattēls</comment>
- <comment xml:lang="ms">Imej CD mentah</comment>
- <comment xml:lang="nb">rått CD-bilde</comment>
- <comment xml:lang="nl">ruw CD-beeldbestand</comment>
- <comment xml:lang="nn">rått CD-bilete</comment>
- <comment xml:lang="oc">imatge CD brut</comment>
- <comment xml:lang="pl">Surowy obraz CD</comment>
- <comment xml:lang="pt">imagem em bruto de CD</comment>
- <comment xml:lang="pt_BR">Imagem bruta de CD</comment>
- <comment xml:lang="ro">imagine de CD brută</comment>
+ <mime-type type="application/vnd.efi.iso">
+ <comment>Raw CD image</comment>
+ <comment xml:lang="uk">простий образ CD</comment>
+ <comment xml:lang="sv">Rå cd-avbild</comment>
<comment xml:lang="ru">Необработанный образ компакт-диска</comment>
- <comment xml:lang="sk">Surový obraz CD</comment>
- <comment xml:lang="sl">surovi CD odtis</comment>
- <comment xml:lang="sq">Imazh raw CD</comment>
- <comment xml:lang="sr">сиров одраз ЦД-а</comment>
- <comment xml:lang="sv">rå cd-avbild</comment>
- <comment xml:lang="tr">Ham CD görüntüsü</comment>
- <comment xml:lang="uk">образ raw CD</comment>
- <comment xml:lang="vi">ảnh đĩa CD thô</comment>
- <comment xml:lang="zh_CN">原始 CD 映像</comment>
- <comment xml:lang="zh_TW">原生 CD 映像檔</comment>
- <sub-class-of type="application/x-raw-disk-image"/>
+ <comment xml:lang="pl">Surowy obraz CD</comment>
+ <comment xml:lang="it">Immagine raw CD</comment>
+ <comment xml:lang="gl">Imaxe de CD en bruto</comment>
+ <comment xml:lang="eu">CD irudi gordina</comment>
+ <comment xml:lang="es">imagen de CD en bruto</comment>
+ <comment xml:lang="de">CD-Roh-Abbild</comment>
+ <comment xml:lang="be">Неапрацаваны вобраз CD</comment>
+ <sub-class-of type="application/vnd.efi.img"/>
+ <generic-icon name="media-optical"/>
+ <alias type="application/x-cd-image"/>
<alias type="application/x-iso9660-image"/>
-
- <glob weight="80" pattern="*.iso"/>
+ <!-- No magic, see https://bugs.freedesktop.org/show_bug.cgi?id=10049 -->
+ <glob pattern="*.iso" weight="80"/>
<glob pattern="*.iso9660"/>
</mime-type>
+ <mime-type type="application/x-compressed-iso">
+ <comment>Compressed CD image</comment>
+ <comment xml:lang="zh_CN">压缩的 CD 映像</comment>
+ <comment xml:lang="uk">стиснений образ CD</comment>
+ <comment xml:lang="tr">Sıkıştırılmış CD görüntüsü</comment>
+ <comment xml:lang="sv">Komprimerad cd-avbild</comment>
+ <comment xml:lang="sr">компресовани ЦД одраз</comment>
+ <comment xml:lang="sl">Stisnjena slika CD</comment>
+ <comment xml:lang="si">සම්පීඩිත CD රූපය</comment>
+ <comment xml:lang="ru">Сжатый образ компакт-диска</comment>
+ <comment xml:lang="pt_BR">Imagem de CD compactada</comment>
+ <comment xml:lang="pt">Imagem de CD comprimida</comment>
+ <comment xml:lang="pl">Skompresowany obraz płyty CD</comment>
+ <comment xml:lang="oc">imatge CD compressat</comment>
+ <comment xml:lang="nl">Gecomprimeerd CD-schijfkopiebestand</comment>
+ <comment xml:lang="ko">압축된 CD 이미지</comment>
+ <comment xml:lang="kk">Сығылған CD бейнесі</comment>
+ <comment xml:lang="ja">圧縮 CD イメージ</comment>
+ <comment xml:lang="it">Immagine CD compressa</comment>
+ <comment xml:lang="is">Þjöppuð CD diskmynd</comment>
+ <comment xml:lang="id">Image CD terkompresi</comment>
+ <comment xml:lang="hu">Tömörített CD lemezkép</comment>
+ <comment xml:lang="hr">Sažeta CD slika</comment>
+ <comment xml:lang="he">דמות תקליטור דחוסה</comment>
+ <comment xml:lang="gl">Imaxe de CD comprimido</comment>
+ <comment xml:lang="fr">Image CD compressée</comment>
+ <comment xml:lang="fi">Pakattu CD-levykuva</comment>
+ <comment xml:lang="eu">Konprimatutako CD irudia</comment>
+ <comment xml:lang="es">imagen comprimida de CD</comment>
+ <comment xml:lang="en_GB">Compressed CD image</comment>
+ <comment xml:lang="de">Komprimiertes CD-Abbild</comment>
+ <comment xml:lang="da">Komprimeret CD-aftryk</comment>
+ <comment xml:lang="ca">imatge de CD amb compressió</comment>
+ <comment xml:lang="be">сціснуты вобраз CD</comment>
+ <comment xml:lang="ar">صورة سي دي مضغوطة</comment>
+ <generic-icon name="media-optical"/>
+ <magic>
+ <match value="CISO" type="string" offset="0"/>
+ </magic>
+ <glob pattern="*.cso"/>
+ </mime-type>
<mime-type type="application/x-iso9660-appimage">
<comment>AppImage application bundle</comment>
- <comment xml:lang="ca">paquet d'aplicació AppImage</comment>
- <comment xml:lang="cs">balíček AppImage s aplikací</comment>
- <comment xml:lang="da">Applmage-programsamling</comment>
- <comment xml:lang="de">AppImage-Anwendungspaket</comment>
- <comment xml:lang="en_GB">AppImage application bundle</comment>
- <comment xml:lang="es">paquete de aplicación AppImage</comment>
- <comment xml:lang="eu">AppImage aplikazio bilduma</comment>
- <comment xml:lang="fi">AppImage-sovelluspaketti</comment>
- <comment xml:lang="fr">lot applicatif AppImage</comment>
- <comment xml:lang="ga">burla feidhmchláir AppImage</comment>
- <comment xml:lang="he">חבילת יישומי AppImage</comment>
- <comment xml:lang="hr">AppImage paket aplikacije</comment>
- <comment xml:lang="hu">AppImage alkalmazáscsomag</comment>
- <comment xml:lang="id">bundel aplikasi AppImage</comment>
- <comment xml:lang="it">Bundle applicazione AppImage</comment>
- <comment xml:lang="kk">AppImage қолданбалар дестесі</comment>
- <comment xml:lang="ko">AppImage 프로그램 번들</comment>
- <comment xml:lang="pl">Pakiet programu AppImage</comment>
- <comment xml:lang="pt_BR">Pacote de aplicativo AppImage</comment>
- <comment xml:lang="ru">Пакет приложения AppImage</comment>
- <comment xml:lang="sk">Balík aplikácií AppImage</comment>
- <comment xml:lang="sr">скуп програма Ап-слике</comment>
- <comment xml:lang="sv">AppImage-programbunt</comment>
- <comment xml:lang="tr">AppImage uygulama paketi</comment>
- <comment xml:lang="uk">пакунок із програмами AppImage</comment>
- <comment xml:lang="zh_CN">AppImage 应用组合包</comment>
<comment xml:lang="zh_TW">AppImage 應用程式套組</comment>
+ <comment xml:lang="zh_CN">AppImage 应用组合包</comment>
+ <comment xml:lang="uk">пакунок із програмами AppImage</comment>
+ <comment xml:lang="tr">AppImage uygulama paketi</comment>
+ <comment xml:lang="sv">AppImage-programbunt</comment>
+ <comment xml:lang="sr">скуп програма Ап-слике</comment>
+ <comment xml:lang="sq">paketë aplikacioni AppImage</comment>
+ <comment xml:lang="si">AppImage යෙදුම් මිටියක්</comment>
+ <comment xml:lang="sk">Balík aplikácií AppImage</comment>
+ <comment xml:lang="ru">Пакет приложения AppImage</comment>
+ <comment xml:lang="pt_BR">Pacote de aplicativo AppImage</comment>
+ <comment xml:lang="pt">pacote de aplicação AppImage</comment>
+ <comment xml:lang="pl">Pakiet programu AppImage</comment>
+ <comment xml:lang="nl">AppImage-toepassingsbundel</comment>
+ <comment xml:lang="ko">AppImage 프로그램 번들</comment>
+ <comment xml:lang="kk">AppImage қолданбалар дестесі</comment>
+ <comment xml:lang="ja">AppImage アプリケーションバンドル</comment>
+ <comment xml:lang="it">Bundle applicazione AppImage</comment>
+ <comment xml:lang="is">AppImage forritavöndull</comment>
+ <comment xml:lang="id">Bundel aplikasi AppImage</comment>
+ <comment xml:lang="hu">AppImage alkalmazáscsomag</comment>
+ <comment xml:lang="hr">AppImage paket aplikacije</comment>
+ <comment xml:lang="he">חבילת יישומי AppImage</comment>
+ <comment xml:lang="gl">Paquete de aplicación de AppImage</comment>
+ <comment xml:lang="ga">burla feidhmchláir AppImage</comment>
+ <comment xml:lang="fur">côl di aplicazions AppImage</comment>
+ <comment xml:lang="fr">lot applicatif AppImage</comment>
+ <comment xml:lang="fi">AppImage-sovelluspaketti</comment>
+ <comment xml:lang="eu">AppImage aplikazio bilduma</comment>
+ <comment xml:lang="es">paquete de aplicación AppImage</comment>
+ <comment xml:lang="en_GB">AppImage application bundle</comment>
+ <comment xml:lang="de">AppImage-Anwendungspaket</comment>
+ <comment xml:lang="da">AppImage-programsamling</comment>
+ <comment xml:lang="cs">balíček AppImage s aplikací</comment>
+ <comment xml:lang="ca">paquet d'aplicació AppImage</comment>
+ <comment xml:lang="bg">Програмен пакет — AppImage</comment>
+ <comment xml:lang="be">пакет праграмы AppImage</comment>
+ <comment xml:lang="ar">حزمة تطبيق AppImage</comment>
+ <comment xml:lang="af">AppImage-toepassingsbundel</comment>
<sub-class-of type="application/x-executable"/>
- <sub-class-of type="application/x-iso9660-image"/>
+ <sub-class-of type="application/vnd.efi.iso"/>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
+ <magic>
<match value="ELF" type="string" offset="1">
<match value="0x41" type="byte" offset="8">
<match value="0x49" type="byte" offset="9">
@@ -8697,174 +9065,258 @@
</mime-type>
<mime-type type="application/x-cdrdao-toc">
<comment>CD Table Of Contents</comment>
- <comment xml:lang="ar">جدول محتويات الـ CD</comment>
- <comment xml:lang="be@latin">Źmieściva CD</comment>
- <comment xml:lang="bg">Съдържание на CD</comment>
- <comment xml:lang="ca">taula de continguts de CD</comment>
- <comment xml:lang="cs">obsah CD</comment>
- <comment xml:lang="da">Cd-indholdsfotegnelse</comment>
- <comment xml:lang="de">CD-Inhaltsverzeichnis</comment>
- <comment xml:lang="el">Πίνακας περιεχομένων CD</comment>
- <comment xml:lang="en_GB">CD Table Of Contents</comment>
- <comment xml:lang="es">índice de contenido de CD</comment>
- <comment xml:lang="eu">CDaren edukien aurkibidea</comment>
- <comment xml:lang="fi">CD-sisällysluettelo</comment>
- <comment xml:lang="fo">CD innihaldsyvurlit</comment>
- <comment xml:lang="fr">table des matières de CD</comment>
- <comment xml:lang="ga">clár ábhar dlúthdhiosca</comment>
- <comment xml:lang="gl">táboa de contidos de CD</comment>
- <comment xml:lang="he">תוכן עניינים של דיסק</comment>
- <comment xml:lang="hr">CD sadržaj</comment>
- <comment xml:lang="hu">CD tartalomjegyzék</comment>
- <comment xml:lang="ia">Tabula de contento de CD</comment>
- <comment xml:lang="id">Tabel Isi CD</comment>
- <comment xml:lang="it">Indice CD</comment>
- <comment xml:lang="ja">CD Table Of Contents</comment>
- <comment xml:lang="kk">CD құрама кестесі</comment>
- <comment xml:lang="ko">CD 내용 목록</comment>
- <comment xml:lang="lt">CD turinys</comment>
- <comment xml:lang="lv">CD satura rādītājs</comment>
- <comment xml:lang="nb">Innholdsfortegnelse for CD</comment>
- <comment xml:lang="nl">CD-inhoudsopgave</comment>
- <comment xml:lang="nn">CD innhaldsliste</comment>
- <comment xml:lang="oc">ensenhador de CD</comment>
- <comment xml:lang="pl">Plik zawartości płyty CD</comment>
- <comment xml:lang="pt">Tabela de conteúdos de CD</comment>
- <comment xml:lang="pt_BR">Sumário de CD</comment>
- <comment xml:lang="ro">Tabel conținut CD</comment>
- <comment xml:lang="ru">Таблица содержания CD</comment>
- <comment xml:lang="sk">Obsah CD</comment>
- <comment xml:lang="sl">Kazalo vsebine CD nosilca</comment>
- <comment xml:lang="sq">Tregues CD</comment>
- <comment xml:lang="sr">табела садржаја ЦД-а</comment>
- <comment xml:lang="sv">Cd-innehållsförteckning</comment>
- <comment xml:lang="tr">CD İçindekiler Tablosu</comment>
- <comment xml:lang="uk">зміст CD</comment>
- <comment xml:lang="vi">Mục Lục của đĩa CD</comment>
- <comment xml:lang="zh_CN">CD 索引</comment>
<comment xml:lang="zh_TW">CD 內容目錄</comment>
+ <comment xml:lang="zh_CN">CD 索引</comment>
+ <comment xml:lang="vi">Mục Lục của đĩa CD</comment>
+ <comment xml:lang="uk">зміст CD</comment>
+ <comment xml:lang="tr">CD İçindekiler Tablosu</comment>
+ <comment xml:lang="sv">Cd-innehållsförteckning</comment>
+ <comment xml:lang="sr">табела садржаја ЦД-а</comment>
+ <comment xml:lang="sq">Tryezë Lënde CD</comment>
+ <comment xml:lang="sl">Kazalo vsebine CD nosilca</comment>
+ <comment xml:lang="si">CD පටුන</comment>
+ <comment xml:lang="sk">Obsah CD</comment>
+ <comment xml:lang="ru">Содержание компакт-диска</comment>
+ <comment xml:lang="ro">Tabel conținut CD</comment>
+ <comment xml:lang="pt_BR">Sumário de CD</comment>
+ <comment xml:lang="pt">Tabela de conteúdos de CD</comment>
+ <comment xml:lang="pl">Plik zawartości płyty CD</comment>
+ <comment xml:lang="oc">ensenhador de CD</comment>
+ <comment xml:lang="nn">CD innhaldsliste</comment>
+ <comment xml:lang="nl">CD-inhoudsopgave</comment>
+ <comment xml:lang="nb">Innholdsfortegnelse for CD</comment>
+ <comment xml:lang="lv">CD satura rādītājs</comment>
+ <comment xml:lang="lt">CD turinys</comment>
+ <comment xml:lang="ko">CD 내용 목록</comment>
+ <comment xml:lang="kk">CD құрама кестесі</comment>
+ <comment xml:lang="ja">CD Table Of Contents</comment>
+ <comment xml:lang="it">Indice CD</comment>
+ <comment xml:lang="is">Efnisyfirlit CD-disks</comment>
+ <comment xml:lang="id">Tabel Isi CD</comment>
+ <comment xml:lang="ia">Tabula de contento de CD</comment>
+ <comment xml:lang="hu">CD tartalomjegyzék</comment>
+ <comment xml:lang="hr">CD sadržaj</comment>
+ <comment xml:lang="he">תוכן עניינים של דיסק</comment>
+ <comment xml:lang="gl">táboa de contidos de CD</comment>
+ <comment xml:lang="ga">clár ábhar dlúthdhiosca</comment>
+ <comment xml:lang="fur">tabele dai contignûts di CD</comment>
+ <comment xml:lang="fr">table des matières de CD</comment>
+ <comment xml:lang="fo">CD innihaldsyvurlit</comment>
+ <comment xml:lang="fi">CD-sisällysluettelo</comment>
+ <comment xml:lang="eu">CDaren edukien aurkibidea</comment>
+ <comment xml:lang="es">índice de contenido de CD</comment>
+ <comment xml:lang="en_GB">CD Table Of Contents</comment>
+ <comment xml:lang="el">Πίνακας περιεχομένων CD</comment>
+ <comment xml:lang="de">CD-Inhaltsverzeichnis</comment>
+ <comment xml:lang="da">Cd-indholdsfortegnelse</comment>
+ <comment xml:lang="cs">obsah CD</comment>
+ <comment xml:lang="ca">taula de continguts de CD</comment>
+ <comment xml:lang="bg">Съдържание на CD</comment>
+ <comment xml:lang="be@latin">Źmieściva CD</comment>
+ <comment xml:lang="be">табліца змесціва CD</comment>
+ <comment xml:lang="ar">جدول محتويات CD</comment>
+ <comment xml:lang="af">CD-inhoudsopgawe</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="CD_ROM\n" type="string" offset="0"/>
- <match value="CD_DA\n" type="string" offset="0"/>
- <match value="CD_ROM_XA\n" type="string" offset="0"/>
- <match value="CD_TEXT " type="string" offset="0"/>
- <match value="CATALOG &quot;" type="string" offset="0">
- <match value="&quot;" type="string" offset="22"/>
+ <magic>
+ <match type="string" value="CD_ROM\n" offset="0"/>
+ <match type="string" value="CD_DA\n" offset="0"/>
+ <match type="string" value="CD_ROM_XA\n" offset="0"/>
+ <match type="string" value="CD_TEXT " offset="0"/>
+ <match type="string" value="CATALOG &quot;" offset="0">
+ <match type="string" value="&quot;" offset="22"/>
</match>
</magic>
<glob pattern="*.toc"/>
</mime-type>
+ <mime-type type="application/x-gd-rom-cue">
+ <comment>GD-ROM image cuesheet</comment>
+ <comment xml:lang="uk">таблиця CUE образу GD-ROM</comment>
+ <comment xml:lang="tr">GD-ROM görüntüsü çizelgesi</comment>
+ <comment xml:lang="sv">GD-ROM Indexblad för cd-avbild</comment>
+ <comment xml:lang="si">GD-ROM රූප කුට්ටිය</comment>
+ <comment xml:lang="ru">Файл разметки образа GD-ROM</comment>
+ <comment xml:lang="pt_BR">Índice de Imagem de GD-ROM</comment>
+ <comment xml:lang="pl">Obraz cuesheet płyty GD-ROM</comment>
+ <comment xml:lang="nl">GD-ROM-schijfkopiebestand-cue-sheet</comment>
+ <comment xml:lang="ko">GD-ROM 이미지 큐시트</comment>
+ <comment xml:lang="kk">GD-ROM бейнесінің құрама кестесі</comment>
+ <comment xml:lang="ja">GD-ROM イメージキューシート</comment>
+ <comment xml:lang="it">Cuesheet immagine GD-ROM</comment>
+ <comment xml:lang="is">cuesheet CD-ROM diskmyndar</comment>
+ <comment xml:lang="id">cuesheet image GD-ROM</comment>
+ <comment xml:lang="hu">GD-ROM lemezkép-jelölőlap</comment>
+ <comment xml:lang="hr">GD-ROM popis slika</comment>
+ <comment xml:lang="he">גיליון cue של דמות GD-ROM</comment>
+ <comment xml:lang="fr">Index de pistes GD-ROM</comment>
+ <comment xml:lang="fi">GD-ROM levykuvan taulukko</comment>
+ <comment xml:lang="es">hoja CUE de imagen GD-ROM</comment>
+ <comment xml:lang="en_GB">GD-ROM image cuesheet</comment>
+ <comment xml:lang="de">GD-ROM-Abbild-Cuesheet</comment>
+ <comment xml:lang="da">GD-ROM-aftrykscuesheet</comment>
+ <comment xml:lang="ca">«cuesheet» d'imatge de GD-ROM</comment>
+ <comment xml:lang="be">табліца разметкі вобраза GD-ROM</comment>
+ <comment xml:lang="ar">صفيحة صورة الـGD-ROM جديلة</comment>
+ <!-- It is a non-standard cuesheet used only for Dreamcast GD-ROM images, it
+ is typically surrounded by the .bin and .raw files it lists, each one
+ matching a disc track.
+ The first file should have the application/x-dreamcast-rom type. -->
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-generic"/>
+ <glob pattern="*.gdi"/>
+ </mime-type>
+ <mime-type type="application/x-discjuggler-cd-image">
+ <comment>Padus DiscJuggler CD image</comment>
+ <comment xml:lang="zh_CN">Padus DiscJuggler CD 映像</comment>
+ <comment xml:lang="uk">образ CD Padus DiscJuggler</comment>
+ <comment xml:lang="tr">Padus DiscJuggler CD görüntüsü</comment>
+ <comment xml:lang="sv">Padus DiscJuggler cd-avbild</comment>
+ <comment xml:lang="si">Padus DiscJuggler CD රූපය</comment>
+ <comment xml:lang="ru">Образ диска Padus DiscJuggler CD</comment>
+ <comment xml:lang="pt_BR">Imagem de CD do Padus DiscJuggler</comment>
+ <comment xml:lang="pl">Obraz płyty CD programu Padus DiscJuggler</comment>
+ <comment xml:lang="nl">Padus DiscJuggler CD-schijfkopiebestand</comment>
+ <comment xml:lang="ko">Padus DiscJuggler CD 이미지</comment>
+ <comment xml:lang="kk">Padus DiscJuggler CD бейнесі</comment>
+ <comment xml:lang="ja">Padus DiscJuggler CD イメージ</comment>
+ <comment xml:lang="it">Immagine CD DiscJuggler Padus</comment>
+ <comment xml:lang="is">Padus DiscJuggler CD diskmynd</comment>
+ <comment xml:lang="id">image CD Padus DiscJuggler</comment>
+ <comment xml:lang="hu">Padus DiscJuggler CD lemezkép</comment>
+ <comment xml:lang="hr">Padus DiscJuggler CD slika</comment>
+ <comment xml:lang="he">תמונת תקליטור Padus DiscJuggler</comment>
+ <comment xml:lang="gl">Imaxe de CD Padus DiscJuggler</comment>
+ <comment xml:lang="fr">Image CD Padus DiscJuggler</comment>
+ <comment xml:lang="fi">Padus DiscJuggler CD-levykuva</comment>
+ <comment xml:lang="es">imagen de CD de Padus DiscJuggler</comment>
+ <comment xml:lang="en_GB">Padus DiscJuggler CD image</comment>
+ <comment xml:lang="de">Padus-DiscJuggler-CD-Abbild</comment>
+ <comment xml:lang="da">Padus DiscJuggler CD-aftryk</comment>
+ <comment xml:lang="ca">imatge de CD de Padus DiscJuggler</comment>
+ <comment xml:lang="be">вобраз CD Padus DiscJuggler</comment>
+ <comment xml:lang="ar">صورة سي دي Padus DiscJuggler</comment>
+ <generic-icon name="media-optical"/>
+ <glob pattern="*.cdi"/>
+ </mime-type>
<mime-type type="application/vnd.chess-pgn">
<comment>PGN chess game notation</comment>
- <comment xml:lang="ar">تدوينة لعبة الشطرنج PGN</comment>
- <comment xml:lang="be@latin">Zaciem ab šachmatnaj partyi PGN</comment>
- <comment xml:lang="bg">Игра шах — PGN</comment>
- <comment xml:lang="ca">notació de joc d'escacs PGN</comment>
- <comment xml:lang="cs">šachová notace PGN</comment>
- <comment xml:lang="da">PGN-skakspilsnotation</comment>
- <comment xml:lang="de">PGN-Schachspielnotation</comment>
- <comment xml:lang="el">Σημειογραφία παιχνιδιού σκακιού PGN</comment>
- <comment xml:lang="en_GB">PGN chess game notation</comment>
- <comment xml:lang="es">notación para juegos de ajedrez PGN</comment>
- <comment xml:lang="eu">PGN xake jokoaren notazioa</comment>
- <comment xml:lang="fi">PGN-šakkipelinotaatio</comment>
- <comment xml:lang="fo">PGN talv teknskipan</comment>
- <comment xml:lang="fr">notation de jeu d'échecs PGN</comment>
- <comment xml:lang="ga">nodaireacht chluiche ficheall PGN</comment>
- <comment xml:lang="gl">Notación de xogo de xadrez PGN</comment>
- <comment xml:lang="he">סימון משחק שח PGN</comment>
- <comment xml:lang="hr">PGN zapis šahovske igre</comment>
- <comment xml:lang="hu">PGN sakkfeljegyzés</comment>
- <comment xml:lang="ia">Notation de joco de chacos PGN</comment>
- <comment xml:lang="id">Notasi permainan catur PGN</comment>
- <comment xml:lang="it">Notazione partita a scacchi PGN</comment>
- <comment xml:lang="ja">PGN チェスゲーム記録</comment>
- <comment xml:lang="kk">PGN шахмат ойыны</comment>
- <comment xml:lang="ko">PGN 체스 게임 기보</comment>
- <comment xml:lang="lt">PGN šachmatų žaidimo žymėjimas</comment>
- <comment xml:lang="lv">PGN šaha spēles notācija</comment>
- <comment xml:lang="nb">PGN sjakkspillnotasjon</comment>
- <comment xml:lang="nl">PGN-schaakspelnotatie</comment>
- <comment xml:lang="nn">PGN-sjakkspelnotasjon</comment>
- <comment xml:lang="oc">notacion de jòc d'escacs PGN</comment>
- <comment xml:lang="pl">Plik PGN notacji gry w szachy</comment>
- <comment xml:lang="pt">notação de jogo de xadrez PGN</comment>
- <comment xml:lang="pt_BR">Notação de jogo de xadrez PGN</comment>
- <comment xml:lang="ro">Notație joc șah PGN</comment>
- <comment xml:lang="ru">Шахматная партия PGN</comment>
- <comment xml:lang="sk">Šachová notácia PGN</comment>
- <comment xml:lang="sl">Datoteka opomb šahovske igre PGN</comment>
- <comment xml:lang="sq">Njoftim loje shahu PGN</comment>
- <comment xml:lang="sr">ПГН забелешка шаховске игре</comment>
- <comment xml:lang="sv">PGN-schackpartinotation</comment>
- <comment xml:lang="tr">PGN satranç oyun gösterimi</comment>
- <comment xml:lang="uk">запис гри у шахи PGN</comment>
- <comment xml:lang="vi">Cách ghi lượt chơi cờ PGN</comment>
- <comment xml:lang="zh_CN">PGN 象棋游戏注记</comment>
<comment xml:lang="zh_TW">PGN 國際象棋棋譜</comment>
+ <comment xml:lang="zh_CN">PGN 象棋游戏注记</comment>
+ <comment xml:lang="vi">Cách ghi lượt chơi cờ PGN</comment>
+ <comment xml:lang="uk">запис гри у шахи PGN</comment>
+ <comment xml:lang="tr">PGN satranç oyun gösterimi</comment>
+ <comment xml:lang="sv">PGN-schackpartinotation</comment>
+ <comment xml:lang="sr">ПГН забелешка шаховске игре</comment>
+ <comment xml:lang="sq">sistem zbardhjeje loje shahu PGN</comment>
+ <comment xml:lang="sl">Datoteka opomb šahovske igre PGN</comment>
+ <comment xml:lang="si">PGN චෙස් ක්‍රීඩා අංකනය</comment>
+ <comment xml:lang="sk">Šachová notácia PGN</comment>
+ <comment xml:lang="ru">Шахматная партия PGN</comment>
+ <comment xml:lang="ro">Notație joc șah PGN</comment>
+ <comment xml:lang="pt_BR">Notação de jogo de xadrez PGN</comment>
+ <comment xml:lang="pt">notação de jogo de xadrez PGN</comment>
+ <comment xml:lang="pl">Plik PGN notacji gry w szachy</comment>
+ <comment xml:lang="oc">notacion de jòc d'escacs PGN</comment>
+ <comment xml:lang="nn">PGN-sjakkspelnotasjon</comment>
+ <comment xml:lang="nl">PGN-schaakspelnotatie</comment>
+ <comment xml:lang="nb">PGN sjakkspillnotasjon</comment>
+ <comment xml:lang="lv">PGN šaha spēles notācija</comment>
+ <comment xml:lang="lt">PGN šachmatų žaidimo žymėjimas</comment>
+ <comment xml:lang="ko">PGN 체스 게임 기보</comment>
+ <comment xml:lang="kk">PGN шахмат ойыны</comment>
+ <comment xml:lang="ja">PGN チェスゲーム記録</comment>
+ <comment xml:lang="it">Notazione partita a scacchi PGN</comment>
+ <comment xml:lang="is">færsla PGN skákleiks</comment>
+ <comment xml:lang="id">Notasi permainan catur PGN</comment>
+ <comment xml:lang="ia">Notation de joco de chacos PGN</comment>
+ <comment xml:lang="hu">PGN sakkfeljegyzés</comment>
+ <comment xml:lang="hr">PGN zapis šahovske igre</comment>
+ <comment xml:lang="he">סימון משחק שח PGN</comment>
+ <comment xml:lang="gl">Notación de xogo de xadrez PGN</comment>
+ <comment xml:lang="ga">nodaireacht chluiche ficheall PGN</comment>
+ <comment xml:lang="fur">notazion par zûc di scacs PGN</comment>
+ <comment xml:lang="fr">notation de jeu d'échecs PGN</comment>
+ <comment xml:lang="fo">PGN talv teknskipan</comment>
+ <comment xml:lang="fi">PGN-šakkipelinotaatio</comment>
+ <comment xml:lang="eu">PGN xake jokoaren notazioa</comment>
+ <comment xml:lang="es">notación para juegos de ajedrez PGN</comment>
+ <comment xml:lang="en_GB">PGN chess game notation</comment>
+ <comment xml:lang="el">Σημειογραφία παιχνιδιού σκακιού PGN</comment>
+ <comment xml:lang="de">PGN-Schachspielnotation</comment>
+ <comment xml:lang="da">PGN-skakspilsnotation</comment>
+ <comment xml:lang="cs">šachová notace PGN</comment>
+ <comment xml:lang="ca">notació de joc d'escacs PGN</comment>
+ <comment xml:lang="bg">Игра шах — PGN</comment>
+ <comment xml:lang="be@latin">Zaciem ab šachmatnaj partyi PGN</comment>
+ <comment xml:lang="be">запіс шахматнай партыі PGN</comment>
+ <comment xml:lang="ar">تدوينة لعبة شطرنج PGN</comment>
+ <comment xml:lang="af">PGN-skaakspelnotasie</comment>
<acronym>PGN</acronym>
<expanded-acronym>Portable Game Notation</expanded-acronym>
<generic-icon name="text-x-generic"/>
<glob pattern="*.pgn"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="[Event " type="string" offset="0"/>
+ <magic>
+ <match type="string" value="[Event " offset="0"/>
</magic>
<alias type="application/x-chess-pgn"/>
</mime-type>
<mime-type type="application/vnd.ms-htmlhelp">
<comment>CHM document</comment>
- <comment xml:lang="ar">مستند CHM</comment>
- <comment xml:lang="ast">Documentu CHM</comment>
- <comment xml:lang="be@latin">Dakument CHM</comment>
- <comment xml:lang="bg">Документ — CHM</comment>
- <comment xml:lang="ca">document CHM</comment>
- <comment xml:lang="cs">dokument CHM</comment>
- <comment xml:lang="da">CHM-dokument</comment>
- <comment xml:lang="de">CHM-Dokument</comment>
- <comment xml:lang="el">Έγγραφο CHM</comment>
- <comment xml:lang="en_GB">CHM document</comment>
- <comment xml:lang="eo">CHM-dokumento</comment>
- <comment xml:lang="es">documento CHM</comment>
- <comment xml:lang="eu">CHM dokumentua</comment>
- <comment xml:lang="fi">CHM-asiakirja</comment>
- <comment xml:lang="fo">CHM skjal</comment>
- <comment xml:lang="fr">document CHM</comment>
- <comment xml:lang="ga">cáipéis CHM</comment>
- <comment xml:lang="gl">documento CHM</comment>
- <comment xml:lang="he">מסמך CHM</comment>
- <comment xml:lang="hr">CHM dokument</comment>
- <comment xml:lang="hu">CHM dokumentum</comment>
- <comment xml:lang="ia">Documento CHM</comment>
- <comment xml:lang="id">Dokumen CHM</comment>
- <comment xml:lang="it">Documento CHM</comment>
- <comment xml:lang="ja">CHM ドキュメント</comment>
- <comment xml:lang="ka">CHM დოკუმენტი</comment>
- <comment xml:lang="kk">CHM құжаты</comment>
- <comment xml:lang="ko">CHM 문서</comment>
- <comment xml:lang="lt">CHM dokumentas</comment>
- <comment xml:lang="lv">CHM dokuments</comment>
- <comment xml:lang="nb">CHM-dokument</comment>
- <comment xml:lang="nl">CHM-document</comment>
- <comment xml:lang="nn">CHM-dokument</comment>
- <comment xml:lang="oc">document CHM</comment>
- <comment xml:lang="pl">Dokument CHM</comment>
- <comment xml:lang="pt">documento CHM</comment>
- <comment xml:lang="pt_BR">Documento CHM</comment>
- <comment xml:lang="ro">Document CHM</comment>
- <comment xml:lang="ru">Документ CHM</comment>
- <comment xml:lang="sk">Dokument CHM</comment>
- <comment xml:lang="sl">Dokument CHM</comment>
- <comment xml:lang="sq">Dokument CHM</comment>
- <comment xml:lang="sr">ЦХМ документ</comment>
- <comment xml:lang="sv">CHM-dokument</comment>
- <comment xml:lang="tr">CHM belgesi</comment>
- <comment xml:lang="uk">документ CHM</comment>
- <comment xml:lang="vi">Tài liệu CHM</comment>
- <comment xml:lang="zh_CN">CHM 文档</comment>
<comment xml:lang="zh_TW">CHM 文件</comment>
+ <comment xml:lang="zh_CN">CHM 文档</comment>
+ <comment xml:lang="vi">Tài liệu CHM</comment>
+ <comment xml:lang="uk">документ CHM</comment>
+ <comment xml:lang="tr">CHM belgesi</comment>
+ <comment xml:lang="sv">CHM-dokument</comment>
+ <comment xml:lang="sr">ЦХМ документ</comment>
+ <comment xml:lang="sq">dokument CHM</comment>
+ <comment xml:lang="sl">Dokument CHM</comment>
+ <comment xml:lang="si">CHM ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument CHM</comment>
+ <comment xml:lang="ru">Документ CHM</comment>
+ <comment xml:lang="ro">Document CHM</comment>
+ <comment xml:lang="pt_BR">Documento CHM</comment>
+ <comment xml:lang="pt">documento CHM</comment>
+ <comment xml:lang="pl">Dokument CHM</comment>
+ <comment xml:lang="oc">document CHM</comment>
+ <comment xml:lang="nn">CHM-dokument</comment>
+ <comment xml:lang="nl">CHM-document</comment>
+ <comment xml:lang="nb">CHM-dokument</comment>
+ <comment xml:lang="lv">CHM dokuments</comment>
+ <comment xml:lang="lt">CHM dokumentas</comment>
+ <comment xml:lang="ko">CHM 문서</comment>
+ <comment xml:lang="kk">CHM құжаты</comment>
+ <comment xml:lang="ka">CHM დოკუმენტი</comment>
+ <comment xml:lang="ja">CHM ドキュメント</comment>
+ <comment xml:lang="it">Documento CHM</comment>
+ <comment xml:lang="is">CHM skjal</comment>
+ <comment xml:lang="id">Dokumen CHM</comment>
+ <comment xml:lang="ia">Documento CHM</comment>
+ <comment xml:lang="hu">CHM dokumentum</comment>
+ <comment xml:lang="hr">CHM dokument</comment>
+ <comment xml:lang="he">מסמך CHM</comment>
+ <comment xml:lang="gl">documento CHM</comment>
+ <comment xml:lang="ga">cáipéis CHM</comment>
+ <comment xml:lang="fur">document CHM</comment>
+ <comment xml:lang="fr">document CHM</comment>
+ <comment xml:lang="fo">CHM skjal</comment>
+ <comment xml:lang="fi">CHM-asiakirja</comment>
+ <comment xml:lang="eu">CHM dokumentua</comment>
+ <comment xml:lang="es">documento CHM</comment>
+ <comment xml:lang="eo">CHM-dokumento</comment>
+ <comment xml:lang="en_GB">CHM document</comment>
+ <comment xml:lang="el">Έγγραφο CHM</comment>
+ <comment xml:lang="de">CHM-Dokument</comment>
+ <comment xml:lang="da">CHM-dokument</comment>
+ <comment xml:lang="cs">dokument CHM</comment>
+ <comment xml:lang="ca">document CHM</comment>
+ <comment xml:lang="bg">Документ — CHM</comment>
+ <comment xml:lang="be@latin">Dakument CHM</comment>
+ <comment xml:lang="be">дакумент CHM</comment>
+ <comment xml:lang="ast">Documentu CHM</comment>
+ <comment xml:lang="ar">مستند CHM</comment>
+ <comment xml:lang="af">CHM-dokument</comment>
<acronym>CHM</acronym>
<expanded-acronym>Compiled Help Modules</expanded-acronym>
<generic-icon name="x-office-document"/>
@@ -8873,1194 +9325,1507 @@
</mime-type>
<mime-type type="application/x-class-file">
<comment>Java byte code</comment>
- <comment xml:lang="ar">رمز بايت الـJava</comment>
- <comment xml:lang="az">Java bayt kodu</comment>
- <comment xml:lang="be@latin">Bajtavy kod Java</comment>
- <comment xml:lang="bg">Байт код за Java</comment>
- <comment xml:lang="ca">Bytecode de Java</comment>
- <comment xml:lang="cs">bajtový kód Java</comment>
- <comment xml:lang="cy">Côd beit Java</comment>
- <comment xml:lang="da">Javabytekode</comment>
- <comment xml:lang="de">Java-Bytecode</comment>
- <comment xml:lang="el">Συμβολοκώδικας Java</comment>
- <comment xml:lang="en_GB">Java byte code</comment>
- <comment xml:lang="eo">Java-bajtkodo</comment>
- <comment xml:lang="es">bytecode de Java</comment>
- <comment xml:lang="eu">Java byte-kodea</comment>
- <comment xml:lang="fi">Java-tavukoodi</comment>
- <comment xml:lang="fo">Java býtkota</comment>
- <comment xml:lang="fr">code Java binaire</comment>
- <comment xml:lang="ga">beartchód Java</comment>
- <comment xml:lang="gl">byte code de Java</comment>
- <comment xml:lang="he">קוד Java byte</comment>
- <comment xml:lang="hr">Java bajt kôd</comment>
- <comment xml:lang="hu">Java-bájtkód</comment>
- <comment xml:lang="ia">Codice intermediari de Java</comment>
- <comment xml:lang="id">Kode bita Java</comment>
- <comment xml:lang="it">Bytecode Java</comment>
- <comment xml:lang="ja">Java バイトコード</comment>
- <comment xml:lang="kk">Java байт коды</comment>
- <comment xml:lang="ko">Java 바이트 코드</comment>
- <comment xml:lang="lt">Java baitinis kodas</comment>
- <comment xml:lang="lv">Java bitu kods</comment>
- <comment xml:lang="ms">Kod bait Java</comment>
- <comment xml:lang="nb">Java-bytekode</comment>
- <comment xml:lang="nl">Java-bytecode</comment>
- <comment xml:lang="nn">Jave byte-kode</comment>
- <comment xml:lang="oc">còde Java binari</comment>
- <comment xml:lang="pl">Kod bajtowy Java</comment>
- <comment xml:lang="pt">byte-code Java</comment>
- <comment xml:lang="pt_BR">Código compilado Java</comment>
- <comment xml:lang="ro">Bytecode Java</comment>
- <comment xml:lang="ru">Байт-код Java</comment>
- <comment xml:lang="sk">Bajtový kód Java</comment>
- <comment xml:lang="sl">Datoteka bitne kode Java</comment>
- <comment xml:lang="sq">Byte code Java</comment>
- <comment xml:lang="sr">бајтни ко̂д Јаве</comment>
- <comment xml:lang="sv">Java-bytekod</comment>
- <comment xml:lang="tr">Java derlenmiş kodu</comment>
- <comment xml:lang="uk">Байт-код Java</comment>
- <comment xml:lang="vi">Mã byte Java</comment>
- <comment xml:lang="zh_CN">Java 字节码</comment>
<comment xml:lang="zh_TW">Java 位元組碼</comment>
+ <comment xml:lang="zh_CN">Java 字节码</comment>
+ <comment xml:lang="vi">Mã byte Java</comment>
+ <comment xml:lang="uk">Байт-код Java</comment>
+ <comment xml:lang="tr">Java derlenmiş kodu</comment>
+ <comment xml:lang="sv">Java-bytekod</comment>
+ <comment xml:lang="sr">бајтни ко̂д Јаве</comment>
+ <comment xml:lang="sl">Datoteka bitne kode Java</comment>
+ <comment xml:lang="si">ජාවා බයිට් කේතය</comment>
+ <comment xml:lang="sk">Bajtový kód Java</comment>
+ <comment xml:lang="ru">Байт-код Java</comment>
+ <comment xml:lang="ro">Bytecode Java</comment>
+ <comment xml:lang="pt_BR">Código compilado Java</comment>
+ <comment xml:lang="pt">byte-code Java</comment>
+ <comment xml:lang="pl">Kod bajtowy Java</comment>
+ <comment xml:lang="oc">còde Java binari</comment>
+ <comment xml:lang="nn">Jave byte-kode</comment>
+ <comment xml:lang="nl">Java-bytecode</comment>
+ <comment xml:lang="nb">Java-bytekode</comment>
+ <comment xml:lang="ms">Kod bait Java</comment>
+ <comment xml:lang="lv">Java bitu kods</comment>
+ <comment xml:lang="lt">Java baitinis kodas</comment>
+ <comment xml:lang="ko">Java 바이트 코드</comment>
+ <comment xml:lang="kk">Java байт коды</comment>
+ <comment xml:lang="ja">Java バイトコード</comment>
+ <comment xml:lang="it">Bytecode Java</comment>
+ <comment xml:lang="is">Java bætkóði</comment>
+ <comment xml:lang="id">Kode bita Java</comment>
+ <comment xml:lang="ia">Codice intermediari de Java</comment>
+ <comment xml:lang="hu">Java-bájtkód</comment>
+ <comment xml:lang="hr">Java bajt kôd</comment>
+ <comment xml:lang="he">קוד Java byte</comment>
+ <comment xml:lang="gl">byte code de Java</comment>
+ <comment xml:lang="ga">beartchód Java</comment>
+ <comment xml:lang="fur">bytecode di Java</comment>
+ <comment xml:lang="fr">code Java binaire</comment>
+ <comment xml:lang="fo">Java býtkota</comment>
+ <comment xml:lang="fi">Java-tavukoodi</comment>
+ <comment xml:lang="eu">Java byte-kodea</comment>
+ <comment xml:lang="es">bytecode de Java</comment>
+ <comment xml:lang="eo">Java-bajtkodo</comment>
+ <comment xml:lang="en_GB">Java byte code</comment>
+ <comment xml:lang="el">Συμβολοκώδικας Java</comment>
+ <comment xml:lang="de">Java-Bytecode</comment>
+ <comment xml:lang="da">Java-bytekode</comment>
+ <comment xml:lang="cy">Côd beit Java</comment>
+ <comment xml:lang="cs">bajtový kód Java</comment>
+ <comment xml:lang="ca">bytecode de Java</comment>
+ <comment xml:lang="bg">Байт код за Java</comment>
+ <comment xml:lang="be@latin">Bajtavy kod Java</comment>
+ <comment xml:lang="be">байт-код Java</comment>
+ <comment xml:lang="az">Java bayt kodu</comment>
+ <comment xml:lang="ar">رمز بايت Java</comment>
+ <comment xml:lang="af">Java binêre kode</comment>
</mime-type>
<mime-type type="application/x-compress">
<comment>UNIX-compressed file</comment>
- <comment xml:lang="ar">ملف يونكس-مضغوط</comment>
- <comment xml:lang="be@latin">Skampresavany UNIX-fajł</comment>
- <comment xml:lang="bg">Файл — компресиран за UNIX</comment>
- <comment xml:lang="ca">fitxer amb compressió UNIX</comment>
- <comment xml:lang="cs">soubor komprimovaný v Unixu</comment>
- <comment xml:lang="da">UNIX-komprimeret fil</comment>
- <comment xml:lang="de">UNIX-komprimierte Datei</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο UNIX</comment>
- <comment xml:lang="en_GB">UNIX-compressed file</comment>
- <comment xml:lang="eo">UNIX-kunpremita dosiero</comment>
- <comment xml:lang="es">archivo comprimido de Unix</comment>
- <comment xml:lang="eu">UNIX-en konprimitutako fitxategia</comment>
- <comment xml:lang="fi">UNIX-pakattu tiedosto</comment>
- <comment xml:lang="fo">UNIX-stappað fíla</comment>
- <comment xml:lang="fr">fichier compressé UNIX</comment>
- <comment xml:lang="ga">comhad UNIX-comhbhrúite</comment>
- <comment xml:lang="gl">ficheiro comprimido de UNIX</comment>
- <comment xml:lang="he">קובץ בכיווץ UNIX</comment>
- <comment xml:lang="hr">UNIX sažeta datoteka</comment>
- <comment xml:lang="hu">Tömörített UNIX-fájl</comment>
- <comment xml:lang="ia">File comprimite de UNIX</comment>
- <comment xml:lang="id">Berkas terkompresi UNIX</comment>
- <comment xml:lang="it">File compresso-UNIX</comment>
- <comment xml:lang="ja">UNIX-compress ファイル</comment>
- <comment xml:lang="kk">файл (UNIX-сығылған)</comment>
- <comment xml:lang="ko">UNIX 압축 파일</comment>
- <comment xml:lang="lt">UNIX suglaudintas failas</comment>
- <comment xml:lang="lv">UNIX saspiesta datne</comment>
- <comment xml:lang="ms">Fail termampat-UNIX</comment>
- <comment xml:lang="nb">UNIX-komprimert fil</comment>
- <comment xml:lang="nl">UNIX-ingepakt bestand</comment>
- <comment xml:lang="nn">UNIX-komprimert fil</comment>
- <comment xml:lang="oc">fichièr compressat UNIX</comment>
- <comment xml:lang="pl">Skompresowany plik systemu UNIX</comment>
- <comment xml:lang="pt">ficheiro comprimido UNIX</comment>
- <comment xml:lang="pt_BR">Arquivo compactado do UNIX</comment>
- <comment xml:lang="ro">Fișier comprimat UNIX</comment>
- <comment xml:lang="ru">Файл (UNIX-сжатый)</comment>
- <comment xml:lang="sk">Súbor komprimovaný v Unixe</comment>
- <comment xml:lang="sl">Skrčena Unix datoteka</comment>
- <comment xml:lang="sq">File i kompresuar UNIX</comment>
- <comment xml:lang="sr">датотека запакована ЈУНИКС-ом</comment>
- <comment xml:lang="sv">UNIX-komprimerad fil</comment>
- <comment xml:lang="tr">UNIX-sıkıştırılmış dosyası</comment>
- <comment xml:lang="uk">стиснений файл UNIX</comment>
- <comment xml:lang="vi">Tập tin đã nén UNIX</comment>
+ <comment xml:lang="zh_TW">UNIX 壓縮檔</comment>
<comment xml:lang="zh_CN">UNIX 压缩文件</comment>
- <comment xml:lang="zh_TW">UNIX 格式壓縮檔</comment>
+ <comment xml:lang="vi">Tập tin đã nén UNIX</comment>
+ <comment xml:lang="uk">стиснений файл UNIX</comment>
+ <comment xml:lang="tr">UNIX-sıkıştırılmış dosyası</comment>
+ <comment xml:lang="sv">UNIX-komprimerad fil</comment>
+ <comment xml:lang="sr">датотека запакована ЈУНИКС-ом</comment>
+ <comment xml:lang="sq">kartelë e ngjeshur me Unix</comment>
+ <comment xml:lang="sl">Skrčena Unix datoteka</comment>
+ <comment xml:lang="si">UNIX සම්පීඩිත ගොනුව</comment>
+ <comment xml:lang="sk">Súbor komprimovaný v Unixe</comment>
+ <comment xml:lang="ru">Сжатый файл UNIX</comment>
+ <comment xml:lang="ro">Fișier comprimat UNIX</comment>
+ <comment xml:lang="pt_BR">Arquivo compactado do UNIX</comment>
+ <comment xml:lang="pt">ficheiro comprimido UNIX</comment>
+ <comment xml:lang="pl">Skompresowany plik systemu UNIX</comment>
+ <comment xml:lang="oc">fichièr compressat UNIX</comment>
+ <comment xml:lang="nn">UNIX-komprimert fil</comment>
+ <comment xml:lang="nl">UNIX-ingepakt bestand</comment>
+ <comment xml:lang="nb">UNIX-komprimert fil</comment>
+ <comment xml:lang="ms">Fail termampat-UNIX</comment>
+ <comment xml:lang="lv">UNIX saspiesta datne</comment>
+ <comment xml:lang="lt">UNIX suglaudintas failas</comment>
+ <comment xml:lang="ko">UNIX 압축 파일</comment>
+ <comment xml:lang="kk">файл (UNIX-сығылған)</comment>
+ <comment xml:lang="ja">UNIX-compress ファイル</comment>
+ <comment xml:lang="it">File compresso-UNIX</comment>
+ <comment xml:lang="is">UNIX-þjöppuð skrá</comment>
+ <comment xml:lang="id">Berkas terkompresi UNIX</comment>
+ <comment xml:lang="ia">File comprimite de UNIX</comment>
+ <comment xml:lang="hu">UNIX tömörítésű fájl</comment>
+ <comment xml:lang="hr">UNIX sažeta datoteka</comment>
+ <comment xml:lang="he">קובץ בכיווץ UNIX</comment>
+ <comment xml:lang="gl">ficheiro comprimido de UNIX</comment>
+ <comment xml:lang="ga">comhad UNIX-comhbhrúite</comment>
+ <comment xml:lang="fur">file comprimût di UNIX</comment>
+ <comment xml:lang="fr">fichier compressé UNIX</comment>
+ <comment xml:lang="fo">UNIX-stappað fíla</comment>
+ <comment xml:lang="fi">UNIX-pakattu tiedosto</comment>
+ <comment xml:lang="eu">UNIX-en konprimitutako fitxategia</comment>
+ <comment xml:lang="es">archivo comprimido de Unix</comment>
+ <comment xml:lang="eo">UNIX-kunpremita dosiero</comment>
+ <comment xml:lang="en_GB">UNIX-compressed file</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο UNIX</comment>
+ <comment xml:lang="de">UNIX-komprimierte Datei</comment>
+ <comment xml:lang="da">UNIX-komprimeret fil</comment>
+ <comment xml:lang="cs">soubor komprimovaný v Unixu</comment>
+ <comment xml:lang="ca">fitxer amb compressió UNIX</comment>
+ <comment xml:lang="bg">Файл — компресиран за UNIX</comment>
+ <comment xml:lang="be@latin">Skampresavany UNIX-fajł</comment>
+ <comment xml:lang="be">файл сціснуты UNIX</comment>
+ <comment xml:lang="ar">ملف يونكس-مضغوط</comment>
+ <comment xml:lang="af">UNIX-saamgepersde lêer</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="\037\235" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\037\235" offset="0"/>
</magic>
<glob pattern="*.Z"/>
</mime-type>
<mime-type type="application/x-compressed-tar">
<comment>Tar archive (gzip-compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط-gzip)</comment>
- <comment xml:lang="be@latin">Archiŭ tar (gzip-skampresavany)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран с gzip</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió gzip)</comment>
- <comment xml:lang="cs">archiv tar (komprimovaný pomocí gzip)</comment>
- <comment xml:lang="da">Tar-arkiv (gzip-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (gzip-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με gzip)</comment>
- <comment xml:lang="en_GB">Tar archive (gzip-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con gzip)</comment>
- <comment xml:lang="eu">Tar artxiboa (gzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (gzip-pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn (gzip-stappað)</comment>
- <comment xml:lang="fr">archive tar (compressée gzip)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido con gzip)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י gzip)</comment>
- <comment xml:lang="hr">Tar arhiva (gzip sažeta)</comment>
- <comment xml:lang="hu">Tar archívum (gzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite con gzip)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi gzip)</comment>
- <comment xml:lang="it">Archivio tar (compresso con gzip)</comment>
- <comment xml:lang="ja">Tar アーカイブ (gzip 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(GZIP 압축)</comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests ar gzip)</comment>
- <comment xml:lang="nb">Tar-arkiv (gzip-komprimert)</comment>
- <comment xml:lang="nl">Tar-archief (ingepakt met gzip)</comment>
- <comment xml:lang="nn">Tar-arkiv (pakka med gzip)</comment>
- <comment xml:lang="oc">archiu tar (compressat gzip)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja gzip)</comment>
- <comment xml:lang="pt">arquivo Tar (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado com gzip)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată gzip)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый gzip)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou gzip)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z gzip)</comment>
- <comment xml:lang="sq">Arkiv tar (i kompresuar me gzip)</comment>
- <comment xml:lang="sr">Тар архива (запакована гзипом)</comment>
- <comment xml:lang="sv">Tar-arkiv (gzip-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений gzip)</comment>
- <comment xml:lang="vi">Kho nén tar (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Kho nén tar (đã nén gzip)</comment>
+ <comment xml:lang="uk">архів tar (стиснений gzip)</comment>
+ <comment xml:lang="tr">Tar arşivi (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (gzip-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована гзипом)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z gzip)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (gzip-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou gzip)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый gzip)</comment>
+ <comment xml:lang="ro">Arhivă Tar (comprimată gzip)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado com gzip)</comment>
+ <comment xml:lang="pt">arquivo Tar (compressão gzip)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja gzip)</comment>
+ <comment xml:lang="oc">archiu tar (compressat gzip)</comment>
+ <comment xml:lang="nn">Tar-arkiv (pakka med gzip)</comment>
+ <comment xml:lang="nl">Tar-archief (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">Tar-arkiv (gzip-komprimert)</comment>
+ <comment xml:lang="lv">Tar arhīvs (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">Tar archyvas (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(GZIP 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (gzip-пен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (gzip 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con gzip)</comment>
+ <comment xml:lang="is">Tar safnskrá (Gzip þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Archivo Tar (comprimite con gzip)</comment>
+ <comment xml:lang="hu">Tar archívum (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (gzip sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י gzip)</comment>
+ <comment xml:lang="gl">arquivo Tar (comprimido con gzip)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun gzip)</comment>
+ <comment xml:lang="fr">archive tar (compressée gzip)</comment>
+ <comment xml:lang="fo">Tar skjalasavn (gzip-stappað)</comment>
+ <comment xml:lang="fi">Tar-arkisto (gzip-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (gzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con GZIP)</comment>
+ <comment xml:lang="en_GB">Tar archive (gzip-compressed)</comment>
+ <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με gzip)</comment>
+ <comment xml:lang="de">Tar-Archiv (gzip-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (gzip-komprimeret)</comment>
+ <comment xml:lang="cs">archiv tar (komprimovaný pomocí gzip)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с gzip</comment>
+ <comment xml:lang="be@latin">Archiŭ tar (gzip-skampresavany)</comment>
+ <comment xml:lang="be">архіў tar (сцісканне gzip)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-gzip)</comment>
+ <comment xml:lang="af">Tar-argief (gzip-saamgepers)</comment>
<sub-class-of type="application/gzip"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.tar.gz"/>
<glob pattern="*.tgz"/>
</mime-type>
<mime-type type="application/x-core">
- <comment>program crash data</comment>
- <comment xml:lang="ar">معلومات انهيار البرنامج</comment>
- <comment xml:lang="be@latin">źviestki złamanaj prahramy</comment>
- <comment xml:lang="bg">Данни от забиване на програма</comment>
- <comment xml:lang="ca">dades de fallada de programa</comment>
- <comment xml:lang="cs">data o pádu programu</comment>
- <comment xml:lang="da">programnedbrudsdata</comment>
- <comment xml:lang="de">Daten zu Programmabsturz</comment>
- <comment xml:lang="el">δεδομένα από την κατάρρευση προγράμματος</comment>
- <comment xml:lang="en_GB">program crash data</comment>
- <comment xml:lang="eo">datumo pri kraŝo de programo</comment>
- <comment xml:lang="es">datos de cuelgue de programa</comment>
- <comment xml:lang="eu">programaren kraskaduraren datuak</comment>
- <comment xml:lang="fi">ohjelman kaatumistiedot</comment>
- <comment xml:lang="fo">forrits sordáta</comment>
- <comment xml:lang="fr">données de plantage de programme</comment>
- <comment xml:lang="ga">sonraí tuairte ríomhchláir</comment>
- <comment xml:lang="gl">datos de colgue do programa</comment>
- <comment xml:lang="he">מידע מקריסת תכנית</comment>
- <comment xml:lang="hr">podaci o rušenju programa</comment>
- <comment xml:lang="hu">összeomlott program adatai</comment>
- <comment xml:lang="ia">Datos de fallimento de programma</comment>
- <comment xml:lang="id">data program macet</comment>
- <comment xml:lang="it">Dati crash di applicazione</comment>
- <comment xml:lang="ja">プログラムクラッシュデータ</comment>
- <comment xml:lang="kk">апатты аяқтаудың мәліметтері</comment>
- <comment xml:lang="ko">프로그램 비정상 종료 데이터</comment>
- <comment xml:lang="lt">programos nulūžimo duomenys</comment>
- <comment xml:lang="lv">programmas avārijas dati</comment>
- <comment xml:lang="ms">Data program musnah</comment>
- <comment xml:lang="nb">krasjdata fra program</comment>
- <comment xml:lang="nl">programma-crashgegevens</comment>
- <comment xml:lang="nn">data om programkrasj</comment>
- <comment xml:lang="oc">donadas de plantage de programa</comment>
- <comment xml:lang="pl">Dane awarii programu</comment>
- <comment xml:lang="pt">dados de rebentamento de aplicação</comment>
- <comment xml:lang="pt_BR">Dados de travamento de programa</comment>
- <comment xml:lang="ro">date eroare program</comment>
+ <comment>Program crash data</comment>
+ <comment xml:lang="uk">дані щодо аварії програми</comment>
+ <comment xml:lang="sv">Programkraschdata</comment>
<comment xml:lang="ru">Данные аварийного завершения программы</comment>
- <comment xml:lang="sk">Údaje o páde programu</comment>
- <comment xml:lang="sl">podatki sesutja programa</comment>
- <comment xml:lang="sq">Të dhëna nga programi i bllokuar</comment>
- <comment xml:lang="sr">подаци о падовима програма</comment>
- <comment xml:lang="sv">programkraschdata</comment>
- <comment xml:lang="tr">program çökme verisi</comment>
- <comment xml:lang="uk">аварійні дані про програму</comment>
- <comment xml:lang="vi">dữ liệu sụp đổ chương trình</comment>
- <comment xml:lang="zh_CN">程序崩溃数据</comment>
- <comment xml:lang="zh_TW">程式當掉資料</comment>
- <magic priority="50">
- <match value="\177ELF \004" type="string" offset="0" mask="0xffffffff000000000000000000000000ff"/>
- <match value="\177ELF" type="string" offset="0">
- <match value="1" type="byte" offset="5">
- <match value="4" type="little16" offset="16"/>
+ <comment xml:lang="pl">Dane awarii programu</comment>
+ <comment xml:lang="it">Dati crash di applicazione</comment>
+ <comment xml:lang="es">datos de cierre inesperado de programa</comment>
+ <comment xml:lang="de">Programmabsturz-Daten</comment>
+ <comment xml:lang="be">даныя пра збой праграмы</comment>
+ <magic>
+ <match type="string" mask="0xffffffff000000000000000000000000ff" value="\177ELF \004" offset="0"/>
+ <match type="string" value="\177ELF" offset="0">
+ <match type="byte" value="1" offset="5">
+ <match type="little16" value="4" offset="16"/>
</match>
</match>
- <match value="\177ELF" type="string" offset="0">
- <match value="2" type="byte" offset="5">
- <match value="4" type="big16" offset="16"/>
+ <match type="string" value="\177ELF" offset="0">
+ <match type="byte" value="2" offset="5">
+ <match type="big16" value="4" offset="16"/>
</match>
</match>
- <match value="Core\001" type="string" offset="0"/>
- <match value="Core\002" type="string" offset="0"/>
+ <match type="string" value="Core\001" offset="0"/>
+ <match type="string" value="Core\002" offset="0"/>
</magic>
<glob pattern="core" case-sensitive="true"/>
</mime-type>
<mime-type type="application/x-cpio">
<comment>CPIO archive</comment>
- <comment xml:lang="ar">أرشيف CPIO</comment>
- <comment xml:lang="ast">Archivu CPIO</comment>
- <comment xml:lang="az">CPIO arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ CPIO</comment>
- <comment xml:lang="bg">Архив — CPIO</comment>
- <comment xml:lang="ca">arxiu CPIO</comment>
- <comment xml:lang="cs">archiv CPIO</comment>
- <comment xml:lang="cy">Archif CPIO</comment>
- <comment xml:lang="da">CPIO-arkiv</comment>
- <comment xml:lang="de">CPIO-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο CPIO</comment>
- <comment xml:lang="en_GB">CPIO archive</comment>
- <comment xml:lang="eo">CPIO-arkivo</comment>
- <comment xml:lang="es">archivador CPIO</comment>
- <comment xml:lang="eu">CPIO artxiboa</comment>
- <comment xml:lang="fi">CPIO-arkisto</comment>
- <comment xml:lang="fo">CPIO skjalasavn</comment>
- <comment xml:lang="fr">archive CPIO</comment>
- <comment xml:lang="ga">cartlann CPIO</comment>
- <comment xml:lang="gl">arquivo CPIO</comment>
- <comment xml:lang="he">ארכיון CPIO</comment>
- <comment xml:lang="hr">CPIO arhiva</comment>
- <comment xml:lang="hu">CPIO-archívum</comment>
- <comment xml:lang="ia">Archivo CPIO</comment>
- <comment xml:lang="id">Arsip CPIO</comment>
- <comment xml:lang="it">Archivio CPIO</comment>
- <comment xml:lang="ja">CPIO アーカイブ</comment>
- <comment xml:lang="ka">CPIO არქივი</comment>
- <comment xml:lang="kk">CPIO архиві</comment>
- <comment xml:lang="ko">CPIO 묶음 파일</comment>
- <comment xml:lang="lt">CPIO archyvas</comment>
- <comment xml:lang="lv">CPIO arhīvs</comment>
- <comment xml:lang="ms">Arkib CPIO</comment>
- <comment xml:lang="nb">CPIO-arkiv</comment>
- <comment xml:lang="nl">CPIO-archief</comment>
- <comment xml:lang="nn">CPIO-arkiv</comment>
- <comment xml:lang="oc">archiu CPIO</comment>
- <comment xml:lang="pl">Archiwum CPIO</comment>
- <comment xml:lang="pt">arquivo CPIO</comment>
- <comment xml:lang="pt_BR">Pacote CPIO</comment>
- <comment xml:lang="ro">Arhivă CPIO</comment>
- <comment xml:lang="ru">Архив CPIO</comment>
- <comment xml:lang="sk">Archív CPIO</comment>
- <comment xml:lang="sl">Datoteka arhiva CPIO</comment>
- <comment xml:lang="sq">Arkiv CPIO</comment>
- <comment xml:lang="sr">ЦПИО архива</comment>
- <comment xml:lang="sv">CPIO-arkiv</comment>
- <comment xml:lang="tr">CPIO arşivi</comment>
- <comment xml:lang="uk">архів CPIO</comment>
- <comment xml:lang="vi">Kho nén CPIO</comment>
- <comment xml:lang="zh_CN">CPIO 归档文件</comment>
<comment xml:lang="zh_TW">CPIO 封存檔</comment>
+ <comment xml:lang="zh_CN">CPIO 归档文件</comment>
+ <comment xml:lang="vi">Kho nén CPIO</comment>
+ <comment xml:lang="uk">архів CPIO</comment>
+ <comment xml:lang="tr">CPIO arşivi</comment>
+ <comment xml:lang="sv">CPIO-arkiv</comment>
+ <comment xml:lang="sr">ЦПИО архива</comment>
+ <comment xml:lang="sq">arkiv CPIO</comment>
+ <comment xml:lang="sl">Datoteka arhiva CPIO</comment>
+ <comment xml:lang="si">CPIO ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív CPIO</comment>
+ <comment xml:lang="ru">Архив CPIO</comment>
+ <comment xml:lang="ro">Arhivă CPIO</comment>
+ <comment xml:lang="pt_BR">Pacote CPIO</comment>
+ <comment xml:lang="pt">arquivo CPIO</comment>
+ <comment xml:lang="pl">Archiwum CPIO</comment>
+ <comment xml:lang="oc">archiu CPIO</comment>
+ <comment xml:lang="nn">CPIO-arkiv</comment>
+ <comment xml:lang="nl">CPIO-archief</comment>
+ <comment xml:lang="nb">CPIO-arkiv</comment>
+ <comment xml:lang="ms">Arkib CPIO</comment>
+ <comment xml:lang="lv">CPIO arhīvs</comment>
+ <comment xml:lang="lt">CPIO archyvas</comment>
+ <comment xml:lang="ko">CPIO 묶음 파일</comment>
+ <comment xml:lang="kk">CPIO архиві</comment>
+ <comment xml:lang="ka">CPIO არქივი</comment>
+ <comment xml:lang="ja">CPIO アーカイブ</comment>
+ <comment xml:lang="it">Archivio CPIO</comment>
+ <comment xml:lang="is">CPIO safnskrá</comment>
+ <comment xml:lang="id">Arsip CPIO</comment>
+ <comment xml:lang="ia">Archivo CPIO</comment>
+ <comment xml:lang="hu">CPIO-archívum</comment>
+ <comment xml:lang="hr">CPIO arhiva</comment>
+ <comment xml:lang="he">ארכיון CPIO</comment>
+ <comment xml:lang="gl">arquivo CPIO</comment>
+ <comment xml:lang="ga">cartlann CPIO</comment>
+ <comment xml:lang="fur">archivi CPIO</comment>
+ <comment xml:lang="fr">archive CPIO</comment>
+ <comment xml:lang="fo">CPIO skjalasavn</comment>
+ <comment xml:lang="fi">CPIO-arkisto</comment>
+ <comment xml:lang="eu">CPIO artxiboa</comment>
+ <comment xml:lang="es">archivador CPIO</comment>
+ <comment xml:lang="eo">CPIO-arkivo</comment>
+ <comment xml:lang="en_GB">CPIO archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο CPIO</comment>
+ <comment xml:lang="de">CPIO-Archiv</comment>
+ <comment xml:lang="da">CPIO-arkiv</comment>
+ <comment xml:lang="cy">Archif CPIO</comment>
+ <comment xml:lang="cs">archiv CPIO</comment>
+ <comment xml:lang="ca">arxiu CPIO</comment>
+ <comment xml:lang="bg">Архив — CPIO</comment>
+ <comment xml:lang="be@latin">Archiŭ CPIO</comment>
+ <comment xml:lang="be">архіў CPIO</comment>
+ <comment xml:lang="az">CPIO arxivi</comment>
+ <comment xml:lang="ast">Archivu CPIO</comment>
+ <comment xml:lang="ar">أرشيف CPIO</comment>
+ <comment xml:lang="af">CPIO-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="070707" type="host16" offset="0"/>
- <match value="070701" type="string" offset="0"/>
- <match value="070702" type="string" offset="0"/>
- <match value="0143561" type="host16" offset="0"/>
+ <match type="host16" value="070707" offset="0"/>
+ <match type="string" value="070701" offset="0"/>
+ <match type="string" value="070702" offset="0"/>
+ <match type="host16" value="0143561" offset="0"/>
</magic>
<glob pattern="*.cpio"/>
</mime-type>
<mime-type type="application/x-cpio-compressed">
<comment>CPIO archive (gzip-compressed)</comment>
- <comment xml:lang="ar">أرشيف CPIO (مضغوط-gzip)</comment>
- <comment xml:lang="az">CPIO arxivi (gzip ilə sıxışdırılmış)</comment>
- <comment xml:lang="be@latin">Archiŭ CPIO (gzip-skampresavany)</comment>
- <comment xml:lang="bg">Архив — CPIO, компресиран с gzip</comment>
- <comment xml:lang="ca">arxiu CPIO (amb compressió gzip)</comment>
- <comment xml:lang="cs">archiv CPIO (komprimovaný pomocí gzip)</comment>
- <comment xml:lang="cy">Archif CPIO (gywasgwyd drwy gzip)</comment>
- <comment xml:lang="da">CPIO-arkiv (gzip-komprimeret)</comment>
- <comment xml:lang="de">CPIO-Archiv (gzip-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο CPIO (συμπιεσμένο με gzip)</comment>
- <comment xml:lang="en_GB">CPIO archive (gzip-compressed)</comment>
- <comment xml:lang="eo">CPIO-arkivo (kunpremita per gzip)</comment>
- <comment xml:lang="es">archivador CPIO (comprimido con gzip)</comment>
- <comment xml:lang="eu">CPIO artxiboa (gzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">CPIO-arkisto (gzip-pakattu)</comment>
- <comment xml:lang="fo">CPIO skjalasavn (gzip-stappað)</comment>
- <comment xml:lang="fr">archive CPIO (compressé gzip)</comment>
- <comment xml:lang="ga">cartlann CPIO (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">arquivo CPIO (comprimido con gzip)</comment>
- <comment xml:lang="he">ארכיון CPIO (מכווץ ע״י gzip)</comment>
- <comment xml:lang="hr">CPIO arhiva (gzip sažeta)</comment>
- <comment xml:lang="hu">CPIO-archívum (gzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Archivo CPIO (comprimite con gzip)</comment>
- <comment xml:lang="id">Arsip CPIO (terkompresi gzip)</comment>
- <comment xml:lang="it">Archivio CPIO (compresso con gzip)</comment>
- <comment xml:lang="ja">CPIO (gzip 圧縮) アーカイブ</comment>
- <comment xml:lang="ka">CPIO არქივი (gzip-ით შეკუმშული)</comment>
- <comment xml:lang="kk">CPIO архиві (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">CPIO 묶음 파일(GZIP 압축)</comment>
- <comment xml:lang="lt">CPIO archyvas (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">CPIO arhīvs (saspiests ar gzip)</comment>
- <comment xml:lang="ms">Arkib CPIO (dimampatkan-gzip)</comment>
- <comment xml:lang="nb">CPIO-arkiv (gzip-komprimert)</comment>
- <comment xml:lang="nl">CPIO-archief (ingepakt met gzip)</comment>
- <comment xml:lang="nn">CPIO-arkiv (gzip-pakka)</comment>
- <comment xml:lang="oc">archiu CPIO (compressat gzip)</comment>
- <comment xml:lang="pl">Archiwum CPIO (kompresja gzip)</comment>
- <comment xml:lang="pt">arquivo CPIO (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Pacote CPIO (compactado com gzip)</comment>
- <comment xml:lang="ro">Arhivă CPIO (compresie gzip)</comment>
- <comment xml:lang="ru">Архив CPIO (сжатый gzip)</comment>
- <comment xml:lang="sk">Archív CPIO (komprimovaný pomocou gzip)</comment>
- <comment xml:lang="sl">Datoteka arhiva CPIO (skrčena z gzip)</comment>
- <comment xml:lang="sq">Arkiv CPIO (kompresuar me gzip)</comment>
- <comment xml:lang="sr">ЦПИО архива (компресована гзип-ом)</comment>
- <comment xml:lang="sv">CPIO-arkiv (gzip-komprimerat)</comment>
- <comment xml:lang="tr">CPIO arşivi (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів CPIO (стиснений gzip)</comment>
- <comment xml:lang="vi">Kho nén CPIO (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">CPIO 封存檔 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">CPIO 归档文件(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">CPIO 封存檔 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Kho nén CPIO (đã nén gzip)</comment>
+ <comment xml:lang="uk">архів CPIO (стиснений gzip)</comment>
+ <comment xml:lang="tr">CPIO arşivi (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">CPIO-arkiv (gzip-komprimerat)</comment>
+ <comment xml:lang="sr">ЦПИО архива (компресована гзип-ом)</comment>
+ <comment xml:lang="sq">arkiv CPIO (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Datoteka arhiva CPIO (skrčena z gzip)</comment>
+ <comment xml:lang="si">CPIO සංරක්ෂිතය (gzip-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív CPIO (komprimovaný pomocou gzip)</comment>
+ <comment xml:lang="ru">Архив CPIO (сжатый gzip)</comment>
+ <comment xml:lang="ro">Arhivă CPIO (compresie gzip)</comment>
+ <comment xml:lang="pt_BR">Pacote CPIO (compactado com gzip)</comment>
+ <comment xml:lang="pt">arquivo CPIO (compressão gzip)</comment>
+ <comment xml:lang="pl">Archiwum CPIO (kompresja gzip)</comment>
+ <comment xml:lang="oc">archiu CPIO (compressat gzip)</comment>
+ <comment xml:lang="nn">CPIO-arkiv (gzip-pakka)</comment>
+ <comment xml:lang="nl">CPIO-archief (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">CPIO-arkiv (gzip-komprimert)</comment>
+ <comment xml:lang="ms">Arkib CPIO (dimampatkan-gzip)</comment>
+ <comment xml:lang="lv">CPIO arhīvs (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">CPIO archyvas (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">CPIO 묶음 파일(GZIP 압축)</comment>
+ <comment xml:lang="kk">CPIO архиві (gzip-пен сығылған)</comment>
+ <comment xml:lang="ka">CPIO არქივი (gzip-ით შეკუმშული)</comment>
+ <comment xml:lang="ja">CPIO (gzip 圧縮) アーカイブ</comment>
+ <comment xml:lang="it">Archivio CPIO (compresso con gzip)</comment>
+ <comment xml:lang="is">CPIO safnskrá (Gzip þjappað)</comment>
+ <comment xml:lang="id">Arsip CPIO (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Archivo CPIO (comprimite con gzip)</comment>
+ <comment xml:lang="hu">CPIO archívum (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">CPIO arhiva (gzip sažeta)</comment>
+ <comment xml:lang="he">ארכיון CPIO (מכווץ ע״י gzip)</comment>
+ <comment xml:lang="gl">arquivo CPIO (comprimido con gzip)</comment>
+ <comment xml:lang="ga">cartlann CPIO (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">archivi CPIO (comprimût cun gzip)</comment>
+ <comment xml:lang="fr">archive CPIO (compressé gzip)</comment>
+ <comment xml:lang="fo">CPIO skjalasavn (gzip-stappað)</comment>
+ <comment xml:lang="fi">CPIO-arkisto (gzip-pakattu)</comment>
+ <comment xml:lang="eu">CPIO artxiboa (gzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">archivador CPIO (comprimido con GZIP)</comment>
+ <comment xml:lang="eo">CPIO-arkivo (kunpremita per gzip)</comment>
+ <comment xml:lang="en_GB">CPIO archive (gzip-compressed)</comment>
+ <comment xml:lang="el">Αρχείο CPIO (συμπιεσμένο με gzip)</comment>
+ <comment xml:lang="de">CPIO-Archiv (gzip-komprimiert)</comment>
+ <comment xml:lang="da">CPIO-arkiv (gzip-komprimeret)</comment>
+ <comment xml:lang="cy">Archif CPIO (gywasgwyd drwy gzip)</comment>
+ <comment xml:lang="cs">archiv CPIO (komprimovaný pomocí gzip)</comment>
+ <comment xml:lang="ca">arxiu CPIO (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Архив — CPIO, компресиран с gzip</comment>
+ <comment xml:lang="be@latin">Archiŭ CPIO (gzip-skampresavany)</comment>
+ <comment xml:lang="be">архіў CPIO (сцісканне gzip)</comment>
+ <comment xml:lang="az">CPIO arxivi (gzip ilə sıxışdırılmış)</comment>
+ <comment xml:lang="ar">أرشيف CPIO (مضغوط-gzip)</comment>
+ <comment xml:lang="af">CPIO-argief (gzip-saamgepers)</comment>
<sub-class-of type="application/gzip"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.cpio.gz"/>
</mime-type>
+ <mime-type type="application/x-perf-data">
+ <comment>Perf data</comment>
+ <comment xml:lang="uk">дані Perf</comment>
+ <comment xml:lang="sv">Perf-data</comment>
+ <comment xml:lang="ru">Данные Perf</comment>
+ <comment xml:lang="pl">Dane wydajności</comment>
+ <comment xml:lang="it">Dati perf</comment>
+ <comment xml:lang="gl">Datos de Perf</comment>
+ <comment xml:lang="es">datos de rendimiento</comment>
+ <comment xml:lang="de">Leistungsdaten</comment>
+ <glob pattern="perf.data" case-sensitive="true"/>
+ <magic priority="50">
+ <match type="string" value="PERFILE2" offset="0"/>
+ </magic>
+ </mime-type>
<mime-type type="application/x-csh">
<comment>C shell script</comment>
- <comment xml:lang="ar">سكربت شِل سي</comment>
- <comment xml:lang="az">C qabıq skripti</comment>
- <comment xml:lang="be@latin">Skrypt abałonki C</comment>
- <comment xml:lang="bg">Скрипт — обвивка C</comment>
- <comment xml:lang="ca">script C shell</comment>
- <comment xml:lang="cs">skript shellu C</comment>
- <comment xml:lang="cy">Sgript plisgyn C</comment>
- <comment xml:lang="da">C-skalprogram</comment>
- <comment xml:lang="de">C-Shell-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών κελύφους C</comment>
- <comment xml:lang="en_GB">C shell script</comment>
- <comment xml:lang="eo">skripto de C-ŝelo</comment>
- <comment xml:lang="es">secuencia de órdenes de consola en C</comment>
- <comment xml:lang="eu">C shell script-a</comment>
- <comment xml:lang="fi">Csh-komentotiedosto</comment>
- <comment xml:lang="fo">C skel boðrøð</comment>
- <comment xml:lang="fr">script C shell</comment>
- <comment xml:lang="ga">script bhlaoisce C</comment>
- <comment xml:lang="gl">script de C shell</comment>
- <comment xml:lang="he">תסריט מעטפת C</comment>
- <comment xml:lang="hr">C skripta ljuske</comment>
- <comment xml:lang="hu">C héj-parancsfájl</comment>
- <comment xml:lang="ia">Script C-shell</comment>
- <comment xml:lang="id">Skrip shell C</comment>
- <comment xml:lang="it">Script C shell</comment>
- <comment xml:lang="ja">C シェルスクリプト</comment>
- <comment xml:lang="kk">C shell сценарийі</comment>
- <comment xml:lang="ko">C 셸 스크립트</comment>
- <comment xml:lang="lt">C shell scenarijus</comment>
- <comment xml:lang="lv">C čaulas skripts</comment>
- <comment xml:lang="ms">Skrip shell C</comment>
- <comment xml:lang="nb">C-skallskript</comment>
- <comment xml:lang="nl">C-shellscript</comment>
- <comment xml:lang="nn">C-skalskript</comment>
- <comment xml:lang="oc">escript C shell</comment>
- <comment xml:lang="pl">Skrypt powłoki C</comment>
- <comment xml:lang="pt">script de terminal C</comment>
- <comment xml:lang="pt_BR">Script de shell C</comment>
- <comment xml:lang="ro">Script C shell</comment>
- <comment xml:lang="ru">Сценарий C shell</comment>
- <comment xml:lang="sk">Skript shellu C</comment>
- <comment xml:lang="sl">Skriptna datoteka lupine C</comment>
- <comment xml:lang="sq">Script shell C</comment>
- <comment xml:lang="sr">скрипта Ц шкољке</comment>
- <comment xml:lang="sv">Skalskript (csh)</comment>
- <comment xml:lang="tr">C kabuk betiği</comment>
- <comment xml:lang="uk">скрипт оболонки C</comment>
- <comment xml:lang="vi">Văn lệnh trình bao C</comment>
- <comment xml:lang="zh_CN">C shell 脚本</comment>
<comment xml:lang="zh_TW">C shell 指令稿</comment>
+ <comment xml:lang="zh_CN">C shell 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh trình bao C</comment>
+ <comment xml:lang="uk">скрипт оболонки C</comment>
+ <comment xml:lang="tr">C kabuk betiği</comment>
+ <comment xml:lang="sv">Skalskript (csh)</comment>
+ <comment xml:lang="sr">скрипта Ц шкољке</comment>
+ <comment xml:lang="sq">programth C shell</comment>
+ <comment xml:lang="sl">Skriptna datoteka lupine C</comment>
+ <comment xml:lang="si">C shell පිටපත</comment>
+ <comment xml:lang="sk">Skript shellu C</comment>
+ <comment xml:lang="ru">Сценарий C shell</comment>
+ <comment xml:lang="ro">Script C shell</comment>
+ <comment xml:lang="pt_BR">Script de shell C</comment>
+ <comment xml:lang="pt">script de terminal C</comment>
+ <comment xml:lang="pl">Skrypt powłoki C</comment>
+ <comment xml:lang="oc">escript C shell</comment>
+ <comment xml:lang="nn">C-skalskript</comment>
+ <comment xml:lang="nl">C-shellscript</comment>
+ <comment xml:lang="nb">C-skallskript</comment>
+ <comment xml:lang="ms">Skrip shell C</comment>
+ <comment xml:lang="lv">C čaulas skripts</comment>
+ <comment xml:lang="lt">C shell scenarijus</comment>
+ <comment xml:lang="ko">C 셸 스크립트</comment>
+ <comment xml:lang="kk">C shell сценарийі</comment>
+ <comment xml:lang="ja">C シェルスクリプト</comment>
+ <comment xml:lang="it">Script C shell</comment>
+ <comment xml:lang="is">C skjeljarskrifta</comment>
+ <comment xml:lang="id">Skrip shell C</comment>
+ <comment xml:lang="ia">Script C-shell</comment>
+ <comment xml:lang="hu">C héj-parancsfájl</comment>
+ <comment xml:lang="hr">C skripta ljuske</comment>
+ <comment xml:lang="he">תסריט מעטפת C</comment>
+ <comment xml:lang="gl">script de C shell</comment>
+ <comment xml:lang="ga">script bhlaoisce C</comment>
+ <comment xml:lang="fur">script di shell in C</comment>
+ <comment xml:lang="fr">script C shell</comment>
+ <comment xml:lang="fo">C skel boðrøð</comment>
+ <comment xml:lang="fi">C shell -komentotiedosto</comment>
+ <comment xml:lang="eu">C shell script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes de consola en C</comment>
+ <comment xml:lang="eo">skripto de C-ŝelo</comment>
+ <comment xml:lang="en_GB">C shell script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών κελύφους C</comment>
+ <comment xml:lang="de">C-Shell-Skript</comment>
+ <comment xml:lang="da">C-skalprogram</comment>
+ <comment xml:lang="cy">Sgript plisgyn C</comment>
+ <comment xml:lang="cs">skript shellu C</comment>
+ <comment xml:lang="ca">script C shell</comment>
+ <comment xml:lang="bg">Скрипт — обвивка C</comment>
+ <comment xml:lang="be@latin">Skrypt abałonki C</comment>
+ <comment xml:lang="be">скрыпт C shell</comment>
+ <comment xml:lang="az">C qabıq skripti</comment>
+ <comment xml:lang="ar">سكربت شِل سي</comment>
+ <comment xml:lang="af">C shell-skrip</comment>
<sub-class-of type="application/x-shellscript"/>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<magic>
- <match value="/bin/tcsh" type="string" offset="2:16"/>
- <match value="/bin/csh" type="string" offset="2:16"/>
- <match value="/bin/env csh" type="string" offset="2:16"/>
- <match value="/bin/env tcsh" type="string" offset="2:16"/>
+ <match type="string" value="/bin/tcsh" offset="2:16"/>
+ <match type="string" value="/bin/csh" offset="2:16"/>
+ <match type="string" value="/bin/env csh" offset="2:16"/>
+ <match type="string" value="/bin/env tcsh" offset="2:16"/>
</magic>
<glob pattern="*.csh"/>
</mime-type>
- <mime-type type="application/x-dbf">
+ <mime-type type="application/vnd.dbf">
<comment>Xbase document</comment>
- <comment xml:lang="ar">مستند Xbase</comment>
- <comment xml:lang="ast">Documentu Xbase</comment>
- <comment xml:lang="be@latin">Dakument Xbase</comment>
- <comment xml:lang="bg">Документ — Xbase</comment>
- <comment xml:lang="ca">document Xbase</comment>
- <comment xml:lang="cs">dokument Xbase</comment>
- <comment xml:lang="da">Xbasedokument</comment>
- <comment xml:lang="de">Xbase-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Xbase</comment>
- <comment xml:lang="en_GB">Xbase document</comment>
- <comment xml:lang="eo">Xbase-dokumento</comment>
- <comment xml:lang="es">documento Xbase</comment>
- <comment xml:lang="eu">Xbase dokumentua</comment>
- <comment xml:lang="fi">Xbase-asiakirja</comment>
- <comment xml:lang="fo">Xbase skjal</comment>
- <comment xml:lang="fr">document Xbase</comment>
- <comment xml:lang="ga">cáipéis Xbase</comment>
- <comment xml:lang="gl">documento Xbase</comment>
- <comment xml:lang="he">מסמך Xbase</comment>
- <comment xml:lang="hr">Xbase dokumenet</comment>
- <comment xml:lang="hu">Xbase dokumentum</comment>
- <comment xml:lang="ia">Documento Xbase</comment>
- <comment xml:lang="id">Dokumen Xbase</comment>
- <comment xml:lang="it">Documento Xbase</comment>
- <comment xml:lang="ja">Xbase ドキュメント</comment>
- <comment xml:lang="kk">Xbase құжаты</comment>
- <comment xml:lang="ko">Xbase 문서</comment>
- <comment xml:lang="lt">Xbase dokumentas</comment>
- <comment xml:lang="lv">Xbase dokuments</comment>
- <comment xml:lang="nb">Xbase-dokument</comment>
- <comment xml:lang="nl">Xbase-document</comment>
- <comment xml:lang="nn">Xbase-dokument</comment>
- <comment xml:lang="oc">document Xbase</comment>
- <comment xml:lang="pl">Dokument Xbase</comment>
- <comment xml:lang="pt">documento Xbase</comment>
- <comment xml:lang="pt_BR">Documento do Xbase</comment>
- <comment xml:lang="ro">Document Xbase</comment>
- <comment xml:lang="ru">Документ Xbase</comment>
- <comment xml:lang="sk">Dokument Xbase</comment>
- <comment xml:lang="sl">Dokument Xbase</comment>
- <comment xml:lang="sq">Dokument Xbase</comment>
- <comment xml:lang="sr">документ Иксбазе</comment>
- <comment xml:lang="sv">Xbase-dokument</comment>
- <comment xml:lang="tr">Xbase belgesi</comment>
- <comment xml:lang="uk">документ Xbase</comment>
- <comment xml:lang="vi">Tài liệu Xbase</comment>
- <comment xml:lang="zh_CN">Xbase 文档</comment>
<comment xml:lang="zh_TW">Xbase 文件</comment>
+ <comment xml:lang="zh_CN">Xbase 文档</comment>
+ <comment xml:lang="vi">Tài liệu Xbase</comment>
+ <comment xml:lang="uk">документ Xbase</comment>
+ <comment xml:lang="tr">Xbase belgesi</comment>
+ <comment xml:lang="sv">Xbase-dokument</comment>
+ <comment xml:lang="sr">документ Иксбазе</comment>
+ <comment xml:lang="sq">dokument Xbase</comment>
+ <comment xml:lang="sl">Dokument Xbase</comment>
+ <comment xml:lang="si">Xbase ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Xbase</comment>
+ <comment xml:lang="ru">Документ Xbase</comment>
+ <comment xml:lang="ro">Document Xbase</comment>
+ <comment xml:lang="pt_BR">Documento do Xbase</comment>
+ <comment xml:lang="pt">documento Xbase</comment>
+ <comment xml:lang="pl">Dokument Xbase</comment>
+ <comment xml:lang="oc">document Xbase</comment>
+ <comment xml:lang="nn">Xbase-dokument</comment>
+ <comment xml:lang="nl">Xbase-document</comment>
+ <comment xml:lang="nb">Xbase-dokument</comment>
+ <comment xml:lang="lv">Xbase dokuments</comment>
+ <comment xml:lang="lt">Xbase dokumentas</comment>
+ <comment xml:lang="ko">Xbase 문서</comment>
+ <comment xml:lang="kk">Xbase құжаты</comment>
+ <comment xml:lang="ja">Xbase ドキュメント</comment>
+ <comment xml:lang="it">Documento Xbase</comment>
+ <comment xml:lang="is">Xbase skjal</comment>
+ <comment xml:lang="id">Dokumen Xbase</comment>
+ <comment xml:lang="ia">Documento Xbase</comment>
+ <comment xml:lang="hu">Xbase dokumentum</comment>
+ <comment xml:lang="hr">Xbase dokumenet</comment>
+ <comment xml:lang="he">מסמך Xbase</comment>
+ <comment xml:lang="gl">documento Xbase</comment>
+ <comment xml:lang="ga">cáipéis Xbase</comment>
+ <comment xml:lang="fur">document Xbase</comment>
+ <comment xml:lang="fr">document Xbase</comment>
+ <comment xml:lang="fo">Xbase skjal</comment>
+ <comment xml:lang="fi">Xbase-asiakirja</comment>
+ <comment xml:lang="eu">Xbase dokumentua</comment>
+ <comment xml:lang="es">documento Xbase</comment>
+ <comment xml:lang="eo">Xbase-dokumento</comment>
+ <comment xml:lang="en_GB">Xbase document</comment>
+ <comment xml:lang="el">Έγγραφο Xbase</comment>
+ <comment xml:lang="de">Xbase-Dokument</comment>
+ <comment xml:lang="da">Xbasedokument</comment>
+ <comment xml:lang="cs">dokument Xbase</comment>
+ <comment xml:lang="ca">document Xbase</comment>
+ <comment xml:lang="bg">Документ — Xbase</comment>
+ <comment xml:lang="be@latin">Dakument Xbase</comment>
+ <comment xml:lang="be">дакумент Xbase</comment>
+ <comment xml:lang="ast">Documentu Xbase</comment>
+ <comment xml:lang="ar">مستند Xbase</comment>
+ <comment xml:lang="af">Xbase-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.dbf"/>
- <alias type="application/x-dbase"/>
- <alias type="application/dbf"/>
<alias type="application/dbase"/>
+ <alias type="application/dbf"/>
+ <alias type="application/x-dbase"/>
+ <alias type="application/x-dbf"/>
</mime-type>
<mime-type type="application/ecmascript">
<comment>ECMAScript program</comment>
- <comment xml:lang="ar">برنامج ECMAScript</comment>
- <comment xml:lang="be@latin">Prahrama ECMAScript</comment>
- <comment xml:lang="bg">Програма — ECMAScript</comment>
- <comment xml:lang="ca">programa ECMAScript</comment>
- <comment xml:lang="cs">program v jazyce ECMAScript</comment>
- <comment xml:lang="da">ECMA-program</comment>
- <comment xml:lang="de">ECMAScript-Programm</comment>
- <comment xml:lang="el">Πρόγραμμα ECMAScript</comment>
- <comment xml:lang="en_GB">ECMAScript program</comment>
- <comment xml:lang="es">programa en ECMAScript</comment>
- <comment xml:lang="eu">ECMAScript programa</comment>
- <comment xml:lang="fi">ECMAScript-ohjelma</comment>
- <comment xml:lang="fo">ECMAScript forrit</comment>
- <comment xml:lang="fr">programme ECMAScript</comment>
- <comment xml:lang="ga">ríomhchlár ECMAScript</comment>
- <comment xml:lang="gl">programa en ECMAScript</comment>
- <comment xml:lang="he">תכנית EMCAScript</comment>
- <comment xml:lang="hr">ECMAScript program</comment>
- <comment xml:lang="hu">ECMAScript program</comment>
- <comment xml:lang="ia">Programma ECMAScript</comment>
- <comment xml:lang="id">Program ECMAScript</comment>
- <comment xml:lang="it">Programma ECMAScript</comment>
- <comment xml:lang="ja">ECMAScript プログラム</comment>
- <comment xml:lang="ka">ECMAScript პროგრამა</comment>
- <comment xml:lang="kk">ECMAScript программасы</comment>
- <comment xml:lang="ko">ECMAScript 프로그램</comment>
- <comment xml:lang="lt">ECMAScript programa</comment>
- <comment xml:lang="lv">ECMAScript programma</comment>
- <comment xml:lang="nb">ECMAScript-program</comment>
- <comment xml:lang="nl">ECMAScript-programma</comment>
- <comment xml:lang="nn">ECMAScript-program</comment>
- <comment xml:lang="oc">programa ECMAEscript</comment>
- <comment xml:lang="pl">Pogram ECMAScript</comment>
- <comment xml:lang="pt">programa ECMAScript</comment>
- <comment xml:lang="pt_BR">Programa ECMAScript</comment>
- <comment xml:lang="ro">Program ECMAScript</comment>
- <comment xml:lang="ru">Программа ECMAScript</comment>
- <comment xml:lang="sk">Program ECMAScript</comment>
- <comment xml:lang="sl">Programska datoteka ECMAScript</comment>
- <comment xml:lang="sq">Program ECMAScript</comment>
- <comment xml:lang="sr">програм ЕЦМАСкрипте</comment>
- <comment xml:lang="sv">ECMAScript-program</comment>
- <comment xml:lang="tr">ECMAScript programı</comment>
- <comment xml:lang="uk">програма мовою ECMAScript</comment>
- <comment xml:lang="vi">Chương trình ECMAScript</comment>
- <comment xml:lang="zh_CN">ECMAScript 程序</comment>
<comment xml:lang="zh_TW">ECMAScript 程式</comment>
+ <comment xml:lang="zh_CN">ECMAScript 程序</comment>
+ <comment xml:lang="vi">Chương trình ECMAScript</comment>
+ <comment xml:lang="uk">програма мовою ECMAScript</comment>
+ <comment xml:lang="tr">ECMAScript programı</comment>
+ <comment xml:lang="sv">ECMAScript-program</comment>
+ <comment xml:lang="sr">програм ЕЦМАСкрипте</comment>
+ <comment xml:lang="sq">program ECMAScript</comment>
+ <comment xml:lang="sl">Programska datoteka ECMAScript</comment>
+ <comment xml:lang="si">ECMAScript වැඩසටහන</comment>
+ <comment xml:lang="sk">Program ECMAScript</comment>
+ <comment xml:lang="ru">Программа ECMAScript</comment>
+ <comment xml:lang="ro">Program ECMAScript</comment>
+ <comment xml:lang="pt_BR">Programa ECMAScript</comment>
+ <comment xml:lang="pt">programa ECMAScript</comment>
+ <comment xml:lang="pl">Pogram ECMAScript</comment>
+ <comment xml:lang="oc">programa ECMAEscript</comment>
+ <comment xml:lang="nn">ECMAScript-program</comment>
+ <comment xml:lang="nl">ECMAScript-programma</comment>
+ <comment xml:lang="nb">ECMAScript-program</comment>
+ <comment xml:lang="lv">ECMAScript programma</comment>
+ <comment xml:lang="lt">ECMAScript programa</comment>
+ <comment xml:lang="ko">ECMAScript 프로그램</comment>
+ <comment xml:lang="kk">ECMAScript программасы</comment>
+ <comment xml:lang="ka">ECMAScript პროგრამა</comment>
+ <comment xml:lang="ja">ECMAScript プログラム</comment>
+ <comment xml:lang="it">Programma ECMAScript</comment>
+ <comment xml:lang="is">ECMAScript forrit</comment>
+ <comment xml:lang="id">Program ECMAScript</comment>
+ <comment xml:lang="ia">Programma ECMAScript</comment>
+ <comment xml:lang="hu">ECMAScript program</comment>
+ <comment xml:lang="hr">ECMAScript program</comment>
+ <comment xml:lang="he">תכנית EMCAScript</comment>
+ <comment xml:lang="gl">programa en ECMAScript</comment>
+ <comment xml:lang="ga">ríomhchlár ECMAScript</comment>
+ <comment xml:lang="fur">program ECMAScript</comment>
+ <comment xml:lang="fr">programme ECMAScript</comment>
+ <comment xml:lang="fo">ECMAScript forrit</comment>
+ <comment xml:lang="fi">ECMAScript-ohjelma</comment>
+ <comment xml:lang="eu">ECMAScript programa</comment>
+ <comment xml:lang="es">programa en ECMAScript</comment>
+ <comment xml:lang="en_GB">ECMAScript program</comment>
+ <comment xml:lang="el">Πρόγραμμα ECMAScript</comment>
+ <comment xml:lang="de">ECMAScript-Programm</comment>
+ <comment xml:lang="da">ECMAScript-program</comment>
+ <comment xml:lang="cs">program v jazyce ECMAScript</comment>
+ <comment xml:lang="ca">programa ECMAScript</comment>
+ <comment xml:lang="bg">Програма — ECMAScript</comment>
+ <comment xml:lang="be@latin">Prahrama ECMAScript</comment>
+ <comment xml:lang="be">праграма ECMAScript</comment>
+ <comment xml:lang="ar">برنامج ECMAScript</comment>
+ <comment xml:lang="af">ECMAScript-program</comment>
<alias type="text/ecmascript"/>
- <sub-class-of type='application/x-executable'/>
- <sub-class-of type="text/plain"/>
+ <sub-class-of type="text/javascript"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.es"/>
</mime-type>
+ <mime-type type="application/x-mame-chd">
+ <comment>MAME compressed hard disk image</comment>
+ <comment xml:lang="uk">стиснений образ жорсткого диска MAME</comment>
+ <comment xml:lang="tr">MAME sıkıştırılmış sabit disk görüntüsü</comment>
+ <comment xml:lang="sv">MAME komprimerad hårddiskavbild</comment>
+ <comment xml:lang="sr">МАМЕ компресовани одраз диска</comment>
+ <comment xml:lang="si">MAME සම්පීඩිත දෘඪ තැටි රූපය</comment>
+ <comment xml:lang="ru">Сжатый образ жесткого диска MAME</comment>
+ <comment xml:lang="pt_BR">Imagem de disco rígido compactado do MAME</comment>
+ <comment xml:lang="pl">Skompresowany obraz dysku twardego MAME</comment>
+ <comment xml:lang="nl">met MAME gecomprimeerd harde-schijfkopiebestand</comment>
+ <comment xml:lang="ko">MAME 압축된 하드 디스크 이미지</comment>
+ <comment xml:lang="kk">MAME сығылған қатты диск бейнесі</comment>
+ <comment xml:lang="ja">MAME 圧縮ハーディディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco MAME compressa</comment>
+ <comment xml:lang="is">Þjöppuð MAME diskmynd</comment>
+ <comment xml:lang="id">image hard disk MAME terkompresi</comment>
+ <comment xml:lang="hu">MAME tömörített merevlemezkép</comment>
+ <comment xml:lang="hr">MAME komprimirane slike tvrdog diska</comment>
+ <comment xml:lang="he">דמות כונן קשיח בדחיסת MAME</comment>
+ <comment xml:lang="gl">Imaxe de disco duro comprimido MAME</comment>
+ <comment xml:lang="fr">Image de disque dur compressé MAME</comment>
+ <comment xml:lang="fi">MAME pakatun kiintolevyn levykuva</comment>
+ <comment xml:lang="es">imagen comprimida de disco duro de MAME</comment>
+ <comment xml:lang="en_GB">MAME compressed hard disk image</comment>
+ <comment xml:lang="de">MAME-komprimiertes Festplattenabbild</comment>
+ <comment xml:lang="da">MAME-komprimeret harddiskaftryk</comment>
+ <comment xml:lang="ca">imatge de disc dur MAME amb compressió</comment>
+ <comment xml:lang="be">сціснуты вобраз цвёрдага дыска MAME</comment>
+ <comment xml:lang="ar">صورة قرص صلب MAME مضغوطة</comment>
+ <generic-icon name="application-x-executable"/>
+ <magic>
+ <match type="string" value="MComprHD" offset="0"/>
+ </magic>
+ <glob pattern="*.chd"/>
+ </mime-type>
<mime-type type="application/x-sega-cd-rom">
-
+ <!-- Translate this to Mega-CD if the console was known as such in your locale
+ Should be Mega-CD in all but en_US, Mexico, Canada and Brazil: https://en.wikipedia.org/wiki/Sega_CD -->
<comment>Sega CD disc image</comment>
- <comment xml:lang="ast">Imaxe de discu de Sega CD</comment>
- <comment xml:lang="ca">imatge de disc de Sega CD</comment>
- <comment xml:lang="cs">obraz disku CD pro Sega</comment>
- <comment xml:lang="da">Sega CD-diskaftryk</comment>
- <comment xml:lang="de">Sega-CD-Datenträgerabbild</comment>
- <comment xml:lang="en_GB">Sega CD disc image</comment>
- <comment xml:lang="es">imagen de disco CD de Sega</comment>
- <comment xml:lang="eu">Sega CD disko irudia</comment>
- <comment xml:lang="fi">Sega CD -levykuva</comment>
- <comment xml:lang="fr">image disque Sega CD</comment>
- <comment xml:lang="ga">íomhá dlúthdhiosca Sega</comment>
- <comment xml:lang="he">דמות כונן Sega CD</comment>
- <comment xml:lang="hr">Sega CD slika diska</comment>
- <comment xml:lang="hu">Sega CD-lemezkép</comment>
- <comment xml:lang="id">image cakram CD Sega</comment>
- <comment xml:lang="it">Immagine disco Sega Mega CD</comment>
- <comment xml:lang="kk">Sega CD диск бейнесі</comment>
- <comment xml:lang="ko">세가 CD 디스크 이미지</comment>
- <comment xml:lang="pl">Obraz płyty konsoli Mega-CD</comment>
- <comment xml:lang="pt_BR">Imagem de disco Sega CD</comment>
- <comment xml:lang="ru">Образ диска CD Sega</comment>
- <comment xml:lang="sk">Obraz disku CD Sega</comment>
- <comment xml:lang="sr">одраз диска Сега ЦД-а</comment>
- <comment xml:lang="sv">Mega-CD-skivavbild</comment>
- <comment xml:lang="tr">Sega CD disk kalıbı</comment>
- <comment xml:lang="uk">образ диска Sega CD</comment>
- <comment xml:lang="zh_CN">Sega CD 光盘映像</comment>
<comment xml:lang="zh_TW">Sega CD 光碟映像檔</comment>
+ <comment xml:lang="zh_CN">Sega CD 光盘映像</comment>
+ <comment xml:lang="uk">образ диска Sega CD</comment>
+ <comment xml:lang="tr">Sega CD disk görüntüsü</comment>
+ <comment xml:lang="sv">Mega-CD-skivavbild</comment>
+ <comment xml:lang="sr">одраз диска Сега ЦД-а</comment>
+ <comment xml:lang="sq">pamje disku CD Sega</comment>
+ <comment xml:lang="sl">Slika diska CD Sega</comment>
+ <comment xml:lang="si">Sega CD තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku CD Sega</comment>
+ <comment xml:lang="ru">Образ диска CD Sega</comment>
+ <comment xml:lang="pt_BR">Imagem de disco Sega CD</comment>
+ <comment xml:lang="pt">imagem de disco Mega-CD</comment>
+ <comment xml:lang="pl">Obraz płyty konsoli Mega-CD</comment>
+ <comment xml:lang="oc">imatge disc Sega CD</comment>
+ <comment xml:lang="nl">Sega CD-schijfkopiebestand</comment>
+ <comment xml:lang="ko">세가 CD 디스크 이미지</comment>
+ <comment xml:lang="kk">Sega CD диск бейнесі</comment>
+ <comment xml:lang="ja">Sega CD ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco Sega Mega CD</comment>
+ <comment xml:lang="is">Sega CD diskmynd</comment>
+ <comment xml:lang="id">Image cakram CD Sega</comment>
+ <comment xml:lang="hu">Sega CD-lemezkép</comment>
+ <comment xml:lang="hr">Sega CD slika diska</comment>
+ <comment xml:lang="he">דמות כונן Sega CD</comment>
+ <comment xml:lang="gl">Imaxe de disco de Sega CD</comment>
+ <comment xml:lang="ga">íomhá dlúthdhiosca Sega</comment>
+ <comment xml:lang="fur">imagjin disc CD Sega</comment>
+ <comment xml:lang="fr">image disque Sega CD</comment>
+ <comment xml:lang="fi">Sega CD -levykuva</comment>
+ <comment xml:lang="eu">Sega CD disko irudia</comment>
+ <comment xml:lang="es">imagen de disco CD de Sega</comment>
+ <comment xml:lang="en_GB">Sega CD disc image</comment>
+ <comment xml:lang="de">Sega-CD-Datenträgerabbild</comment>
+ <comment xml:lang="da">Sega CD-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku CD pro Sega</comment>
+ <comment xml:lang="ca">imatge de disc de Sega CD</comment>
+ <comment xml:lang="bg">Диск — Mega-CD (Sega)</comment>
+ <comment xml:lang="be">вобраз CD-дыска Sega</comment>
+ <comment xml:lang="ast">Imaxe de discu de Sega CD</comment>
+ <comment xml:lang="ar">صورة قرص ميجا سي دي</comment>
+ <comment xml:lang="af">Mega CD-skyfbeeldlêer</comment>
<generic-icon name="application-x-executable"/>
-
+ <!-- Also matches the application/x-genesis-rom magic values, hence the higher priority -->
<magic priority="60">
- <match value="SEGADISCSYSTEM" type="string" offset="0">
- <match value="SEGA" type="string" offset="256"/>
+ <match type="string" value="SEGADISCSYSTEM" offset="0">
+ <match type="string" value="SEGA" offset="256"/>
</match>
- <match value="SEGADISCSYSTEM" type="string" offset="16">
- <match value="SEGA" type="string" offset="272"/>
+ <match type="string" value="SEGADISCSYSTEM" offset="16">
+ <match type="string" value="SEGA" offset="272"/>
</match>
</magic>
- <glob pattern="*.bin"/>
<glob pattern="*.iso"/>
</mime-type>
<mime-type type="application/x-sega-pico-rom">
-
+ <!-- Translate this to Kids Computer Pico if the console was known as such in your locale
+ Should be Sega Pico in all but Japan: https://en.wikipedia.org/wiki/Sega_Pico -->
<comment>Sega Pico ROM</comment>
- <comment xml:lang="ast">ROM de Sega Pico</comment>
- <comment xml:lang="ca">ROM de Sega Pico</comment>
- <comment xml:lang="cs">ROM pro Sega Pico</comment>
- <comment xml:lang="de">Sega Pico ROM</comment>
- <comment xml:lang="en_GB">Sega Pico ROM</comment>
- <comment xml:lang="es">ROM de Sega Pico</comment>
- <comment xml:lang="eu">Sega Pico ROM</comment>
- <comment xml:lang="fi">Sega Pico ROM</comment>
- <comment xml:lang="fr">ROM Sega Pico</comment>
- <comment xml:lang="ga">ROM Sega Pico</comment>
- <comment xml:lang="hr">Sega Pico ROM</comment>
- <comment xml:lang="hu">Sega Pico ROM</comment>
- <comment xml:lang="id">ROM Sega Pico</comment>
- <comment xml:lang="it">ROM Sega Pico</comment>
- <comment xml:lang="kk">Sega Pico ROM</comment>
- <comment xml:lang="ko">세카 피코 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Sega Pico</comment>
- <comment xml:lang="pt_BR">ROM de Sega Pico</comment>
- <comment xml:lang="ru">Sega Pico ROM</comment>
- <comment xml:lang="sk">ROM pre Sega Pico</comment>
- <comment xml:lang="sr">Сега Пико РОМ</comment>
- <comment xml:lang="sv">Sega Pico-rom</comment>
- <comment xml:lang="tr">Sega Pico ROM</comment>
- <comment xml:lang="uk">ППП Sega Pico</comment>
- <comment xml:lang="zh_CN">Sega Pico ROM</comment>
<comment xml:lang="zh_TW">Sega Pico ROM</comment>
+ <comment xml:lang="zh_CN">Sega Pico ROM</comment>
+ <comment xml:lang="uk">ППП Sega Pico</comment>
+ <comment xml:lang="tr">Sega Pico ROM</comment>
+ <comment xml:lang="sv">Sega Pico-rom</comment>
+ <comment xml:lang="sr">Сега Пико РОМ</comment>
+ <comment xml:lang="sq">ROM Sega Pico</comment>
+ <comment xml:lang="sl">Sega Pico ROM</comment>
+ <comment xml:lang="si">Sega Pico ROM</comment>
+ <comment xml:lang="sk">ROM pre Sega Pico</comment>
+ <comment xml:lang="ru">Sega Pico ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Sega Pico</comment>
+ <comment xml:lang="pt">ROM Sega Pico</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Sega Pico</comment>
+ <comment xml:lang="oc">ROM Sega Pico</comment>
+ <comment xml:lang="nl">Sega Pico-ROM</comment>
+ <comment xml:lang="ko">세가 피코 롬</comment>
+ <comment xml:lang="kk">Sega Pico ROM</comment>
+ <comment xml:lang="ja">キッズコンピュータ・ピコ ROM</comment>
+ <comment xml:lang="it">ROM Sega Pico</comment>
+ <comment xml:lang="is">Sega Pico ROM</comment>
+ <comment xml:lang="id">ROM Sega Pico</comment>
+ <comment xml:lang="hu">Sega Pico ROM</comment>
+ <comment xml:lang="hr">Sega Pico ROM</comment>
+ <comment xml:lang="he">ROM של Sega Pico</comment>
+ <comment xml:lang="gl">ROM de Sega Pico</comment>
+ <comment xml:lang="ga">ROM Sega Pico</comment>
+ <comment xml:lang="fur">ROM Sega Pico</comment>
+ <comment xml:lang="fr">ROM Sega Pico</comment>
+ <comment xml:lang="fi">Sega Pico ROM</comment>
+ <comment xml:lang="eu">Sega Pico ROM</comment>
+ <comment xml:lang="es">ROM de Sega Pico</comment>
+ <comment xml:lang="en_GB">Sega Pico ROM</comment>
+ <comment xml:lang="de">Sega-Pico-ROM</comment>
+ <comment xml:lang="da">Sega Pico-ROM</comment>
+ <comment xml:lang="cs">ROM pro Sega Pico</comment>
+ <comment xml:lang="ca">ROM de Sega Pico</comment>
+ <comment xml:lang="bg">ROM — Sega Pico</comment>
+ <comment xml:lang="be">Sega Pico ROM</comment>
+ <comment xml:lang="ast">ROM de Sega Pico</comment>
+ <comment xml:lang="ar">روم سيجا بيك</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="SEGA PICO" type="string" offset="256"/>
+ <magic>
+ <match type="string" value="SEGA PICO" offset="256"/>
</magic>
+ <glob pattern="*.iso"/>
</mime-type>
<mime-type type="application/x-saturn-rom">
<comment>Sega Saturn disc image</comment>
- <comment xml:lang="ast">Imaxe de discu de Sega Saturn</comment>
- <comment xml:lang="ca">imatge de disc de Sega Saturn</comment>
- <comment xml:lang="cs">obraz disku pro Sega Saturn</comment>
- <comment xml:lang="da">Sega Saturn-diskaftryk</comment>
- <comment xml:lang="de">Sega-Saturn-Datenträgerabbild</comment>
- <comment xml:lang="el">Εικόνα δίσκου Sega Saturn</comment>
- <comment xml:lang="en_GB">Sega Saturn disc image</comment>
- <comment xml:lang="es">imagen de disco de Sega Saturn</comment>
- <comment xml:lang="eu">Sega Saturn disko irudia</comment>
- <comment xml:lang="fi">Sega Saturn -levykuva</comment>
- <comment xml:lang="fr">image disque Sega Saturn</comment>
- <comment xml:lang="ga">íomhá diosca Sega Saturn</comment>
- <comment xml:lang="he">דמות כונן Sega Saturn</comment>
- <comment xml:lang="hr">Sega Saturn slika diska</comment>
- <comment xml:lang="hu">Sega Saturn lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco Sega Saturn</comment>
- <comment xml:lang="id">Image cakram Sega Saturn</comment>
- <comment xml:lang="it">Immagine disco Sega Saturn</comment>
- <comment xml:lang="kk">Sega Saturn диск бейнесі</comment>
- <comment xml:lang="ko">세가 새턴 디스크 이미지</comment>
- <comment xml:lang="oc">imatge disc Sega Saturn</comment>
- <comment xml:lang="pl">Obraz płyty konsoli Sega Saturn</comment>
- <comment xml:lang="pt">imagem de disco Sega Saturn</comment>
- <comment xml:lang="pt_BR">Imagem de disco do Sega Saturn</comment>
- <comment xml:lang="ru">Образ диска Sega Saturn</comment>
- <comment xml:lang="sk">Obraz disku Sega Saturn</comment>
- <comment xml:lang="sr">одраз диска Сега Сатурна</comment>
- <comment xml:lang="sv">Sega Saturn-skivavbild</comment>
- <comment xml:lang="tr">Sega Saturn disk kalıbı</comment>
- <comment xml:lang="uk">образ диска Sega Saturn</comment>
- <comment xml:lang="zh_CN">Sega Saturn 光盘映像</comment>
<comment xml:lang="zh_TW">Sega Saturn 光碟映像檔</comment>
+ <comment xml:lang="zh_CN">Sega Saturn 光盘映像</comment>
+ <comment xml:lang="uk">образ диска Sega Saturn</comment>
+ <comment xml:lang="tr">Sega Saturn disk görüntüsü</comment>
+ <comment xml:lang="sv">Sega Saturn-skivavbild</comment>
+ <comment xml:lang="sr">одраз диска Сега Сатурна</comment>
+ <comment xml:lang="sq">pamje disku Sega Saturn</comment>
+ <comment xml:lang="sl">Slika diska Sega Saturn</comment>
+ <comment xml:lang="si">සේගා සෙනසුරු තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku Sega Saturn</comment>
+ <comment xml:lang="ru">Образ диска Sega Saturn</comment>
+ <comment xml:lang="pt_BR">Imagem de disco do Sega Saturn</comment>
+ <comment xml:lang="pt">imagem de disco Sega Saturn</comment>
+ <comment xml:lang="pl">Obraz płyty konsoli Sega Saturn</comment>
+ <comment xml:lang="oc">imatge disc Sega Saturn</comment>
+ <comment xml:lang="nl">Sega Saturn-schijfkopiebestand</comment>
+ <comment xml:lang="ko">세가 새턴 디스크 이미지</comment>
+ <comment xml:lang="kk">Sega Saturn диск бейнесі</comment>
+ <comment xml:lang="ja">Sega Saturn ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco Sega Saturn</comment>
+ <comment xml:lang="is">Sega Saturn diskmynd</comment>
+ <comment xml:lang="id">Image cakram Sega Saturn</comment>
+ <comment xml:lang="ia">Imagine de disco Sega Saturn</comment>
+ <comment xml:lang="hu">Sega Saturn lemezkép</comment>
+ <comment xml:lang="hr">Sega Saturn slika diska</comment>
+ <comment xml:lang="he">דמות כונן Sega Saturn</comment>
+ <comment xml:lang="gl">Imaxe de disco de Sega Saturn</comment>
+ <comment xml:lang="ga">íomhá diosca Sega Saturn</comment>
+ <comment xml:lang="fur">imagjin disc Sega Saturn</comment>
+ <comment xml:lang="fr">image disque Sega Saturn</comment>
+ <comment xml:lang="fi">Sega Saturn -levykuva</comment>
+ <comment xml:lang="eu">Sega Saturn disko irudia</comment>
+ <comment xml:lang="es">imagen de disco de Sega Saturn</comment>
+ <comment xml:lang="en_GB">Sega Saturn disc image</comment>
+ <comment xml:lang="el">Εικόνα δίσκου Sega Saturn</comment>
+ <comment xml:lang="de">Sega-Saturn-Datenträgerabbild</comment>
+ <comment xml:lang="da">Sega Saturn-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku pro Sega Saturn</comment>
+ <comment xml:lang="ca">imatge de disc de Sega Saturn</comment>
+ <comment xml:lang="bg">Диск — Sega Saturn</comment>
+ <comment xml:lang="be">вобраз дыска Sega Saturn</comment>
+ <comment xml:lang="ast">Imaxe de discu de Sega Saturn</comment>
+ <comment xml:lang="ar">صورة قرص ميجا ساتورن</comment>
+ <comment xml:lang="af">Sega Saturn-skyfbeeldlêer</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="SEGA SEGASATURN" type="string" offset="0"/>
- <match value="SEGA SEGASATURN" type="string" offset="16"/>
+ <magic>
+ <match type="string" value="SEGA SEGASATURN" offset="0"/>
+ <match type="string" value="SEGA SEGASATURN" offset="16"/>
</magic>
- <glob pattern="*.bin"/>
<glob pattern="*.iso"/>
</mime-type>
- <mime-type type="application/x-dc-rom">
- <comment>Dreamcast GD-ROM</comment>
- <comment xml:lang="ast">GD-ROM de Dreamcast</comment>
- <comment xml:lang="ca">GD-ROM de Dreamcast</comment>
- <comment xml:lang="cs">GD-ROM pro Dreamcast</comment>
- <comment xml:lang="da">Dreamcast GD-ROM</comment>
- <comment xml:lang="de">Dreamcast GD-ROM</comment>
- <comment xml:lang="el">Dreamcast GD-ROM</comment>
- <comment xml:lang="en_GB">Dreamcast GD-ROM</comment>
- <comment xml:lang="es">GD-ROM de Dreamcast</comment>
- <comment xml:lang="eu">Dreamcast GD-ROM</comment>
- <comment xml:lang="fr">GD-ROM Dreamcast</comment>
- <comment xml:lang="ga">GD-ROM Dreamcast</comment>
- <comment xml:lang="he">Dreamcast GD-ROM</comment>
- <comment xml:lang="hr">Dreamcast GD-ROM</comment>
- <comment xml:lang="hu">Dreamcast GD-ROM</comment>
- <comment xml:lang="ia">GD-ROM Dreamcast</comment>
- <comment xml:lang="id">GD-ROM Dreamcast</comment>
- <comment xml:lang="it">GD-ROM Dreamcast</comment>
- <comment xml:lang="kk">Dreamcast GD-ROM</comment>
- <comment xml:lang="ko">드림캐스트 GD-ROM</comment>
- <comment xml:lang="oc">GD-ROM Dreamcast</comment>
- <comment xml:lang="pl">Plik GD-ROM konsoli Dreamcast</comment>
- <comment xml:lang="pt">GD-ROM Dreamcast</comment>
- <comment xml:lang="pt_BR">GD-ROM de Dreamcast</comment>
- <comment xml:lang="ru">Dreamcast GD-ROM</comment>
- <comment xml:lang="sk">Dreamcast GD-ROM</comment>
- <comment xml:lang="sr">Дримкаст ГД-РОМ</comment>
- <comment xml:lang="sv">Dreamcast-gd-rom</comment>
- <comment xml:lang="tr">Dreamcast GD-ROM</comment>
- <comment xml:lang="uk">GD-ROM Dreamcast</comment>
- <comment xml:lang="zh_CN">Dreamcast CD-ROM</comment>
- <comment xml:lang="zh_TW">Dreamcast GD-ROM</comment>
+ <mime-type type="application/x-dreamcast-rom">
+ <comment>Dreamcast disc image</comment>
+ <comment xml:lang="zh_TW">Dreamcast 光碟映像檔</comment>
+ <comment xml:lang="zh_CN">Dreamcast 光盘映像</comment>
+ <comment xml:lang="uk">образ диска Dreamcast</comment>
+ <comment xml:lang="tr">Dreamcast disk görüntüsü</comment>
+ <comment xml:lang="sv">Dreamcast-skivavbild</comment>
+ <comment xml:lang="sq">pamje disku Dreamcast</comment>
+ <comment xml:lang="sl">Slika diska Dreamcast</comment>
+ <comment xml:lang="si">Dreamcast තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku Dreamcast</comment>
+ <comment xml:lang="ru">Образ диска Dreamcast</comment>
+ <comment xml:lang="pt_BR">Imagem de disco do Dreamcast</comment>
+ <comment xml:lang="pt">imagem de disco Dreamcast</comment>
+ <comment xml:lang="pl">Obraz płyty konsoli Dreamcast</comment>
+ <comment xml:lang="oc">imatge disc Dreamcast</comment>
+ <comment xml:lang="nl">Dreamcast-schijfkopiebestand</comment>
+ <comment xml:lang="ko">드림캐스트 디스크 이미지</comment>
+ <comment xml:lang="kk">Dreamcast диск бейнесі</comment>
+ <comment xml:lang="ja">Dreamcast ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco Dreamcast</comment>
+ <comment xml:lang="is">Dreamcast diskmynd</comment>
+ <comment xml:lang="id">Image cakram Dreamcast</comment>
+ <comment xml:lang="hu">Dreamcast lemezkép</comment>
+ <comment xml:lang="hr">Dreamcast slika disa</comment>
+ <comment xml:lang="he">דמות כונן Dreamcast</comment>
+ <comment xml:lang="gl">Imaxe de disco de Dreamcast</comment>
+ <comment xml:lang="fr">image disque Dreamcast</comment>
+ <comment xml:lang="fi">Dreamcast-levykuva</comment>
+ <comment xml:lang="eu">Dreamcast disko irudia</comment>
+ <comment xml:lang="es">imagen de disco de Dreamcast</comment>
+ <comment xml:lang="en_GB">Dreamcast disc image</comment>
+ <comment xml:lang="de">Dreamcast-Datenträgerabbild</comment>
+ <comment xml:lang="da">Dreamcast-diskaftryk</comment>
+ <comment xml:lang="ca">imatge de disc de Dreamcast</comment>
+ <comment xml:lang="bg">Диск — Dreamcast</comment>
+ <comment xml:lang="be">вобраз дыска Dreamcast</comment>
+ <comment xml:lang="ar">صورة قرص Dreamcast</comment>
<generic-icon name="application-x-executable"/>
- <glob pattern="*.dc"/>
+ <magic>
+ <match type="string" value="SEGA SEGAKATANA" offset="16"/>
+ </magic>
+ <glob pattern="*.iso"/>
</mime-type>
<mime-type type="application/x-nintendo-ds-rom">
<comment>Nintendo DS ROM</comment>
- <comment xml:lang="ar">Nintendo DS ROM</comment>
- <comment xml:lang="ast">ROM de Nintendo DS</comment>
- <comment xml:lang="be@latin">Nintendo DS ROM</comment>
- <comment xml:lang="bg">ROM — Nintendo DS</comment>
- <comment xml:lang="ca">ROM de Nintendo DS</comment>
- <comment xml:lang="cs">ROM pro Nintendo DS</comment>
- <comment xml:lang="da">Nintendo DS-rom</comment>
- <comment xml:lang="de">Nintendo DS ROM</comment>
- <comment xml:lang="el">Nintendo DS ROM</comment>
- <comment xml:lang="en_GB">Nintendo DS ROM</comment>
- <comment xml:lang="es">ROM de Nintendo DS</comment>
- <comment xml:lang="eu">Nintendo DS-ko ROMa</comment>
- <comment xml:lang="fi">Nintendo DS-ROM</comment>
- <comment xml:lang="fo">Nintendo DS ROM</comment>
- <comment xml:lang="fr">ROM Nintendo DS</comment>
- <comment xml:lang="ga">ROM Nintendo DS</comment>
- <comment xml:lang="gl">ROM de Nintendo DS</comment>
- <comment xml:lang="he">ROM של Nintendo</comment>
- <comment xml:lang="hr">Nintendo DS ROM</comment>
- <comment xml:lang="hu">Nintendo DS ROM</comment>
- <comment xml:lang="ia">ROM pro Nintendo DS</comment>
- <comment xml:lang="id">Memori baca-saja Nintendo DS</comment>
- <comment xml:lang="it">ROM Nintendo DS</comment>
- <comment xml:lang="ja">Nintendo DS ROM</comment>
- <comment xml:lang="kk">Nintendo DS ROM</comment>
- <comment xml:lang="ko">닌텐도 DS 롬</comment>
- <comment xml:lang="lt">Nintendo DS ROM</comment>
- <comment xml:lang="lv">Nintendo DS ROM</comment>
- <comment xml:lang="nb">Nintendo DS-ROM</comment>
- <comment xml:lang="nl">Nintendo-DS-ROM</comment>
- <comment xml:lang="nn">Nintendo DS-ROM</comment>
- <comment xml:lang="oc">ROM Nintendo DS</comment>
- <comment xml:lang="pl">Plik ROM konsoli Nintendo DS</comment>
- <comment xml:lang="pt">ROM Nintendo DS</comment>
- <comment xml:lang="pt_BR">ROM de Nintendo DS</comment>
- <comment xml:lang="ro">ROM Nintendo DS</comment>
- <comment xml:lang="ru">Nintendo DS ROM</comment>
- <comment xml:lang="sk">ROM pre Nintendo DS</comment>
- <comment xml:lang="sl">Bralni pomnilnik Nintendo DS</comment>
- <comment xml:lang="sq">ROM Nintendo DS</comment>
- <comment xml:lang="sr">Нинтендо ДС РОМ</comment>
- <comment xml:lang="sv">Nintendo DS-rom</comment>
- <comment xml:lang="tr">Nintendo DS ROM</comment>
- <comment xml:lang="uk">ППП Nintendo</comment>
- <comment xml:lang="vi">ROM DS Nintendo</comment>
- <comment xml:lang="zh_CN">任天堂 DS ROM</comment>
<comment xml:lang="zh_TW">任天堂 DS ROM</comment>
+ <comment xml:lang="zh_CN">任天堂 DS ROM</comment>
+ <comment xml:lang="vi">ROM DS Nintendo</comment>
+ <comment xml:lang="uk">ППП Nintendo</comment>
+ <comment xml:lang="tr">Nintendo DS ROM</comment>
+ <comment xml:lang="sv">Nintendo DS-rom</comment>
+ <comment xml:lang="sr">Нинтендо ДС РОМ</comment>
+ <comment xml:lang="sq">ROM Nintendo DS</comment>
+ <comment xml:lang="sl">Bralni pomnilnik Nintendo DS</comment>
+ <comment xml:lang="si">Nintendo DS ROM</comment>
+ <comment xml:lang="sk">ROM pre Nintendo DS</comment>
+ <comment xml:lang="ru">Nintendo DS ROM</comment>
+ <comment xml:lang="ro">ROM Nintendo DS</comment>
+ <comment xml:lang="pt_BR">ROM de Nintendo DS</comment>
+ <comment xml:lang="pt">ROM Nintendo DS</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Nintendo DS</comment>
+ <comment xml:lang="oc">ROM Nintendo DS</comment>
+ <comment xml:lang="nn">Nintendo DS-ROM</comment>
+ <comment xml:lang="nl">Nintendo DS-ROM</comment>
+ <comment xml:lang="nb">Nintendo DS-ROM</comment>
+ <comment xml:lang="lv">Nintendo DS ROM</comment>
+ <comment xml:lang="lt">Nintendo DS ROM</comment>
+ <comment xml:lang="ko">닌텐도 DS 롬</comment>
+ <comment xml:lang="kk">Nintendo DS ROM</comment>
+ <comment xml:lang="ja">ニンテンドーDS ROM</comment>
+ <comment xml:lang="it">ROM Nintendo DS</comment>
+ <comment xml:lang="is">Nintendo DS ROM</comment>
+ <comment xml:lang="id">Memori baca-saja Nintendo DS</comment>
+ <comment xml:lang="ia">ROM pro Nintendo DS</comment>
+ <comment xml:lang="hu">Nintendo DS ROM</comment>
+ <comment xml:lang="hr">Nintendo DS ROM</comment>
+ <comment xml:lang="he">ROM של Nintendo</comment>
+ <comment xml:lang="gl">ROM de Nintendo DS</comment>
+ <comment xml:lang="ga">ROM Nintendo DS</comment>
+ <comment xml:lang="fur">ROM Nintendo DS</comment>
+ <comment xml:lang="fr">ROM Nintendo DS</comment>
+ <comment xml:lang="fo">Nintendo DS ROM</comment>
+ <comment xml:lang="fi">Nintendo DS-ROM</comment>
+ <comment xml:lang="eu">Nintendo DS-ko ROMa</comment>
+ <comment xml:lang="es">ROM de Nintendo DS</comment>
+ <comment xml:lang="en_GB">Nintendo DS ROM</comment>
+ <comment xml:lang="el">Nintendo DS ROM</comment>
+ <comment xml:lang="de">Nintendo-DS-ROM</comment>
+ <comment xml:lang="da">Nintendo DS-ROM</comment>
+ <comment xml:lang="cs">ROM pro Nintendo DS</comment>
+ <comment xml:lang="ca">ROM de Nintendo DS</comment>
+ <comment xml:lang="bg">ROM — Nintendo DS</comment>
+ <comment xml:lang="be@latin">Nintendo DS ROM</comment>
+ <comment xml:lang="be">Nintendo DS ROM</comment>
+ <comment xml:lang="ast">ROM de Nintendo DS</comment>
+ <comment xml:lang="ar">روم نينتندو دي</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.nds"/>
</mime-type>
+ <mime-type type="application/x-nintendo-3ds-rom">
+ <comment>Nintendo 3DS ROM</comment>
+ <comment xml:lang="uk">ППП Nintendo 3DS</comment>
+ <comment xml:lang="tr">Nintendo 3DS ROM</comment>
+ <comment xml:lang="sv">Nintendo 3DS-rom</comment>
+ <comment xml:lang="sl">Nintendo 3DS ROM</comment>
+ <comment xml:lang="si">Nintendo 3DS ROM</comment>
+ <comment xml:lang="ru">Nintendo 3DS ROM</comment>
+ <comment xml:lang="pt_BR">ROM do Nintendo 3DS</comment>
+ <comment xml:lang="pt">ROM Nintendo 3DS</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Nintendo 3DS</comment>
+ <comment xml:lang="oc">ROM Nintendo 3DS</comment>
+ <comment xml:lang="nl">Nintendo 3DS-ROM</comment>
+ <comment xml:lang="ko">닌텐도 3DS 롬</comment>
+ <comment xml:lang="kk">Nintendo 3DS ROM</comment>
+ <comment xml:lang="ja">ニンテンドー3DS ROM</comment>
+ <comment xml:lang="it">ROM Nintendo 3DS</comment>
+ <comment xml:lang="is">Nintendo 3DS ROM</comment>
+ <comment xml:lang="id">ROM Nintendo 3DS</comment>
+ <comment xml:lang="hu">Nintendo 3DS ROM</comment>
+ <comment xml:lang="hr">Nintendo 3DS ROM</comment>
+ <comment xml:lang="he">ROM של Nintendo 3DS</comment>
+ <comment xml:lang="gl">ROM de Nintendo 3DS</comment>
+ <comment xml:lang="fr">ROM Nintendo 3DS</comment>
+ <comment xml:lang="fi">Nintendo 3DS ROM</comment>
+ <comment xml:lang="eu">Nintendo 3DS ROMa</comment>
+ <comment xml:lang="es">ROM de Nintendo 3DS</comment>
+ <comment xml:lang="en_GB">Nintendo 3DS ROM</comment>
+ <comment xml:lang="de">Nintendo-3DS-ROM</comment>
+ <comment xml:lang="da">Nintendo 3DS-ROM</comment>
+ <comment xml:lang="ca">ROM de Nintendo 3DS</comment>
+ <comment xml:lang="be">Nintendo 3DS ROM</comment>
+ <comment xml:lang="ar">روم نينتندو 3دي</comment>
+ <generic-icon name="application-x-executable"/>
+ <glob pattern="*.3ds"/>
+ <glob pattern="*.cci"/>
+ <magic>
+ <match offset="256" type="string" value="NCSD"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-nintendo-3ds-executable">
+ <comment>Nintendo 3DS Executable</comment>
+ <comment xml:lang="uk">виконуваний файл Nintendo 3DS</comment>
+ <comment xml:lang="tr">Nintendo 3DS Executable</comment>
+ <comment xml:lang="sv">Körbar Nintendo 3DS-fil</comment>
+ <comment xml:lang="si">Nintendo 3DS Executable</comment>
+ <comment xml:lang="ru">Nintendo 3DS Executable</comment>
+ <comment xml:lang="pt_BR">Executável do Nintendo 3DS</comment>
+ <comment xml:lang="pt">Executável da Nintendo 3DS</comment>
+ <comment xml:lang="pl">Plik wykonywalny konsoli Nintendo 3DS</comment>
+ <comment xml:lang="oc">Executable Nintendo 3DS</comment>
+ <comment xml:lang="nl">Nintendo 3DS-programmabestand</comment>
+ <comment xml:lang="ko">닌텐도 3DS 실행 파일</comment>
+ <comment xml:lang="kk">Nintendo 3DS орындалатын файлы</comment>
+ <comment xml:lang="ja">Nintendo 3DS 実行ファイル</comment>
+ <comment xml:lang="it">Eseguibile Nintendo 3DS</comment>
+ <comment xml:lang="is">Nintendo 3DS keyrsluskrá</comment>
+ <comment xml:lang="id">Executable Nintendo 3DS</comment>
+ <comment xml:lang="hu">Nintendo 3DS végrehajtható fájl</comment>
+ <comment xml:lang="hr">Nintendo 3DS izvršna datoteka</comment>
+ <comment xml:lang="he">קובץ הפעלה של Nintendo 3DS</comment>
+ <comment xml:lang="gl">Executábel de Nintendo 3DS</comment>
+ <comment xml:lang="fr">Exécutable Nintendo 3DS</comment>
+ <comment xml:lang="fi">Nintendo 3DS -ohjelma</comment>
+ <comment xml:lang="eu">Nintendo 3DS exekutagarria</comment>
+ <comment xml:lang="es">ejecutable de Nintendo 3DS</comment>
+ <comment xml:lang="en_GB">Nintendo 3DS Executable</comment>
+ <comment xml:lang="de">Nintendo-3DS-Programmdatei</comment>
+ <comment xml:lang="da">Nintendo 3DS-kørbar</comment>
+ <comment xml:lang="ca">executable de Nintendo 3DS</comment>
+ <comment xml:lang="be">выконвальны файл Nintendo 3DS</comment>
+ <comment xml:lang="ar">تنفيذي نينتندو 3دي إس</comment>
+ <generic-icon name="application-x-executable"/>
+ <glob pattern="*.3dsx"/>
+ <magic priority="40">
+ <match offset="0" type="string" value="3DSX"/>
+ </magic>
+ </mime-type>
<mime-type type="application/x-pc-engine-rom">
<comment>PC Engine ROM</comment>
- <comment xml:lang="ast">ROM de PC Engine</comment>
- <comment xml:lang="ca">ROM de PC Engine</comment>
- <comment xml:lang="cs">ROM pro PC Engine</comment>
- <comment xml:lang="da">PC Engine ROM</comment>
- <comment xml:lang="de">PC Engine ROM</comment>
- <comment xml:lang="el">PC Engine ROM</comment>
- <comment xml:lang="en_GB">PC Engine ROM</comment>
- <comment xml:lang="es">ROM de PC Engine</comment>
- <comment xml:lang="eu">PC Engine ROM</comment>
- <comment xml:lang="fi">PC Engine ROM</comment>
- <comment xml:lang="fr">ROM PC Engine</comment>
- <comment xml:lang="ga">ROM PC Engine</comment>
- <comment xml:lang="gl">ROM de máquina de PC</comment>
- <comment xml:lang="he">ROM של PC Engine</comment>
- <comment xml:lang="hr">PC Engine ROM</comment>
- <comment xml:lang="hu">PC Engine ROM</comment>
- <comment xml:lang="ia">ROM PC Engine</comment>
- <comment xml:lang="id">ROM PC Engine</comment>
- <comment xml:lang="it">ROM PC Engine</comment>
- <comment xml:lang="kk">PC Engine ROM</comment>
- <comment xml:lang="ko">PC 엔진 롬</comment>
- <comment xml:lang="oc">ROM PC Engine</comment>
- <comment xml:lang="pl">Plik ROM konsoli PC Engine</comment>
- <comment xml:lang="pt">ROM PC Engine</comment>
- <comment xml:lang="pt_BR">ROM de PC Engine</comment>
- <comment xml:lang="ru">PC Engine ROM</comment>
- <comment xml:lang="sk">PC Engine ROM</comment>
- <comment xml:lang="sl">Pomnilnik PC Engine ROM</comment>
- <comment xml:lang="sr">ПЦ Енџин РОМ</comment>
- <comment xml:lang="sv">PC Engine-rom</comment>
- <comment xml:lang="tr">PC Engine ROM</comment>
- <comment xml:lang="uk">ROM для рушія на ПК</comment>
- <comment xml:lang="zh_CN">PC Engine ROM</comment>
<comment xml:lang="zh_TW">PC Engine ROM</comment>
+ <comment xml:lang="zh_CN">PC Engine ROM</comment>
+ <comment xml:lang="uk">ROM для рушія на ПК</comment>
+ <comment xml:lang="tr">PC Engine ROM</comment>
+ <comment xml:lang="sv">PC Engine-rom</comment>
+ <comment xml:lang="sr">ПЦ Енџин РОМ</comment>
+ <comment xml:lang="sl">Pomnilnik PC Engine ROM</comment>
+ <comment xml:lang="si">PC Engine ROM</comment>
+ <comment xml:lang="sk">PC Engine ROM</comment>
+ <comment xml:lang="ru">PC Engine ROM</comment>
+ <comment xml:lang="pt_BR">ROM de PC Engine</comment>
+ <comment xml:lang="pt">ROM PC Engine</comment>
+ <comment xml:lang="pl">Plik ROM konsoli PC Engine</comment>
+ <comment xml:lang="oc">ROM PC Engine</comment>
+ <comment xml:lang="nl">PC Engine-ROM</comment>
+ <comment xml:lang="ko">PC 엔진 롬</comment>
+ <comment xml:lang="kk">PC Engine ROM</comment>
+ <comment xml:lang="ja">PCエンジン ROM</comment>
+ <comment xml:lang="it">ROM PC Engine</comment>
+ <comment xml:lang="is">PC Engine ROM</comment>
+ <comment xml:lang="id">ROM PC Engine</comment>
+ <comment xml:lang="ia">ROM PC Engine</comment>
+ <comment xml:lang="hu">PC Engine ROM</comment>
+ <comment xml:lang="hr">PC Engine ROM</comment>
+ <comment xml:lang="he">ROM של PC Engine</comment>
+ <comment xml:lang="gl">ROM de máquina de PC</comment>
+ <comment xml:lang="ga">ROM PC Engine</comment>
+ <comment xml:lang="fur">ROM PC Engine</comment>
+ <comment xml:lang="fr">ROM PC Engine</comment>
+ <comment xml:lang="fi">PC Engine -ROM</comment>
+ <comment xml:lang="eu">PC Engine ROM</comment>
+ <comment xml:lang="es">ROM de PC Engine</comment>
+ <comment xml:lang="en_GB">PC Engine ROM</comment>
+ <comment xml:lang="el">PC Engine ROM</comment>
+ <comment xml:lang="de">PC-Engine ROM</comment>
+ <comment xml:lang="da">PC Engine-ROM</comment>
+ <comment xml:lang="cs">ROM pro PC Engine</comment>
+ <comment xml:lang="ca">ROM de PC Engine</comment>
+ <comment xml:lang="bg">ROM — PC Engine</comment>
+ <comment xml:lang="be">PC Engine ROM</comment>
+ <comment xml:lang="ast">ROM de PC Engine</comment>
+ <comment xml:lang="ar">روم محرك PC</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.pce"/>
</mime-type>
<mime-type type="application/x-wii-rom">
<comment>Wii disc image</comment>
- <comment xml:lang="ast">Imaxe de discu de Wii</comment>
- <comment xml:lang="ca">imatge de disc de Wii</comment>
- <comment xml:lang="cs">obraz disku pro Wii</comment>
- <comment xml:lang="da">Wii-diskaftryk</comment>
- <comment xml:lang="de">Wii-Datenträgerabbild</comment>
- <comment xml:lang="el">Εικόνα δίσκου Wii</comment>
- <comment xml:lang="en_GB">Wii disc image</comment>
- <comment xml:lang="es">imagen de disco de Wii</comment>
- <comment xml:lang="eu">Wii disko irudia</comment>
- <comment xml:lang="fi">Wii-levykuva</comment>
- <comment xml:lang="fr">image disque Wii</comment>
- <comment xml:lang="ga">íomhá diosca Wii</comment>
- <comment xml:lang="gl">Imaxe de disco de Wii</comment>
- <comment xml:lang="he">דמות כונן Wii</comment>
- <comment xml:lang="hr">Wii slika diska</comment>
- <comment xml:lang="hu">Wii lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco Wii</comment>
- <comment xml:lang="id">Image disk Wii</comment>
- <comment xml:lang="it">Immagine disco Wii</comment>
- <comment xml:lang="kk">Wii диск бейнесі</comment>
- <comment xml:lang="ko">Wii 디스크 이미지</comment>
- <comment xml:lang="oc">imatge disc Wii</comment>
- <comment xml:lang="pl">Obraz płyty konsoli Wii</comment>
- <comment xml:lang="pt">imagem de disco Wii</comment>
- <comment xml:lang="pt_BR">Imagem de disco Wii</comment>
- <comment xml:lang="ru">Образ диска Wii</comment>
- <comment xml:lang="sk">Obraz disku Wii</comment>
- <comment xml:lang="sl">Odtis diska Wii</comment>
- <comment xml:lang="sr">одраз диска Вии-ја</comment>
- <comment xml:lang="sv">Wii-skivavbild</comment>
- <comment xml:lang="tr">Wii disk görüntüsü</comment>
- <comment xml:lang="uk">образ диска Wii</comment>
- <comment xml:lang="zh_CN">Wii 光盘映像</comment>
<comment xml:lang="zh_TW">Wii 光碟映像檔</comment>
+ <comment xml:lang="zh_CN">Wii 光盘映像</comment>
+ <comment xml:lang="uk">образ диска Wii</comment>
+ <comment xml:lang="tr">Wii disk görüntüsü</comment>
+ <comment xml:lang="sv">Wii-skivavbild</comment>
+ <comment xml:lang="sr">одраз диска Вии-ја</comment>
+ <comment xml:lang="sq">pamje disku Wii</comment>
+ <comment xml:lang="sl">Odtis diska Wii</comment>
+ <comment xml:lang="si">Wii තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku Wii</comment>
+ <comment xml:lang="ru">Образ диска Wii</comment>
+ <comment xml:lang="pt_BR">Imagem de disco Wii</comment>
+ <comment xml:lang="pt">imagem de disco Wii</comment>
+ <comment xml:lang="pl">Obraz płyty konsoli Wii</comment>
+ <comment xml:lang="oc">imatge disc Wii</comment>
+ <comment xml:lang="nl">Wii-schijfkopiebestand</comment>
+ <comment xml:lang="ko">Wii 디스크 이미지</comment>
+ <comment xml:lang="kk">Wii диск бейнесі</comment>
+ <comment xml:lang="ja">Wii ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco Wii</comment>
+ <comment xml:lang="is">Wii diskmynd</comment>
+ <comment xml:lang="id">Image disk Wii</comment>
+ <comment xml:lang="ia">Imagine de disco Wii</comment>
+ <comment xml:lang="hu">Wii lemezkép</comment>
+ <comment xml:lang="hr">Wii slika diska</comment>
+ <comment xml:lang="he">דמות כונן Wii</comment>
+ <comment xml:lang="gl">Imaxe de disco de Wii</comment>
+ <comment xml:lang="ga">íomhá diosca Wii</comment>
+ <comment xml:lang="fur">imagjin disc Wii</comment>
+ <comment xml:lang="fr">image disque Wii</comment>
+ <comment xml:lang="fi">Wii-levykuva</comment>
+ <comment xml:lang="eu">Wii disko irudia</comment>
+ <comment xml:lang="es">imagen de disco de Wii</comment>
+ <comment xml:lang="en_GB">Wii disc image</comment>
+ <comment xml:lang="el">Εικόνα δίσκου Wii</comment>
+ <comment xml:lang="de">Wii-Datenträgerabbild</comment>
+ <comment xml:lang="da">Wii-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku pro Wii</comment>
+ <comment xml:lang="ca">imatge de disc de Wii</comment>
+ <comment xml:lang="bg">Диск — Wii</comment>
+ <comment xml:lang="be">вобраз дыска Wii</comment>
+ <comment xml:lang="ast">Imaxe de discu de Wii</comment>
+ <comment xml:lang="ar">صورة قرص وي</comment>
+ <comment xml:lang="af">Wii-skyfbeeldlêer</comment>
<alias type="application/x-wii-iso-image"/>
<alias type="application/x-wbfs"/>
<alias type="application/x-wia"/>
<generic-icon name="application-x-executable"/>
<glob pattern="*.iso"/>
- <magic priority="50">
- <match value="0x5d1c9ea3" type="big32" offset="24"/>
- <match value="WBFS" type="string" offset="0"/>
- <match value="WII\001DISC" type="string" offset="0"/>
+ <magic>
+ <match offset="24" type="big32" value="0x5d1c9ea3"/>
+ <match offset="0" type="string" value="WBFS"/>
+ <match offset="0" type="string" value="WII\001DISC"/>
</magic>
</mime-type>
<mime-type type="application/x-wii-wad">
<comment>WiiWare bundle</comment>
- <comment xml:lang="ca">paquet de WiiWare</comment>
- <comment xml:lang="cs">balíček pro WiiWare</comment>
- <comment xml:lang="da">WiiWare-samling</comment>
- <comment xml:lang="de">WiiWare-Paket</comment>
- <comment xml:lang="en_GB">WiiWare bundle</comment>
- <comment xml:lang="es">conjunto de WiiWare</comment>
- <comment xml:lang="eu">WiiWare bilduma</comment>
- <comment xml:lang="fr">lot WiiWare</comment>
- <comment xml:lang="ga">burla WiiWare</comment>
- <comment xml:lang="he">מאגד WiiWare</comment>
- <comment xml:lang="hr">WiiWare paket</comment>
- <comment xml:lang="hu">WiiWare csomag</comment>
- <comment xml:lang="ia">Pacchetto WiiWare</comment>
- <comment xml:lang="id">Bundel WiiWare</comment>
- <comment xml:lang="it">Bundle WiiWare</comment>
- <comment xml:lang="kk">WiiWare дестесі</comment>
- <comment xml:lang="ko">위-웨어 번들</comment>
- <comment xml:lang="oc">lòt WiiWare</comment>
- <comment xml:lang="pl">Pakiet WiiWare</comment>
- <comment xml:lang="pt">pacote WiiWare</comment>
- <comment xml:lang="pt_BR">Pacote WiiWare</comment>
- <comment xml:lang="ru">Пакет WiiWare</comment>
- <comment xml:lang="sk">Balík WiiWare</comment>
- <comment xml:lang="sr">ВииВер комплет</comment>
- <comment xml:lang="sv">WiiWare-paket</comment>
- <comment xml:lang="tr">WiiWare paketi</comment>
- <comment xml:lang="uk">пакет WiiWare</comment>
- <comment xml:lang="zh_CN">WiiWare 捆绑包</comment>
<comment xml:lang="zh_TW">WiiWare 綁包</comment>
+ <comment xml:lang="zh_CN">WiiWare 捆绑包</comment>
+ <comment xml:lang="uk">пакет WiiWare</comment>
+ <comment xml:lang="tr">WiiWare paketi</comment>
+ <comment xml:lang="sv">WiiWare-paket</comment>
+ <comment xml:lang="sr">ВииВер комплет</comment>
+ <comment xml:lang="sq">paketë WiiWare</comment>
+ <comment xml:lang="si">WiiWare බණ්ඩලය</comment>
+ <comment xml:lang="sk">Balík WiiWare</comment>
+ <comment xml:lang="ru">Пакет WiiWare</comment>
+ <comment xml:lang="pt_BR">Pacote WiiWare</comment>
+ <comment xml:lang="pt">pacote WiiWare</comment>
+ <comment xml:lang="pl">Pakiet WiiWare</comment>
+ <comment xml:lang="oc">lòt WiiWare</comment>
+ <comment xml:lang="nl">WiiWare-bundel</comment>
+ <comment xml:lang="ko">WiiWare 번들</comment>
+ <comment xml:lang="kk">WiiWare дестесі</comment>
+ <comment xml:lang="ja">WiiWare バンドル</comment>
+ <comment xml:lang="it">Bundle WiiWare</comment>
+ <comment xml:lang="is">WiiWare vöndull</comment>
+ <comment xml:lang="id">Bundel WiiWare</comment>
+ <comment xml:lang="ia">Pacchetto WiiWare</comment>
+ <comment xml:lang="hu">WiiWare csomag</comment>
+ <comment xml:lang="hr">WiiWare paket</comment>
+ <comment xml:lang="he">מאגד WiiWare</comment>
+ <comment xml:lang="gl">Empaquetado WiiWare</comment>
+ <comment xml:lang="ga">burla WiiWare</comment>
+ <comment xml:lang="fur">côl WiiWare</comment>
+ <comment xml:lang="fr">lot WiiWare</comment>
+ <comment xml:lang="fi">WiiWare-lisäpaketti</comment>
+ <comment xml:lang="eu">WiiWare bilduma</comment>
+ <comment xml:lang="es">conjunto de WiiWare</comment>
+ <comment xml:lang="en_GB">WiiWare bundle</comment>
+ <comment xml:lang="de">WiiWare-Paket</comment>
+ <comment xml:lang="da">WiiWare-samling</comment>
+ <comment xml:lang="cs">balíček pro WiiWare</comment>
+ <comment xml:lang="ca">paquet de WiiWare</comment>
+ <comment xml:lang="bg">Програмен пакет — WiiWare</comment>
+ <comment xml:lang="be">пакет WiiWare</comment>
+ <comment xml:lang="ar">حزمة وي واير</comment>
+ <comment xml:lang="af">WiiWare-bundel</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="Is\0\0" type="string" offset="4"/>
- <match value="ib\0\0" type="string" offset="4"/>
- <match value="Bk\0\0" type="string" offset="4"/>
+ <magic>
+ <match type="string" value="Is\0\0" offset="4"/>
+ <match type="string" value="ib\0\0" offset="4"/>
+ <match type="string" value="Bk\0\0" offset="4"/>
</magic>
<glob pattern="*.wad"/>
</mime-type>
<mime-type type="application/x-gamecube-rom">
<comment>GameCube disc image</comment>
- <comment xml:lang="ca">imatge de disc de GameCube</comment>
- <comment xml:lang="cs">obraz disku pro GameCube</comment>
- <comment xml:lang="da">GameCube-diskaftryk</comment>
- <comment xml:lang="de">GameCube-Datenträgerabbild</comment>
- <comment xml:lang="el">Εικόνα δίσκου GameCube</comment>
- <comment xml:lang="en_GB">GameCube disc image</comment>
- <comment xml:lang="es">imagen de disco de GameCube</comment>
- <comment xml:lang="eu">GameCube disko irudia</comment>
- <comment xml:lang="fi">GameCube-levykuva</comment>
- <comment xml:lang="fr">image disque GameCube</comment>
- <comment xml:lang="ga">íomhá diosca GameCube</comment>
- <comment xml:lang="gl">Imae de disco de GameCube</comment>
- <comment xml:lang="he">דמות כונן GameCube</comment>
- <comment xml:lang="hr">GameCube slika diska</comment>
- <comment xml:lang="hu">GameCube lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco GameCube</comment>
- <comment xml:lang="id">Image disk GameCube</comment>
- <comment xml:lang="it">Immagine disco GameCube</comment>
- <comment xml:lang="kk">GameCube диск бейнесі</comment>
- <comment xml:lang="ko">게임큐브 디스크 이미지</comment>
- <comment xml:lang="oc">imatge disc GameCube</comment>
- <comment xml:lang="pl">Obraz płyty konsoli GameCube</comment>
- <comment xml:lang="pt">imagem de disco GameCube</comment>
- <comment xml:lang="pt_BR">Imagem de disco GameCube</comment>
- <comment xml:lang="ru">Образ диска GameCube</comment>
- <comment xml:lang="sk">Obraz disku GameCube</comment>
- <comment xml:lang="sl">Odtis diska GameCube</comment>
- <comment xml:lang="sr">одраз диска Гејм Коцке</comment>
- <comment xml:lang="sv">GameCube-skivavbild</comment>
- <comment xml:lang="tr">GameCube disk görüntüsü</comment>
- <comment xml:lang="uk">образ диска GameCube</comment>
- <comment xml:lang="zh_CN">GameCube 光盘映像</comment>
<comment xml:lang="zh_TW">GameCube 光碟映像檔</comment>
+ <comment xml:lang="zh_CN">GameCube 光盘映像</comment>
+ <comment xml:lang="uk">образ диска GameCube</comment>
+ <comment xml:lang="tr">GameCube disk görüntüsü</comment>
+ <comment xml:lang="sv">GameCube-skivavbild</comment>
+ <comment xml:lang="sr">одраз диска Гејм Коцке</comment>
+ <comment xml:lang="sq">pamje disku GameCube</comment>
+ <comment xml:lang="sl">Odtis diska GameCube</comment>
+ <comment xml:lang="si">GameCube තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku GameCube</comment>
+ <comment xml:lang="ru">Образ диска GameCube</comment>
+ <comment xml:lang="pt_BR">Imagem de disco GameCube</comment>
+ <comment xml:lang="pt">imagem de disco GameCube</comment>
+ <comment xml:lang="pl">Obraz płyty konsoli GameCube</comment>
+ <comment xml:lang="oc">imatge disc GameCube</comment>
+ <comment xml:lang="nl">GameCube-schijfkopiebestand</comment>
+ <comment xml:lang="ko">게임큐브 디스크 이미지</comment>
+ <comment xml:lang="kk">GameCube диск бейнесі</comment>
+ <comment xml:lang="ja">GameCube ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco GameCube</comment>
+ <comment xml:lang="is">GameCube diskmynd</comment>
+ <comment xml:lang="id">Image disk GameCube</comment>
+ <comment xml:lang="ia">Imagine de disco GameCube</comment>
+ <comment xml:lang="hu">GameCube lemezkép</comment>
+ <comment xml:lang="hr">GameCube slika diska</comment>
+ <comment xml:lang="he">דמות כונן GameCube</comment>
+ <comment xml:lang="gl">Imae de disco de GameCube</comment>
+ <comment xml:lang="ga">íomhá diosca GameCube</comment>
+ <comment xml:lang="fur">imagjin disc GameCube</comment>
+ <comment xml:lang="fr">image disque GameCube</comment>
+ <comment xml:lang="fi">GameCube-levykuva</comment>
+ <comment xml:lang="eu">GameCube disko irudia</comment>
+ <comment xml:lang="es">imagen de disco de GameCube</comment>
+ <comment xml:lang="en_GB">GameCube disc image</comment>
+ <comment xml:lang="el">Εικόνα δίσκου GameCube</comment>
+ <comment xml:lang="de">GameCube-Datenträgerabbild</comment>
+ <comment xml:lang="da">GameCube-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku pro GameCube</comment>
+ <comment xml:lang="ca">imatge de disc de GameCube</comment>
+ <comment xml:lang="bg">Диск — GameCube</comment>
+ <comment xml:lang="be">вобраз дыска GameCube</comment>
+ <comment xml:lang="ar">صورة قرص GameCube</comment>
+ <comment xml:lang="af">GameCube-skyfbeeldlêer</comment>
<generic-icon name="application-x-executable"/>
<alias type="application/x-gamecube-iso-image"/>
<glob pattern="*.iso"/>
- <magic priority="50">
- <match value="0xc2339f3d" type="big32" offset="28"/>
+ <magic>
+ <match offset="28" type="big32" value="0xc2339f3d"/>
</magic>
</mime-type>
<mime-type type="application/x-thomson-cartridge-memo7">
<comment>Thomson Mémo7 cartridge</comment>
- <comment xml:lang="ca">cartutx Thomson Mémo7</comment>
- <comment xml:lang="cs">Kazeta Thomson Mémo7</comment>
- <comment xml:lang="de">Thomson-Mémo7-Steckmodul</comment>
- <comment xml:lang="en_GB">Thomson Mémo7 cartridge</comment>
- <comment xml:lang="es">cartucho Mémo7 de Thomson</comment>
- <comment xml:lang="fr">cartouche Thomson Mémo7</comment>
- <comment xml:lang="ga">cartús Thomson Mémo7</comment>
- <comment xml:lang="hr">Thomson Mémo7 uložak</comment>
- <comment xml:lang="hu">Thomson Mémo7 kazetta</comment>
- <comment xml:lang="id">cartridge Thomson Mémo7</comment>
- <comment xml:lang="it">Cartuccia Thomson Mémo7</comment>
- <comment xml:lang="kk">Thomson Mémo7 картриджі</comment>
- <comment xml:lang="ko">톰슨 메모7 카트릿지</comment>
- <comment xml:lang="pl">Kartridż Thomson Mémo7</comment>
- <comment xml:lang="pt_BR">Cartucho Thomson Mémo7</comment>
- <comment xml:lang="ru">Картридж Thomson Mémo7</comment>
- <comment xml:lang="sk">Kazeta Thomson Mémo7</comment>
- <comment xml:lang="sr">Томсон Мемо7 кертриџ</comment>
- <comment xml:lang="sv">Thomson Mémo7-spelkassett</comment>
- <comment xml:lang="tr">Thomson Mémo7 kartuşu</comment>
- <comment xml:lang="uk">картридж Thomson Mémo7</comment>
- <comment xml:lang="zh_CN">Thomson Mémo7 卡带</comment>
<comment xml:lang="zh_TW">Thomson Mémo7 卡匣</comment>
+ <comment xml:lang="zh_CN">Thomson Mémo7 卡带</comment>
+ <comment xml:lang="uk">картридж Thomson Mémo7</comment>
+ <comment xml:lang="tr">Thomson Mémo7 kartuşu</comment>
+ <comment xml:lang="sv">Thomson Mémo7-spelkassett</comment>
+ <comment xml:lang="sr">Томсон Мемо7 кертриџ</comment>
+ <comment xml:lang="sq">bobinë Thomson Mémo7</comment>
+ <comment xml:lang="si">Thomson Mémo7 කාට්රිජ්</comment>
+ <comment xml:lang="sk">Kazeta Thomson Mémo7</comment>
+ <comment xml:lang="ru">Картридж Thomson Mémo7</comment>
+ <comment xml:lang="pt_BR">Cartucho Thomson Mémo7</comment>
+ <comment xml:lang="pt">cartucho Thomson Mémo7</comment>
+ <comment xml:lang="pl">Kartridż Thomson Mémo7</comment>
+ <comment xml:lang="nl">Thomson Mémo7-casette</comment>
+ <comment xml:lang="ko">톰슨 Mémo7 카트리지</comment>
+ <comment xml:lang="kk">Thomson Mémo7 картриджі</comment>
+ <comment xml:lang="ja">Thomson Mémo7 カートリッジ</comment>
+ <comment xml:lang="it">Cartuccia Thomson Mémo7</comment>
+ <comment xml:lang="is">Thomson Mémo7 hylki</comment>
+ <comment xml:lang="id">Cartridge Thomson Mémo7</comment>
+ <comment xml:lang="hu">Thomson Mémo7 kazetta</comment>
+ <comment xml:lang="hr">Thomson Mémo7 uložak</comment>
+ <comment xml:lang="he">קלטת Thomson Mémo7</comment>
+ <comment xml:lang="gl">Cartucho de Thomson Mémo7</comment>
+ <comment xml:lang="ga">cartús Thomson Mémo7</comment>
+ <comment xml:lang="fur">cartucje Mémo7 Thomson</comment>
+ <comment xml:lang="fr">cartouche Thomson Mémo7</comment>
+ <comment xml:lang="fi">Thomson Mémo7 -patruuna</comment>
+ <comment xml:lang="eu">Thomson Mémo7 kartutxoa</comment>
+ <comment xml:lang="es">cartucho Mémo7 de Thomson</comment>
+ <comment xml:lang="en_GB">Thomson Mémo7 cartridge</comment>
+ <comment xml:lang="de">Thomson-Mémo7-Steckmodul</comment>
+ <comment xml:lang="da">Thomson Mémo7-kassette</comment>
+ <comment xml:lang="cs">Kazeta Thomson Mémo7</comment>
+ <comment xml:lang="ca">cartutx Thomson Mémo7</comment>
+ <comment xml:lang="bg">Касета — Thomson Mémo7</comment>
+ <comment xml:lang="be">картрыдж Thomson Mémo7</comment>
+ <comment xml:lang="ar">خرطوشة Thomson Mémo7</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.m7"/>
</mime-type>
<mime-type type="application/x-thomson-cassette">
<comment>Thomson cassette</comment>
- <comment xml:lang="ca">cinta de casset Thomson</comment>
- <comment xml:lang="cs">Kazeta Thomson</comment>
- <comment xml:lang="de">Thomson-Kassette</comment>
- <comment xml:lang="en_GB">Thomson cassette</comment>
- <comment xml:lang="es">casete de Thomson</comment>
- <comment xml:lang="fr">cassette Thomson</comment>
- <comment xml:lang="ga">caiséad Thomson</comment>
- <comment xml:lang="hr">Thomson kaseta</comment>
- <comment xml:lang="hu">Thomson kazetta</comment>
- <comment xml:lang="id">kaset Thomson</comment>
- <comment xml:lang="it">Cassetta Thomson</comment>
- <comment xml:lang="kk">Thomson кассетасы</comment>
- <comment xml:lang="ko">톰슨 카셋트</comment>
- <comment xml:lang="pl">Kaseta Thomson</comment>
- <comment xml:lang="pt_BR">Cassete Thomson</comment>
- <comment xml:lang="ru">Кассета Thomson</comment>
- <comment xml:lang="sk">Kazeta Thomson</comment>
- <comment xml:lang="sr">Томсон касете</comment>
- <comment xml:lang="sv">Thomson-kassett</comment>
- <comment xml:lang="tr">Thomson kaset</comment>
- <comment xml:lang="uk">касета Thomson</comment>
- <comment xml:lang="zh_CN">Thomson 磁带</comment>
<comment xml:lang="zh_TW">Thomson 卡匣</comment>
+ <comment xml:lang="zh_CN">Thomson 磁带</comment>
+ <comment xml:lang="uk">касета Thomson</comment>
+ <comment xml:lang="tr">Thomson kaset</comment>
+ <comment xml:lang="sv">Thomson-kassett</comment>
+ <comment xml:lang="sr">Томсон касете</comment>
+ <comment xml:lang="sq">kasetë Thomson</comment>
+ <comment xml:lang="sl">Kaseta Thomson</comment>
+ <comment xml:lang="si">තොම්සන් කැසට් පටය</comment>
+ <comment xml:lang="sk">Kazeta Thomson</comment>
+ <comment xml:lang="ru">Кассета Thomson</comment>
+ <comment xml:lang="pt_BR">Cassete Thomson</comment>
+ <comment xml:lang="pt">cassete Thomson</comment>
+ <comment xml:lang="pl">Kaseta Thomson</comment>
+ <comment xml:lang="nl">Thomson-cassette</comment>
+ <comment xml:lang="ko">톰슨 카세트</comment>
+ <comment xml:lang="kk">Thomson кассетасы</comment>
+ <comment xml:lang="ja">Thomson カセット</comment>
+ <comment xml:lang="it">Cassetta Thomson</comment>
+ <comment xml:lang="is">Thomson snælda</comment>
+ <comment xml:lang="id">Kaset Thomson</comment>
+ <comment xml:lang="hu">Thomson kazetta</comment>
+ <comment xml:lang="hr">Thomson kaseta</comment>
+ <comment xml:lang="he">קלטת Thomson</comment>
+ <comment xml:lang="ga">caiséad Thomson</comment>
+ <comment xml:lang="fur">cassete Thomson</comment>
+ <comment xml:lang="fr">cassette Thomson</comment>
+ <comment xml:lang="fi">Thomson-kasetti</comment>
+ <comment xml:lang="eu">Thomson kasetea</comment>
+ <comment xml:lang="es">casete de Thomson</comment>
+ <comment xml:lang="en_GB">Thomson cassette</comment>
+ <comment xml:lang="de">Thomson-Kassette</comment>
+ <comment xml:lang="da">Thomson-kassette</comment>
+ <comment xml:lang="cs">Kazeta Thomson</comment>
+ <comment xml:lang="ca">cinta de casset Thomson</comment>
+ <comment xml:lang="bg">Касета — Thomson</comment>
+ <comment xml:lang="be">касета Thomson</comment>
+ <comment xml:lang="ar">شريط Thomson</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.k7"/>
</mime-type>
<mime-type type="application/x-hfe-floppy-image">
<comment>HFE floppy disk image</comment>
- <comment xml:lang="ca">imatge de disquet HFE</comment>
- <comment xml:lang="cs">Obraz diskety HFE</comment>
- <comment xml:lang="de">HFE-Diskettenabbild</comment>
- <comment xml:lang="en_GB">HFE floppy disk image</comment>
- <comment xml:lang="es">imagen de disquete HFE</comment>
- <comment xml:lang="fr">image disquette HFE</comment>
- <comment xml:lang="ga">íomhá diosca fhlapaigh HFE</comment>
- <comment xml:lang="hr">HFE slika diskete</comment>
- <comment xml:lang="hu">HFE flopi lemezkép</comment>
- <comment xml:lang="id">image disk floppy HFE</comment>
- <comment xml:lang="it">Immagine disco floppy HFE</comment>
- <comment xml:lang="kk">HFE иілгіш диск бейнесі</comment>
- <comment xml:lang="ko">HFE 플로피 디스크 이미지</comment>
- <comment xml:lang="pl">Obraz dyskietki HFE</comment>
- <comment xml:lang="pt_BR">Imagem de disco flexível HFE</comment>
- <comment xml:lang="ru">Образ гибкого диска HFE</comment>
- <comment xml:lang="sk">Obraz pružného disku HFE</comment>
- <comment xml:lang="sr">ХФЕ слика флопи диска</comment>
- <comment xml:lang="sv">HFE-diskavbild</comment>
- <comment xml:lang="tr">HFE disket kalıbı</comment>
- <comment xml:lang="uk">образ дискети HFE</comment>
- <comment xml:lang="zh_CN">HFE 软盘映像</comment>
<comment xml:lang="zh_TW">HFE 軟碟映像檔</comment>
+ <comment xml:lang="zh_CN">HFE 软盘映像</comment>
+ <comment xml:lang="uk">образ дискети HFE</comment>
+ <comment xml:lang="tr">HFE disket görüntüsü</comment>
+ <comment xml:lang="sv">HFE-diskavbild</comment>
+ <comment xml:lang="sr">ХФЕ слика флопи диска</comment>
+ <comment xml:lang="sq">pamje diskete HFE</comment>
+ <comment xml:lang="sl">Slika diskete HFE</comment>
+ <comment xml:lang="si">HFE නම්ය තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz pružného disku HFE</comment>
+ <comment xml:lang="ru">Образ гибкого диска HFE</comment>
+ <comment xml:lang="pt_BR">Imagem de disco flexível HFE</comment>
+ <comment xml:lang="pt">imagem de disquete HFE</comment>
+ <comment xml:lang="pl">Obraz dyskietki HFE</comment>
+ <comment xml:lang="nl">HFE-diskette-schijfkopiebestand</comment>
+ <comment xml:lang="ko">HFE 플로피 디스크 이미지</comment>
+ <comment xml:lang="kk">HFE иілгіш диск бейнесі</comment>
+ <comment xml:lang="ja">HFE フロッピーディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco floppy HFE</comment>
+ <comment xml:lang="is">HFE disklingsmynd</comment>
+ <comment xml:lang="id">Image disk floppy HFE</comment>
+ <comment xml:lang="hu">HFE flopi lemezkép</comment>
+ <comment xml:lang="hr">HFE slika diskete</comment>
+ <comment xml:lang="he">דמות כונן תקליטון מסוג HPE</comment>
+ <comment xml:lang="gl">Imaxe de disquete HHFE</comment>
+ <comment xml:lang="ga">íomhá diosca fhlapaigh HFE</comment>
+ <comment xml:lang="fur">imagjin disc floppy HFE</comment>
+ <comment xml:lang="fr">image disquette HFE</comment>
+ <comment xml:lang="fi">HFE-levykekuva</comment>
+ <comment xml:lang="eu">HFE diskete disko irudia</comment>
+ <comment xml:lang="es">imagen de disquete HFE</comment>
+ <comment xml:lang="en_GB">HFE floppy disk image</comment>
+ <comment xml:lang="de">HFE-Diskettenabbild</comment>
+ <comment xml:lang="da">HFE-floppydiskaftryk</comment>
+ <comment xml:lang="cs">Obraz diskety HFE</comment>
+ <comment xml:lang="ca">imatge de disquet HFE</comment>
+ <comment xml:lang="bg">Диск — флопи, HFE</comment>
+ <comment xml:lang="be">вобраз гнуткага дыска HFE</comment>
+ <comment xml:lang="ar">صورة قرص مرن HFE</comment>
<acronym>HFE</acronym>
<expanded-acronym>HxC Floppy Emulator</expanded-acronym>
<generic-icon name="application-x-executable"/>
<glob pattern="*.hfe"/>
<magic>
- <match value="HXCPICFE" type="string" offset="0"/>
+ <match offset="0" type="string" value="HXCPICFE"/>
</magic>
<alias type="application/x-hfe-file"/>
</mime-type>
<mime-type type="application/x-thomson-sap-image">
<comment>SAP Thomson floppy disk image</comment>
- <comment xml:lang="ca">imatge de disquet SAP Thomson</comment>
- <comment xml:lang="cs">Obraz diskety SAP Thomson</comment>
- <comment xml:lang="de">SAP-Thomson-Diskettenabbild</comment>
- <comment xml:lang="en_GB">SAP Thomson floppy disk image</comment>
- <comment xml:lang="es">imagen de disquete SAP de Thomson</comment>
- <comment xml:lang="fr">image disquette SAP Thomson</comment>
- <comment xml:lang="ga">íomhá diosca fhlapaigh SAP Thomson</comment>
- <comment xml:lang="hr">SAP Thomson slika diskete</comment>
- <comment xml:lang="hu">SAP Thomson flopi lemezkép</comment>
- <comment xml:lang="id">image disk floppy SAP Thomson</comment>
- <comment xml:lang="it">Immagine disco floppy Thomson SAP</comment>
- <comment xml:lang="kk">SAP Thomson иілгіш диск бейнесі</comment>
- <comment xml:lang="ko">SAP 톰슨 플로피 디스크 이미지</comment>
- <comment xml:lang="pl">Obraz dyskietki SAP Thomson</comment>
- <comment xml:lang="pt_BR">Imagem de disco flexível SAP Thomson</comment>
- <comment xml:lang="ru">Образ гибкого диска SAP Thomson</comment>
- <comment xml:lang="sk">Obraz pružného disku SAP Thomson</comment>
- <comment xml:lang="sr">САП Томсон слика флопи диска</comment>
- <comment xml:lang="sv">SAP Thomson-diskavbild</comment>
- <comment xml:lang="tr">SAP Thomson disket kalıbı</comment>
- <comment xml:lang="uk">образ дискети Thomson SAP</comment>
- <comment xml:lang="zh_CN">SAP Thomson 软盘映像</comment>
<comment xml:lang="zh_TW">SAP Thomson 軟碟映像檔</comment>
+ <comment xml:lang="zh_CN">SAP Thomson 软盘映像</comment>
+ <comment xml:lang="uk">образ дискети Thomson SAP</comment>
+ <comment xml:lang="tr">SAP Thomson disket görüntüsü</comment>
+ <comment xml:lang="sv">SAP Thomson-diskavbild</comment>
+ <comment xml:lang="sr">САП Томсон слика флопи диска</comment>
+ <comment xml:lang="sq">pamje diskete SAP Thomson</comment>
+ <comment xml:lang="sl">Slika diskete SAP Thomson</comment>
+ <comment xml:lang="si">SAP තොම්සන් නම්ය තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz pružného disku SAP Thomson</comment>
+ <comment xml:lang="ru">Образ гибкого диска SAP Thomson</comment>
+ <comment xml:lang="pt_BR">Imagem de disco flexível SAP Thomson</comment>
+ <comment xml:lang="pt">imagem de disquete SAP Thomson</comment>
+ <comment xml:lang="pl">Obraz dyskietki SAP Thomson</comment>
+ <comment xml:lang="nl">SAP Thomson diskette-schijfkopiebestand</comment>
+ <comment xml:lang="ko">SAP 톰슨 플로피 디스크 이미지</comment>
+ <comment xml:lang="kk">SAP Thomson иілгіш диск бейнесі</comment>
+ <comment xml:lang="ja">SAP Thomson フロッピーディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco floppy Thomson SAP</comment>
+ <comment xml:lang="is">SAP Thomson disklingsmynd</comment>
+ <comment xml:lang="id">Image disk floppy SAP Thomson</comment>
+ <comment xml:lang="hu">SAP Thomson flopi lemezkép</comment>
+ <comment xml:lang="hr">SAP Thomson slika diskete</comment>
+ <comment xml:lang="he">דמות כונן תקליטון מסוג SAP Thomson</comment>
+ <comment xml:lang="gl">Imaxe de disquete SAP Thomson</comment>
+ <comment xml:lang="ga">íomhá diosca fhlapaigh SAP Thomson</comment>
+ <comment xml:lang="fur">imagjin disc floppy SAP Thomson</comment>
+ <comment xml:lang="fr">image disquette SAP Thomson</comment>
+ <comment xml:lang="fi">SAP Thomson -levykekuva</comment>
+ <comment xml:lang="eu">SAP Thomson diskete disko irudia</comment>
+ <comment xml:lang="es">imagen de disquete SAP de Thomson</comment>
+ <comment xml:lang="en_GB">SAP Thomson floppy disk image</comment>
+ <comment xml:lang="de">SAP-Thomson-Diskettenabbild</comment>
+ <comment xml:lang="da">SAP Thomson-floppydiskaftryk</comment>
+ <comment xml:lang="cs">Obraz diskety SAP Thomson</comment>
+ <comment xml:lang="ca">imatge de disquet SAP Thomson</comment>
+ <comment xml:lang="bg">Диск — флопи, SAP Thomson</comment>
+ <comment xml:lang="be">вобраз гнуткага дыска SAP Thomson</comment>
+ <comment xml:lang="ar">صورة قرص مرن SAP Thomson</comment>
<acronym>SAP</acronym>
<expanded-acronym>Système d'Archivage Pukall</expanded-acronym>
<generic-icon name="application-x-executable"/>
<glob pattern="*.sap"/>
<magic>
- <match value="SYSTEME D'ARCHIVAGE PUKALL S.A.P. (c) Alexandre PUKALL Avril 1998" type="string" offset="1"/>
+ <match offset="1" type="string" value="SYSTEME D'ARCHIVAGE PUKALL S.A.P. (c) Alexandre PUKALL Avril 1998"/>
</magic>
<alias type="application/x-sap-file"/>
</mime-type>
<mime-type type="application/vnd.debian.binary-package">
<comment>Debian package</comment>
- <comment xml:lang="ar">حزمة ديبيان</comment>
- <comment xml:lang="az">Debian paketi</comment>
- <comment xml:lang="be@latin">Pakunak Debian</comment>
- <comment xml:lang="bg">Пакет — Debian</comment>
- <comment xml:lang="ca">paquet Debian</comment>
- <comment xml:lang="cs">balíček Debianu</comment>
- <comment xml:lang="cy">Pecyn Debian</comment>
- <comment xml:lang="da">Debianpakke</comment>
- <comment xml:lang="de">Debian-Paket</comment>
- <comment xml:lang="el">Πακέτο Debian</comment>
- <comment xml:lang="en_GB">Debian package</comment>
- <comment xml:lang="eo">Debian-pakaĵo</comment>
- <comment xml:lang="es">paquete de Debian</comment>
- <comment xml:lang="eu">Debian paketea</comment>
- <comment xml:lang="fi">Debian-paketti</comment>
- <comment xml:lang="fo">Debian pakki</comment>
- <comment xml:lang="fr">paquet Debian</comment>
- <comment xml:lang="ga">pacáiste Debian</comment>
- <comment xml:lang="gl">paquete de Debian</comment>
- <comment xml:lang="he">חבילת דביאן</comment>
- <comment xml:lang="hr">Debian paket</comment>
- <comment xml:lang="hu">Debian-csomag</comment>
- <comment xml:lang="ia">Pacchetto Debian</comment>
- <comment xml:lang="id">Paket Debian</comment>
- <comment xml:lang="it">Pacchetto Debian</comment>
- <comment xml:lang="ja">Debian パッケージ</comment>
- <comment xml:lang="ka">Debian-ის პაკეტი</comment>
- <comment xml:lang="kk">Debian дестесі</comment>
- <comment xml:lang="ko">데비안 패키지</comment>
- <comment xml:lang="lt">Debian paketas</comment>
- <comment xml:lang="lv">Debian pakotne</comment>
- <comment xml:lang="ms">Pakej Debian</comment>
- <comment xml:lang="nb">Debian pakke</comment>
- <comment xml:lang="nl">Debian-pakket</comment>
- <comment xml:lang="nn">Debian pakke</comment>
- <comment xml:lang="oc">paquet Debian</comment>
- <comment xml:lang="pl">Pakiet Debiana</comment>
- <comment xml:lang="pt">pacote Debian</comment>
- <comment xml:lang="pt_BR">Pacote Debian</comment>
- <comment xml:lang="ro">Pachet Debian</comment>
- <comment xml:lang="ru">Пакет Debian</comment>
- <comment xml:lang="sk">Balíček Debianu</comment>
- <comment xml:lang="sl">Datoteka paketa Debian</comment>
- <comment xml:lang="sq">Paketë Debian</comment>
- <comment xml:lang="sr">Дебијанов пакет</comment>
- <comment xml:lang="sv">Debianpaket</comment>
- <comment xml:lang="tr">Debian paketi</comment>
- <comment xml:lang="uk">пакунок Debian</comment>
- <comment xml:lang="vi">Gói Debian</comment>
- <comment xml:lang="zh_CN">Debian 软件包</comment>
<comment xml:lang="zh_TW">Debian 軟體包</comment>
+ <comment xml:lang="zh_CN">Debian 软件包</comment>
+ <comment xml:lang="vi">Gói Debian</comment>
+ <comment xml:lang="uk">пакунок Debian</comment>
+ <comment xml:lang="tr">Debian paketi</comment>
+ <comment xml:lang="sv">Debianpaket</comment>
+ <comment xml:lang="sr">Дебијанов пакет</comment>
+ <comment xml:lang="sq">Paketë Debian</comment>
+ <comment xml:lang="sl">Datoteka paketa Debian</comment>
+ <comment xml:lang="si">ඩේබියන් පැකේජය</comment>
+ <comment xml:lang="sk">Balíček Debianu</comment>
+ <comment xml:lang="ru">Пакет Debian</comment>
+ <comment xml:lang="ro">Pachet Debian</comment>
+ <comment xml:lang="pt_BR">Pacote Debian</comment>
+ <comment xml:lang="pt">pacote Debian</comment>
+ <comment xml:lang="pl">Pakiet Debiana</comment>
+ <comment xml:lang="oc">paquet Debian</comment>
+ <comment xml:lang="nn">Debian pakke</comment>
+ <comment xml:lang="nl">Debian-pakket</comment>
+ <comment xml:lang="nb">Debian pakke</comment>
+ <comment xml:lang="ms">Pakej Debian</comment>
+ <comment xml:lang="lv">Debian pakotne</comment>
+ <comment xml:lang="lt">Debian paketas</comment>
+ <comment xml:lang="ko">데비안 패키지</comment>
+ <comment xml:lang="kk">Debian дестесі</comment>
+ <comment xml:lang="ka">Debian-ის პაკეტი</comment>
+ <comment xml:lang="ja">Debian パッケージ</comment>
+ <comment xml:lang="it">Pacchetto Debian</comment>
+ <comment xml:lang="is">Debian pakki</comment>
+ <comment xml:lang="id">Paket Debian</comment>
+ <comment xml:lang="ia">Pacchetto Debian</comment>
+ <comment xml:lang="hu">Debian-csomag</comment>
+ <comment xml:lang="hr">Debian paket</comment>
+ <comment xml:lang="he">חבילת Debian</comment>
+ <comment xml:lang="gl">paquete de Debian</comment>
+ <comment xml:lang="ga">pacáiste Debian</comment>
+ <comment xml:lang="fur">pachet Debian</comment>
+ <comment xml:lang="fr">paquet Debian</comment>
+ <comment xml:lang="fo">Debian pakki</comment>
+ <comment xml:lang="fi">Debian-paketti</comment>
+ <comment xml:lang="eu">Debian paketea</comment>
+ <comment xml:lang="es">paquete de Debian</comment>
+ <comment xml:lang="eo">Debian-pakaĵo</comment>
+ <comment xml:lang="en_GB">Debian package</comment>
+ <comment xml:lang="el">Πακέτο Debian</comment>
+ <comment xml:lang="de">Debian-Paket</comment>
+ <comment xml:lang="da">Debianpakke</comment>
+ <comment xml:lang="cy">Pecyn Debian</comment>
+ <comment xml:lang="cs">balíček Debianu</comment>
+ <comment xml:lang="ca">paquet Debian</comment>
+ <comment xml:lang="bg">Пакет — Debian</comment>
+ <comment xml:lang="be@latin">Pakunak Debian</comment>
+ <comment xml:lang="be">пакет Debian</comment>
+ <comment xml:lang="az">Debian paketi</comment>
+ <comment xml:lang="ar">حزمة ديبيان</comment>
+ <comment xml:lang="af">Debian-pakket</comment>
<alias type="application/x-deb"/>
<alias type="application/x-debian-package"/>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="!&lt;arch&gt;" type="string" offset="0">
- <match value="debian" type="string" offset="8"/>
+ <magic>
+ <match type="string" value="!&lt;arch&gt;" offset="0">
+ <match type="string" value="debian" offset="8"/>
</match>
</magic>
<glob pattern="*.deb"/>
<glob pattern="*.udeb"/>
</mime-type>
<mime-type type="application/x-designer">
- <comment>Qt Designer file</comment>
- <comment xml:lang="ar">ملف Qt Designer</comment>
- <comment xml:lang="be@latin">Fajł Qt Designer</comment>
- <comment xml:lang="bg">Файл — Qt Designer</comment>
- <comment xml:lang="ca">fitxer de Qt Designer</comment>
- <comment xml:lang="cs">soubor Qt Designer</comment>
- <comment xml:lang="da">Qt Designer-fil</comment>
- <comment xml:lang="de">Qt-Designer-Datei</comment>
- <comment xml:lang="el">Αρχείο Qt Designer</comment>
- <comment xml:lang="en_GB">Qt Designer file</comment>
- <comment xml:lang="eo">dosiero de Qt Designer</comment>
- <comment xml:lang="es">archivo de Qt Designer</comment>
- <comment xml:lang="eu">Qt Designer Fitxategia</comment>
- <comment xml:lang="fi">Qt Designer -tiedosto</comment>
- <comment xml:lang="fo">Qt Designer fíla</comment>
- <comment xml:lang="fr">fichier Qt Designer</comment>
- <comment xml:lang="ga">comhad Qt Designer</comment>
- <comment xml:lang="gl">ficheiro de Qt Designer</comment>
- <comment xml:lang="he">קובץ של Qt Designer</comment>
- <comment xml:lang="hr">Qt Designer datoteka</comment>
- <comment xml:lang="hu">Qt Designer-fájl</comment>
- <comment xml:lang="ia">File Qt Designer</comment>
- <comment xml:lang="id">Berkas Qt Designer</comment>
- <comment xml:lang="it">File Qt Designer</comment>
- <comment xml:lang="ja">Qt Designer ファイル</comment>
- <comment xml:lang="kk">Qt Designer файлы</comment>
- <comment xml:lang="ko">Qt 디자이너 파일</comment>
- <comment xml:lang="lt">Qt Designer failas</comment>
- <comment xml:lang="lv">Qt Designer datne</comment>
- <comment xml:lang="ms">Fail Qt Designer</comment>
- <comment xml:lang="nb">Qt Designer-fil</comment>
- <comment xml:lang="nl">Qt Designer-bestand</comment>
- <comment xml:lang="nn">Qt Designer-fil</comment>
- <comment xml:lang="oc">fichièr Qt Designer</comment>
- <comment xml:lang="pl">Plik Qt Designer</comment>
- <comment xml:lang="pt">ficheiro do Qt Designer</comment>
- <comment xml:lang="pt_BR">Arquivo do Qt Designer</comment>
- <comment xml:lang="ro">Fișier Qt Designer</comment>
- <comment xml:lang="ru">Файл Qt Designer</comment>
- <comment xml:lang="sk">Súbor Qt Designer</comment>
- <comment xml:lang="sl">Datoteka Qt Designer</comment>
- <comment xml:lang="sq">File Qt Designer</comment>
- <comment xml:lang="sr">датотека Кут дизајнера</comment>
- <comment xml:lang="sv">Qt Designer-fil</comment>
- <comment xml:lang="tr">Qt Tasarımcı dosyası</comment>
- <comment xml:lang="uk">файл програми Qt-дизайнер</comment>
- <comment xml:lang="vi">Tập tin thiết kế Qt Designer</comment>
- <comment xml:lang="zh_CN">Qt Designer 文件</comment>
- <comment xml:lang="zh_TW">Qt Designer 檔案</comment>
+ <comment>Qt Designer interface document</comment>
+ <comment xml:lang="zh_TW">Qt Designer 介面文件</comment>
+ <comment xml:lang="zh_CN">Qt Designer 界面文档</comment>
+ <comment xml:lang="uk">документ інтерфейсу Qt Designer</comment>
+ <comment xml:lang="tr">Qt Designer arayüz belgesi</comment>
+ <comment xml:lang="sv">Qt Designer-gränssnittsdokument</comment>
+ <comment xml:lang="sq">dokument ndërfaqesh Qt Designer</comment>
+ <comment xml:lang="sl">Dokument vmesnika Qt Designer</comment>
+ <comment xml:lang="si">Qt Designer අතුරුමුහුණත් ලේඛනය</comment>
+ <comment xml:lang="ru">Документ интерфейса Qt Designer</comment>
+ <comment xml:lang="pt_BR">Documento de interface do Qt Designer</comment>
+ <comment xml:lang="pt">documento de interface Qt Designer</comment>
+ <comment xml:lang="pl">Dokument interfejsu Qt Designer</comment>
+ <comment xml:lang="nl">Qt Designer-interfacedocument</comment>
+ <comment xml:lang="ko">Qt 디자이너 인터페이스 문서</comment>
+ <comment xml:lang="kk">Qt Designer интерфейс құжаты</comment>
+ <comment xml:lang="ja">Qt Designer インターフェイスドキュメント</comment>
+ <comment xml:lang="it">Documento interfaccia Qt Designer</comment>
+ <comment xml:lang="is">Qt Designer viðmótsskjal</comment>
+ <comment xml:lang="id">Dokumen antarmuka Qt Designer</comment>
+ <comment xml:lang="hu">Qt Designer felületleíró dokumentum</comment>
+ <comment xml:lang="hr">Qt Designer dokument sučelja</comment>
+ <comment xml:lang="he">מסמך מנשק של Qt Designer</comment>
+ <comment xml:lang="fr">document d'interface Qt Designer</comment>
+ <comment xml:lang="fi">Qt Designer -käyttöliittymän asiakirja</comment>
+ <comment xml:lang="eu">Qt Designer interfaze dokumentua</comment>
+ <comment xml:lang="es">documento de interfaz de Qt Designer</comment>
+ <comment xml:lang="en_GB">Qt Designer interface document</comment>
+ <comment xml:lang="de">Qt-Designer-Oberflächendokument</comment>
+ <comment xml:lang="da">Qt Designer-brugerflade-dokument</comment>
+ <comment xml:lang="ca">document d'interfície Qt Designer</comment>
+ <comment xml:lang="bg">Документ — интерфейс, Qt Designer</comment>
+ <comment xml:lang="be">дакумент інтэрфейсу Qt Designer</comment>
+ <comment xml:lang="ar">مستند واجهة مصمم كيوت</comment>
<generic-icon name="x-office-document"/>
<sub-class-of type="application/xml"/>
<magic>
- <match value="&lt;ui " type="string" offset="0:256"/>
- <match value="&lt;UI " type="string" offset="0:256"/>
+ <match type="string" value="&lt;ui " offset="0:256"/>
+ <match type="string" value="&lt;UI " offset="0:256"/>
</magic>
<glob pattern="*.ui"/>
</mime-type>
+ <mime-type type="text/x-kaitai-struct">
+ <comment>Kaitai Struct definition file</comment>
+ <comment xml:lang="uk">файл визначень Kaitai Struct</comment>
+ <comment xml:lang="tr">Kaitai Struct tanım dosyası</comment>
+ <comment xml:lang="sv">Kaitai Struct-definitionsfil</comment>
+ <comment xml:lang="si">Kaitai Struct නිර්වචන ගොනුව</comment>
+ <comment xml:lang="ru">Файл Kaitai Struct definition</comment>
+ <comment xml:lang="pt_BR">Arquivo de definição da Kaitai Struct</comment>
+ <comment xml:lang="pl">Plik definicji Kaitai Struct</comment>
+ <comment xml:lang="nl">Kaitai Struct-definitiebestand</comment>
+ <comment xml:lang="ko">Kaitai 구조체 정의 파일</comment>
+ <comment xml:lang="kk">Kaitai Struct сипаттама файлы</comment>
+ <comment xml:lang="ja">Kaitai Struct 定義ファイル</comment>
+ <comment xml:lang="it">File definizione Kaitai Struct</comment>
+ <comment xml:lang="is">Kaitai Struct skilgreiningarskrá</comment>
+ <comment xml:lang="id">berkas definisi Kaitai Struct</comment>
+ <comment xml:lang="hu">Kaitai szerkezetdefiníciós fájl</comment>
+ <comment xml:lang="hr">Kaitai Struct datoteka definicije</comment>
+ <comment xml:lang="he">קובץ הגדרת Kaitai Struct</comment>
+ <comment xml:lang="fr">Fichier de définition Kaitai Struct</comment>
+ <comment xml:lang="fi">Kaitai Struct -määritystiedosto</comment>
+ <comment xml:lang="es">archivo de definición de Kaitai Struct</comment>
+ <comment xml:lang="en_GB">Kaitai Struct definition file</comment>
+ <comment xml:lang="de">Kaitai Struct-Definitionsdatei</comment>
+ <comment xml:lang="da">Kaitai Struct-definitionsfil</comment>
+ <comment xml:lang="ca">fitxer de definicions Kaitai Struct</comment>
+ <comment xml:lang="be">файл азначэння Kaitai Struct</comment>
+ <comment xml:lang="ar">ملف تعريف Kaitai Struct</comment>
+ <sub-class-of type="application/yaml"/>
+ <glob pattern="*.ksy"/>
+ </mime-type>
<mime-type type="text/x-qml">
<comment>Qt Markup Language file</comment>
- <comment xml:lang="bg">Файл — Qt Markup</comment>
- <comment xml:lang="ca">fitxer de llenguatge de marcadors Qt</comment>
- <comment xml:lang="cs">soubor Qt Markup Language</comment>
- <comment xml:lang="da">Qt Markup Language-fil</comment>
- <comment xml:lang="de">Qt-Auszeichnungssprachendatei</comment>
- <comment xml:lang="el">Αρχείο Qt Markup Language</comment>
- <comment xml:lang="en_GB">Qt Markup Language file</comment>
- <comment xml:lang="es">archivo de lenguaje de marcado Qt</comment>
- <comment xml:lang="eu">Qt Markup lengoai fitxategia</comment>
- <comment xml:lang="fi">QML-tiedosto</comment>
- <comment xml:lang="fr">fichier Qt Markup Language</comment>
- <comment xml:lang="ga">comhad teanga mharcála Qt</comment>
- <comment xml:lang="gl">ficheiro de linguaxe de marcado Qt</comment>
- <comment xml:lang="he">קובץ שפת סימון של Qt</comment>
- <comment xml:lang="hr">Qt Markup Language datoteka</comment>
- <comment xml:lang="hu">Qt jelölőnyelvű fájl</comment>
- <comment xml:lang="ia">File de linguage de marcation Qt</comment>
- <comment xml:lang="id">Berkas Bahasa Markup Qt</comment>
- <comment xml:lang="it">File Qt Markup Language</comment>
- <comment xml:lang="ja">Qt マークアップ言語ファイル</comment>
- <comment xml:lang="kk">Qt Markup Language файлы</comment>
- <comment xml:lang="ko">Qt 마크업 언어 파일</comment>
- <comment xml:lang="lv">Qt marķēšanas valodas datne</comment>
- <comment xml:lang="nl">Qt Markup Tallbestand</comment>
- <comment xml:lang="oc">fichièr Qt Markup Language</comment>
- <comment xml:lang="pl">Plik języka znaczników Qt</comment>
- <comment xml:lang="pt">ficheiro de linguagem Qt Markup</comment>
- <comment xml:lang="pt_BR">Arquivo de Qt Markup Language</comment>
- <comment xml:lang="ru">Файл Qt Markup Language</comment>
- <comment xml:lang="sk">Súbor značkovacieho jazyka Qt</comment>
- <comment xml:lang="sl">Datoteka označevalnega jezika Qt</comment>
- <comment xml:lang="sr">датотека КуТ-овог језика означавања</comment>
- <comment xml:lang="sv">Qt-märkspråksfil</comment>
- <comment xml:lang="tr">Qt İşaretleme Dili dosyası</comment>
- <comment xml:lang="uk">файл мови розмітки Qt</comment>
- <comment xml:lang="zh_CN">Qt Markup Language 文件</comment>
<comment xml:lang="zh_TW">Qt 標記語言檔</comment>
- <magic priority="80">
- <match value="/bin/env qml" type="string" offset="2:16"/>
- <match value="import Qt" type="string" offset="0:3000">
- <match value="{" type="string" offset="9:3009"/>
+ <comment xml:lang="zh_CN">Qt Markup Language 文件</comment>
+ <comment xml:lang="uk">файл мови розмітки Qt</comment>
+ <comment xml:lang="tr">Qt İşaretleme Dili dosyası</comment>
+ <comment xml:lang="sv">Qt-märkspråksfil</comment>
+ <comment xml:lang="sr">датотека КуТ-овог језика означавања</comment>
+ <comment xml:lang="sq">kartelë Qt Markup Language</comment>
+ <comment xml:lang="sl">Datoteka označevalnega jezika Qt</comment>
+ <comment xml:lang="si">Qt Markup භාෂා ගොනුව</comment>
+ <comment xml:lang="sk">Súbor značkovacieho jazyka Qt</comment>
+ <comment xml:lang="ru">Файл Qt Markup Language</comment>
+ <comment xml:lang="pt_BR">Arquivo de Qt Markup Language</comment>
+ <comment xml:lang="pt">ficheiro de linguagem Qt Markup</comment>
+ <comment xml:lang="pl">Plik języka znaczników Qt</comment>
+ <comment xml:lang="oc">fichièr Qt Markup Language</comment>
+ <comment xml:lang="nl">Qt Markup Tallbestand</comment>
+ <comment xml:lang="lv">Qt marķēšanas valodas datne</comment>
+ <comment xml:lang="ko">Qt 마크업 언어 파일</comment>
+ <comment xml:lang="kk">Qt Markup Language файлы</comment>
+ <comment xml:lang="ja">Qt マークアップ言語ファイル</comment>
+ <comment xml:lang="it">File Qt Markup Language</comment>
+ <comment xml:lang="is">Qt Markup Language skrá</comment>
+ <comment xml:lang="id">Berkas Bahasa Markup Qt</comment>
+ <comment xml:lang="ia">File de linguage de marcation Qt</comment>
+ <comment xml:lang="hu">Qt jelölőnyelvű fájl</comment>
+ <comment xml:lang="hr">Qt Markup Language datoteka</comment>
+ <comment xml:lang="he">קובץ שפת סימון של Qt</comment>
+ <comment xml:lang="gl">ficheiro de linguaxe de marcado Qt</comment>
+ <comment xml:lang="ga">comhad teanga mharcála Qt</comment>
+ <comment xml:lang="fur">file Qt Markup Language</comment>
+ <comment xml:lang="fr">fichier Qt Markup Language</comment>
+ <comment xml:lang="fi">QML-tiedosto</comment>
+ <comment xml:lang="eu">Qt Markup lengoai fitxategia</comment>
+ <comment xml:lang="es">archivo de lenguaje de marcado Qt</comment>
+ <comment xml:lang="en_GB">Qt Markup Language file</comment>
+ <comment xml:lang="el">Αρχείο Qt Markup Language</comment>
+ <comment xml:lang="de">Qt-Auszeichnungssprachendatei</comment>
+ <comment xml:lang="da">Qt Markup Language-fil</comment>
+ <comment xml:lang="cs">soubor Qt Markup Language</comment>
+ <comment xml:lang="ca">fitxer de llenguatge de marcadors Qt</comment>
+ <comment xml:lang="bg">Интерфейс — Qt Markup</comment>
+ <comment xml:lang="be">файл Qt Markup Language</comment>
+ <comment xml:lang="ar">ملف لغة وصف Qt</comment>
+ <comment xml:lang="af">Qt Markup Language-lêer</comment>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="/bin/env qml" offset="2:16"/>
+ <match type="string" value="import Qt" offset="0:3000">
+ <match type="string" value="{" offset="9:3009"/>
</match>
- <match value="import Qml" type="string" offset="0:3000">
- <match value="{" type="string" offset="9:3009"/>
+ <match type="string" value="import Qml" offset="0:3000">
+ <match type="string" value="{" offset="9:3009"/>
</match>
</magic>
<glob pattern="*.qml"/>
@@ -10068,63 +10833,25 @@
<glob pattern="*.qmlproject"/>
</mime-type>
<mime-type type="application/x-desktop">
- <comment>desktop configuration file</comment>
- <comment xml:lang="ar">ملف تضبيط سطح المكتب</comment>
- <comment xml:lang="be@latin">kanfihuracyjny fajł asiarodździa</comment>
- <comment xml:lang="bg">Файл с информация за работния плот</comment>
- <comment xml:lang="ca">fitxer de configuració d'escriptori</comment>
- <comment xml:lang="cs">soubor nastavení pracovní plochy</comment>
- <comment xml:lang="da">skrivebordskonfigurationsfil</comment>
- <comment xml:lang="de">Desktop-Konfigurationsdatei</comment>
- <comment xml:lang="el">Αρχείο ρυθμίσεων επιφάνειας εργασίας</comment>
- <comment xml:lang="en_GB">desktop configuration file</comment>
- <comment xml:lang="eo">dosiero de agordoj de labortablo</comment>
- <comment xml:lang="es">archivo de configuración del escritorio</comment>
- <comment xml:lang="eu">Mahaigainaren konfigurazio-fitxategia</comment>
- <comment xml:lang="fi">työpöydän asetustiedosto</comment>
- <comment xml:lang="fo">skriviborðssamansetingarfíla</comment>
- <comment xml:lang="fr">fichier de configuration desktop</comment>
- <comment xml:lang="ga">comhad cumraíochta deisce</comment>
- <comment xml:lang="gl">ficheiro de configuración de escritorio</comment>
- <comment xml:lang="he">קובץ הגדרות שולחן עבודה</comment>
- <comment xml:lang="hr">Datoteka prečaca radne površine</comment>
- <comment xml:lang="hu">asztalbeállító fájl</comment>
- <comment xml:lang="ia">File de configuration de scriptorio</comment>
- <comment xml:lang="id">berkas konfigurasi destop</comment>
- <comment xml:lang="it">File configurazione desktop</comment>
- <comment xml:lang="ja">デスクトップ設定ファイル</comment>
- <comment xml:lang="kk">жұмыс үстел баптаулар файлы</comment>
- <comment xml:lang="ko">데스크톱 설정 파일</comment>
- <comment xml:lang="lt">darbastalio konfigūracijos failas</comment>
- <comment xml:lang="lv">darbvirsmas konfigurācijas datne</comment>
- <comment xml:lang="ms">Fail konfigurasi desktop</comment>
- <comment xml:lang="nb">konfigurasjonsfil for skrivebordet</comment>
- <comment xml:lang="nl">bureaublad-configuratiebestand</comment>
- <comment xml:lang="nn">skrivebordsoppsettfil</comment>
- <comment xml:lang="oc">fichièr de configuracion desktop</comment>
- <comment xml:lang="pl">Plik konfiguracji środowiska</comment>
- <comment xml:lang="pt">ficheiro de configuração de área de trabalho</comment>
- <comment xml:lang="pt_BR">Arquivo de configuração desktop</comment>
- <comment xml:lang="ro">fișier de configurare al desktopului</comment>
- <comment xml:lang="ru">Файл настроек рабочего стола</comment>
- <comment xml:lang="sk">Súbor nastavení pracovnej plochy</comment>
- <comment xml:lang="sl">nastavitvena datoteka namizja</comment>
- <comment xml:lang="sq">File konfigurimi desktop</comment>
- <comment xml:lang="sr">датотека подешавања радне површи</comment>
- <comment xml:lang="sv">skrivbordskonfigurationsfil</comment>
- <comment xml:lang="tr">masa üstü yapılandırma dosyası</comment>
- <comment xml:lang="uk">файл конфігурації стільниці</comment>
- <comment xml:lang="vi">tập tin cấu hình môi trường</comment>
- <comment xml:lang="zh_CN">桌面配置文件</comment>
- <comment xml:lang="zh_TW">桌面組態檔</comment>
+ <comment>Desktop entry</comment>
+ <comment xml:lang="uk">стільничний запис</comment>
+ <comment xml:lang="sv">Skrivbordspost</comment>
+ <comment xml:lang="ru">Запись рабочего стола</comment>
+ <comment xml:lang="pl">Wpis środowiska</comment>
+ <comment xml:lang="it">Elemento desktop</comment>
+ <comment xml:lang="gl">Entrada de escritorio</comment>
+ <comment xml:lang="eu">Mahaigaineko sarrera</comment>
+ <comment xml:lang="es">entrada de escritorio</comment>
+ <comment xml:lang="de">Desktop-Eintrag</comment>
+ <comment xml:lang="be">запіс desktop</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="[Desktop Entry]" type="string" offset="0:32"/>
- <match value="[Desktop Action" type="string" offset="0"/>
- <match value="[KDE Desktop Entry]" type="string" offset="0"/>
- <match value="# Config File" type="string" offset="0"/>
- <match value="# KDE Config File" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="[Desktop Entry]" offset="0:32"/>
+ <match type="string" value="[Desktop Action" offset="0"/>
+ <match type="string" value="[KDE Desktop Entry]" offset="0"/>
+ <match type="string" value="# Config File" offset="0"/>
+ <match type="string" value="# KDE Config File" offset="0"/>
</magic>
<glob pattern="*.desktop"/>
<glob pattern="*.kdelnk"/>
@@ -10132,624 +10859,676 @@
</mime-type>
<mime-type type="application/x-fictionbook+xml">
<comment>FictionBook document</comment>
- <comment xml:lang="ar">مستند FictionBook</comment>
- <comment xml:lang="ast">Documentu de FictionBook</comment>
- <comment xml:lang="bg">Документ — FictionBook</comment>
- <comment xml:lang="ca">document FictionBook</comment>
- <comment xml:lang="cs">dokument FictionBook</comment>
- <comment xml:lang="da">FictionBook-dokument</comment>
- <comment xml:lang="de">FictionBook-Dokument</comment>
- <comment xml:lang="el">Έγγραφο FictionBook</comment>
- <comment xml:lang="en_GB">FictionBook document</comment>
- <comment xml:lang="eo">FictionBook-dokumento</comment>
- <comment xml:lang="es">documento FictionBook</comment>
- <comment xml:lang="eu">FictionBook dokumentua</comment>
- <comment xml:lang="fi">FictionBook-asiakirja</comment>
- <comment xml:lang="fo">FictionBook skjal</comment>
- <comment xml:lang="fr">document FictionBook</comment>
- <comment xml:lang="ga">cáipéis FictionBook</comment>
- <comment xml:lang="gl">documento de FictionBook</comment>
- <comment xml:lang="he">מסמך FictionBook</comment>
- <comment xml:lang="hr">FictionBook dokument</comment>
- <comment xml:lang="hu">FictionBook-dokumentum</comment>
- <comment xml:lang="ia">Documento FictionBook</comment>
- <comment xml:lang="id">Dokumen FictionBook</comment>
- <comment xml:lang="it">Documento FictionBook</comment>
- <comment xml:lang="ja">FictionBook ドキュメント</comment>
- <comment xml:lang="ka">FictionBook-ის დოკუმენტი</comment>
- <comment xml:lang="kk">FictionBook құжаты</comment>
- <comment xml:lang="ko">FictionBook 문서</comment>
- <comment xml:lang="lt">FictionBook dokumentas</comment>
- <comment xml:lang="lv">FictionBook dokuments</comment>
- <comment xml:lang="nl">FictionBook-document</comment>
- <comment xml:lang="oc">document FictionBook</comment>
- <comment xml:lang="pl">Dokument FictionBook</comment>
- <comment xml:lang="pt">documento FictionBook</comment>
- <comment xml:lang="pt_BR">Documento FictionBook</comment>
- <comment xml:lang="ro">Document FictionBook</comment>
- <comment xml:lang="ru">Документ FictionBook</comment>
- <comment xml:lang="sk">Dokument FictionBook</comment>
- <comment xml:lang="sl">Dokument FictionBook</comment>
- <comment xml:lang="sr">документ Фикшон Књиге</comment>
- <comment xml:lang="sv">FictionBook-dokument</comment>
- <comment xml:lang="tr">FictionBook belgesi</comment>
- <comment xml:lang="uk">документ FictionBook</comment>
- <comment xml:lang="vi">Tài liệu FictionBook</comment>
- <comment xml:lang="zh_CN">FictionBook 文档</comment>
<comment xml:lang="zh_TW">FictionBook 文件</comment>
+ <comment xml:lang="zh_CN">FictionBook 文档</comment>
+ <comment xml:lang="vi">Tài liệu FictionBook</comment>
+ <comment xml:lang="uk">документ FictionBook</comment>
+ <comment xml:lang="tr">FictionBook belgesi</comment>
+ <comment xml:lang="sv">FictionBook-dokument</comment>
+ <comment xml:lang="sr">документ Фикшон Књиге</comment>
+ <comment xml:lang="sq">dokument FictionBook</comment>
+ <comment xml:lang="sl">Dokument FictionBook</comment>
+ <comment xml:lang="si">ප්‍රබන්ධ පොත් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument FictionBook</comment>
+ <comment xml:lang="ru">Документ FictionBook</comment>
+ <comment xml:lang="ro">Document FictionBook</comment>
+ <comment xml:lang="pt_BR">Documento FictionBook</comment>
+ <comment xml:lang="pt">documento FictionBook</comment>
+ <comment xml:lang="pl">Dokument FictionBook</comment>
+ <comment xml:lang="oc">document FictionBook</comment>
+ <comment xml:lang="nl">FictionBook-document</comment>
+ <comment xml:lang="lv">FictionBook dokuments</comment>
+ <comment xml:lang="lt">FictionBook dokumentas</comment>
+ <comment xml:lang="ko">FictionBook 문서</comment>
+ <comment xml:lang="kk">FictionBook құжаты</comment>
+ <comment xml:lang="ka">FictionBook-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">FictionBook ドキュメント</comment>
+ <comment xml:lang="it">Documento FictionBook</comment>
+ <comment xml:lang="is">FictionBook skjal</comment>
+ <comment xml:lang="id">Dokumen FictionBook</comment>
+ <comment xml:lang="ia">Documento FictionBook</comment>
+ <comment xml:lang="hu">FictionBook-dokumentum</comment>
+ <comment xml:lang="hr">FictionBook dokument</comment>
+ <comment xml:lang="he">מסמך FictionBook</comment>
+ <comment xml:lang="gl">documento de FictionBook</comment>
+ <comment xml:lang="ga">cáipéis FictionBook</comment>
+ <comment xml:lang="fur">document FictionBook</comment>
+ <comment xml:lang="fr">document FictionBook</comment>
+ <comment xml:lang="fo">FictionBook skjal</comment>
+ <comment xml:lang="fi">FictionBook-asiakirja</comment>
+ <comment xml:lang="eu">FictionBook dokumentua</comment>
+ <comment xml:lang="es">documento FictionBook</comment>
+ <comment xml:lang="eo">FictionBook-dokumento</comment>
+ <comment xml:lang="en_GB">FictionBook document</comment>
+ <comment xml:lang="el">Έγγραφο FictionBook</comment>
+ <comment xml:lang="de">FictionBook-Dokument</comment>
+ <comment xml:lang="da">FictionBook-dokument</comment>
+ <comment xml:lang="cs">dokument FictionBook</comment>
+ <comment xml:lang="ca">document FictionBook</comment>
+ <comment xml:lang="bg">Документ — FictionBook</comment>
+ <comment xml:lang="be">дакумент FictionBook</comment>
+ <comment xml:lang="ast">Documentu de FictionBook</comment>
+ <comment xml:lang="ar">مستند FictionBook</comment>
+ <comment xml:lang="af">FictionBook-dokument</comment>
<sub-class-of type="application/xml"/>
<glob pattern="*.fb2"/>
<magic priority="80">
- <match value="&lt;FictionBook" type="string" offset="0:256"/>
+ <match type="string" value="&lt;FictionBook" offset="0:256"/>
</magic>
<alias type="application/x-fictionbook"/>
<root-XML namespaceURI="http://www.gribuser.ru/xml/fictionbook/2.0" localName="FictionBook"/>
</mime-type>
<mime-type type="application/x-zip-compressed-fb2">
<comment>Compressed FictionBook document</comment>
- <comment xml:lang="ast">Documentu comprimíu de FictionBook</comment>
- <comment xml:lang="ca">document FictionBook amb compressió</comment>
- <comment xml:lang="cs">komprimovaný dokument FictionBook</comment>
- <comment xml:lang="da">Komprimeret FictionBook-dokument</comment>
- <comment xml:lang="de">Komprimiertes FictionBook-Dokument</comment>
- <comment xml:lang="el">Συμπιεσμένο έγγραφο FictionBook</comment>
- <comment xml:lang="en_GB">Compressed FictionBook document</comment>
- <comment xml:lang="es">documento comprimido de FictionBook</comment>
- <comment xml:lang="eu">Konprimitutako FictionBook dokumentua</comment>
- <comment xml:lang="fi">Pakattu FictionBook-asiakirja</comment>
- <comment xml:lang="fr">document FictionBook compressé</comment>
- <comment xml:lang="ga">cáipéis chomhbhrúite FictionBook</comment>
- <comment xml:lang="gl">Documento de FictionBook comprimida</comment>
- <comment xml:lang="he">מסמך FictionBook מכווץ</comment>
- <comment xml:lang="hr">Sažet FictionBook dokument</comment>
- <comment xml:lang="hu">Tömörített FictionBook dokumentum</comment>
- <comment xml:lang="ia">Documento FictionBook comprimite</comment>
- <comment xml:lang="id">Dokumen FictionBook terkompresi</comment>
- <comment xml:lang="it">Documento FictionBook compresso</comment>
- <comment xml:lang="kk">Сығылған FictionBook құжаты</comment>
- <comment xml:lang="ko">압축한 FictionBook 문서</comment>
- <comment xml:lang="oc">document FictionBook compressat</comment>
- <comment xml:lang="pl">Skompresowany dokument FictionBook</comment>
- <comment xml:lang="pt">documento comprimido FictionBook</comment>
- <comment xml:lang="pt_BR">Documento FictionBook comprimido</comment>
- <comment xml:lang="ru">Сжатый документ FictionBook</comment>
- <comment xml:lang="sk">Komprimovaný dokument FictionBook</comment>
- <comment xml:lang="sl">Stisnjeni dokument FictionBook</comment>
- <comment xml:lang="sr">запаковани документ Фикшон Књиге</comment>
- <comment xml:lang="sv">Komprimerat FictionBook-dokument</comment>
- <comment xml:lang="tr">Sıkıştırılmış KurguKitap belgesi</comment>
- <comment xml:lang="uk">стиснений документ FictionBook</comment>
- <comment xml:lang="zh_CN">压缩的 FictionBook 文档</comment>
<comment xml:lang="zh_TW">壓縮版 FictionBook 文件</comment>
+ <comment xml:lang="zh_CN">压缩的 FictionBook 文档</comment>
+ <comment xml:lang="uk">стиснений документ FictionBook</comment>
+ <comment xml:lang="tr">Sıkıştırılmış FictionBook belgesi</comment>
+ <comment xml:lang="sv">Komprimerat FictionBook-dokument</comment>
+ <comment xml:lang="sr">запаковани документ Фикшон Књиге</comment>
+ <comment xml:lang="sq">dokument FictionBook i ngjeshur</comment>
+ <comment xml:lang="sl">Stisnjeni dokument FictionBook</comment>
+ <comment xml:lang="si">සම්පීඩිත FictionBook ලේඛනය</comment>
+ <comment xml:lang="sk">Komprimovaný dokument FictionBook</comment>
+ <comment xml:lang="ru">Сжатый документ FictionBook</comment>
+ <comment xml:lang="pt_BR">Documento FictionBook comprimido</comment>
+ <comment xml:lang="pt">documento comprimido FictionBook</comment>
+ <comment xml:lang="pl">Skompresowany dokument FictionBook</comment>
+ <comment xml:lang="oc">document FictionBook compressat</comment>
+ <comment xml:lang="nl">Gecomprimeerd FictionBook-document</comment>
+ <comment xml:lang="ko">압축한 FictionBook 문서</comment>
+ <comment xml:lang="kk">Сығылған FictionBook құжаты</comment>
+ <comment xml:lang="ja">圧縮 FictionBook ドキュメント</comment>
+ <comment xml:lang="it">Documento FictionBook compresso</comment>
+ <comment xml:lang="is">Þjappað FictionBook skjal</comment>
+ <comment xml:lang="id">Dokumen FictionBook terkompresi</comment>
+ <comment xml:lang="ia">Documento FictionBook comprimite</comment>
+ <comment xml:lang="hu">Tömörített FictionBook dokumentum</comment>
+ <comment xml:lang="hr">Sažet FictionBook dokument</comment>
+ <comment xml:lang="he">מסמך FictionBook מכווץ</comment>
+ <comment xml:lang="gl">Documento de FictionBook comprimida</comment>
+ <comment xml:lang="ga">cáipéis chomhbhrúite FictionBook</comment>
+ <comment xml:lang="fur">document FictionBook comprimût</comment>
+ <comment xml:lang="fr">document FictionBook compressé</comment>
+ <comment xml:lang="fi">Pakattu FictionBook-asiakirja</comment>
+ <comment xml:lang="eu">Konprimitutako FictionBook dokumentua</comment>
+ <comment xml:lang="es">documento comprimido de FictionBook</comment>
+ <comment xml:lang="en_GB">Compressed FictionBook document</comment>
+ <comment xml:lang="el">Συμπιεσμένο έγγραφο FictionBook</comment>
+ <comment xml:lang="de">Komprimiertes FictionBook-Dokument</comment>
+ <comment xml:lang="da">Komprimeret FictionBook-dokument</comment>
+ <comment xml:lang="cs">komprimovaný dokument FictionBook</comment>
+ <comment xml:lang="ca">document FictionBook amb compressió</comment>
+ <comment xml:lang="bg">Документ — FictionBook, компресиран</comment>
+ <comment xml:lang="be">сціснуты дакумент FictionBook</comment>
+ <comment xml:lang="ast">Documentu comprimíu de FictionBook</comment>
+ <comment xml:lang="ar">مستند FictionBook مضغوط</comment>
+ <comment xml:lang="af">Saamgepersde FictionBook-dokument</comment>
<sub-class-of type="application/zip"/>
<glob pattern="*.fb2.zip"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
-
- <match value=".fb2" type="string" offset="30:256"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <!-- Okay, this is not ideal, but it should be good enough for normal cases -->
+ <match type="string" value=".fb2" offset="30:256"/>
</match>
</magic>
</mime-type>
<mime-type type="application/x-dia-diagram">
<comment>Dia diagram</comment>
- <comment xml:lang="ar">خطاطة Dia</comment>
- <comment xml:lang="az">Dia diaqramı</comment>
- <comment xml:lang="be@latin">Dyjahrama Dia</comment>
- <comment xml:lang="bg">Диаграма — Dia</comment>
- <comment xml:lang="ca">diagrama de Dia</comment>
- <comment xml:lang="cs">diagram Dia</comment>
- <comment xml:lang="cy">Diagram Dia</comment>
- <comment xml:lang="da">Dia-diagram</comment>
- <comment xml:lang="de">Dia-Diagramm</comment>
- <comment xml:lang="el">Διάγραμμα Dia</comment>
- <comment xml:lang="en_GB">Dia diagram</comment>
- <comment xml:lang="eo">Dia-diagramo</comment>
- <comment xml:lang="es">diagrama de Dia</comment>
- <comment xml:lang="eu">Dia diagrama</comment>
- <comment xml:lang="fi">Dia-kaavio</comment>
- <comment xml:lang="fo">Dia ritmynd</comment>
- <comment xml:lang="fr">diagramme Dia</comment>
- <comment xml:lang="ga">léaráid Dia</comment>
- <comment xml:lang="gl">diagrama de Dia</comment>
- <comment xml:lang="he">גרף של Dia</comment>
- <comment xml:lang="hr">Dia dijagram</comment>
- <comment xml:lang="hu">Dia-diagram</comment>
- <comment xml:lang="ia">Diagramma Dia</comment>
- <comment xml:lang="id">Diagram Dia</comment>
- <comment xml:lang="it">Diagramma Dia</comment>
- <comment xml:lang="ja">Dia ダイアグラム</comment>
- <comment xml:lang="ka">Dia-ის დიაგრამა</comment>
- <comment xml:lang="kk">Dia диаграммасы</comment>
- <comment xml:lang="ko">Dia 다이어그램</comment>
- <comment xml:lang="lt">Dia diagrama</comment>
- <comment xml:lang="lv">Dia diagramma</comment>
- <comment xml:lang="ms">Diagram Dia</comment>
- <comment xml:lang="nb">Dia-diagram</comment>
- <comment xml:lang="nl">Dia-diagram</comment>
- <comment xml:lang="nn">Dia diagram</comment>
- <comment xml:lang="oc">diagrama Dia</comment>
- <comment xml:lang="pl">Diagram Dia</comment>
- <comment xml:lang="pt">diagrama Dia</comment>
- <comment xml:lang="pt_BR">Diagrama do Dia</comment>
- <comment xml:lang="ro">Diagramă Dia</comment>
- <comment xml:lang="ru">Диаграмма Dia</comment>
- <comment xml:lang="sk">Diagram Dia</comment>
- <comment xml:lang="sl">Datoteka diagrama Dia</comment>
- <comment xml:lang="sq">Diagramë Dia</comment>
- <comment xml:lang="sr">дијаграм Дие</comment>
- <comment xml:lang="sv">Dia-diagram</comment>
- <comment xml:lang="tr">Dia çizimi</comment>
- <comment xml:lang="uk">діаграма Dia</comment>
- <comment xml:lang="vi">Biểu đồ Dia</comment>
- <comment xml:lang="zh_CN">Dia 图表</comment>
<comment xml:lang="zh_TW">Dia 圖表</comment>
+ <comment xml:lang="zh_CN">Dia 图表</comment>
+ <comment xml:lang="vi">Biểu đồ Dia</comment>
+ <comment xml:lang="uk">діаграма Dia</comment>
+ <comment xml:lang="tr">Dia çizimi</comment>
+ <comment xml:lang="sv">Dia-diagram</comment>
+ <comment xml:lang="sr">дијаграм Дие</comment>
+ <comment xml:lang="sq">diagram Dia</comment>
+ <comment xml:lang="sl">Datoteka diagrama Dia</comment>
+ <comment xml:lang="si">Dia රූප සටහන</comment>
+ <comment xml:lang="sk">Diagram Dia</comment>
+ <comment xml:lang="ru">Диаграмма Dia</comment>
+ <comment xml:lang="ro">Diagramă Dia</comment>
+ <comment xml:lang="pt_BR">Diagrama do Dia</comment>
+ <comment xml:lang="pt">diagrama Dia</comment>
+ <comment xml:lang="pl">Diagram Dia</comment>
+ <comment xml:lang="oc">diagrama Dia</comment>
+ <comment xml:lang="nn">Dia diagram</comment>
+ <comment xml:lang="nl">Dia-diagram</comment>
+ <comment xml:lang="nb">Dia-diagram</comment>
+ <comment xml:lang="ms">Diagram Dia</comment>
+ <comment xml:lang="lv">Dia diagramma</comment>
+ <comment xml:lang="lt">Dia diagrama</comment>
+ <comment xml:lang="ko">Dia 다이어그램</comment>
+ <comment xml:lang="kk">Dia диаграммасы</comment>
+ <comment xml:lang="ka">Dia-ის დიაგრამა</comment>
+ <comment xml:lang="ja">Dia ダイアグラム</comment>
+ <comment xml:lang="it">Diagramma Dia</comment>
+ <comment xml:lang="is">Dia teikning</comment>
+ <comment xml:lang="id">Diagram Dia</comment>
+ <comment xml:lang="ia">Diagramma Dia</comment>
+ <comment xml:lang="hu">Dia-diagram</comment>
+ <comment xml:lang="hr">Dia dijagram</comment>
+ <comment xml:lang="he">גרף של Dia</comment>
+ <comment xml:lang="gl">diagrama de Dia</comment>
+ <comment xml:lang="ga">léaráid Dia</comment>
+ <comment xml:lang="fur">diagram Dia</comment>
+ <comment xml:lang="fr">diagramme Dia</comment>
+ <comment xml:lang="fo">Dia ritmynd</comment>
+ <comment xml:lang="fi">Dia-kaavio</comment>
+ <comment xml:lang="eu">Dia diagrama</comment>
+ <comment xml:lang="es">diagrama de Dia</comment>
+ <comment xml:lang="eo">Dia-diagramo</comment>
+ <comment xml:lang="en_GB">Dia diagram</comment>
+ <comment xml:lang="el">Διάγραμμα Dia</comment>
+ <comment xml:lang="de">Dia-Diagramm</comment>
+ <comment xml:lang="da">Dia-diagram</comment>
+ <comment xml:lang="cy">Diagram Dia</comment>
+ <comment xml:lang="cs">diagram Dia</comment>
+ <comment xml:lang="ca">diagrama de Dia</comment>
+ <comment xml:lang="bg">Диаграма — Dia</comment>
+ <comment xml:lang="be@latin">Dyjahrama Dia</comment>
+ <comment xml:lang="be">дыяграма Dia</comment>
+ <comment xml:lang="az">Dia diaqramı</comment>
+ <comment xml:lang="ar">خطاطة Dia</comment>
+ <comment xml:lang="af">Dia-diagram</comment>
<generic-icon name="image-x-generic"/>
<sub-class-of type="application/xml"/>
<glob pattern="*.dia"/>
- <magic priority="50">
- <match value="&lt;dia:" type="string" offset="5:100"/>
+ <magic>
+ <match offset="5:100" type="string" value="&lt;dia:"/>
</magic>
<root-XML namespaceURI="http://www.lysator.liu.se/~alla/dia/" localName="diagram"/>
</mime-type>
<mime-type type="application/x-dia-shape">
<comment>Dia shape</comment>
- <comment xml:lang="ar">شكل Dia</comment>
- <comment xml:lang="bg">Фигура — Dia</comment>
- <comment xml:lang="ca">forma de Dia</comment>
- <comment xml:lang="cs">symboly Dia</comment>
- <comment xml:lang="da">Dia-figur</comment>
- <comment xml:lang="de">Dia-Form</comment>
- <comment xml:lang="el">Σχήμα Dia</comment>
- <comment xml:lang="en_GB">Dia shape</comment>
- <comment xml:lang="es">forma de Dia</comment>
- <comment xml:lang="eu">Dia-ren forma</comment>
- <comment xml:lang="fi">Dia-muoto</comment>
- <comment xml:lang="fo">Dia skapur</comment>
- <comment xml:lang="fr">forme Dia</comment>
- <comment xml:lang="ga">cruth Dia</comment>
- <comment xml:lang="gl">forma de Dia</comment>
- <comment xml:lang="he">צורה של Dia</comment>
- <comment xml:lang="hr">Dia oblik</comment>
- <comment xml:lang="hu">Dia alakzat</comment>
- <comment xml:lang="ia">Forma Dia</comment>
- <comment xml:lang="id">Shape Dia</comment>
- <comment xml:lang="it">Sagoma Dia</comment>
- <comment xml:lang="ja">Dia 図形</comment>
- <comment xml:lang="kk">Dia сызбасы</comment>
- <comment xml:lang="ko">Dia 그림</comment>
- <comment xml:lang="lt">Dia forma</comment>
- <comment xml:lang="lv">Dia forma</comment>
- <comment xml:lang="nl">Diavorm</comment>
- <comment xml:lang="oc">forma Dia</comment>
- <comment xml:lang="pl">Kształt Dia</comment>
- <comment xml:lang="pt">forma Dia</comment>
- <comment xml:lang="pt_BR">Formato Dia</comment>
- <comment xml:lang="ro">Figură Dia</comment>
- <comment xml:lang="ru">Фигура Dia</comment>
- <comment xml:lang="sk">Tvar Dia</comment>
- <comment xml:lang="sl">Datoteka oblik Dia</comment>
- <comment xml:lang="sr">облик Дие</comment>
- <comment xml:lang="sv">Dia-figur</comment>
- <comment xml:lang="tr">Dia şekli</comment>
- <comment xml:lang="uk">форма Dia</comment>
- <comment xml:lang="zh_CN">Dia 形状</comment>
<comment xml:lang="zh_TW">Dia 形狀</comment>
+ <comment xml:lang="zh_CN">Dia 形状</comment>
+ <comment xml:lang="uk">форма Dia</comment>
+ <comment xml:lang="tr">Dia şekli</comment>
+ <comment xml:lang="sv">Dia-figur</comment>
+ <comment xml:lang="sr">облик Дие</comment>
+ <comment xml:lang="sq">formë Dia</comment>
+ <comment xml:lang="sl">Datoteka oblik Dia</comment>
+ <comment xml:lang="si">Dia හැඩය</comment>
+ <comment xml:lang="sk">Tvar Dia</comment>
+ <comment xml:lang="ru">Фигура Dia</comment>
+ <comment xml:lang="ro">Figură Dia</comment>
+ <comment xml:lang="pt_BR">Formato Dia</comment>
+ <comment xml:lang="pt">forma Dia</comment>
+ <comment xml:lang="pl">Kształt Dia</comment>
+ <comment xml:lang="oc">forma Dia</comment>
+ <comment xml:lang="nl">Diavorm</comment>
+ <comment xml:lang="lv">Dia forma</comment>
+ <comment xml:lang="lt">Dia forma</comment>
+ <comment xml:lang="ko">Dia 그림</comment>
+ <comment xml:lang="kk">Dia сызбасы</comment>
+ <comment xml:lang="ja">Dia 図形</comment>
+ <comment xml:lang="it">Sagoma Dia</comment>
+ <comment xml:lang="is">Dia lögun</comment>
+ <comment xml:lang="id">Shape Dia</comment>
+ <comment xml:lang="ia">Forma Dia</comment>
+ <comment xml:lang="hu">Dia alakzat</comment>
+ <comment xml:lang="hr">Dia oblik</comment>
+ <comment xml:lang="he">צורה של Dia</comment>
+ <comment xml:lang="gl">forma de Dia</comment>
+ <comment xml:lang="ga">cruth Dia</comment>
+ <comment xml:lang="fur">sagome Dia</comment>
+ <comment xml:lang="fr">forme Dia</comment>
+ <comment xml:lang="fo">Dia skapur</comment>
+ <comment xml:lang="fi">Dia-muoto</comment>
+ <comment xml:lang="eu">Dia-ren forma</comment>
+ <comment xml:lang="es">forma de Dia</comment>
+ <comment xml:lang="en_GB">Dia shape</comment>
+ <comment xml:lang="el">Σχήμα Dia</comment>
+ <comment xml:lang="de">Dia-Form</comment>
+ <comment xml:lang="da">Dia-figur</comment>
+ <comment xml:lang="cs">symboly Dia</comment>
+ <comment xml:lang="ca">forma de Dia</comment>
+ <comment xml:lang="bg">Фигура — Dia</comment>
+ <comment xml:lang="be">фігура Dia</comment>
+ <comment xml:lang="ar">شكل Dia</comment>
+ <comment xml:lang="af">Dia-vorm</comment>
<generic-icon name="image-x-generic"/>
<sub-class-of type="application/xml"/>
<glob pattern="*.shape"/>
- <magic priority="50">
- <match value="&lt;shape" type="string" offset="5:100"/>
+ <magic>
+ <match offset="5:100" type="string" value="&lt;shape"/>
</magic>
<root-XML namespaceURI="http://www.daa.com.au/~james/dia-shape-ns" localName="shape"/>
</mime-type>
<mime-type type="application/x-dvi">
<comment>TeX DVI document</comment>
- <comment xml:lang="ar">مستند TeX DVI</comment>
- <comment xml:lang="ast">Documentu Tex DVI</comment>
- <comment xml:lang="be@latin">Dakument TeX DVI</comment>
- <comment xml:lang="bg">Документ — TeX DVI</comment>
- <comment xml:lang="ca">document DVI de TeX</comment>
- <comment xml:lang="cs">dokument TeX DVI</comment>
- <comment xml:lang="da">TeX DVI-dokument</comment>
- <comment xml:lang="de">TeX-DVI-Dokument</comment>
- <comment xml:lang="el">Έγγραφο TeX DVI</comment>
- <comment xml:lang="en_GB">TeX DVI document</comment>
- <comment xml:lang="eo">DVI-dokumento de TeX</comment>
- <comment xml:lang="es">documento TeX DVI</comment>
- <comment xml:lang="eu">TeX DVI dokumentua</comment>
- <comment xml:lang="fi">TeX DVI -asiakirja</comment>
- <comment xml:lang="fo">TeX DVI skjal</comment>
- <comment xml:lang="fr">document TeX DVI</comment>
- <comment xml:lang="ga">cáipéis DVI TeX</comment>
- <comment xml:lang="gl">documento TeX DVI</comment>
- <comment xml:lang="he">מסמך מסוג TeX DVI</comment>
- <comment xml:lang="hr">TeX DVI dokument</comment>
- <comment xml:lang="hu">TeX DVI-dokumentum</comment>
- <comment xml:lang="ia">Documento TeX DVI</comment>
- <comment xml:lang="id">Dokumen TeX DVI</comment>
- <comment xml:lang="it">Documento TeX DVI</comment>
- <comment xml:lang="ja">TeX DVI ドキュメント</comment>
- <comment xml:lang="kk">TeX DVI құжаты</comment>
- <comment xml:lang="ko">TeX DVI 문서</comment>
- <comment xml:lang="lt">TeX DVI dokumentas</comment>
- <comment xml:lang="lv">TeX DVI dokuments</comment>
- <comment xml:lang="ms">Dokumen TeX DVI</comment>
- <comment xml:lang="nb">TeX DVI-dokument</comment>
- <comment xml:lang="nl">TeX DVI-document</comment>
- <comment xml:lang="nn">TeX DVI-dokument</comment>
- <comment xml:lang="oc">document TeX DVI</comment>
- <comment xml:lang="pl">Dokument TeX DVI</comment>
- <comment xml:lang="pt">documento TeX DVI</comment>
- <comment xml:lang="pt_BR">Documento DVI TeX</comment>
- <comment xml:lang="ro">Document Tex DVI</comment>
- <comment xml:lang="ru">Документ TeX DVI</comment>
- <comment xml:lang="sk">Dokument TeX DVI</comment>
- <comment xml:lang="sl">Dokument TeX DVI</comment>
- <comment xml:lang="sq">Dokument TeX DVI</comment>
- <comment xml:lang="sr">ТеКс ДВИ документ</comment>
- <comment xml:lang="sv">TeX DVI-dokument</comment>
- <comment xml:lang="tr">TeX DVI belgesi</comment>
- <comment xml:lang="uk">документ TeX DVI</comment>
- <comment xml:lang="vi">Tài liệu DVI Tex</comment>
- <comment xml:lang="zh_CN">TeX DVI 文档</comment>
<comment xml:lang="zh_TW">TeX DVI 文件</comment>
+ <comment xml:lang="zh_CN">TeX DVI 文档</comment>
+ <comment xml:lang="vi">Tài liệu DVI Tex</comment>
+ <comment xml:lang="uk">документ TeX DVI</comment>
+ <comment xml:lang="tr">TeX DVI belgesi</comment>
+ <comment xml:lang="sv">TeX DVI-dokument</comment>
+ <comment xml:lang="sr">ТеКс ДВИ документ</comment>
+ <comment xml:lang="sq">dokument TeX DVI</comment>
+ <comment xml:lang="sl">Dokument TeX DVI</comment>
+ <comment xml:lang="si">TeX DVI ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument TeX DVI</comment>
+ <comment xml:lang="ru">Документ DVI издательской системы TeX</comment>
+ <comment xml:lang="ro">Document Tex DVI</comment>
+ <comment xml:lang="pt_BR">Documento DVI TeX</comment>
+ <comment xml:lang="pt">documento TeX DVI</comment>
+ <comment xml:lang="pl">Dokument TeX DVI</comment>
+ <comment xml:lang="oc">document TeX DVI</comment>
+ <comment xml:lang="nn">TeX DVI-dokument</comment>
+ <comment xml:lang="nl">TeX DVI-document</comment>
+ <comment xml:lang="nb">TeX DVI-dokument</comment>
+ <comment xml:lang="ms">Dokumen TeX DVI</comment>
+ <comment xml:lang="lv">TeX DVI dokuments</comment>
+ <comment xml:lang="lt">TeX DVI dokumentas</comment>
+ <comment xml:lang="ko">TeX DVI 문서</comment>
+ <comment xml:lang="kk">TeX DVI құжаты</comment>
+ <comment xml:lang="ja">TeX DVI ドキュメント</comment>
+ <comment xml:lang="it">Documento TeX DVI</comment>
+ <comment xml:lang="is">TeX DVI skjal</comment>
+ <comment xml:lang="id">Dokumen TeX DVI</comment>
+ <comment xml:lang="ia">Documento TeX DVI</comment>
+ <comment xml:lang="hu">TeX DVI-dokumentum</comment>
+ <comment xml:lang="hr">TeX DVI dokument</comment>
+ <comment xml:lang="he">מסמך מסוג TeX DVI</comment>
+ <comment xml:lang="gl">documento TeX DVI</comment>
+ <comment xml:lang="ga">cáipéis DVI TeX</comment>
+ <comment xml:lang="fur">document DVI TeX</comment>
+ <comment xml:lang="fr">document TeX DVI</comment>
+ <comment xml:lang="fo">TeX DVI skjal</comment>
+ <comment xml:lang="fi">TeX DVI -asiakirja</comment>
+ <comment xml:lang="eu">TeX DVI dokumentua</comment>
+ <comment xml:lang="es">documento TeX DVI</comment>
+ <comment xml:lang="eo">DVI-dokumento de TeX</comment>
+ <comment xml:lang="en_GB">TeX DVI document</comment>
+ <comment xml:lang="el">Έγγραφο TeX DVI</comment>
+ <comment xml:lang="de">TeX-DVI-Dokument</comment>
+ <comment xml:lang="da">TeX DVI-dokument</comment>
+ <comment xml:lang="cs">dokument TeX DVI</comment>
+ <comment xml:lang="ca">document DVI de TeX</comment>
+ <comment xml:lang="bg">Документ — TeX DVI</comment>
+ <comment xml:lang="be@latin">Dakument TeX DVI</comment>
+ <comment xml:lang="be">дакумент TeX DVI</comment>
+ <comment xml:lang="ast">Documentu Tex DVI</comment>
+ <comment xml:lang="ar">مستند TeX DVI</comment>
+ <comment xml:lang="af">TeX DVI-dokument</comment>
<acronym>DVI</acronym>
<expanded-acronym>Device independent file format</expanded-acronym>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="0x02f7" type="little16" offset="0"/>
+ <magic>
+ <match type="little16" value="0x02f7" offset="0"/>
</magic>
<glob pattern="*.dvi"/>
</mime-type>
<mime-type type="application/x-e-theme">
<comment>Enlightenment theme</comment>
- <comment xml:lang="ar">سمة Enlightenment</comment>
- <comment xml:lang="az">Enlightenment örtüyü</comment>
- <comment xml:lang="be@latin">Matyŭ Enlightenment</comment>
- <comment xml:lang="bg">Тема — Enlightenment</comment>
- <comment xml:lang="ca">tema d'Enlightenment</comment>
- <comment xml:lang="cs">motiv Enlightenment</comment>
- <comment xml:lang="cy">Thema Enlightenment</comment>
- <comment xml:lang="da">Enlightenmenttema</comment>
- <comment xml:lang="de">Enlightenment-Thema</comment>
- <comment xml:lang="el">Θέμα Enlightenment</comment>
- <comment xml:lang="en_GB">Enlightenment theme</comment>
- <comment xml:lang="eo">etoso de Enlightenment</comment>
- <comment xml:lang="es">tema de Enlightenment</comment>
- <comment xml:lang="eu">Enlightenment gaia</comment>
- <comment xml:lang="fi">Enlightenment-teema</comment>
- <comment xml:lang="fo">Enlightenment tema</comment>
- <comment xml:lang="fr">thème Enlightenment</comment>
- <comment xml:lang="ga">téama Enlightenment</comment>
- <comment xml:lang="gl">tema de Enlightenment</comment>
- <comment xml:lang="he">ערכת נושא של Enlightenment</comment>
- <comment xml:lang="hr">Enlightenment tema</comment>
- <comment xml:lang="hu">Enlightenment-téma</comment>
- <comment xml:lang="ia">Thema de Enlightenment</comment>
- <comment xml:lang="id">Tema Enlightenment</comment>
- <comment xml:lang="it">Tema Enlightenment</comment>
- <comment xml:lang="ja">Enlightenment テーマ</comment>
- <comment xml:lang="ka">Enlightenment-ის თემა</comment>
- <comment xml:lang="kk">Enlightenment темасы</comment>
- <comment xml:lang="ko">인라이튼먼트 테마</comment>
- <comment xml:lang="lt">Enlightenment tema</comment>
- <comment xml:lang="lv">Enlightenment motīvs</comment>
- <comment xml:lang="ms">Tema Enlightenment</comment>
- <comment xml:lang="nb">Enlightenment tema</comment>
- <comment xml:lang="nl">Enlightenment-thema</comment>
- <comment xml:lang="nn">Enlightenment-tema</comment>
- <comment xml:lang="oc">tèma Enlightenment</comment>
- <comment xml:lang="pl">Motyw Enlightenment</comment>
- <comment xml:lang="pt">tema Enlightenment</comment>
- <comment xml:lang="pt_BR">Tema do Enlightenment</comment>
- <comment xml:lang="ro">Temă Enlightenment</comment>
- <comment xml:lang="ru">Тема Enlightenment</comment>
- <comment xml:lang="sk">Motív Enlightenment</comment>
- <comment xml:lang="sl">Datoteka teme Enlightenment</comment>
- <comment xml:lang="sq">Tema Enlightenment</comment>
- <comment xml:lang="sr">тема за Енлајтмент</comment>
- <comment xml:lang="sv">Enlightenment-tema</comment>
- <comment xml:lang="tr">Enlightenment teması</comment>
- <comment xml:lang="uk">тема Enlightenment</comment>
- <comment xml:lang="vi">Sắc thái Enlightenment</comment>
- <comment xml:lang="zh_CN">Enlightenment 主题</comment>
<comment xml:lang="zh_TW">Enlightenment 佈景主題</comment>
+ <comment xml:lang="zh_CN">Enlightenment 主题</comment>
+ <comment xml:lang="vi">Sắc thái Enlightenment</comment>
+ <comment xml:lang="uk">тема Enlightenment</comment>
+ <comment xml:lang="tr">Enlightenment teması</comment>
+ <comment xml:lang="sv">Enlightenment-tema</comment>
+ <comment xml:lang="sr">тема за Енлајтмент</comment>
+ <comment xml:lang="sq">temë Enlightenment</comment>
+ <comment xml:lang="sl">Datoteka teme Enlightenment</comment>
+ <comment xml:lang="si">බුද්ධත්වයේ තේමාව</comment>
+ <comment xml:lang="sk">Motív Enlightenment</comment>
+ <comment xml:lang="ru">Тема Enlightenment</comment>
+ <comment xml:lang="ro">Temă Enlightenment</comment>
+ <comment xml:lang="pt_BR">Tema do Enlightenment</comment>
+ <comment xml:lang="pt">tema Enlightenment</comment>
+ <comment xml:lang="pl">Motyw Enlightenment</comment>
+ <comment xml:lang="oc">tèma Enlightenment</comment>
+ <comment xml:lang="nn">Enlightenment-tema</comment>
+ <comment xml:lang="nl">Enlightenment-thema</comment>
+ <comment xml:lang="nb">Enlightenment tema</comment>
+ <comment xml:lang="ms">Tema Enlightenment</comment>
+ <comment xml:lang="lv">Enlightenment motīvs</comment>
+ <comment xml:lang="lt">Enlightenment tema</comment>
+ <comment xml:lang="ko">인라이튼먼트 테마</comment>
+ <comment xml:lang="kk">Enlightenment темасы</comment>
+ <comment xml:lang="ka">Enlightenment-ის თემა</comment>
+ <comment xml:lang="ja">Enlightenment テーマ</comment>
+ <comment xml:lang="it">Tema Enlightenment</comment>
+ <comment xml:lang="is">Enlightenment þema</comment>
+ <comment xml:lang="id">Tema Enlightenment</comment>
+ <comment xml:lang="ia">Thema de Enlightenment</comment>
+ <comment xml:lang="hu">Enlightenment-téma</comment>
+ <comment xml:lang="hr">Enlightenment tema</comment>
+ <comment xml:lang="he">ערכת נושא של Enlightenment</comment>
+ <comment xml:lang="gl">tema de Enlightenment</comment>
+ <comment xml:lang="ga">téama Enlightenment</comment>
+ <comment xml:lang="fur">teme di Enlightenment</comment>
+ <comment xml:lang="fr">thème Enlightenment</comment>
+ <comment xml:lang="fo">Enlightenment tema</comment>
+ <comment xml:lang="fi">Enlightenment-teema</comment>
+ <comment xml:lang="eu">Enlightenment gaia</comment>
+ <comment xml:lang="es">tema de Enlightenment</comment>
+ <comment xml:lang="eo">etoso de Enlightenment</comment>
+ <comment xml:lang="en_GB">Enlightenment theme</comment>
+ <comment xml:lang="el">Θέμα Enlightenment</comment>
+ <comment xml:lang="de">Enlightenment-Thema</comment>
+ <comment xml:lang="da">Enlightenmenttema</comment>
+ <comment xml:lang="cy">Thema Enlightenment</comment>
+ <comment xml:lang="cs">motiv Enlightenment</comment>
+ <comment xml:lang="ca">tema d'Enlightenment</comment>
+ <comment xml:lang="bg">Тема — Enlightenment</comment>
+ <comment xml:lang="be@latin">Matyŭ Enlightenment</comment>
+ <comment xml:lang="be">тэма Enlightenment</comment>
+ <comment xml:lang="az">Enlightenment örtüyü</comment>
+ <comment xml:lang="ar">سمة Enlightenment</comment>
+ <comment xml:lang="af">Enlightenment-tema</comment>
<glob pattern="*.etheme"/>
</mime-type>
<mime-type type="application/x-egon">
<comment>Egon Animator animation</comment>
- <comment xml:lang="ar">تحريكة محرك Egon</comment>
- <comment xml:lang="be@latin">Animacyja Egon Animator</comment>
- <comment xml:lang="bg">Анимация — Egon Animator</comment>
- <comment xml:lang="ca">animació d'Egon Animator</comment>
- <comment xml:lang="cs">animace Egon Animator</comment>
- <comment xml:lang="da">Egon Animator-animation</comment>
- <comment xml:lang="de">Egon-Animator-Animation</comment>
- <comment xml:lang="el">Κινούμενο σχέδιο Egon Animator</comment>
- <comment xml:lang="en_GB">Egon Animator animation</comment>
- <comment xml:lang="eo">animacio de Egon Animator</comment>
- <comment xml:lang="es">animación de Egon Animator</comment>
- <comment xml:lang="eu">Egon Animator-eko animazioa</comment>
- <comment xml:lang="fi">Egon Animator -animaatio</comment>
- <comment xml:lang="fo">Egon Animator teknimyndagerð</comment>
- <comment xml:lang="fr">animation Egon Animator</comment>
- <comment xml:lang="ga">beochan Egon Animator</comment>
- <comment xml:lang="gl">animación de Egon Animator</comment>
- <comment xml:lang="he">אנימצייה של Egon Animator</comment>
- <comment xml:lang="hr">Egon Animator animacija</comment>
- <comment xml:lang="hu">Egon Animator-animáció</comment>
- <comment xml:lang="ia">Imagine Egon Animator</comment>
- <comment xml:lang="id">Animasi Egon Animator</comment>
- <comment xml:lang="it">Animazione Egon Animator</comment>
- <comment xml:lang="ja">Egon Animator アニメーション</comment>
- <comment xml:lang="ka">Egon Animator-ის ანიმაცია</comment>
- <comment xml:lang="kk">Egon Animator анимациясы</comment>
- <comment xml:lang="ko">Egon 애니메이터 애니메이션</comment>
- <comment xml:lang="lt">Egon Animator animacija</comment>
- <comment xml:lang="lv">Egon Animator animācija</comment>
- <comment xml:lang="ms">Animasi Egon Animator</comment>
- <comment xml:lang="nb">Egon animator-animasjon</comment>
- <comment xml:lang="nl">Egon Animator-animatie</comment>
- <comment xml:lang="nn">Egon Animator-animasjon</comment>
- <comment xml:lang="oc">animacion Egon Animator</comment>
- <comment xml:lang="pl">Animacja Egon Animator</comment>
- <comment xml:lang="pt">animação Egon Animator</comment>
- <comment xml:lang="pt_BR">Animação do Egon Animator</comment>
- <comment xml:lang="ro">Animație Egon Animator</comment>
- <comment xml:lang="ru">Анимация Egon Animator</comment>
- <comment xml:lang="sk">Animácia Egon Animator</comment>
- <comment xml:lang="sl">Datoteka animacije Egon Animator</comment>
- <comment xml:lang="sq">Animim Egon Animator</comment>
- <comment xml:lang="sr">анимација Егон аниматора</comment>
- <comment xml:lang="sv">Egon Animator-animering</comment>
- <comment xml:lang="tr">Egon Animator canlandırması</comment>
- <comment xml:lang="uk">анімація Egon Animator</comment>
- <comment xml:lang="vi">Hoạt ảnh Egon Animator</comment>
- <comment xml:lang="zh_CN">Egon Animator 动画</comment>
<comment xml:lang="zh_TW">Egon Animator 動畫</comment>
+ <comment xml:lang="zh_CN">Egon Animator 动画</comment>
+ <comment xml:lang="vi">Hoạt ảnh Egon Animator</comment>
+ <comment xml:lang="uk">анімація Egon Animator</comment>
+ <comment xml:lang="tr">Egon Animator canlandırması</comment>
+ <comment xml:lang="sv">Egon Animator-animering</comment>
+ <comment xml:lang="sr">анимација Егон аниматора</comment>
+ <comment xml:lang="sq">animacion Egon Animator</comment>
+ <comment xml:lang="sl">Datoteka animacije Egon Animator</comment>
+ <comment xml:lang="si">Egon Animator සජීවිකරණය</comment>
+ <comment xml:lang="sk">Animácia Egon Animator</comment>
+ <comment xml:lang="ru">Анимация Egon Animator</comment>
+ <comment xml:lang="ro">Animație Egon Animator</comment>
+ <comment xml:lang="pt_BR">Animação do Egon Animator</comment>
+ <comment xml:lang="pt">animação Egon Animator</comment>
+ <comment xml:lang="pl">Animacja Egon Animator</comment>
+ <comment xml:lang="oc">animacion Egon Animator</comment>
+ <comment xml:lang="nn">Egon Animator-animasjon</comment>
+ <comment xml:lang="nl">Egon Animator-animatie</comment>
+ <comment xml:lang="nb">Egon animator-animasjon</comment>
+ <comment xml:lang="ms">Animasi Egon Animator</comment>
+ <comment xml:lang="lv">Egon Animator animācija</comment>
+ <comment xml:lang="lt">Egon Animator animacija</comment>
+ <comment xml:lang="ko">Egon 애니메이터 애니메이션</comment>
+ <comment xml:lang="kk">Egon Animator анимациясы</comment>
+ <comment xml:lang="ka">Egon Animator-ის ანიმაცია</comment>
+ <comment xml:lang="ja">Egon Animator アニメーション</comment>
+ <comment xml:lang="it">Animazione Egon Animator</comment>
+ <comment xml:lang="is">Egon Animator hreyfimynd</comment>
+ <comment xml:lang="id">Animasi Egon Animator</comment>
+ <comment xml:lang="ia">Imagine Egon Animator</comment>
+ <comment xml:lang="hu">Egon Animator-animáció</comment>
+ <comment xml:lang="hr">Egon Animator animacija</comment>
+ <comment xml:lang="he">אנימצייה של Egon Animator</comment>
+ <comment xml:lang="gl">animación de Egon Animator</comment>
+ <comment xml:lang="ga">beochan Egon Animator</comment>
+ <comment xml:lang="fur">animazion Egon Animator</comment>
+ <comment xml:lang="fr">animation Egon Animator</comment>
+ <comment xml:lang="fo">Egon Animator teknimyndagerð</comment>
+ <comment xml:lang="fi">Egon Animator -animaatio</comment>
+ <comment xml:lang="eu">Egon Animator-eko animazioa</comment>
+ <comment xml:lang="es">animación de Egon Animator</comment>
+ <comment xml:lang="eo">animacio de Egon Animator</comment>
+ <comment xml:lang="en_GB">Egon Animator animation</comment>
+ <comment xml:lang="el">Κινούμενο σχέδιο Egon Animator</comment>
+ <comment xml:lang="de">Egon-Animator-Animation</comment>
+ <comment xml:lang="da">Egon Animator-animation</comment>
+ <comment xml:lang="cs">animace Egon Animator</comment>
+ <comment xml:lang="ca">animació d'Egon Animator</comment>
+ <comment xml:lang="bg">Анимация — Egon Animator</comment>
+ <comment xml:lang="be@latin">Animacyja Egon Animator</comment>
+ <comment xml:lang="be">анімацыя Egon Animator</comment>
+ <comment xml:lang="ar">تحريكة محرك Egon</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.egon"/>
</mime-type>
<mime-type type="application/x-executable">
- <comment>executable</comment>
- <comment xml:lang="ar">تنفيذي</comment>
- <comment xml:lang="be@latin">vykonvalny fajł</comment>
- <comment xml:lang="bg">Изпълним файл</comment>
- <comment xml:lang="ca">executable</comment>
- <comment xml:lang="cs">spustitelný soubor</comment>
- <comment xml:lang="da">kørbar</comment>
- <comment xml:lang="de">Programm</comment>
- <comment xml:lang="el">Εκτελέσιμο</comment>
- <comment xml:lang="en_GB">executable</comment>
- <comment xml:lang="eo">plenumebla</comment>
- <comment xml:lang="es">ejecutable</comment>
- <comment xml:lang="eu">exekutagarria</comment>
- <comment xml:lang="fi">suoritettava ohjelma</comment>
- <comment xml:lang="fo">inningarfør</comment>
- <comment xml:lang="fr">exécutable</comment>
- <comment xml:lang="ga">comhad inrite</comment>
- <comment xml:lang="gl">executábel</comment>
- <comment xml:lang="he">קובץ הרצה</comment>
- <comment xml:lang="hr">Izvršna datoteka</comment>
- <comment xml:lang="hu">futtatható</comment>
- <comment xml:lang="ia">Executabile</comment>
- <comment xml:lang="id">dapat dieksekusi</comment>
- <comment xml:lang="it">Eseguibile</comment>
- <comment xml:lang="ja">実行ファイル</comment>
- <comment xml:lang="kk">орындалатын</comment>
- <comment xml:lang="ko">실행 파일</comment>
- <comment xml:lang="lt">vykdomasis failas</comment>
- <comment xml:lang="lv">izpildāmais</comment>
- <comment xml:lang="ms">Bolehlaksana</comment>
- <comment xml:lang="nb">kjørbar</comment>
- <comment xml:lang="nl">uitvoerbaar bestand</comment>
- <comment xml:lang="nn">køyrbar</comment>
- <comment xml:lang="oc">executable</comment>
- <comment xml:lang="pl">Program</comment>
- <comment xml:lang="pt">executável</comment>
- <comment xml:lang="pt_BR">Executável</comment>
- <comment xml:lang="ro">executabil</comment>
- <comment xml:lang="ru">Исполняемый</comment>
- <comment xml:lang="sk">Spustiteľný súbor</comment>
- <comment xml:lang="sl">izvedljiva datoteka</comment>
- <comment xml:lang="sq">I ekzekutueshëm</comment>
- <comment xml:lang="sr">извршна</comment>
- <comment xml:lang="sv">körbar fil</comment>
- <comment xml:lang="tr">çalıştırılabilir</comment>
+ <comment>Executable</comment>
<comment xml:lang="uk">виконуваний файл</comment>
- <comment xml:lang="vi">thực hiện được</comment>
- <comment xml:lang="zh_CN">可执行文件</comment>
- <comment xml:lang="zh_TW">可執行檔</comment>
+ <comment xml:lang="sv">Körbar fil</comment>
+ <comment xml:lang="ru">Исполняемый</comment>
+ <comment xml:lang="pt_BR">Executável</comment>
+ <comment xml:lang="pl">Program</comment>
+ <comment xml:lang="it">Eseguibile</comment>
+ <comment xml:lang="gl">Executábel</comment>
+ <comment xml:lang="eu">Exekutagarria</comment>
+ <comment xml:lang="es">ejecutable</comment>
+ <comment xml:lang="de">Ausführbare Datei</comment>
+ <comment xml:lang="be">выконвальны файл</comment>
<generic-icon name="application-x-executable"/>
<magic priority="40">
- <match value="\177ELF" type="string" offset="0">
- <match value="1" type="byte" offset="5">
- <match value="2" type="little16" offset="16"/>
- </match>
+ <match type="string" value="\177ELF" offset="0">
+ <match type="byte" value="1" offset="5"/>
</match>
- <match value="\177ELF" type="string" offset="0">
- <match value="2" type="byte" offset="5">
- <match value="2" type="big16" offset="16"/>
- </match>
+ <match type="string" value="\177ELF" offset="0">
+ <match type="byte" value="2" offset="5"/>
</match>
- <match value="MZ" type="string" offset="0"/>
- <match value="0x521c" type="little16" offset="0"/>
- <match value="0420" type="host16" offset="0"/>
- <match value="0421" type="host16" offset="0"/>
- <match value="0603" type="little16" offset="0"/>
+ <match type="string" value="MZ" offset="0"/>
+ <match type="little16" value="0x521c" offset="0"/>
+ <match type="host16" value="0420" offset="0"/>
+ <match type="host16" value="0421" offset="0"/>
+ <match type="little16" value="0603" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-fluid">
<comment>FLTK Fluid file</comment>
- <comment xml:lang="ar">ملف FLTK Fluid</comment>
- <comment xml:lang="be@latin">Fajł FLTK Fluid</comment>
- <comment xml:lang="bg">Интерфейс — FLTK Fluid</comment>
- <comment xml:lang="ca">fitxer FLTK Fluid</comment>
- <comment xml:lang="cs">soubor FLTK Fluid</comment>
- <comment xml:lang="da">FLTK Fluid-fil</comment>
- <comment xml:lang="de">FLTK-Fluid-Datei</comment>
- <comment xml:lang="el">Αρχείο FLTK Fluid</comment>
- <comment xml:lang="en_GB">FLTK Fluid file</comment>
- <comment xml:lang="es">archivo FLTK Fluid</comment>
- <comment xml:lang="eu">FLTK Fluid fitxategia</comment>
- <comment xml:lang="fi">FLTK Fluid -tiedosto</comment>
- <comment xml:lang="fo">FLTK Fluid fíla</comment>
- <comment xml:lang="fr">fichier Fluid FLTK</comment>
- <comment xml:lang="ga">comhad FLTK Fluid</comment>
- <comment xml:lang="gl">ficheiro FLTK Fluid</comment>
- <comment xml:lang="he">קובץ FLTK Fluid</comment>
- <comment xml:lang="hr">FLTK Fluid datoteka</comment>
- <comment xml:lang="hu">FLTK Fluid fájl</comment>
- <comment xml:lang="ia">File Fluid de FLTK</comment>
- <comment xml:lang="id">Berkas FLTK Fluid</comment>
- <comment xml:lang="it">File FLTK Fluid</comment>
- <comment xml:lang="ja">FLTK Fluid ファイル</comment>
- <comment xml:lang="ka">FLTK Fluid-ის ფაილი</comment>
- <comment xml:lang="kk">FLTK Fluid файлы</comment>
- <comment xml:lang="ko">FLTK Fluid 파일</comment>
- <comment xml:lang="lt">FLTK Fluid failas</comment>
- <comment xml:lang="lv">FLTK Fluid datne</comment>
- <comment xml:lang="nb">FLTK Fluid-fil</comment>
- <comment xml:lang="nl">FLTK FLUID-bestand</comment>
- <comment xml:lang="nn">FLTK Fluid-fil</comment>
- <comment xml:lang="oc">fichièr Fluid FLTK</comment>
- <comment xml:lang="pl">Plik Fluid FLTK</comment>
- <comment xml:lang="pt">ficheiro FLTK Fluid</comment>
- <comment xml:lang="pt_BR">Arquivo Fluid do FLTK</comment>
- <comment xml:lang="ro">Fișier FLTK Fluid</comment>
- <comment xml:lang="ru">Файл FLTK Fluid</comment>
- <comment xml:lang="sk">Súbor FLTK Fluid</comment>
- <comment xml:lang="sl">Datoteka FLTK Fluid</comment>
- <comment xml:lang="sq">File FLTK Fluid</comment>
- <comment xml:lang="sr">датотека ФЛТК Флуида</comment>
- <comment xml:lang="sv">FLTK Fluid-fil</comment>
- <comment xml:lang="tr">FLTK Fluid dosyası</comment>
- <comment xml:lang="uk">файл FLTK Fluid</comment>
- <comment xml:lang="vi">Tập tin Fluid FLTK</comment>
- <comment xml:lang="zh_CN">FLTK 流体文档</comment>
<comment xml:lang="zh_TW">FLTK Fluid 檔</comment>
+ <comment xml:lang="zh_CN">FLTK 流体文档</comment>
+ <comment xml:lang="vi">Tập tin Fluid FLTK</comment>
+ <comment xml:lang="uk">файл FLTK Fluid</comment>
+ <comment xml:lang="tr">FLTK Fluid dosyası</comment>
+ <comment xml:lang="sv">FLTK Fluid-fil</comment>
+ <comment xml:lang="sr">датотека ФЛТК Флуида</comment>
+ <comment xml:lang="sq">kartelë FLTK Fluid</comment>
+ <comment xml:lang="sl">Datoteka FLTK Fluid</comment>
+ <comment xml:lang="si">FLTK තරල ගොනුව</comment>
+ <comment xml:lang="sk">Súbor FLTK Fluid</comment>
+ <comment xml:lang="ru">Файл FLTK Fluid</comment>
+ <comment xml:lang="ro">Fișier FLTK Fluid</comment>
+ <comment xml:lang="pt_BR">Arquivo Fluid do FLTK</comment>
+ <comment xml:lang="pt">ficheiro FLTK Fluid</comment>
+ <comment xml:lang="pl">Plik Fluid FLTK</comment>
+ <comment xml:lang="oc">fichièr Fluid FLTK</comment>
+ <comment xml:lang="nn">FLTK Fluid-fil</comment>
+ <comment xml:lang="nl">FLTK FLUID-bestand</comment>
+ <comment xml:lang="nb">FLTK Fluid-fil</comment>
+ <comment xml:lang="lv">FLTK Fluid datne</comment>
+ <comment xml:lang="lt">FLTK Fluid failas</comment>
+ <comment xml:lang="ko">FLTK Fluid 파일</comment>
+ <comment xml:lang="kk">FLTK Fluid файлы</comment>
+ <comment xml:lang="ka">FLTK Fluid-ის ფაილი</comment>
+ <comment xml:lang="ja">FLTK Fluid ファイル</comment>
+ <comment xml:lang="it">File FLTK Fluid</comment>
+ <comment xml:lang="is">FLTK Fluid skrá</comment>
+ <comment xml:lang="id">Berkas FLTK Fluid</comment>
+ <comment xml:lang="ia">File Fluid de FLTK</comment>
+ <comment xml:lang="hu">FLTK Fluid fájl</comment>
+ <comment xml:lang="hr">FLTK Fluid datoteka</comment>
+ <comment xml:lang="he">קובץ FLTK Fluid</comment>
+ <comment xml:lang="gl">ficheiro FLTK Fluid</comment>
+ <comment xml:lang="ga">comhad FLTK Fluid</comment>
+ <comment xml:lang="fur">file FLTK Fluid</comment>
+ <comment xml:lang="fr">fichier Fluid FLTK</comment>
+ <comment xml:lang="fo">FLTK Fluid fíla</comment>
+ <comment xml:lang="fi">FLTK Fluid -tiedosto</comment>
+ <comment xml:lang="eu">FLTK Fluid fitxategia</comment>
+ <comment xml:lang="es">archivo FLTK Fluid</comment>
+ <comment xml:lang="en_GB">FLTK Fluid file</comment>
+ <comment xml:lang="el">Αρχείο FLTK Fluid</comment>
+ <comment xml:lang="de">FLTK-Fluid-Datei</comment>
+ <comment xml:lang="da">FLTK Fluid-fil</comment>
+ <comment xml:lang="cs">soubor FLTK Fluid</comment>
+ <comment xml:lang="ca">fitxer FLTK Fluid</comment>
+ <comment xml:lang="bg">Интерфейс — FLTK Fluid</comment>
+ <comment xml:lang="be@latin">Fajł FLTK Fluid</comment>
+ <comment xml:lang="be">файл FLTK Fluid</comment>
+ <comment xml:lang="ar">ملف FLTK Fluid</comment>
+ <comment xml:lang="af">FLTK Fluit-lêer</comment>
<acronym>FLTK</acronym>
<expanded-acronym>Fast Light Toolkit</expanded-acronym>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="# data file for the Fltk" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="# data file for the Fltk" offset="0"/>
</magic>
<glob pattern="*.fl"/>
</mime-type>
<mime-type type="font/woff">
<comment>WOFF font</comment>
- <comment xml:lang="ast">Fonte WOFF</comment>
- <comment xml:lang="ca">lletra WOFF</comment>
- <comment xml:lang="cs">font WOFF</comment>
- <comment xml:lang="da">WOFF-skrifttype</comment>
- <comment xml:lang="de">WOFF-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά WOFF</comment>
- <comment xml:lang="en_GB">WOFF font</comment>
- <comment xml:lang="es">tipo de letra WOFF</comment>
- <comment xml:lang="eu">WOFF letra-tipoa</comment>
- <comment xml:lang="fi">WOFF-fontti</comment>
- <comment xml:lang="fr">police WOFF</comment>
- <comment xml:lang="ga">cló WOFF</comment>
- <comment xml:lang="gl">Tipo de letra WOFF</comment>
- <comment xml:lang="he">גופן WOFF</comment>
- <comment xml:lang="hr">WOFF slovo</comment>
- <comment xml:lang="hu">WOFF-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras WOFF</comment>
- <comment xml:lang="id">Fonta WOFF</comment>
- <comment xml:lang="it">Carattere WOFF</comment>
- <comment xml:lang="ja">WOFF フォント</comment>
- <comment xml:lang="kk">WOFF қарібі</comment>
- <comment xml:lang="ko">WOFF 글꼴</comment>
- <comment xml:lang="lv">WOFF fonts</comment>
- <comment xml:lang="oc">poliça WOFF</comment>
- <comment xml:lang="pl">Czcionka WOFF</comment>
- <comment xml:lang="pt">letra WOFF</comment>
- <comment xml:lang="pt_BR">Fonte WOFF</comment>
- <comment xml:lang="ru">Шрифт WOFF</comment>
- <comment xml:lang="sk">Písmo WOFF</comment>
- <comment xml:lang="sl">Pisava WOFF</comment>
- <comment xml:lang="sr">ВОФФ слова</comment>
- <comment xml:lang="sv">WOFF-typsnitt</comment>
- <comment xml:lang="tr">WOFF yazı tipi</comment>
- <comment xml:lang="uk">шрифт WOFF</comment>
- <comment xml:lang="zh_CN">WOFF 字体</comment>
<comment xml:lang="zh_TW">WOFF 字型</comment>
+ <comment xml:lang="zh_CN">WOFF 字体</comment>
+ <comment xml:lang="uk">шрифт WOFF</comment>
+ <comment xml:lang="tr">WOFF yazı tipi</comment>
+ <comment xml:lang="sv">WOFF-typsnitt</comment>
+ <comment xml:lang="sr">ВОФФ слова</comment>
+ <comment xml:lang="sq">shkronja WOFF</comment>
+ <comment xml:lang="sl">Pisava WOFF</comment>
+ <comment xml:lang="si">WOFF අකුරු</comment>
+ <comment xml:lang="sk">Písmo WOFF</comment>
+ <comment xml:lang="ru">Шрифт WOFF</comment>
+ <comment xml:lang="pt_BR">Fonte WOFF</comment>
+ <comment xml:lang="pt">letra WOFF</comment>
+ <comment xml:lang="pl">Czcionka WOFF</comment>
+ <comment xml:lang="oc">poliça WOFF</comment>
+ <comment xml:lang="nl">WOFF-lettertype</comment>
+ <comment xml:lang="lv">WOFF fonts</comment>
+ <comment xml:lang="lt">WOFF šriftas</comment>
+ <comment xml:lang="ko">WOFF 글꼴</comment>
+ <comment xml:lang="kk">WOFF қарібі</comment>
+ <comment xml:lang="ja">WOFF フォント</comment>
+ <comment xml:lang="it">Carattere WOFF</comment>
+ <comment xml:lang="is">WOFF letur</comment>
+ <comment xml:lang="id">Fonta WOFF</comment>
+ <comment xml:lang="ia">Typo de litteras WOFF</comment>
+ <comment xml:lang="hu">WOFF-betűkészlet</comment>
+ <comment xml:lang="hr">WOFF font</comment>
+ <comment xml:lang="he">גופן WOFF</comment>
+ <comment xml:lang="gl">Tipo de letra WOFF</comment>
+ <comment xml:lang="ga">cló WOFF</comment>
+ <comment xml:lang="fur">caratar WOFF</comment>
+ <comment xml:lang="fr">police WOFF</comment>
+ <comment xml:lang="fi">WOFF-fontti</comment>
+ <comment xml:lang="eu">WOFF letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra WOFF</comment>
+ <comment xml:lang="en_GB">WOFF font</comment>
+ <comment xml:lang="el">Γραμματοσειρά WOFF</comment>
+ <comment xml:lang="de">WOFF-Schrift</comment>
+ <comment xml:lang="da">WOFF-skrifttype</comment>
+ <comment xml:lang="cs">font WOFF</comment>
+ <comment xml:lang="ca">lletra WOFF</comment>
+ <comment xml:lang="bg">Шрифт — WOFF</comment>
+ <comment xml:lang="be">шрыфт WOFF</comment>
+ <comment xml:lang="ast">Fonte WOFF</comment>
+ <comment xml:lang="ar">خط WOFF</comment>
+ <comment xml:lang="af">WOFF-skriftipe</comment>
<acronym>WOFF</acronym>
<expanded-acronym>Web Open Font Format</expanded-acronym>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="0x774f4646" type="big32" offset="0"/>
+ <magic>
+ <match type="big32" value="0x774f4646" offset="0"/>
</magic>
<glob pattern="*.woff"/>
<alias type="application/font-woff"/>
</mime-type>
- <mime-type type="font/woff">
+ <mime-type type="font/woff2">
<comment>WOFF2 font</comment>
- <comment xml:lang="ast">Fonte WOFF2</comment>
- <comment xml:lang="ca">lletra WOFF2</comment>
- <comment xml:lang="cs">font WOFF2</comment>
- <comment xml:lang="de">WOFF2-Schrift</comment>
- <comment xml:lang="en_GB">WOFF2 font</comment>
- <comment xml:lang="es">tipo de letra WOFF2</comment>
- <comment xml:lang="fi">WOFF2-fontti</comment>
- <comment xml:lang="hr">WOFF2 slovo</comment>
- <comment xml:lang="hu">WOFF2 betűkészlet</comment>
- <comment xml:lang="id">Fonta WOFF2</comment>
- <comment xml:lang="it">Carattere WOFF2</comment>
- <comment xml:lang="kk">WOFF2 қарібі</comment>
- <comment xml:lang="ko">WOFF2 글꼴</comment>
- <comment xml:lang="pl">Czcionka WOFF2</comment>
- <comment xml:lang="pt_BR">Fonte WOFF2</comment>
- <comment xml:lang="ru">Шрифт WOFF2</comment>
- <comment xml:lang="sk">Písmo WOFF2</comment>
- <comment xml:lang="sv">WOFF2-typsnitt</comment>
- <comment xml:lang="uk">шрифт WOFF2</comment>
- <comment xml:lang="zh_CN">WOFF2 字体</comment>
<comment xml:lang="zh_TW">WOFF2 字型</comment>
+ <comment xml:lang="zh_CN">WOFF2 字体</comment>
+ <comment xml:lang="uk">шрифт WOFF2</comment>
+ <comment xml:lang="tr">WOFF2 yazı tipi</comment>
+ <comment xml:lang="sv">WOFF2-typsnitt</comment>
+ <comment xml:lang="sq">shkronja WOFF2</comment>
+ <comment xml:lang="sl">Pisava WOFF2</comment>
+ <comment xml:lang="si">WOFF2 අකුරු</comment>
+ <comment xml:lang="sk">Písmo WOFF2</comment>
+ <comment xml:lang="ru">Шрифт WOFF2</comment>
+ <comment xml:lang="pt_BR">Fonte WOFF2</comment>
+ <comment xml:lang="pt">letra WOFF2</comment>
+ <comment xml:lang="pl">Czcionka WOFF2</comment>
+ <comment xml:lang="oc">poliça WOFF2</comment>
+ <comment xml:lang="nl">WOFF2-lettertype</comment>
+ <comment xml:lang="lt">WOFF2 šriftas</comment>
+ <comment xml:lang="ko">WOFF2 글꼴</comment>
+ <comment xml:lang="kk">WOFF2 қарібі</comment>
+ <comment xml:lang="ja">WOFF2 フォント</comment>
+ <comment xml:lang="it">Carattere WOFF2</comment>
+ <comment xml:lang="is">WOFF2 letur</comment>
+ <comment xml:lang="id">Fonta WOFF2</comment>
+ <comment xml:lang="hu">WOFF2 betűkészlet</comment>
+ <comment xml:lang="hr">WOFF2 font</comment>
+ <comment xml:lang="he">גופן WOFF2</comment>
+ <comment xml:lang="gl">Tipo de letra WOFF2</comment>
+ <comment xml:lang="ga">cló WOFF2</comment>
+ <comment xml:lang="fur">caratar WOFF2</comment>
+ <comment xml:lang="fr">police WOFF2</comment>
+ <comment xml:lang="fi">WOFF2-fontti</comment>
+ <comment xml:lang="eu">WOFF2 letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra WOFF2</comment>
+ <comment xml:lang="en_GB">WOFF2 font</comment>
+ <comment xml:lang="de">WOFF2-Schrift</comment>
+ <comment xml:lang="da">WOFF2-skrifttype</comment>
+ <comment xml:lang="cs">font WOFF2</comment>
+ <comment xml:lang="ca">lletra WOFF2</comment>
+ <comment xml:lang="bg">Шрифт — WOFF2</comment>
+ <comment xml:lang="be">шрыфт WOFF 2</comment>
+ <comment xml:lang="ast">Fonte WOFF2</comment>
+ <comment xml:lang="ar">خط WOFF2</comment>
+ <comment xml:lang="af">WOFF2-skriftipe</comment>
<acronym>WOFF2</acronym>
<expanded-acronym>Web Open Font Format 2.0</expanded-acronym>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="0x774f4632" type="big32" offset="0"/>
+ <magic>
+ <match type="big32" value="0x774f4632" offset="0"/>
</magic>
<glob pattern="*.woff2"/>
</mime-type>
<mime-type type="application/x-font-type1">
<comment>PostScript type-1 font</comment>
- <comment xml:lang="ca">lletra type-1 de PostScript</comment>
- <comment xml:lang="cs">font PostScript type-1</comment>
- <comment xml:lang="de">PostScript-Typ-1-Schrift</comment>
- <comment xml:lang="en_GB">PostScript type-1 font</comment>
- <comment xml:lang="es">tipo de letra PostScript Type-1</comment>
- <comment xml:lang="eu">PostScript type-1 letra-tipoa</comment>
- <comment xml:lang="fr">police PostScript Type 1</comment>
- <comment xml:lang="ga">cló PostScript type-1</comment>
- <comment xml:lang="hr">PostScript type-1 slovo</comment>
- <comment xml:lang="hu">PostScript type-1 betűkészlet</comment>
- <comment xml:lang="id">fonta PostScript type-1</comment>
- <comment xml:lang="it">Carattere PostScript type-1</comment>
- <comment xml:lang="kk">PostScript type-1 қарібі</comment>
- <comment xml:lang="ko">PostScript Type-1 글꼴</comment>
- <comment xml:lang="pl">Czcionka PostScript Type-1</comment>
- <comment xml:lang="pt_BR">Fonte PostScript tipo-1</comment>
- <comment xml:lang="ru">Шрифт PostScript Type-1</comment>
- <comment xml:lang="sk">Písmo PostScript typu 1</comment>
- <comment xml:lang="sr">слова Постскрипта врсте-1</comment>
- <comment xml:lang="sv">PostScript type-1-typsnitt</comment>
- <comment xml:lang="tr">PostScript tip-1 yazı tipi</comment>
- <comment xml:lang="uk">шрифт type-1 PostScript</comment>
- <comment xml:lang="zh_CN">PostScript type-1 字体</comment>
<comment xml:lang="zh_TW">PostScript type-1 字型</comment>
+ <comment xml:lang="zh_CN">PostScript type-1 字体</comment>
+ <comment xml:lang="uk">шрифт type-1 PostScript</comment>
+ <comment xml:lang="tr">PostScript tip-1 yazı tipi</comment>
+ <comment xml:lang="sv">PostScript type-1-typsnitt</comment>
+ <comment xml:lang="sr">слова Постскрипта врсте-1</comment>
+ <comment xml:lang="sq">shkronja PostScript type-1</comment>
+ <comment xml:lang="sl">Datoteka pisave PostScript vrsta-1</comment>
+ <comment xml:lang="si">PostScript වර්ගය-1 අකුරු</comment>
+ <comment xml:lang="sk">Písmo PostScript typu 1</comment>
+ <comment xml:lang="ru">Шрифт PostScript Type-1</comment>
+ <comment xml:lang="pt_BR">Fonte PostScript tipo-1</comment>
+ <comment xml:lang="pt">letra PostScript Tipo 1</comment>
+ <comment xml:lang="pl">Czcionka PostScript Type-1</comment>
+ <comment xml:lang="nl">PostScript type-1-lettertype</comment>
+ <comment xml:lang="ko">PostScript Type-1 글꼴</comment>
+ <comment xml:lang="kk">PostScript type-1 қарібі</comment>
+ <comment xml:lang="ja">PostScript type-1 フォント</comment>
+ <comment xml:lang="it">Carattere PostScript type-1</comment>
+ <comment xml:lang="is">PostScript type-1 letur</comment>
+ <comment xml:lang="id">Fonta PostScript type-1</comment>
+ <comment xml:lang="hu">PostScript type-1 betűkészlet</comment>
+ <comment xml:lang="hr">PostScript type-1 font</comment>
+ <comment xml:lang="he">גופן PostScript type-1</comment>
+ <comment xml:lang="gl">Tipo de letra PostScript tipo 1</comment>
+ <comment xml:lang="ga">cló PostScript type-1</comment>
+ <comment xml:lang="fur">caratar PostScript type-1</comment>
+ <comment xml:lang="fr">police PostScript Type 1</comment>
+ <comment xml:lang="fi">PostScript type-1 -fontti</comment>
+ <comment xml:lang="eu">PostScript type-1 letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra PostScript Type-1</comment>
+ <comment xml:lang="en_GB">PostScript type-1 font</comment>
+ <comment xml:lang="de">PostScript-Typ-1-Schrift</comment>
+ <comment xml:lang="da">PostScript type-1-skrifttype</comment>
+ <comment xml:lang="cs">font PostScript type-1</comment>
+ <comment xml:lang="ca">lletra type-1 de PostScript</comment>
+ <comment xml:lang="bg">Шрифт — PostScript type-1</comment>
+ <comment xml:lang="be">шрыфт PostScript type-1</comment>
+ <comment xml:lang="ar">خط بوستسكربت النوع ١</comment>
+ <comment xml:lang="af">PostScript tipe 1-skriftipe</comment>
<sub-class-of type="application/postscript"/>
<generic-icon name="font-x-generic"/>
<magic priority="60">
- <match value="LWFN" type="string" offset="0"/>
- <match value="LWFN" type="string" offset="65"/>
- <match value="%!PS-AdobeFont-1." type="string" offset="0"/>
- <match value="%!PS-AdobeFont-1." type="string" offset="6"/>
- <match value="%!FontType1-1." type="string" offset="0"/>
- <match value="%!FontType1-1." type="string" offset="6"/>
+ <match type="string" value="LWFN" offset="0"/>
+ <match type="string" value="LWFN" offset="65"/>
+ <match type="string" value="%!PS-AdobeFont-1." offset="0"/>
+ <match type="string" value="%!PS-AdobeFont-1." offset="6"/>
+ <match type="string" value="%!FontType1-1." offset="0"/>
+ <match type="string" value="%!FontType1-1." offset="6"/>
</magic>
<glob pattern="*.pfa"/>
<glob pattern="*.pfb"/>
@@ -10757,454 +11536,500 @@
</mime-type>
<mime-type type="application/x-font-afm">
<comment>Adobe font metrics</comment>
- <comment xml:lang="ar">مقاييس خط أدوبي</comment>
- <comment xml:lang="az">Adobe yazı növü metrikləri</comment>
- <comment xml:lang="be@latin">Metryka šryftu Adobe</comment>
- <comment xml:lang="bg">Шрифтова метрика — Adobe</comment>
- <comment xml:lang="ca">mètrica de lletra d'Adobe</comment>
- <comment xml:lang="cs">metrika fontu Adobe</comment>
- <comment xml:lang="cy">Metrigau Ffont Adobe</comment>
- <comment xml:lang="da">Adobe skrifttypefil</comment>
- <comment xml:lang="de">Adobe-Schriftmetriken</comment>
- <comment xml:lang="el">Μετρικά γραμματοσειράς Adobe</comment>
- <comment xml:lang="en_GB">Adobe font metrics</comment>
- <comment xml:lang="eo">metrikoj de Adobe-tiparo</comment>
- <comment xml:lang="es">métricas tipográficas de Adobe</comment>
- <comment xml:lang="eu">Adobe letra-tipoen neurriak</comment>
- <comment xml:lang="fi">Adobe-fonttimitat</comment>
- <comment xml:lang="fr">métriques de police Adobe</comment>
- <comment xml:lang="ga">meadarachtaí cló Adobe</comment>
- <comment xml:lang="gl">métricas de fonte de Adobe</comment>
- <comment xml:lang="he">מדדי גופן של Adobe</comment>
- <comment xml:lang="hr">Adobe mjere slova</comment>
- <comment xml:lang="hu">Adobe-betűmetrika</comment>
- <comment xml:lang="ia">Metricas de typo de litteras Adobe</comment>
- <comment xml:lang="id">Metrik fonta Adobe</comment>
- <comment xml:lang="it">Metriche tipo carattere Adobe</comment>
- <comment xml:lang="ja">Adobe フォントメトリック</comment>
- <comment xml:lang="kk">Adobe қаріп метрикалары</comment>
- <comment xml:lang="ko">Adobe 글꼴 메트릭</comment>
- <comment xml:lang="lt">Adobe šriftų metrika</comment>
- <comment xml:lang="lv">Adobe fonta metrika</comment>
- <comment xml:lang="ms">Metrik font Adobe</comment>
- <comment xml:lang="nb">Adobe skrifttypefil</comment>
- <comment xml:lang="nl">Adobe-lettertype-metrieken</comment>
- <comment xml:lang="nn">Adobe skrifttypemetrikk</comment>
- <comment xml:lang="oc">metricas de poliça Adobe</comment>
- <comment xml:lang="pl">Metryka czcionki Adobe</comment>
- <comment xml:lang="pt">métrica de letras Adobe</comment>
- <comment xml:lang="pt_BR">Métricas de fonte Adobe</comment>
- <comment xml:lang="ro">Dimensiuni font Adobe</comment>
- <comment xml:lang="ru">Метрика шрифта Adobe</comment>
- <comment xml:lang="sk">Metrika písma Adobe</comment>
- <comment xml:lang="sl">Matrika pisave Adobe</comment>
- <comment xml:lang="sq">Metrik lloj gërmash Adobe</comment>
- <comment xml:lang="sr">метрика Адобе слова</comment>
- <comment xml:lang="sv">Adobe-typsnittsmetrik</comment>
- <comment xml:lang="tr">Adobe yazıtipi ölçüleri</comment>
- <comment xml:lang="uk">метрики шрифту Adobe</comment>
- <comment xml:lang="vi">Cách đo phông chữ Adobe</comment>
- <comment xml:lang="zh_CN">Adobe 字体规格</comment>
<comment xml:lang="zh_TW">Adobe 字型描述檔</comment>
+ <comment xml:lang="zh_CN">Adobe 字体规格</comment>
+ <comment xml:lang="vi">Cách đo phông chữ Adobe</comment>
+ <comment xml:lang="uk">метрики шрифту Adobe</comment>
+ <comment xml:lang="tr">Adobe yazı tipi ölçüleri</comment>
+ <comment xml:lang="sv">Adobe-typsnittsmetrik</comment>
+ <comment xml:lang="sr">метрика Адобе слова</comment>
+ <comment xml:lang="sq">vlera shkronjash Adobe</comment>
+ <comment xml:lang="sl">Matrika pisave Adobe</comment>
+ <comment xml:lang="si">Adobe අකුරු මිතික</comment>
+ <comment xml:lang="sk">Metrika písma Adobe</comment>
+ <comment xml:lang="ru">Метрика шрифта Adobe</comment>
+ <comment xml:lang="ro">Dimensiuni font Adobe</comment>
+ <comment xml:lang="pt_BR">Métricas de fonte Adobe</comment>
+ <comment xml:lang="pt">métrica de letras Adobe</comment>
+ <comment xml:lang="pl">Metryka czcionki Adobe</comment>
+ <comment xml:lang="oc">metricas de poliça Adobe</comment>
+ <comment xml:lang="nn">Adobe skrifttypemetrikk</comment>
+ <comment xml:lang="nl">Adobe lettertype-metrieken</comment>
+ <comment xml:lang="nb">Adobe skrifttypefil</comment>
+ <comment xml:lang="ms">Metrik font Adobe</comment>
+ <comment xml:lang="lv">Adobe fonta metrika</comment>
+ <comment xml:lang="lt">Adobe šriftų metrika</comment>
+ <comment xml:lang="ko">Adobe 글꼴 메트릭</comment>
+ <comment xml:lang="kk">Adobe қаріп метрикалары</comment>
+ <comment xml:lang="ja">Adobe フォントメトリック</comment>
+ <comment xml:lang="it">Metriche tipo carattere Adobe</comment>
+ <comment xml:lang="is">Adobe leturupplýsingar</comment>
+ <comment xml:lang="id">Metrik fonta Adobe</comment>
+ <comment xml:lang="ia">Metricas de typo de litteras Adobe</comment>
+ <comment xml:lang="hu">Adobe-betűmetrika</comment>
+ <comment xml:lang="hr">Metrika Adobe fonta</comment>
+ <comment xml:lang="he">מדדי גופן של Adobe</comment>
+ <comment xml:lang="gl">métricas de fonte de Adobe</comment>
+ <comment xml:lang="ga">meadarachtaí cló Adobe</comment>
+ <comment xml:lang="fur">metrichis caratar Adobe</comment>
+ <comment xml:lang="fr">métriques de police Adobe</comment>
+ <comment xml:lang="fi">Adobe-fonttimitat</comment>
+ <comment xml:lang="eu">Adobe letra-tipoen neurriak</comment>
+ <comment xml:lang="es">métricas tipográficas de Adobe</comment>
+ <comment xml:lang="eo">metrikoj de Adobe-tiparo</comment>
+ <comment xml:lang="en_GB">Adobe font metrics</comment>
+ <comment xml:lang="el">Μετρικά γραμματοσειράς Adobe</comment>
+ <comment xml:lang="de">Adobe-Schriftmetriken</comment>
+ <comment xml:lang="da">Adobe skrifttypefil</comment>
+ <comment xml:lang="cy">Metrigau Ffont Adobe</comment>
+ <comment xml:lang="cs">metrika fontu Adobe</comment>
+ <comment xml:lang="ca">mètrica de lletra d'Adobe</comment>
+ <comment xml:lang="bg">Шрифтова метрика — Adobe</comment>
+ <comment xml:lang="be@latin">Metryka šryftu Adobe</comment>
+ <comment xml:lang="be">метрыкі шрыфту Adobe</comment>
+ <comment xml:lang="az">Adobe yazı növü metrikləri</comment>
+ <comment xml:lang="ar">مقاييس خط أدوبي</comment>
+ <comment xml:lang="af">Adobe skriftipe-afmetings</comment>
<generic-icon name="font-x-generic"/>
<glob pattern="*.afm"/>
</mime-type>
<mime-type type="application/x-font-bdf">
<comment>BDF font</comment>
- <comment xml:lang="ar">خط BDF</comment>
- <comment xml:lang="az">BDF yazı növü</comment>
- <comment xml:lang="be@latin">Šryft BDF</comment>
- <comment xml:lang="bg">Шрифт — BDF</comment>
- <comment xml:lang="ca">lletra BDF</comment>
- <comment xml:lang="cs">font BDF</comment>
- <comment xml:lang="cy">Ffont BDF</comment>
- <comment xml:lang="da">BDF-skrifttype</comment>
- <comment xml:lang="de">BDF-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά BDF</comment>
- <comment xml:lang="en_GB">BDF font</comment>
- <comment xml:lang="eo">BDF-tiparo</comment>
- <comment xml:lang="es">tipo de letra BDF</comment>
- <comment xml:lang="eu">BDF letra-tipoa</comment>
- <comment xml:lang="fi">BDF-fontti</comment>
- <comment xml:lang="fo">BDF stavasnið</comment>
- <comment xml:lang="fr">police BDF</comment>
- <comment xml:lang="ga">cló BDF</comment>
- <comment xml:lang="gl">tipo de fonte BDF</comment>
- <comment xml:lang="he">גופן BDF</comment>
- <comment xml:lang="hr">BDF slovo</comment>
- <comment xml:lang="hu">BDF-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras BDF</comment>
- <comment xml:lang="id">Fonta BDF</comment>
- <comment xml:lang="it">Carattere BDF</comment>
- <comment xml:lang="ja">BDF フォント</comment>
- <comment xml:lang="kk">BDF қарібі</comment>
- <comment xml:lang="ko">BDF 글꼴</comment>
- <comment xml:lang="lt">BDF šriftas</comment>
- <comment xml:lang="lv">BDF fonts</comment>
- <comment xml:lang="ms">Font BDF</comment>
- <comment xml:lang="nb">BDF-skrifttype</comment>
- <comment xml:lang="nl">BDF-lettertype</comment>
- <comment xml:lang="nn">BDF-skrifttype</comment>
- <comment xml:lang="oc">poliça BDF</comment>
- <comment xml:lang="pl">Czcionka BDF</comment>
- <comment xml:lang="pt">letra BDF</comment>
- <comment xml:lang="pt_BR">Fonte BDF</comment>
- <comment xml:lang="ro">Font BDF</comment>
- <comment xml:lang="ru">Шрифт BDF</comment>
- <comment xml:lang="sk">Písmo BDF</comment>
- <comment xml:lang="sl">Datoteka pisave BDF</comment>
- <comment xml:lang="sq">Lloj gërme BDF</comment>
- <comment xml:lang="sr">БДФ слова</comment>
- <comment xml:lang="sv">BDF-typsnitt</comment>
- <comment xml:lang="tr">BDF fontu</comment>
- <comment xml:lang="uk">шрифт BDF</comment>
- <comment xml:lang="vi">Phông chữ BDF</comment>
- <comment xml:lang="zh_CN">BDF 字体</comment>
<comment xml:lang="zh_TW">BDF 字型</comment>
+ <comment xml:lang="zh_CN">BDF 字体</comment>
+ <comment xml:lang="vi">Phông chữ BDF</comment>
+ <comment xml:lang="uk">шрифт BDF</comment>
+ <comment xml:lang="tr">BDF yazı tipi</comment>
+ <comment xml:lang="sv">BDF-typsnitt</comment>
+ <comment xml:lang="sr">БДФ слова</comment>
+ <comment xml:lang="sq">shkronja BDF</comment>
+ <comment xml:lang="sl">Datoteka pisave BDF</comment>
+ <comment xml:lang="si">BDF අකුරු</comment>
+ <comment xml:lang="sk">Písmo BDF</comment>
+ <comment xml:lang="ru">Шрифт BDF</comment>
+ <comment xml:lang="ro">Font BDF</comment>
+ <comment xml:lang="pt_BR">Fonte BDF</comment>
+ <comment xml:lang="pt">letra BDF</comment>
+ <comment xml:lang="pl">Czcionka BDF</comment>
+ <comment xml:lang="oc">poliça BDF</comment>
+ <comment xml:lang="nn">BDF-skrifttype</comment>
+ <comment xml:lang="nl">BDF-lettertype</comment>
+ <comment xml:lang="nb">BDF-skrifttype</comment>
+ <comment xml:lang="ms">Font BDF</comment>
+ <comment xml:lang="lv">BDF fonts</comment>
+ <comment xml:lang="lt">BDF šriftas</comment>
+ <comment xml:lang="ko">BDF 글꼴</comment>
+ <comment xml:lang="kk">BDF қарібі</comment>
+ <comment xml:lang="ja">BDF フォント</comment>
+ <comment xml:lang="it">Carattere BDF</comment>
+ <comment xml:lang="is">BDF letur</comment>
+ <comment xml:lang="id">Fonta BDF</comment>
+ <comment xml:lang="ia">Typo de litteras BDF</comment>
+ <comment xml:lang="hu">BDF-betűkészlet</comment>
+ <comment xml:lang="hr">BDF font</comment>
+ <comment xml:lang="he">גופן BDF</comment>
+ <comment xml:lang="gl">tipo de fonte BDF</comment>
+ <comment xml:lang="ga">cló BDF</comment>
+ <comment xml:lang="fur">caratar BDF</comment>
+ <comment xml:lang="fr">police BDF</comment>
+ <comment xml:lang="fo">BDF stavasnið</comment>
+ <comment xml:lang="fi">BDF-fontti</comment>
+ <comment xml:lang="eu">BDF letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra BDF</comment>
+ <comment xml:lang="eo">BDF-tiparo</comment>
+ <comment xml:lang="en_GB">BDF font</comment>
+ <comment xml:lang="el">Γραμματοσειρά BDF</comment>
+ <comment xml:lang="de">BDF-Schrift</comment>
+ <comment xml:lang="da">BDF-skrifttype</comment>
+ <comment xml:lang="cy">Ffont BDF</comment>
+ <comment xml:lang="cs">font BDF</comment>
+ <comment xml:lang="ca">lletra BDF</comment>
+ <comment xml:lang="bg">Шрифт — BDF</comment>
+ <comment xml:lang="be@latin">Šryft BDF</comment>
+ <comment xml:lang="be">шрыфт BDF</comment>
+ <comment xml:lang="az">BDF yazı növü</comment>
+ <comment xml:lang="ar">خط BDF</comment>
+ <comment xml:lang="af">BDF-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="STARTFONT\040" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="STARTFONT\040" offset="0"/>
</magic>
<glob pattern="*.bdf"/>
</mime-type>
<mime-type type="application/x-font-dos">
<comment>DOS font</comment>
- <comment xml:lang="ar">خط DOS</comment>
- <comment xml:lang="az">DOS yazı növü</comment>
- <comment xml:lang="be@latin">Šryft DOS</comment>
- <comment xml:lang="bg">Шрифт — DOS</comment>
- <comment xml:lang="ca">lletra DOS</comment>
- <comment xml:lang="cs">font pro DOS</comment>
- <comment xml:lang="cy">Ffont DOS</comment>
- <comment xml:lang="da">DOS-skrifttype</comment>
- <comment xml:lang="de">DOS-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά DOS</comment>
- <comment xml:lang="en_GB">DOS font</comment>
- <comment xml:lang="eo">DOS-tiparo</comment>
- <comment xml:lang="es">tipo de letra de DOS</comment>
- <comment xml:lang="eu">DOS letra-tipoa</comment>
- <comment xml:lang="fi">DOS-fontti</comment>
- <comment xml:lang="fo">DOS stavasnið</comment>
- <comment xml:lang="fr">police DOS</comment>
- <comment xml:lang="ga">cló DOS</comment>
- <comment xml:lang="gl">tipo de fonte de DOS</comment>
- <comment xml:lang="he">גופן DOS</comment>
- <comment xml:lang="hr">DOS slovo</comment>
- <comment xml:lang="hu">DOS-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras DOS</comment>
- <comment xml:lang="id">Fonta DOS</comment>
- <comment xml:lang="it">Carattere DOS</comment>
- <comment xml:lang="ja">DOS フォント</comment>
- <comment xml:lang="kk">DOS қарібі</comment>
- <comment xml:lang="ko">DOS 글꼴</comment>
- <comment xml:lang="lt">DOS šriftas</comment>
- <comment xml:lang="lv">DOS fonts</comment>
- <comment xml:lang="ms">Font DOS</comment>
- <comment xml:lang="nb">DOS-skrifttype</comment>
- <comment xml:lang="nl">DOS-lettertype</comment>
- <comment xml:lang="nn">DOS-skrifttype</comment>
- <comment xml:lang="oc">poliça DOS</comment>
- <comment xml:lang="pl">Czcionka DOS</comment>
- <comment xml:lang="pt">letra DOS</comment>
- <comment xml:lang="pt_BR">Fonte do DOS</comment>
- <comment xml:lang="ro">Font DOS</comment>
- <comment xml:lang="ru">Шрифт DOS</comment>
- <comment xml:lang="sk">Písmo pre DOS</comment>
- <comment xml:lang="sl">Datoteka pisave DOS</comment>
- <comment xml:lang="sq">Gërmë DOS</comment>
- <comment xml:lang="sr">ДОС слова</comment>
- <comment xml:lang="sv">DOS-typsnitt</comment>
- <comment xml:lang="tr">DOS fontu</comment>
- <comment xml:lang="uk">шрифт DOS</comment>
- <comment xml:lang="vi">Phông chữ DOS</comment>
- <comment xml:lang="zh_CN">DOS 字体</comment>
<comment xml:lang="zh_TW">DOS 字型</comment>
+ <comment xml:lang="zh_CN">DOS 字体</comment>
+ <comment xml:lang="vi">Phông chữ DOS</comment>
+ <comment xml:lang="uk">шрифт DOS</comment>
+ <comment xml:lang="tr">DOS yazı tipi</comment>
+ <comment xml:lang="sv">DOS-typsnitt</comment>
+ <comment xml:lang="sr">ДОС слова</comment>
+ <comment xml:lang="sq">shkronja DOS</comment>
+ <comment xml:lang="sl">Datoteka pisave DOS</comment>
+ <comment xml:lang="si">DOS අකුරු</comment>
+ <comment xml:lang="sk">Písmo pre DOS</comment>
+ <comment xml:lang="ru">Шрифт DOS</comment>
+ <comment xml:lang="ro">Font DOS</comment>
+ <comment xml:lang="pt_BR">Fonte do DOS</comment>
+ <comment xml:lang="pt">letra DOS</comment>
+ <comment xml:lang="pl">Czcionka DOS</comment>
+ <comment xml:lang="oc">poliça DOS</comment>
+ <comment xml:lang="nn">DOS-skrifttype</comment>
+ <comment xml:lang="nl">DOS-lettertype</comment>
+ <comment xml:lang="nb">DOS-skrifttype</comment>
+ <comment xml:lang="ms">Font DOS</comment>
+ <comment xml:lang="lv">DOS fonts</comment>
+ <comment xml:lang="lt">DOS šriftas</comment>
+ <comment xml:lang="ko">DOS 글꼴</comment>
+ <comment xml:lang="kk">DOS қарібі</comment>
+ <comment xml:lang="ja">DOS フォント</comment>
+ <comment xml:lang="it">Carattere DOS</comment>
+ <comment xml:lang="is">DOS letur</comment>
+ <comment xml:lang="id">Fonta DOS</comment>
+ <comment xml:lang="ia">Typo de litteras DOS</comment>
+ <comment xml:lang="hu">DOS-betűkészlet</comment>
+ <comment xml:lang="hr">DOS font</comment>
+ <comment xml:lang="he">גופן DOS</comment>
+ <comment xml:lang="gl">tipo de fonte de DOS</comment>
+ <comment xml:lang="ga">cló DOS</comment>
+ <comment xml:lang="fur">caratar DOS</comment>
+ <comment xml:lang="fr">police DOS</comment>
+ <comment xml:lang="fo">DOS stavasnið</comment>
+ <comment xml:lang="fi">DOS-fontti</comment>
+ <comment xml:lang="eu">DOS letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra de DOS</comment>
+ <comment xml:lang="eo">DOS-tiparo</comment>
+ <comment xml:lang="en_GB">DOS font</comment>
+ <comment xml:lang="el">Γραμματοσειρά DOS</comment>
+ <comment xml:lang="de">DOS-Schrift</comment>
+ <comment xml:lang="da">DOS-skrifttype</comment>
+ <comment xml:lang="cy">Ffont DOS</comment>
+ <comment xml:lang="cs">font pro DOS</comment>
+ <comment xml:lang="ca">lletra DOS</comment>
+ <comment xml:lang="bg">Шрифт — DOS</comment>
+ <comment xml:lang="be@latin">Šryft DOS</comment>
+ <comment xml:lang="be">шрыфт DOS</comment>
+ <comment xml:lang="az">DOS yazı növü</comment>
+ <comment xml:lang="ar">خط DOS</comment>
+ <comment xml:lang="af">DOS-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="\xff\x46\x4f\x4e" type="string" offset="0"/>
- <match value="\x00\x45\x47\x41" type="string" offset="7"/>
- <match value="\x00\x56\x49\x44" type="string" offset="7"/>
+ <magic>
+ <match type="string" value="\xff\x46\x4f\x4e" offset="0"/>
+ <match type="string" value="\x00\x45\x47\x41" offset="7"/>
+ <match type="string" value="\x00\x56\x49\x44" offset="7"/>
</magic>
</mime-type>
<mime-type type="application/x-font-framemaker">
<comment>Adobe FrameMaker font</comment>
- <comment xml:lang="ar">خط أدوبي الصانع للإطارات</comment>
- <comment xml:lang="az">Adobe FrameMaker yazı növü</comment>
- <comment xml:lang="be@latin">Šryft Adobe FrameMaker</comment>
- <comment xml:lang="bg">Шрифт — Adobe FrameMaker</comment>
- <comment xml:lang="ca">lletra d'Adobe FrameMaker</comment>
- <comment xml:lang="cs">font Adobe FrameMaker</comment>
- <comment xml:lang="cy">Ffont Adobe FrameMaker</comment>
- <comment xml:lang="da">Adobe FrameMaker-skrifttype</comment>
- <comment xml:lang="de">Adobe-FrameMaker-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά Adobe FrameMaker</comment>
- <comment xml:lang="en_GB">Adobe FrameMaker font</comment>
- <comment xml:lang="eo">Tiparo de Adobe FrameMaker</comment>
- <comment xml:lang="es">tipo de letra de Adobe FrameMaker</comment>
- <comment xml:lang="eu">Adobe FrameMaker-en letra-tipoa</comment>
- <comment xml:lang="fi">Adobe FrameMaker -fontti</comment>
- <comment xml:lang="fo">Adobe FrameMaker stavasnið</comment>
- <comment xml:lang="fr">police Adobe FrameMaker</comment>
- <comment xml:lang="ga">cló Adobe FrameMaker</comment>
- <comment xml:lang="gl">tipo de fonte de Adobe FrameMaker</comment>
- <comment xml:lang="he">גופן של Adobe FrameMaker</comment>
- <comment xml:lang="hr">Adobe FrameMaker slovo</comment>
- <comment xml:lang="hu">Adobe FrameMaker-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras pro Adobe FrameMaker</comment>
- <comment xml:lang="id">Fonta Adobe FrameMaker</comment>
- <comment xml:lang="it">Carattere Adobe FrameMaker</comment>
- <comment xml:lang="ja">Adobe FrameMaker フォント</comment>
- <comment xml:lang="kk">Adobe FrameMaker қарібі</comment>
- <comment xml:lang="ko">Adobe 프레임메이커 글꼴</comment>
- <comment xml:lang="lt">Adobe FrameMaker šriftas</comment>
- <comment xml:lang="lv">Adobe FrameMaker fonts</comment>
- <comment xml:lang="ms">Font Adobe FrameMaker</comment>
- <comment xml:lang="nb">Adobe FrameMaker skrifttype</comment>
- <comment xml:lang="nl">Adobe FrameMaker-lettertype</comment>
- <comment xml:lang="nn">Adobe FrameMaker-skrifttype</comment>
- <comment xml:lang="oc">poliça Adobe FrameMaker</comment>
- <comment xml:lang="pl">Czcionka Adobe FrameMaker</comment>
- <comment xml:lang="pt">letra Adobe FrameMaker</comment>
- <comment xml:lang="pt_BR">Fonte do Adobe FrameMaker</comment>
- <comment xml:lang="ro">Font Adobe FrameMaker</comment>
- <comment xml:lang="ru">Шрифт Adobe FrameMaker</comment>
- <comment xml:lang="sk">Písmo Adobe FrameMaker</comment>
- <comment xml:lang="sl">Datoteka pisave Adobe FrameMaker</comment>
- <comment xml:lang="sq">Gërma Adobe FrameMaker</comment>
- <comment xml:lang="sr">слова Адобе Фрејм Мејкера</comment>
- <comment xml:lang="sv">Adobe FrameMaker-typsnitt</comment>
- <comment xml:lang="tr">Adobe FrameMaker yazı tipi</comment>
- <comment xml:lang="uk">шрифт Adobe FrameMaker</comment>
- <comment xml:lang="vi">Phông chữ Adobe FrameMaker</comment>
- <comment xml:lang="zh_CN">Adobe FrameMaker 字体</comment>
<comment xml:lang="zh_TW">Adobe FrameMaker 字型</comment>
+ <comment xml:lang="zh_CN">Adobe FrameMaker 字体</comment>
+ <comment xml:lang="vi">Phông chữ Adobe FrameMaker</comment>
+ <comment xml:lang="uk">шрифт Adobe FrameMaker</comment>
+ <comment xml:lang="tr">Adobe FrameMaker yazı tipi</comment>
+ <comment xml:lang="sv">Adobe FrameMaker-typsnitt</comment>
+ <comment xml:lang="sr">слова Адобе Фрејм Мејкера</comment>
+ <comment xml:lang="sq">shkronja Adobe FrameMaker</comment>
+ <comment xml:lang="sl">Datoteka pisave Adobe FrameMaker</comment>
+ <comment xml:lang="si">Adobe FrameMaker අකුරු</comment>
+ <comment xml:lang="sk">Písmo Adobe FrameMaker</comment>
+ <comment xml:lang="ru">Шрифт Adobe FrameMaker</comment>
+ <comment xml:lang="ro">Font Adobe FrameMaker</comment>
+ <comment xml:lang="pt_BR">Fonte do Adobe FrameMaker</comment>
+ <comment xml:lang="pt">letra Adobe FrameMaker</comment>
+ <comment xml:lang="pl">Czcionka Adobe FrameMaker</comment>
+ <comment xml:lang="oc">poliça Adobe FrameMaker</comment>
+ <comment xml:lang="nn">Adobe FrameMaker-skrifttype</comment>
+ <comment xml:lang="nl">Adobe FrameMaker-lettertype</comment>
+ <comment xml:lang="nb">Adobe FrameMaker skrifttype</comment>
+ <comment xml:lang="ms">Font Adobe FrameMaker</comment>
+ <comment xml:lang="lv">Adobe FrameMaker fonts</comment>
+ <comment xml:lang="lt">Adobe FrameMaker šriftas</comment>
+ <comment xml:lang="ko">Adobe 프레임메이커 글꼴</comment>
+ <comment xml:lang="kk">Adobe FrameMaker қарібі</comment>
+ <comment xml:lang="ja">Adobe FrameMaker フォント</comment>
+ <comment xml:lang="it">Carattere Adobe FrameMaker</comment>
+ <comment xml:lang="is">Adobe FrameMaker letur</comment>
+ <comment xml:lang="id">Fonta Adobe FrameMaker</comment>
+ <comment xml:lang="ia">Typo de litteras pro Adobe FrameMaker</comment>
+ <comment xml:lang="hu">Adobe FrameMaker-betűkészlet</comment>
+ <comment xml:lang="hr">Adobe FrameMaker font</comment>
+ <comment xml:lang="he">גופן של Adobe FrameMaker</comment>
+ <comment xml:lang="gl">tipo de fonte de Adobe FrameMaker</comment>
+ <comment xml:lang="ga">cló Adobe FrameMaker</comment>
+ <comment xml:lang="fur">caratar Adobe FrameMaker</comment>
+ <comment xml:lang="fr">police Adobe FrameMaker</comment>
+ <comment xml:lang="fo">Adobe FrameMaker stavasnið</comment>
+ <comment xml:lang="fi">Adobe FrameMaker -fontti</comment>
+ <comment xml:lang="eu">Adobe FrameMaker-en letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra de Adobe FrameMaker</comment>
+ <comment xml:lang="eo">Tiparo de Adobe FrameMaker</comment>
+ <comment xml:lang="en_GB">Adobe FrameMaker font</comment>
+ <comment xml:lang="el">Γραμματοσειρά Adobe FrameMaker</comment>
+ <comment xml:lang="de">Adobe-FrameMaker-Schrift</comment>
+ <comment xml:lang="da">Adobe FrameMaker-skrifttype</comment>
+ <comment xml:lang="cy">Ffont Adobe FrameMaker</comment>
+ <comment xml:lang="cs">font Adobe FrameMaker</comment>
+ <comment xml:lang="ca">lletra d'Adobe FrameMaker</comment>
+ <comment xml:lang="bg">Шрифт — Adobe FrameMaker</comment>
+ <comment xml:lang="be@latin">Šryft Adobe FrameMaker</comment>
+ <comment xml:lang="be">шрыфт Adobe FrameMaker</comment>
+ <comment xml:lang="az">Adobe FrameMaker yazı növü</comment>
+ <comment xml:lang="ar">خط أدوبي FrameMaker</comment>
+ <comment xml:lang="af">Adobe FrameMaker-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="&lt;MakerScreenFont" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="&lt;MakerScreenFont" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-font-libgrx">
<comment>LIBGRX font</comment>
- <comment xml:lang="ar">خط LIBGRX</comment>
- <comment xml:lang="az">LIBGRX yazı növü</comment>
- <comment xml:lang="be@latin">Šryft LIBGRX</comment>
- <comment xml:lang="bg">Шрифт — LIBGRX</comment>
- <comment xml:lang="ca">lletra LIBGRX</comment>
- <comment xml:lang="cs">font LIBGRX</comment>
- <comment xml:lang="cy">Ffont LIBGRX</comment>
- <comment xml:lang="da">LIBGRX-skrifttype</comment>
- <comment xml:lang="de">LIBGRX-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά LIBGRX</comment>
- <comment xml:lang="en_GB">LIBGRX font</comment>
- <comment xml:lang="eo">LIBGRX-tiparo</comment>
- <comment xml:lang="es">tipo de letra LIBGRX</comment>
- <comment xml:lang="eu">LIBGRX letra-tipoa</comment>
- <comment xml:lang="fi">LIBGRX-fontti</comment>
- <comment xml:lang="fo">LIBGRX stavasnið</comment>
- <comment xml:lang="fr">police LIBGRX</comment>
- <comment xml:lang="ga">cló LIBGRX</comment>
- <comment xml:lang="gl">tipo de fonte en LIBGRX</comment>
- <comment xml:lang="he">גופן LIBGRX</comment>
- <comment xml:lang="hr">LIBGRX slovo</comment>
- <comment xml:lang="hu">LIBGRX-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras LIBGRX</comment>
- <comment xml:lang="id">Fonta LIBGRX</comment>
- <comment xml:lang="it">Carattere LIBGRX</comment>
- <comment xml:lang="ja">LIBGRX フォーマット</comment>
- <comment xml:lang="kk">LIBGRX қарібі</comment>
- <comment xml:lang="ko">LIBGRX 글꼴</comment>
- <comment xml:lang="lt">LIBGRX šriftas</comment>
- <comment xml:lang="lv">LIBGRX fonts</comment>
- <comment xml:lang="ms">Font LIBGRX</comment>
- <comment xml:lang="nb">LIBGRX-skrifttype</comment>
- <comment xml:lang="nl">LIBGRX-lettertype</comment>
- <comment xml:lang="nn">LIBGRX skrifttype</comment>
- <comment xml:lang="oc">poliça LIBGRX</comment>
- <comment xml:lang="pl">Czcionka LIBGRX</comment>
- <comment xml:lang="pt">letra LIBGRX</comment>
- <comment xml:lang="pt_BR">Fonte LIBGRX</comment>
- <comment xml:lang="ro">Font LIBGRX</comment>
- <comment xml:lang="ru">Шрифт LIBGRX</comment>
- <comment xml:lang="sk">Písmo LIBGRX</comment>
- <comment xml:lang="sl">Datoteka pisave LIBGRX</comment>
- <comment xml:lang="sq">Lloj gërme LIBGRX</comment>
- <comment xml:lang="sr">ЛИБГРИкс слова</comment>
- <comment xml:lang="sv">LIBGRX-typsnitt</comment>
- <comment xml:lang="tr">LIBGRX fontu</comment>
- <comment xml:lang="uk">шрифт LIBGRX</comment>
- <comment xml:lang="vi">Phông chữ LIBGRX</comment>
- <comment xml:lang="zh_CN">LIBGRX 字体</comment>
<comment xml:lang="zh_TW">LIBGRX 字型</comment>
+ <comment xml:lang="zh_CN">LIBGRX 字体</comment>
+ <comment xml:lang="vi">Phông chữ LIBGRX</comment>
+ <comment xml:lang="uk">шрифт LIBGRX</comment>
+ <comment xml:lang="tr">LIBGRX yazı tipi</comment>
+ <comment xml:lang="sv">LIBGRX-typsnitt</comment>
+ <comment xml:lang="sr">ЛИБГРИкс слова</comment>
+ <comment xml:lang="sq">shkronja LIBGRX</comment>
+ <comment xml:lang="sl">Datoteka pisave LIBGRX</comment>
+ <comment xml:lang="si">LIBGRX අකුරු</comment>
+ <comment xml:lang="sk">Písmo LIBGRX</comment>
+ <comment xml:lang="ru">Шрифт LIBGRX</comment>
+ <comment xml:lang="ro">Font LIBGRX</comment>
+ <comment xml:lang="pt_BR">Fonte LIBGRX</comment>
+ <comment xml:lang="pt">letra LIBGRX</comment>
+ <comment xml:lang="pl">Czcionka LIBGRX</comment>
+ <comment xml:lang="oc">poliça LIBGRX</comment>
+ <comment xml:lang="nn">LIBGRX skrifttype</comment>
+ <comment xml:lang="nl">LIBGRX-lettertype</comment>
+ <comment xml:lang="nb">LIBGRX-skrifttype</comment>
+ <comment xml:lang="ms">Font LIBGRX</comment>
+ <comment xml:lang="lv">LIBGRX fonts</comment>
+ <comment xml:lang="lt">LIBGRX šriftas</comment>
+ <comment xml:lang="ko">LIBGRX 글꼴</comment>
+ <comment xml:lang="kk">LIBGRX қарібі</comment>
+ <comment xml:lang="ja">LIBGRX フォーマット</comment>
+ <comment xml:lang="it">Carattere LIBGRX</comment>
+ <comment xml:lang="is">LIBGRX letur</comment>
+ <comment xml:lang="id">Fonta LIBGRX</comment>
+ <comment xml:lang="ia">Typo de litteras LIBGRX</comment>
+ <comment xml:lang="hu">LIBGRX-betűkészlet</comment>
+ <comment xml:lang="hr">LIBGRX font</comment>
+ <comment xml:lang="he">גופן LIBGRX</comment>
+ <comment xml:lang="gl">tipo de fonte en LIBGRX</comment>
+ <comment xml:lang="ga">cló LIBGRX</comment>
+ <comment xml:lang="fur">caratar LIBGRX</comment>
+ <comment xml:lang="fr">police LIBGRX</comment>
+ <comment xml:lang="fo">LIBGRX stavasnið</comment>
+ <comment xml:lang="fi">LIBGRX-fontti</comment>
+ <comment xml:lang="eu">LIBGRX letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra LIBGRX</comment>
+ <comment xml:lang="eo">LIBGRX-tiparo</comment>
+ <comment xml:lang="en_GB">LIBGRX font</comment>
+ <comment xml:lang="el">Γραμματοσειρά LIBGRX</comment>
+ <comment xml:lang="de">LIBGRX-Schrift</comment>
+ <comment xml:lang="da">LIBGRX-skrifttype</comment>
+ <comment xml:lang="cy">Ffont LIBGRX</comment>
+ <comment xml:lang="cs">font LIBGRX</comment>
+ <comment xml:lang="ca">lletra LIBGRX</comment>
+ <comment xml:lang="bg">Шрифт — LIBGRX</comment>
+ <comment xml:lang="be@latin">Šryft LIBGRX</comment>
+ <comment xml:lang="be">шрыфт LIBGRX</comment>
+ <comment xml:lang="az">LIBGRX yazı növü</comment>
+ <comment xml:lang="ar">خط LIBGRX</comment>
+ <comment xml:lang="af">LIBGRX-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="\x14\x02\x59\x19" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\x14\x02\x59\x19" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-font-linux-psf">
<comment>Linux PSF console font</comment>
- <comment xml:lang="ar">خط كونسول PSF لينكس</comment>
- <comment xml:lang="az">Linux PSF konsol yazı növü</comment>
- <comment xml:lang="be@latin">Kansolny šryft PSF dla Linuksa</comment>
- <comment xml:lang="bg">Шрифт — PSF, за конзолата на Линукс</comment>
- <comment xml:lang="ca">lletra de consola PSF de Linux</comment>
- <comment xml:lang="cs">font PSF pro konzolu Linuxu</comment>
- <comment xml:lang="cy">Ffont Linux PSF</comment>
- <comment xml:lang="da">Linux PSF-konsolskrifttype</comment>
- <comment xml:lang="de">Linux-PSF-Konsolenschrift</comment>
- <comment xml:lang="el">Γραμματοσειρά κονσόλας PSF Linux</comment>
- <comment xml:lang="en_GB">Linux PSF console font</comment>
- <comment xml:lang="eo">PSF-tiparo de Linux-konzolo</comment>
- <comment xml:lang="es">tipo de letra de consola Linux PSF</comment>
- <comment xml:lang="eu">Linux PSF kontsolako letra-tipoa</comment>
- <comment xml:lang="fi">Linux PSF -konsolifontti</comment>
- <comment xml:lang="fo">Linux PSF stýristøðs stavasnið</comment>
- <comment xml:lang="fr">police console Linux PSF</comment>
- <comment xml:lang="ga">cló consóil Linux PSF</comment>
- <comment xml:lang="gl">tipo de fonte de consola Linux PSF</comment>
- <comment xml:lang="he">גופן לקונסול מסוג Linux PSF</comment>
- <comment xml:lang="hr">Linux PSF konzolno slovo</comment>
- <comment xml:lang="hu">Linux PSF konzolos betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras console Linux PSF</comment>
- <comment xml:lang="id">Fonta konsol Linux PSF</comment>
- <comment xml:lang="it">Carattere console Linux PSF</comment>
- <comment xml:lang="ja">Linux PSF コンソールフォント</comment>
- <comment xml:lang="kk">Linux PSF консольдік қарібі</comment>
- <comment xml:lang="ko">리눅스 PSF 콘솔 글꼴</comment>
- <comment xml:lang="lt">Linux PSF konsolės šriftas</comment>
- <comment xml:lang="lv">Linux PSF konsoles fonts</comment>
- <comment xml:lang="ms">Font konsol PSF Linux</comment>
- <comment xml:lang="nb">Linux PSF konsollskrifttype</comment>
- <comment xml:lang="nl">Linux PSF-console-lettertype</comment>
- <comment xml:lang="nn">Linux PSF konsoll-skrifttype</comment>
- <comment xml:lang="oc">poliça consòla Linux PSF</comment>
- <comment xml:lang="pl">Czcionka konsoli PSF Linux</comment>
- <comment xml:lang="pt">letra de consola Linux PSF</comment>
- <comment xml:lang="pt_BR">Fonte de console Linux PSF</comment>
- <comment xml:lang="ro">Font consolă Linux PSF</comment>
- <comment xml:lang="ru">Консольный шрифт Linux PSF</comment>
- <comment xml:lang="sk">Písmo PSF pre konzolu Linuxu</comment>
- <comment xml:lang="sl">Datoteka pisave konzole Linux PSF</comment>
- <comment xml:lang="sq">Lloj gërme për konsolë Linux PSF</comment>
- <comment xml:lang="sr">слова Линуксове ПСФ конзоле</comment>
- <comment xml:lang="sv">Linux PSF-konsoltypsnitt</comment>
- <comment xml:lang="tr">Linux PSF konsol fontu</comment>
- <comment xml:lang="uk">консольний шрифт Linux PSF</comment>
- <comment xml:lang="vi">Phông chữ bàn giao tiếp PSF Linux</comment>
- <comment xml:lang="zh_CN">Linux PSF 控制台字体</comment>
<comment xml:lang="zh_TW">Linux PSF console 字型</comment>
+ <comment xml:lang="zh_CN">Linux PSF 控制台字体</comment>
+ <comment xml:lang="vi">Phông chữ bàn giao tiếp PSF Linux</comment>
+ <comment xml:lang="uk">консольний шрифт Linux PSF</comment>
+ <comment xml:lang="tr">Linux PSF konsol yazı tipi</comment>
+ <comment xml:lang="sv">Linux PSF-konsoltypsnitt</comment>
+ <comment xml:lang="sr">слова Линуксове ПСФ конзоле</comment>
+ <comment xml:lang="sq">shkronja konsole Linux PSF</comment>
+ <comment xml:lang="sl">Datoteka pisave konzole Linux PSF</comment>
+ <comment xml:lang="si">Linux PSF කොන්සෝල අකුරු</comment>
+ <comment xml:lang="sk">Písmo PSF pre konzolu Linuxu</comment>
+ <comment xml:lang="ru">Консольный шрифт Linux PSF</comment>
+ <comment xml:lang="ro">Font consolă Linux PSF</comment>
+ <comment xml:lang="pt_BR">Fonte de console Linux PSF</comment>
+ <comment xml:lang="pt">letra de consola Linux PSF</comment>
+ <comment xml:lang="pl">Czcionka konsoli PSF Linux</comment>
+ <comment xml:lang="oc">poliça consòla Linux PSF</comment>
+ <comment xml:lang="nn">Linux PSF konsoll-skrifttype</comment>
+ <comment xml:lang="nl">Linux PSF-console-lettertype</comment>
+ <comment xml:lang="nb">Linux PSF konsollskrifttype</comment>
+ <comment xml:lang="ms">Font konsol PSF Linux</comment>
+ <comment xml:lang="lv">Linux PSF konsoles fonts</comment>
+ <comment xml:lang="lt">Linux PSF konsolės šriftas</comment>
+ <comment xml:lang="ko">리눅스 PSF 콘솔 글꼴</comment>
+ <comment xml:lang="kk">Linux PSF консольдік қарібі</comment>
+ <comment xml:lang="ja">Linux PSF コンソールフォント</comment>
+ <comment xml:lang="it">Carattere console Linux PSF</comment>
+ <comment xml:lang="is">Linux PSF stjórnskjáaletur</comment>
+ <comment xml:lang="id">Fonta konsol Linux PSF</comment>
+ <comment xml:lang="ia">Typo de litteras console Linux PSF</comment>
+ <comment xml:lang="hu">Linux PSF konzolos betűkészlet</comment>
+ <comment xml:lang="hr">Linux PSF font konzole</comment>
+ <comment xml:lang="he">גופן לקונסול מסוג Linux PSF</comment>
+ <comment xml:lang="gl">tipo de fonte de consola Linux PSF</comment>
+ <comment xml:lang="ga">cló consóil Linux PSF</comment>
+ <comment xml:lang="fur">caratar console Linux PSF</comment>
+ <comment xml:lang="fr">police console Linux PSF</comment>
+ <comment xml:lang="fo">Linux PSF stýristøðs stavasnið</comment>
+ <comment xml:lang="fi">Linux PSF -konsolifontti</comment>
+ <comment xml:lang="eu">Linux PSF kontsolako letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra de consola Linux PSF</comment>
+ <comment xml:lang="eo">PSF-tiparo de Linux-konzolo</comment>
+ <comment xml:lang="en_GB">Linux PSF console font</comment>
+ <comment xml:lang="el">Γραμματοσειρά κονσόλας PSF Linux</comment>
+ <comment xml:lang="de">Linux-PSF-Konsolenschrift</comment>
+ <comment xml:lang="da">Linux PSF-konsolskrifttype</comment>
+ <comment xml:lang="cy">Ffont Linux PSF</comment>
+ <comment xml:lang="cs">font PSF pro konzolu Linuxu</comment>
+ <comment xml:lang="ca">lletra de consola PSF de Linux</comment>
+ <comment xml:lang="bg">Шрифт — PSF, за конзолата на Линукс</comment>
+ <comment xml:lang="be@latin">Kansolny šryft PSF dla Linuksa</comment>
+ <comment xml:lang="be">шрыфт кансолі PSF для Linux</comment>
+ <comment xml:lang="az">Linux PSF konsol yazı növü</comment>
+ <comment xml:lang="ar">خط كونسول PSF لينكس</comment>
+ <comment xml:lang="af">Linux PSF-konsoleskriftipe</comment>
+ <acronym>PSF</acronym>
+ <expanded-acronym>PC Screen Font</expanded-acronym>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="\x36\x04" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\x36\x04" offset="0"/>
</magic>
<glob pattern="*.psf"/>
</mime-type>
<mime-type type="application/x-gz-font-linux-psf">
<comment>Linux PSF console font (gzip-compressed)</comment>
- <comment xml:lang="ar">خط كونسول PSF لينكس (مضغوط-gzip)</comment>
- <comment xml:lang="be@latin">Kansolny šryft PSF dla Linuksa (gzip-skampresavany)</comment>
- <comment xml:lang="bg">Шрифт — Linux PSF, компресиран с gzip</comment>
- <comment xml:lang="ca">lletra de consola PSF de Linux (amb compressió gzip)</comment>
- <comment xml:lang="cs">font PSF pro konzolu Linuxu (komprimace gzip)</comment>
- <comment xml:lang="da">Linux PSF-konsolskrifttype (gzip-komprimeret)</comment>
- <comment xml:lang="de">Linux-PSF-Konsolenschrift (gzip-komprimiert)</comment>
- <comment xml:lang="el">Γραμματοσειρά κονσόλας PSF Linux (συμπιεσμένη με gzip)</comment>
- <comment xml:lang="en_GB">Linux PSF console font (gzip-compressed)</comment>
- <comment xml:lang="es">tipo de letra de consola Linux PSF (comprimido con gzip)</comment>
- <comment xml:lang="eu">Linux PSF kontsolako letra-tipoa (gzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">Linux PSF -konsolifontti (gzip-pakattu)</comment>
- <comment xml:lang="fo">Linux PSF stýristøðs stavasnið (gzip-stappað)</comment>
- <comment xml:lang="fr">police console Linux PSF (compressée gzip)</comment>
- <comment xml:lang="ga">cló consóil Linux PSF (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">tipo de fonte de consola Linux PSF (comprimida con gzip)</comment>
- <comment xml:lang="he">גופן למסוף מסוג Linux PSF (מכווץ ע״י gzip)</comment>
- <comment xml:lang="hr">Linux PSF konzolno slovo (gzip sažeto)</comment>
- <comment xml:lang="hu">Linux PSF konzolos betűkészlet (gzip-tömörítésű)</comment>
- <comment xml:lang="ia">Typo de litteras console Linux PSF (comprimite con gzip)</comment>
- <comment xml:lang="id">Fonta konsol Linux PSF (terkompresi gzip)</comment>
- <comment xml:lang="it">Carattere console Linux PSF (compresso con gzip)</comment>
- <comment xml:lang="ja">Linux PSF コンソールフォント (gzip 圧縮)</comment>
- <comment xml:lang="kk">Linux PSF консольдік қарібі (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">리눅스 PSF 콘솔 글꼴(GZIP 압축)</comment>
- <comment xml:lang="lt">Linux PSF konsolės šriftas (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">Linux PSF konsoles fonts (saspiests ar gzip)</comment>
- <comment xml:lang="nb">Linux PSF konsollskrifttype (gzip-komprimert)</comment>
- <comment xml:lang="nl">Linux PSF-console-lettertype (ingepakt met gzip)</comment>
- <comment xml:lang="nn">Linux PSF konsoll-skrifttype (gzip-pakka)</comment>
- <comment xml:lang="oc">poliça consòla Linux PSF (compressat gzip)</comment>
- <comment xml:lang="pl">Czcionka konsoli PSF Linux (kompresja gzip)</comment>
- <comment xml:lang="pt">letra de consola Linux PSF (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Fonte de console Linux PSF (compactada com gzip)</comment>
- <comment xml:lang="ro">Font consolă Linux PSF (compresie gzip)</comment>
- <comment xml:lang="ru">Консольный шрифт Linux PSF (сжатый gzip)</comment>
- <comment xml:lang="sk">Písmo PSF pre konzolu Linuxu (komprimované pomocou gzip)</comment>
- <comment xml:lang="sl">Datoteka pisave konzole Linux PSF (skrčena z gzip)</comment>
- <comment xml:lang="sq">Lloj gërme për konsolë Linux PSF (komresuar me gzip)</comment>
- <comment xml:lang="sr">слова Линуксове ПСФ конзоле (запакована гзип-ом)</comment>
- <comment xml:lang="sv">Linux PSF-konsoltypsnitt (gzip-komprimerat)</comment>
- <comment xml:lang="tr">Linux PSF konsol fontu (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">консольний шрифт Linux PSF (стиснений gzip)</comment>
- <comment xml:lang="vi">Phông chữ bàn giao tiếp PSF Linux (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">Linux PSF console 字型 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">Linux PSF 控制台字体(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">Linux PSF console 字型 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Phông chữ bàn giao tiếp PSF Linux (đã nén gzip)</comment>
+ <comment xml:lang="uk">консольний шрифт Linux PSF (стиснений gzip)</comment>
+ <comment xml:lang="tr">Linux PSF konsol yazı tipi (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Linux PSF-konsoltypsnitt (gzip-komprimerat)</comment>
+ <comment xml:lang="sr">слова Линуксове ПСФ конзоле (запакована гзип-ом)</comment>
+ <comment xml:lang="sq">shkronja konsole Linux PSF (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Datoteka pisave konzole Linux PSF (skrčena z gzip)</comment>
+ <comment xml:lang="si">Linux PSF කොන්සෝල අකුරු (gzip-compressed)</comment>
+ <comment xml:lang="sk">Písmo PSF pre konzolu Linuxu (komprimované pomocou gzip)</comment>
+ <comment xml:lang="ru">Консольный шрифт Linux PSF (сжатый gzip)</comment>
+ <comment xml:lang="ro">Font consolă Linux PSF (compresie gzip)</comment>
+ <comment xml:lang="pt_BR">Fonte de console Linux PSF (compactada com gzip)</comment>
+ <comment xml:lang="pt">letra de consola Linux PSF (compressão gzip)</comment>
+ <comment xml:lang="pl">Czcionka konsoli PSF Linux (kompresja gzip)</comment>
+ <comment xml:lang="oc">poliça consòla Linux PSF (compressat gzip)</comment>
+ <comment xml:lang="nn">Linux PSF konsoll-skrifttype (gzip-pakka)</comment>
+ <comment xml:lang="nl">Linux PSF-console-lettertype (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">Linux PSF konsollskrifttype (gzip-komprimert)</comment>
+ <comment xml:lang="lv">Linux PSF konsoles fonts (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">Linux PSF konsolės šriftas (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">리눅스 PSF 콘솔 글꼴(GZIP 압축)</comment>
+ <comment xml:lang="kk">Linux PSF консольдік қарібі (gzip-пен сығылған)</comment>
+ <comment xml:lang="ja">Linux PSF コンソールフォント (gzip 圧縮)</comment>
+ <comment xml:lang="it">Carattere console Linux PSF (compresso con gzip)</comment>
+ <comment xml:lang="is">Linux PSF stjórnskjáaletur (gzip-þjöppað)</comment>
+ <comment xml:lang="id">Fonta konsol Linux PSF (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Typo de litteras console Linux PSF (comprimite con gzip)</comment>
+ <comment xml:lang="hu">Linux PSF konzolos betűkészlet (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">Linux PSF font konzolne (gzip komprimirano)</comment>
+ <comment xml:lang="he">גופן למסוף מסוג Linux PSF (מכווץ ע״י gzip)</comment>
+ <comment xml:lang="gl">tipo de fonte de consola Linux PSF (comprimida con gzip)</comment>
+ <comment xml:lang="ga">cló consóil Linux PSF (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">caratar console Linux PSF (comprimût cun gzip)</comment>
+ <comment xml:lang="fr">police console Linux PSF (compressée gzip)</comment>
+ <comment xml:lang="fo">Linux PSF stýristøðs stavasnið (gzip-stappað)</comment>
+ <comment xml:lang="fi">Linux PSF -konsolifontti (gzip-pakattu)</comment>
+ <comment xml:lang="eu">Linux PSF kontsolako letra-tipoa (gzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">tipo de letra de consola Linux PSF (comprimido con GZIP)</comment>
+ <comment xml:lang="en_GB">Linux PSF console font (gzip-compressed)</comment>
+ <comment xml:lang="el">Γραμματοσειρά κονσόλας PSF Linux (συμπιεσμένη με gzip)</comment>
+ <comment xml:lang="de">Linux-PSF-Konsolenschrift (gzip-komprimiert)</comment>
+ <comment xml:lang="da">Linux PSF-konsolskrifttype (gzip-komprimeret)</comment>
+ <comment xml:lang="cs">font PSF pro konzolu Linuxu (komprimace gzip)</comment>
+ <comment xml:lang="ca">lletra de consola PSF de Linux (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Шрифт — Linux PSF, компресиран с gzip</comment>
+ <comment xml:lang="be@latin">Kansolny šryft PSF dla Linuksa (gzip-skampresavany)</comment>
+ <comment xml:lang="be">шрыфт кансолі PSF для Linux (сцісканне gzip)</comment>
+ <comment xml:lang="ar">خط كونسول PSF لينكس (مضغوط-gzip)</comment>
+ <comment xml:lang="af">Linux PSF-konsoleskriftipe (gzip-saamgepers)</comment>
+ <acronym>PSF</acronym>
+ <expanded-acronym>PC Screen Font</expanded-acronym>
<sub-class-of type="application/gzip"/>
<generic-icon name="font-x-generic"/>
<glob pattern="*.psf.gz"/>
</mime-type>
<mime-type type="application/x-font-pcf">
<comment>PCF font</comment>
- <comment xml:lang="ar">خط PCF</comment>
- <comment xml:lang="az">PCF yazı növü</comment>
- <comment xml:lang="be@latin">Šryft PCF</comment>
- <comment xml:lang="bg">Шрифт — PCF</comment>
- <comment xml:lang="ca">lletra PCF</comment>
- <comment xml:lang="cs">font PCF</comment>
- <comment xml:lang="cy">Ffont PCF</comment>
- <comment xml:lang="da">PCF-skrifttype</comment>
- <comment xml:lang="de">PCF-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά PCF</comment>
- <comment xml:lang="en_GB">PCF font</comment>
- <comment xml:lang="eo">PCF-tiparo</comment>
- <comment xml:lang="es">tipo de letra PCF</comment>
- <comment xml:lang="eu">PCF letra-tipoa</comment>
- <comment xml:lang="fi">PCF-fontti</comment>
- <comment xml:lang="fo">PCF stavasnið</comment>
- <comment xml:lang="fr">police PCF</comment>
- <comment xml:lang="ga">cló PCF</comment>
- <comment xml:lang="gl">tipo de letra PCF</comment>
- <comment xml:lang="he">גופן PCF</comment>
- <comment xml:lang="hr">PCF slovo</comment>
- <comment xml:lang="hu">PCF-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras PCF</comment>
- <comment xml:lang="id">Fonta PCF</comment>
- <comment xml:lang="it">Carattere PCF</comment>
- <comment xml:lang="ja">PCF フォント</comment>
- <comment xml:lang="kk">PCF қарібі</comment>
- <comment xml:lang="ko">PCF 글꼴</comment>
- <comment xml:lang="lt">PCF šriftas</comment>
- <comment xml:lang="lv">PCF fonts</comment>
- <comment xml:lang="ms">Font PCF</comment>
- <comment xml:lang="nb">PCF-skrifttype</comment>
- <comment xml:lang="nl">PCF-lettertype</comment>
- <comment xml:lang="nn">PCF-skrifttype</comment>
- <comment xml:lang="oc">poliça PCF</comment>
- <comment xml:lang="pl">Czcionka PCF</comment>
- <comment xml:lang="pt">letra PCF</comment>
- <comment xml:lang="pt_BR">Fonte PCF</comment>
- <comment xml:lang="ro">Font PCF</comment>
- <comment xml:lang="ru">Шрифт PCF</comment>
- <comment xml:lang="sk">Písmo PCF</comment>
- <comment xml:lang="sl">Datoteka pisave PCF</comment>
- <comment xml:lang="sq">Gërma PCF</comment>
- <comment xml:lang="sr">ПЦФ слова</comment>
- <comment xml:lang="sv">PCF-typsnitt</comment>
- <comment xml:lang="tr">PCF fontu</comment>
- <comment xml:lang="uk">шрифт PCF</comment>
- <comment xml:lang="vi">Phông chữ PCF</comment>
- <comment xml:lang="zh_CN">PCF 字体</comment>
<comment xml:lang="zh_TW">PCF 字型</comment>
+ <comment xml:lang="zh_CN">PCF 字体</comment>
+ <comment xml:lang="vi">Phông chữ PCF</comment>
+ <comment xml:lang="uk">шрифт PCF</comment>
+ <comment xml:lang="tr">PCF yazı tipi</comment>
+ <comment xml:lang="sv">PCF-typsnitt</comment>
+ <comment xml:lang="sr">ПЦФ слова</comment>
+ <comment xml:lang="sq">shkronja PCF</comment>
+ <comment xml:lang="sl">Datoteka pisave PCF</comment>
+ <comment xml:lang="si">PCF අකුරු</comment>
+ <comment xml:lang="sk">Písmo PCF</comment>
+ <comment xml:lang="ru">Шрифт PCF</comment>
+ <comment xml:lang="ro">Font PCF</comment>
+ <comment xml:lang="pt_BR">Fonte PCF</comment>
+ <comment xml:lang="pt">letra PCF</comment>
+ <comment xml:lang="pl">Czcionka PCF</comment>
+ <comment xml:lang="oc">poliça PCF</comment>
+ <comment xml:lang="nn">PCF-skrifttype</comment>
+ <comment xml:lang="nl">PCF-lettertype</comment>
+ <comment xml:lang="nb">PCF-skrifttype</comment>
+ <comment xml:lang="ms">Font PCF</comment>
+ <comment xml:lang="lv">PCF fonts</comment>
+ <comment xml:lang="lt">PCF šriftas</comment>
+ <comment xml:lang="ko">PCF 글꼴</comment>
+ <comment xml:lang="kk">PCF қарібі</comment>
+ <comment xml:lang="ja">PCF フォント</comment>
+ <comment xml:lang="it">Carattere PCF</comment>
+ <comment xml:lang="is">PCF letur</comment>
+ <comment xml:lang="id">Fonta PCF</comment>
+ <comment xml:lang="ia">Typo de litteras PCF</comment>
+ <comment xml:lang="hu">PCF-betűkészlet</comment>
+ <comment xml:lang="hr">PCF font</comment>
+ <comment xml:lang="he">גופן PCF</comment>
+ <comment xml:lang="gl">tipo de letra PCF</comment>
+ <comment xml:lang="ga">cló PCF</comment>
+ <comment xml:lang="fur">caratar PCF</comment>
+ <comment xml:lang="fr">police PCF</comment>
+ <comment xml:lang="fo">PCF stavasnið</comment>
+ <comment xml:lang="fi">PCF-fontti</comment>
+ <comment xml:lang="eu">PCF letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra PCF</comment>
+ <comment xml:lang="eo">PCF-tiparo</comment>
+ <comment xml:lang="en_GB">PCF font</comment>
+ <comment xml:lang="el">Γραμματοσειρά PCF</comment>
+ <comment xml:lang="de">PCF-Schrift</comment>
+ <comment xml:lang="da">PCF-skrifttype</comment>
+ <comment xml:lang="cy">Ffont PCF</comment>
+ <comment xml:lang="cs">font PCF</comment>
+ <comment xml:lang="ca">lletra PCF</comment>
+ <comment xml:lang="bg">Шрифт — PCF</comment>
+ <comment xml:lang="be@latin">Šryft PCF</comment>
+ <comment xml:lang="be">шрыфт PCF</comment>
+ <comment xml:lang="az">PCF yazı növü</comment>
+ <comment xml:lang="ar">خط PCF</comment>
+ <comment xml:lang="af">PCF-skriftipe</comment>
+ <acronym>PCF</acronym>
+ <expanded-acronym>Portable Compiled Format</expanded-acronym>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="\001fcp" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\001fcp" offset="0"/>
</magic>
<glob pattern="*.pcf"/>
<glob pattern="*.pcf.Z"/>
@@ -11212,612 +12037,703 @@
</mime-type>
<mime-type type="font/otf">
<comment>OpenType font</comment>
- <comment xml:lang="ar">خط OpenType</comment>
- <comment xml:lang="az">OpenType yazı növü</comment>
- <comment xml:lang="be@latin">Šryft OpenType</comment>
- <comment xml:lang="bg">Шрифт — OpenType</comment>
- <comment xml:lang="ca">lletra OpenType</comment>
- <comment xml:lang="cs">font OpenType</comment>
- <comment xml:lang="cy">Ffont OpenType</comment>
- <comment xml:lang="da">OpenType-skrifttype</comment>
- <comment xml:lang="de">OpenType-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά OpenType </comment>
- <comment xml:lang="en_GB">OpenType font</comment>
- <comment xml:lang="eo">OpenType-tiparo</comment>
- <comment xml:lang="es">tipo de letra OpenType</comment>
- <comment xml:lang="eu">OpenType letra-tipoa</comment>
- <comment xml:lang="fi">OpenType-fontti</comment>
- <comment xml:lang="fo">OpenType stavasnið</comment>
- <comment xml:lang="fr">police OpenType</comment>
- <comment xml:lang="ga">cló OpenType</comment>
- <comment xml:lang="gl">tipo de fonte OpenType</comment>
- <comment xml:lang="he">גופן של OpenType</comment>
- <comment xml:lang="hr">OpenType slovo</comment>
- <comment xml:lang="hu">OpenType-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras OpenType</comment>
- <comment xml:lang="id">Fonta OpenType</comment>
- <comment xml:lang="it">Carattere OpenType</comment>
- <comment xml:lang="ja">OpenType フォント</comment>
- <comment xml:lang="kk">OpenType қарібі</comment>
- <comment xml:lang="ko">오픈타입 글꼴</comment>
- <comment xml:lang="lt">OpenType šriftas</comment>
- <comment xml:lang="lv">OpenType fonts</comment>
- <comment xml:lang="ms">Font OpenType</comment>
- <comment xml:lang="nb">OpenType-skrifttype</comment>
- <comment xml:lang="nl">OpenType-lettertype</comment>
- <comment xml:lang="nn">OpenType-skrifttype</comment>
- <comment xml:lang="oc">poliça OpenType</comment>
- <comment xml:lang="pl">Czcionka OpenType</comment>
- <comment xml:lang="pt">letra OpenType</comment>
- <comment xml:lang="pt_BR">Fonte OpenType</comment>
- <comment xml:lang="ro">Font OpenType</comment>
- <comment xml:lang="ru">Шрифт OpenType</comment>
- <comment xml:lang="sk">Písmo OpenType</comment>
- <comment xml:lang="sl">Datoteka pisave OpenType</comment>
- <comment xml:lang="sq">Gërma OpenType</comment>
- <comment xml:lang="sr">слова Отворене Врсте</comment>
- <comment xml:lang="sv">OpenType-typsnitt</comment>
- <comment xml:lang="tr">OpenType fontu</comment>
- <comment xml:lang="uk">шрифт OpenType</comment>
- <comment xml:lang="vi">Phông chữ OpenType</comment>
- <comment xml:lang="zh_CN">OpenType 字体</comment>
<comment xml:lang="zh_TW">OpenType 字型</comment>
+ <comment xml:lang="zh_CN">OpenType 字体</comment>
+ <comment xml:lang="vi">Phông chữ OpenType</comment>
+ <comment xml:lang="uk">шрифт OpenType</comment>
+ <comment xml:lang="tr">OpenType yazı tipi</comment>
+ <comment xml:lang="sv">OpenType-typsnitt</comment>
+ <comment xml:lang="sr">слова Отворене Врсте</comment>
+ <comment xml:lang="sq">shkronja OpenType</comment>
+ <comment xml:lang="sl">Datoteka pisave OpenType</comment>
+ <comment xml:lang="si">OpenType අකුරු</comment>
+ <comment xml:lang="sk">Písmo OpenType</comment>
+ <comment xml:lang="ru">Шрифт OpenType</comment>
+ <comment xml:lang="ro">Font OpenType</comment>
+ <comment xml:lang="pt_BR">Fonte OpenType</comment>
+ <comment xml:lang="pt">letra OpenType</comment>
+ <comment xml:lang="pl">Czcionka OpenType</comment>
+ <comment xml:lang="oc">poliça OpenType</comment>
+ <comment xml:lang="nn">OpenType-skrifttype</comment>
+ <comment xml:lang="nl">OpenType-lettertype</comment>
+ <comment xml:lang="nb">OpenType-skrifttype</comment>
+ <comment xml:lang="ms">Font OpenType</comment>
+ <comment xml:lang="lv">OpenType fonts</comment>
+ <comment xml:lang="lt">OpenType šriftas</comment>
+ <comment xml:lang="ko">오픈타입 글꼴</comment>
+ <comment xml:lang="kk">OpenType қарібі</comment>
+ <comment xml:lang="ja">OpenType フォント</comment>
+ <comment xml:lang="it">Carattere OpenType</comment>
+ <comment xml:lang="is">Open Type letur</comment>
+ <comment xml:lang="id">Fonta OpenType</comment>
+ <comment xml:lang="ia">Typo de litteras OpenType</comment>
+ <comment xml:lang="hu">OpenType-betűkészlet</comment>
+ <comment xml:lang="hr">OpenType font</comment>
+ <comment xml:lang="he">גופן של OpenType</comment>
+ <comment xml:lang="gl">tipo de fonte OpenType</comment>
+ <comment xml:lang="ga">cló OpenType</comment>
+ <comment xml:lang="fur">caratar OpenType</comment>
+ <comment xml:lang="fr">police OpenType</comment>
+ <comment xml:lang="fo">OpenType stavasnið</comment>
+ <comment xml:lang="fi">OpenType-fontti</comment>
+ <comment xml:lang="eu">OpenType letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra OpenType</comment>
+ <comment xml:lang="eo">OpenType-tiparo</comment>
+ <comment xml:lang="en_GB">OpenType font</comment>
+ <comment xml:lang="el">Γραμματοσειρά OpenType </comment>
+ <comment xml:lang="de">OpenType-Schrift</comment>
+ <comment xml:lang="da">OpenType-skrifttype</comment>
+ <comment xml:lang="cy">Ffont OpenType</comment>
+ <comment xml:lang="cs">font OpenType</comment>
+ <comment xml:lang="ca">lletra OpenType</comment>
+ <comment xml:lang="bg">Шрифт — OpenType</comment>
+ <comment xml:lang="be@latin">Šryft OpenType</comment>
+ <comment xml:lang="be">шрыфт OpenType</comment>
+ <comment xml:lang="az">OpenType yazı növü</comment>
+ <comment xml:lang="ar">خط OpenType</comment>
+ <comment xml:lang="af">OpenType-skriftipe</comment>
<sub-class-of type="font/ttf"/>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="OTTO" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="OTTO" offset="0"/>
</magic>
<glob pattern="*.otf"/>
<alias type="application/x-font-otf"/>
</mime-type>
<mime-type type="application/x-font-speedo">
<comment>Speedo font</comment>
- <comment xml:lang="ar">خط Speedo</comment>
- <comment xml:lang="az">Speedo yazı növü</comment>
- <comment xml:lang="be@latin">Šryft Speedo</comment>
- <comment xml:lang="bg">Шрифт — Speedo</comment>
- <comment xml:lang="ca">lletra Speedo</comment>
- <comment xml:lang="cs">font Speedo</comment>
- <comment xml:lang="cy">Ffont Speedo</comment>
- <comment xml:lang="da">Speedoskrifttype</comment>
- <comment xml:lang="de">Speedo-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά Speedo</comment>
- <comment xml:lang="en_GB">Speedo font</comment>
- <comment xml:lang="eo">Speedo-tiparo</comment>
- <comment xml:lang="es">tipo de letra de Speedo</comment>
- <comment xml:lang="eu">Speedo letra-tipoa</comment>
- <comment xml:lang="fi">Speedo-fontti</comment>
- <comment xml:lang="fo">Speedo stavasnið</comment>
- <comment xml:lang="fr">police Speedo</comment>
- <comment xml:lang="ga">cló Speedo</comment>
- <comment xml:lang="gl">tipo de letra Speedo</comment>
- <comment xml:lang="he">גופן של Speedo</comment>
- <comment xml:lang="hr">Speedo slovo</comment>
- <comment xml:lang="hu">Speedo-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras Speedo</comment>
- <comment xml:lang="id">Fonta Speedo</comment>
- <comment xml:lang="it">Carattere Speedo</comment>
- <comment xml:lang="ja">Speedo フォント</comment>
- <comment xml:lang="kk">Speedo қарібі</comment>
- <comment xml:lang="ko">Speedo 글꼴</comment>
- <comment xml:lang="lt">Speedo šriftas</comment>
- <comment xml:lang="lv">Speedo fonts</comment>
- <comment xml:lang="ms">Font Speedo</comment>
- <comment xml:lang="nb">Speedo-skrifttype</comment>
- <comment xml:lang="nl">Speedo-lettertype</comment>
- <comment xml:lang="nn">Speedo-skrifttype</comment>
- <comment xml:lang="oc">poliça Speedo</comment>
- <comment xml:lang="pl">Czcionka Speedo</comment>
- <comment xml:lang="pt">letra Speedo</comment>
- <comment xml:lang="pt_BR">Fonte Speedo</comment>
- <comment xml:lang="ro">Font Speedo</comment>
- <comment xml:lang="ru">Шрифт Speedo</comment>
- <comment xml:lang="sk">Písmo Speedo</comment>
- <comment xml:lang="sl">Datoteka pisave Speedo</comment>
- <comment xml:lang="sq">Gërma Speedo</comment>
- <comment xml:lang="sr">Спидо слова</comment>
- <comment xml:lang="sv">Speedo-typsnitt</comment>
- <comment xml:lang="tr">Speedo fontu</comment>
- <comment xml:lang="uk">шрифт Speedo</comment>
- <comment xml:lang="vi">Phông chữ Speedo</comment>
- <comment xml:lang="zh_CN">Speedo 字体</comment>
<comment xml:lang="zh_TW">Speedo 字型</comment>
+ <comment xml:lang="zh_CN">Speedo 字体</comment>
+ <comment xml:lang="vi">Phông chữ Speedo</comment>
+ <comment xml:lang="uk">шрифт Speedo</comment>
+ <comment xml:lang="tr">Speedo yazı tipi</comment>
+ <comment xml:lang="sv">Speedo-typsnitt</comment>
+ <comment xml:lang="sr">Спидо слова</comment>
+ <comment xml:lang="sq">shkronja Speedo</comment>
+ <comment xml:lang="sl">Datoteka pisave Speedo</comment>
+ <comment xml:lang="si">ස්පීඩෝ අකුරු</comment>
+ <comment xml:lang="sk">Písmo Speedo</comment>
+ <comment xml:lang="ru">Шрифт Speedo</comment>
+ <comment xml:lang="ro">Font Speedo</comment>
+ <comment xml:lang="pt_BR">Fonte Speedo</comment>
+ <comment xml:lang="pt">letra Speedo</comment>
+ <comment xml:lang="pl">Czcionka Speedo</comment>
+ <comment xml:lang="oc">poliça Speedo</comment>
+ <comment xml:lang="nn">Speedo-skrifttype</comment>
+ <comment xml:lang="nl">Speedo-lettertype</comment>
+ <comment xml:lang="nb">Speedo-skrifttype</comment>
+ <comment xml:lang="ms">Font Speedo</comment>
+ <comment xml:lang="lv">Speedo fonts</comment>
+ <comment xml:lang="lt">Speedo šriftas</comment>
+ <comment xml:lang="ko">Speedo 글꼴</comment>
+ <comment xml:lang="kk">Speedo қарібі</comment>
+ <comment xml:lang="ja">Speedo フォント</comment>
+ <comment xml:lang="it">Carattere Speedo</comment>
+ <comment xml:lang="is">Speedo letur</comment>
+ <comment xml:lang="id">Fonta Speedo</comment>
+ <comment xml:lang="ia">Typo de litteras Speedo</comment>
+ <comment xml:lang="hu">Speedo-betűkészlet</comment>
+ <comment xml:lang="hr">Speedo font</comment>
+ <comment xml:lang="he">גופן של Speedo</comment>
+ <comment xml:lang="gl">tipo de letra Speedo</comment>
+ <comment xml:lang="ga">cló Speedo</comment>
+ <comment xml:lang="fur">caratar Speedo</comment>
+ <comment xml:lang="fr">police Speedo</comment>
+ <comment xml:lang="fo">Speedo stavasnið</comment>
+ <comment xml:lang="fi">Speedo-fontti</comment>
+ <comment xml:lang="eu">Speedo letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra de Speedo</comment>
+ <comment xml:lang="eo">Speedo-tiparo</comment>
+ <comment xml:lang="en_GB">Speedo font</comment>
+ <comment xml:lang="el">Γραμματοσειρά Speedo</comment>
+ <comment xml:lang="de">Speedo-Schrift</comment>
+ <comment xml:lang="da">Speedoskrifttype</comment>
+ <comment xml:lang="cy">Ffont Speedo</comment>
+ <comment xml:lang="cs">font Speedo</comment>
+ <comment xml:lang="ca">lletra Speedo</comment>
+ <comment xml:lang="bg">Шрифт — Speedo</comment>
+ <comment xml:lang="be@latin">Šryft Speedo</comment>
+ <comment xml:lang="be">шрыфт Speedo</comment>
+ <comment xml:lang="az">Speedo yazı növü</comment>
+ <comment xml:lang="ar">خط Speedo</comment>
+ <comment xml:lang="af">Speedo-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="D1.0\015" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="D1.0\015" offset="0"/>
</magic>
<glob pattern="*.spd"/>
</mime-type>
<mime-type type="application/x-font-sunos-news">
<comment>SunOS News font</comment>
- <comment xml:lang="ar">خط SunOS News</comment>
- <comment xml:lang="az">SunOS News yazı növü</comment>
- <comment xml:lang="be@latin">Šryft SunOS News</comment>
- <comment xml:lang="bg">Шрифт — SunOS News</comment>
- <comment xml:lang="ca">lletra News de SunOS</comment>
- <comment xml:lang="cs">font SunOS News</comment>
- <comment xml:lang="cy">Ffont SunOS News</comment>
- <comment xml:lang="da">SunOS News-skrifttype</comment>
- <comment xml:lang="de">SunOS-News-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά SunOS News</comment>
- <comment xml:lang="en_GB">SunOS News font</comment>
- <comment xml:lang="eo">tiparo de SunOS News</comment>
- <comment xml:lang="es">tipo de letra para NeWS de SunOS</comment>
- <comment xml:lang="eu">SunOs News letra-tipoa</comment>
- <comment xml:lang="fi">SunOS News -fontti</comment>
- <comment xml:lang="fo">SunOS News stavasnið</comment>
- <comment xml:lang="fr">police SunOS News</comment>
- <comment xml:lang="ga">cló SunOS News</comment>
- <comment xml:lang="gl">tipo de letra SunOS News</comment>
- <comment xml:lang="he">גופן של SunOS News</comment>
- <comment xml:lang="hr">SunOS News slovo</comment>
- <comment xml:lang="hu">SunOS News-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras SunOS News</comment>
- <comment xml:lang="id">Fonta SunOS News</comment>
- <comment xml:lang="it">Carattere SunOS News</comment>
- <comment xml:lang="ja">SunOS News フォント</comment>
- <comment xml:lang="kk">SunOS News қарібі</comment>
- <comment xml:lang="ko">SunOS News 글꼴</comment>
- <comment xml:lang="lt">SunOS News šriftas</comment>
- <comment xml:lang="lv">SunOS News fonts</comment>
- <comment xml:lang="ms">Font News SunOS</comment>
- <comment xml:lang="nb">SunOS News-skrifttype</comment>
- <comment xml:lang="nl">SunOS News-lettertype</comment>
- <comment xml:lang="nn">SunOS NEWS-skrifttype</comment>
- <comment xml:lang="oc">poliça SunOS News</comment>
- <comment xml:lang="pl">Czcionka SunOS News</comment>
- <comment xml:lang="pt">letra SunOS News</comment>
- <comment xml:lang="pt_BR">Fonte SunOS News</comment>
- <comment xml:lang="ro">Font SunOS News</comment>
- <comment xml:lang="ru">Шрифт SunOS News</comment>
- <comment xml:lang="sk">Písmo SunOS News</comment>
- <comment xml:lang="sl">Datoteka pisave SunOS News</comment>
- <comment xml:lang="sq">Gërma SunOS News</comment>
- <comment xml:lang="sr">слова СанОС Њуза</comment>
- <comment xml:lang="sv">SunOS News-typsnitt</comment>
- <comment xml:lang="tr">SunOS News yazı tipi</comment>
- <comment xml:lang="uk">шрифт SunOS News</comment>
- <comment xml:lang="vi">Phông chữ SunOS News</comment>
- <comment xml:lang="zh_CN">SunOS News 字体</comment>
<comment xml:lang="zh_TW">SunOS News 字型</comment>
+ <comment xml:lang="zh_CN">SunOS News 字体</comment>
+ <comment xml:lang="vi">Phông chữ SunOS News</comment>
+ <comment xml:lang="uk">шрифт SunOS News</comment>
+ <comment xml:lang="tr">SunOS News yazı tipi</comment>
+ <comment xml:lang="sv">SunOS News-typsnitt</comment>
+ <comment xml:lang="sr">слова СанОС Њуза</comment>
+ <comment xml:lang="sq">shkronja SunOS News</comment>
+ <comment xml:lang="sl">Datoteka pisave SunOS News</comment>
+ <comment xml:lang="si">SunOS News අකුරු</comment>
+ <comment xml:lang="sk">Písmo SunOS News</comment>
+ <comment xml:lang="ru">Шрифт SunOS News</comment>
+ <comment xml:lang="ro">Font SunOS News</comment>
+ <comment xml:lang="pt_BR">Fonte SunOS News</comment>
+ <comment xml:lang="pt">letra SunOS News</comment>
+ <comment xml:lang="pl">Czcionka SunOS News</comment>
+ <comment xml:lang="oc">poliça SunOS News</comment>
+ <comment xml:lang="nn">SunOS NEWS-skrifttype</comment>
+ <comment xml:lang="nl">SunOS News-lettertype</comment>
+ <comment xml:lang="nb">SunOS News-skrifttype</comment>
+ <comment xml:lang="ms">Font News SunOS</comment>
+ <comment xml:lang="lv">SunOS News fonts</comment>
+ <comment xml:lang="lt">SunOS News šriftas</comment>
+ <comment xml:lang="ko">SunOS News 글꼴</comment>
+ <comment xml:lang="kk">SunOS News қарібі</comment>
+ <comment xml:lang="ja">SunOS News フォント</comment>
+ <comment xml:lang="it">Carattere SunOS News</comment>
+ <comment xml:lang="is">SunOS News letur</comment>
+ <comment xml:lang="id">Fonta SunOS News</comment>
+ <comment xml:lang="ia">Typo de litteras SunOS News</comment>
+ <comment xml:lang="hu">SunOS News-betűkészlet</comment>
+ <comment xml:lang="hr">SunOS News font</comment>
+ <comment xml:lang="he">גופן של SunOS News</comment>
+ <comment xml:lang="gl">tipo de letra SunOS News</comment>
+ <comment xml:lang="ga">cló SunOS News</comment>
+ <comment xml:lang="fur">caratar SunOS News</comment>
+ <comment xml:lang="fr">police SunOS News</comment>
+ <comment xml:lang="fo">SunOS News stavasnið</comment>
+ <comment xml:lang="fi">SunOS News -fontti</comment>
+ <comment xml:lang="eu">SunOs News letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra para NeWS de SunOS</comment>
+ <comment xml:lang="eo">tiparo de SunOS News</comment>
+ <comment xml:lang="en_GB">SunOS News font</comment>
+ <comment xml:lang="el">Γραμματοσειρά SunOS News</comment>
+ <comment xml:lang="de">SunOS-NeWS-Schrift</comment>
+ <comment xml:lang="da">SunOS News-skrifttype</comment>
+ <comment xml:lang="cy">Ffont SunOS News</comment>
+ <comment xml:lang="cs">font SunOS News</comment>
+ <comment xml:lang="ca">lletra News de SunOS</comment>
+ <comment xml:lang="bg">Шрифт — SunOS News</comment>
+ <comment xml:lang="be@latin">Šryft SunOS News</comment>
+ <comment xml:lang="be">шрыфт SunOS News</comment>
+ <comment xml:lang="az">SunOS News yazı növü</comment>
+ <comment xml:lang="ar">خط SunOS News</comment>
+ <comment xml:lang="af">SunOS News-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="StartFont" type="string" offset="0"/>
- <match value="\x13\x7A\x29" type="string" offset="0"/>
- <match value="\x13\x7A\x2B" type="string" offset="8"/>
+ <magic>
+ <match type="string" value="StartFont" offset="0"/>
+ <match type="string" value="\x13\x7A\x29" offset="0"/>
+ <match type="string" value="\x13\x7A\x2B" offset="8"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/font-tdpfr">
+ <comment>TDPFR font</comment>
+ <comment xml:lang="uk">шрифт TDPFR</comment>
+ <comment xml:lang="sv">TDPFR-typsnitt</comment>
+ <comment xml:lang="ru">Шрифт TDPFR</comment>
+ <comment xml:lang="pt_BR">Fonte TDPFR</comment>
+ <comment xml:lang="pl">Czcionka TDPFR</comment>
+ <comment xml:lang="it">Carattere TDPFR</comment>
+ <comment xml:lang="gl">Tipo de letra TDPFR</comment>
+ <comment xml:lang="eu">TDPFR letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra TDPFR</comment>
+ <comment xml:lang="de">TDPFR-Schrift</comment>
+ <comment xml:lang="be">шрыфт TDPFR</comment>
+ <acronym>TDPFR</acronym>
+ <expanded-acronym>TrueDoc Portable Font Resource</expanded-acronym>
+ <generic-icon name="font-x-generic"/>
+ <magic>
+ <match type="big32" value="0x50465230" offset="0"/>
+ <match type="big32" value="0x50465231" offset="0"/>
</magic>
+ <glob pattern="*.pfr"/>
+ <alias type="application/vnd.truedoc"/>
</mime-type>
<mime-type type="application/x-font-tex">
<comment>TeX font</comment>
- <comment xml:lang="ar">خط TeX</comment>
- <comment xml:lang="az">TeX yazı növü</comment>
- <comment xml:lang="be@latin">Šryft TeX</comment>
- <comment xml:lang="bg">Шрифт — TeX</comment>
- <comment xml:lang="ca">lletra TeX</comment>
- <comment xml:lang="cs">font TeX</comment>
- <comment xml:lang="cy">Ffont TeX</comment>
- <comment xml:lang="da">TeX-skrifttype</comment>
- <comment xml:lang="de">TeX-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά TeX</comment>
- <comment xml:lang="en_GB">TeX font</comment>
- <comment xml:lang="eo">TeX-tiparo</comment>
- <comment xml:lang="es">tipo de letra de TeX</comment>
- <comment xml:lang="eu">TeX letra-tipoa</comment>
- <comment xml:lang="fi">TeX-fontti</comment>
- <comment xml:lang="fo">TeX stavasnið</comment>
- <comment xml:lang="fr">police TeX</comment>
- <comment xml:lang="ga">cló TeX</comment>
- <comment xml:lang="gl">tipo de letra de TeX</comment>
- <comment xml:lang="he">גופן TeX</comment>
- <comment xml:lang="hr">TeX slovo</comment>
- <comment xml:lang="hu">TeX-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras TeX</comment>
- <comment xml:lang="id">Fonta TeX</comment>
- <comment xml:lang="it">Carattere TeX</comment>
- <comment xml:lang="ja">TeX フォント</comment>
- <comment xml:lang="kk">TeX қарібі</comment>
- <comment xml:lang="ko">TeX 글꼴</comment>
- <comment xml:lang="lt">TeX šriftas</comment>
- <comment xml:lang="lv">TeX fonts</comment>
- <comment xml:lang="ms">Font TeX</comment>
- <comment xml:lang="nb">TeX-skrift</comment>
- <comment xml:lang="nl">TeX-lettertype</comment>
- <comment xml:lang="nn">TeX-skrifttype</comment>
- <comment xml:lang="oc">poliça TeX</comment>
- <comment xml:lang="pl">Czcionka TeX</comment>
- <comment xml:lang="pt">letra TeX</comment>
- <comment xml:lang="pt_BR">Fonte TeX</comment>
- <comment xml:lang="ro">Font TeX</comment>
- <comment xml:lang="ru">Шрифт TeX</comment>
- <comment xml:lang="sk">Písmo TeX</comment>
- <comment xml:lang="sl">Datoteka pisave TeX</comment>
- <comment xml:lang="sq">Gërma TeX</comment>
- <comment xml:lang="sr">ТеКс слова</comment>
- <comment xml:lang="sv">TeX-typsnitt</comment>
- <comment xml:lang="tr">TeX fontu</comment>
- <comment xml:lang="uk">шрифт TeX</comment>
- <comment xml:lang="vi">Phông chữ TeX</comment>
- <comment xml:lang="zh_CN">TeX 字体</comment>
<comment xml:lang="zh_TW">TeX 字型</comment>
+ <comment xml:lang="zh_CN">TeX 字体</comment>
+ <comment xml:lang="vi">Phông chữ TeX</comment>
+ <comment xml:lang="uk">шрифт TeX</comment>
+ <comment xml:lang="tr">TeX yazı tipi</comment>
+ <comment xml:lang="sv">TeX-typsnitt</comment>
+ <comment xml:lang="sr">ТеКс слова</comment>
+ <comment xml:lang="sq">shkronja TeX</comment>
+ <comment xml:lang="sl">Datoteka pisave TeX</comment>
+ <comment xml:lang="si">TeX අකුරු</comment>
+ <comment xml:lang="sk">Písmo TeX</comment>
+ <comment xml:lang="ru">Шрифт TeX</comment>
+ <comment xml:lang="ro">Font TeX</comment>
+ <comment xml:lang="pt_BR">Fonte TeX</comment>
+ <comment xml:lang="pt">letra TeX</comment>
+ <comment xml:lang="pl">Czcionka TeX</comment>
+ <comment xml:lang="oc">poliça TeX</comment>
+ <comment xml:lang="nn">TeX-skrifttype</comment>
+ <comment xml:lang="nl">TeX-lettertype</comment>
+ <comment xml:lang="nb">TeX-skrift</comment>
+ <comment xml:lang="ms">Font TeX</comment>
+ <comment xml:lang="lv">TeX fonts</comment>
+ <comment xml:lang="lt">TeX šriftas</comment>
+ <comment xml:lang="ko">TeX 글꼴</comment>
+ <comment xml:lang="kk">TeX қарібі</comment>
+ <comment xml:lang="ja">TeX フォント</comment>
+ <comment xml:lang="it">Carattere TeX</comment>
+ <comment xml:lang="is">TeX letur</comment>
+ <comment xml:lang="id">Fonta TeX</comment>
+ <comment xml:lang="ia">Typo de litteras TeX</comment>
+ <comment xml:lang="hu">TeX-betűkészlet</comment>
+ <comment xml:lang="hr">TeX font</comment>
+ <comment xml:lang="he">גופן TeX</comment>
+ <comment xml:lang="gl">tipo de letra de TeX</comment>
+ <comment xml:lang="ga">cló TeX</comment>
+ <comment xml:lang="fur">caratar TeX</comment>
+ <comment xml:lang="fr">police TeX</comment>
+ <comment xml:lang="fo">TeX stavasnið</comment>
+ <comment xml:lang="fi">TeX-fontti</comment>
+ <comment xml:lang="eu">TeX letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra de TeX</comment>
+ <comment xml:lang="eo">TeX-tiparo</comment>
+ <comment xml:lang="en_GB">TeX font</comment>
+ <comment xml:lang="el">Γραμματοσειρά TeX</comment>
+ <comment xml:lang="de">TeX-Schrift</comment>
+ <comment xml:lang="da">TeX-skrifttype</comment>
+ <comment xml:lang="cy">Ffont TeX</comment>
+ <comment xml:lang="cs">font TeX</comment>
+ <comment xml:lang="ca">lletra TeX</comment>
+ <comment xml:lang="bg">Шрифт — TeX</comment>
+ <comment xml:lang="be@latin">Šryft TeX</comment>
+ <comment xml:lang="be">шрыфт TeX</comment>
+ <comment xml:lang="az">TeX yazı növü</comment>
+ <comment xml:lang="ar">خط TeX</comment>
+ <comment xml:lang="af">TeX-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="\367\203" type="string" offset="0"/>
- <match value="\367\131" type="string" offset="0"/>
- <match value="\367\312" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\367\203" offset="0"/>
+ <match type="string" value="\367\131" offset="0"/>
+ <match type="string" value="\367\312" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-font-tex-tfm">
<comment>TeX font metrics</comment>
- <comment xml:lang="ar">مقاييس خط TeX</comment>
- <comment xml:lang="az">TeX yazı növü metrikləri</comment>
- <comment xml:lang="be@latin">Metryka šryftu TeX</comment>
- <comment xml:lang="bg">Шрифтова метрика — TeX</comment>
- <comment xml:lang="ca">mètrica de lletra de TeX</comment>
- <comment xml:lang="cs">metrika fontu TeX</comment>
- <comment xml:lang="cy">Metrigau Ffont TeX</comment>
- <comment xml:lang="da">TeX-skrifttypeinformation</comment>
- <comment xml:lang="de">TeX-Schriftmetriken</comment>
- <comment xml:lang="el">Μετρικά γραμματοσειράς TeX</comment>
- <comment xml:lang="en_GB">TeX font metrics</comment>
- <comment xml:lang="eo">metrikoj de TeX-tiparo</comment>
- <comment xml:lang="es">métricas tipográficas de TeX</comment>
- <comment xml:lang="eu">TeX letra-tipoen neurriak</comment>
- <comment xml:lang="fi">TeX-fonttimitat</comment>
- <comment xml:lang="fr">métriques de police TeX</comment>
- <comment xml:lang="ga">meadarachtaí cló TeX</comment>
- <comment xml:lang="gl">Métricas de tipo de letra de TeX</comment>
- <comment xml:lang="he">ממדי גופן של TeX</comment>
- <comment xml:lang="hr">TeX mjere slova</comment>
- <comment xml:lang="hu">TeX-betűmetrika</comment>
- <comment xml:lang="ia">Metricas de typo de litteras TeX</comment>
- <comment xml:lang="id">Fonta metrik TeX</comment>
- <comment xml:lang="it">Metriche tipo carattere TeX</comment>
- <comment xml:lang="ja">TeX フォントメトリック</comment>
- <comment xml:lang="kk">TeX қаріп метрикалары</comment>
- <comment xml:lang="ko">TeX 글꼴 메트릭</comment>
- <comment xml:lang="lt">TeX šriftų metrika</comment>
- <comment xml:lang="lv">TeX fonta metrikas</comment>
- <comment xml:lang="ms">Metrik font TeX</comment>
- <comment xml:lang="nb">TeX skrifttypemetrikk</comment>
- <comment xml:lang="nl">TeX-lettertype-metrieken</comment>
- <comment xml:lang="nn">TeX skrifttypemetrikk</comment>
- <comment xml:lang="oc">metricas de poliça TeX</comment>
- <comment xml:lang="pl">Metryki czcionki TeX</comment>
- <comment xml:lang="pt">métricas de letra TeX</comment>
- <comment xml:lang="pt_BR">Métrica de fonte TeX</comment>
- <comment xml:lang="ro">Dimensiuni font TeX</comment>
- <comment xml:lang="ru">Метрика шрифта TeX</comment>
- <comment xml:lang="sk">Metrika písma TeX</comment>
- <comment xml:lang="sl">Matrika pisave Tex</comment>
- <comment xml:lang="sq">Gërma TeX metrics</comment>
- <comment xml:lang="sr">метрика слова ТеКс-а</comment>
- <comment xml:lang="sv">TeX-typsnittsmetrik</comment>
- <comment xml:lang="tr">TeX yazı tipi ölçüleri</comment>
- <comment xml:lang="uk">метрики шрифту TeX</comment>
- <comment xml:lang="vi">Cách đo phông chữ TeX</comment>
- <comment xml:lang="zh_CN">TeX 字体规格</comment>
<comment xml:lang="zh_TW">TeX 字型描述檔</comment>
+ <comment xml:lang="zh_CN">TeX 字体规格</comment>
+ <comment xml:lang="vi">Cách đo phông chữ TeX</comment>
+ <comment xml:lang="uk">метрики шрифту TeX</comment>
+ <comment xml:lang="tr">TeX yazı tipi ölçüleri</comment>
+ <comment xml:lang="sv">TeX-typsnittsmetrik</comment>
+ <comment xml:lang="sr">метрика слова ТеКс-а</comment>
+ <comment xml:lang="sq">vlera shkronjash TeX</comment>
+ <comment xml:lang="sl">Matrika pisave Tex</comment>
+ <comment xml:lang="si">TeX අකුරු ප්‍රමිතික</comment>
+ <comment xml:lang="sk">Metrika písma TeX</comment>
+ <comment xml:lang="ru">Метрика шрифта TeX</comment>
+ <comment xml:lang="ro">Dimensiuni font TeX</comment>
+ <comment xml:lang="pt_BR">Métrica de fonte TeX</comment>
+ <comment xml:lang="pt">métricas de letra TeX</comment>
+ <comment xml:lang="pl">Metryki czcionki TeX</comment>
+ <comment xml:lang="oc">metricas de poliça TeX</comment>
+ <comment xml:lang="nn">TeX skrifttypemetrikk</comment>
+ <comment xml:lang="nl">TeX-lettertype-metrieken</comment>
+ <comment xml:lang="nb">TeX skrifttypemetrikk</comment>
+ <comment xml:lang="ms">Metrik font TeX</comment>
+ <comment xml:lang="lv">TeX fonta metrikas</comment>
+ <comment xml:lang="lt">TeX šriftų metrika</comment>
+ <comment xml:lang="ko">TeX 글꼴 메트릭</comment>
+ <comment xml:lang="kk">TeX қаріп метрикалары</comment>
+ <comment xml:lang="ja">TeX フォントメトリック</comment>
+ <comment xml:lang="it">Metriche tipo carattere TeX</comment>
+ <comment xml:lang="is">TeX leturupplýsingar</comment>
+ <comment xml:lang="id">Fonta metrik TeX</comment>
+ <comment xml:lang="ia">Metricas de typo de litteras TeX</comment>
+ <comment xml:lang="hu">TeX-betűmetrika</comment>
+ <comment xml:lang="hr">Metrika TeX fonta</comment>
+ <comment xml:lang="he">ממדי גופן של TeX</comment>
+ <comment xml:lang="gl">Métricas de tipo de letra de TeX</comment>
+ <comment xml:lang="ga">meadarachtaí cló TeX</comment>
+ <comment xml:lang="fur">metrichis caratar TeX</comment>
+ <comment xml:lang="fr">métriques de police TeX</comment>
+ <comment xml:lang="fi">TeX-fonttimitat</comment>
+ <comment xml:lang="eu">TeX letra-tipoen neurriak</comment>
+ <comment xml:lang="es">métricas tipográficas de TeX</comment>
+ <comment xml:lang="eo">metrikoj de TeX-tiparo</comment>
+ <comment xml:lang="en_GB">TeX font metrics</comment>
+ <comment xml:lang="el">Μετρικά γραμματοσειράς TeX</comment>
+ <comment xml:lang="de">TeX-Schriftmetriken</comment>
+ <comment xml:lang="da">TeX-skrifttypeinformation</comment>
+ <comment xml:lang="cy">Metrigau Ffont TeX</comment>
+ <comment xml:lang="cs">metrika fontu TeX</comment>
+ <comment xml:lang="ca">mètrica de lletra de TeX</comment>
+ <comment xml:lang="bg">Шрифтова метрика — TeX</comment>
+ <comment xml:lang="be@latin">Metryka šryftu TeX</comment>
+ <comment xml:lang="be">метрыкі шрыфту TeX</comment>
+ <comment xml:lang="az">TeX yazı növü metrikləri</comment>
+ <comment xml:lang="ar">مقاييس خط TeX</comment>
+ <comment xml:lang="af">TeX-skriftipeafmetings</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="\000\021" type="string" offset="2"/>
- <match value="\000\022" type="string" offset="2"/>
+ <magic>
+ <match type="string" value="\000\021" offset="2"/>
+ <match type="string" value="\000\022" offset="2"/>
</magic>
</mime-type>
<mime-type type="font/ttf">
<comment>TrueType font</comment>
- <comment xml:lang="ar">خط TrueType</comment>
- <comment xml:lang="be@latin">Šryft TrueType</comment>
- <comment xml:lang="bg">Шрифт — TrueType</comment>
- <comment xml:lang="ca">lletra TrueType</comment>
- <comment xml:lang="cs">font TrueType</comment>
- <comment xml:lang="da">TrueType-skrifttype</comment>
- <comment xml:lang="de">TrueType-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά TrueType</comment>
- <comment xml:lang="en_GB">TrueType font</comment>
- <comment xml:lang="eo">TrueType-tiparo</comment>
- <comment xml:lang="es">tipo de letra TrueType</comment>
- <comment xml:lang="eu">TrueType letra-tipoa</comment>
- <comment xml:lang="fi">TrueType-fontti</comment>
- <comment xml:lang="fo">TrueType stavasnið</comment>
- <comment xml:lang="fr">police Truetype</comment>
- <comment xml:lang="ga">cló TrueType</comment>
- <comment xml:lang="gl">tipo de letra TrueType</comment>
- <comment xml:lang="he">גופן מסוג TrueType</comment>
- <comment xml:lang="hr">TrueType slovo</comment>
- <comment xml:lang="hu">TrueType-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras TrueType</comment>
- <comment xml:lang="id">Fonta TrueType</comment>
- <comment xml:lang="it">Carattere TrueType</comment>
- <comment xml:lang="ja">TrueType フォント</comment>
- <comment xml:lang="kk">TrueType қарібі</comment>
- <comment xml:lang="ko">트루타입 글꼴</comment>
- <comment xml:lang="lt">TrueType šriftas</comment>
- <comment xml:lang="lv">TrueType fonts</comment>
- <comment xml:lang="ms">Font TrueType</comment>
- <comment xml:lang="nb">TrueType-skrift</comment>
- <comment xml:lang="nl">TrueType-lettertype</comment>
- <comment xml:lang="nn">TrueType-skrifttype</comment>
- <comment xml:lang="oc">poliça Truetype</comment>
- <comment xml:lang="pl">Czcionka TrueType</comment>
- <comment xml:lang="pt">letra TrueType</comment>
- <comment xml:lang="pt_BR">Fonte TrueType</comment>
- <comment xml:lang="ro">Font TrueType</comment>
- <comment xml:lang="ru">Шрифт TrueType</comment>
- <comment xml:lang="sk">Písmo TrueType</comment>
- <comment xml:lang="sl">Datoteka pisave TrueType</comment>
- <comment xml:lang="sq">Lloj gërme TrueType</comment>
- <comment xml:lang="sr">Трутајп слова</comment>
- <comment xml:lang="sv">Truetype-typsnitt</comment>
- <comment xml:lang="tr">TrueType fontu</comment>
- <comment xml:lang="uk">шрифт TrueType</comment>
- <comment xml:lang="vi">Phông chữ TrueType</comment>
- <comment xml:lang="zh_CN">TrueType 字体</comment>
<comment xml:lang="zh_TW">TrueType 字型</comment>
+ <comment xml:lang="zh_CN">TrueType 字体</comment>
+ <comment xml:lang="vi">Phông chữ TrueType</comment>
+ <comment xml:lang="uk">шрифт TrueType</comment>
+ <comment xml:lang="tr">TrueType yazı tipi</comment>
+ <comment xml:lang="sv">Truetype-typsnitt</comment>
+ <comment xml:lang="sr">Трутајп слова</comment>
+ <comment xml:lang="sq">shkronja TrueType</comment>
+ <comment xml:lang="sl">Datoteka pisave TrueType</comment>
+ <comment xml:lang="si">TrueType අකුරු</comment>
+ <comment xml:lang="sk">Písmo TrueType</comment>
+ <comment xml:lang="ru">Шрифт TrueType</comment>
+ <comment xml:lang="ro">Font TrueType</comment>
+ <comment xml:lang="pt_BR">Fonte TrueType</comment>
+ <comment xml:lang="pt">letra TrueType</comment>
+ <comment xml:lang="pl">Czcionka TrueType</comment>
+ <comment xml:lang="oc">poliça Truetype</comment>
+ <comment xml:lang="nn">TrueType-skrifttype</comment>
+ <comment xml:lang="nl">TrueType-lettertype</comment>
+ <comment xml:lang="nb">TrueType-skrift</comment>
+ <comment xml:lang="ms">Font TrueType</comment>
+ <comment xml:lang="lv">TrueType fonts</comment>
+ <comment xml:lang="lt">TrueType šriftas</comment>
+ <comment xml:lang="ko">트루타입 글꼴</comment>
+ <comment xml:lang="kk">TrueType қарібі</comment>
+ <comment xml:lang="ja">TrueType フォント</comment>
+ <comment xml:lang="it">Carattere TrueType</comment>
+ <comment xml:lang="is">TrueType letur</comment>
+ <comment xml:lang="id">Fonta TrueType</comment>
+ <comment xml:lang="ia">Typo de litteras TrueType</comment>
+ <comment xml:lang="hu">TrueType-betűkészlet</comment>
+ <comment xml:lang="hr">TrueType font</comment>
+ <comment xml:lang="he">גופן מסוג TrueType</comment>
+ <comment xml:lang="gl">tipo de letra TrueType</comment>
+ <comment xml:lang="ga">cló TrueType</comment>
+ <comment xml:lang="fur">caratar TrueType</comment>
+ <comment xml:lang="fr">police Truetype</comment>
+ <comment xml:lang="fo">TrueType stavasnið</comment>
+ <comment xml:lang="fi">TrueType-fontti</comment>
+ <comment xml:lang="eu">TrueType letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra TrueType</comment>
+ <comment xml:lang="eo">TrueType-tiparo</comment>
+ <comment xml:lang="en_GB">TrueType font</comment>
+ <comment xml:lang="el">Γραμματοσειρά TrueType</comment>
+ <comment xml:lang="de">TrueType-Schrift</comment>
+ <comment xml:lang="da">TrueType-skrifttype</comment>
+ <comment xml:lang="cs">font TrueType</comment>
+ <comment xml:lang="ca">lletra TrueType</comment>
+ <comment xml:lang="bg">Шрифт — TrueType</comment>
+ <comment xml:lang="be@latin">Šryft TrueType</comment>
+ <comment xml:lang="be">шрыфт TrueType</comment>
+ <comment xml:lang="ar">خط TrueType</comment>
+ <comment xml:lang="af">TrueType-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="FFIL" type="string" offset="0"/>
- <match value="FFIL" type="string" offset="65"/>
- <match value="\000\001\000\000\000" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="FFIL" offset="0"/>
+ <match type="string" value="FFIL" offset="65"/>
+ <match type="string" value="\000\001\000\000\000" offset="0"/>
</magic>
<glob pattern="*.ttf"/>
<alias type="application/x-font-ttf"/>
</mime-type>
<mime-type type="font/collection">
<comment>Font collection</comment>
- <comment xml:lang="ca">ccol·lecció de lletres</comment>
- <comment xml:lang="cs">kolekce fontů</comment>
- <comment xml:lang="de">Schriftsammlung</comment>
- <comment xml:lang="en_GB">Font collection</comment>
- <comment xml:lang="es">colección tipográfica</comment>
- <comment xml:lang="fi">Fonttikokoelma</comment>
- <comment xml:lang="hr">Kolekcija slova</comment>
- <comment xml:lang="hu">Betűkészlet-gyűjtemény</comment>
- <comment xml:lang="id">Koleksi fonta</comment>
- <comment xml:lang="it">Raccolta di caratteri</comment>
- <comment xml:lang="kk">Қаріптер жинағы</comment>
- <comment xml:lang="ko">글꼴 모음</comment>
- <comment xml:lang="pl">Kolekcja czcionek</comment>
- <comment xml:lang="pt_BR">coleção de fontes</comment>
- <comment xml:lang="ru">Коллекция шрифтов</comment>
- <comment xml:lang="sk">Zbierka písiem</comment>
- <comment xml:lang="sv">Typsnittssamling</comment>
- <comment xml:lang="uk">збірка шрифтів</comment>
- <comment xml:lang="zh_CN">字体集</comment>
<comment xml:lang="zh_TW">字型集</comment>
+ <comment xml:lang="zh_CN">字体集</comment>
+ <comment xml:lang="uk">збірка шрифтів</comment>
+ <comment xml:lang="tr">Yazı tipi derlemi</comment>
+ <comment xml:lang="sv">Typsnittssamling</comment>
+ <comment xml:lang="sq">koleksion shkronjash</comment>
+ <comment xml:lang="sl">Zbirka pisav</comment>
+ <comment xml:lang="si">අකුරු එකතුව</comment>
+ <comment xml:lang="sk">Zbierka písiem</comment>
+ <comment xml:lang="ru">Коллекция шрифтов</comment>
+ <comment xml:lang="pt_BR">Coleção de fontes</comment>
+ <comment xml:lang="pt">coleção de letras</comment>
+ <comment xml:lang="pl">Kolekcja czcionek</comment>
+ <comment xml:lang="nl">Lettertypeverzameling</comment>
+ <comment xml:lang="ko">글꼴 모음</comment>
+ <comment xml:lang="kk">Қаріптер жинағы</comment>
+ <comment xml:lang="ja">フォントコレクション</comment>
+ <comment xml:lang="it">Raccolta di caratteri</comment>
+ <comment xml:lang="is">Letursafn</comment>
+ <comment xml:lang="id">Koleksi fonta</comment>
+ <comment xml:lang="hu">Betűkészlet-gyűjtemény</comment>
+ <comment xml:lang="hr">Zbirka fontova</comment>
+ <comment xml:lang="he">אוסף גופנים</comment>
+ <comment xml:lang="gl">Colección de tipo de letra</comment>
+ <comment xml:lang="ga">bailiúchán clónna</comment>
+ <comment xml:lang="fur">colezion di caratars</comment>
+ <comment xml:lang="fr">Collection de polices</comment>
+ <comment xml:lang="fi">Fonttikokoelma</comment>
+ <comment xml:lang="eu">Letra-tipo bilduma</comment>
+ <comment xml:lang="es">colección tipográfica</comment>
+ <comment xml:lang="en_GB">Font collection</comment>
+ <comment xml:lang="de">Schriftsammlung</comment>
+ <comment xml:lang="da">Skrifttypesamling</comment>
+ <comment xml:lang="cs">kolekce fontů</comment>
+ <comment xml:lang="ca">ccol·lecció de lletres</comment>
+ <comment xml:lang="bg">Шрифтова колекция</comment>
+ <comment xml:lang="be">калекцыя шрыфтоў</comment>
+ <comment xml:lang="ar">تجميعة خط</comment>
+ <comment xml:lang="af">Skriftipeversameling</comment>
<generic-icon name="font-x-generic"/>
<glob pattern="*.ttc"/>
</mime-type>
<mime-type type="application/x-font-ttx">
<comment>TrueType XML font</comment>
- <comment xml:lang="ar">خط TrueType XML</comment>
- <comment xml:lang="be@latin">Šryft TrueType XML</comment>
- <comment xml:lang="bg">Шрифт — TrueType XML</comment>
- <comment xml:lang="ca">lletra XML de TrueType</comment>
- <comment xml:lang="cs">font TrueType XML</comment>
- <comment xml:lang="da">TrueType XML-skrifttype</comment>
- <comment xml:lang="de">TrueType-XML-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά XML TrueType</comment>
- <comment xml:lang="en_GB">TrueType XML font</comment>
- <comment xml:lang="es">tipo de letra TrueType XML</comment>
- <comment xml:lang="eu">TrueType XML letra-tipoa</comment>
- <comment xml:lang="fi">TrueType-XML-fontti</comment>
- <comment xml:lang="fo">TrueType XML stavasnið</comment>
- <comment xml:lang="fr">police Truetype XML</comment>
- <comment xml:lang="ga">cló XML TrueType</comment>
- <comment xml:lang="gl">tipo de letra TrueType XML</comment>
- <comment xml:lang="he">גופן XML מסוג TrueType</comment>
- <comment xml:lang="hr">TrueType XML slovo</comment>
- <comment xml:lang="hu">TrueType XML betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras TrueType XML</comment>
- <comment xml:lang="id">Fonta TrueType XML</comment>
- <comment xml:lang="it">Carattere TrueType XML</comment>
- <comment xml:lang="ja">TrueType XML フォント</comment>
- <comment xml:lang="kk">TrueType XML қарібі</comment>
- <comment xml:lang="ko">트루타입 XML 글꼴</comment>
- <comment xml:lang="lt">TrueType XML šriftas</comment>
- <comment xml:lang="lv">TrueType XML fonts</comment>
- <comment xml:lang="nb">TrueType XML-skrift</comment>
- <comment xml:lang="nl">TrueType XML-lettertype</comment>
- <comment xml:lang="nn">TrueType XML-skrifttype</comment>
- <comment xml:lang="oc">poliça Truetype XML</comment>
- <comment xml:lang="pl">Czcionka TrueType XML</comment>
- <comment xml:lang="pt">letra TrueType XML</comment>
- <comment xml:lang="pt_BR">Fonte TrueType XML</comment>
- <comment xml:lang="ro">Font XML TrueType</comment>
- <comment xml:lang="ru">Шрифт TrueType XML</comment>
- <comment xml:lang="sk">Písmo TrueType XML</comment>
- <comment xml:lang="sl">Datoteka pisave TrueType XML</comment>
- <comment xml:lang="sq">Lloj gërme TrueType XML</comment>
- <comment xml:lang="sr">Трутајп ИксМЛ слова</comment>
- <comment xml:lang="sv">Truetype XML-typsnitt</comment>
- <comment xml:lang="tr">TrueType XML fontu</comment>
- <comment xml:lang="uk">шрифт TrueType XML</comment>
- <comment xml:lang="vi">Phông chữ XML TrueType</comment>
- <comment xml:lang="zh_CN">TrueType XML 字体</comment>
<comment xml:lang="zh_TW">TrueType XML 字型</comment>
+ <comment xml:lang="zh_CN">TrueType XML 字体</comment>
+ <comment xml:lang="vi">Phông chữ XML TrueType</comment>
+ <comment xml:lang="uk">шрифт TrueType XML</comment>
+ <comment xml:lang="tr">TrueType XML yazı tipi</comment>
+ <comment xml:lang="sv">Truetype XML-typsnitt</comment>
+ <comment xml:lang="sr">Трутајп ИксМЛ слова</comment>
+ <comment xml:lang="sq">shkronja TrueType XML</comment>
+ <comment xml:lang="sl">Datoteka pisave TrueType XML</comment>
+ <comment xml:lang="si">TrueType XML අකුරු</comment>
+ <comment xml:lang="sk">Písmo TrueType XML</comment>
+ <comment xml:lang="ru">Шрифт TrueType XML</comment>
+ <comment xml:lang="ro">Font XML TrueType</comment>
+ <comment xml:lang="pt_BR">Fonte TrueType XML</comment>
+ <comment xml:lang="pt">letra TrueType XML</comment>
+ <comment xml:lang="pl">Czcionka TrueType XML</comment>
+ <comment xml:lang="oc">poliça Truetype XML</comment>
+ <comment xml:lang="nn">TrueType XML-skrifttype</comment>
+ <comment xml:lang="nl">TrueType XML-lettertype</comment>
+ <comment xml:lang="nb">TrueType XML-skrift</comment>
+ <comment xml:lang="lv">TrueType XML fonts</comment>
+ <comment xml:lang="lt">TrueType XML šriftas</comment>
+ <comment xml:lang="ko">트루타입 XML 글꼴</comment>
+ <comment xml:lang="kk">TrueType XML қарібі</comment>
+ <comment xml:lang="ja">TrueType XML フォント</comment>
+ <comment xml:lang="it">Carattere TrueType XML</comment>
+ <comment xml:lang="is">TrueType XML letur</comment>
+ <comment xml:lang="id">Fonta TrueType XML</comment>
+ <comment xml:lang="ia">Typo de litteras TrueType XML</comment>
+ <comment xml:lang="hu">TrueType XML betűkészlet</comment>
+ <comment xml:lang="hr">TrueType XML font</comment>
+ <comment xml:lang="he">גופן XML מסוג TrueType</comment>
+ <comment xml:lang="gl">tipo de letra TrueType XML</comment>
+ <comment xml:lang="ga">cló XML TrueType</comment>
+ <comment xml:lang="fur">caratar TrueType XML</comment>
+ <comment xml:lang="fr">police Truetype XML</comment>
+ <comment xml:lang="fo">TrueType XML stavasnið</comment>
+ <comment xml:lang="fi">TrueType-XML-fontti</comment>
+ <comment xml:lang="eu">TrueType XML letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra TrueType XML</comment>
+ <comment xml:lang="en_GB">TrueType XML font</comment>
+ <comment xml:lang="el">Γραμματοσειρά XML TrueType</comment>
+ <comment xml:lang="de">TrueType-XML-Schrift</comment>
+ <comment xml:lang="da">TrueType XML-skrifttype</comment>
+ <comment xml:lang="cs">font TrueType XML</comment>
+ <comment xml:lang="ca">lletra XML de TrueType</comment>
+ <comment xml:lang="bg">Шрифт — TrueType XML</comment>
+ <comment xml:lang="be@latin">Šryft TrueType XML</comment>
+ <comment xml:lang="be">шрыфт TrueType XML</comment>
+ <comment xml:lang="ar">خط TrueType XML</comment>
+ <comment xml:lang="af">TrueType XML-skriftipe</comment>
<sub-class-of type="application/xml"/>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="&lt;ttFont sfntVersion=&quot;\\x00\\x01\\x00\\x00&quot; ttLibVersion=&quot;" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;ttFont sfntVersion=&quot;\\x00\\x01\\x00\\x00&quot; ttLibVersion=&quot;" offset="0:256"/>
</magic>
<glob pattern="*.ttx"/>
</mime-type>
<mime-type type="application/x-font-vfont">
<comment>V font</comment>
- <comment xml:lang="ar">خط V</comment>
- <comment xml:lang="az">V yazı növü</comment>
- <comment xml:lang="be@latin">Šryft V</comment>
- <comment xml:lang="bg">Шрифт — V</comment>
- <comment xml:lang="ca">lletra V</comment>
- <comment xml:lang="cs">font V</comment>
- <comment xml:lang="cy">Ffont V</comment>
- <comment xml:lang="da">V-skrifttype</comment>
- <comment xml:lang="de">V-Schrift</comment>
- <comment xml:lang="el">Γραμματοσειρά V</comment>
- <comment xml:lang="en_GB">V font</comment>
- <comment xml:lang="eo">V-tiparo</comment>
- <comment xml:lang="es">tipo de letra V</comment>
- <comment xml:lang="eu">V letra-tipoa</comment>
- <comment xml:lang="fi">V-fontti</comment>
- <comment xml:lang="fo">V stavasnið</comment>
- <comment xml:lang="fr">police V</comment>
- <comment xml:lang="ga">cló V</comment>
- <comment xml:lang="gl">tipo de letra V</comment>
- <comment xml:lang="he">גופן של V</comment>
- <comment xml:lang="hr">V slovo</comment>
- <comment xml:lang="hu">V-betűkészlet</comment>
- <comment xml:lang="ia">Typo de litteras V</comment>
- <comment xml:lang="id">Fonta V</comment>
- <comment xml:lang="it">Carattere V</comment>
- <comment xml:lang="ja">V フォント</comment>
- <comment xml:lang="kk">V font қарібі</comment>
- <comment xml:lang="ko">V 글꼴</comment>
- <comment xml:lang="lt">V šriftas</comment>
- <comment xml:lang="lv">V fonts</comment>
- <comment xml:lang="ms">Font V</comment>
- <comment xml:lang="nb">V-skrift</comment>
- <comment xml:lang="nl">V-lettertype</comment>
- <comment xml:lang="nn">V-skrifttype</comment>
- <comment xml:lang="oc">poliça V</comment>
- <comment xml:lang="pl">Czcionka V</comment>
- <comment xml:lang="pt">letra V</comment>
- <comment xml:lang="pt_BR">Fonte V</comment>
- <comment xml:lang="ro">Font V</comment>
- <comment xml:lang="ru">Шрифт V font</comment>
- <comment xml:lang="sk">Písmo V</comment>
- <comment xml:lang="sl">Datoteka pisave V</comment>
- <comment xml:lang="sq">Gërmë V</comment>
- <comment xml:lang="sr">В слова</comment>
- <comment xml:lang="sv">V-typsnitt</comment>
- <comment xml:lang="tr">V fontu</comment>
- <comment xml:lang="uk">V-шрифт</comment>
- <comment xml:lang="vi">Phông chữ V</comment>
- <comment xml:lang="zh_CN">V 字体</comment>
<comment xml:lang="zh_TW">V 字型</comment>
+ <comment xml:lang="zh_CN">V 字体</comment>
+ <comment xml:lang="vi">Phông chữ V</comment>
+ <comment xml:lang="uk">V-шрифт</comment>
+ <comment xml:lang="tr">V yazı tipi</comment>
+ <comment xml:lang="sv">V-typsnitt</comment>
+ <comment xml:lang="sr">В слова</comment>
+ <comment xml:lang="sq">shkronja V</comment>
+ <comment xml:lang="sl">Datoteka pisave V</comment>
+ <comment xml:lang="si">V අකුරු</comment>
+ <comment xml:lang="sk">Písmo V</comment>
+ <comment xml:lang="ru">V-шрифт</comment>
+ <comment xml:lang="ro">Font V</comment>
+ <comment xml:lang="pt_BR">Fonte V</comment>
+ <comment xml:lang="pt">letra V</comment>
+ <comment xml:lang="pl">Czcionka V</comment>
+ <comment xml:lang="oc">poliça V</comment>
+ <comment xml:lang="nn">V-skrifttype</comment>
+ <comment xml:lang="nl">V-lettertype</comment>
+ <comment xml:lang="nb">V-skrift</comment>
+ <comment xml:lang="ms">Font V</comment>
+ <comment xml:lang="lv">V fonts</comment>
+ <comment xml:lang="lt">V šriftas</comment>
+ <comment xml:lang="ko">V 글꼴</comment>
+ <comment xml:lang="kk">V font қарібі</comment>
+ <comment xml:lang="ja">V フォント</comment>
+ <comment xml:lang="it">Carattere V</comment>
+ <comment xml:lang="is">V letur</comment>
+ <comment xml:lang="id">Fonta V</comment>
+ <comment xml:lang="ia">Typo de litteras V</comment>
+ <comment xml:lang="hu">V-betűkészlet</comment>
+ <comment xml:lang="hr">V font</comment>
+ <comment xml:lang="he">גופן של V</comment>
+ <comment xml:lang="gl">tipo de letra V</comment>
+ <comment xml:lang="ga">cló V</comment>
+ <comment xml:lang="fur">caratar V</comment>
+ <comment xml:lang="fr">police V</comment>
+ <comment xml:lang="fo">V stavasnið</comment>
+ <comment xml:lang="fi">V-fontti</comment>
+ <comment xml:lang="eu">V letra-tipoa</comment>
+ <comment xml:lang="es">tipo de letra V</comment>
+ <comment xml:lang="eo">V-tiparo</comment>
+ <comment xml:lang="en_GB">V font</comment>
+ <comment xml:lang="el">Γραμματοσειρά V</comment>
+ <comment xml:lang="de">V-Schrift</comment>
+ <comment xml:lang="da">V-skrifttype</comment>
+ <comment xml:lang="cy">Ffont V</comment>
+ <comment xml:lang="cs">font V</comment>
+ <comment xml:lang="ca">lletra V</comment>
+ <comment xml:lang="bg">Шрифт — V</comment>
+ <comment xml:lang="be@latin">Šryft V</comment>
+ <comment xml:lang="be">шрыфт V</comment>
+ <comment xml:lang="az">V yazı növü</comment>
+ <comment xml:lang="ar">خط V</comment>
+ <comment xml:lang="af">V-skriftipe</comment>
<generic-icon name="font-x-generic"/>
- <magic priority="50">
- <match value="FONT" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="FONT" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/vnd.framemaker">
<comment>Adobe FrameMaker document</comment>
- <comment xml:lang="ar">مستند أدوبي الصانع للإطارات</comment>
- <comment xml:lang="ast">Documentu d'Adobe FrameMaker</comment>
- <comment xml:lang="be@latin">Dakument Adobe FrameMaker</comment>
- <comment xml:lang="bg">Документ — Adobe FrameMaker</comment>
- <comment xml:lang="ca">document d'Adobe FrameMaker</comment>
- <comment xml:lang="cs">dokument Adobe FrameMaker</comment>
- <comment xml:lang="da">Adobe FrameMaker-dokument</comment>
- <comment xml:lang="de">Adobe-FrameMaker-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Adobe FrameMaker</comment>
- <comment xml:lang="en_GB">Adobe FrameMaker document</comment>
- <comment xml:lang="eo">Dokumento de Adobe FrameMaker</comment>
- <comment xml:lang="es">documento de Adobe FrameMaker</comment>
- <comment xml:lang="eu">Adobe FrameMaker-en dokumentua</comment>
- <comment xml:lang="fi">Adobe FrameMaker -asiakirja</comment>
- <comment xml:lang="fo">Adobe FrameMaker skjal</comment>
- <comment xml:lang="fr">document Adobe FrameMaker</comment>
- <comment xml:lang="ga">cáipéis Adobe FrameMaker</comment>
- <comment xml:lang="gl">documento de Adobe FrameMaker</comment>
- <comment xml:lang="he">מסמך Adobe FrameMaker</comment>
- <comment xml:lang="hr">Adobe FrameMaker dokument</comment>
- <comment xml:lang="hu">Adobe FrameMaker-dokumentum</comment>
- <comment xml:lang="ia">Documento Adobe FrameMaker</comment>
- <comment xml:lang="id">Dokumen Adobe FrameMaker</comment>
- <comment xml:lang="it">Documento Adobe FrameMaker</comment>
- <comment xml:lang="ja">Adobe FrameMaker ドキュメント</comment>
- <comment xml:lang="ka">Adobe FrameMaker-ის დოკუმენტი</comment>
- <comment xml:lang="kk">Adobe FrameMaker құжаты</comment>
- <comment xml:lang="ko">Adobe 프레임메이커 문서</comment>
- <comment xml:lang="lt">Adobe FrameMaker dokumentas</comment>
- <comment xml:lang="lv">Adobe FrameMaker dokuments</comment>
- <comment xml:lang="nb">Adobe FrameMaker-dokument</comment>
- <comment xml:lang="nl">Adobe FrameMaker-document</comment>
- <comment xml:lang="nn">Adobe FrameMaker-dokument</comment>
- <comment xml:lang="oc">document Adobe FrameMaker</comment>
- <comment xml:lang="pl">Dokument Adobe FrameMaker</comment>
- <comment xml:lang="pt">documento Adobe FrameMaker</comment>
- <comment xml:lang="pt_BR">Documento do Adobe FrameMaker</comment>
- <comment xml:lang="ro">Document Adobe FrameMaker</comment>
- <comment xml:lang="ru">Документ Adobe FrameMaker</comment>
- <comment xml:lang="sk">Dokument Adobe FrameMaker</comment>
- <comment xml:lang="sl">Dokument Adobe FrameMaker</comment>
- <comment xml:lang="sq">Dokument Adobe FrameMaker</comment>
- <comment xml:lang="sr">документ Адобе Фреј Мејкера</comment>
- <comment xml:lang="sv">Adobe FrameMaker-dokument</comment>
- <comment xml:lang="tr">Adobe FrameMaker belgesi</comment>
- <comment xml:lang="uk">документ Adobe FrameMaker</comment>
- <comment xml:lang="vi">Tài liệu Adobe FrameMaker</comment>
- <comment xml:lang="zh_CN">Adobe FrameMaker 文档</comment>
<comment xml:lang="zh_TW">Adobe FrameMaker 文件</comment>
+ <comment xml:lang="zh_CN">Adobe FrameMaker 文档</comment>
+ <comment xml:lang="vi">Tài liệu Adobe FrameMaker</comment>
+ <comment xml:lang="uk">документ Adobe FrameMaker</comment>
+ <comment xml:lang="tr">Adobe FrameMaker belgesi</comment>
+ <comment xml:lang="sv">Adobe FrameMaker-dokument</comment>
+ <comment xml:lang="sr">документ Адобе Фреј Мејкера</comment>
+ <comment xml:lang="sq">dokument Adobe FrameMaker</comment>
+ <comment xml:lang="sl">Dokument Adobe FrameMaker</comment>
+ <comment xml:lang="si">Adobe FrameMaker ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Adobe FrameMaker</comment>
+ <comment xml:lang="ru">Документ Adobe FrameMaker</comment>
+ <comment xml:lang="ro">Document Adobe FrameMaker</comment>
+ <comment xml:lang="pt_BR">Documento do Adobe FrameMaker</comment>
+ <comment xml:lang="pt">documento Adobe FrameMaker</comment>
+ <comment xml:lang="pl">Dokument Adobe FrameMaker</comment>
+ <comment xml:lang="oc">document Adobe FrameMaker</comment>
+ <comment xml:lang="nn">Adobe FrameMaker-dokument</comment>
+ <comment xml:lang="nl">Adobe FrameMaker-document</comment>
+ <comment xml:lang="nb">Adobe FrameMaker-dokument</comment>
+ <comment xml:lang="lv">Adobe FrameMaker dokuments</comment>
+ <comment xml:lang="lt">Adobe FrameMaker dokumentas</comment>
+ <comment xml:lang="ko">Adobe 프레임메이커 문서</comment>
+ <comment xml:lang="kk">Adobe FrameMaker құжаты</comment>
+ <comment xml:lang="ka">Adobe FrameMaker-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">Adobe FrameMaker ドキュメント</comment>
+ <comment xml:lang="it">Documento Adobe FrameMaker</comment>
+ <comment xml:lang="is">Adobe FrameMaker skjal</comment>
+ <comment xml:lang="id">Dokumen Adobe FrameMaker</comment>
+ <comment xml:lang="ia">Documento Adobe FrameMaker</comment>
+ <comment xml:lang="hu">Adobe FrameMaker-dokumentum</comment>
+ <comment xml:lang="hr">Adobe FrameMaker dokument</comment>
+ <comment xml:lang="he">מסמך Adobe FrameMaker</comment>
+ <comment xml:lang="gl">documento de Adobe FrameMaker</comment>
+ <comment xml:lang="ga">cáipéis Adobe FrameMaker</comment>
+ <comment xml:lang="fur">document Adobe FrameMaker</comment>
+ <comment xml:lang="fr">document Adobe FrameMaker</comment>
+ <comment xml:lang="fo">Adobe FrameMaker skjal</comment>
+ <comment xml:lang="fi">Adobe FrameMaker -asiakirja</comment>
+ <comment xml:lang="eu">Adobe FrameMaker-en dokumentua</comment>
+ <comment xml:lang="es">documento de Adobe FrameMaker</comment>
+ <comment xml:lang="eo">Dokumento de Adobe FrameMaker</comment>
+ <comment xml:lang="en_GB">Adobe FrameMaker document</comment>
+ <comment xml:lang="el">Έγγραφο Adobe FrameMaker</comment>
+ <comment xml:lang="de">Adobe-FrameMaker-Dokument</comment>
+ <comment xml:lang="da">Adobe FrameMaker-dokument</comment>
+ <comment xml:lang="cs">dokument Adobe FrameMaker</comment>
+ <comment xml:lang="ca">document d'Adobe FrameMaker</comment>
+ <comment xml:lang="bg">Документ — Adobe FrameMaker</comment>
+ <comment xml:lang="be@latin">Dakument Adobe FrameMaker</comment>
+ <comment xml:lang="be">дакумент Adobe FrameMaker</comment>
+ <comment xml:lang="ast">Documentu d'Adobe FrameMaker</comment>
+ <comment xml:lang="ar">مستند أدوبي FrameMaker</comment>
+ <comment xml:lang="af">Adobe FrameMaker-dokument</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="&lt;MakerFile" type="string" offset="0"/>
- <match value="&lt;MIFFile" type="string" offset="0"/>
- <match value="&lt;MakerDictionary" type="string" offset="0"/>
- <match value="&lt;MakerScreenFon" type="string" offset="0"/>
- <match value="&lt;MML" type="string" offset="0"/>
- <match value="&lt;Book" type="string" offset="0"/>
- <match value="&lt;Maker" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="&lt;MakerFile" offset="0"/>
+ <match type="string" value="&lt;MIFFile" offset="0"/>
+ <match type="string" value="&lt;MakerDictionary" offset="0"/>
+ <match type="string" value="&lt;MakerScreenFon" offset="0"/>
+ <match type="string" value="&lt;MML" offset="0"/>
+ <match type="string" value="&lt;Book" offset="0"/>
+ <match type="string" value="&lt;Maker" offset="0"/>
</magic>
<glob pattern="*.fm"/>
<alias type="application/x-frame"/>
</mime-type>
<mime-type type="application/x-gameboy-rom">
<comment>Game Boy ROM</comment>
- <comment xml:lang="ar">Game Boy ROM</comment>
- <comment xml:lang="be@latin">Game Boy ROM</comment>
- <comment xml:lang="bg">ROM — Game Boy</comment>
- <comment xml:lang="ca">ROM de Game Boy</comment>
- <comment xml:lang="cs">ROM pro Game Boy</comment>
- <comment xml:lang="da">Game Boy-rom</comment>
- <comment xml:lang="de">Game Boy ROM</comment>
- <comment xml:lang="el">Game Boy ROM</comment>
- <comment xml:lang="en_GB">Game Boy ROM</comment>
- <comment xml:lang="eo">NLM de Game Boy</comment>
- <comment xml:lang="es">ROM de Game Boy</comment>
- <comment xml:lang="eu">Game Boy-eko ROMa</comment>
- <comment xml:lang="fi">Game Boy -ROM</comment>
- <comment xml:lang="fo">Game Boy ROM</comment>
- <comment xml:lang="fr">ROM Game Boy</comment>
- <comment xml:lang="ga">ROM Game Boy</comment>
- <comment xml:lang="gl">ROM de Game Boy</comment>
- <comment xml:lang="he">ROM של Game Boy</comment>
- <comment xml:lang="hr">Game Boy ROM</comment>
- <comment xml:lang="hu">Game Boy ROM</comment>
- <comment xml:lang="ia">ROM de Game Boy</comment>
- <comment xml:lang="id">Memori baca-saja Game Boy</comment>
- <comment xml:lang="it">ROM Game Boy</comment>
- <comment xml:lang="ja">ゲームボーイ ROM</comment>
- <comment xml:lang="ka">Game Boy-ის ROM</comment>
- <comment xml:lang="kk">Game Boy ROM</comment>
- <comment xml:lang="ko">게임보이 롬</comment>
- <comment xml:lang="lt">Game Boy ROM</comment>
- <comment xml:lang="lv">Game Boy ROM</comment>
- <comment xml:lang="ms">ROM Game Boy</comment>
- <comment xml:lang="nb">Game Boy-ROM</comment>
- <comment xml:lang="nl">Game Boy-ROM</comment>
- <comment xml:lang="nn">Game Boy-ROM</comment>
- <comment xml:lang="oc">ROM Game Boy</comment>
- <comment xml:lang="pl">Plik ROM konsoli Game Boy</comment>
- <comment xml:lang="pt">ROM Game Boy</comment>
- <comment xml:lang="pt_BR">ROM de Game Boy</comment>
- <comment xml:lang="ro">ROM Game Boy</comment>
- <comment xml:lang="ru">Game Boy ROM</comment>
- <comment xml:lang="sk">ROM pre Game Boy</comment>
- <comment xml:lang="sl">Bralni pomnilnik Game Boy</comment>
- <comment xml:lang="sq">ROM Game Boy</comment>
- <comment xml:lang="sr">Гејм Бој РОМ</comment>
- <comment xml:lang="sv">Game Boy-rom</comment>
- <comment xml:lang="tr">Game Boy ROM</comment>
- <comment xml:lang="uk">ППП Game Boy</comment>
- <comment xml:lang="vi">ROM Game Boy</comment>
- <comment xml:lang="zh_CN">Game Boy ROM</comment>
<comment xml:lang="zh_TW">Game Boy ROM</comment>
+ <comment xml:lang="zh_CN">Game Boy ROM</comment>
+ <comment xml:lang="vi">ROM Game Boy</comment>
+ <comment xml:lang="uk">ППП Game Boy</comment>
+ <comment xml:lang="tr">Game Boy ROM</comment>
+ <comment xml:lang="sv">Game Boy-rom</comment>
+ <comment xml:lang="sr">Гејм Бој РОМ</comment>
+ <comment xml:lang="sq">ROM Game Boy</comment>
+ <comment xml:lang="sl">Bralni pomnilnik Game Boy</comment>
+ <comment xml:lang="si">Game Boy ROM</comment>
+ <comment xml:lang="sk">ROM pre Game Boy</comment>
+ <comment xml:lang="ru">Game Boy ROM</comment>
+ <comment xml:lang="ro">ROM Game Boy</comment>
+ <comment xml:lang="pt_BR">ROM de Game Boy</comment>
+ <comment xml:lang="pt">ROM Game Boy</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Game Boy</comment>
+ <comment xml:lang="oc">ROM Game Boy</comment>
+ <comment xml:lang="nn">Game Boy-ROM</comment>
+ <comment xml:lang="nl">Game Boy-ROM</comment>
+ <comment xml:lang="nb">Game Boy-ROM</comment>
+ <comment xml:lang="ms">ROM Game Boy</comment>
+ <comment xml:lang="lv">Game Boy ROM</comment>
+ <comment xml:lang="lt">Game Boy ROM</comment>
+ <comment xml:lang="ko">게임보이 롬</comment>
+ <comment xml:lang="kk">Game Boy ROM</comment>
+ <comment xml:lang="ka">Game Boy-ის ROM</comment>
+ <comment xml:lang="ja">ゲームボーイ ROM</comment>
+ <comment xml:lang="it">ROM Game Boy</comment>
+ <comment xml:lang="is">Game Boy ROM</comment>
+ <comment xml:lang="id">Memori baca-saja Game Boy</comment>
+ <comment xml:lang="ia">ROM de Game Boy</comment>
+ <comment xml:lang="hu">Game Boy ROM</comment>
+ <comment xml:lang="hr">Game Boy ROM</comment>
+ <comment xml:lang="he">ROM של Game Boy</comment>
+ <comment xml:lang="gl">ROM de Game Boy</comment>
+ <comment xml:lang="ga">ROM Game Boy</comment>
+ <comment xml:lang="fur">ROM Game Boy</comment>
+ <comment xml:lang="fr">ROM Game Boy</comment>
+ <comment xml:lang="fo">Game Boy ROM</comment>
+ <comment xml:lang="fi">Game Boy -ROM</comment>
+ <comment xml:lang="eu">Game Boy-eko ROMa</comment>
+ <comment xml:lang="es">ROM de Game Boy</comment>
+ <comment xml:lang="eo">NLM de Game Boy</comment>
+ <comment xml:lang="en_GB">Game Boy ROM</comment>
+ <comment xml:lang="el">Game Boy ROM</comment>
+ <comment xml:lang="de">Game-Boy-ROM</comment>
+ <comment xml:lang="da">Game Boy-ROM</comment>
+ <comment xml:lang="cs">ROM pro Game Boy</comment>
+ <comment xml:lang="ca">ROM de Game Boy</comment>
+ <comment xml:lang="bg">ROM — Game Boy</comment>
+ <comment xml:lang="be@latin">Game Boy ROM</comment>
+ <comment xml:lang="be">Game Boy ROM</comment>
+ <comment xml:lang="ar">Game Boy ROM</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match 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" type="string" offset="260">
- <match value="0x0" type="byte" offset="323" mask="0x80"/>
+ <magic>
+ <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">
+ <match type="byte" value="0x0" mask="0x80" offset="323"/>
</match>
</magic>
<glob pattern="*.gb"/>
@@ -11825,37 +12741,49 @@
</mime-type>
<mime-type type="application/x-gameboy-color-rom">
<comment>Game Boy Color ROM</comment>
- <comment xml:lang="ca">ROM de Game Boy Color</comment>
- <comment xml:lang="cs">ROM pro Game Boy Color</comment>
- <comment xml:lang="da">Game Boy Color ROM</comment>
- <comment xml:lang="de">Game Boy Color ROM</comment>
- <comment xml:lang="en_GB">Game Boy Colour ROM</comment>
- <comment xml:lang="es">ROM de Game Boy Color</comment>
- <comment xml:lang="eu">Game Boy Color ROM</comment>
- <comment xml:lang="fi">Game Boy Color -ROM</comment>
- <comment xml:lang="fr">ROM Game Boy Color</comment>
- <comment xml:lang="ga">ROM Game Boy Color</comment>
- <comment xml:lang="he">ROM של Game Boy Color</comment>
- <comment xml:lang="hr">Game Boy Color ROM</comment>
- <comment xml:lang="hu">Game Boy Color ROM</comment>
- <comment xml:lang="id">ROM Game Boy Color</comment>
- <comment xml:lang="it">ROM Game Boy Color</comment>
- <comment xml:lang="kk">Game Boy Color ROM</comment>
- <comment xml:lang="ko">게임보이 컬러 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Game Boy Color</comment>
- <comment xml:lang="pt_BR">ROM de Game Boy Color</comment>
- <comment xml:lang="ru">Game Boy Color ROM</comment>
- <comment xml:lang="sk">ROM pre Game Boy Color</comment>
- <comment xml:lang="sr">Гејм Бој РОМ боје</comment>
- <comment xml:lang="sv">Game Boy Color-rom</comment>
- <comment xml:lang="tr">Game Boy Color ROM</comment>
- <comment xml:lang="uk">ППП Game Boy Color</comment>
- <comment xml:lang="zh_CN">Game Boy Color ROM</comment>
<comment xml:lang="zh_TW">Game Boy Color ROM</comment>
+ <comment xml:lang="zh_CN">Game Boy Color ROM</comment>
+ <comment xml:lang="uk">ППП Game Boy Color</comment>
+ <comment xml:lang="tr">Game Boy Color ROM</comment>
+ <comment xml:lang="sv">Game Boy Color-rom</comment>
+ <comment xml:lang="sr">Гејм Бој РОМ боје</comment>
+ <comment xml:lang="sq">ROM Game Boy Color</comment>
+ <comment xml:lang="sl">Game Boy Color ROM</comment>
+ <comment xml:lang="si">Game Boy Color ROM</comment>
+ <comment xml:lang="sk">ROM pre Game Boy Color</comment>
+ <comment xml:lang="ru">Game Boy Color ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Game Boy Color</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Game Boy Color</comment>
+ <comment xml:lang="oc">ROM Game Boy Color</comment>
+ <comment xml:lang="nl">Game Boy Color-ROM</comment>
+ <comment xml:lang="ko">게임보이 컬러 롬</comment>
+ <comment xml:lang="kk">Game Boy Color ROM</comment>
+ <comment xml:lang="ja">ゲームボーイカラー ROM</comment>
+ <comment xml:lang="it">ROM Game Boy Color</comment>
+ <comment xml:lang="is">Game Boy Color ROM</comment>
+ <comment xml:lang="id">ROM Game Boy Color</comment>
+ <comment xml:lang="hu">Game Boy Color ROM</comment>
+ <comment xml:lang="hr">Game Boy Color ROM</comment>
+ <comment xml:lang="he">ROM של Game Boy Color</comment>
+ <comment xml:lang="gl">ROM de Game Boy Color</comment>
+ <comment xml:lang="ga">ROM Game Boy Color</comment>
+ <comment xml:lang="fur">ROM Game Boy Color</comment>
+ <comment xml:lang="fr">ROM Game Boy Color</comment>
+ <comment xml:lang="fi">Game Boy Color -ROM</comment>
+ <comment xml:lang="eu">Game Boy Color ROM</comment>
+ <comment xml:lang="es">ROM de Game Boy Color</comment>
+ <comment xml:lang="en_GB">Game Boy Colour ROM</comment>
+ <comment xml:lang="de">Game-Boy-Color-ROM</comment>
+ <comment xml:lang="da">Game Boy Color-ROM</comment>
+ <comment xml:lang="cs">ROM pro Game Boy Color</comment>
+ <comment xml:lang="ca">ROM de Game Boy Color</comment>
+ <comment xml:lang="bg">ROM — Game Boy Color</comment>
+ <comment xml:lang="be">Game Boy Color ROM</comment>
+ <comment xml:lang="ar">روم جيم بوي كولر</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="\xce\xed\x66\x66\xcc\x0d\x00\x0b\x03\x73\x00\x83\x00\x0c\x00\x0d\x00\x08" type="string" offset="260">
- <match value="0x80" type="byte" offset="323" mask="0x80"/>
+ <magic>
+ <match type="string" value="\xce\xed\x66\x66\xcc\x0d\x00\x0b\x03\x73\x00\x83\x00\x0c\x00\x0d\x00\x08" offset="260">
+ <match type="byte" value="0x80" mask="0x80" offset="323"/>
</match>
</magic>
<glob pattern="*.gbc"/>
@@ -11863,442 +12791,460 @@
</mime-type>
<mime-type type="application/x-gba-rom">
<comment>Game Boy Advance ROM</comment>
- <comment xml:lang="ar">Game Boy Advance ROM</comment>
- <comment xml:lang="be@latin">Game Boy Advance ROM</comment>
- <comment xml:lang="bg">ROM — Game Boy Advance</comment>
- <comment xml:lang="ca">ROM de Game Boy Advance</comment>
- <comment xml:lang="cs">ROM pro Game Boy Advance</comment>
- <comment xml:lang="da">Game Boy Advance-rom</comment>
- <comment xml:lang="de">Game Boy Advance ROM</comment>
- <comment xml:lang="el">Game Boy Advance ROM</comment>
- <comment xml:lang="en_GB">Game Boy Advance ROM</comment>
- <comment xml:lang="es">ROM de Game Boy Advance</comment>
- <comment xml:lang="eu">Game Boy Advance-ko ROMa</comment>
- <comment xml:lang="fi">Game Boy Advance -ROM</comment>
- <comment xml:lang="fo">Game Boy Advance ROM</comment>
- <comment xml:lang="fr">ROM Game Boy Advance</comment>
- <comment xml:lang="ga">ROM Game Boy Advance</comment>
- <comment xml:lang="gl">ROM de Game Boy Advance</comment>
- <comment xml:lang="he">ROM של Game Boy Advance</comment>
- <comment xml:lang="hr">Game Boy Advance ROM</comment>
- <comment xml:lang="hu">Game Boy Advance ROM</comment>
- <comment xml:lang="ia">ROM de Game Boy Advance</comment>
- <comment xml:lang="id">Memori baca-saja Game Boy Advance</comment>
- <comment xml:lang="it">ROM Game Boy Advance</comment>
- <comment xml:lang="ja">ゲームボーイアドバンス ROM</comment>
- <comment xml:lang="ka">Game Boy Advance-ის ROM</comment>
- <comment xml:lang="kk">Game Boy Advance ROM</comment>
- <comment xml:lang="ko">게임보이 어드밴스 롬</comment>
- <comment xml:lang="lt">Game Boy Advance ROM</comment>
- <comment xml:lang="lv">Game Boy Advance ROM</comment>
- <comment xml:lang="nb">Game Boy Advance-ROM</comment>
- <comment xml:lang="nl">Game Boy Advance-ROM</comment>
- <comment xml:lang="nn">Game Boy Advance-ROM</comment>
- <comment xml:lang="oc">ROM Game Boy Advance</comment>
- <comment xml:lang="pl">Plik ROM konsoli Game Boy Advance</comment>
- <comment xml:lang="pt">ROM Game Boy Advance</comment>
- <comment xml:lang="pt_BR">ROM de Game Boy Advance</comment>
- <comment xml:lang="ro">ROM Game Boy Advance</comment>
- <comment xml:lang="ru">Game Boy Advance ROM</comment>
- <comment xml:lang="sk">ROM pre Game Boy Advance</comment>
- <comment xml:lang="sl">Bralni pomnilnik Game Boy Advance</comment>
- <comment xml:lang="sq">ROM Game Boy Advance</comment>
- <comment xml:lang="sr">Гејм Бој Адванс РОМ</comment>
- <comment xml:lang="sv">Game Boy Advance-rom</comment>
- <comment xml:lang="tr">Game Boy Gelişmiş ROM</comment>
- <comment xml:lang="uk">розширений ППП Game Boy</comment>
- <comment xml:lang="vi">ROM Game Boy Advance</comment>
- <comment xml:lang="zh_CN">Game Boy Advance ROM</comment>
<comment xml:lang="zh_TW">Game Boy Advance ROM</comment>
+ <comment xml:lang="zh_CN">Game Boy Advance ROM</comment>
+ <comment xml:lang="vi">ROM Game Boy Advance</comment>
+ <comment xml:lang="uk">розширений ППП Game Boy</comment>
+ <comment xml:lang="tr">Game Boy Gelişmiş ROM</comment>
+ <comment xml:lang="sv">Game Boy Advance-rom</comment>
+ <comment xml:lang="sr">Гејм Бој Адванс РОМ</comment>
+ <comment xml:lang="sq">ROM Game Boy Advance</comment>
+ <comment xml:lang="sl">Bralni pomnilnik Game Boy Advance</comment>
+ <comment xml:lang="si">Game Boy Advance ROM</comment>
+ <comment xml:lang="sk">ROM pre Game Boy Advance</comment>
+ <comment xml:lang="ru">Game Boy Advance ROM</comment>
+ <comment xml:lang="ro">ROM Game Boy Advance</comment>
+ <comment xml:lang="pt_BR">ROM de Game Boy Advance</comment>
+ <comment xml:lang="pt">ROM Game Boy Advance</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Game Boy Advance</comment>
+ <comment xml:lang="oc">ROM Game Boy Advance</comment>
+ <comment xml:lang="nn">Game Boy Advance-ROM</comment>
+ <comment xml:lang="nl">Game Boy Advance-ROM</comment>
+ <comment xml:lang="nb">Game Boy Advance-ROM</comment>
+ <comment xml:lang="lv">Game Boy Advance ROM</comment>
+ <comment xml:lang="lt">Game Boy Advance ROM</comment>
+ <comment xml:lang="ko">게임보이 어드밴스 롬</comment>
+ <comment xml:lang="kk">Game Boy Advance ROM</comment>
+ <comment xml:lang="ka">Game Boy Advance-ის ROM</comment>
+ <comment xml:lang="ja">ゲームボーイアドバンス ROM</comment>
+ <comment xml:lang="it">ROM Game Boy Advance</comment>
+ <comment xml:lang="is">Game Boy Advance ROM</comment>
+ <comment xml:lang="id">Memori baca-saja Game Boy Advance</comment>
+ <comment xml:lang="ia">ROM de Game Boy Advance</comment>
+ <comment xml:lang="hu">Game Boy Advance ROM</comment>
+ <comment xml:lang="hr">Game Boy Advance ROM</comment>
+ <comment xml:lang="he">ROM של Game Boy Advance</comment>
+ <comment xml:lang="gl">ROM de Game Boy Advance</comment>
+ <comment xml:lang="ga">ROM Game Boy Advance</comment>
+ <comment xml:lang="fur">ROM Game Boy Advance</comment>
+ <comment xml:lang="fr">ROM Game Boy Advance</comment>
+ <comment xml:lang="fo">Game Boy Advance ROM</comment>
+ <comment xml:lang="fi">Game Boy Advance -ROM</comment>
+ <comment xml:lang="eu">Game Boy Advance-ko ROMa</comment>
+ <comment xml:lang="es">ROM de Game Boy Advance</comment>
+ <comment xml:lang="en_GB">Game Boy Advance ROM</comment>
+ <comment xml:lang="el">Game Boy Advance ROM</comment>
+ <comment xml:lang="de">Game-Boy-Advance-ROM</comment>
+ <comment xml:lang="da">Game Boy Advance-ROM</comment>
+ <comment xml:lang="cs">ROM pro Game Boy Advance</comment>
+ <comment xml:lang="ca">ROM de Game Boy Advance</comment>
+ <comment xml:lang="bg">ROM — Game Boy Advance</comment>
+ <comment xml:lang="be@latin">Game Boy Advance ROM</comment>
+ <comment xml:lang="be">Game Boy Advance ROM</comment>
+ <comment xml:lang="ar">Game Boy Advance ROM</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.gba"/>
<glob pattern="*.agb"/>
</mime-type>
<mime-type type="application/x-virtual-boy-rom">
<comment>Virtual Boy ROM</comment>
- <comment xml:lang="ca">ROM de Virtual Boy</comment>
- <comment xml:lang="cs">ROM pro Virtual Boy</comment>
- <comment xml:lang="de">Virtual Boy ROM</comment>
- <comment xml:lang="en_GB">Virtual Boy ROM</comment>
- <comment xml:lang="es">ROM de Virtual Boy</comment>
- <comment xml:lang="hr">Virtual Boy ROM</comment>
- <comment xml:lang="hu">Virtual Boy ROM</comment>
- <comment xml:lang="id">ROM Virtual Boy</comment>
- <comment xml:lang="it">ROM Virtual Boy</comment>
- <comment xml:lang="kk">Virtual Boy ROM</comment>
- <comment xml:lang="ko">버추얼보이 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Virtual Boy</comment>
- <comment xml:lang="pt_BR">ROM de Virtual Boy</comment>
- <comment xml:lang="ru">Virtual Boy ROM</comment>
- <comment xml:lang="sk">ROM pre Virtual Boy</comment>
- <comment xml:lang="sv">Virtual Boy-rom</comment>
- <comment xml:lang="uk">ROM Virtual Boy</comment>
- <comment xml:lang="zh_CN">Virtual Boy ROM</comment>
<comment xml:lang="zh_TW">Virtual Boy ROM</comment>
+ <comment xml:lang="zh_CN">Virtual Boy ROM</comment>
+ <comment xml:lang="uk">ROM Virtual Boy</comment>
+ <comment xml:lang="tr">Virtual Boy ROM</comment>
+ <comment xml:lang="sv">Virtual Boy-rom</comment>
+ <comment xml:lang="sq">ROM Virtual Boy</comment>
+ <comment xml:lang="sl">Virtual Boy ROM</comment>
+ <comment xml:lang="si">Virtual Boy ROM</comment>
+ <comment xml:lang="sk">ROM pre Virtual Boy</comment>
+ <comment xml:lang="ru">Virtual Boy ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Virtual Boy</comment>
+ <comment xml:lang="pt">ROM Virtua Boy</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Virtual Boy</comment>
+ <comment xml:lang="nl">Virtual Boy-ROM</comment>
+ <comment xml:lang="ko">버추얼 보이 롬</comment>
+ <comment xml:lang="kk">Virtual Boy ROM</comment>
+ <comment xml:lang="ja">バーチャルボーイ ROM</comment>
+ <comment xml:lang="it">ROM Virtual Boy</comment>
+ <comment xml:lang="is">Virtual Boy ROM</comment>
+ <comment xml:lang="id">ROM Virtual Boy</comment>
+ <comment xml:lang="hu">Virtual Boy ROM</comment>
+ <comment xml:lang="hr">Virtual Boy ROM</comment>
+ <comment xml:lang="he">ROM של Virtual Boy</comment>
+ <comment xml:lang="gl">ROM de Virtual Boy</comment>
+ <comment xml:lang="ga">ROM Virtual Boy</comment>
+ <comment xml:lang="fur">ROM Virtual Boy</comment>
+ <comment xml:lang="fr">ROM Virtual Boy</comment>
+ <comment xml:lang="fi">Virtual Boy -ROM</comment>
+ <comment xml:lang="eu">Virtual Boy ROM</comment>
+ <comment xml:lang="es">ROM de Virtual Boy</comment>
+ <comment xml:lang="en_GB">Virtual Boy ROM</comment>
+ <comment xml:lang="de">Virtual-Boy-ROM</comment>
+ <comment xml:lang="da">Virtual Boy-ROM</comment>
+ <comment xml:lang="cs">ROM pro Virtual Boy</comment>
+ <comment xml:lang="ca">ROM de Virtual Boy</comment>
+ <comment xml:lang="bg">ROM — Virtual Boy</comment>
+ <comment xml:lang="be">Virtual Boy ROM</comment>
+ <comment xml:lang="ar">روم بوي الافتراضي</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.vb"/>
</mime-type>
<mime-type type="application/x-gdbm">
<comment>GDBM database</comment>
- <comment xml:lang="ar">قاعدة بيانات GDBM</comment>
- <comment xml:lang="be@latin">Baza źviestak GDBM</comment>
- <comment xml:lang="bg">База от данни — GDBM</comment>
- <comment xml:lang="ca">base de dades GDBM</comment>
- <comment xml:lang="cs">databáze GDBM</comment>
- <comment xml:lang="da">GDBM-database</comment>
- <comment xml:lang="de">GDBM-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων GDBM</comment>
- <comment xml:lang="en_GB">GDBM database</comment>
- <comment xml:lang="eo">GDBM-datumbazo</comment>
- <comment xml:lang="es">base de datos GDBM</comment>
- <comment xml:lang="eu">GDBM datu-basea</comment>
- <comment xml:lang="fi">GDBM-tietokanta</comment>
- <comment xml:lang="fo">GDBM dátustovnur</comment>
- <comment xml:lang="fr">base de données GDBM</comment>
- <comment xml:lang="ga">bunachar sonraí GDBM</comment>
- <comment xml:lang="gl">base de datos GDBM</comment>
- <comment xml:lang="he">מסד נתונים GDBM</comment>
- <comment xml:lang="hr">GDBM baza podataka</comment>
- <comment xml:lang="hu">GDBM adatbázis</comment>
- <comment xml:lang="ia">Base de datos GDBM</comment>
- <comment xml:lang="id">Basis data GDBM</comment>
- <comment xml:lang="it">Database GDBM</comment>
- <comment xml:lang="ja">GDBM データベース</comment>
- <comment xml:lang="ka">GDBM მონაცემთა ბაზა</comment>
- <comment xml:lang="kk">GDBM дерекқоры</comment>
- <comment xml:lang="ko">GDBM 데이터베이스</comment>
- <comment xml:lang="lt">GDBM duomenų bazė</comment>
- <comment xml:lang="lv">GDBM datubāze</comment>
- <comment xml:lang="nb">GDBM-database</comment>
- <comment xml:lang="nl">GDBM-gegevensbank</comment>
- <comment xml:lang="nn">GDBM-database</comment>
- <comment xml:lang="oc">banca de donadas GDBM</comment>
- <comment xml:lang="pl">Baza danych GDBM</comment>
- <comment xml:lang="pt">base de dados GDMB</comment>
- <comment xml:lang="pt_BR">Banco de dados GDBM</comment>
- <comment xml:lang="ro">Bază de date GDBM</comment>
- <comment xml:lang="ru">База данных GDBM</comment>
- <comment xml:lang="sk">Databáza GDBM</comment>
- <comment xml:lang="sl">Podatkovna zbirka GDBM</comment>
- <comment xml:lang="sq">Bazë me të dhëna GDBM</comment>
- <comment xml:lang="sr">ГДБМ база података</comment>
- <comment xml:lang="sv">GDBM-databas</comment>
- <comment xml:lang="tr">GDBM veritabanı</comment>
- <comment xml:lang="uk">база даних GDBM</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu GDBM</comment>
- <comment xml:lang="zh_CN">GDBM 数据库</comment>
<comment xml:lang="zh_TW">GDBM 資料庫</comment>
+ <comment xml:lang="zh_CN">GDBM 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu GDBM</comment>
+ <comment xml:lang="uk">база даних GDBM</comment>
+ <comment xml:lang="tr">GDBM veri tabanı</comment>
+ <comment xml:lang="sv">GDBM-databas</comment>
+ <comment xml:lang="sr">ГДБМ база података</comment>
+ <comment xml:lang="sq">bazë të dhënash GDBM</comment>
+ <comment xml:lang="sl">Podatkovna zbirka GDBM</comment>
+ <comment xml:lang="si">GDBM දත්ත සමුදාය</comment>
+ <comment xml:lang="sk">Databáza GDBM</comment>
+ <comment xml:lang="ru">База данных GDBM</comment>
+ <comment xml:lang="ro">Bază de date GDBM</comment>
+ <comment xml:lang="pt_BR">Banco de dados GDBM</comment>
+ <comment xml:lang="pt">base de dados GDMB</comment>
+ <comment xml:lang="pl">Baza danych GDBM</comment>
+ <comment xml:lang="oc">banca de donadas GDBM</comment>
+ <comment xml:lang="nn">GDBM-database</comment>
+ <comment xml:lang="nl">GDBM-database</comment>
+ <comment xml:lang="nb">GDBM-database</comment>
+ <comment xml:lang="lv">GDBM datubāze</comment>
+ <comment xml:lang="lt">GDBM duomenų bazė</comment>
+ <comment xml:lang="ko">GDBM 데이터베이스</comment>
+ <comment xml:lang="kk">GDBM дерекқоры</comment>
+ <comment xml:lang="ka">GDBM მონაცემთა ბაზა</comment>
+ <comment xml:lang="ja">GDBM データベース</comment>
+ <comment xml:lang="it">Database GDBM</comment>
+ <comment xml:lang="is">GDBM gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data GDBM</comment>
+ <comment xml:lang="ia">Base de datos GDBM</comment>
+ <comment xml:lang="hu">GDBM adatbázis</comment>
+ <comment xml:lang="hr">GDBM baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים GDBM</comment>
+ <comment xml:lang="gl">base de datos GDBM</comment>
+ <comment xml:lang="ga">bunachar sonraí GDBM</comment>
+ <comment xml:lang="fur">base di dâts GDBM</comment>
+ <comment xml:lang="fr">base de données GDBM</comment>
+ <comment xml:lang="fo">GDBM dátustovnur</comment>
+ <comment xml:lang="fi">GDBM-tietokanta</comment>
+ <comment xml:lang="eu">GDBM datu-basea</comment>
+ <comment xml:lang="es">base de datos GDBM</comment>
+ <comment xml:lang="eo">GDBM-datumbazo</comment>
+ <comment xml:lang="en_GB">GDBM database</comment>
+ <comment xml:lang="el">Βάση δεδομένων GDBM</comment>
+ <comment xml:lang="de">GDBM-Datenbank</comment>
+ <comment xml:lang="da">GDBM-database</comment>
+ <comment xml:lang="cs">databáze GDBM</comment>
+ <comment xml:lang="ca">base de dades GDBM</comment>
+ <comment xml:lang="bg">База от данни — GDBM</comment>
+ <comment xml:lang="be@latin">Baza źviestak GDBM</comment>
+ <comment xml:lang="be">база даных GDBM</comment>
+ <comment xml:lang="ar">قاعدة بيانات GDBM</comment>
+ <comment xml:lang="af">GDBM-databasis</comment>
<acronym>GDBM</acronym>
<expanded-acronym>GNU Database Manager</expanded-acronym>
- <magic priority="50">
- <match value="0x13579ace" type="big32" offset="0"/>
- <match value="0x13579ace" type="little32" offset="0"/>
- <match value="GDBM" type="string" offset="0"/>
+ <magic>
+ <match type="big32" value="0x13579ace" offset="0"/>
+ <match type="little32" value="0x13579ace" offset="0"/>
+ <match type="string" value="GDBM" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-genesis-rom">
-
+ <!-- Translate this to Mega Drive if the console was known as such in your locale
+ Should be Mega Drive in all but en_US, Mexico and Canada: https://en.wikipedia.org/wiki/Sega_Genesis#History -->
<comment>Genesis ROM</comment>
- <comment xml:lang="ar">Genesis ROM</comment>
- <comment xml:lang="be@latin">Genesis ROM</comment>
- <comment xml:lang="bg">ROM — Genesis</comment>
- <comment xml:lang="ca">ROM de Genesis</comment>
- <comment xml:lang="cs">ROM pro Genesis</comment>
- <comment xml:lang="da">Genesis-rom</comment>
- <comment xml:lang="de">Genesis ROM</comment>
- <comment xml:lang="el">Genesis ROM</comment>
- <comment xml:lang="en_GB">Genesis ROM</comment>
- <comment xml:lang="eo">Genesis-NLM</comment>
- <comment xml:lang="es">ROM de Genesis (Mega Drive)</comment>
- <comment xml:lang="eu">Genesis-eko ROMa</comment>
- <comment xml:lang="fi">Genesis-ROM</comment>
- <comment xml:lang="fo">Genesis ROM</comment>
- <comment xml:lang="fr">ROM Mega Drive/Genesis</comment>
- <comment xml:lang="ga">ROM Genesis</comment>
- <comment xml:lang="gl">ROM xenérica</comment>
- <comment xml:lang="he">ROM מסוג Genesis</comment>
- <comment xml:lang="hr">Genesis ROM</comment>
- <comment xml:lang="hu">Genesis ROM</comment>
- <comment xml:lang="ia">ROM de Mega Drive/Genesis</comment>
- <comment xml:lang="id">Memori baca-saja Genesis</comment>
- <comment xml:lang="it">ROM Megadrive</comment>
- <comment xml:lang="ja">メガドライブ ROM</comment>
- <comment xml:lang="kk">Genesis ROM</comment>
- <comment xml:lang="ko">제네시스 롬</comment>
- <comment xml:lang="lt">Genesis ROM</comment>
- <comment xml:lang="lv">Genesis ROM</comment>
- <comment xml:lang="ms">ROM Genesis</comment>
- <comment xml:lang="nb">Genesis-ROM</comment>
- <comment xml:lang="nl">Mega Drive</comment>
- <comment xml:lang="nn">Genesis-ROM</comment>
- <comment xml:lang="oc">ROM Mega Drive/Genesis</comment>
- <comment xml:lang="pl">Plik ROM konsoli Mega Drive</comment>
- <comment xml:lang="pt">ROM Mega Drive</comment>
- <comment xml:lang="pt_BR">ROM de Genesis (Mega Drive)</comment>
- <comment xml:lang="ro">ROM Genesis</comment>
- <comment xml:lang="ru">Genesis ROM</comment>
- <comment xml:lang="sk">ROM pre Megadrive</comment>
- <comment xml:lang="sl">Bralni pomnilnik Genesis</comment>
- <comment xml:lang="sq">ROM Genesis</comment>
- <comment xml:lang="sr">Мегадрајв РОМ</comment>
- <comment xml:lang="sv">Mega Drive-rom</comment>
- <comment xml:lang="tr">Genesis ROM</comment>
- <comment xml:lang="uk">ППП Genesis</comment>
- <comment xml:lang="vi">ROM Genesis</comment>
- <comment xml:lang="zh_CN">Genesis ROM</comment>
<comment xml:lang="zh_TW">Genesis ROM</comment>
+ <comment xml:lang="zh_CN">Genesis ROM</comment>
+ <comment xml:lang="vi">ROM Genesis</comment>
+ <comment xml:lang="uk">ППП Genesis</comment>
+ <comment xml:lang="tr">Genesis ROM</comment>
+ <comment xml:lang="sv">Mega Drive-rom</comment>
+ <comment xml:lang="sr">Мегадрајв РОМ</comment>
+ <comment xml:lang="sq">ROM Genesis</comment>
+ <comment xml:lang="sl">Bralni pomnilnik Genesis</comment>
+ <comment xml:lang="si">උත්පත්ති ROM</comment>
+ <comment xml:lang="sk">ROM pre Megadrive</comment>
+ <comment xml:lang="ru">Genesis ROM</comment>
+ <comment xml:lang="ro">ROM Genesis</comment>
+ <comment xml:lang="pt_BR">ROM de Genesis (Mega Drive)</comment>
+ <comment xml:lang="pt">ROM Mega Drive</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Mega Drive</comment>
+ <comment xml:lang="oc">ROM Mega Drive/Genesis</comment>
+ <comment xml:lang="nn">Genesis-ROM</comment>
+ <comment xml:lang="nl">Mega Drive-ROM</comment>
+ <comment xml:lang="nb">Genesis-ROM</comment>
+ <comment xml:lang="ms">ROM Genesis</comment>
+ <comment xml:lang="lv">Genesis ROM</comment>
+ <comment xml:lang="lt">Genesis ROM</comment>
+ <comment xml:lang="ko">제네시스 롬</comment>
+ <comment xml:lang="kk">Genesis ROM</comment>
+ <comment xml:lang="ja">メガドライブ ROM</comment>
+ <comment xml:lang="it">ROM Megadrive</comment>
+ <comment xml:lang="is">Genesis ROM</comment>
+ <comment xml:lang="id">Memori baca-saja Genesis</comment>
+ <comment xml:lang="ia">ROM de Mega Drive/Genesis</comment>
+ <comment xml:lang="hu">Genesis ROM</comment>
+ <comment xml:lang="hr">Genesis ROM</comment>
+ <comment xml:lang="he">ROM מסוג Genesis</comment>
+ <comment xml:lang="gl">ROM xenérica</comment>
+ <comment xml:lang="ga">ROM Genesis</comment>
+ <comment xml:lang="fur">ROM Sega Mega Drive</comment>
+ <comment xml:lang="fr">ROM Mega Drive/Genesis</comment>
+ <comment xml:lang="fo">Genesis ROM</comment>
+ <comment xml:lang="fi">Genesis-ROM</comment>
+ <comment xml:lang="eu">Genesis-eko ROMa</comment>
+ <comment xml:lang="es">ROM de Genesis (Mega Drive)</comment>
+ <comment xml:lang="eo">Genesis-NLM</comment>
+ <comment xml:lang="en_GB">Genesis ROM</comment>
+ <comment xml:lang="el">Genesis ROM</comment>
+ <comment xml:lang="de">Mega-Drive-ROM</comment>
+ <comment xml:lang="da">Genesis-ROM</comment>
+ <comment xml:lang="cs">ROM pro Genesis</comment>
+ <comment xml:lang="ca">ROM de Genesis</comment>
+ <comment xml:lang="bg">ROM — Genesis</comment>
+ <comment xml:lang="be@latin">Genesis ROM</comment>
+ <comment xml:lang="be">Genesis ROM</comment>
+ <comment xml:lang="ar">روم Genesis</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="SEGA GENESIS" type="string" offset="256"/>
- <match value="SEGA MEGA DRIVE" type="string" offset="256"/>
- <match value="EAGN" type="string" offset="640"/>
- <match value="EAMG" type="string" offset="640"/>
+ <magic>
+ <match type="string" value="SEGA GENESIS" offset="256"/>
+ <match type="string" value="SEGA MEGA DRIVE" offset="256"/>
+ <match type="string" value="SEGA_MEGA_DRIVE" offset="256"/>
+ <match type="string" value="EAGN" offset="640"/>
+ <match type="string" value="EAMG" offset="640"/>
</magic>
<glob pattern="*.gen"/>
<glob pattern="*.smd"/>
+ <glob pattern="*.sgd"/>
</mime-type>
<mime-type type="application/x-genesis-32x-rom">
-
+ <!-- Translate this to Super 32X, Mega Drive 32X or Mega 32X if the system was known as such in your locale
+ Should be Super 32X in Japan, Mega Drive 32X in PAL region and Mega 32X in Brazil: https://en.wikipedia.org/wiki/32X -->
<comment>Genesis 32X ROM</comment>
- <comment xml:lang="ca">ROM de Genesis 32X</comment>
- <comment xml:lang="cs">ROM pro Genesis 32X</comment>
- <comment xml:lang="da">Genesis 32X ROM</comment>
- <comment xml:lang="de">Genesis 32X ROM</comment>
- <comment xml:lang="en_GB">Genesis 32X ROM</comment>
- <comment xml:lang="es">ROM de Genesis 32X</comment>
- <comment xml:lang="eu">Genesis 32X ROM</comment>
- <comment xml:lang="fi">Genesis 32X -ROM</comment>
- <comment xml:lang="fr">ROM Genesis 32X</comment>
- <comment xml:lang="ga">ROM Genesis 32X</comment>
- <comment xml:lang="he">ROM מסוג Genesis 32X</comment>
- <comment xml:lang="hr">Genesis 32X ROM</comment>
- <comment xml:lang="hu">Genesis 32X ROM</comment>
- <comment xml:lang="id">ROM Genesis 32X</comment>
- <comment xml:lang="it">ROM Sega Mega Drive 32X</comment>
- <comment xml:lang="kk">Genesis 32X ROM</comment>
- <comment xml:lang="ko">제네시스 32X 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Mega Drive 32X</comment>
- <comment xml:lang="pt_BR">ROM de Genesis 32X</comment>
- <comment xml:lang="ru">Genesis 32X ROM</comment>
- <comment xml:lang="sk">ROM pre Genesis 32X</comment>
- <comment xml:lang="sr">Џенезис 32X РОМ</comment>
- <comment xml:lang="sv">Mega Drive 32X-rom</comment>
- <comment xml:lang="tr">Genesis 32X ROM</comment>
- <comment xml:lang="uk">ППП Genesis 32X</comment>
- <comment xml:lang="zh_CN">Genesis 32X ROM</comment>
<comment xml:lang="zh_TW">Genesis 32X ROM</comment>
+ <comment xml:lang="zh_CN">Genesis 32X ROM</comment>
+ <comment xml:lang="uk">ППП Genesis 32X</comment>
+ <comment xml:lang="tr">Genesis 32X ROM</comment>
+ <comment xml:lang="sv">Mega Drive 32X-rom</comment>
+ <comment xml:lang="sr">Џенезис 32X РОМ</comment>
+ <comment xml:lang="sq">ROM Genesis 32X</comment>
+ <comment xml:lang="sl">Genesis 32X ROM</comment>
+ <comment xml:lang="si">උත්පත්ති 32X ROM</comment>
+ <comment xml:lang="sk">ROM pre Genesis 32X</comment>
+ <comment xml:lang="ru">Genesis 32X ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Genesis 32X</comment>
+ <comment xml:lang="pt">ROM Genesis 32X</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Mega Drive 32X</comment>
+ <comment xml:lang="nl">Mega Drive 32X-ROM</comment>
+ <comment xml:lang="ko">제네시스 32X 롬</comment>
+ <comment xml:lang="kk">Genesis 32X ROM</comment>
+ <comment xml:lang="ja">メガドライブ 32X ROM</comment>
+ <comment xml:lang="it">ROM Sega Mega Drive 32X</comment>
+ <comment xml:lang="is">Genesis 32X ROM</comment>
+ <comment xml:lang="id">ROM Genesis 32X</comment>
+ <comment xml:lang="hu">Genesis 32X ROM</comment>
+ <comment xml:lang="hr">Genesis 32X ROM</comment>
+ <comment xml:lang="he">ROM מסוג Genesis 32X</comment>
+ <comment xml:lang="gl">ROM Genesis 32X</comment>
+ <comment xml:lang="ga">ROM Genesis 32X</comment>
+ <comment xml:lang="fur">ROM Sega Mega Drive 32X</comment>
+ <comment xml:lang="fr">ROM Genesis 32X</comment>
+ <comment xml:lang="fi">Genesis 32X -ROM</comment>
+ <comment xml:lang="eu">Genesis 32X ROM</comment>
+ <comment xml:lang="es">ROM de Genesis 32X</comment>
+ <comment xml:lang="en_GB">Genesis 32X ROM</comment>
+ <comment xml:lang="de">Mega-32X-ROM</comment>
+ <comment xml:lang="da">Genesis 32X-ROM</comment>
+ <comment xml:lang="cs">ROM pro Genesis 32X</comment>
+ <comment xml:lang="ca">ROM de Genesis 32X</comment>
+ <comment xml:lang="bg">ROM — Genesis 32X</comment>
+ <comment xml:lang="be">Genesis 32X ROM</comment>
+ <comment xml:lang="ar">روم Genesis 32X</comment>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="SEGA 32X" type="string" offset="256"/>
+ <magic>
+ <match type="string" value="SEGA 32X" offset="256"/>
</magic>
<glob pattern="*.32x"/>
<glob pattern="*.mdx"/>
</mime-type>
<mime-type type="application/x-gettext-translation">
- <comment>translated messages (machine-readable)</comment>
- <comment xml:lang="ar">رسائل مترجمة (مقروءة آليا)</comment>
- <comment xml:lang="be@latin">pierakładzienyja paviedamleńni (dla čytańnia kamputaram)</comment>
- <comment xml:lang="bg">Преведени съобщения — машинен формат</comment>
- <comment xml:lang="ca">missatges traduïts (llegible per màquina)</comment>
- <comment xml:lang="cs">přeložené zprávy (strojově čitelné)</comment>
- <comment xml:lang="da">oversatte meddelelser (maskinlæsbare)</comment>
- <comment xml:lang="de">Übersetzte Meldungen (maschinenlesbar)</comment>
- <comment xml:lang="el">Μεταφρασμένα μηνύματα (για μηχανική ανάγνωση)</comment>
- <comment xml:lang="en_GB">translated messages (machine-readable)</comment>
- <comment xml:lang="eo">tradukitaj mesaĝoj (maŝinlegebla)</comment>
- <comment xml:lang="es">mensajes traducidos (legibles por máquinas)</comment>
- <comment xml:lang="eu">itzulitako mezuak (ordenagailuek irakurtzeko)</comment>
- <comment xml:lang="fi">käännetyt viestit (koneluettava)</comment>
- <comment xml:lang="fo">týdd boð (maskin-lesifør)</comment>
- <comment xml:lang="fr">messages traduits (lisibles par machine)</comment>
- <comment xml:lang="ga">teachtaireachtaí aistrithe (inléite ag meaisín)</comment>
- <comment xml:lang="gl">mensaxes traducidos (lexíbeis por máquinas)</comment>
- <comment xml:lang="he">הודעות מתורגמות (מובן ע״י מכונה)</comment>
- <comment xml:lang="hr">Prevedene poruke (strojno čitljive)</comment>
- <comment xml:lang="hu">lefordított üzenetek (gépi kód)</comment>
- <comment xml:lang="ia">messages traducite (legibile pro machinas)</comment>
- <comment xml:lang="id">pesan diterjemahkan (dapat dibaca mesin)</comment>
- <comment xml:lang="it">Messaggi tradotti (leggibili da macchina)</comment>
- <comment xml:lang="ja">翻訳メッセージ (マシン用)</comment>
- <comment xml:lang="ka">ნათარგმნი შეტყობინებები (მანქანისთვის განკუთვნილი)</comment>
- <comment xml:lang="kk">аударылған хабарламалар (машиналық түрде)</comment>
- <comment xml:lang="ko">번역 메시지(컴퓨터 사용 형식)</comment>
- <comment xml:lang="lt">išversti užrašai (kompiuteriniu formatu)</comment>
- <comment xml:lang="lv">pārtulkotie ziņojumi (mašīnlasāms)</comment>
- <comment xml:lang="ms">Mesej diterjemah (bolehdibaca-mesin)</comment>
- <comment xml:lang="nb">oversatte meldinger (maskinlesbar)</comment>
- <comment xml:lang="nl">vertaalde berichten (machine-leesbaar)</comment>
- <comment xml:lang="nn">oversette meldingar (maskinlesbare)</comment>
- <comment xml:lang="oc">messatges tradusits (legibles per maquina)</comment>
- <comment xml:lang="pl">Przetłumaczone komunikaty (czytelne dla komputera)</comment>
- <comment xml:lang="pt">mensagens traduzidas (leitura pelo computador)</comment>
- <comment xml:lang="pt_BR">Mensagens traduzidas (legível pelo computador)</comment>
- <comment xml:lang="ro">mesaje traduse (citite de calculator)</comment>
- <comment xml:lang="ru">Переводы сообщений (откомпилированые)</comment>
- <comment xml:lang="sk">Preložené správy (strojovo čitateľné)</comment>
- <comment xml:lang="sl">prevedena sporočila (strojni zapis)</comment>
- <comment xml:lang="sq">Mesazhe të përkthyer (të lexueshëm nga makina)</comment>
- <comment xml:lang="sr">преведене поруке (машинама читљиве)</comment>
- <comment xml:lang="sv">översatta meddelanden (maskinläsbara)</comment>
- <comment xml:lang="tr">çevrilmiş iletiler (makine tarafından okunabilir)</comment>
+ <comment>Translated messages (machine-readable)</comment>
<comment xml:lang="uk">перекладені повідомлення (у машинній формі)</comment>
- <comment xml:lang="vi">thông điệp đã dịch (máy đọc được)</comment>
- <comment xml:lang="zh_CN">已翻译消息(机读)</comment>
- <comment xml:lang="zh_TW">翻譯訊息 (程式讀取格式)</comment>
- <magic priority="50">
- <match value="\336\22\4\225" type="string" offset="0"/>
- <match value="\225\4\22\336" type="string" offset="0"/>
+ <comment xml:lang="sv">Översatta meddelanden (maskinläsbara)</comment>
+ <comment xml:lang="ru">Переводы сообщений (откомпилированые)</comment>
+ <comment xml:lang="pl">Przetłumaczone komunikaty (czytelne dla komputera)</comment>
+ <comment xml:lang="it">Messaggi tradotti (leggibili da macchina)</comment>
+ <comment xml:lang="gl">Mensaxes traducidos (lexíbel pola máquina)</comment>
+ <comment xml:lang="eu">Itzulitako mezuak (makinak irakurtzeko modukoak)</comment>
+ <comment xml:lang="es">mensajes traducidos (legibles por máquinas)</comment>
+ <comment xml:lang="de">Übersetzte Meldungen (maschinenlesbar)</comment>
+ <comment xml:lang="be">перакладзеныя паведамленні (для чытання камп'ютарам)</comment>
+ <magic>
+ <match type="string" value="\336\22\4\225" offset="0"/>
+ <match type="string" value="\225\4\22\336" offset="0"/>
</magic>
<glob pattern="*.gmo"/>
<glob pattern="*.mo"/>
</mime-type>
<mime-type type="application/x-gtk-builder">
- <comment>GTK+ Builder</comment>
- <comment xml:lang="ca">constructor de GTK+</comment>
- <comment xml:lang="cs">GTK+ Builder</comment>
- <comment xml:lang="da">GTK+ Builder</comment>
- <comment xml:lang="de">GTK+ Builder</comment>
- <comment xml:lang="el">Δομητής GTK+</comment>
- <comment xml:lang="en_GB">GTK+ Builder</comment>
- <comment xml:lang="es">GTK+ Builder</comment>
- <comment xml:lang="eu">GTK+ Builder</comment>
- <comment xml:lang="fi">GTK+ Builder</comment>
- <comment xml:lang="fr">GTK+ Builder</comment>
- <comment xml:lang="ga">Tógálaí GTK+</comment>
- <comment xml:lang="gl">Construtor de GTK+</comment>
- <comment xml:lang="he">בנייה של GTK+‎</comment>
- <comment xml:lang="hr">GTK+ Builder</comment>
- <comment xml:lang="hu">GTK+ Builder</comment>
- <comment xml:lang="ia">GTK+ Builder</comment>
- <comment xml:lang="id">GTK+ Builder</comment>
- <comment xml:lang="it">GTK+ Builder</comment>
- <comment xml:lang="ja">GTK+ Builder</comment>
- <comment xml:lang="kk">GTK+ Builder</comment>
- <comment xml:lang="ko">GTK+ 빌더</comment>
- <comment xml:lang="lv">GTK+ būvētājs</comment>
- <comment xml:lang="oc">GTK+ Builder</comment>
- <comment xml:lang="pl">GTK+ Builder</comment>
- <comment xml:lang="pt">Construtor GTK+</comment>
- <comment xml:lang="pt_BR">GTK+ Builder</comment>
- <comment xml:lang="ru">GTK+ Builder</comment>
- <comment xml:lang="sk">GTK+ Builder</comment>
- <comment xml:lang="sl">GTK+ Builder</comment>
- <comment xml:lang="sr">ГТК+ Градитељ</comment>
- <comment xml:lang="sv">GTK+ Builder</comment>
- <comment xml:lang="tr">GTK+ İnşa Edici</comment>
- <comment xml:lang="uk">GTK+ Builder</comment>
- <comment xml:lang="zh_CN">GTK+ Builder</comment>
- <comment xml:lang="zh_TW">GTK+ Builder</comment>
+ <comment>GTK+ Builder interface document</comment>
+ <comment xml:lang="zh_TW">GTK+ Builder 介面文件</comment>
+ <comment xml:lang="zh_CN">GTK+ Builder 界面文档</comment>
+ <comment xml:lang="uk">документ інтерфейсу GTK+ Builder</comment>
+ <comment xml:lang="tr">GTK+ Builder arayüz belgesi</comment>
+ <comment xml:lang="sv">GTK+-Builder-gränssnittsdokument</comment>
+ <comment xml:lang="sq">dokument ndërfaqesh GTK+ Builder</comment>
+ <comment xml:lang="sl">Dokument vmesnika GTK+ Builder</comment>
+ <comment xml:lang="si">GTK+ Builder අතුරුමුහුණත් ලේඛනය</comment>
+ <comment xml:lang="ru">Документ интерфейса GTK+ Builder</comment>
+ <comment xml:lang="pt_BR">Documento de interface do GTK+ Builder</comment>
+ <comment xml:lang="pl">Dokument interfejsu GTK Builder</comment>
+ <comment xml:lang="nl">GTK-Builder-interfacedocument</comment>
+ <comment xml:lang="ko">GTK+ 빌더 인터페이스 문서</comment>
+ <comment xml:lang="kk">GTK+ Builder интерфейс құжаты</comment>
+ <comment xml:lang="ja">GTK+ Builder インターフェイスドキュメント</comment>
+ <comment xml:lang="it">Documento interfaccia GTK+ Builder</comment>
+ <comment xml:lang="is">GTK+ Builder viðmótsskjal</comment>
+ <comment xml:lang="id">Dokumen antarmuka GTK+ Builder</comment>
+ <comment xml:lang="hu">GTK+ Builder felületleíró dokumentum</comment>
+ <comment xml:lang="hr">GTK+ Graditelj dokument sučelja</comment>
+ <comment xml:lang="he">מסמך מנשק של GTK+ Builder</comment>
+ <comment xml:lang="gl">Documento de interface do Construtor de GTK+ </comment>
+ <comment xml:lang="fr">document d'interface GTK+ Builder</comment>
+ <comment xml:lang="fi">GTK+ Builder -käyttöliittymän asiakirja</comment>
+ <comment xml:lang="eu">GTK+ Builder interfaze dokumentua</comment>
+ <comment xml:lang="es">documento de interfaz de GTK Builder</comment>
+ <comment xml:lang="en_GB">GTK+ Builder interface document</comment>
+ <comment xml:lang="de">GTK+-Builder-Oberflächendokument</comment>
+ <comment xml:lang="da">GTK+ Builder-brugerflade-dokument</comment>
+ <comment xml:lang="ca">document d'interfície GTK+ Builder</comment>
+ <comment xml:lang="bg">Интерфейс — GTK+ Builder</comment>
+ <comment xml:lang="be">дакумент інтэрфейсу GTK+ Builder</comment>
+ <comment xml:lang="ar">مستند واجهة باني جي تي كي بلس</comment>
<sub-class-of type="application/xml"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.ui"/>
- <magic priority="50">
- <match value="&lt;interface" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;interface" offset="0:256"/>
</magic>
</mime-type>
<mime-type type="application/x-glade">
<comment>Glade project</comment>
- <comment xml:lang="ar">مشروع Glade</comment>
- <comment xml:lang="az">Glade layihəsi</comment>
- <comment xml:lang="be@latin">Prajekt Glade</comment>
- <comment xml:lang="bg">Проект — Glade</comment>
- <comment xml:lang="ca">projecte de Glade</comment>
- <comment xml:lang="cs">projekt Glade</comment>
- <comment xml:lang="cy">Prosiect Glade</comment>
- <comment xml:lang="da">Gladeprojekt</comment>
- <comment xml:lang="de">Glade-Projekt</comment>
- <comment xml:lang="el">Έργο Glade</comment>
- <comment xml:lang="en_GB">Glade project</comment>
- <comment xml:lang="eo">Glade-projekto</comment>
- <comment xml:lang="es">proyecto de Glade</comment>
- <comment xml:lang="eu">Glade proiektua</comment>
- <comment xml:lang="fi">Glade-projekti</comment>
- <comment xml:lang="fo">Glade verkætlan</comment>
- <comment xml:lang="fr">projet Glade</comment>
- <comment xml:lang="ga">tionscadal Glade</comment>
- <comment xml:lang="gl">proxecto de Glade</comment>
- <comment xml:lang="he">מיזם Glade</comment>
- <comment xml:lang="hr">Glade projekt</comment>
- <comment xml:lang="hu">Glade-projekt</comment>
- <comment xml:lang="ia">Projecto Glade</comment>
- <comment xml:lang="id">Proyek Glade</comment>
- <comment xml:lang="it">Progetto Glade</comment>
- <comment xml:lang="ja">Glade プロジェクト</comment>
- <comment xml:lang="kk">Glade жобасы</comment>
- <comment xml:lang="ko">Glade 프로젝트</comment>
- <comment xml:lang="lt">Glade projektas</comment>
- <comment xml:lang="lv">Glade projekts</comment>
- <comment xml:lang="ms">Projek Glade</comment>
- <comment xml:lang="nb">Glade prosjekt</comment>
- <comment xml:lang="nl">Glade-project</comment>
- <comment xml:lang="nn">Glade prosjekt</comment>
- <comment xml:lang="oc">projècte Glade</comment>
- <comment xml:lang="pl">Projekt Glade</comment>
- <comment xml:lang="pt">projecto Glade</comment>
- <comment xml:lang="pt_BR">Projeto do Glade</comment>
- <comment xml:lang="ro">Proiect Glade</comment>
- <comment xml:lang="ru">Проект Glade</comment>
- <comment xml:lang="sk">Projekt Glade</comment>
- <comment xml:lang="sl">Datoteka projekta Glade</comment>
- <comment xml:lang="sq">Projekt Glade</comment>
- <comment xml:lang="sr">Глејдов пројекат</comment>
- <comment xml:lang="sv">Glade-projekt</comment>
- <comment xml:lang="tr">Glade projesi</comment>
- <comment xml:lang="uk">проект Glade</comment>
- <comment xml:lang="vi">Dự án Glade</comment>
- <comment xml:lang="zh_CN">Glade 工程</comment>
<comment xml:lang="zh_TW">Glade 專案</comment>
+ <comment xml:lang="zh_CN">Glade 工程</comment>
+ <comment xml:lang="vi">Dự án Glade</comment>
+ <comment xml:lang="uk">проєкт Glade</comment>
+ <comment xml:lang="tr">Glade projesi</comment>
+ <comment xml:lang="sv">Glade-projekt</comment>
+ <comment xml:lang="sr">Глејдов пројекат</comment>
+ <comment xml:lang="sq">projekt Glade</comment>
+ <comment xml:lang="sl">Datoteka projekta Glade</comment>
+ <comment xml:lang="si">ග්ලේඩ් ව්යාපෘතිය</comment>
+ <comment xml:lang="sk">Projekt Glade</comment>
+ <comment xml:lang="ru">Проект Glade</comment>
+ <comment xml:lang="ro">Proiect Glade</comment>
+ <comment xml:lang="pt_BR">Projeto do Glade</comment>
+ <comment xml:lang="pt">projecto Glade</comment>
+ <comment xml:lang="pl">Projekt Glade</comment>
+ <comment xml:lang="oc">projècte Glade</comment>
+ <comment xml:lang="nn">Glade prosjekt</comment>
+ <comment xml:lang="nl">Glade-project</comment>
+ <comment xml:lang="nb">Glade prosjekt</comment>
+ <comment xml:lang="ms">Projek Glade</comment>
+ <comment xml:lang="lv">Glade projekts</comment>
+ <comment xml:lang="lt">Glade projektas</comment>
+ <comment xml:lang="ko">Glade 프로젝트</comment>
+ <comment xml:lang="kk">Glade жобасы</comment>
+ <comment xml:lang="ja">Glade プロジェクト</comment>
+ <comment xml:lang="it">Progetto Glade</comment>
+ <comment xml:lang="is">Glade verkefni</comment>
+ <comment xml:lang="id">Proyek Glade</comment>
+ <comment xml:lang="ia">Projecto Glade</comment>
+ <comment xml:lang="hu">Glade-projekt</comment>
+ <comment xml:lang="hr">Glade projekt</comment>
+ <comment xml:lang="he">מיזם Glade</comment>
+ <comment xml:lang="gl">proxecto de Glade</comment>
+ <comment xml:lang="ga">tionscadal Glade</comment>
+ <comment xml:lang="fur">progjet Glade</comment>
+ <comment xml:lang="fr">projet Glade</comment>
+ <comment xml:lang="fo">Glade verkætlan</comment>
+ <comment xml:lang="fi">Glade-projekti</comment>
+ <comment xml:lang="eu">Glade proiektua</comment>
+ <comment xml:lang="es">proyecto de Glade</comment>
+ <comment xml:lang="eo">Glade-projekto</comment>
+ <comment xml:lang="en_GB">Glade project</comment>
+ <comment xml:lang="el">Έργο Glade</comment>
+ <comment xml:lang="de">Glade-Projekt</comment>
+ <comment xml:lang="da">Gladeprojekt</comment>
+ <comment xml:lang="cy">Prosiect Glade</comment>
+ <comment xml:lang="cs">projekt Glade</comment>
+ <comment xml:lang="ca">projecte de Glade</comment>
+ <comment xml:lang="bg">Проект — Glade</comment>
+ <comment xml:lang="be@latin">Prajekt Glade</comment>
+ <comment xml:lang="be">праект Glade</comment>
+ <comment xml:lang="az">Glade layihəsi</comment>
+ <comment xml:lang="ar">مشروع Glade</comment>
+ <comment xml:lang="af">Glade-projek</comment>
<sub-class-of type="application/xml"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.glade"/>
- <magic priority="50">
- <match value="&lt;glade-interface" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;glade-interface" offset="0:256"/>
</magic>
</mime-type>
<mime-type type="application/x-gnucash">
<comment>GnuCash financial data</comment>
- <comment xml:lang="ar">معلومات GnuCash المالية</comment>
- <comment xml:lang="bg">Финансови данни — GnuCash</comment>
- <comment xml:lang="ca">dades financeres de GnuCash</comment>
- <comment xml:lang="cs">finanční data GnuCash</comment>
- <comment xml:lang="da">Finansielle data til GnuCash</comment>
- <comment xml:lang="de">GnuCash-Finanzdaten</comment>
- <comment xml:lang="el">Οικονομικά στοιχεία GnuCash</comment>
- <comment xml:lang="en_GB">GnuCash financial data</comment>
- <comment xml:lang="es">datos financieros de GnuCash</comment>
- <comment xml:lang="eu">GnuCash finantzako datuak</comment>
- <comment xml:lang="fi">GnuCash-taloustiedot</comment>
- <comment xml:lang="fo">GnuCash fíggjarligar dátur</comment>
- <comment xml:lang="fr">données financières GnuCash</comment>
- <comment xml:lang="ga">sonraí airgeadúla GnuCash</comment>
- <comment xml:lang="gl">datos financeiros de GNUCash</comment>
- <comment xml:lang="he">מידע כלכלי של GnuCash</comment>
- <comment xml:lang="hr">GnuCash financijski podaci</comment>
- <comment xml:lang="hu">GnuCash pénzügyi adatok</comment>
- <comment xml:lang="ia">Datos financiari GnuCash</comment>
- <comment xml:lang="id">Data keuangan GnuCash</comment>
- <comment xml:lang="it">Dati finanziari GnuCash</comment>
- <comment xml:lang="ja">GnuCash 会計データ</comment>
- <comment xml:lang="kk">GnuCash қаржы ақпараты</comment>
- <comment xml:lang="ko">GnuCash 재정 자료</comment>
- <comment xml:lang="lt">GnuCash finansiniai duomenys</comment>
- <comment xml:lang="lv">GnuCash finanšu dati</comment>
- <comment xml:lang="nl">GnuCash financiële gegevens</comment>
- <comment xml:lang="oc">donadas financières GnuCash</comment>
- <comment xml:lang="pl">Dane finansowe GnuCash</comment>
- <comment xml:lang="pt">dados financeiros GnuCash</comment>
- <comment xml:lang="pt_BR">Dados financeiros do GnuCash</comment>
- <comment xml:lang="ro">Date financiare GnuCash</comment>
- <comment xml:lang="ru">Финансовые данные GnuCash</comment>
- <comment xml:lang="sk">Finančné údaje GnuCash</comment>
- <comment xml:lang="sl">Datoteka finančnih podatkov GnuCash</comment>
- <comment xml:lang="sr">финансијски подаци Гнуовог новца</comment>
- <comment xml:lang="sv">GnuCash-finansdata</comment>
- <comment xml:lang="tr">GnuCash mali verisi</comment>
- <comment xml:lang="uk">фінансові дані GnuCash</comment>
- <comment xml:lang="vi">Dữ liệu tài chính GnuCash</comment>
- <comment xml:lang="zh_CN">GnuCash 财务数据</comment>
<comment xml:lang="zh_TW">GnuCash 財務資料</comment>
+ <comment xml:lang="zh_CN">GnuCash 财务数据</comment>
+ <comment xml:lang="vi">Dữ liệu tài chính GnuCash</comment>
+ <comment xml:lang="uk">фінансові дані GnuCash</comment>
+ <comment xml:lang="tr">GnuCash mali verisi</comment>
+ <comment xml:lang="sv">GnuCash-finansdata</comment>
+ <comment xml:lang="sr">финансијски подаци Гнуовог новца</comment>
+ <comment xml:lang="sq">të dhëna financiare GnuCash</comment>
+ <comment xml:lang="sl">Datoteka finančnih podatkov GnuCash</comment>
+ <comment xml:lang="si">GnuCash මූල්ය දත්ත</comment>
+ <comment xml:lang="sk">Finančné údaje GnuCash</comment>
+ <comment xml:lang="ru">Финансовые данные GnuCash</comment>
+ <comment xml:lang="ro">Date financiare GnuCash</comment>
+ <comment xml:lang="pt_BR">Dados financeiros do GnuCash</comment>
+ <comment xml:lang="pt">dados financeiros GnuCash</comment>
+ <comment xml:lang="pl">Dane finansowe GnuCash</comment>
+ <comment xml:lang="oc">donadas financières GnuCash</comment>
+ <comment xml:lang="nl">GnuCash financiële gegevens</comment>
+ <comment xml:lang="lv">GnuCash finanšu dati</comment>
+ <comment xml:lang="lt">GnuCash finansiniai duomenys</comment>
+ <comment xml:lang="ko">GnuCash 재정 자료</comment>
+ <comment xml:lang="kk">GnuCash қаржы ақпараты</comment>
+ <comment xml:lang="ja">GnuCash 会計データ</comment>
+ <comment xml:lang="it">Dati finanziari GnuCash</comment>
+ <comment xml:lang="is">GnuCash fjárhagsgögn</comment>
+ <comment xml:lang="id">Data keuangan GnuCash</comment>
+ <comment xml:lang="ia">Datos financiari GnuCash</comment>
+ <comment xml:lang="hu">GnuCash pénzügyi adatok</comment>
+ <comment xml:lang="hr">GnuCash financijski podaci</comment>
+ <comment xml:lang="he">מידע כלכלי של GnuCash</comment>
+ <comment xml:lang="gl">datos financeiros de GNUCash</comment>
+ <comment xml:lang="ga">sonraí airgeadúla GnuCash</comment>
+ <comment xml:lang="fur">dâts finanziaris GnuCash</comment>
+ <comment xml:lang="fr">données financières GnuCash</comment>
+ <comment xml:lang="fo">GnuCash fíggjarligar dátur</comment>
+ <comment xml:lang="fi">GnuCash-taloustiedot</comment>
+ <comment xml:lang="eu">GnuCash finantzako datuak</comment>
+ <comment xml:lang="es">datos financieros de GnuCash</comment>
+ <comment xml:lang="en_GB">GnuCash financial data</comment>
+ <comment xml:lang="el">Οικονομικά στοιχεία GnuCash</comment>
+ <comment xml:lang="de">GnuCash-Finanzdaten</comment>
+ <comment xml:lang="da">Finansielle data til GnuCash</comment>
+ <comment xml:lang="cs">finanční data GnuCash</comment>
+ <comment xml:lang="ca">dades financeres de GnuCash</comment>
+ <comment xml:lang="bg">Финансови данни — GnuCash</comment>
+ <comment xml:lang="be">фінансавыя даныя GnuCash</comment>
+ <comment xml:lang="ar">بيانات مالية GnuCash</comment>
+ <comment xml:lang="af">GnuCash finansiële data</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.gnucash"/>
<glob pattern="*.gnc"/>
@@ -12306,111 +13252,121 @@
</mime-type>
<mime-type type="application/x-gnumeric">
<comment>Gnumeric spreadsheet</comment>
- <comment xml:lang="ar">جدول Gnumeric</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš Gnumeric</comment>
- <comment xml:lang="bg">Таблица — Gnumeric</comment>
- <comment xml:lang="ca">full de càlcul de Gnumeric</comment>
- <comment xml:lang="cs">sešit Gnumeric</comment>
- <comment xml:lang="da">Gnumeric-regneark</comment>
- <comment xml:lang="de">Gnumeric-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Gnumeric</comment>
- <comment xml:lang="en_GB">Gnumeric spreadsheet</comment>
- <comment xml:lang="eo">Gnumeric-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo de Gnumeric</comment>
- <comment xml:lang="eu">Gnumeric kalkulu-orria</comment>
- <comment xml:lang="fi">Gnumeric-taulukko</comment>
- <comment xml:lang="fo">Gnumeric rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Gnumeric</comment>
- <comment xml:lang="ga">scarbhileog Gnumeric</comment>
- <comment xml:lang="gl">folla de cálculo de Gnumeric</comment>
- <comment xml:lang="he">גליון עבודה Gnumeric</comment>
- <comment xml:lang="hr">Gnumeric proračunska tablica</comment>
- <comment xml:lang="hu">Gnumeric-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo Gnumeric</comment>
- <comment xml:lang="id">Lembar sebar Gnumeric</comment>
- <comment xml:lang="it">Foglio di calcolo Gnumeric</comment>
- <comment xml:lang="ja">Gnumeric スプレッドシート</comment>
- <comment xml:lang="kk">Gnumeric электрондық кестесі</comment>
- <comment xml:lang="ko">Gnumeric 스프레드시트</comment>
- <comment xml:lang="lt">Gnumeric skaičialentė</comment>
- <comment xml:lang="lv">Gnumeric izklājlapa</comment>
- <comment xml:lang="ms">Hamparan Gnumeric</comment>
- <comment xml:lang="nb">Gnumeric-regneark</comment>
- <comment xml:lang="nl">Gnumeric-rekenblad</comment>
- <comment xml:lang="nn">Gnumeric-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul Gnumeric</comment>
- <comment xml:lang="pl">Arkusz Gnumeric</comment>
- <comment xml:lang="pt">folha de cálculo Gnumeric</comment>
- <comment xml:lang="pt_BR">Planilha do Gnumeric</comment>
- <comment xml:lang="ro">Foaie de calcul Gnumeric</comment>
- <comment xml:lang="ru">Электронная таблица Gnumeric</comment>
- <comment xml:lang="sk">Zošit Gnumeric</comment>
- <comment xml:lang="sl">Razpredelnica Gnumeric</comment>
- <comment xml:lang="sq">Fletë llogaritjesh Gnumeric</comment>
- <comment xml:lang="sr">табела Гномовог бројевника</comment>
- <comment xml:lang="sv">Gnumeric-kalkylblad</comment>
- <comment xml:lang="tr">Gnumeric çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Gnumeric</comment>
- <comment xml:lang="vi">Bảng tính Gnumeric.</comment>
- <comment xml:lang="zh_CN">Gnumeric 电子表格</comment>
<comment xml:lang="zh_TW">Gnumeric 試算表</comment>
+ <comment xml:lang="zh_CN">Gnumeric 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Gnumeric.</comment>
+ <comment xml:lang="uk">електронна таблиця Gnumeric</comment>
+ <comment xml:lang="tr">Gnumeric hesap çizelgesi</comment>
+ <comment xml:lang="sv">Gnumeric-kalkylblad</comment>
+ <comment xml:lang="sr">табела Гномовог бројевника</comment>
+ <comment xml:lang="sq">fletëllogaritjesh Gnumeric</comment>
+ <comment xml:lang="sl">Razpredelnica Gnumeric</comment>
+ <comment xml:lang="si">Gnumeric පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Gnumeric</comment>
+ <comment xml:lang="ru">Электронная таблица Gnumeric</comment>
+ <comment xml:lang="ro">Foaie de calcul Gnumeric</comment>
+ <comment xml:lang="pt_BR">Planilha do Gnumeric</comment>
+ <comment xml:lang="pt">folha de cálculo Gnumeric</comment>
+ <comment xml:lang="pl">Arkusz Gnumeric</comment>
+ <comment xml:lang="oc">fuèlh de calcul Gnumeric</comment>
+ <comment xml:lang="nn">Gnumeric-rekneark</comment>
+ <comment xml:lang="nl">Gnumeric-rekenblad</comment>
+ <comment xml:lang="nb">Gnumeric-regneark</comment>
+ <comment xml:lang="ms">Hamparan Gnumeric</comment>
+ <comment xml:lang="lv">Gnumeric izklājlapa</comment>
+ <comment xml:lang="lt">Gnumeric skaičialentė</comment>
+ <comment xml:lang="ko">Gnumeric 스프레드시트</comment>
+ <comment xml:lang="kk">Gnumeric электрондық кестесі</comment>
+ <comment xml:lang="ja">Gnumeric スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Gnumeric</comment>
+ <comment xml:lang="is">Gnumeric töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Gnumeric</comment>
+ <comment xml:lang="ia">Folio de calculo Gnumeric</comment>
+ <comment xml:lang="hu">Gnumeric-munkafüzet</comment>
+ <comment xml:lang="hr">Gnumeric proračunska tablica</comment>
+ <comment xml:lang="he">גיליון עבודה של Gnumeric</comment>
+ <comment xml:lang="gl">folla de cálculo de Gnumeric</comment>
+ <comment xml:lang="ga">scarbhileog Gnumeric</comment>
+ <comment xml:lang="fur">sfuei di calcul Gnumeric</comment>
+ <comment xml:lang="fr">feuille de calcul Gnumeric</comment>
+ <comment xml:lang="fo">Gnumeric rokniark</comment>
+ <comment xml:lang="fi">Gnumeric-taulukko</comment>
+ <comment xml:lang="eu">Gnumeric kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Gnumeric</comment>
+ <comment xml:lang="eo">Gnumeric-kalkultabelo</comment>
+ <comment xml:lang="en_GB">Gnumeric spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Gnumeric</comment>
+ <comment xml:lang="de">Gnumeric-Tabelle</comment>
+ <comment xml:lang="da">Gnumeric-regneark</comment>
+ <comment xml:lang="cs">sešit Gnumeric</comment>
+ <comment xml:lang="ca">full de càlcul de Gnumeric</comment>
+ <comment xml:lang="bg">Таблица — Gnumeric</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš Gnumeric</comment>
+ <comment xml:lang="be">электронная табліца Gnumeric</comment>
+ <comment xml:lang="ar">جدول Gnumeric</comment>
+ <comment xml:lang="af">Gnumeric-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="gmr:Workbook" type="string" offset="0:64"/>
- <match value="gnm:Workbook" type="string" offset="0:64"/>
+ <magic>
+ <match type="string" value="gmr:Workbook" offset="0:64"/>
+ <match type="string" value="gnm:Workbook" offset="0:64"/>
</magic>
<glob pattern="*.gnumeric"/>
</mime-type>
<mime-type type="application/x-gnuplot">
<comment>Gnuplot document</comment>
- <comment xml:lang="ar">مستند Gnuplot</comment>
- <comment xml:lang="ast">Documentu de Gnuplot</comment>
- <comment xml:lang="be@latin">Dakument Gnuplot</comment>
- <comment xml:lang="bg">Документ — Gnuplot</comment>
- <comment xml:lang="ca">document gnuplot</comment>
- <comment xml:lang="cs">dokument Gnuplot</comment>
- <comment xml:lang="da">Gnuplotdokument</comment>
- <comment xml:lang="de">Gnuplot-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Gnuplot</comment>
- <comment xml:lang="en_GB">Gnuplot document</comment>
- <comment xml:lang="eo">Gnuplot-dokumento</comment>
- <comment xml:lang="es">documento de Gnuplot</comment>
- <comment xml:lang="eu">Gnuplot dokumentua</comment>
- <comment xml:lang="fi">Gnuplot-asiakirja</comment>
- <comment xml:lang="fo">Gnuplot skjal</comment>
- <comment xml:lang="fr">document Gnuplot</comment>
- <comment xml:lang="ga">cáipéis Gnuplot</comment>
- <comment xml:lang="gl">documento de Gnuplot</comment>
- <comment xml:lang="he">מסמך Gnuplot</comment>
- <comment xml:lang="hr">Gnuplot dokument</comment>
- <comment xml:lang="hu">Gnuplot dokumentum</comment>
- <comment xml:lang="ia">Documento Gnuplot</comment>
- <comment xml:lang="id">Dokumen Gnuplot</comment>
- <comment xml:lang="it">Documento Gnuplot</comment>
- <comment xml:lang="ja">Gnuplot ドキュメント</comment>
- <comment xml:lang="kk">Gnuplot құжаты</comment>
- <comment xml:lang="ko">Gnuplot 문서</comment>
- <comment xml:lang="lt">Gnuplot dokumentas</comment>
- <comment xml:lang="lv">Gnuplot dokuments</comment>
- <comment xml:lang="nb">Gnuplot-dokument</comment>
- <comment xml:lang="nl">Gnuplot-document</comment>
- <comment xml:lang="nn">Gnuplot-dokument</comment>
- <comment xml:lang="oc">document Gnuplot</comment>
- <comment xml:lang="pl">Dokument Gnuplot</comment>
- <comment xml:lang="pt">documento Gnuplot</comment>
- <comment xml:lang="pt_BR">Documento do Gnuplot</comment>
- <comment xml:lang="ro">Document Gnuplot</comment>
- <comment xml:lang="ru">Документ Gnuplot</comment>
- <comment xml:lang="sk">Dokument Gnuplot</comment>
- <comment xml:lang="sl">Dokument Gnuplot</comment>
- <comment xml:lang="sq">Dokument Gnuplot</comment>
- <comment xml:lang="sr">документ Гнуплота</comment>
- <comment xml:lang="sv">Gnuplot-dokument</comment>
- <comment xml:lang="tr">Gnuplot belgesi</comment>
- <comment xml:lang="uk">документ Gnuplot</comment>
- <comment xml:lang="vi">Tài liệu Gnuplot</comment>
- <comment xml:lang="zh_CN">Gnuplot 文档</comment>
<comment xml:lang="zh_TW">Gnuplot 文件</comment>
+ <comment xml:lang="zh_CN">Gnuplot 文档</comment>
+ <comment xml:lang="vi">Tài liệu Gnuplot</comment>
+ <comment xml:lang="uk">документ Gnuplot</comment>
+ <comment xml:lang="tr">Gnuplot belgesi</comment>
+ <comment xml:lang="sv">Gnuplot-dokument</comment>
+ <comment xml:lang="sr">документ Гнуплота</comment>
+ <comment xml:lang="sq">dokument Gnuplot</comment>
+ <comment xml:lang="sl">Dokument Gnuplot</comment>
+ <comment xml:lang="si">Gnuplot ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Gnuplot</comment>
+ <comment xml:lang="ru">Документ Gnuplot</comment>
+ <comment xml:lang="ro">Document Gnuplot</comment>
+ <comment xml:lang="pt_BR">Documento do Gnuplot</comment>
+ <comment xml:lang="pt">documento Gnuplot</comment>
+ <comment xml:lang="pl">Dokument Gnuplot</comment>
+ <comment xml:lang="oc">document Gnuplot</comment>
+ <comment xml:lang="nn">Gnuplot-dokument</comment>
+ <comment xml:lang="nl">Gnuplot-document</comment>
+ <comment xml:lang="nb">Gnuplot-dokument</comment>
+ <comment xml:lang="lv">Gnuplot dokuments</comment>
+ <comment xml:lang="lt">Gnuplot dokumentas</comment>
+ <comment xml:lang="ko">Gnuplot 문서</comment>
+ <comment xml:lang="kk">Gnuplot құжаты</comment>
+ <comment xml:lang="ja">Gnuplot ドキュメント</comment>
+ <comment xml:lang="it">Documento Gnuplot</comment>
+ <comment xml:lang="is">Gnuplot skjal</comment>
+ <comment xml:lang="id">Dokumen Gnuplot</comment>
+ <comment xml:lang="ia">Documento Gnuplot</comment>
+ <comment xml:lang="hu">Gnuplot dokumentum</comment>
+ <comment xml:lang="hr">Gnuplot dokument</comment>
+ <comment xml:lang="he">מסמך Gnuplot</comment>
+ <comment xml:lang="gl">documento de Gnuplot</comment>
+ <comment xml:lang="ga">cáipéis Gnuplot</comment>
+ <comment xml:lang="fur">document Gnuplot</comment>
+ <comment xml:lang="fr">document Gnuplot</comment>
+ <comment xml:lang="fo">Gnuplot skjal</comment>
+ <comment xml:lang="fi">Gnuplot-asiakirja</comment>
+ <comment xml:lang="eu">Gnuplot dokumentua</comment>
+ <comment xml:lang="es">documento de Gnuplot</comment>
+ <comment xml:lang="eo">Gnuplot-dokumento</comment>
+ <comment xml:lang="en_GB">Gnuplot document</comment>
+ <comment xml:lang="el">Έγγραφο Gnuplot</comment>
+ <comment xml:lang="de">Gnuplot-Dokument</comment>
+ <comment xml:lang="da">Gnuplot-dokument</comment>
+ <comment xml:lang="cs">dokument Gnuplot</comment>
+ <comment xml:lang="ca">document gnuplot</comment>
+ <comment xml:lang="bg">Документ — Gnuplot</comment>
+ <comment xml:lang="be@latin">Dakument Gnuplot</comment>
+ <comment xml:lang="be">дакумент Gnuplot</comment>
+ <comment xml:lang="ast">Documentu de Gnuplot</comment>
+ <comment xml:lang="ar">مستند Gnuplot</comment>
+ <comment xml:lang="af">Gnuplot-dokument</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.gp"/>
@@ -12419,389 +13375,422 @@
</mime-type>
<mime-type type="application/x-graphite">
<comment>Graphite scientific graph</comment>
- <comment xml:lang="ar">مبيان الجرافيت العلمي</comment>
- <comment xml:lang="be@latin">Navukovy hrafik Graphite</comment>
- <comment xml:lang="bg">Графика — Graphite</comment>
- <comment xml:lang="ca">gràfic científic Graphite</comment>
- <comment xml:lang="cs">vědecký graf Graphite</comment>
- <comment xml:lang="da">Graphite videnskabelig graf</comment>
- <comment xml:lang="de">Wissenschaftlicher Graphite-Graph</comment>
- <comment xml:lang="el">Επιστημονικό γράφημα Graphite</comment>
- <comment xml:lang="en_GB">Graphite scientific graph</comment>
- <comment xml:lang="eo">scienca grafikaĵo de Graphite</comment>
- <comment xml:lang="es">gráfico científico de Graphite</comment>
- <comment xml:lang="eu">Graphite - grafiko zientifikoak</comment>
- <comment xml:lang="fi">Graphite- tieteellinen graafi</comment>
- <comment xml:lang="fo">Grapite vísindarlig ritmynd</comment>
- <comment xml:lang="fr">graphe Graphite scientific</comment>
- <comment xml:lang="ga">graf eolaíochta Graphite</comment>
- <comment xml:lang="gl">gráfica científica de Graphite</comment>
- <comment xml:lang="he">תרשים מדעי של Graphite</comment>
- <comment xml:lang="hr">Graphite znanstveni grafikon</comment>
- <comment xml:lang="hu">Graphite tudományos grafikon</comment>
- <comment xml:lang="ia">Graphico scientific Graphite</comment>
- <comment xml:lang="id">Grafik sains Graphite</comment>
- <comment xml:lang="it">Grafico scientifico Graphite</comment>
- <comment xml:lang="ja">Graphite scientific グラフ</comment>
- <comment xml:lang="kk">Graphite ғылыми кескіні</comment>
- <comment xml:lang="ko">Graphite 과학 그래프</comment>
- <comment xml:lang="lt">Graphite mokslinė diagrama</comment>
- <comment xml:lang="lv">Graphite zinātniskais grafiks</comment>
- <comment xml:lang="ms">Graf saintifik Graphite</comment>
- <comment xml:lang="nb">Vitenskapelig graf fra Graphite</comment>
- <comment xml:lang="nl">Graphite wetenschappelijke grafiek</comment>
- <comment xml:lang="nn">Graphite vitskaplege graf</comment>
- <comment xml:lang="oc">graphe Graphite scientific</comment>
- <comment xml:lang="pl">Wykres naukowy Graphite</comment>
- <comment xml:lang="pt">gráfico científico Graphite</comment>
- <comment xml:lang="pt_BR">Gráfico científico do Graphite</comment>
- <comment xml:lang="ro">Grafic științific Graphite</comment>
- <comment xml:lang="ru">Научная диаграмма Graphite</comment>
- <comment xml:lang="sk">Vedecký graf Graphite</comment>
- <comment xml:lang="sl">Datoteka znanstvenega grafa Graphite</comment>
- <comment xml:lang="sq">Grafik shkencor Graphite </comment>
- <comment xml:lang="sr">Графитов научни графикони</comment>
- <comment xml:lang="sv">Vetenskaplig Graphite-grafer</comment>
- <comment xml:lang="tr">Graphite bilimsel grafiği</comment>
- <comment xml:lang="uk">наукова графіка Graphite</comment>
- <comment xml:lang="vi">Biểu đồ khoa học Graphite</comment>
- <comment xml:lang="zh_CN">Graphite 科学图形</comment>
<comment xml:lang="zh_TW">Graphite 科學圖表</comment>
+ <comment xml:lang="zh_CN">Graphite 科学图形</comment>
+ <comment xml:lang="vi">Biểu đồ khoa học Graphite</comment>
+ <comment xml:lang="uk">наукова графіка Graphite</comment>
+ <comment xml:lang="tr">Graphite bilimsel grafiği</comment>
+ <comment xml:lang="sv">Vetenskaplig Graphite-grafer</comment>
+ <comment xml:lang="sr">Графитов научни графикони</comment>
+ <comment xml:lang="sq">grafik shkencor Graphite</comment>
+ <comment xml:lang="sl">Datoteka znanstvenega grafa Graphite</comment>
+ <comment xml:lang="si">ග්රැෆයිට් විද්යාත්මක ප්රස්ථාරය</comment>
+ <comment xml:lang="sk">Vedecký graf Graphite</comment>
+ <comment xml:lang="ru">Научная диаграмма Graphite</comment>
+ <comment xml:lang="ro">Grafic științific Graphite</comment>
+ <comment xml:lang="pt_BR">Gráfico científico do Graphite</comment>
+ <comment xml:lang="pt">gráfico científico Graphite</comment>
+ <comment xml:lang="pl">Wykres naukowy Graphite</comment>
+ <comment xml:lang="oc">graphe Graphite scientific</comment>
+ <comment xml:lang="nn">Graphite vitskaplege graf</comment>
+ <comment xml:lang="nl">Graphite wetenschappelijke grafiek</comment>
+ <comment xml:lang="nb">Vitenskapelig graf fra Graphite</comment>
+ <comment xml:lang="ms">Graf saintifik Graphite</comment>
+ <comment xml:lang="lv">Graphite zinātniskais grafiks</comment>
+ <comment xml:lang="lt">Graphite mokslinė diagrama</comment>
+ <comment xml:lang="ko">Graphite 과학 그래프</comment>
+ <comment xml:lang="kk">Graphite ғылыми кескіні</comment>
+ <comment xml:lang="ja">Graphite scientific グラフ</comment>
+ <comment xml:lang="it">Grafico scientifico Graphite</comment>
+ <comment xml:lang="is">Graphite vísindalegt graf</comment>
+ <comment xml:lang="id">Grafik sains Graphite</comment>
+ <comment xml:lang="ia">Graphico scientific Graphite</comment>
+ <comment xml:lang="hu">Graphite tudományos grafikon</comment>
+ <comment xml:lang="hr">Graphite znanstveni grafikon</comment>
+ <comment xml:lang="he">תרשים מדעי של Graphite</comment>
+ <comment xml:lang="gl">gráfica científica de Graphite</comment>
+ <comment xml:lang="ga">graf eolaíochta Graphite</comment>
+ <comment xml:lang="fur">grafic sientific Graphite</comment>
+ <comment xml:lang="fr">graphe Graphite scientific</comment>
+ <comment xml:lang="fo">Grapite vísindarlig ritmynd</comment>
+ <comment xml:lang="fi">Graphite- tieteellinen graafi</comment>
+ <comment xml:lang="eu">Graphite - grafiko zientifikoak</comment>
+ <comment xml:lang="es">gráfico científico de Graphite</comment>
+ <comment xml:lang="eo">scienca grafikaĵo de Graphite</comment>
+ <comment xml:lang="en_GB">Graphite scientific graph</comment>
+ <comment xml:lang="el">Επιστημονικό γράφημα Graphite</comment>
+ <comment xml:lang="de">Wissenschaftlicher Graphite-Graph</comment>
+ <comment xml:lang="da">Graphite videnskabelig graf</comment>
+ <comment xml:lang="cs">vědecký graf Graphite</comment>
+ <comment xml:lang="ca">gràfic científic Graphite</comment>
+ <comment xml:lang="bg">Графика — Graphite</comment>
+ <comment xml:lang="be@latin">Navukovy hrafik Graphite</comment>
+ <comment xml:lang="be">навуковы граф Graphite</comment>
+ <comment xml:lang="ar">مبيان جرافيت علمي</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.gra"/>
</mime-type>
<mime-type type="application/x-gtktalog">
<comment>GTKtalog catalog</comment>
- <comment xml:lang="ar">كتالوج GTKtalog</comment>
- <comment xml:lang="be@latin">Kataloh GTKtalog</comment>
- <comment xml:lang="bg">Каталог — Gtktalog</comment>
- <comment xml:lang="ca">catàleg de GTKtalog</comment>
- <comment xml:lang="cs">katalog GTKtalog</comment>
- <comment xml:lang="da">GTKtalog-katalog</comment>
- <comment xml:lang="de">GTKtalog-Katalog</comment>
- <comment xml:lang="el">Κατάλογος GTKtalog</comment>
- <comment xml:lang="en_GB">GTKtalog catalogue</comment>
- <comment xml:lang="eo">katalogo de GTKtalog</comment>
- <comment xml:lang="es">catálogo de GTKtalog</comment>
- <comment xml:lang="eu">Gtktalog katalogoa</comment>
- <comment xml:lang="fi">GTKtalog-luettelo</comment>
- <comment xml:lang="fo">GTKtalog skrá</comment>
- <comment xml:lang="fr">catalogue Gtktalog</comment>
- <comment xml:lang="ga">catalóg GTKtalog</comment>
- <comment xml:lang="gl">catálogo de GTKtalog</comment>
- <comment xml:lang="he">קטלוג GTKtalog</comment>
- <comment xml:lang="hr">GTKtalog katalog</comment>
- <comment xml:lang="hu">GTKtalog-katalógus</comment>
- <comment xml:lang="ia">Catalogo GTKtalog</comment>
- <comment xml:lang="id">Katalog GTKtalog</comment>
- <comment xml:lang="it">Catalogo GTKtalog</comment>
- <comment xml:lang="ja">GTKtalog カタログ</comment>
- <comment xml:lang="ka">GTKtalog-ის კატალოგი</comment>
- <comment xml:lang="kk">GTKtalog каталогы</comment>
- <comment xml:lang="ko">GTKtalog 카탈로그</comment>
- <comment xml:lang="lt">GTKtalog katalogas</comment>
- <comment xml:lang="lv">GTKtalog katalogs</comment>
- <comment xml:lang="ms">Katalog GTKtalog</comment>
- <comment xml:lang="nb">GTKtalog-katalog</comment>
- <comment xml:lang="nl">GTKtalog-catalogus</comment>
- <comment xml:lang="nn">GTKtalog-katalog</comment>
- <comment xml:lang="oc">catalòg Gtktalog</comment>
- <comment xml:lang="pl">Katalog programu GTKtalog</comment>
- <comment xml:lang="pt">catálogo GTKtalog</comment>
- <comment xml:lang="pt_BR">Catálogo GTKtalog</comment>
- <comment xml:lang="ro">Catalog GTKalog</comment>
- <comment xml:lang="ru">Каталог GTKtalog</comment>
- <comment xml:lang="sk">Katalóg GTKtalog</comment>
- <comment xml:lang="sl">Datoteka kataloga GTKtalog</comment>
- <comment xml:lang="sq">Katallog GTKtalog</comment>
- <comment xml:lang="sr">каталог ГТКталога</comment>
- <comment xml:lang="sv">GTKtalog-katalog</comment>
- <comment xml:lang="tr">Gtktalog kataloğu</comment>
- <comment xml:lang="uk">каталог GTKtalog</comment>
- <comment xml:lang="vi">Phân loại GTKtalog</comment>
- <comment xml:lang="zh_CN">GTKtalog 目录</comment>
<comment xml:lang="zh_TW">GTKtalog 光碟目錄</comment>
+ <comment xml:lang="zh_CN">GTKtalog 目录</comment>
+ <comment xml:lang="vi">Phân loại GTKtalog</comment>
+ <comment xml:lang="uk">каталог GTKtalog</comment>
+ <comment xml:lang="tr">GTKtalog kataloğu</comment>
+ <comment xml:lang="sv">GTKtalog-katalog</comment>
+ <comment xml:lang="sr">каталог ГТКталога</comment>
+ <comment xml:lang="sq">katalog GTKtalog</comment>
+ <comment xml:lang="sl">Datoteka kataloga GTKtalog</comment>
+ <comment xml:lang="si">GTKtalog නාමාවලිය</comment>
+ <comment xml:lang="sk">Katalóg GTKtalog</comment>
+ <comment xml:lang="ru">Каталог GTKtalog</comment>
+ <comment xml:lang="ro">Catalog GTKalog</comment>
+ <comment xml:lang="pt_BR">Catálogo GTKtalog</comment>
+ <comment xml:lang="pt">catálogo GTKtalog</comment>
+ <comment xml:lang="pl">Katalog programu GTKtalog</comment>
+ <comment xml:lang="oc">catalòg Gtktalog</comment>
+ <comment xml:lang="nn">GTKtalog-katalog</comment>
+ <comment xml:lang="nl">GTKtalog-catalogus</comment>
+ <comment xml:lang="nb">GTKtalog-katalog</comment>
+ <comment xml:lang="ms">Katalog GTKtalog</comment>
+ <comment xml:lang="lv">GTKtalog katalogs</comment>
+ <comment xml:lang="lt">GTKtalog katalogas</comment>
+ <comment xml:lang="ko">GTKtalog 카탈로그</comment>
+ <comment xml:lang="kk">GTKtalog каталогы</comment>
+ <comment xml:lang="ka">GTKtalog-ის კატალოგი</comment>
+ <comment xml:lang="ja">GTKtalog カタログ</comment>
+ <comment xml:lang="it">Catalogo GTKtalog</comment>
+ <comment xml:lang="is">GTKtalog efnisskrá</comment>
+ <comment xml:lang="id">Katalog GTKtalog</comment>
+ <comment xml:lang="ia">Catalogo GTKtalog</comment>
+ <comment xml:lang="hu">GTKtalog-katalógus</comment>
+ <comment xml:lang="hr">GTKtalog katalog</comment>
+ <comment xml:lang="he">קטלוג GTKtalog</comment>
+ <comment xml:lang="gl">catálogo de GTKtalog</comment>
+ <comment xml:lang="ga">catalóg GTKtalog</comment>
+ <comment xml:lang="fur">catalic GTKtalog</comment>
+ <comment xml:lang="fr">catalogue Gtktalog</comment>
+ <comment xml:lang="fo">GTKtalog skrá</comment>
+ <comment xml:lang="fi">GTKtalog-luettelo</comment>
+ <comment xml:lang="eu">Gtktalog katalogoa</comment>
+ <comment xml:lang="es">catálogo de GTKtalog</comment>
+ <comment xml:lang="eo">katalogo de GTKtalog</comment>
+ <comment xml:lang="en_GB">GTKtalog catalogue</comment>
+ <comment xml:lang="el">Κατάλογος GTKtalog</comment>
+ <comment xml:lang="de">GTKtalog-Katalog</comment>
+ <comment xml:lang="da">GTKtalog-katalog</comment>
+ <comment xml:lang="cs">katalog GTKtalog</comment>
+ <comment xml:lang="ca">catàleg de GTKtalog</comment>
+ <comment xml:lang="bg">Каталог — Gtktalog</comment>
+ <comment xml:lang="be@latin">Kataloh GTKtalog</comment>
+ <comment xml:lang="be">каталог GTKtalog</comment>
+ <comment xml:lang="ar">كتالوج GTKtalog</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="gtktalog " type="string" offset="4"/>
+ <magic>
+ <match type="string" value="gtktalog " offset="4"/>
</magic>
</mime-type>
<mime-type type="application/x-gzdvi">
<comment>TeX DVI document (gzip-compressed)</comment>
- <comment xml:lang="ar">مستند TeX DVI (مضغوط-gzip)</comment>
- <comment xml:lang="ast">Documentu Tex DVI (comprimíu en gzip)</comment>
- <comment xml:lang="be@latin">Dakument TeX DVI (gzip-skampresavany)</comment>
- <comment xml:lang="bg">Документ — TeX DVI, компресиран с gzip</comment>
- <comment xml:lang="ca">document DVI de TeX (amb compressió gzip)</comment>
- <comment xml:lang="cs">dokument TeX DVI (komprimovaný pomocí gzip)</comment>
- <comment xml:lang="da">TeX DVI-dokument (gzip-komprimeret)</comment>
- <comment xml:lang="de">TeX-DVI-Dokument (gzip-komprimiert)</comment>
- <comment xml:lang="el">Έγγραφο TeX DVI (συμπιεσμένο με gzip)</comment>
- <comment xml:lang="en_GB">TeX DVI document (gzip-compressed)</comment>
- <comment xml:lang="es">documento DVI de TeX (comprimido con gzip)</comment>
- <comment xml:lang="eu">TeX DVI dokumentua (gzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">TeX DVI -asiakirja (gzip-pakattu)</comment>
- <comment xml:lang="fo">TeX DVI skjal (gzip-stappað)</comment>
- <comment xml:lang="fr">document DVI TeX (compressé gzip)</comment>
- <comment xml:lang="ga">cáipéis DVI TeX (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">documento DVI de TeX (comprimido con gzip)</comment>
- <comment xml:lang="he">מסמך מסוג TeX DVI (מכווץ ע״י gzip)</comment>
- <comment xml:lang="hr">TeX DVI dokument (gzip sažet)</comment>
- <comment xml:lang="hu">TeX DVI dokumentum (gzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Documento TeX DVI (comprimite con gzip)</comment>
- <comment xml:lang="id">Dokumen TeX DVI (terkompresi gzip)</comment>
- <comment xml:lang="it">Documento Tex DVI (compresso con gzip)</comment>
- <comment xml:lang="ja">Tex DVI ドキュメント (gzip 圧縮)</comment>
- <comment xml:lang="kk">TeX DVI құжаты (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">TeX DVI 문서(GZIP 압축)</comment>
- <comment xml:lang="lt">TeX DVI dokumentas (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">TeX DVI dokuments (saspiests ar gzip)</comment>
- <comment xml:lang="nb">TeX DVI-dokument (gzip-komprimert)</comment>
- <comment xml:lang="nl">TeX DVI-document (ingepakt met gzip)</comment>
- <comment xml:lang="nn">TeX DVI-dokument (pakka med gzip)</comment>
- <comment xml:lang="oc">document DVI TeX (compressat gzip)</comment>
- <comment xml:lang="pl">Dokument TeX DVI (kompresja gzip)</comment>
- <comment xml:lang="pt">documento TeX DVI (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Documento DVI TeX (compactado com gzip)</comment>
- <comment xml:lang="ro">Document TeX DVI (comprimat gzip)</comment>
- <comment xml:lang="ru">Документ TeX DVI (сжатый gzip)</comment>
- <comment xml:lang="sk">Dokument TeX DVI (komprimovaný pomocou gzip)</comment>
- <comment xml:lang="sl">Dokument TeX DVI (stisnjen z gzip)</comment>
- <comment xml:lang="sq">Dokument TeX DVI (i kompresuar me gzip)</comment>
- <comment xml:lang="sr">ТеКс ДВИ документ (запакован гзип-ом)</comment>
- <comment xml:lang="sv">TeX DVI-dokument (gzip-komprimerat)</comment>
- <comment xml:lang="tr">TeX DVI belgesi (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ TeX DVI (стиснений gzip)</comment>
- <comment xml:lang="vi">Tài liệu DVI TeX (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">TeX DVI 文件 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">TeX DVI 文档(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">TeX DVI 文件 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Tài liệu DVI TeX (đã nén gzip)</comment>
+ <comment xml:lang="uk">документ TeX DVI (стиснений gzip)</comment>
+ <comment xml:lang="tr">TeX DVI belgesi (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">TeX DVI-dokument (gzip-komprimerat)</comment>
+ <comment xml:lang="sr">ТеКс ДВИ документ (запакован гзип-ом)</comment>
+ <comment xml:lang="sq">dokument TeX DVI (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Dokument TeX DVI (stisnjen z gzip)</comment>
+ <comment xml:lang="si">TeX DVI ලේඛනය (gzip-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Dokument TeX DVI (komprimovaný pomocou gzip)</comment>
+ <comment xml:lang="ru">Документ DVI издательской системы TeX (сжатый gzip)</comment>
+ <comment xml:lang="ro">Document TeX DVI (comprimat gzip)</comment>
+ <comment xml:lang="pt_BR">Documento DVI TeX (compactado com gzip)</comment>
+ <comment xml:lang="pt">documento TeX DVI (compressão gzip)</comment>
+ <comment xml:lang="pl">Dokument TeX DVI (kompresja gzip)</comment>
+ <comment xml:lang="oc">document DVI TeX (compressat gzip)</comment>
+ <comment xml:lang="nn">TeX DVI-dokument (pakka med gzip)</comment>
+ <comment xml:lang="nl">TeX DVI-document (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">TeX DVI-dokument (gzip-komprimert)</comment>
+ <comment xml:lang="lv">TeX DVI dokuments (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">TeX DVI dokumentas (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">TeX DVI 문서(GZIP 압축)</comment>
+ <comment xml:lang="kk">TeX DVI құжаты (gzip-пен сығылған)</comment>
+ <comment xml:lang="ja">Tex DVI ドキュメント (gzip 圧縮)</comment>
+ <comment xml:lang="it">Documento Tex DVI (compresso con gzip)</comment>
+ <comment xml:lang="is">TeX DVI skjal (gzip-þjappað)</comment>
+ <comment xml:lang="id">Dokumen TeX DVI (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Documento TeX DVI (comprimite con gzip)</comment>
+ <comment xml:lang="hu">TeX DVI dokumentum (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">TeX DVI dokument (gzip sažet)</comment>
+ <comment xml:lang="he">מסמך מסוג TeX DVI (מכווץ ע״י gzip)</comment>
+ <comment xml:lang="gl">documento DVI de TeX (comprimido con gzip)</comment>
+ <comment xml:lang="ga">cáipéis DVI TeX (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">document DVI TeX (comprimût cun gzip)</comment>
+ <comment xml:lang="fr">document DVI TeX (compressé gzip)</comment>
+ <comment xml:lang="fo">TeX DVI skjal (gzip-stappað)</comment>
+ <comment xml:lang="fi">TeX DVI -asiakirja (gzip-pakattu)</comment>
+ <comment xml:lang="eu">TeX DVI dokumentua (gzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">documento DVI de TeX (comprimido con GZIP)</comment>
+ <comment xml:lang="en_GB">TeX DVI document (gzip-compressed)</comment>
+ <comment xml:lang="el">Έγγραφο TeX DVI (συμπιεσμένο με gzip)</comment>
+ <comment xml:lang="de">TeX-DVI-Dokument (gzip-komprimiert)</comment>
+ <comment xml:lang="da">TeX DVI-dokument (gzip-komprimeret)</comment>
+ <comment xml:lang="cs">dokument TeX DVI (komprimovaný pomocí gzip)</comment>
+ <comment xml:lang="ca">document DVI de TeX (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Документ — TeX DVI, компресиран с gzip</comment>
+ <comment xml:lang="be@latin">Dakument TeX DVI (gzip-skampresavany)</comment>
+ <comment xml:lang="be">дакумент TeX DVI (сцісканне gzip)</comment>
+ <comment xml:lang="ast">Documentu Tex DVI (comprimíu en gzip)</comment>
+ <comment xml:lang="ar">مستند TeX DVI (مضغوط-gzip)</comment>
+ <comment xml:lang="af">TeX DVI-dokument (gzip-saamgepers)</comment>
<sub-class-of type="application/gzip"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.dvi.gz"/>
</mime-type>
<mime-type type="application/gzip">
<comment>Gzip archive</comment>
- <comment xml:lang="ar">أرشيف Gzip</comment>
- <comment xml:lang="be@latin">Archiŭ gzip</comment>
- <comment xml:lang="bg">Архив — gzip</comment>
- <comment xml:lang="ca">arxiu gzip</comment>
- <comment xml:lang="cs">archiv gzip</comment>
- <comment xml:lang="da">Gzip-arkiv</comment>
- <comment xml:lang="de">Gzip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Gzip</comment>
- <comment xml:lang="en_GB">Gzip archive</comment>
- <comment xml:lang="eo">Gzip-arkivo</comment>
- <comment xml:lang="es">archivador Gzip</comment>
- <comment xml:lang="eu">Gzip artxiboa</comment>
- <comment xml:lang="fi">Gzip-arkisto</comment>
- <comment xml:lang="fo">Gzip skjalasavn</comment>
- <comment xml:lang="fr">archive gzip</comment>
- <comment xml:lang="ga">cartlann Gzip</comment>
- <comment xml:lang="gl">arquivo Gzip</comment>
- <comment xml:lang="he">ארכיון Gzip</comment>
- <comment xml:lang="hr">Gzip arhiva</comment>
- <comment xml:lang="hu">Gzip archívum</comment>
- <comment xml:lang="ia">Archivo Gzip</comment>
- <comment xml:lang="id">Arsip Gzip</comment>
- <comment xml:lang="it">Archivio gzip</comment>
- <comment xml:lang="ja">Gzip アーカイブ</comment>
- <comment xml:lang="kk">Gzip архиві</comment>
- <comment xml:lang="ko">GZIP 압축 파일</comment>
- <comment xml:lang="lt">Gzip archyvas</comment>
- <comment xml:lang="lv">Gzip arhīvs</comment>
- <comment xml:lang="nb">Gzip-arkiv</comment>
- <comment xml:lang="nl">Gzip-archief</comment>
- <comment xml:lang="nn">Gzip-arkiv</comment>
- <comment xml:lang="oc">archiu gzip</comment>
- <comment xml:lang="pl">Archiwum gzip</comment>
- <comment xml:lang="pt">arquivo Gzip</comment>
- <comment xml:lang="pt_BR">Pacote Gzip</comment>
- <comment xml:lang="ro">Arhivă Gzip</comment>
- <comment xml:lang="ru">Архив GZIP</comment>
- <comment xml:lang="sk">Archív gzip</comment>
- <comment xml:lang="sl">Datoteka arhiva Gzip</comment>
- <comment xml:lang="sq">Arkiv gzip</comment>
- <comment xml:lang="sr">Гзип архива</comment>
- <comment xml:lang="sv">Gzip-arkiv</comment>
- <comment xml:lang="tr">Gzip arşivi</comment>
- <comment xml:lang="uk">архів gzip</comment>
- <comment xml:lang="vi">Kho nén gzip</comment>
- <comment xml:lang="zh_CN">Gzip 归档文件</comment>
<comment xml:lang="zh_TW">Gzip 封存檔</comment>
+ <comment xml:lang="zh_CN">Gzip 归档文件</comment>
+ <comment xml:lang="vi">Kho nén gzip</comment>
+ <comment xml:lang="uk">архів gzip</comment>
+ <comment xml:lang="tr">Gzip arşivi</comment>
+ <comment xml:lang="sv">Gzip-arkiv</comment>
+ <comment xml:lang="sr">Гзип архива</comment>
+ <comment xml:lang="sq">arkiv gzip</comment>
+ <comment xml:lang="sl">Datoteka arhiva Gzip</comment>
+ <comment xml:lang="si">Gzip සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Gzip</comment>
+ <comment xml:lang="ru">Архив GZIP</comment>
+ <comment xml:lang="ro">Arhivă Gzip</comment>
+ <comment xml:lang="pt_BR">Pacote Gzip</comment>
+ <comment xml:lang="pt">arquivo Gzip</comment>
+ <comment xml:lang="pl">Archiwum gzip</comment>
+ <comment xml:lang="oc">archiu gzip</comment>
+ <comment xml:lang="nn">Gzip-arkiv</comment>
+ <comment xml:lang="nl">Gzip-archief</comment>
+ <comment xml:lang="nb">Gzip-arkiv</comment>
+ <comment xml:lang="lv">Gzip arhīvs</comment>
+ <comment xml:lang="lt">Gzip archyvas</comment>
+ <comment xml:lang="ko">GZIP 압축 파일</comment>
+ <comment xml:lang="kk">Gzip архиві</comment>
+ <comment xml:lang="ja">Gzip アーカイブ</comment>
+ <comment xml:lang="it">Archivio gzip</comment>
+ <comment xml:lang="is">gzip safnskrá</comment>
+ <comment xml:lang="id">Arsip Gzip</comment>
+ <comment xml:lang="ia">Archivo Gzip</comment>
+ <comment xml:lang="hu">Gzip archívum</comment>
+ <comment xml:lang="hr">Gzip arhiva</comment>
+ <comment xml:lang="he">ארכיון Gzip</comment>
+ <comment xml:lang="gl">arquivo Gzip</comment>
+ <comment xml:lang="ga">cartlann Gzip</comment>
+ <comment xml:lang="fur">archivi Gzip</comment>
+ <comment xml:lang="fr">archive gzip</comment>
+ <comment xml:lang="fo">Gzip skjalasavn</comment>
+ <comment xml:lang="fi">Gzip-arkisto</comment>
+ <comment xml:lang="eu">Gzip artxiboa</comment>
+ <comment xml:lang="es">archivador GZIP</comment>
+ <comment xml:lang="eo">Gzip-arkivo</comment>
+ <comment xml:lang="en_GB">Gzip archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Gzip</comment>
+ <comment xml:lang="de">Gzip-Archiv</comment>
+ <comment xml:lang="da">Gzip-arkiv</comment>
+ <comment xml:lang="cs">archiv gzip</comment>
+ <comment xml:lang="ca">arxiu gzip</comment>
+ <comment xml:lang="bg">Архив — gzip</comment>
+ <comment xml:lang="be@latin">Archiŭ gzip</comment>
+ <comment xml:lang="be">архіў gzip</comment>
+ <comment xml:lang="ar">أرشيف Gzip</comment>
+ <comment xml:lang="af">Gzip-argief</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="\037\213" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\037\213" offset="0"/>
</magic>
<glob pattern="*.gz"/>
<alias type="application/x-gzip"/>
</mime-type>
<mime-type type="application/x-gzpdf">
<comment>PDF document (gzip-compressed)</comment>
- <comment xml:lang="ar">مستند PDF (مضغوط-gzip)</comment>
- <comment xml:lang="ast">Documentu PDF (comprimíu en gzip)</comment>
- <comment xml:lang="be@latin">Dakument PDF (gzip-skampresavany)</comment>
- <comment xml:lang="bg">Документ — PDF, компресиран с gzip</comment>
- <comment xml:lang="ca">document PDF (amb compressió gzip)</comment>
- <comment xml:lang="cs">dokument PDF (komprimovaný pomocí gzip)</comment>
- <comment xml:lang="da">PDF-dokument (gzip-komprimeret)</comment>
- <comment xml:lang="de">PDF-Dokument (gzip-komprimiert)</comment>
- <comment xml:lang="el">Έγγραφο PDF (συμπιεσμένο με gzip)</comment>
- <comment xml:lang="en_GB">PDF document (gzip-compressed)</comment>
- <comment xml:lang="es">documento PDF (comprimido con gzip)</comment>
- <comment xml:lang="eu">PDF dokumentua (gzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">PDF-asiakirja (gzip-pakattu)</comment>
- <comment xml:lang="fo">PDF skjal (gzip-stappað)</comment>
- <comment xml:lang="fr">document PDF (compressé gzip)</comment>
- <comment xml:lang="ga">cáipéis PDF (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">documento PDF (comprimido en gzip)</comment>
- <comment xml:lang="he">מסמך PDF (מכווץ ע״י gzip)</comment>
- <comment xml:lang="hr">PDF dokument (gzip sažet)</comment>
- <comment xml:lang="hu">PDF dokumentum (gzip-tömörítésű)</comment>
- <comment xml:lang="ia">Documento PDF (comprimite con gzip)</comment>
- <comment xml:lang="id">Dokumen PDF (terkompresi gzip)</comment>
- <comment xml:lang="it">Documento PDF (compresso con gzip)</comment>
- <comment xml:lang="ja">PDF ドキュメント (gzip 圧縮)</comment>
- <comment xml:lang="kk">PDF құжаты (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">PDF 문서(GZIP 압축)</comment>
- <comment xml:lang="lt">PDF dokumentas (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">PDF dokuments (saspiests ar gzip)</comment>
- <comment xml:lang="nb">PDF-dokument (gzip-komprimert)</comment>
- <comment xml:lang="nl">PDF-document (ingepakt met gzip)</comment>
- <comment xml:lang="nn">PDF-dokument (pakka med gzip)</comment>
- <comment xml:lang="oc">document PDF (compressat gzip)</comment>
- <comment xml:lang="pl">Dokument PDF (kompresja gzip)</comment>
- <comment xml:lang="pt">documento PDF (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Documento PDF (compactado com gzip)</comment>
- <comment xml:lang="ro">Document PDF (comprimat gzip)</comment>
- <comment xml:lang="ru">Документ PDF (сжатый gzip)</comment>
- <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou gzip)</comment>
- <comment xml:lang="sl">Dokument PDF (stisnjen z gzip)</comment>
- <comment xml:lang="sq">Dokument PDF (i kompresuar me gzip)</comment>
- <comment xml:lang="sr">ПДФ документ (запакован гзип-ом)</comment>
- <comment xml:lang="sv">PDF-dokument (gzip-komprimerat)</comment>
- <comment xml:lang="tr">PDF belgesi (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ PDF (стиснений gzip)</comment>
- <comment xml:lang="vi">Tài liệu PDF (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">PDF 文件 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">PDF 文档(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">PDF 文件 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Tài liệu PDF (đã nén gzip)</comment>
+ <comment xml:lang="uk">документ PDF (стиснений gzip)</comment>
+ <comment xml:lang="tr">PDF belgesi (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">PDF-dokument (gzip-komprimerat)</comment>
+ <comment xml:lang="sr">ПДФ документ (запакован гзип-ом)</comment>
+ <comment xml:lang="sq">dokument PDF (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Dokument PDF (stisnjen z gzip)</comment>
+ <comment xml:lang="si">PDF ලේඛනය (gzip-compressed)</comment>
+ <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou gzip)</comment>
+ <comment xml:lang="ru">Документ PDF (сжатый gzip)</comment>
+ <comment xml:lang="ro">Document PDF (comprimat gzip)</comment>
+ <comment xml:lang="pt_BR">Documento PDF (compactado com gzip)</comment>
+ <comment xml:lang="pt">documento PDF (compressão gzip)</comment>
+ <comment xml:lang="pl">Dokument PDF (kompresja gzip)</comment>
+ <comment xml:lang="oc">document PDF (compressat gzip)</comment>
+ <comment xml:lang="nn">PDF-dokument (pakka med gzip)</comment>
+ <comment xml:lang="nl">PDF-document (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">PDF-dokument (gzip-komprimert)</comment>
+ <comment xml:lang="lv">PDF dokuments (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">PDF dokumentas (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">PDF 문서(GZIP 압축)</comment>
+ <comment xml:lang="kk">PDF құжаты (gzip-пен сығылған)</comment>
+ <comment xml:lang="ja">PDF ドキュメント (gzip 圧縮)</comment>
+ <comment xml:lang="it">Documento PDF (compresso con gzip)</comment>
+ <comment xml:lang="is">PDF skjal (gzip-þjappað)</comment>
+ <comment xml:lang="id">Dokumen PDF (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Documento PDF (comprimite con gzip)</comment>
+ <comment xml:lang="hu">PDF dokumentum (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">PDF dokument (gzip sažet)</comment>
+ <comment xml:lang="he">מסמך PDF (מכווץ ע״י gzip)</comment>
+ <comment xml:lang="gl">documento PDF (comprimido en gzip)</comment>
+ <comment xml:lang="ga">cáipéis PDF (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">document PDF (comprimût cun gzip)</comment>
+ <comment xml:lang="fr">document PDF (compressé gzip)</comment>
+ <comment xml:lang="fo">PDF skjal (gzip-stappað)</comment>
+ <comment xml:lang="fi">PDF-asiakirja (gzip-pakattu)</comment>
+ <comment xml:lang="eu">PDF dokumentua (gzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">documento PDF (comprimido con GZIP)</comment>
+ <comment xml:lang="en_GB">PDF document (gzip-compressed)</comment>
+ <comment xml:lang="el">Έγγραφο PDF (συμπιεσμένο με gzip)</comment>
+ <comment xml:lang="de">PDF-Dokument (gzip-komprimiert)</comment>
+ <comment xml:lang="da">PDF-dokument (gzip-komprimeret)</comment>
+ <comment xml:lang="cs">dokument PDF (komprimovaný pomocí gzip)</comment>
+ <comment xml:lang="ca">document PDF (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Документ — PDF, компресиран с gzip</comment>
+ <comment xml:lang="be@latin">Dakument PDF (gzip-skampresavany)</comment>
+ <comment xml:lang="be">дакумент PDF (сцісканне gzip)</comment>
+ <comment xml:lang="ast">Documentu PDF (comprimíu en gzip)</comment>
+ <comment xml:lang="ar">مستند PDF (مضغوط-gzip)</comment>
+ <comment xml:lang="af">PDF-dokument (gzip-saamgepers)</comment>
<sub-class-of type="application/gzip"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.pdf.gz"/>
</mime-type>
<mime-type type="application/x-gzpostscript">
<comment>PostScript document (gzip-compressed)</comment>
- <comment xml:lang="ar">مستند PostScript (مضغوط-gzip)</comment>
- <comment xml:lang="ast">Documentu PostScript (comprimíu en gzip)</comment>
- <comment xml:lang="be@latin">Dakument PostScript (gzip-skampresavany)</comment>
- <comment xml:lang="bg">Документ — PostScript, компресиран с gzip</comment>
- <comment xml:lang="ca">document PostScript (amb compressió gzip)</comment>
- <comment xml:lang="cs">dokument PostScript (komprimovaný pomocí gzip)</comment>
- <comment xml:lang="da">PostScript-dokument (gzip-komprimeret)</comment>
- <comment xml:lang="de">PostScript-Dokument (gzip-komprimiert)</comment>
- <comment xml:lang="el">Έγγραφο PostScript (συμπιεσμένο με gzip)</comment>
- <comment xml:lang="en_GB">PostScript document (gzip-compressed)</comment>
- <comment xml:lang="eo">PostScript-dokumento (kunpremita per gzip)</comment>
- <comment xml:lang="es">documento PostScript (comprimido con gzip)</comment>
- <comment xml:lang="eu">PostScript dokumentua (gzip-konprimitua)</comment>
- <comment xml:lang="fi">PostScript-asiakirja (gzip-pakattu)</comment>
- <comment xml:lang="fo">PostScript skjal (gzip-stappað)</comment>
- <comment xml:lang="fr">document PostScript (compressé gzip)</comment>
- <comment xml:lang="ga">cáipéis PostScript (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">documento PostScript (comprimido con gzip)</comment>
- <comment xml:lang="he">מסמך PostScript (מכוות ע״י gzip)</comment>
- <comment xml:lang="hr">PostScript dokument (gzip sažet)</comment>
- <comment xml:lang="hu">PostScript-dokumentum (gzip-pel tömörítve)</comment>
- <comment xml:lang="ia">Documento PostScript (comprimite con gzip)</comment>
- <comment xml:lang="id">Dokumen PostScript (terkompresi gzip)</comment>
- <comment xml:lang="it">Documento PostScript (compresso con gzip)</comment>
- <comment xml:lang="ja">PostScript ドキュメント (gzip 圧縮)</comment>
- <comment xml:lang="kk">PostScript құжаты (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">PostScript 문서(GZIP 압축)</comment>
- <comment xml:lang="lt">PostScript dokumentas (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">PostScript dokuments (saspiests ar gzip)</comment>
- <comment xml:lang="ms">Dokumen PostScript (dimampatkan-gzip)</comment>
- <comment xml:lang="nb">PostScript-dokument (gzip-komprimert)</comment>
- <comment xml:lang="nl">PostScript-document (ingepakt met gzip)</comment>
- <comment xml:lang="nn">PostScript-dokument (pakka med gzip)</comment>
- <comment xml:lang="oc">document PostEscript (compressat gzip)</comment>
- <comment xml:lang="pl">Dokument Postscript (kompresja gzip)</comment>
- <comment xml:lang="pt">documento PostScript (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Documento PostScript (compactado com gzip)</comment>
- <comment xml:lang="ro">Document PostScript (comprimat gzip)</comment>
- <comment xml:lang="ru">Документ PostScript (сжатый gzip)</comment>
- <comment xml:lang="sk">Dokument PostScript (komprimovaný pomocou gzip)</comment>
- <comment xml:lang="sl">Dokument PostScript (stisnjen z gzip)</comment>
- <comment xml:lang="sq">Dokument PostScript (i kompresuar me gzip)</comment>
- <comment xml:lang="sr">Постскрипт документ (запакован гзип-ом)</comment>
- <comment xml:lang="sv">Postscript-dokument (gzip-komprimerat)</comment>
- <comment xml:lang="tr">PostScript belgesi (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ PostScript (стиснене gzip)</comment>
- <comment xml:lang="vi">Tài liệu PostScript (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">PostScript 文件 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">PostScript 文档(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">PostScript 文件 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Tài liệu PostScript (đã nén gzip)</comment>
+ <comment xml:lang="uk">документ PostScript (стиснене gzip)</comment>
+ <comment xml:lang="tr">PostScript belgesi (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Postscript-dokument (gzip-komprimerat)</comment>
+ <comment xml:lang="sr">Постскрипт документ (запакован гзип-ом)</comment>
+ <comment xml:lang="sq">dokument PostScript (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Dokument PostScript (stisnjen z gzip)</comment>
+ <comment xml:lang="si">PostScript ලේඛනය (gzip-compressed)</comment>
+ <comment xml:lang="sk">Dokument PostScript (komprimovaný pomocou gzip)</comment>
+ <comment xml:lang="ru">Документ PostScript (сжатый gzip)</comment>
+ <comment xml:lang="ro">Document PostScript (comprimat gzip)</comment>
+ <comment xml:lang="pt_BR">Documento PostScript (compactado com gzip)</comment>
+ <comment xml:lang="pt">documento PostScript (compressão gzip)</comment>
+ <comment xml:lang="pl">Dokument PostScript (kompresja gzip)</comment>
+ <comment xml:lang="oc">document PostEscript (compressat gzip)</comment>
+ <comment xml:lang="nn">PostScript-dokument (pakka med gzip)</comment>
+ <comment xml:lang="nl">PostScript-document (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">PostScript-dokument (gzip-komprimert)</comment>
+ <comment xml:lang="ms">Dokumen PostScript (dimampatkan-gzip)</comment>
+ <comment xml:lang="lv">PostScript dokuments (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">PostScript dokumentas (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">PostScript 문서(GZIP 압축)</comment>
+ <comment xml:lang="kk">PostScript құжаты (gzip-пен сығылған)</comment>
+ <comment xml:lang="ja">PostScript ドキュメント (gzip 圧縮)</comment>
+ <comment xml:lang="it">Documento PostScript (compresso con gzip)</comment>
+ <comment xml:lang="is">PostScript skjal (gzip-þjappað)</comment>
+ <comment xml:lang="id">Dokumen PostScript (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Documento PostScript (comprimite con gzip)</comment>
+ <comment xml:lang="hu">PostScript-dokumentum (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">PostScript dokument (gzip sažet)</comment>
+ <comment xml:lang="he">מסמך PostScript (מכוות ע״י gzip)</comment>
+ <comment xml:lang="gl">documento PostScript (comprimido con gzip)</comment>
+ <comment xml:lang="ga">cáipéis PostScript (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">document PostScript (comprimût cun gzip)</comment>
+ <comment xml:lang="fr">document PostScript (compressé gzip)</comment>
+ <comment xml:lang="fo">PostScript skjal (gzip-stappað)</comment>
+ <comment xml:lang="fi">PostScript-asiakirja (gzip-pakattu)</comment>
+ <comment xml:lang="eu">PostScript dokumentua (gzip-konprimitua)</comment>
+ <comment xml:lang="es">documento PostScript (comprimido con GZIP)</comment>
+ <comment xml:lang="eo">PostScript-dokumento (kunpremita per gzip)</comment>
+ <comment xml:lang="en_GB">PostScript document (gzip-compressed)</comment>
+ <comment xml:lang="el">Έγγραφο PostScript (συμπιεσμένο με gzip)</comment>
+ <comment xml:lang="de">PostScript-Dokument (gzip-komprimiert)</comment>
+ <comment xml:lang="da">PostScript-dokument (gzip-komprimeret)</comment>
+ <comment xml:lang="cs">dokument PostScript (komprimovaný pomocí gzip)</comment>
+ <comment xml:lang="ca">document PostScript (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Документ — PostScript, компресиран с gzip</comment>
+ <comment xml:lang="be@latin">Dakument PostScript (gzip-skampresavany)</comment>
+ <comment xml:lang="be">дакумент PostScript (сцісканне gzip)</comment>
+ <comment xml:lang="ast">Documentu PostScript (comprimíu en gzip)</comment>
+ <comment xml:lang="ar">مستند PostScript (مضغوط-gzip)</comment>
+ <comment xml:lang="af">PostScript-dokument (gzip-saamgepers)</comment>
<sub-class-of type="application/gzip"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.ps.gz"/>
</mime-type>
<mime-type type="application/x-hdf">
<comment>HDF document</comment>
- <comment xml:lang="ar">مستند HDF</comment>
- <comment xml:lang="ast">Documentu HDF</comment>
- <comment xml:lang="az">HDF sənədi</comment>
- <comment xml:lang="be@latin">Dakument HDF</comment>
- <comment xml:lang="bg">Документ — HDF</comment>
- <comment xml:lang="ca">document HDF</comment>
- <comment xml:lang="cs">dokument HDF</comment>
- <comment xml:lang="cy">Dogfen HDF</comment>
- <comment xml:lang="da">HDF-dokument</comment>
- <comment xml:lang="de">HDF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο HDF</comment>
- <comment xml:lang="en_GB">HDF document</comment>
- <comment xml:lang="eo">HDF-dokumento</comment>
- <comment xml:lang="es">documento HDF</comment>
- <comment xml:lang="eu">HDF dokumentua</comment>
- <comment xml:lang="fi">HDF-asiakirja</comment>
- <comment xml:lang="fo">HDF skjal</comment>
- <comment xml:lang="fr">document HDF</comment>
- <comment xml:lang="ga">cáipéis HDF</comment>
- <comment xml:lang="gl">documento HDF</comment>
- <comment xml:lang="he">מסמך HDF</comment>
- <comment xml:lang="hr">HDF dokument</comment>
- <comment xml:lang="hu">HDF-dokumentum</comment>
- <comment xml:lang="ia">Documento HDF</comment>
- <comment xml:lang="id">Dokumen HDF</comment>
- <comment xml:lang="it">Documento HDF</comment>
- <comment xml:lang="ja">HDF ドキュメント</comment>
- <comment xml:lang="kk">HDF құжаты</comment>
- <comment xml:lang="ko">HDF 문서</comment>
- <comment xml:lang="lt">HDF dokumentas</comment>
- <comment xml:lang="lv">HDF dokuments</comment>
- <comment xml:lang="ms">Dokumen HDF</comment>
- <comment xml:lang="nb">HDF-dokument</comment>
- <comment xml:lang="nl">HDF-document</comment>
- <comment xml:lang="nn">HDF-dokument</comment>
- <comment xml:lang="oc">document HDF</comment>
- <comment xml:lang="pl">Dokument HDF</comment>
- <comment xml:lang="pt">documento HDF</comment>
- <comment xml:lang="pt_BR">Documento HDF</comment>
- <comment xml:lang="ro">Document HDF</comment>
- <comment xml:lang="ru">Документ HDF</comment>
- <comment xml:lang="sk">Dokument HDF</comment>
- <comment xml:lang="sl">Dokument HDF</comment>
- <comment xml:lang="sq">Dokument HDF</comment>
- <comment xml:lang="sr">ХДФ документ</comment>
- <comment xml:lang="sv">HDF-dokument</comment>
- <comment xml:lang="tr">HDF belgesi</comment>
- <comment xml:lang="uk">документ HDF</comment>
- <comment xml:lang="vi">Tài liệu HDF</comment>
- <comment xml:lang="zh_CN">HDF 文档</comment>
<comment xml:lang="zh_TW">HDF 文件</comment>
+ <comment xml:lang="zh_CN">HDF 文档</comment>
+ <comment xml:lang="vi">Tài liệu HDF</comment>
+ <comment xml:lang="uk">документ HDF</comment>
+ <comment xml:lang="tr">HDF belgesi</comment>
+ <comment xml:lang="sv">HDF-dokument</comment>
+ <comment xml:lang="sr">ХДФ документ</comment>
+ <comment xml:lang="sq">dokument HDF</comment>
+ <comment xml:lang="sl">Dokument HDF</comment>
+ <comment xml:lang="si">HDF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument HDF</comment>
+ <comment xml:lang="ru">Документ HDF</comment>
+ <comment xml:lang="ro">Document HDF</comment>
+ <comment xml:lang="pt_BR">Documento HDF</comment>
+ <comment xml:lang="pt">documento HDF</comment>
+ <comment xml:lang="pl">Dokument HDF</comment>
+ <comment xml:lang="oc">document HDF</comment>
+ <comment xml:lang="nn">HDF-dokument</comment>
+ <comment xml:lang="nl">HDF-document</comment>
+ <comment xml:lang="nb">HDF-dokument</comment>
+ <comment xml:lang="ms">Dokumen HDF</comment>
+ <comment xml:lang="lv">HDF dokuments</comment>
+ <comment xml:lang="lt">HDF dokumentas</comment>
+ <comment xml:lang="ko">HDF 문서</comment>
+ <comment xml:lang="kk">HDF құжаты</comment>
+ <comment xml:lang="ja">HDF ドキュメント</comment>
+ <comment xml:lang="it">Documento HDF</comment>
+ <comment xml:lang="is">HDF skjal</comment>
+ <comment xml:lang="id">Dokumen HDF</comment>
+ <comment xml:lang="ia">Documento HDF</comment>
+ <comment xml:lang="hu">HDF-dokumentum</comment>
+ <comment xml:lang="hr">HDF dokument</comment>
+ <comment xml:lang="he">מסמך HDF</comment>
+ <comment xml:lang="gl">documento HDF</comment>
+ <comment xml:lang="ga">cáipéis HDF</comment>
+ <comment xml:lang="fur">document HDF</comment>
+ <comment xml:lang="fr">document HDF</comment>
+ <comment xml:lang="fo">HDF skjal</comment>
+ <comment xml:lang="fi">HDF-asiakirja</comment>
+ <comment xml:lang="eu">HDF dokumentua</comment>
+ <comment xml:lang="es">documento HDF</comment>
+ <comment xml:lang="eo">HDF-dokumento</comment>
+ <comment xml:lang="en_GB">HDF document</comment>
+ <comment xml:lang="el">Έγγραφο HDF</comment>
+ <comment xml:lang="de">HDF-Dokument</comment>
+ <comment xml:lang="da">HDF-dokument</comment>
+ <comment xml:lang="cy">Dogfen HDF</comment>
+ <comment xml:lang="cs">dokument HDF</comment>
+ <comment xml:lang="ca">document HDF</comment>
+ <comment xml:lang="bg">Документ — HDF</comment>
+ <comment xml:lang="be@latin">Dakument HDF</comment>
+ <comment xml:lang="be">дакумент HDF</comment>
+ <comment xml:lang="az">HDF sənədi</comment>
+ <comment xml:lang="ast">Documentu HDF</comment>
+ <comment xml:lang="ar">مستند HDF</comment>
+ <comment xml:lang="af">HDF-dokument</comment>
<acronym>HDF</acronym>
<expanded-acronym>Hierarchical Data Format</expanded-acronym>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="\211HDF\r\n\032\n" type="string" offset="0"/>
- <match value="\016\003\023\001" type="string" offset="0"/>
+ <magic>
+ <match type="string" offset="0" value="\211HDF\r\n\032\n"/>
+ <match type="string" offset="0" value="\016\003\023\001"/>
</magic>
<glob pattern="*.hdf"/>
<glob pattern="*.hdf4"/>
@@ -12811,209 +13800,232 @@
</mime-type>
<mime-type type="application/x-iff">
<comment>IFF file</comment>
- <comment xml:lang="ca">fitxer IFF</comment>
- <comment xml:lang="cs">soubor IFF</comment>
- <comment xml:lang="da">IFF-fil</comment>
- <comment xml:lang="de">IFF-Datei</comment>
- <comment xml:lang="el">Αρχείο IFF</comment>
- <comment xml:lang="en_GB">IFF file</comment>
- <comment xml:lang="es">archivo IFF</comment>
- <comment xml:lang="eu">IFF fitxtegia</comment>
- <comment xml:lang="fi">IFF-tiedosto</comment>
- <comment xml:lang="fr">fichier IFF</comment>
- <comment xml:lang="ga">comhad IFF</comment>
- <comment xml:lang="gl">Ficheiro IFF</comment>
- <comment xml:lang="he">קובץ IFF</comment>
- <comment xml:lang="hr">IFF datoteka</comment>
- <comment xml:lang="hu">IFF fájl</comment>
- <comment xml:lang="ia">File IFF</comment>
- <comment xml:lang="id">Berkas IFF</comment>
- <comment xml:lang="it">File IFF</comment>
- <comment xml:lang="ja">IFF ファイル</comment>
- <comment xml:lang="kk">IFF файлы</comment>
- <comment xml:lang="ko">IFF 파일</comment>
- <comment xml:lang="lv">IFF datne</comment>
- <comment xml:lang="oc">fichièr IFF</comment>
- <comment xml:lang="pl">Plik IFF</comment>
- <comment xml:lang="pt">ficheiro IFF</comment>
- <comment xml:lang="pt_BR">Arquivo IFF</comment>
- <comment xml:lang="ru">Файл IFF</comment>
- <comment xml:lang="sk">Súbor IFF</comment>
- <comment xml:lang="sl">Datoteka IFF</comment>
- <comment xml:lang="sr">ИФФ датотека</comment>
- <comment xml:lang="sv">IFF-fil</comment>
- <comment xml:lang="tr">IFF dosyası</comment>
- <comment xml:lang="uk">файл IFF</comment>
- <comment xml:lang="zh_CN">IFF 文件</comment>
<comment xml:lang="zh_TW">IFF 檔案</comment>
+ <comment xml:lang="zh_CN">IFF 文件</comment>
+ <comment xml:lang="uk">файл IFF</comment>
+ <comment xml:lang="tr">IFF dosyası</comment>
+ <comment xml:lang="sv">IFF-fil</comment>
+ <comment xml:lang="sr">ИФФ датотека</comment>
+ <comment xml:lang="sq">kartelë IFF</comment>
+ <comment xml:lang="sl">Datoteka IFF</comment>
+ <comment xml:lang="si">IFF ගොනුව</comment>
+ <comment xml:lang="sk">Súbor IFF</comment>
+ <comment xml:lang="ru">Файл IFF</comment>
+ <comment xml:lang="pt_BR">Arquivo IFF</comment>
+ <comment xml:lang="pt">ficheiro IFF</comment>
+ <comment xml:lang="pl">Plik IFF</comment>
+ <comment xml:lang="oc">fichièr IFF</comment>
+ <comment xml:lang="nl">IFF-bestand</comment>
+ <comment xml:lang="lv">IFF datne</comment>
+ <comment xml:lang="ko">IFF 파일</comment>
+ <comment xml:lang="kk">IFF файлы</comment>
+ <comment xml:lang="ja">IFF ファイル</comment>
+ <comment xml:lang="it">File IFF</comment>
+ <comment xml:lang="is">IFF skrá</comment>
+ <comment xml:lang="id">Berkas IFF</comment>
+ <comment xml:lang="ia">File IFF</comment>
+ <comment xml:lang="hu">IFF fájl</comment>
+ <comment xml:lang="hr">IFF datoteka</comment>
+ <comment xml:lang="he">קובץ IFF</comment>
+ <comment xml:lang="gl">Ficheiro IFF</comment>
+ <comment xml:lang="ga">comhad IFF</comment>
+ <comment xml:lang="fur">file IFF</comment>
+ <comment xml:lang="fr">fichier IFF</comment>
+ <comment xml:lang="fi">IFF-tiedosto</comment>
+ <comment xml:lang="eu">IFF fitxtegia</comment>
+ <comment xml:lang="es">archivo IFF</comment>
+ <comment xml:lang="en_GB">IFF file</comment>
+ <comment xml:lang="el">Αρχείο IFF</comment>
+ <comment xml:lang="de">IFF-Datei</comment>
+ <comment xml:lang="da">IFF-fil</comment>
+ <comment xml:lang="cs">soubor IFF</comment>
+ <comment xml:lang="ca">fitxer IFF</comment>
+ <comment xml:lang="bg">Пакет — IFF</comment>
+ <comment xml:lang="be">файл IFF</comment>
+ <comment xml:lang="ar">ملف IFF</comment>
+ <comment xml:lang="af">IFF-lêer</comment>
<acronym>IFF</acronym>
<expanded-acronym>Interchange File Format</expanded-acronym>
<magic priority="40">
- <match value="FORM" type="string" offset="0"/>
+ <match type="string" value="FORM" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-ipod-firmware">
<comment>iPod firmware</comment>
- <comment xml:lang="ar">برنامج عتاد الـiPod</comment>
- <comment xml:lang="be@latin">Firmware iPod</comment>
- <comment xml:lang="bg">Фърмуер за iPod</comment>
- <comment xml:lang="ca">microprogramari d'iPod</comment>
- <comment xml:lang="cs">firmware iPod</comment>
- <comment xml:lang="da">iPod-styreprogram</comment>
- <comment xml:lang="de">iPod-Firmware</comment>
- <comment xml:lang="el">Υλικολογισμικό iPod</comment>
- <comment xml:lang="en_GB">iPod firmware</comment>
- <comment xml:lang="eo">iPod-mikroprogramaro</comment>
- <comment xml:lang="es">firmware de iPod</comment>
- <comment xml:lang="eu">iPod firmwarea</comment>
- <comment xml:lang="fi">iPod-laiteohjelmisto</comment>
- <comment xml:lang="fo">iPod fastbúnaður</comment>
- <comment xml:lang="fr">firmware iPod</comment>
- <comment xml:lang="ga">dochtearraí iPod</comment>
- <comment xml:lang="gl">firmware de iPod</comment>
- <comment xml:lang="he">קושחת ipod</comment>
- <comment xml:lang="hr">iPod firmver</comment>
- <comment xml:lang="hu">iPod-firmware</comment>
- <comment xml:lang="ia">Firmware iPod</comment>
- <comment xml:lang="id">peranti tegar iPod</comment>
- <comment xml:lang="it">Firmware iPod</comment>
- <comment xml:lang="ja">iPod ファームウェア</comment>
- <comment xml:lang="kk">iPod микробағдарламасы</comment>
- <comment xml:lang="ko">iPod 펌웨어</comment>
- <comment xml:lang="lt">iPod programinė įranga</comment>
- <comment xml:lang="lv">iPod aparātprogrammatūra</comment>
- <comment xml:lang="ms">Firmware iPod</comment>
- <comment xml:lang="nb">iPod-firmware</comment>
- <comment xml:lang="nl">iPod-firmware</comment>
- <comment xml:lang="nn">iPod-firmvare</comment>
- <comment xml:lang="oc">firmware iPod</comment>
- <comment xml:lang="pl">Oprogramowanie wewnętrzne iPod</comment>
- <comment xml:lang="pt">firmware iPod</comment>
- <comment xml:lang="pt_BR">Firmware do iPod</comment>
- <comment xml:lang="ro">Firmware iPod</comment>
- <comment xml:lang="ru">Микропрограмма iPod</comment>
- <comment xml:lang="sk">Firmware iPod</comment>
- <comment xml:lang="sl">Programska strojna oprema iPod</comment>
- <comment xml:lang="sq">Firmware iPod</comment>
- <comment xml:lang="sr">ајПод-ов уграђени</comment>
- <comment xml:lang="sv">fast iPod-program</comment>
- <comment xml:lang="tr">iPod üretici yazılımı</comment>
- <comment xml:lang="uk">мікропрограма iPod</comment>
- <comment xml:lang="vi">phần vững iPod</comment>
- <comment xml:lang="zh_CN">iPod 固件</comment>
<comment xml:lang="zh_TW">iPod 韌體</comment>
- <magic priority="50">
- <match value="S T O P" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">iPod 固件</comment>
+ <comment xml:lang="vi">phần vững iPod</comment>
+ <comment xml:lang="uk">мікропрограма iPod</comment>
+ <comment xml:lang="tr">iPod donanım yazılımı</comment>
+ <comment xml:lang="sv">fast iPod-program</comment>
+ <comment xml:lang="sr">ајПод-ов уграђени</comment>
+ <comment xml:lang="sq">firmware iPod</comment>
+ <comment xml:lang="sl">Programska strojna oprema iPod</comment>
+ <comment xml:lang="si">iPod ස්ථිරාංග</comment>
+ <comment xml:lang="sk">Firmware iPod</comment>
+ <comment xml:lang="ru">Микропрограмма iPod</comment>
+ <comment xml:lang="ro">Firmware iPod</comment>
+ <comment xml:lang="pt_BR">Firmware do iPod</comment>
+ <comment xml:lang="pt">firmware iPod</comment>
+ <comment xml:lang="pl">Oprogramowanie wewnętrzne iPod</comment>
+ <comment xml:lang="oc">firmware iPod</comment>
+ <comment xml:lang="nn">iPod-firmvare</comment>
+ <comment xml:lang="nl">iPod-firmware</comment>
+ <comment xml:lang="nb">iPod-firmware</comment>
+ <comment xml:lang="ms">Firmware iPod</comment>
+ <comment xml:lang="lv">iPod aparātprogrammatūra</comment>
+ <comment xml:lang="lt">iPod programinė įranga</comment>
+ <comment xml:lang="ko">iPod 펌웨어</comment>
+ <comment xml:lang="kk">iPod микробағдарламасы</comment>
+ <comment xml:lang="ja">iPod ファームウェア</comment>
+ <comment xml:lang="it">Firmware iPod</comment>
+ <comment xml:lang="is">iPod grunnhugbúnaður</comment>
+ <comment xml:lang="id">peranti tegar iPod</comment>
+ <comment xml:lang="ia">Firmware iPod</comment>
+ <comment xml:lang="hu">iPod-firmware</comment>
+ <comment xml:lang="hr">iPod firmver</comment>
+ <comment xml:lang="he">קושחת ipod</comment>
+ <comment xml:lang="gl">firmware de iPod</comment>
+ <comment xml:lang="ga">dochtearraí iPod</comment>
+ <comment xml:lang="fur">firmware iPod</comment>
+ <comment xml:lang="fr">firmware iPod</comment>
+ <comment xml:lang="fo">iPod fastbúnaður</comment>
+ <comment xml:lang="fi">iPod-laiteohjelmisto</comment>
+ <comment xml:lang="eu">iPod firmwarea</comment>
+ <comment xml:lang="es">firmware de iPod</comment>
+ <comment xml:lang="eo">iPod-mikroprogramaro</comment>
+ <comment xml:lang="en_GB">iPod firmware</comment>
+ <comment xml:lang="el">Υλικολογισμικό iPod</comment>
+ <comment xml:lang="de">iPod-Firmware</comment>
+ <comment xml:lang="da">iPod-styreprogram</comment>
+ <comment xml:lang="cs">firmware iPod</comment>
+ <comment xml:lang="ca">microprogramari d'iPod</comment>
+ <comment xml:lang="bg">Фърмуер — iPod</comment>
+ <comment xml:lang="be@latin">Firmware iPod</comment>
+ <comment xml:lang="be">убудаванае ПЗ iPod</comment>
+ <comment xml:lang="ar">برنامج عتاد الـiPod</comment>
+ <magic>
+ <match type="string" value="S T O P" offset="0"/>
</magic>
</mime-type>
- <mime-type type="application/x-java-archive">
+ <mime-type type="application/java-archive">
<comment>Java archive</comment>
- <comment xml:lang="ar">أرشيف Java</comment>
- <comment xml:lang="be@latin">Archiŭ Java</comment>
- <comment xml:lang="bg">Архив — Java</comment>
- <comment xml:lang="ca">arxiu de Java</comment>
- <comment xml:lang="cs">archiv Java</comment>
- <comment xml:lang="da">Javaarkiv</comment>
- <comment xml:lang="de">Java-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Java</comment>
- <comment xml:lang="en_GB">Java archive</comment>
- <comment xml:lang="eo">Java-arkivo</comment>
- <comment xml:lang="es">archivador Java</comment>
- <comment xml:lang="eu">Java artxiboa</comment>
- <comment xml:lang="fi">Java-arkisto</comment>
- <comment xml:lang="fo">Java skjalasavn</comment>
- <comment xml:lang="fr">archive Java</comment>
- <comment xml:lang="ga">cartlann Java</comment>
- <comment xml:lang="gl">arquivo Java</comment>
- <comment xml:lang="he">ארכיון Java</comment>
- <comment xml:lang="hr">Java arhiva</comment>
- <comment xml:lang="hu">Java-archívum</comment>
- <comment xml:lang="ia">Archivo Java</comment>
- <comment xml:lang="id">Arsip Java</comment>
- <comment xml:lang="it">Archivio Java</comment>
- <comment xml:lang="ja">Java アーカイブ</comment>
- <comment xml:lang="kk">Java архиві</comment>
- <comment xml:lang="ko">Java 묶음 파일</comment>
- <comment xml:lang="lt">Java archyvas</comment>
- <comment xml:lang="lv">Java arhīvs</comment>
- <comment xml:lang="ms">Arkib Java</comment>
- <comment xml:lang="nb">Java-arkiv</comment>
- <comment xml:lang="nl">Java-archief</comment>
- <comment xml:lang="nn">Java-arkiv</comment>
- <comment xml:lang="oc">archiu Java</comment>
- <comment xml:lang="pl">Archiwum Java</comment>
- <comment xml:lang="pt">arquivo Java</comment>
- <comment xml:lang="pt_BR">Pacote Java</comment>
- <comment xml:lang="ro">Arhivă Java</comment>
- <comment xml:lang="ru">Архив Java</comment>
- <comment xml:lang="sk">Archív Java</comment>
- <comment xml:lang="sl">Datoteka arhiva Java</comment>
- <comment xml:lang="sq">Arkiv Java</comment>
- <comment xml:lang="sr">архива Јаве</comment>
- <comment xml:lang="sv">Java-arkiv</comment>
- <comment xml:lang="tr">Java arşivi</comment>
- <comment xml:lang="uk">архів Java</comment>
- <comment xml:lang="vi">Kho nén Java</comment>
- <comment xml:lang="zh_CN">Java 归档文件</comment>
<comment xml:lang="zh_TW">Java 封存檔</comment>
+ <comment xml:lang="zh_CN">Java 归档文件</comment>
+ <comment xml:lang="vi">Kho nén Java</comment>
+ <comment xml:lang="uk">архів Java</comment>
+ <comment xml:lang="tr">Java arşivi</comment>
+ <comment xml:lang="sv">Java-arkiv</comment>
+ <comment xml:lang="sr">архива Јаве</comment>
+ <comment xml:lang="sq">arkiv Java</comment>
+ <comment xml:lang="sl">Datoteka arhiva Java</comment>
+ <comment xml:lang="si">ජාවා ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Java</comment>
+ <comment xml:lang="ru">Архив Java</comment>
+ <comment xml:lang="ro">Arhivă Java</comment>
+ <comment xml:lang="pt_BR">Pacote Java</comment>
+ <comment xml:lang="pt">arquivo Java</comment>
+ <comment xml:lang="pl">Archiwum Java</comment>
+ <comment xml:lang="oc">archiu Java</comment>
+ <comment xml:lang="nn">Java-arkiv</comment>
+ <comment xml:lang="nl">Java-archief</comment>
+ <comment xml:lang="nb">Java-arkiv</comment>
+ <comment xml:lang="ms">Arkib Java</comment>
+ <comment xml:lang="lv">Java arhīvs</comment>
+ <comment xml:lang="lt">Java archyvas</comment>
+ <comment xml:lang="ko">Java 묶음 파일</comment>
+ <comment xml:lang="kk">Java архиві</comment>
+ <comment xml:lang="ja">Java アーカイブ</comment>
+ <comment xml:lang="it">Archivio Java</comment>
+ <comment xml:lang="is">Java safnskrá</comment>
+ <comment xml:lang="id">Arsip Java</comment>
+ <comment xml:lang="ia">Archivo Java</comment>
+ <comment xml:lang="hu">Java-archívum</comment>
+ <comment xml:lang="hr">Java arhiva</comment>
+ <comment xml:lang="he">ארכיון Java</comment>
+ <comment xml:lang="gl">arquivo Java</comment>
+ <comment xml:lang="ga">cartlann Java</comment>
+ <comment xml:lang="fur">archivi Java</comment>
+ <comment xml:lang="fr">archive Java</comment>
+ <comment xml:lang="fo">Java skjalasavn</comment>
+ <comment xml:lang="fi">Java-arkisto</comment>
+ <comment xml:lang="eu">Java artxiboa</comment>
+ <comment xml:lang="es">archivador de Java</comment>
+ <comment xml:lang="eo">Java-arkivo</comment>
+ <comment xml:lang="en_GB">Java archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Java</comment>
+ <comment xml:lang="de">Java-Archiv</comment>
+ <comment xml:lang="da">Java-arkiv</comment>
+ <comment xml:lang="cs">archiv Java</comment>
+ <comment xml:lang="ca">arxiu de Java</comment>
+ <comment xml:lang="bg">Архив — Java</comment>
+ <comment xml:lang="be@latin">Archiŭ Java</comment>
+ <comment xml:lang="be">архіў Java</comment>
+ <comment xml:lang="ar">أرشيف Java</comment>
+ <comment xml:lang="af">Java-argief</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="package-x-generic"/>
<alias type="application/x-jar"/>
- <alias type="application/java-archive"/>
+ <alias type="application/x-java-archive"/>
<glob pattern="*.jar"/>
</mime-type>
<mime-type type="application/x-java">
<comment>Java class</comment>
- <comment xml:lang="ar">صنف java</comment>
- <comment xml:lang="be@latin">Klasa Java</comment>
- <comment xml:lang="bg">Клас на Java</comment>
- <comment xml:lang="ca">classe de Java</comment>
- <comment xml:lang="cs">třída Java</comment>
- <comment xml:lang="da">Javaklasse</comment>
- <comment xml:lang="de">Java-Klasse</comment>
- <comment xml:lang="el">Κλάση Java</comment>
- <comment xml:lang="en_GB">Java class</comment>
- <comment xml:lang="eo">Java-klaso</comment>
- <comment xml:lang="es">clase de Java</comment>
- <comment xml:lang="eu">Java-ko klasea</comment>
- <comment xml:lang="fi">Java-luokka</comment>
- <comment xml:lang="fo">Java flokkur</comment>
- <comment xml:lang="fr">classe Java</comment>
- <comment xml:lang="ga">aicme Java</comment>
- <comment xml:lang="gl">clase de Java</comment>
- <comment xml:lang="he">מחלקת Java</comment>
- <comment xml:lang="hr">Java klasa</comment>
- <comment xml:lang="hu">Java-osztály</comment>
- <comment xml:lang="ia">Classe Java</comment>
- <comment xml:lang="id">Kelas Java</comment>
- <comment xml:lang="it">Classe Java</comment>
- <comment xml:lang="ja">Java クラス</comment>
- <comment xml:lang="kk">Java класы</comment>
- <comment xml:lang="ko">Java 클래스</comment>
- <comment xml:lang="lt">Java klasė</comment>
- <comment xml:lang="lv">Java klase</comment>
- <comment xml:lang="ms">Kelas Java</comment>
- <comment xml:lang="nb">Java-klasse</comment>
- <comment xml:lang="nl">Java-klasse</comment>
- <comment xml:lang="nn">Java-klasse</comment>
- <comment xml:lang="oc">classa Java</comment>
- <comment xml:lang="pl">Klasa Java</comment>
- <comment xml:lang="pt">classe Java</comment>
- <comment xml:lang="pt_BR">Classe Java</comment>
- <comment xml:lang="ro">Clasă Java</comment>
- <comment xml:lang="ru">Класс Java</comment>
- <comment xml:lang="sk">Trieda Java</comment>
- <comment xml:lang="sl">Datoteka razreda Java</comment>
- <comment xml:lang="sq">Klasë Java</comment>
- <comment xml:lang="sr">разред Јаве</comment>
- <comment xml:lang="sv">Java-klass</comment>
- <comment xml:lang="tr">Java sınıfı</comment>
- <comment xml:lang="uk">клас Java</comment>
- <comment xml:lang="vi">Hạng Java</comment>
- <comment xml:lang="zh_CN">Java 类</comment>
<comment xml:lang="zh_TW">Java class</comment>
- <magic priority="50">
- <match value="0xcafebabe" type="big32" offset="0"/>
+ <comment xml:lang="zh_CN">Java 类</comment>
+ <comment xml:lang="vi">Hạng Java</comment>
+ <comment xml:lang="uk">клас Java</comment>
+ <comment xml:lang="tr">Java sınıfı</comment>
+ <comment xml:lang="sv">Java-klass</comment>
+ <comment xml:lang="sr">разред Јаве</comment>
+ <comment xml:lang="sq">klasë Java</comment>
+ <comment xml:lang="sl">Datoteka razreda Java</comment>
+ <comment xml:lang="si">ජාවා පන්තිය</comment>
+ <comment xml:lang="sk">Trieda Java</comment>
+ <comment xml:lang="ru">Класс Java</comment>
+ <comment xml:lang="ro">Clasă Java</comment>
+ <comment xml:lang="pt_BR">Classe Java</comment>
+ <comment xml:lang="pt">classe Java</comment>
+ <comment xml:lang="pl">Klasa Java</comment>
+ <comment xml:lang="oc">classa Java</comment>
+ <comment xml:lang="nn">Java-klasse</comment>
+ <comment xml:lang="nl">Java-klasse</comment>
+ <comment xml:lang="nb">Java-klasse</comment>
+ <comment xml:lang="ms">Kelas Java</comment>
+ <comment xml:lang="lv">Java klase</comment>
+ <comment xml:lang="lt">Java klasė</comment>
+ <comment xml:lang="ko">Java 클래스</comment>
+ <comment xml:lang="kk">Java класы</comment>
+ <comment xml:lang="ja">Java クラス</comment>
+ <comment xml:lang="it">Classe Java</comment>
+ <comment xml:lang="is">Java klassi</comment>
+ <comment xml:lang="id">Kelas Java</comment>
+ <comment xml:lang="ia">Classe Java</comment>
+ <comment xml:lang="hu">Java-osztály</comment>
+ <comment xml:lang="hr">Java klasa</comment>
+ <comment xml:lang="he">מחלקת Java</comment>
+ <comment xml:lang="gl">clase de Java</comment>
+ <comment xml:lang="ga">aicme Java</comment>
+ <comment xml:lang="fur">classe Java</comment>
+ <comment xml:lang="fr">classe Java</comment>
+ <comment xml:lang="fo">Java flokkur</comment>
+ <comment xml:lang="fi">Java-luokka</comment>
+ <comment xml:lang="eu">Java-ko klasea</comment>
+ <comment xml:lang="es">clase de Java</comment>
+ <comment xml:lang="eo">Java-klaso</comment>
+ <comment xml:lang="en_GB">Java class</comment>
+ <comment xml:lang="el">Κλάση Java</comment>
+ <comment xml:lang="de">Java-Klasse</comment>
+ <comment xml:lang="da">Java-klasse</comment>
+ <comment xml:lang="cs">třída Java</comment>
+ <comment xml:lang="ca">classe de Java</comment>
+ <comment xml:lang="bg">Клас — Java</comment>
+ <comment xml:lang="be@latin">Klasa Java</comment>
+ <comment xml:lang="be">клас Java</comment>
+ <comment xml:lang="ar">صنف java</comment>
+ <comment xml:lang="af">Java-klas</comment>
+ <magic>
+ <match type="big32" value="0xcafebabe" offset="0"/>
</magic>
<alias type="application/java"/>
<alias type="application/java-byte-code"/>
@@ -13022,109 +14034,190 @@
<alias type="application/x-java-vm"/>
<glob pattern="*.class"/>
</mime-type>
+ <mime-type type="text/x-groovy">
+ <comment>Groovy source code</comment>
+ <comment xml:lang="zh_TW">Groovy 原始碼</comment>
+ <comment xml:lang="zh_CN">Groovy 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Groovy</comment>
+ <comment xml:lang="tr">Groovy kaynak kodu</comment>
+ <comment xml:lang="sv">Groovy-källkod</comment>
+ <comment xml:lang="sq">kod burim Groovy</comment>
+ <comment xml:lang="sl">Izvorna koda Groovy</comment>
+ <comment xml:lang="si">Groovy මූල කේතය</comment>
+ <comment xml:lang="ru">Исходный код Groovy</comment>
+ <comment xml:lang="pt_BR">Código-fonte Groovy</comment>
+ <comment xml:lang="pl">Kod źródłowy Groovy</comment>
+ <comment xml:lang="oc">còdi font Groovy</comment>
+ <comment xml:lang="nl">Groovy-broncode</comment>
+ <comment xml:lang="ko">그루비 소스 코드</comment>
+ <comment xml:lang="kk">Groovy бастапқы коды</comment>
+ <comment xml:lang="ja">Groovy ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Groovy</comment>
+ <comment xml:lang="is">Groovy frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Groovy</comment>
+ <comment xml:lang="hu">Groovy forráskód</comment>
+ <comment xml:lang="hr">Groovy izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור ב־Groovy</comment>
+ <comment xml:lang="gl">Código fonte en Groovy</comment>
+ <comment xml:lang="fr">code source Groovy</comment>
+ <comment xml:lang="fi">Groovy-lähdekoodi</comment>
+ <comment xml:lang="eu">Groovy iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Groovy</comment>
+ <comment xml:lang="en_GB">Groovy source code</comment>
+ <comment xml:lang="de">Groovy-Quelltext</comment>
+ <comment xml:lang="da">Groovy-kildekode</comment>
+ <comment xml:lang="ca">codi font en Groovy</comment>
+ <comment xml:lang="bg">Изходен код — Groovy</comment>
+ <comment xml:lang="be">зыходны код Groovy</comment>
+ <comment xml:lang="ar">شفرة مصدر Groovy</comment>
+ <sub-class-of type="text/x-csrc"/>
+ <generic-icon name="text-x-script"/>
+ <glob pattern="*.groovy"/>
+ <glob pattern="*.gvy"/>
+ <glob pattern="*.gy"/>
+ <glob pattern="*.gsh"/>
+ </mime-type>
+ <mime-type type="text/x-gradle">
+ <comment>Gradle script</comment>
+ <comment xml:lang="zh_TW">Gradle 指令稿</comment>
+ <comment xml:lang="zh_CN">Gradle 脚本</comment>
+ <comment xml:lang="uk">скрипт Gradle</comment>
+ <comment xml:lang="tr">Gradle betiği</comment>
+ <comment xml:lang="sv">Gradle-skript</comment>
+ <comment xml:lang="sl">Skript Gradle</comment>
+ <comment xml:lang="si">Gradle පිටපත</comment>
+ <comment xml:lang="ru">Сценарий Gradle</comment>
+ <comment xml:lang="pt_BR">Script Gradle</comment>
+ <comment xml:lang="pl">Skrypt Gradle</comment>
+ <comment xml:lang="nl">Gradle-script</comment>
+ <comment xml:lang="ko">Gradle 스크립트</comment>
+ <comment xml:lang="kk">Gradle сценарийі</comment>
+ <comment xml:lang="ja">Gradle スクリプト</comment>
+ <comment xml:lang="it">Script Gradle</comment>
+ <comment xml:lang="hr">Gradle skripta</comment>
+ <comment xml:lang="gl">Script de Gradle</comment>
+ <comment xml:lang="fi">Gradle-skripti</comment>
+ <comment xml:lang="eu">Gradle script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes de Gradle</comment>
+ <comment xml:lang="en_GB">Gradle script</comment>
+ <comment xml:lang="de">Gradle-Skript</comment>
+ <comment xml:lang="be">скрыпт Gradle</comment>
+ <comment xml:lang="ar">سكربت Gradle</comment>
+ <sub-class-of type="text/x-groovy"/>
+ <glob pattern="*.gradle"/>
+ </mime-type>
<mime-type type="application/x-java-jnlp-file">
<comment>JNLP file</comment>
- <comment xml:lang="ar">ملف JNLP</comment>
- <comment xml:lang="be@latin">Fajł JNLP</comment>
- <comment xml:lang="bg">Файл — JNLP</comment>
- <comment xml:lang="ca">fitxer JNLP</comment>
- <comment xml:lang="cs">soubor JNLP</comment>
- <comment xml:lang="da">JNPL-fil</comment>
- <comment xml:lang="de">JNLP-Datei</comment>
- <comment xml:lang="el">Αρχείο JNLP</comment>
- <comment xml:lang="en_GB">JNLP file</comment>
- <comment xml:lang="eo">JNLP-dosiero</comment>
- <comment xml:lang="es">archivo JNPL</comment>
- <comment xml:lang="eu">JNLP fitxategia</comment>
- <comment xml:lang="fi">JNLP-tiedosto</comment>
- <comment xml:lang="fo">JNLP fíla</comment>
- <comment xml:lang="fr">fichier JNLP</comment>
- <comment xml:lang="ga">comhad JNLP</comment>
- <comment xml:lang="gl">ficheiro JNLP</comment>
- <comment xml:lang="he">קובץ JNLP</comment>
- <comment xml:lang="hr">JNLP datoteka</comment>
- <comment xml:lang="hu">JNLP fájl</comment>
- <comment xml:lang="ia">File JNLP</comment>
- <comment xml:lang="id">Berkas JNLP</comment>
- <comment xml:lang="it">File JNPL</comment>
- <comment xml:lang="ja">JNLP ファイル</comment>
- <comment xml:lang="kk">JNLP файлы</comment>
- <comment xml:lang="ko">JNLP 파일</comment>
- <comment xml:lang="lt">JNLP failas</comment>
- <comment xml:lang="lv">JNLP datne</comment>
- <comment xml:lang="nb">JNLP-fil</comment>
- <comment xml:lang="nl">JNLP-bestand</comment>
- <comment xml:lang="nn">JNLP-fil</comment>
- <comment xml:lang="oc">fichièr JNLP</comment>
- <comment xml:lang="pl">Plik JNLP</comment>
- <comment xml:lang="pt">ficheiro JNLP</comment>
- <comment xml:lang="pt_BR">Arquivo JNLP</comment>
- <comment xml:lang="ro">Fișier JNLP</comment>
- <comment xml:lang="ru">Файл JNLP</comment>
- <comment xml:lang="sk">Súbor JNLP</comment>
- <comment xml:lang="sl">Datoteka JNLP</comment>
- <comment xml:lang="sq">File JNLP</comment>
- <comment xml:lang="sr">ЈНЛП датотека</comment>
- <comment xml:lang="sv">JNLP-fil</comment>
- <comment xml:lang="tr">JNLP dosyası</comment>
- <comment xml:lang="uk">файл JNLP</comment>
- <comment xml:lang="vi">Tập tin JNLP</comment>
- <comment xml:lang="zh_CN">JNLP 文件</comment>
<comment xml:lang="zh_TW">JNLP 檔案</comment>
+ <comment xml:lang="zh_CN">JNLP 文件</comment>
+ <comment xml:lang="vi">Tập tin JNLP</comment>
+ <comment xml:lang="uk">файл JNLP</comment>
+ <comment xml:lang="tr">JNLP dosyası</comment>
+ <comment xml:lang="sv">JNLP-fil</comment>
+ <comment xml:lang="sr">ЈНЛП датотека</comment>
+ <comment xml:lang="sq">kartelë JNLP</comment>
+ <comment xml:lang="sl">Datoteka JNLP</comment>
+ <comment xml:lang="si">JNLP ගොනුව</comment>
+ <comment xml:lang="sk">Súbor JNLP</comment>
+ <comment xml:lang="ru">Файл JNLP</comment>
+ <comment xml:lang="ro">Fișier JNLP</comment>
+ <comment xml:lang="pt_BR">Arquivo JNLP</comment>
+ <comment xml:lang="pt">ficheiro JNLP</comment>
+ <comment xml:lang="pl">Plik JNLP</comment>
+ <comment xml:lang="oc">fichièr JNLP</comment>
+ <comment xml:lang="nn">JNLP-fil</comment>
+ <comment xml:lang="nl">JNLP-bestand</comment>
+ <comment xml:lang="nb">JNLP-fil</comment>
+ <comment xml:lang="lv">JNLP datne</comment>
+ <comment xml:lang="lt">JNLP failas</comment>
+ <comment xml:lang="ko">JNLP 파일</comment>
+ <comment xml:lang="kk">JNLP файлы</comment>
+ <comment xml:lang="ja">JNLP ファイル</comment>
+ <comment xml:lang="it">File JNPL</comment>
+ <comment xml:lang="is">JNLP skrá</comment>
+ <comment xml:lang="id">Berkas JNLP</comment>
+ <comment xml:lang="ia">File JNLP</comment>
+ <comment xml:lang="hu">JNLP fájl</comment>
+ <comment xml:lang="hr">JNLP datoteka</comment>
+ <comment xml:lang="he">קובץ JNLP</comment>
+ <comment xml:lang="gl">ficheiro JNLP</comment>
+ <comment xml:lang="ga">comhad JNLP</comment>
+ <comment xml:lang="fur">file JNLP</comment>
+ <comment xml:lang="fr">fichier JNLP</comment>
+ <comment xml:lang="fo">JNLP fíla</comment>
+ <comment xml:lang="fi">JNLP-tiedosto</comment>
+ <comment xml:lang="eu">JNLP fitxategia</comment>
+ <comment xml:lang="es">archivo JNPL</comment>
+ <comment xml:lang="eo">JNLP-dosiero</comment>
+ <comment xml:lang="en_GB">JNLP file</comment>
+ <comment xml:lang="el">Αρχείο JNLP</comment>
+ <comment xml:lang="de">JNLP-Datei</comment>
+ <comment xml:lang="da">JNPL-fil</comment>
+ <comment xml:lang="cs">soubor JNLP</comment>
+ <comment xml:lang="ca">fitxer JNLP</comment>
+ <comment xml:lang="bg">Стартер — JNLP</comment>
+ <comment xml:lang="be@latin">Fajł JNLP</comment>
+ <comment xml:lang="be">файл JNLP</comment>
+ <comment xml:lang="ar">ملف JNLP</comment>
+ <comment xml:lang="af">JNLP-lêer</comment>
<acronym>JNLP</acronym>
<expanded-acronym>Java Network Launching Protocol</expanded-acronym>
<sub-class-of type="application/xml"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.jnlp"/>
- <magic priority="50">
- <match value="&lt;jnlp" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;jnlp" offset="0:256"/>
</magic>
</mime-type>
<mime-type type="application/x-java-keystore">
<comment>Java keystore</comment>
- <comment xml:lang="ar">مخزن مفاتيح جافا</comment>
- <comment xml:lang="bg">Ключодържател — Java</comment>
- <comment xml:lang="ca">magatzem de claus de Java</comment>
- <comment xml:lang="cs">úložiště klíčů Java</comment>
- <comment xml:lang="da">Javanøglelager</comment>
- <comment xml:lang="de">Java-Schlüsselbund</comment>
- <comment xml:lang="el">Χώρος αποθήκευσης κλειδιών Java</comment>
- <comment xml:lang="en_GB">Java keystore</comment>
- <comment xml:lang="es">almacén de claves de Java</comment>
- <comment xml:lang="eu">Java-ren gako-biltegia</comment>
- <comment xml:lang="fi">Java-avainvarasto</comment>
- <comment xml:lang="fo">Java lyklagoymsla</comment>
- <comment xml:lang="fr">stockage de clés Java</comment>
- <comment xml:lang="ga">eochairstór Java</comment>
- <comment xml:lang="gl">almacén de chaves de Java</comment>
- <comment xml:lang="he">אחסון מפתחות של Java</comment>
- <comment xml:lang="hr">Java baza ključeva</comment>
- <comment xml:lang="hu">Java kulcstároló</comment>
- <comment xml:lang="ia">Magazin de claves Java</comment>
- <comment xml:lang="id">Penyimpanan kunci Java</comment>
- <comment xml:lang="it">Keystore Java</comment>
- <comment xml:lang="ja">Java キーストア</comment>
- <comment xml:lang="kk">Java сақталымы</comment>
- <comment xml:lang="ko">Java 키 저장소</comment>
- <comment xml:lang="lt">Java raktų saugykla</comment>
- <comment xml:lang="lv">Java keystore</comment>
- <comment xml:lang="nl">Java keystore</comment>
- <comment xml:lang="oc">emmagazinatge de claus Java</comment>
- <comment xml:lang="pl">Baza kluczy Java</comment>
- <comment xml:lang="pt">armazém de chaves Java</comment>
- <comment xml:lang="pt_BR">Keystore de Java</comment>
- <comment xml:lang="ro">Stocare chei Java</comment>
- <comment xml:lang="ru">Хранилище ключей Java</comment>
- <comment xml:lang="sk">Úložisko kľúčov Java</comment>
- <comment xml:lang="sl">Datoteka tipkovne razporeditve Java</comment>
- <comment xml:lang="sr">смештај кључа Јаве</comment>
- <comment xml:lang="sv">Java-nyckellager</comment>
- <comment xml:lang="tr">Java deposu</comment>
- <comment xml:lang="uk">сховище ключів Java</comment>
- <comment xml:lang="zh_CN">Java 密钥库</comment>
<comment xml:lang="zh_TW">Java 金鑰儲存</comment>
- <magic priority="50">
- <match value="0xfeedfeed" type="big32" offset="0"/>
+ <comment xml:lang="zh_CN">Java 密钥库</comment>
+ <comment xml:lang="uk">сховище ключів Java</comment>
+ <comment xml:lang="tr">Java anahtar deposu</comment>
+ <comment xml:lang="sv">Java-nyckellager</comment>
+ <comment xml:lang="sr">смештај кључа Јаве</comment>
+ <comment xml:lang="sl">Datoteka tipkovne razporeditve Java</comment>
+ <comment xml:lang="si">ජාවා යතුරු ගබඩාව</comment>
+ <comment xml:lang="sk">Úložisko kľúčov Java</comment>
+ <comment xml:lang="ru">Хранилище ключей Java</comment>
+ <comment xml:lang="ro">Stocare chei Java</comment>
+ <comment xml:lang="pt_BR">Keystore de Java</comment>
+ <comment xml:lang="pt">armazém de chaves Java</comment>
+ <comment xml:lang="pl">Baza kluczy Java</comment>
+ <comment xml:lang="oc">emmagazinatge de claus Java</comment>
+ <comment xml:lang="nl">Java-keystore</comment>
+ <comment xml:lang="lv">Java keystore</comment>
+ <comment xml:lang="lt">Java raktų saugykla</comment>
+ <comment xml:lang="ko">Java 키 저장소</comment>
+ <comment xml:lang="kk">Java сақталымы</comment>
+ <comment xml:lang="ja">Java キーストア</comment>
+ <comment xml:lang="it">Keystore Java</comment>
+ <comment xml:lang="is">Java lyklageymsla</comment>
+ <comment xml:lang="id">Penyimpanan kunci Java</comment>
+ <comment xml:lang="ia">Magazin de claves Java</comment>
+ <comment xml:lang="hu">Java kulcstároló</comment>
+ <comment xml:lang="hr">Java baza ključeva</comment>
+ <comment xml:lang="he">אחסון מפתחות של Java</comment>
+ <comment xml:lang="gl">almacén de chaves de Java</comment>
+ <comment xml:lang="ga">eochairstór Java</comment>
+ <comment xml:lang="fur">archivi di clâfs Java</comment>
+ <comment xml:lang="fr">stockage de clés Java</comment>
+ <comment xml:lang="fo">Java lyklagoymsla</comment>
+ <comment xml:lang="fi">Java-avainvarasto</comment>
+ <comment xml:lang="eu">Java-ren gako-biltegia</comment>
+ <comment xml:lang="es">almacén de claves de Java</comment>
+ <comment xml:lang="en_GB">Java keystore</comment>
+ <comment xml:lang="el">Χώρος αποθήκευσης κλειδιών Java</comment>
+ <comment xml:lang="de">Java-Schlüsselbund</comment>
+ <comment xml:lang="da">Java-nøglelager</comment>
+ <comment xml:lang="cs">úložiště klíčů Java</comment>
+ <comment xml:lang="ca">magatzem de claus de Java</comment>
+ <comment xml:lang="bg">Ключодържател — Java</comment>
+ <comment xml:lang="be">сховішча ключоў Java</comment>
+ <comment xml:lang="ar">مخزن مفاتيح جافا</comment>
+ <magic>
+ <match type="big32" value="0xfeedfeed" offset="0"/>
</magic>
<glob pattern="*.jks"/>
<glob pattern="*.ks"/>
@@ -13132,254 +14225,320 @@
</mime-type>
<mime-type type="application/x-java-jce-keystore">
<comment>Java JCE keystore</comment>
- <comment xml:lang="ar">مخزن مفاتيح Java JCE</comment>
- <comment xml:lang="bg">Ключодържател — Java JCE</comment>
- <comment xml:lang="ca">magatzem de claus JCE de Java</comment>
- <comment xml:lang="cs">úložiště klíčů Java JCE</comment>
- <comment xml:lang="da">Java JCE-nøglelager</comment>
- <comment xml:lang="de">Java JCE-Schlüsselbund</comment>
- <comment xml:lang="el">Αποθήκη κλειδιών Java JCE</comment>
- <comment xml:lang="en_GB">Java JCE keystore</comment>
- <comment xml:lang="es">almacén de claves JCE de Java</comment>
- <comment xml:lang="eu">Java JCE-ren gako-biltegia</comment>
- <comment xml:lang="fi">Java JCE -avainvarasto</comment>
- <comment xml:lang="fo">Java JCE lyklagoymsla</comment>
- <comment xml:lang="fr">stockage de clés Java JCE</comment>
- <comment xml:lang="ga">eochairstór Java JCE</comment>
- <comment xml:lang="gl">almacén de chves JCE de Java</comment>
- <comment xml:lang="he">אחסון מפתחות של Java JCE</comment>
- <comment xml:lang="hr">Java JCE baza ključeva</comment>
- <comment xml:lang="hu">Java JCE kulcstároló</comment>
- <comment xml:lang="ia">Magazin de claves Java JCE</comment>
- <comment xml:lang="id">Penyimpanan kunci Java JCE</comment>
- <comment xml:lang="it">Keystore Java JCE</comment>
- <comment xml:lang="ja">Java JCE キーストア</comment>
- <comment xml:lang="kk">Java JCE сақталымы</comment>
- <comment xml:lang="ko">Java JCE 키 저장소</comment>
- <comment xml:lang="lt">Java JCE raktų saugykla</comment>
- <comment xml:lang="lv">Java JCE keystore</comment>
- <comment xml:lang="nl">Java JCE keystore</comment>
- <comment xml:lang="oc">emmagazinatge de claus Java JCE</comment>
- <comment xml:lang="pl">Baza kluczy Java JCE</comment>
- <comment xml:lang="pt">armazém de chaves JavaJCE</comment>
- <comment xml:lang="pt_BR">Keystore JCE do Java</comment>
- <comment xml:lang="ro">Stocare chei Java JCE</comment>
- <comment xml:lang="ru">Хранилище ключей Java JCE</comment>
- <comment xml:lang="sk">Úložisko kľúčov Java JCE</comment>
- <comment xml:lang="sl">Datoteka tipkovne razporeditve Java JCE</comment>
- <comment xml:lang="sr">смештај ЈЦЕ кључа Јаве</comment>
- <comment xml:lang="sv">Java JCE-nyckellager</comment>
- <comment xml:lang="tr">Java JCE deposu</comment>
- <comment xml:lang="uk">сховище ключів JCE Java</comment>
- <comment xml:lang="zh_CN">Java JCE 密钥库</comment>
<comment xml:lang="zh_TW">Java JCE 金鑰儲存</comment>
+ <comment xml:lang="zh_CN">Java JCE 密钥库</comment>
+ <comment xml:lang="uk">сховище ключів JCE Java</comment>
+ <comment xml:lang="tr">Java JCE anahtar deposu</comment>
+ <comment xml:lang="sv">Java JCE-nyckellager</comment>
+ <comment xml:lang="sr">смештај ЈЦЕ кључа Јаве</comment>
+ <comment xml:lang="sl">Datoteka tipkovne razporeditve Java JCE</comment>
+ <comment xml:lang="si">ජාවා JCE යතුරු ගබඩාව</comment>
+ <comment xml:lang="sk">Úložisko kľúčov Java JCE</comment>
+ <comment xml:lang="ru">Хранилище ключей Java JCE</comment>
+ <comment xml:lang="ro">Stocare chei Java JCE</comment>
+ <comment xml:lang="pt_BR">Keystore JCE do Java</comment>
+ <comment xml:lang="pt">armazém de chaves JavaJCE</comment>
+ <comment xml:lang="pl">Baza kluczy Java JCE</comment>
+ <comment xml:lang="oc">emmagazinatge de claus Java JCE</comment>
+ <comment xml:lang="nl">Java JCE-keystore</comment>
+ <comment xml:lang="lv">Java JCE keystore</comment>
+ <comment xml:lang="lt">Java JCE raktų saugykla</comment>
+ <comment xml:lang="ko">Java JCE 키 저장소</comment>
+ <comment xml:lang="kk">Java JCE сақталымы</comment>
+ <comment xml:lang="ja">Java JCE キーストア</comment>
+ <comment xml:lang="it">Keystore Java JCE</comment>
+ <comment xml:lang="is">Java JCE lyklageymsla</comment>
+ <comment xml:lang="id">Penyimpanan kunci Java JCE</comment>
+ <comment xml:lang="ia">Magazin de claves Java JCE</comment>
+ <comment xml:lang="hu">Java JCE kulcstároló</comment>
+ <comment xml:lang="hr">Java JCE baza ključeva</comment>
+ <comment xml:lang="he">אחסון מפתחות של Java JCE</comment>
+ <comment xml:lang="gl">almacén de chves JCE de Java</comment>
+ <comment xml:lang="ga">eochairstór Java JCE</comment>
+ <comment xml:lang="fur">archivi di clâfs JCE Java</comment>
+ <comment xml:lang="fr">stockage de clés Java JCE</comment>
+ <comment xml:lang="fo">Java JCE lyklagoymsla</comment>
+ <comment xml:lang="fi">Java JCE -avainvarasto</comment>
+ <comment xml:lang="eu">Java JCE-ren gako-biltegia</comment>
+ <comment xml:lang="es">almacén de claves JCE de Java</comment>
+ <comment xml:lang="en_GB">Java JCE keystore</comment>
+ <comment xml:lang="el">Αποθήκη κλειδιών Java JCE</comment>
+ <comment xml:lang="de">Java JCE-Schlüsselbund</comment>
+ <comment xml:lang="da">Java JCE-nøglelager</comment>
+ <comment xml:lang="cs">úložiště klíčů Java JCE</comment>
+ <comment xml:lang="ca">magatzem de claus JCE de Java</comment>
+ <comment xml:lang="bg">Ключодържател — Java JCE</comment>
+ <comment xml:lang="be">сховішча ключоў Java JCE</comment>
+ <comment xml:lang="ar">مخزن مفاتيح Java JCE</comment>
<acronym>JCE</acronym>
<expanded-acronym>Java Cryptography Extension</expanded-acronym>
- <magic priority="50">
- <match value="0xcececece" type="host32" offset="0"/>
+ <magic>
+ <match type="host32" value="0xcececece" offset="0"/>
</magic>
<glob pattern="*.jceks"/>
</mime-type>
<mime-type type="application/x-java-pack200">
<comment>Pack200 Java archive</comment>
- <comment xml:lang="ar">أرشيف Pack200 Java</comment>
- <comment xml:lang="be@latin">Archiŭ Pack200 Java</comment>
- <comment xml:lang="bg">Архив — Java Pack200</comment>
- <comment xml:lang="ca">arxiu de Java en Pack200</comment>
- <comment xml:lang="cs">archiv Java Pack200</comment>
- <comment xml:lang="da">Pack200 Java-arkiv</comment>
- <comment xml:lang="de">Pack200-Java-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Java Pack200</comment>
- <comment xml:lang="en_GB">Pack200 Java archive</comment>
- <comment xml:lang="es">archivador Pack200 Java</comment>
- <comment xml:lang="eu">Pack2000 Java artxiboa</comment>
- <comment xml:lang="fi">Pack200-Java-arkisto</comment>
- <comment xml:lang="fo">Pack200 Java skjalasavn</comment>
- <comment xml:lang="fr">archive Java Pack200</comment>
- <comment xml:lang="ga">cartlann Java Pack200</comment>
- <comment xml:lang="gl">arquivo Pack200 Java</comment>
- <comment xml:lang="he">ארכיון מסוג Pack200 Java</comment>
- <comment xml:lang="hr">Pack200 Java arhiva</comment>
- <comment xml:lang="hu">Pack200 Java-archívum</comment>
- <comment xml:lang="ia">Archivo Java Pack200</comment>
- <comment xml:lang="id">Arsip Pack200 Java</comment>
- <comment xml:lang="it">Archivio Pack200 Java</comment>
- <comment xml:lang="ja">Pack200 Java アーカイブ</comment>
- <comment xml:lang="kk">Pack200 Java архиві</comment>
- <comment xml:lang="ko">Pack200 Java 압축 파일</comment>
- <comment xml:lang="lt">Pack200 Java archyvas</comment>
- <comment xml:lang="lv">Pack200 Java arhīvs</comment>
- <comment xml:lang="nb">Pack200 Java-arkiv</comment>
- <comment xml:lang="nl">Pack200 Java-archief</comment>
- <comment xml:lang="nn">Pack200 Java-arkiv</comment>
- <comment xml:lang="oc">archiu Java Pack200</comment>
- <comment xml:lang="pl">Archiwum Java Pack200</comment>
- <comment xml:lang="pt">arquivo Java Pack200</comment>
- <comment xml:lang="pt_BR">Pacote Java Pack200</comment>
- <comment xml:lang="ro">Arhivă Java Pack2000</comment>
- <comment xml:lang="ru">Архив Java Pack200</comment>
- <comment xml:lang="sk">Archív Java Pack200</comment>
- <comment xml:lang="sl">Datoteka arhiva Pack200 Java</comment>
- <comment xml:lang="sq">Arkiv Java Pack200</comment>
- <comment xml:lang="sr">архива Јаве Пак200</comment>
- <comment xml:lang="sv">Pack200 Java-arkiv</comment>
- <comment xml:lang="tr">Pack200 Java arşivi</comment>
- <comment xml:lang="uk">архів Java Pack200</comment>
- <comment xml:lang="vi">Kho nén Java Pack200</comment>
- <comment xml:lang="zh_CN">Pack200 Java 归档文件</comment>
<comment xml:lang="zh_TW">Pack200 Java 封存檔</comment>
+ <comment xml:lang="zh_CN">Pack200 Java 归档文件</comment>
+ <comment xml:lang="vi">Kho nén Java Pack200</comment>
+ <comment xml:lang="uk">архів Java Pack200</comment>
+ <comment xml:lang="tr">Pack200 Java arşivi</comment>
+ <comment xml:lang="sv">Pack200 Java-arkiv</comment>
+ <comment xml:lang="sr">архива Јаве Пак200</comment>
+ <comment xml:lang="sq">arkiv Java Pack200</comment>
+ <comment xml:lang="sl">Datoteka arhiva Pack200 Java</comment>
+ <comment xml:lang="si">Pack200 Java සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Java Pack200</comment>
+ <comment xml:lang="ru">Архив Java Pack200</comment>
+ <comment xml:lang="ro">Arhivă Java Pack2000</comment>
+ <comment xml:lang="pt_BR">Pacote Java Pack200</comment>
+ <comment xml:lang="pt">arquivo Java Pack200</comment>
+ <comment xml:lang="pl">Archiwum Java Pack200</comment>
+ <comment xml:lang="oc">archiu Java Pack200</comment>
+ <comment xml:lang="nn">Pack200 Java-arkiv</comment>
+ <comment xml:lang="nl">Pack200 Java-archief</comment>
+ <comment xml:lang="nb">Pack200 Java-arkiv</comment>
+ <comment xml:lang="lv">Pack200 Java arhīvs</comment>
+ <comment xml:lang="lt">Pack200 Java archyvas</comment>
+ <comment xml:lang="ko">Pack200 Java 압축 파일</comment>
+ <comment xml:lang="kk">Pack200 Java архиві</comment>
+ <comment xml:lang="ja">Pack200 Java アーカイブ</comment>
+ <comment xml:lang="it">Archivio Pack200 Java</comment>
+ <comment xml:lang="is">Pack200 Java safnskrá</comment>
+ <comment xml:lang="id">Arsip Pack200 Java</comment>
+ <comment xml:lang="ia">Archivo Java Pack200</comment>
+ <comment xml:lang="hu">Pack200 Java-archívum</comment>
+ <comment xml:lang="hr">Pack200 Java arhiva</comment>
+ <comment xml:lang="he">ארכיון מסוג Pack200 Java</comment>
+ <comment xml:lang="gl">arquivo Pack200 Java</comment>
+ <comment xml:lang="ga">cartlann Java Pack200</comment>
+ <comment xml:lang="fur">archivi Java Pack200</comment>
+ <comment xml:lang="fr">archive Java Pack200</comment>
+ <comment xml:lang="fo">Pack200 Java skjalasavn</comment>
+ <comment xml:lang="fi">Pack200-Java-arkisto</comment>
+ <comment xml:lang="eu">Pack2000 Java artxiboa</comment>
+ <comment xml:lang="es">archivador Pack200 Java</comment>
+ <comment xml:lang="en_GB">Pack200 Java archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Java Pack200</comment>
+ <comment xml:lang="de">Pack200-Java-Archiv</comment>
+ <comment xml:lang="da">Pack200 Java-arkiv</comment>
+ <comment xml:lang="cs">archiv Java Pack200</comment>
+ <comment xml:lang="ca">arxiu de Java en Pack200</comment>
+ <comment xml:lang="bg">Архив — Java Pack200</comment>
+ <comment xml:lang="be@latin">Archiŭ Pack200 Java</comment>
+ <comment xml:lang="be">архіў Pack200 Java</comment>
+ <comment xml:lang="ar">أرشيف Pack200 Java</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="0xcafed00d" type="big32" offset="0"/>
+ <match type="big32" value="0xcafed00d" offset="0"/>
</magic>
<glob pattern="*.pack"/>
</mime-type>
- <mime-type type="application/javascript">
+ <mime-type type="text/javascript">
<comment>JavaScript program</comment>
- <comment xml:lang="ar">برنامج جافاسكربت</comment>
- <comment xml:lang="be@latin">Prahrama JavaScript</comment>
- <comment xml:lang="bg">Програма на JavaScript</comment>
- <comment xml:lang="ca">programa JavaScript</comment>
- <comment xml:lang="cs">program v JavaScriptu</comment>
- <comment xml:lang="da">JavaScript-program</comment>
- <comment xml:lang="de">JavaScript-Programm</comment>
- <comment xml:lang="el">Πρόγραμμα JavaScript</comment>
- <comment xml:lang="en_GB">JavaScript program</comment>
- <comment xml:lang="eo">JavaScript-programo</comment>
- <comment xml:lang="es">programa en JavaScript</comment>
- <comment xml:lang="eu">JavaScript programa</comment>
- <comment xml:lang="fi">JavaScript-ohjelma</comment>
- <comment xml:lang="fo">JavaScript forrit</comment>
- <comment xml:lang="fr">programme JavaScript</comment>
- <comment xml:lang="ga">ríomhchlár JavaScript</comment>
- <comment xml:lang="gl">programa JavaScript</comment>
- <comment xml:lang="he">תכנית JavaScript</comment>
- <comment xml:lang="hr">JavaScript program</comment>
- <comment xml:lang="hu">JavaScript-program</comment>
- <comment xml:lang="ia">Programma JavaScript</comment>
- <comment xml:lang="id">Program JavaScript</comment>
- <comment xml:lang="it">Programma JavaScript</comment>
- <comment xml:lang="ja">JavaScript プログラム</comment>
- <comment xml:lang="kk">JavaScript бағдарламасы</comment>
- <comment xml:lang="ko">JavaScript 프로그램</comment>
- <comment xml:lang="lt">JavaScript programa</comment>
- <comment xml:lang="lv">JavaScript programma</comment>
- <comment xml:lang="ms">Program JavaScript</comment>
- <comment xml:lang="nb">JavaScript-program</comment>
- <comment xml:lang="nl">JavaScript-programma</comment>
- <comment xml:lang="nn">JavaScript-program</comment>
- <comment xml:lang="oc">programa JavaEscript</comment>
- <comment xml:lang="pl">Pogram JavaScript</comment>
- <comment xml:lang="pt">programa JavaScript</comment>
- <comment xml:lang="pt_BR">Programa JavaScript</comment>
- <comment xml:lang="ro">Program JavaScript</comment>
- <comment xml:lang="ru">Программа JavaScript</comment>
- <comment xml:lang="sk">Program jazyka JavaScript</comment>
- <comment xml:lang="sl">Programska datoteka JavaScript</comment>
- <comment xml:lang="sq">Program JavaScript</comment>
- <comment xml:lang="sr">програм Јава скрипте</comment>
- <comment xml:lang="sv">JavaScript-program</comment>
- <comment xml:lang="tr">JavaScript programı</comment>
- <comment xml:lang="uk">програма мовою JavaScript</comment>
- <comment xml:lang="vi">Chương trình JavaScript</comment>
- <comment xml:lang="zh_CN">JavaScript 程序</comment>
<comment xml:lang="zh_TW">JavaScript 程式</comment>
+ <comment xml:lang="zh_CN">JavaScript 程序</comment>
+ <comment xml:lang="vi">Chương trình JavaScript</comment>
+ <comment xml:lang="uk">програма мовою JavaScript</comment>
+ <comment xml:lang="tr">JavaScript programı</comment>
+ <comment xml:lang="sv">JavaScript-program</comment>
+ <comment xml:lang="sr">програм Јава скрипте</comment>
+ <comment xml:lang="sq">program JavaScript</comment>
+ <comment xml:lang="sl">Programska datoteka JavaScript</comment>
+ <comment xml:lang="si">JavaScript වැඩසටහන</comment>
+ <comment xml:lang="sk">Program jazyka JavaScript</comment>
+ <comment xml:lang="ru">Программа JavaScript</comment>
+ <comment xml:lang="ro">Program JavaScript</comment>
+ <comment xml:lang="pt_BR">Programa JavaScript</comment>
+ <comment xml:lang="pt">programa JavaScript</comment>
+ <comment xml:lang="pl">Pogram JavaScript</comment>
+ <comment xml:lang="oc">programa JavaEscript</comment>
+ <comment xml:lang="nn">JavaScript-program</comment>
+ <comment xml:lang="nl">JavaScript-programma</comment>
+ <comment xml:lang="nb">JavaScript-program</comment>
+ <comment xml:lang="ms">Program JavaScript</comment>
+ <comment xml:lang="lv">JavaScript programma</comment>
+ <comment xml:lang="lt">JavaScript programa</comment>
+ <comment xml:lang="ko">JavaScript 프로그램</comment>
+ <comment xml:lang="kk">JavaScript бағдарламасы</comment>
+ <comment xml:lang="ja">JavaScript プログラム</comment>
+ <comment xml:lang="it">Programma JavaScript</comment>
+ <comment xml:lang="is">JavaScript forrit</comment>
+ <comment xml:lang="id">Program JavaScript</comment>
+ <comment xml:lang="ia">Programma JavaScript</comment>
+ <comment xml:lang="hu">JavaScript-program</comment>
+ <comment xml:lang="hr">JavaScript program</comment>
+ <comment xml:lang="he">תכנית JavaScript</comment>
+ <comment xml:lang="gl">programa JavaScript</comment>
+ <comment xml:lang="ga">ríomhchlár JavaScript</comment>
+ <comment xml:lang="fur">program JavaScript</comment>
+ <comment xml:lang="fr">programme JavaScript</comment>
+ <comment xml:lang="fo">JavaScript forrit</comment>
+ <comment xml:lang="fi">JavaScript-ohjelma</comment>
+ <comment xml:lang="eu">JavaScript programa</comment>
+ <comment xml:lang="es">programa en JavaScript</comment>
+ <comment xml:lang="eo">JavaScript-programo</comment>
+ <comment xml:lang="en_GB">JavaScript program</comment>
+ <comment xml:lang="el">Πρόγραμμα JavaScript</comment>
+ <comment xml:lang="de">JavaScript-Programm</comment>
+ <comment xml:lang="da">JavaScript-program</comment>
+ <comment xml:lang="cs">program v JavaScriptu</comment>
+ <comment xml:lang="ca">programa JavaScript</comment>
+ <comment xml:lang="bg">Програма на JavaScript</comment>
+ <comment xml:lang="be@latin">Prahrama JavaScript</comment>
+ <comment xml:lang="be">праграма JavaScript</comment>
+ <comment xml:lang="ar">برنامج جافاسكربت</comment>
+ <comment xml:lang="af">JavaScript-program</comment>
<alias type="application/x-javascript"/>
- <alias type="text/javascript"/>
- <sub-class-of type="application/ecmascript"/>
+ <alias type="application/javascript"/>
+ <alias type="text/jscript"/>
+ <sub-class-of type="application/x-executable"/>
+ <sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
- <magic priority="50">
- <match value="#!/bin/gjs" type="string" offset="0"/>
- <match value="#! /bin/gjs" type="string" offset="0"/>
- <match value='eval \"exec /bin/gjs' type="string" offset="0"/>
- <match value="#!/usr/bin/gjs" type="string" offset="0"/>
- <match value="#! /usr/bin/gjs" type="string" offset="0"/>
- <match value='eval \"exec /usr/bin/gjs' type="string" offset="0"/>
- <match value="#!/usr/local/bin/gjs" type="string" offset="0"/>
- <match value="#! /usr/local/bin/gjs" type="string" offset="0"/>
- <match value='eval \"exec /usr/local/bin/gjs' type="string" offset="0"/>
- <match value='/bin/env gjs' type="string" offset="2:16"/>
+ <magic>
+ <match type="string" value="#!/bin/gjs" offset="0"/>
+ <match type="string" value="#! /bin/gjs" offset="0"/>
+ <match type="string" value="eval \&quot;exec /bin/gjs" offset="0"/>
+ <match type="string" value="#!/usr/bin/gjs" offset="0"/>
+ <match type="string" value="#! /usr/bin/gjs" offset="0"/>
+ <match type="string" value="eval \&quot;exec /usr/bin/gjs" offset="0"/>
+ <match type="string" value="#!/usr/local/bin/gjs" offset="0"/>
+ <match type="string" value="#! /usr/local/bin/gjs" offset="0"/>
+ <match type="string" value="eval \&quot;exec /usr/local/bin/gjs" offset="0"/>
+ <match type="string" value="/bin/env gjs" offset="2:16"/>
</magic>
<glob pattern="*.js"/>
<glob pattern="*.jsm"/>
<glob pattern="*.mjs"/>
</mime-type>
+ <mime-type type="text/jscript.encode">
+ <comment>Encoded JScript program</comment>
+ <comment xml:lang="uk">кодована програма JScript</comment>
+ <comment xml:lang="sv">Kodat JScript-program</comment>
+ <comment xml:lang="ru">Зашифрованная программа на JScript</comment>
+ <comment xml:lang="pl">Zakodowany program JScript</comment>
+ <comment xml:lang="es">programa en JScript codificado</comment>
+ <comment xml:lang="de">Verschlüsseltes JScript-Programm</comment>
+ <sub-class-of type="application/x-executable"/>
+ <generic-icon name="text-x-script"/>
+ <magic>
+ <match type="string" value="#@~^" offset="0"/>
+ </magic>
+ <glob pattern="*.jse"/>
+ </mime-type>
<mime-type type="application/json">
<comment>JSON document</comment>
- <comment xml:lang="ast">Documentu JSON</comment>
- <comment xml:lang="ca">document JSON</comment>
- <comment xml:lang="cs">dokument JSON</comment>
- <comment xml:lang="da">JSON-dokument</comment>
- <comment xml:lang="de">JSON-Dokument</comment>
- <comment xml:lang="el">Έγγραφο JSON</comment>
- <comment xml:lang="en_GB">JSON document</comment>
- <comment xml:lang="es">documento JSON</comment>
- <comment xml:lang="eu">JSON dokumentua</comment>
- <comment xml:lang="fi">JSON-asiakirja</comment>
- <comment xml:lang="fr">document JSON</comment>
- <comment xml:lang="ga">cáipéis JSON</comment>
- <comment xml:lang="gl">Documento JSON</comment>
- <comment xml:lang="he">מסמך JSON</comment>
- <comment xml:lang="hr">JSON dokument</comment>
- <comment xml:lang="hu">JSON dokumentum</comment>
- <comment xml:lang="ia">Documento JSON</comment>
- <comment xml:lang="id">Dokumen JSON</comment>
- <comment xml:lang="it">Documento JSON</comment>
- <comment xml:lang="kk">JSON құжаты</comment>
- <comment xml:lang="ko">JSON 문서</comment>
- <comment xml:lang="oc">document JSON</comment>
- <comment xml:lang="pl">Dokument JSON</comment>
- <comment xml:lang="pt">documento JSON</comment>
- <comment xml:lang="pt_BR">Documento JSON</comment>
- <comment xml:lang="ru">Документ JSON</comment>
- <comment xml:lang="sk">Dokument JSON</comment>
- <comment xml:lang="sl">Dokument JSON</comment>
- <comment xml:lang="sr">ЈСОН документ</comment>
- <comment xml:lang="sv">JSON-dokument</comment>
- <comment xml:lang="tr">JSON belgesi</comment>
- <comment xml:lang="uk">документ JSON</comment>
- <comment xml:lang="zh_CN">JSON 文档</comment>
<comment xml:lang="zh_TW">JSON 文件</comment>
+ <comment xml:lang="zh_CN">JSON 文档</comment>
+ <comment xml:lang="uk">документ JSON</comment>
+ <comment xml:lang="tr">JSON belgesi</comment>
+ <comment xml:lang="sv">JSON-dokument</comment>
+ <comment xml:lang="sr">ЈСОН документ</comment>
+ <comment xml:lang="sq">dokument JSON</comment>
+ <comment xml:lang="sl">Dokument JSON</comment>
+ <comment xml:lang="si">JSON ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument JSON</comment>
+ <comment xml:lang="ru">Документ JSON</comment>
+ <comment xml:lang="pt_BR">Documento JSON</comment>
+ <comment xml:lang="pt">documento JSON</comment>
+ <comment xml:lang="pl">Dokument JSON</comment>
+ <comment xml:lang="oc">document JSON</comment>
+ <comment xml:lang="nl">JSON-document</comment>
+ <comment xml:lang="ko">JSON 문서</comment>
+ <comment xml:lang="kk">JSON құжаты</comment>
+ <comment xml:lang="ja">JSON ドキュメント</comment>
+ <comment xml:lang="it">Documento JSON</comment>
+ <comment xml:lang="is">JSON skjal</comment>
+ <comment xml:lang="id">Dokumen JSON</comment>
+ <comment xml:lang="ia">Documento JSON</comment>
+ <comment xml:lang="hu">JSON dokumentum</comment>
+ <comment xml:lang="hr">JSON dokument</comment>
+ <comment xml:lang="he">מסמך JSON</comment>
+ <comment xml:lang="gl">Documento JSON</comment>
+ <comment xml:lang="ga">cáipéis JSON</comment>
+ <comment xml:lang="fur">document JSON</comment>
+ <comment xml:lang="fr">document JSON</comment>
+ <comment xml:lang="fi">JSON-asiakirja</comment>
+ <comment xml:lang="eu">JSON dokumentua</comment>
+ <comment xml:lang="es">documento JSON</comment>
+ <comment xml:lang="en_GB">JSON document</comment>
+ <comment xml:lang="el">Έγγραφο JSON</comment>
+ <comment xml:lang="de">JSON-Dokument</comment>
+ <comment xml:lang="da">JSON-dokument</comment>
+ <comment xml:lang="cs">dokument JSON</comment>
+ <comment xml:lang="ca">document JSON</comment>
+ <comment xml:lang="bg">Документ — JSON</comment>
+ <comment xml:lang="be">дакумент JSON</comment>
+ <comment xml:lang="ast">Documentu JSON</comment>
+ <comment xml:lang="ar">مستند JSON</comment>
+ <comment xml:lang="af">JSON-dokument</comment>
<acronym>JSON</acronym>
<expanded-acronym>JavaScript Object Notation</expanded-acronym>
- <sub-class-of type="application/javascript"/>
+ <sub-class-of type="application/json5"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.json"/>
</mime-type>
+ <mime-type type="application/json5">
+ <comment>JSON5 document</comment>
+ <comment xml:lang="uk">документ JSON5</comment>
+ <comment xml:lang="sv">JSON5-dokument</comment>
+ <comment xml:lang="ru">Документ JSON5</comment>
+ <comment xml:lang="pl">Dokument JSON5</comment>
+ <comment xml:lang="es">documento JSON5</comment>
+ <comment xml:lang="de">JSON5-Dokument</comment>
+ <acronym>JSON5</acronym>
+ <expanded-acronym>JavaScript Object Notation 5</expanded-acronym>
+ <sub-class-of type="text/javascript"/>
+ <generic-icon name="text-x-script"/>
+ <glob pattern="*.json5"/>
+ </mime-type>
<mime-type type="application/jrd+json">
<comment>JRD document</comment>
- <comment xml:lang="ast">Documentu JRD</comment>
- <comment xml:lang="ca">document JRD</comment>
- <comment xml:lang="cs">dokument JRD</comment>
- <comment xml:lang="da">JRD-dokument</comment>
- <comment xml:lang="de">JRD-Dokument</comment>
- <comment xml:lang="el">Έγγραφο JRD</comment>
- <comment xml:lang="en_GB">JRD document</comment>
- <comment xml:lang="es">documento JRD</comment>
- <comment xml:lang="eu">JRD dokumentua</comment>
- <comment xml:lang="fi">JRD-asiakirja</comment>
- <comment xml:lang="fr">document JRD</comment>
- <comment xml:lang="ga">cáipéis JRD</comment>
- <comment xml:lang="he">מסמך JRD</comment>
- <comment xml:lang="hr">JRD dokument</comment>
- <comment xml:lang="hu">JRD dokumentum</comment>
- <comment xml:lang="ia">Documento JRD</comment>
- <comment xml:lang="id">Dokumen JRD</comment>
- <comment xml:lang="it">Documento JRD</comment>
- <comment xml:lang="kk">JRD құжаты</comment>
- <comment xml:lang="ko">JRD 문서</comment>
- <comment xml:lang="oc">document JRD</comment>
- <comment xml:lang="pl">Dokument JRD</comment>
- <comment xml:lang="pt">doxumento JRD</comment>
- <comment xml:lang="pt_BR">Documento JRD</comment>
- <comment xml:lang="ru">Документ JRD</comment>
- <comment xml:lang="sk">Dokument JRD</comment>
- <comment xml:lang="sr">ЈРД документ</comment>
- <comment xml:lang="sv">JRD-dokument</comment>
- <comment xml:lang="tr">JRD belgesi</comment>
- <comment xml:lang="uk">документ JRD</comment>
- <comment xml:lang="zh_CN">JRD 文档</comment>
<comment xml:lang="zh_TW">JRD 文件</comment>
+ <comment xml:lang="zh_CN">JRD 文档</comment>
+ <comment xml:lang="uk">документ JRD</comment>
+ <comment xml:lang="tr">JRD belgesi</comment>
+ <comment xml:lang="sv">JRD-dokument</comment>
+ <comment xml:lang="sr">ЈРД документ</comment>
+ <comment xml:lang="sq">dokument JRD</comment>
+ <comment xml:lang="sl">Dokument JRD</comment>
+ <comment xml:lang="si">JRD ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument JRD</comment>
+ <comment xml:lang="ru">Документ JRD</comment>
+ <comment xml:lang="pt_BR">Documento JRD</comment>
+ <comment xml:lang="pt">doxumento JRD</comment>
+ <comment xml:lang="pl">Dokument JRD</comment>
+ <comment xml:lang="oc">document JRD</comment>
+ <comment xml:lang="nl">JRD-document</comment>
+ <comment xml:lang="ko">JRD 문서</comment>
+ <comment xml:lang="kk">JRD құжаты</comment>
+ <comment xml:lang="ja">JRD ドキュメント</comment>
+ <comment xml:lang="it">Documento JRD</comment>
+ <comment xml:lang="is">JRD skjal</comment>
+ <comment xml:lang="id">Dokumen JRD</comment>
+ <comment xml:lang="ia">Documento JRD</comment>
+ <comment xml:lang="hu">JRD dokumentum</comment>
+ <comment xml:lang="hr">JRD dokument</comment>
+ <comment xml:lang="he">מסמך JRD</comment>
+ <comment xml:lang="gl">Documento JRD</comment>
+ <comment xml:lang="ga">cáipéis JRD</comment>
+ <comment xml:lang="fur">document JRD</comment>
+ <comment xml:lang="fr">document JRD</comment>
+ <comment xml:lang="fi">JRD-asiakirja</comment>
+ <comment xml:lang="eu">JRD dokumentua</comment>
+ <comment xml:lang="es">documento JRD</comment>
+ <comment xml:lang="en_GB">JRD document</comment>
+ <comment xml:lang="el">Έγγραφο JRD</comment>
+ <comment xml:lang="de">JRD-Dokument</comment>
+ <comment xml:lang="da">JRD-dokument</comment>
+ <comment xml:lang="cs">dokument JRD</comment>
+ <comment xml:lang="ca">document JRD</comment>
+ <comment xml:lang="bg">Документ — JRD</comment>
+ <comment xml:lang="be">дакумент JRD</comment>
+ <comment xml:lang="ast">Documentu JRD</comment>
+ <comment xml:lang="ar">مستند JRD</comment>
+ <comment xml:lang="af">JRD-dokument</comment>
<acronym>JRD</acronym>
<expanded-acronym>JSON Resource Descriptor</expanded-acronym>
<sub-class-of type="application/json"/>
@@ -13388,35 +14547,47 @@
</mime-type>
<mime-type type="application/json-patch+json">
<comment>JSON patch</comment>
- <comment xml:lang="ca">pedaç de JSON</comment>
- <comment xml:lang="cs">cesta JSON</comment>
- <comment xml:lang="da">JSON-rettelse</comment>
- <comment xml:lang="de">JSON-Patch</comment>
- <comment xml:lang="en_GB">JSON patch</comment>
- <comment xml:lang="es">parche en JSON</comment>
- <comment xml:lang="eu">JSON adabakia</comment>
- <comment xml:lang="fr">correctif JSON</comment>
- <comment xml:lang="ga">paiste JSON</comment>
- <comment xml:lang="he">טלאי JSON</comment>
- <comment xml:lang="hr">JSON zakrpa</comment>
- <comment xml:lang="hu">JSON javítócsomag</comment>
- <comment xml:lang="ia">Patch JSON</comment>
- <comment xml:lang="id">Patch JSON</comment>
- <comment xml:lang="it">Patch JSON</comment>
- <comment xml:lang="kk">JSON өзгерісі</comment>
- <comment xml:lang="ko">JSON 패치</comment>
- <comment xml:lang="oc">correctiu JSON</comment>
- <comment xml:lang="pl">Łata JSON</comment>
- <comment xml:lang="pt">patch JSON</comment>
- <comment xml:lang="pt_BR">Patch JSON</comment>
- <comment xml:lang="ru">Патч JSON</comment>
- <comment xml:lang="sk">Záplata JSON</comment>
- <comment xml:lang="sr">ЈСОН закрпа</comment>
- <comment xml:lang="sv">JSON patch</comment>
- <comment xml:lang="tr">JSON yaması</comment>
- <comment xml:lang="uk">латка JSON</comment>
- <comment xml:lang="zh_CN">JSON 补丁</comment>
<comment xml:lang="zh_TW">JSON 修補檔</comment>
+ <comment xml:lang="zh_CN">JSON 补丁</comment>
+ <comment xml:lang="uk">латка JSON</comment>
+ <comment xml:lang="tr">JSON yaması</comment>
+ <comment xml:lang="sv">JSON patch</comment>
+ <comment xml:lang="sr">ЈСОН закрпа</comment>
+ <comment xml:lang="sq">arnë JSON</comment>
+ <comment xml:lang="sl">Popravek JSON</comment>
+ <comment xml:lang="si">JSON පැච්</comment>
+ <comment xml:lang="sk">Záplata JSON</comment>
+ <comment xml:lang="ru">Патч JSON</comment>
+ <comment xml:lang="pt_BR">Patch JSON</comment>
+ <comment xml:lang="pt">patch JSON</comment>
+ <comment xml:lang="pl">Łata JSON</comment>
+ <comment xml:lang="oc">correctiu JSON</comment>
+ <comment xml:lang="nl">JSON-patch</comment>
+ <comment xml:lang="ko">JSON 패치</comment>
+ <comment xml:lang="kk">JSON өзгерісі</comment>
+ <comment xml:lang="ja">JSON パッチ</comment>
+ <comment xml:lang="it">Patch JSON</comment>
+ <comment xml:lang="is">JSON kóðabót</comment>
+ <comment xml:lang="id">Patch JSON</comment>
+ <comment xml:lang="ia">Patch JSON</comment>
+ <comment xml:lang="hu">JSON javítócsomag</comment>
+ <comment xml:lang="hr">JSON zakrpa</comment>
+ <comment xml:lang="he">טלאי JSON</comment>
+ <comment xml:lang="gl">Parche JSON</comment>
+ <comment xml:lang="ga">paiste JSON</comment>
+ <comment xml:lang="fur">blec JSON</comment>
+ <comment xml:lang="fr">correctif JSON</comment>
+ <comment xml:lang="fi">JSON-paikkatiedosto</comment>
+ <comment xml:lang="eu">JSON adabakia</comment>
+ <comment xml:lang="es">parche en JSON</comment>
+ <comment xml:lang="en_GB">JSON patch</comment>
+ <comment xml:lang="de">JSON-Patch</comment>
+ <comment xml:lang="da">JSON-rettelse</comment>
+ <comment xml:lang="cs">cesta JSON</comment>
+ <comment xml:lang="ca">pedaç de JSON</comment>
+ <comment xml:lang="bg">Кръпка — JSON</comment>
+ <comment xml:lang="be">патч JSON</comment>
+ <comment xml:lang="ar">رقعة JSON</comment>
<acronym>JSON</acronym>
<expanded-acronym>JavaScript Object Notation</expanded-acronym>
<sub-class-of type="application/json"/>
@@ -13425,233 +14596,306 @@
</mime-type>
<mime-type type="application/ld+json">
<comment>JSON-LD document</comment>
- <comment xml:lang="ast">Documentu JSON-LD</comment>
- <comment xml:lang="ca">document JSON-LD</comment>
- <comment xml:lang="cs">dokument JSON-LD</comment>
- <comment xml:lang="da">JSON-LD-dokument</comment>
- <comment xml:lang="de">JSON-LD-Dokument</comment>
- <comment xml:lang="el">Έγγραφο JSON-LD</comment>
- <comment xml:lang="en_GB">JSON-LD document</comment>
- <comment xml:lang="es">documento JSON-LD</comment>
- <comment xml:lang="eu">JSON-LD dokumentua</comment>
- <comment xml:lang="fi">JSON-LD-asiakirja</comment>
- <comment xml:lang="fr">document JSON-LD</comment>
- <comment xml:lang="ga">cáipéis JSON-LD</comment>
- <comment xml:lang="he">מסמך JSON-LD</comment>
- <comment xml:lang="hr">JSON-LD dokument</comment>
- <comment xml:lang="hu">JSON-LD dokumentum</comment>
- <comment xml:lang="ia">Documento JSON-LD</comment>
- <comment xml:lang="id">Dokumen JSON-LD</comment>
- <comment xml:lang="it">Documento JSON-LD</comment>
- <comment xml:lang="kk">JSON-LD құжаты</comment>
- <comment xml:lang="ko">JSON-LD 문서</comment>
- <comment xml:lang="oc">Document JSON-LD</comment>
- <comment xml:lang="pl">Dokument JSON-LD</comment>
- <comment xml:lang="pt">documento JSON-LD</comment>
- <comment xml:lang="pt_BR">Documento JSON-LD</comment>
- <comment xml:lang="ru">Документ JSON-LD</comment>
- <comment xml:lang="sk">Dokument JSON-LD</comment>
- <comment xml:lang="sr">ЈСОН-ЛД документ</comment>
- <comment xml:lang="sv">JSON-LD-dokument</comment>
- <comment xml:lang="tr">JSON-LD belgesi</comment>
- <comment xml:lang="uk">документ JSON-LD</comment>
- <comment xml:lang="zh_CN">JSON-LD 文档</comment>
<comment xml:lang="zh_TW">JSON-LD 文件</comment>
+ <comment xml:lang="zh_CN">JSON-LD 文档</comment>
+ <comment xml:lang="uk">документ JSON-LD</comment>
+ <comment xml:lang="tr">JSON-LD belgesi</comment>
+ <comment xml:lang="sv">JSON-LD-dokument</comment>
+ <comment xml:lang="sr">ЈСОН-ЛД документ</comment>
+ <comment xml:lang="sq">dokument JSON-LD</comment>
+ <comment xml:lang="sl">Dokument JSON-LD</comment>
+ <comment xml:lang="si">JSON-LD ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument JSON-LD</comment>
+ <comment xml:lang="ru">Документ JSON-LD</comment>
+ <comment xml:lang="pt_BR">Documento JSON-LD</comment>
+ <comment xml:lang="pt">documento JSON-LD</comment>
+ <comment xml:lang="pl">Dokument JSON-LD</comment>
+ <comment xml:lang="oc">Document JSON-LD</comment>
+ <comment xml:lang="nl">JSON-LD-document</comment>
+ <comment xml:lang="ko">JSON-LD 문서</comment>
+ <comment xml:lang="kk">JSON-LD құжаты</comment>
+ <comment xml:lang="ja">JSON-LD ドキュメント</comment>
+ <comment xml:lang="it">Documento JSON-LD</comment>
+ <comment xml:lang="is">JSON-LD skjal</comment>
+ <comment xml:lang="id">Dokumen JSON-LD</comment>
+ <comment xml:lang="ia">Documento JSON-LD</comment>
+ <comment xml:lang="hu">JSON-LD dokumentum</comment>
+ <comment xml:lang="hr">JSON-LD dokument</comment>
+ <comment xml:lang="he">מסמך JSON-LD</comment>
+ <comment xml:lang="gl">Documento de JSON-LD</comment>
+ <comment xml:lang="ga">cáipéis JSON-LD</comment>
+ <comment xml:lang="fur">document JSON-LD</comment>
+ <comment xml:lang="fr">document JSON-LD</comment>
+ <comment xml:lang="fi">JSON-LD-asiakirja</comment>
+ <comment xml:lang="eu">JSON-LD dokumentua</comment>
+ <comment xml:lang="es">documento JSON-LD</comment>
+ <comment xml:lang="en_GB">JSON-LD document</comment>
+ <comment xml:lang="el">Έγγραφο JSON-LD</comment>
+ <comment xml:lang="de">JSON-LD-Dokument</comment>
+ <comment xml:lang="da">JSON-LD-dokument</comment>
+ <comment xml:lang="cs">dokument JSON-LD</comment>
+ <comment xml:lang="ca">document JSON-LD</comment>
+ <comment xml:lang="bg">Документ — JSON-LD</comment>
+ <comment xml:lang="be">дакумент JSON-LD</comment>
+ <comment xml:lang="ast">Documentu JSON-LD</comment>
+ <comment xml:lang="ar">مستند JSON-LD</comment>
<acronym>JSON-LD</acronym>
<expanded-acronym>JavaScript Object Notation for Linked Data</expanded-acronym>
<sub-class-of type="application/json"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.jsonld"/>
</mime-type>
+ <mime-type type="application/schema+json">
+ <comment>JSON schema</comment>
+ <comment xml:lang="uk">схема JSON</comment>
+ <comment xml:lang="tr">JSON şeması</comment>
+ <comment xml:lang="sv">JSON-schema</comment>
+ <comment xml:lang="sl">Shema JSON</comment>
+ <comment xml:lang="si">JSON යෝජනා ක්රමය</comment>
+ <comment xml:lang="ru">Схема JSON</comment>
+ <comment xml:lang="pl">Schemat JSON</comment>
+ <comment xml:lang="oc">esquèma JSON</comment>
+ <comment xml:lang="nl">JSON-schema</comment>
+ <comment xml:lang="ko">JSON 스키마</comment>
+ <comment xml:lang="kk">JSON сұлбасы</comment>
+ <comment xml:lang="ja">JSON スキーマ</comment>
+ <comment xml:lang="it">Schema JSON</comment>
+ <comment xml:lang="hr">JSON shema</comment>
+ <comment xml:lang="he">סכמת JSON</comment>
+ <comment xml:lang="gl">Esquema de JSON</comment>
+ <comment xml:lang="fi">JSON-skeema</comment>
+ <comment xml:lang="eu">JSON eskema</comment>
+ <comment xml:lang="es">esquema JSON</comment>
+ <comment xml:lang="en_GB">JSON schema</comment>
+ <comment xml:lang="de">JSON-Schema</comment>
+ <comment xml:lang="be">схема JSON</comment>
+ <comment xml:lang="ar">مخطط JSON</comment>
+ <sub-class-of type="application/json"/>
+ <generic-icon name="text-x-script"/>
+ <magic priority="80">
+ <match type="string" value="{" offset="0">
+ <match type="string" value="&quot;$schema&quot;:" offset="1:256"/>
+ </match>
+ </magic>
+ <glob pattern="*.json"/>
+ </mime-type>
<mime-type type="application/x-ipynb+json">
- <comment>Jupyter Notebook</comment>
- <comment xml:lang="ca">llibreta de notes de Jupyter</comment>
- <comment xml:lang="cs">sešit Jupyter</comment>
- <comment xml:lang="da">Jupyter Notebook</comment>
- <comment xml:lang="de">Jupyter-Dokument</comment>
- <comment xml:lang="en_GB">Jupyter Notebook</comment>
- <comment xml:lang="es">libreta de Jupyter</comment>
- <comment xml:lang="eu">Jupyter Notebook</comment>
+ <comment>Jupyter notebook document</comment>
+ <comment xml:lang="zh_TW">Jupyter 記事本文件</comment>
+ <comment xml:lang="zh_CN">Jupyter 笔记本文档</comment>
+ <comment xml:lang="uk">документ нотатника Jupyter</comment>
+ <comment xml:lang="tr">Jupyter notebook belgesi</comment>
+ <comment xml:lang="sv">Jupyter-anteckningsboksdokument</comment>
+ <comment xml:lang="sq">dokument ditari Jupyter</comment>
+ <comment xml:lang="si">Jupyter සටහන් පොත් ලේඛනය</comment>
+ <comment xml:lang="ru">Документ Jupyter notebook</comment>
+ <comment xml:lang="pt_BR">Documento Jupyter Notebook</comment>
+ <comment xml:lang="pl">Dokument notatnika Jupyter</comment>
+ <comment xml:lang="nl">Jupyter notebook-document</comment>
+ <comment xml:lang="ko">주피터 노트북 문서</comment>
+ <comment xml:lang="kk">Jupyter блокнот құжаты</comment>
+ <comment xml:lang="ja">Jupyter notebook ドキュメント</comment>
+ <comment xml:lang="it">Documento notebook Jupyter</comment>
+ <comment xml:lang="is">Jupyter skrifblokkarskjal</comment>
+ <comment xml:lang="id">Dokumen Jupyter notebook</comment>
+ <comment xml:lang="hu">Jupyter munkafüzet dokumentum</comment>
+ <comment xml:lang="hr">Jupyter notebook dokument</comment>
+ <comment xml:lang="he">מסמך מחברת של Jupyter</comment>
+ <comment xml:lang="gl">Documento de caderno de Jupyter</comment>
<comment xml:lang="fr">carnet de notes Jupyter</comment>
- <comment xml:lang="ga">Leabhar nótaí Jupyter</comment>
- <comment xml:lang="he">מחברת Jupyter</comment>
- <comment xml:lang="hr">Jupyter bilježnica</comment>
- <comment xml:lang="hu">Jupyter notesz</comment>
- <comment xml:lang="id">Notebook Jupyter</comment>
- <comment xml:lang="it">Notebook Jupyter</comment>
- <comment xml:lang="kk">Jupyter Notebook</comment>
- <comment xml:lang="ko">Jupyter 노트북</comment>
- <comment xml:lang="pl">Notatnik Jupyter</comment>
- <comment xml:lang="pt_BR">Bloco de Notas Jupyter</comment>
- <comment xml:lang="ru">Jupyter Notebook</comment>
- <comment xml:lang="sk">Zošit programu Jupyter</comment>
- <comment xml:lang="sr">Џупитер бележница</comment>
- <comment xml:lang="sv">Jupyter Notebook-dokument</comment>
- <comment xml:lang="tr">Jupyter Notebook</comment>
- <comment xml:lang="uk">записник Jupyter</comment>
- <comment xml:lang="zh_CN">Jupyter 笔记本</comment>
- <comment xml:lang="zh_TW">Jupyter 記事本</comment>
+ <comment xml:lang="fi">Jupyter notebook -asiakirja</comment>
+ <comment xml:lang="eu">Jupyter notebook dokumentua</comment>
+ <comment xml:lang="es">documento de cuaderno de Jupyter</comment>
+ <comment xml:lang="en_GB">Jupyter notebook document</comment>
+ <comment xml:lang="de">Jupyter-Notebook-Dokument</comment>
+ <comment xml:lang="da">Jupyter notebook-dokument</comment>
+ <comment xml:lang="ca">document de llibreta de notes de Jupyter</comment>
+ <comment xml:lang="bg">Скицник — Jupyter</comment>
+ <comment xml:lang="be">дакумент Jupyter notebook</comment>
+ <comment xml:lang="ar">مستند دفتر Jupyter</comment>
<sub-class-of type="application/json"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="{" type="string" offset="0">
- <match value='"cells":' type="string" offset="1:256"/>
+ <magic>
+ <match type="string" value="{" offset="0">
+ <match type="string" value="&quot;cells&quot;:" offset="1:256"/>
</match>
</magic>
<glob pattern="*.ipynb"/>
</mime-type>
<mime-type type="application/vnd.coffeescript">
<comment>CoffeeScript document</comment>
- <comment xml:lang="ast">Documentu de CoffeScript</comment>
- <comment xml:lang="ca">document CoffeeScript</comment>
- <comment xml:lang="cs">dokument CoffeeScript</comment>
- <comment xml:lang="da">CoffeeScript-dokument</comment>
- <comment xml:lang="de">CoffeeScript-Dokument</comment>
- <comment xml:lang="el">Έγγραφο CoffeeScript</comment>
- <comment xml:lang="en_GB">CoffeeScript document</comment>
- <comment xml:lang="es">documento en CoffeeScript</comment>
- <comment xml:lang="eu">CoffeeScript dokumentua</comment>
- <comment xml:lang="fi">CoffeeScript-asiakirja</comment>
- <comment xml:lang="fr">document CoffeeScript</comment>
- <comment xml:lang="ga">cáipéis CoffeeScript</comment>
- <comment xml:lang="he">מסמך CoffeeScript</comment>
- <comment xml:lang="hr">CoffeeScript dokument</comment>
- <comment xml:lang="hu">CoffeeScript dokumentum</comment>
- <comment xml:lang="ia">Documento CoffeeScript</comment>
- <comment xml:lang="id">Dokumen CoffeeScript</comment>
- <comment xml:lang="it">Documento CoffeeScript</comment>
- <comment xml:lang="kk">CoffeeScript құжаты</comment>
- <comment xml:lang="ko">CoffeeScript 문서</comment>
- <comment xml:lang="oc">Document CoffeScript</comment>
- <comment xml:lang="pl">Dokument CoffeeScript</comment>
- <comment xml:lang="pt">documento CoffeeScript</comment>
- <comment xml:lang="pt_BR">Documento CoffeeScript</comment>
- <comment xml:lang="ru">Документ CoffeeScript</comment>
- <comment xml:lang="sk">Dokument CoffeeScript</comment>
- <comment xml:lang="sr">Кофи скрипт документ</comment>
- <comment xml:lang="sv">CoffeeScript-dokument</comment>
- <comment xml:lang="tr">CoffeeScript belgesi</comment>
- <comment xml:lang="uk">документ CoffeeScript</comment>
- <comment xml:lang="zh_CN">CoffeeScript 文档</comment>
<comment xml:lang="zh_TW">CoffeeScript 文件</comment>
+ <comment xml:lang="zh_CN">CoffeeScript 文档</comment>
+ <comment xml:lang="uk">документ CoffeeScript</comment>
+ <comment xml:lang="tr">CoffeeScript belgesi</comment>
+ <comment xml:lang="sv">CoffeeScript-dokument</comment>
+ <comment xml:lang="sr">Кофи скрипт документ</comment>
+ <comment xml:lang="sq">dokument CoffeeScript</comment>
+ <comment xml:lang="sl">Dokument CoffeeScript</comment>
+ <comment xml:lang="si">CoffeeScript ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument CoffeeScript</comment>
+ <comment xml:lang="ru">Документ CoffeeScript</comment>
+ <comment xml:lang="pt_BR">Documento CoffeeScript</comment>
+ <comment xml:lang="pt">documento CoffeeScript</comment>
+ <comment xml:lang="pl">Dokument CoffeeScript</comment>
+ <comment xml:lang="oc">Document CoffeScript</comment>
+ <comment xml:lang="nl">CoffeeScript-document</comment>
+ <comment xml:lang="ko">CoffeeScript 문서</comment>
+ <comment xml:lang="kk">CoffeeScript құжаты</comment>
+ <comment xml:lang="ja">CoffeeScript ドキュメント</comment>
+ <comment xml:lang="it">Documento CoffeeScript</comment>
+ <comment xml:lang="is">CoffeeScript skjal</comment>
+ <comment xml:lang="id">Dokumen CoffeeScript</comment>
+ <comment xml:lang="ia">Documento CoffeeScript</comment>
+ <comment xml:lang="hu">CoffeeScript dokumentum</comment>
+ <comment xml:lang="hr">CoffeeScript dokument</comment>
+ <comment xml:lang="he">מסמך CoffeeScript</comment>
+ <comment xml:lang="gl">Documento CoffeeScript</comment>
+ <comment xml:lang="ga">cáipéis CoffeeScript</comment>
+ <comment xml:lang="fur">document CoffeeScript</comment>
+ <comment xml:lang="fr">document CoffeeScript</comment>
+ <comment xml:lang="fi">CoffeeScript-asiakirja</comment>
+ <comment xml:lang="eu">CoffeeScript dokumentua</comment>
+ <comment xml:lang="es">documento en CoffeeScript</comment>
+ <comment xml:lang="en_GB">CoffeeScript document</comment>
+ <comment xml:lang="el">Έγγραφο CoffeeScript</comment>
+ <comment xml:lang="de">CoffeeScript-Dokument</comment>
+ <comment xml:lang="da">CoffeeScript-dokument</comment>
+ <comment xml:lang="cs">dokument CoffeeScript</comment>
+ <comment xml:lang="ca">document CoffeeScript</comment>
+ <comment xml:lang="bg">Документ — CoffeeScript</comment>
+ <comment xml:lang="be">дакумент CoffeeScript</comment>
+ <comment xml:lang="ast">Documentu de CoffeScript</comment>
+ <comment xml:lang="ar">مستند CoffeeScript</comment>
+ <comment xml:lang="af">CoffeeScript-dokument</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.coffee"/>
</mime-type>
<mime-type type="application/x-jbuilder-project">
<comment>JBuilder project</comment>
- <comment xml:lang="ar">مشروع JBuilder</comment>
- <comment xml:lang="be@latin">Prajekt JBuilder</comment>
- <comment xml:lang="bg">Проект — JBuilder</comment>
- <comment xml:lang="ca">projecte de JBuilder</comment>
- <comment xml:lang="cs">projekt JBuilder</comment>
- <comment xml:lang="da">JBuilder-projekt</comment>
- <comment xml:lang="de">JBuilder-Projekt</comment>
- <comment xml:lang="el">Εργο JBuilder</comment>
- <comment xml:lang="en_GB">JBuilder project</comment>
- <comment xml:lang="eo">JBuilder-projekto</comment>
- <comment xml:lang="es">proyecto de JBuilder</comment>
- <comment xml:lang="eu">JBuilder proiektua</comment>
- <comment xml:lang="fi">JBuilder-projekti</comment>
- <comment xml:lang="fo">JBuilder verkætlan</comment>
- <comment xml:lang="fr">projet JBuilder</comment>
- <comment xml:lang="ga">tionscadal JBuilder</comment>
- <comment xml:lang="gl">proxecto de JBuilder</comment>
- <comment xml:lang="he">מיזם JBuilder</comment>
- <comment xml:lang="hr">JBuilder projekt</comment>
- <comment xml:lang="hu">JBuilder-projekt</comment>
- <comment xml:lang="ia">Projecto JBuilder</comment>
- <comment xml:lang="id">Proyek JBuilder</comment>
- <comment xml:lang="it">Progetto JBuilder</comment>
- <comment xml:lang="ja">JBuilder プロジェクト</comment>
- <comment xml:lang="kk">JBuilder жобасы</comment>
- <comment xml:lang="ko">JBuilder 프로젝트</comment>
- <comment xml:lang="lt">JBuilder projektas</comment>
- <comment xml:lang="lv">JBuilder projekts</comment>
- <comment xml:lang="ms">Projek JBuilder</comment>
- <comment xml:lang="nb">JBuilder-prosjekt</comment>
- <comment xml:lang="nl">JBuilder-project</comment>
- <comment xml:lang="nn">JBuilder-prosjekt</comment>
- <comment xml:lang="oc">projècte JBuilder</comment>
- <comment xml:lang="pl">Projekt JBuilder</comment>
- <comment xml:lang="pt">projecto JBuilder</comment>
- <comment xml:lang="pt_BR">Projeto do JBuilder</comment>
- <comment xml:lang="ro">Proiect JBuilder</comment>
- <comment xml:lang="ru">Проект JBuilder</comment>
- <comment xml:lang="sk">Projekt JBuilder</comment>
- <comment xml:lang="sl">Datoteka projekta JBuilder</comment>
- <comment xml:lang="sq">Projekt JBuilder</comment>
- <comment xml:lang="sr">пројекат ЈГрадитеља</comment>
- <comment xml:lang="sv">JBuilder-projekt</comment>
- <comment xml:lang="tr">JBuilder projesi</comment>
- <comment xml:lang="uk">проект JBuilder</comment>
- <comment xml:lang="vi">Dự án JBuilder</comment>
- <comment xml:lang="zh_CN">JBuilder 工程</comment>
<comment xml:lang="zh_TW">JBuilder 專案</comment>
+ <comment xml:lang="zh_CN">JBuilder 工程</comment>
+ <comment xml:lang="vi">Dự án JBuilder</comment>
+ <comment xml:lang="uk">проєкт JBuilder</comment>
+ <comment xml:lang="tr">JBuilder projesi</comment>
+ <comment xml:lang="sv">JBuilder-projekt</comment>
+ <comment xml:lang="sr">пројекат ЈГрадитеља</comment>
+ <comment xml:lang="sq">projekt JBuilder</comment>
+ <comment xml:lang="sl">Datoteka projekta JBuilder</comment>
+ <comment xml:lang="si">JBuilder ව්යාපෘතිය</comment>
+ <comment xml:lang="sk">Projekt JBuilder</comment>
+ <comment xml:lang="ru">Проект JBuilder</comment>
+ <comment xml:lang="ro">Proiect JBuilder</comment>
+ <comment xml:lang="pt_BR">Projeto do JBuilder</comment>
+ <comment xml:lang="pt">projecto JBuilder</comment>
+ <comment xml:lang="pl">Projekt JBuilder</comment>
+ <comment xml:lang="oc">projècte JBuilder</comment>
+ <comment xml:lang="nn">JBuilder-prosjekt</comment>
+ <comment xml:lang="nl">JBuilder-project</comment>
+ <comment xml:lang="nb">JBuilder-prosjekt</comment>
+ <comment xml:lang="ms">Projek JBuilder</comment>
+ <comment xml:lang="lv">JBuilder projekts</comment>
+ <comment xml:lang="lt">JBuilder projektas</comment>
+ <comment xml:lang="ko">JBuilder 프로젝트</comment>
+ <comment xml:lang="kk">JBuilder жобасы</comment>
+ <comment xml:lang="ja">JBuilder プロジェクト</comment>
+ <comment xml:lang="it">Progetto JBuilder</comment>
+ <comment xml:lang="is">JBuilder verkefni</comment>
+ <comment xml:lang="id">Proyek JBuilder</comment>
+ <comment xml:lang="ia">Projecto JBuilder</comment>
+ <comment xml:lang="hu">JBuilder-projekt</comment>
+ <comment xml:lang="hr">JBuilder projekt</comment>
+ <comment xml:lang="he">מיזם JBuilder</comment>
+ <comment xml:lang="gl">proxecto de JBuilder</comment>
+ <comment xml:lang="ga">tionscadal JBuilder</comment>
+ <comment xml:lang="fur">progjet JBuilder</comment>
+ <comment xml:lang="fr">projet JBuilder</comment>
+ <comment xml:lang="fo">JBuilder verkætlan</comment>
+ <comment xml:lang="fi">JBuilder-projekti</comment>
+ <comment xml:lang="eu">JBuilder proiektua</comment>
+ <comment xml:lang="es">proyecto de JBuilder</comment>
+ <comment xml:lang="eo">JBuilder-projekto</comment>
+ <comment xml:lang="en_GB">JBuilder project</comment>
+ <comment xml:lang="el">Εργο JBuilder</comment>
+ <comment xml:lang="de">JBuilder-Projekt</comment>
+ <comment xml:lang="da">JBuilder-projekt</comment>
+ <comment xml:lang="cs">projekt JBuilder</comment>
+ <comment xml:lang="ca">projecte de JBuilder</comment>
+ <comment xml:lang="bg">Проект — JBuilder</comment>
+ <comment xml:lang="be@latin">Prajekt JBuilder</comment>
+ <comment xml:lang="be">праект JBuilder</comment>
+ <comment xml:lang="ar">مشروع JBuilder</comment>
+ <comment xml:lang="af">JBuilder-projek</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.jpr"/>
<glob pattern="*.jpx"/>
</mime-type>
<mime-type type="application/x-karbon">
<comment>Karbon14 drawing</comment>
- <comment xml:lang="ar">تصميم Karbon14</comment>
- <comment xml:lang="be@latin">Rysunak Karbon14</comment>
- <comment xml:lang="bg">Чертеж — Karbon14</comment>
- <comment xml:lang="ca">dibuix de Karbon14</comment>
- <comment xml:lang="cs">kresba Karbon14</comment>
- <comment xml:lang="da">Karbon14-tegning</comment>
- <comment xml:lang="de">Karbon14-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Karbon14</comment>
- <comment xml:lang="en_GB">Karbon14 drawing</comment>
- <comment xml:lang="eo">Karbon14-grafikaĵo</comment>
- <comment xml:lang="es">dibujo de Karbon14</comment>
- <comment xml:lang="eu">Karbon14 marrazkia</comment>
- <comment xml:lang="fi">Karbon14-piirros</comment>
- <comment xml:lang="fo">Karbon14 tekning</comment>
- <comment xml:lang="fr">dessin Karbon14</comment>
- <comment xml:lang="ga">líníocht Karbon14</comment>
- <comment xml:lang="gl">debuxo de Karbon14</comment>
- <comment xml:lang="he">ציור Karbon14</comment>
- <comment xml:lang="hr">Karbon14 crtež</comment>
- <comment xml:lang="hu">Karbon14-rajz</comment>
- <comment xml:lang="ia">Designo Karbon14</comment>
- <comment xml:lang="id">Gambar Karbon14</comment>
- <comment xml:lang="it">Disegno Karbon14</comment>
- <comment xml:lang="ja">Karbon14 ドロー</comment>
- <comment xml:lang="kk">Karbon14 суреті</comment>
- <comment xml:lang="ko">Karbon14 그림</comment>
- <comment xml:lang="lt">Karbon14 piešinys</comment>
- <comment xml:lang="lv">Karbon14 zīmējums</comment>
- <comment xml:lang="ms">Lukisan Karbon14</comment>
- <comment xml:lang="nb">Karbon14-tegning</comment>
- <comment xml:lang="nl">Karbon14-tekening</comment>
- <comment xml:lang="nn">Karbon14-teikning</comment>
- <comment xml:lang="oc">dessenh Karbon14</comment>
- <comment xml:lang="pl">Rysunek Karbon14</comment>
- <comment xml:lang="pt">desenho Karbon14</comment>
- <comment xml:lang="pt_BR">Desenho do Karbon14</comment>
- <comment xml:lang="ro">Desen Karbon14</comment>
- <comment xml:lang="ru">Рисунок Karbon14</comment>
- <comment xml:lang="sk">Kresba Karbon14</comment>
- <comment xml:lang="sl">Datoteka risbe Karbon14</comment>
- <comment xml:lang="sq">Vizatim Karbon14</comment>
- <comment xml:lang="sr">цртеж Карбона14</comment>
- <comment xml:lang="sv">Karbon14-teckning</comment>
- <comment xml:lang="tr">Karbon14 çizimi</comment>
- <comment xml:lang="uk">малюнок Karbon14</comment>
- <comment xml:lang="vi">Bản vẽ Karbon14</comment>
- <comment xml:lang="zh_CN">Karbon14 绘图</comment>
<comment xml:lang="zh_TW">Karbon14 繪圖</comment>
+ <comment xml:lang="zh_CN">Karbon14 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ Karbon14</comment>
+ <comment xml:lang="uk">малюнок Karbon14</comment>
+ <comment xml:lang="tr">Karbon14 çizimi</comment>
+ <comment xml:lang="sv">Karbon14-teckning</comment>
+ <comment xml:lang="sr">цртеж Карбона14</comment>
+ <comment xml:lang="sq">vizatim Karbon14</comment>
+ <comment xml:lang="sl">Datoteka risbe Karbon14</comment>
+ <comment xml:lang="si">Karbon14 ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba Karbon14</comment>
+ <comment xml:lang="ru">Рисунок Karbon14</comment>
+ <comment xml:lang="ro">Desen Karbon14</comment>
+ <comment xml:lang="pt_BR">Desenho do Karbon14</comment>
+ <comment xml:lang="pt">desenho Karbon14</comment>
+ <comment xml:lang="pl">Rysunek Karbon14</comment>
+ <comment xml:lang="oc">dessenh Karbon14</comment>
+ <comment xml:lang="nn">Karbon14-teikning</comment>
+ <comment xml:lang="nl">Karbon14-tekening</comment>
+ <comment xml:lang="nb">Karbon14-tegning</comment>
+ <comment xml:lang="ms">Lukisan Karbon14</comment>
+ <comment xml:lang="lv">Karbon14 zīmējums</comment>
+ <comment xml:lang="lt">Karbon14 piešinys</comment>
+ <comment xml:lang="ko">Karbon14 그림</comment>
+ <comment xml:lang="kk">Karbon14 суреті</comment>
+ <comment xml:lang="ja">Karbon14 ドロー</comment>
+ <comment xml:lang="it">Disegno Karbon14</comment>
+ <comment xml:lang="is">Karbon14 Tteikning</comment>
+ <comment xml:lang="id">Gambar Karbon14</comment>
+ <comment xml:lang="ia">Designo Karbon14</comment>
+ <comment xml:lang="hu">Karbon14-rajz</comment>
+ <comment xml:lang="hr">Karbon14 crtež</comment>
+ <comment xml:lang="he">ציור Karbon14</comment>
+ <comment xml:lang="gl">debuxo de Karbon14</comment>
+ <comment xml:lang="ga">líníocht Karbon14</comment>
+ <comment xml:lang="fur">dissen Karbon14</comment>
+ <comment xml:lang="fr">dessin Karbon14</comment>
+ <comment xml:lang="fo">Karbon14 tekning</comment>
+ <comment xml:lang="fi">Karbon14-piirros</comment>
+ <comment xml:lang="eu">Karbon14 marrazkia</comment>
+ <comment xml:lang="es">dibujo de Karbon14</comment>
+ <comment xml:lang="eo">Karbon14-grafikaĵo</comment>
+ <comment xml:lang="en_GB">Karbon14 drawing</comment>
+ <comment xml:lang="el">Σχέδιο Karbon14</comment>
+ <comment xml:lang="de">Karbon14-Zeichnung</comment>
+ <comment xml:lang="da">Karbon14-tegning</comment>
+ <comment xml:lang="cs">kresba Karbon14</comment>
+ <comment xml:lang="ca">dibuix de Karbon14</comment>
+ <comment xml:lang="bg">Чертеж — Karbon14</comment>
+ <comment xml:lang="be@latin">Rysunak Karbon14</comment>
+ <comment xml:lang="be">рысунак Karbon14</comment>
+ <comment xml:lang="ar">تصميم Karbon14</comment>
+ <comment xml:lang="af">Karbon14-tekening</comment>
<generic-icon name="image-x-generic"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-karbon\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-karbon\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-karbon" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-karbon" offset="38"/>
</match>
</match>
</magic>
@@ -13659,313 +14903,296 @@
</mime-type>
<mime-type type="application/x-kchart">
<comment>KChart chart</comment>
- <comment xml:lang="ar">رسم بياني KChart</comment>
- <comment xml:lang="be@latin">Hrafik KChart</comment>
- <comment xml:lang="bg">Диаграма — KChart</comment>
- <comment xml:lang="ca">diagrama de KChart</comment>
- <comment xml:lang="cs">graf Chart</comment>
- <comment xml:lang="da">KChart-diagram</comment>
- <comment xml:lang="de">KChart-Diagramm</comment>
- <comment xml:lang="el">Γράφημα KChart</comment>
- <comment xml:lang="en_GB">KChart chart</comment>
- <comment xml:lang="eo">KChart-diagramo</comment>
- <comment xml:lang="es">gráfico de KChart</comment>
- <comment xml:lang="eu">KChart diagrama</comment>
- <comment xml:lang="fi">KChart-kaavio</comment>
- <comment xml:lang="fo">KChart strikumynd</comment>
- <comment xml:lang="fr">graphique KChart</comment>
- <comment xml:lang="ga">cairt KChart</comment>
- <comment xml:lang="gl">gráfica de KChart</comment>
- <comment xml:lang="he">תרשים KChart</comment>
- <comment xml:lang="hr">KChart grafikon</comment>
- <comment xml:lang="hu">KChart-grafikon</comment>
- <comment xml:lang="ia">Graphico KChart</comment>
- <comment xml:lang="id">Bagan KChart</comment>
- <comment xml:lang="it">Grafico KChart</comment>
- <comment xml:lang="ja">KChart チャート</comment>
- <comment xml:lang="kk">KChart диаграммасы</comment>
- <comment xml:lang="ko">KChart 차트</comment>
- <comment xml:lang="lt">KChart diagrama</comment>
- <comment xml:lang="lv">KChart diagramma</comment>
- <comment xml:lang="ms">Carta KChart</comment>
- <comment xml:lang="nb">KChart-graf</comment>
- <comment xml:lang="nl">KChart-grafiek</comment>
- <comment xml:lang="nn">KChart-diagram</comment>
- <comment xml:lang="oc">grafic KChart</comment>
- <comment xml:lang="pl">Wykres KChart</comment>
- <comment xml:lang="pt">gráfico KChart</comment>
- <comment xml:lang="pt_BR">Gráfico do KChart</comment>
- <comment xml:lang="ro">Diagramă KChart</comment>
- <comment xml:lang="ru">Диаграмма KChart</comment>
- <comment xml:lang="sk">Graf KChart</comment>
- <comment xml:lang="sl">Datoteka grafikona KChart</comment>
- <comment xml:lang="sq">Grafik KChart</comment>
- <comment xml:lang="sr">графикон К-графика</comment>
- <comment xml:lang="sv">KChart-diagram</comment>
- <comment xml:lang="tr">KChart çizgesi</comment>
- <comment xml:lang="uk">діаграма KChart</comment>
- <comment xml:lang="vi">Sơ đồ KChart</comment>
- <comment xml:lang="zh_CN">KChart 图表</comment>
<comment xml:lang="zh_TW">KChart 圖表</comment>
+ <comment xml:lang="zh_CN">KChart 图表</comment>
+ <comment xml:lang="vi">Sơ đồ KChart</comment>
+ <comment xml:lang="uk">діаграма KChart</comment>
+ <comment xml:lang="tr">KChart çizgesi</comment>
+ <comment xml:lang="sv">KChart-diagram</comment>
+ <comment xml:lang="sr">графикон К-графика</comment>
+ <comment xml:lang="sq">grafik KChart</comment>
+ <comment xml:lang="sl">Datoteka grafikona KChart</comment>
+ <comment xml:lang="si">KChart ප්‍රස්ථාරය</comment>
+ <comment xml:lang="sk">Graf KChart</comment>
+ <comment xml:lang="ru">Диаграмма KChart</comment>
+ <comment xml:lang="ro">Diagramă KChart</comment>
+ <comment xml:lang="pt_BR">Gráfico do KChart</comment>
+ <comment xml:lang="pt">gráfico KChart</comment>
+ <comment xml:lang="pl">Wykres KChart</comment>
+ <comment xml:lang="oc">grafic KChart</comment>
+ <comment xml:lang="nn">KChart-diagram</comment>
+ <comment xml:lang="nl">KChart-grafiek</comment>
+ <comment xml:lang="nb">KChart-graf</comment>
+ <comment xml:lang="ms">Carta KChart</comment>
+ <comment xml:lang="lv">KChart diagramma</comment>
+ <comment xml:lang="lt">KChart diagrama</comment>
+ <comment xml:lang="ko">KChart 차트</comment>
+ <comment xml:lang="kk">KChart диаграммасы</comment>
+ <comment xml:lang="ja">KChart チャート</comment>
+ <comment xml:lang="it">Grafico KChart</comment>
+ <comment xml:lang="is">KChart línurit</comment>
+ <comment xml:lang="id">Bagan KChart</comment>
+ <comment xml:lang="ia">Graphico KChart</comment>
+ <comment xml:lang="hu">KChart-grafikon</comment>
+ <comment xml:lang="hr">KChart grafikon</comment>
+ <comment xml:lang="he">תרשים KChart</comment>
+ <comment xml:lang="gl">gráfica de KChart</comment>
+ <comment xml:lang="ga">cairt KChart</comment>
+ <comment xml:lang="fur">grafic KChart</comment>
+ <comment xml:lang="fr">graphique KChart</comment>
+ <comment xml:lang="fo">KChart strikumynd</comment>
+ <comment xml:lang="fi">KChart-kaavio</comment>
+ <comment xml:lang="eu">KChart diagrama</comment>
+ <comment xml:lang="es">gráfico de KChart</comment>
+ <comment xml:lang="eo">KChart-diagramo</comment>
+ <comment xml:lang="en_GB">KChart chart</comment>
+ <comment xml:lang="el">Γράφημα KChart</comment>
+ <comment xml:lang="de">KChart-Diagramm</comment>
+ <comment xml:lang="da">KChart-diagram</comment>
+ <comment xml:lang="cs">graf Chart</comment>
+ <comment xml:lang="ca">diagrama de KChart</comment>
+ <comment xml:lang="bg">Диаграма — KChart</comment>
+ <comment xml:lang="be@latin">Hrafik KChart</comment>
+ <comment xml:lang="be">графік KChart</comment>
+ <comment xml:lang="ar">رسم بياني KChart</comment>
+ <comment xml:lang="af">KChart-grafiek</comment>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kchart\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kchart\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kchart" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kchart" offset="38"/>
</match>
</match>
</magic>
<glob pattern="*.chrt"/>
</mime-type>
<mime-type type="application/x-kexi-connectiondata">
- <comment>Kexi settings for database server connection</comment>
- <comment xml:lang="ar">إعدادات Kexi للإتصال بخادم قاعدة البيانات</comment>
- <comment xml:lang="bg">Връзка към база от данни — Kexi</comment>
- <comment xml:lang="ca">ajusts de Kexi per a la connexió al servidor de bases de dades</comment>
- <comment xml:lang="cs">nastavení Kexi ke spojení s databázovým serverem</comment>
- <comment xml:lang="da">Kexiopsætning til forbindelsen for databaseserveren</comment>
- <comment xml:lang="de">Kexi-Einstellungen für Verbindung zum Datenbankserver</comment>
- <comment xml:lang="el">Ρυθμίσεις Kexi για σύνδεση με εξυπηρετητή βάσεων δεδομένων</comment>
- <comment xml:lang="en_GB">Kexi settings for database server connection</comment>
- <comment xml:lang="es">configuración de Kexi para conectar con un servidor de bases de datos</comment>
- <comment xml:lang="eu">Kexi-ren ezarpenak datu-basearen zerbitzariarekin konektatzeko</comment>
- <comment xml:lang="fi">Kexi-tietokantayhteysasetukset</comment>
- <comment xml:lang="fo">Kexi stillingar fyri dátustovnsambætara sambinding</comment>
- <comment xml:lang="fr">paramètres Kexi pour connexion au serveur de base de données</comment>
- <comment xml:lang="ga">socruithe Kexi do cheangal le freastalaí bunachair sonraí</comment>
- <comment xml:lang="gl">configuración de Kexi para conexión con servidor de base de datos </comment>
- <comment xml:lang="he">הגדרות של Kexi עבור חיבור שרת למסד נתונים</comment>
- <comment xml:lang="hr">Kexi postavke za povezeivanje baza podataka poslužitelja</comment>
- <comment xml:lang="hu">Kexi beállítások adatbáziskiszolgáló-kapcsolathoz</comment>
- <comment xml:lang="ia">Configuration Kexi pro connexion al servitor de base de datos</comment>
- <comment xml:lang="id">Tatanan Kexi bagi koneksi server basis data</comment>
- <comment xml:lang="it">Impostazioni Kexi per connessione a server di database</comment>
- <comment xml:lang="ja">データベースサーバ接続用の Kexi 設定</comment>
- <comment xml:lang="kk">Дерекқор серверге байланыс Kexi баптаулары</comment>
- <comment xml:lang="ko">Kexi 데이터베이스 서버 연결 설정</comment>
- <comment xml:lang="lt">Kexi duomenų bazės ryšio su serveriu parametrai</comment>
- <comment xml:lang="lv">Kexi iestatījumi datubāzes servera savienojumam</comment>
- <comment xml:lang="nl">Kexi instellingen voor database server connectie</comment>
- <comment xml:lang="oc">paramètres Kexi per connexion al servidor de banca de donadas</comment>
- <comment xml:lang="pl">Ustawienia Kexi dla połączenia serwera bazy danych</comment>
- <comment xml:lang="pt">definições Kexi para ligação de servidor de base de dados</comment>
- <comment xml:lang="pt_BR">Configurações do Kexi para conexão a servidor de banco de dados</comment>
- <comment xml:lang="ro">Configurări Kexi pentru conexiunea la serverul de baze de date</comment>
- <comment xml:lang="ru">Параметры Kexi для подключения к серверу БД</comment>
- <comment xml:lang="sk">Nastavenia Kexi pre pripojenie k databázovému serveru</comment>
- <comment xml:lang="sl">Strežniška povezava do nastavitvene datoteke Kexi.</comment>
- <comment xml:lang="sr">подешавања Кексија за везу са сервером базе података</comment>
- <comment xml:lang="sv">Kexi-inställningar för anslutning till databasserver</comment>
- <comment xml:lang="tr">Veritabanı sunucu bağlantısı için Kexi ayarları</comment>
- <comment xml:lang="uk">параметри Kexi для встановлення з’єднання з сервером бази даних</comment>
- <comment xml:lang="zh_CN">Kexi 数据库服务器连接设置</comment>
- <comment xml:lang="zh_TW">Kexi 設定值 (資料庫伺服器連線用)</comment>
+ <comment>Kexi settings</comment>
+ <comment xml:lang="zh_TW">Kexi 設定</comment>
+ <comment xml:lang="zh_CN">Kexi 设置</comment>
+ <comment xml:lang="uk">параметри Kexi</comment>
+ <comment xml:lang="tr">Kexi ayarları</comment>
+ <comment xml:lang="sv">Kexi-inställningar</comment>
+ <comment xml:lang="sq">rregullime Kexi</comment>
+ <comment xml:lang="sl">Nastavitve Kexi</comment>
+ <comment xml:lang="si">Kexi සැකසුම්</comment>
+ <comment xml:lang="sk">Nastavenia Kexi</comment>
+ <comment xml:lang="ru">Файл настроек Kexi</comment>
+ <comment xml:lang="pt_BR">Configurações do Kexi</comment>
+ <comment xml:lang="pl">Ustawienia Kexi</comment>
+ <comment xml:lang="oc">paramètres Kexi</comment>
+ <comment xml:lang="nl">Kexi-instellingen</comment>
+ <comment xml:lang="ko">Kexi 설정</comment>
+ <comment xml:lang="kk">Kexi баптаулары</comment>
+ <comment xml:lang="ja">Kexi 設定</comment>
+ <comment xml:lang="it">Impostazioni Kexi</comment>
+ <comment xml:lang="is">Kexi stillingar</comment>
+ <comment xml:lang="id">Pengaturan Kexi</comment>
+ <comment xml:lang="hu">Kexi beállítások</comment>
+ <comment xml:lang="hr">Kexi postavke</comment>
+ <comment xml:lang="he">הגדרות Kexi</comment>
+ <comment xml:lang="gl">Preferencias de Kexi</comment>
+ <comment xml:lang="fr">réglages Kexi</comment>
+ <comment xml:lang="fi">Kexi-asetukset</comment>
+ <comment xml:lang="eu">Kexi ezarpenak</comment>
+ <comment xml:lang="es">configuración de Kexi</comment>
+ <comment xml:lang="en_GB">Kexi settings</comment>
+ <comment xml:lang="de">Kexi-Einstellungen</comment>
+ <comment xml:lang="da">Kexi-indstillinger</comment>
+ <comment xml:lang="ca">ajusts de Kexi</comment>
+ <comment xml:lang="bg">Настройки — Kexi</comment>
+ <comment xml:lang="be">налады Kexi</comment>
+ <comment xml:lang="ar">إعدادات Kexi</comment>
<glob pattern="*.kexic"/>
</mime-type>
<mime-type type="application/x-kexiproject-shortcut">
- <comment>shortcut to Kexi project on database server</comment>
- <comment xml:lang="ar">اختصار لمشروع Kexi على خادم قاعدة بيانات</comment>
- <comment xml:lang="bg">Връзка към проект — Kexi</comment>
- <comment xml:lang="ca">drecera al projecte de Kexi en un servidor de base de dades</comment>
- <comment xml:lang="cs">zástupce projektu Kexi na databázovém serveru</comment>
- <comment xml:lang="da">genvej til Kexiprojekt på databaseserver</comment>
- <comment xml:lang="de">Schnellzugriff zum Kexi-Projekt auf dem Datenbankserver</comment>
- <comment xml:lang="el">Συντόμευση σε έργο Kexi στον εξυπηρετητή βάσης δεδομένων</comment>
- <comment xml:lang="en_GB">shortcut to Kexi project on database server</comment>
- <comment xml:lang="es">acceso directo a proyecto Kexi en el servidor de bases de datos</comment>
- <comment xml:lang="eu">lasterbidea datu-basearen zerbitzariko Kexi proiekturako</comment>
- <comment xml:lang="fi">pikakuvake tietokantapalvelimella olevaan Kexi-projektiin</comment>
- <comment xml:lang="fo">snarvegur til Kexi verkætlan á dátustovnsambætara</comment>
- <comment xml:lang="fr">raccourci vers projet Kexi sur serveur de base de données</comment>
- <comment xml:lang="ga">aicearra go tionscadal Kexi ar fhreastalaí bunachair sonraí</comment>
- <comment xml:lang="gl">acceso directo a proxecto Kexi no servidor de bases de datos</comment>
- <comment xml:lang="he">קיצור דרך לפרוירט Kexi בשרת נתונים</comment>
- <comment xml:lang="hr">Prečac do Kexi projekta na poslužitelju baze podataka</comment>
- <comment xml:lang="hu">indítóikon adatbázis-kiszolgálón lévő Kexi projektre</comment>
- <comment xml:lang="ia">Ligamine a projecto Kexi in servitor de base de datos</comment>
- <comment xml:lang="id">pintasan ke projek Kexi pada server basis data</comment>
- <comment xml:lang="it">Scorciatoia a progetto Kexi su server di database</comment>
- <comment xml:lang="ja">データベースサーバの Kexi プロジェクトへのショートカット</comment>
- <comment xml:lang="kk">дерекқор серверіндегі Kexi жобасына сілтеме</comment>
- <comment xml:lang="ko">데이터베이스 서버의 Kexi 프로젝트 바로 가기</comment>
- <comment xml:lang="lt">nuoroda į Kexi projektą duomenų bazės serveryje</comment>
- <comment xml:lang="lv">īsceļš uz Kexi projektu datubāzes serverī</comment>
- <comment xml:lang="nl">shortcut naar Kexi project op database server</comment>
- <comment xml:lang="oc">acorchi cap a projècte Kexi sus servidor de banca de donadas</comment>
- <comment xml:lang="pl">Skrót do projektu Kexi na serwerze bazy danych</comment>
- <comment xml:lang="pt">atalho para projeto Kexi em servidor de base de dados</comment>
- <comment xml:lang="pt_BR">Atalho para projeto Kexi no servidor de banco de dados</comment>
- <comment xml:lang="ro">scurtătură către un proiect Kexi pe un server de baze de date</comment>
- <comment xml:lang="ru">Ссылка на проект Kexi на сервере БД</comment>
- <comment xml:lang="sk">Zástupca projektu Kexi na databázovom serveri</comment>
- <comment xml:lang="sl">bližnjica do Kexi projekta na podatkovnem strežniku</comment>
- <comment xml:lang="sr">пречица до пројекта Кексија на серверу базе података</comment>
- <comment xml:lang="sv">genväg till Kexi-projekt på databasserver</comment>
- <comment xml:lang="tr">veritabanı üzerindeki Kexi projesine kısayol</comment>
- <comment xml:lang="uk">скорочення для проекту Kexi на сервері бази даних</comment>
- <comment xml:lang="zh_CN">数据库服务器上 Kexi 项目的快捷方式</comment>
- <comment xml:lang="zh_TW">資料庫伺服器上 Kexi 專案的捷徑</comment>
+ <comment>Kexi shortcut</comment>
+ <comment xml:lang="zh_TW">Kexi 捷徑</comment>
+ <comment xml:lang="zh_CN">Kexi 快捷方式</comment>
+ <comment xml:lang="uk">скорочення Kexi</comment>
+ <comment xml:lang="tr">Kexi kısayolu</comment>
+ <comment xml:lang="sv">Kexi-genväg</comment>
+ <comment xml:lang="sq">shkurtore Kexi</comment>
+ <comment xml:lang="sl">Bližnjica Kexi</comment>
+ <comment xml:lang="si">Kexi කෙටිමඟ</comment>
+ <comment xml:lang="sk">Odkaz Kexi</comment>
+ <comment xml:lang="ru">Ссылка Kexi</comment>
+ <comment xml:lang="pt_BR">Atalho do Kexi</comment>
+ <comment xml:lang="pl">Skrót Kexi</comment>
+ <comment xml:lang="nl">Kexi-snelkoppeling</comment>
+ <comment xml:lang="ko">Kexi 바로 가기</comment>
+ <comment xml:lang="kk">Kexi жарлығы</comment>
+ <comment xml:lang="ja">Kexi ショートカット</comment>
+ <comment xml:lang="it">Scorciatoia Kexi</comment>
+ <comment xml:lang="is">Kexi fýtileið</comment>
+ <comment xml:lang="id">Pintasan Kexi</comment>
+ <comment xml:lang="hu">Kexi parancsiko</comment>
+ <comment xml:lang="hr">Kexi prečac</comment>
+ <comment xml:lang="he">קיצור דרך של Kexi</comment>
+ <comment xml:lang="gl">Atallo de Kexi</comment>
+ <comment xml:lang="fr">raccourci Kexi</comment>
+ <comment xml:lang="fi">Kexi-pikakuvake</comment>
+ <comment xml:lang="eu">Kexi lasterbidea</comment>
+ <comment xml:lang="es">atajo de Kexi</comment>
+ <comment xml:lang="en_GB">Kexi shortcut</comment>
+ <comment xml:lang="de">Kexi-Verweis</comment>
+ <comment xml:lang="da">Kexi-genvej</comment>
+ <comment xml:lang="ca">drecera de Kexi</comment>
+ <comment xml:lang="bg">Ускорител — Kexi</comment>
+ <comment xml:lang="be">ярлык Kexi</comment>
+ <comment xml:lang="ar">اختصار Kexi</comment>
<glob pattern="*.kexis"/>
</mime-type>
<mime-type type="application/x-kexiproject-sqlite2">
- <comment>Kexi database file-based project</comment>
- <comment xml:lang="ar">مشروع قاعدة بيانات Kexi يعتمد على ملفات</comment>
- <comment xml:lang="bg">Проект с база от данни — Kexi</comment>
- <comment xml:lang="ca">projecte basat en fitxer de base de dades de Kexi</comment>
- <comment xml:lang="cs">projekt založený na souboru databáze Kexi</comment>
- <comment xml:lang="da">Filbaseret projekt for Kexidatabase</comment>
- <comment xml:lang="de">Dateibasiertes Kexi-Datenbankprojekt</comment>
- <comment xml:lang="el">Έργο βάσης δεδομένων Kexi βασισμένο σε αρχεία </comment>
- <comment xml:lang="en_GB">Kexi database file-based project</comment>
- <comment xml:lang="es">proyecto de base de datos basada en archivos de Kexi</comment>
- <comment xml:lang="eu">Kexi datu-baseko fitxategian oinarritutako proiektua</comment>
- <comment xml:lang="fi">Kexin tiedostoperustainen tietokantaprojekti</comment>
- <comment xml:lang="fo">Kexi dátustovns fílugrundað verkætlan</comment>
- <comment xml:lang="fr">projet de base de données Kexi en mode fichier</comment>
- <comment xml:lang="ga">tionscadal bunachair sonraí Kexi bunaithe ar chomhaid</comment>
- <comment xml:lang="gl">proxecto baseado no ficheiro-base de datos Kexi</comment>
- <comment xml:lang="he">מיזם מסד נתונים מבוסס-קובץ של Kexi</comment>
- <comment xml:lang="hr">Kexi baza podataka datotekom temeljen projekt</comment>
- <comment xml:lang="hu">Kexi adatbázisfájl-alapú projekt</comment>
- <comment xml:lang="ia">Projecto de base de datos Kexi in modo file</comment>
- <comment xml:lang="id">Projek berbasis berkas basis data Kexi</comment>
- <comment xml:lang="it">Progetto su file di database Kexi</comment>
- <comment xml:lang="ja">Kexi データベース ファイルベースプロジェクト</comment>
- <comment xml:lang="kk">Файл негізінде жоба үшін Kexi дерекқоры</comment>
- <comment xml:lang="ko">Kexi 데이터베이스 파일 기반 프로젝트</comment>
- <comment xml:lang="lt">Kexi duomenų bazės failo tipo projektas</comment>
- <comment xml:lang="lv">Kexi datubāzes datnes balstīts projekts</comment>
- <comment xml:lang="nl">Kexi database bestandgebaseerd project</comment>
- <comment xml:lang="oc">projècte de banca de donadas Kexi en mòde fichièr</comment>
- <comment xml:lang="pl">Projekt bazy danych Kexi na podstawie plików</comment>
- <comment xml:lang="pt">projeto Kexi em base de dados baseada em ficheiros</comment>
- <comment xml:lang="pt_BR">Projeto de banco de dados baseado em arquivo do Kexi</comment>
- <comment xml:lang="ro">Proiect bazat pe fișiere al bazei de date Kexi</comment>
- <comment xml:lang="ru">Файловый проект базы данных Kexi</comment>
- <comment xml:lang="sk">Projekt databázy Kexi s úložiskom typu súbor</comment>
- <comment xml:lang="sl">Datoteka projekta podatkovne zbirke Kexi</comment>
- <comment xml:lang="sr">пројекат Кексијеве базе података на основу датотеке</comment>
- <comment xml:lang="sv">Kexi-databas för filbaserat projekt</comment>
- <comment xml:lang="tr">Dosya temelli Kexi veritabanı projesi</comment>
- <comment xml:lang="uk">проект файлової бази даних Kexi</comment>
- <comment xml:lang="zh_CN">Kexi 基于文件的数据库项目</comment>
- <comment xml:lang="zh_TW">Kexi 資料庫檔案基礎專案</comment>
+ <comment>Kexi database file</comment>
+ <comment xml:lang="zh_TW">Kexi 資料庫檔案</comment>
+ <comment xml:lang="zh_CN">Kexi 数据库文件</comment>
+ <comment xml:lang="uk">файл бази даних Kexi</comment>
+ <comment xml:lang="tr">Kexi veri tabanı dosyası</comment>
+ <comment xml:lang="sv">Kexi-databasfil</comment>
+ <comment xml:lang="sq">kartelë baze të dhënash Kexi</comment>
+ <comment xml:lang="sl">Datoteka zbirke podatkov Kexi</comment>
+ <comment xml:lang="si">Kexi දත්ත සමුදා ගොනුව</comment>
+ <comment xml:lang="sk">Súbor databázy Kexi</comment>
+ <comment xml:lang="ru">Файл базы данных Kexi</comment>
+ <comment xml:lang="pt_BR">Arquivo de banco de dados do Kexi</comment>
+ <comment xml:lang="pl">Plik bazy danych Kexi</comment>
+ <comment xml:lang="nl">Kexi-databasebestand</comment>
+ <comment xml:lang="ko">Kexi 데이터베이스 파일</comment>
+ <comment xml:lang="kk">Kexi дерекқор файлы</comment>
+ <comment xml:lang="ja">Kexi データベースファイル</comment>
+ <comment xml:lang="it">File database Kexi</comment>
+ <comment xml:lang="is">Kexi gagnagrunnsskrá</comment>
+ <comment xml:lang="id">Berkas basis data Kexi</comment>
+ <comment xml:lang="hu">Kexi adatbázisfájl</comment>
+ <comment xml:lang="hr">Kexi datoteka baze podataka</comment>
+ <comment xml:lang="he">קובץ מסד נתונים של Kexi</comment>
+ <comment xml:lang="gl">Ficheiro de base de datos Kexi</comment>
+ <comment xml:lang="fr">fichier de base de données Kexi</comment>
+ <comment xml:lang="fi">Kexi-tietokanta</comment>
+ <comment xml:lang="eu">Kexi datu-base fitxategia</comment>
+ <comment xml:lang="es">archivo de base de datos de Kexi</comment>
+ <comment xml:lang="en_GB">Kexi database file</comment>
+ <comment xml:lang="de">Kexi-Datenbankdatei</comment>
+ <comment xml:lang="da">Kexi database-fil</comment>
+ <comment xml:lang="ca">fitxer de base de dades de Kexi</comment>
+ <comment xml:lang="bg">База от данни — Kexi</comment>
+ <comment xml:lang="be">база даных Kexi</comment>
+ <comment xml:lang="ar">ملف قاعدة Kexi</comment>
<sub-class-of type="application/x-sqlite2"/>
<glob pattern="*.kexi"/>
</mime-type>
<mime-type type="application/x-kexiproject-sqlite3">
- <comment>Kexi database file-based project</comment>
- <comment xml:lang="ar">مشروع قاعدة بيانات Kexi يعتمد على ملفات</comment>
- <comment xml:lang="bg">Проект с база от данни — Kexi</comment>
- <comment xml:lang="ca">projecte basat en fitxer de base de dades de Kexi</comment>
- <comment xml:lang="cs">projekt založený na souboru databáze Kexi</comment>
- <comment xml:lang="da">Filbaseret projekt for Kexidatabase</comment>
- <comment xml:lang="de">Dateibasiertes Kexi-Datenbankprojekt</comment>
- <comment xml:lang="el">Έργο βάσης δεδομένων Kexi βασισμένο σε αρχεία </comment>
- <comment xml:lang="en_GB">Kexi database file-based project</comment>
- <comment xml:lang="es">proyecto de base de datos basada en archivos de Kexi</comment>
- <comment xml:lang="eu">Kexi datu-baseko fitxategian oinarritutako proiektua</comment>
- <comment xml:lang="fi">Kexin tiedostoperustainen tietokantaprojekti</comment>
- <comment xml:lang="fo">Kexi dátustovns fílugrundað verkætlan</comment>
- <comment xml:lang="fr">projet de base de données Kexi en mode fichier</comment>
- <comment xml:lang="ga">tionscadal bunachair sonraí Kexi bunaithe ar chomhaid</comment>
- <comment xml:lang="gl">proxecto baseado no ficheiro-base de datos Kexi</comment>
- <comment xml:lang="he">מיזם מסד נתונים מבוסס-קובץ של Kexi</comment>
- <comment xml:lang="hr">Kexi baza podataka datotekom temeljen projekt</comment>
- <comment xml:lang="hu">Kexi adatbázisfájl-alapú projekt</comment>
- <comment xml:lang="ia">Projecto de base de datos Kexi in modo file</comment>
- <comment xml:lang="id">Projek berbasis berkas basis data Kexi</comment>
- <comment xml:lang="it">Progetto su file di database Kexi</comment>
- <comment xml:lang="ja">Kexi データベース ファイルベースプロジェクト</comment>
- <comment xml:lang="kk">Файл негізінде жоба үшін Kexi дерекқоры</comment>
- <comment xml:lang="ko">Kexi 데이터베이스 파일 기반 프로젝트</comment>
- <comment xml:lang="lt">Kexi duomenų bazės failo tipo projektas</comment>
- <comment xml:lang="lv">Kexi datubāzes datnes balstīts projekts</comment>
- <comment xml:lang="nl">Kexi database bestandgebaseerd project</comment>
- <comment xml:lang="oc">projècte de banca de donadas Kexi en mòde fichièr</comment>
- <comment xml:lang="pl">Projekt bazy danych Kexi na podstawie plików</comment>
- <comment xml:lang="pt">projeto Kexi em base de dados baseada em ficheiros</comment>
- <comment xml:lang="pt_BR">Projeto de banco de dados baseado em arquivo do Kexi</comment>
- <comment xml:lang="ro">Proiect bazat pe fișiere al bazei de date Kexi</comment>
- <comment xml:lang="ru">Файловый проект базы данных Kexi</comment>
- <comment xml:lang="sk">Projekt databázy Kexi s úložiskom typu súbor</comment>
- <comment xml:lang="sl">Datoteka projekta podatkovne zbirke Kexi</comment>
- <comment xml:lang="sr">пројекат Кексијеве базе података на основу датотеке</comment>
- <comment xml:lang="sv">Kexi-databas för filbaserat projekt</comment>
- <comment xml:lang="tr">Dosya temelli Kexi veritabanı projesi</comment>
- <comment xml:lang="uk">проект файлової бази даних Kexi</comment>
- <comment xml:lang="zh_CN">Kexi 基于文件的数据库项目</comment>
- <comment xml:lang="zh_TW">Kexi 資料庫檔案基礎專案</comment>
- <sub-class-of type="application/x-sqlite3"/>
+ <comment>Kexi database file</comment>
+ <comment xml:lang="zh_TW">Kexi 資料庫檔案</comment>
+ <comment xml:lang="zh_CN">Kexi 数据库文件</comment>
+ <comment xml:lang="uk">файл бази даних Kexi</comment>
+ <comment xml:lang="tr">Kexi veri tabanı dosyası</comment>
+ <comment xml:lang="sv">Kexi-databasfil</comment>
+ <comment xml:lang="sq">kartelë baze të dhënash Kexi</comment>
+ <comment xml:lang="sl">Datoteka zbirke podatkov Kexi</comment>
+ <comment xml:lang="si">Kexi දත්ත සමුදා ගොනුව</comment>
+ <comment xml:lang="sk">Súbor databázy Kexi</comment>
+ <comment xml:lang="ru">Файл базы данных Kexi</comment>
+ <comment xml:lang="pt_BR">Arquivo de banco de dados do Kexi</comment>
+ <comment xml:lang="pl">Plik bazy danych Kexi</comment>
+ <comment xml:lang="nl">Kexi-databasebestand</comment>
+ <comment xml:lang="ko">Kexi 데이터베이스 파일</comment>
+ <comment xml:lang="kk">Kexi дерекқор файлы</comment>
+ <comment xml:lang="ja">Kexi データベースファイル</comment>
+ <comment xml:lang="it">File database Kexi</comment>
+ <comment xml:lang="is">Kexi gagnagrunnsskrá</comment>
+ <comment xml:lang="id">Berkas basis data Kexi</comment>
+ <comment xml:lang="hu">Kexi adatbázisfájl</comment>
+ <comment xml:lang="hr">Kexi datoteka baze podataka</comment>
+ <comment xml:lang="he">קובץ מסד נתונים של Kexi</comment>
+ <comment xml:lang="gl">Ficheiro de base de datos Kexi</comment>
+ <comment xml:lang="fr">fichier de base de données Kexi</comment>
+ <comment xml:lang="fi">Kexi-tietokanta</comment>
+ <comment xml:lang="eu">Kexi datu-base fitxategia</comment>
+ <comment xml:lang="es">archivo de base de datos de Kexi</comment>
+ <comment xml:lang="en_GB">Kexi database file</comment>
+ <comment xml:lang="de">Kexi-Datenbankdatei</comment>
+ <comment xml:lang="da">Kexi database-fil</comment>
+ <comment xml:lang="ca">fitxer de base de dades de Kexi</comment>
+ <comment xml:lang="bg">База от данни — Kexi</comment>
+ <comment xml:lang="be">база даных Kexi</comment>
+ <comment xml:lang="ar">ملف قاعدة Kexi</comment>
+ <sub-class-of type="application/vnd.sqlite3"/>
<glob pattern="*.kexi"/>
<alias type="application/x-vnd.kde.kexi"/>
<alias type="application/x-kexiproject-sqlite"/>
</mime-type>
<mime-type type="application/x-kformula">
<comment>KFormula formula</comment>
- <comment xml:lang="ar">صيغة KFormula</comment>
- <comment xml:lang="be@latin">Formuła KFormula</comment>
- <comment xml:lang="bg">Формула — KFormula</comment>
- <comment xml:lang="ca">fórmula de KFormula</comment>
- <comment xml:lang="cs">vzorec KFormula</comment>
- <comment xml:lang="da">KFormula-formel</comment>
- <comment xml:lang="de">KFormula-Formel</comment>
- <comment xml:lang="el">Μαθηματικός τύπος KFormula</comment>
- <comment xml:lang="en_GB">KFormula formula</comment>
- <comment xml:lang="eo">KFormula-formulo</comment>
- <comment xml:lang="es">fórmula de KFormula</comment>
- <comment xml:lang="eu">KFormula formula</comment>
- <comment xml:lang="fi">KFormula-kaava</comment>
- <comment xml:lang="fo">KFormula frymil</comment>
- <comment xml:lang="fr">formule KFormula</comment>
- <comment xml:lang="ga">foirmle KFormula</comment>
- <comment xml:lang="gl">fórmula de KFormula</comment>
- <comment xml:lang="he">נוסחת KFormula</comment>
- <comment xml:lang="hr">KFormula formula</comment>
- <comment xml:lang="hu">KFormula-képlet</comment>
- <comment xml:lang="ia">Formula KFormula</comment>
- <comment xml:lang="id">Formula KFormula</comment>
- <comment xml:lang="it">Formula KFormula</comment>
- <comment xml:lang="ja">KFormula 計算式</comment>
- <comment xml:lang="kk">KFormula формуласы</comment>
- <comment xml:lang="ko">KFormula 수식</comment>
- <comment xml:lang="lt">KFormula formulė</comment>
- <comment xml:lang="lv">KFormula formula</comment>
- <comment xml:lang="ms">Formula KFormula</comment>
- <comment xml:lang="nb">KFormula-formel</comment>
- <comment xml:lang="nl">KFormula-formule</comment>
- <comment xml:lang="nn">KFormula-formel</comment>
- <comment xml:lang="oc">formula KFormula</comment>
- <comment xml:lang="pl">Formuła KFormula</comment>
- <comment xml:lang="pt">fórmula KFormula</comment>
- <comment xml:lang="pt_BR">Fórmula do KFormula</comment>
- <comment xml:lang="ro">Formulă KFormula</comment>
- <comment xml:lang="ru">Формула KFormula</comment>
- <comment xml:lang="sk">Vzorec KFormula</comment>
- <comment xml:lang="sl">Datoteka formule KFormula</comment>
- <comment xml:lang="sq">Formulë KFormula</comment>
- <comment xml:lang="sr">формула К-формуле</comment>
- <comment xml:lang="sv">KFormula-formel</comment>
- <comment xml:lang="tr">KFormula formülü</comment>
- <comment xml:lang="uk">формула KFormula</comment>
- <comment xml:lang="vi">Công thức KFormula</comment>
- <comment xml:lang="zh_CN">KFormula 公式</comment>
<comment xml:lang="zh_TW">KFormula 公式</comment>
+ <comment xml:lang="zh_CN">KFormula 公式</comment>
+ <comment xml:lang="vi">Công thức KFormula</comment>
+ <comment xml:lang="uk">формула KFormula</comment>
+ <comment xml:lang="tr">KFormula formülü</comment>
+ <comment xml:lang="sv">KFormula-formel</comment>
+ <comment xml:lang="sr">формула К-формуле</comment>
+ <comment xml:lang="sq">formulë KFormula</comment>
+ <comment xml:lang="sl">Datoteka formule KFormula</comment>
+ <comment xml:lang="si">KFormula සූත්‍රය</comment>
+ <comment xml:lang="sk">Vzorec KFormula</comment>
+ <comment xml:lang="ru">Формула KFormula</comment>
+ <comment xml:lang="ro">Formulă KFormula</comment>
+ <comment xml:lang="pt_BR">Fórmula do KFormula</comment>
+ <comment xml:lang="pt">fórmula KFormula</comment>
+ <comment xml:lang="pl">Formuła KFormula</comment>
+ <comment xml:lang="oc">formula KFormula</comment>
+ <comment xml:lang="nn">KFormula-formel</comment>
+ <comment xml:lang="nl">KFormula-formule</comment>
+ <comment xml:lang="nb">KFormula-formel</comment>
+ <comment xml:lang="ms">Formula KFormula</comment>
+ <comment xml:lang="lv">KFormula formula</comment>
+ <comment xml:lang="lt">KFormula formulė</comment>
+ <comment xml:lang="ko">KFormula 수식</comment>
+ <comment xml:lang="kk">KFormula формуласы</comment>
+ <comment xml:lang="ja">KFormula 計算式</comment>
+ <comment xml:lang="it">Formula KFormula</comment>
+ <comment xml:lang="is">KFormula formúla</comment>
+ <comment xml:lang="id">Formula KFormula</comment>
+ <comment xml:lang="ia">Formula KFormula</comment>
+ <comment xml:lang="hu">KFormula-képlet</comment>
+ <comment xml:lang="hr">KFormula formula</comment>
+ <comment xml:lang="he">נוסחת KFormula</comment>
+ <comment xml:lang="gl">fórmula de KFormula</comment>
+ <comment xml:lang="ga">foirmle KFormula</comment>
+ <comment xml:lang="fur">formule KFormula</comment>
+ <comment xml:lang="fr">formule KFormula</comment>
+ <comment xml:lang="fo">KFormula frymil</comment>
+ <comment xml:lang="fi">KFormula-kaava</comment>
+ <comment xml:lang="eu">KFormula formula</comment>
+ <comment xml:lang="es">fórmula de KFormula</comment>
+ <comment xml:lang="eo">KFormula-formulo</comment>
+ <comment xml:lang="en_GB">KFormula formula</comment>
+ <comment xml:lang="el">Μαθηματικός τύπος KFormula</comment>
+ <comment xml:lang="de">KFormula-Formel</comment>
+ <comment xml:lang="da">KFormula-formel</comment>
+ <comment xml:lang="cs">vzorec KFormula</comment>
+ <comment xml:lang="ca">fórmula de KFormula</comment>
+ <comment xml:lang="bg">Формула — KFormula</comment>
+ <comment xml:lang="be@latin">Formuła KFormula</comment>
+ <comment xml:lang="be">формула KFormula</comment>
+ <comment xml:lang="ar">صيغة KFormula</comment>
+ <comment xml:lang="af">KFormula-formule</comment>
<generic-icon name="x-office-document"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kformula\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kformula\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kformula" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kformula" offset="38"/>
</match>
</match>
</magic>
@@ -13973,59 +15200,64 @@
</mime-type>
<mime-type type="application/x-killustrator">
<comment>KIllustrator drawing</comment>
- <comment xml:lang="ar">تصميم KIllustrator</comment>
- <comment xml:lang="be@latin">Rysunak KIllustrator</comment>
- <comment xml:lang="bg">Чертеж — KIllustrator</comment>
- <comment xml:lang="ca">dibuix de KIllustrator</comment>
- <comment xml:lang="cs">kresba KIllustrator</comment>
- <comment xml:lang="da">KIllustrator-tegning</comment>
- <comment xml:lang="de">KIllustrator-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο KIllustrator</comment>
- <comment xml:lang="en_GB">KIllustrator drawing</comment>
- <comment xml:lang="eo">KIllustrator-grafikaĵo</comment>
- <comment xml:lang="es">dibujo de KIllustrator</comment>
- <comment xml:lang="eu">KIllustrator marrazkia</comment>
- <comment xml:lang="fi">KIllustrator-piirros</comment>
- <comment xml:lang="fo">KIllustrator tekning</comment>
- <comment xml:lang="fr">dessin KIllustrator</comment>
- <comment xml:lang="ga">líníocht KIllustrator</comment>
- <comment xml:lang="gl">debuxo de KIllustrator</comment>
- <comment xml:lang="he">ציור KIllustrator</comment>
- <comment xml:lang="hr">KIllustrator crtež</comment>
- <comment xml:lang="hu">KIllustrator-rajz</comment>
- <comment xml:lang="ia">Designo KIllustrator</comment>
- <comment xml:lang="id">Gambar KIllustrator</comment>
- <comment xml:lang="it">Disegno KIllustrator</comment>
- <comment xml:lang="ja">KIllustrator ドロー</comment>
- <comment xml:lang="kk">KIllustrator суреті</comment>
- <comment xml:lang="ko">KIllustrator 그림</comment>
- <comment xml:lang="lt">KIllustrator piešinys</comment>
- <comment xml:lang="lv">KIllustrator zīmējums</comment>
- <comment xml:lang="ms">Lukisan KIllustrator</comment>
- <comment xml:lang="nb">KIllustrator-tegning</comment>
- <comment xml:lang="nl">KIllustrator-tekening</comment>
- <comment xml:lang="nn">KIllustrator-teikning</comment>
- <comment xml:lang="oc">dessenh KIllustrator</comment>
- <comment xml:lang="pl">Rysunek KIllustrator</comment>
- <comment xml:lang="pt">desenho KIllustrator</comment>
- <comment xml:lang="pt_BR">Desenho do KIllustrator</comment>
- <comment xml:lang="ro">Desen KIllustrator</comment>
- <comment xml:lang="ru">Рисунок KIllustrator</comment>
- <comment xml:lang="sk">Kresba KIllustrator</comment>
- <comment xml:lang="sl">Datoteka risbe KIllustrator</comment>
- <comment xml:lang="sq">Vizatim KIllustrator</comment>
- <comment xml:lang="sr">цртеж К-илустратора</comment>
- <comment xml:lang="sv">KIllustrator-teckning</comment>
- <comment xml:lang="tr">KIllustrator çizimi</comment>
- <comment xml:lang="uk">малюнок KIllustrator</comment>
- <comment xml:lang="vi">Bản vẽ KIllustrator</comment>
- <comment xml:lang="zh_CN">KIllustrator 绘图</comment>
<comment xml:lang="zh_TW">KIllustrator 繪圖</comment>
+ <comment xml:lang="zh_CN">KIllustrator 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ KIllustrator</comment>
+ <comment xml:lang="uk">малюнок KIllustrator</comment>
+ <comment xml:lang="tr">KIllustrator çizimi</comment>
+ <comment xml:lang="sv">KIllustrator-teckning</comment>
+ <comment xml:lang="sr">цртеж К-илустратора</comment>
+ <comment xml:lang="sq">vizatim KIllustrator</comment>
+ <comment xml:lang="sl">Datoteka risbe KIllustrator</comment>
+ <comment xml:lang="si">කිලිස්ට්රේටර් ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba KIllustrator</comment>
+ <comment xml:lang="ru">Рисунок KIllustrator</comment>
+ <comment xml:lang="ro">Desen KIllustrator</comment>
+ <comment xml:lang="pt_BR">Desenho do KIllustrator</comment>
+ <comment xml:lang="pt">desenho KIllustrator</comment>
+ <comment xml:lang="pl">Rysunek KIllustrator</comment>
+ <comment xml:lang="oc">dessenh KIllustrator</comment>
+ <comment xml:lang="nn">KIllustrator-teikning</comment>
+ <comment xml:lang="nl">KIllustrator-tekening</comment>
+ <comment xml:lang="nb">KIllustrator-tegning</comment>
+ <comment xml:lang="ms">Lukisan KIllustrator</comment>
+ <comment xml:lang="lv">KIllustrator zīmējums</comment>
+ <comment xml:lang="lt">KIllustrator piešinys</comment>
+ <comment xml:lang="ko">KIllustrator 그림</comment>
+ <comment xml:lang="kk">KIllustrator суреті</comment>
+ <comment xml:lang="ja">KIllustrator ドロー</comment>
+ <comment xml:lang="it">Disegno KIllustrator</comment>
+ <comment xml:lang="is">KIllustrator teikning</comment>
+ <comment xml:lang="id">Gambar KIllustrator</comment>
+ <comment xml:lang="ia">Designo KIllustrator</comment>
+ <comment xml:lang="hu">KIllustrator-rajz</comment>
+ <comment xml:lang="hr">KIllustrator crtež</comment>
+ <comment xml:lang="he">ציור KIllustrator</comment>
+ <comment xml:lang="gl">debuxo de KIllustrator</comment>
+ <comment xml:lang="ga">líníocht KIllustrator</comment>
+ <comment xml:lang="fur">dissen KIllustrator</comment>
+ <comment xml:lang="fr">dessin KIllustrator</comment>
+ <comment xml:lang="fo">KIllustrator tekning</comment>
+ <comment xml:lang="fi">KIllustrator-piirros</comment>
+ <comment xml:lang="eu">KIllustrator marrazkia</comment>
+ <comment xml:lang="es">dibujo de KIllustrator</comment>
+ <comment xml:lang="eo">KIllustrator-grafikaĵo</comment>
+ <comment xml:lang="en_GB">KIllustrator drawing</comment>
+ <comment xml:lang="el">Σχέδιο KIllustrator</comment>
+ <comment xml:lang="de">KIllustrator-Zeichnung</comment>
+ <comment xml:lang="da">KIllustrator-tegning</comment>
+ <comment xml:lang="cs">kresba KIllustrator</comment>
+ <comment xml:lang="ca">dibuix de KIllustrator</comment>
+ <comment xml:lang="bg">Чертеж — KIllustrator</comment>
+ <comment xml:lang="be@latin">Rysunak KIllustrator</comment>
+ <comment xml:lang="be">рысунак KIllustrator</comment>
+ <comment xml:lang="ar">تصميم KIllustrator</comment>
+ <comment xml:lang="af">KIllustrator-tekening</comment>
<generic-icon name="image-x-generic"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-killustrator\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-killustrator\004\006" offset="18"/>
</match>
</match>
</magic>
@@ -14033,64 +15265,69 @@
</mime-type>
<mime-type type="application/x-kivio">
<comment>Kivio flowchart</comment>
- <comment xml:lang="ar">قائمة تدفق Kivio</comment>
- <comment xml:lang="be@latin">Blok-schiema Kivio</comment>
- <comment xml:lang="bg">Диаграма — Kivio</comment>
- <comment xml:lang="ca">diagrama de flux de Kivio</comment>
- <comment xml:lang="cs">vývojový diagram Kivio</comment>
- <comment xml:lang="da">Kiviorutediagram</comment>
- <comment xml:lang="de">Kivio-Flussdiagramm</comment>
- <comment xml:lang="el">Διάγραμμα ροής Kivio</comment>
- <comment xml:lang="en_GB">Kivio flowchart</comment>
- <comment xml:lang="eo">Kivo-fluskemo</comment>
- <comment xml:lang="es">diagrama de flujo de Kivio</comment>
- <comment xml:lang="eu">Kivio diagrama</comment>
- <comment xml:lang="fi">Kivio-vuokaavio</comment>
- <comment xml:lang="fo">Kivio leiðarit</comment>
- <comment xml:lang="fr">diagramme de flux Kivio</comment>
- <comment xml:lang="ga">sreabhchairt Kivio</comment>
- <comment xml:lang="gl">gráfica de fluxo de Kivio</comment>
- <comment xml:lang="he">תרשים זרימה של Kivio</comment>
- <comment xml:lang="hr">Kivio dijagram toka</comment>
- <comment xml:lang="hu">Kivio-folyamatábra</comment>
- <comment xml:lang="ia">Diagramma de fluxo Kivio</comment>
- <comment xml:lang="id">Bagan Kivio</comment>
- <comment xml:lang="it">Diagramma di flusso Kivio</comment>
- <comment xml:lang="ja">Kivio フローチャート</comment>
- <comment xml:lang="kk">Kivio диаграммасы</comment>
- <comment xml:lang="ko">Kivio 순서도</comment>
- <comment xml:lang="lt">Kivio eigos diagrama</comment>
- <comment xml:lang="lv">Kivio blokshēma</comment>
- <comment xml:lang="ms">Cartalir Kivio</comment>
- <comment xml:lang="nb">Kivio-flytdiagram</comment>
- <comment xml:lang="nl">Kivio-stroomschema</comment>
- <comment xml:lang="nn">Kivio-flytdiagram</comment>
- <comment xml:lang="oc">diagrama de flux Kivio</comment>
- <comment xml:lang="pl">Diagram przepływów Kivio</comment>
- <comment xml:lang="pt">gráfico de fluxo Kivio</comment>
- <comment xml:lang="pt_BR">Fluxograma do Kivio</comment>
- <comment xml:lang="ro">Diagramă Kivio</comment>
- <comment xml:lang="ru">Диаграмма Kivio</comment>
- <comment xml:lang="sk">Vývojový diagram Kivio</comment>
- <comment xml:lang="sl">Datoteka grafikona Kivio</comment>
- <comment xml:lang="sq">Diagramë fluksi Kivio</comment>
- <comment xml:lang="sr">Кивиов дијаграм тока</comment>
- <comment xml:lang="sv">Kivio-flödesschema</comment>
- <comment xml:lang="tr">Kivio akış şeması</comment>
- <comment xml:lang="uk">блок-схема Kivio</comment>
- <comment xml:lang="vi">Lược đồ Kivio</comment>
+ <comment xml:lang="zh_TW">Kivio 流程圖</comment>
<comment xml:lang="zh_CN">Kivio 流程图</comment>
- <comment xml:lang="zh_TW">Kivio 圖表</comment>
+ <comment xml:lang="vi">Lược đồ Kivio</comment>
+ <comment xml:lang="uk">блок-схема Kivio</comment>
+ <comment xml:lang="tr">Kivio akış çizgesi</comment>
+ <comment xml:lang="sv">Kivio-flödesschema</comment>
+ <comment xml:lang="sr">Кивиов дијаграм тока</comment>
+ <comment xml:lang="sq">diagram hapash Kivio</comment>
+ <comment xml:lang="sl">Datoteka grafikona Kivio</comment>
+ <comment xml:lang="si">කිවියෝ ගැලීම් සටහන</comment>
+ <comment xml:lang="sk">Vývojový diagram Kivio</comment>
+ <comment xml:lang="ru">Диаграмма Kivio</comment>
+ <comment xml:lang="ro">Diagramă Kivio</comment>
+ <comment xml:lang="pt_BR">Fluxograma do Kivio</comment>
+ <comment xml:lang="pt">gráfico de fluxo Kivio</comment>
+ <comment xml:lang="pl">Diagram przepływów Kivio</comment>
+ <comment xml:lang="oc">diagrama de flux Kivio</comment>
+ <comment xml:lang="nn">Kivio-flytdiagram</comment>
+ <comment xml:lang="nl">Kivio-stroomschema</comment>
+ <comment xml:lang="nb">Kivio-flytdiagram</comment>
+ <comment xml:lang="ms">Cartalir Kivio</comment>
+ <comment xml:lang="lv">Kivio blokshēma</comment>
+ <comment xml:lang="lt">Kivio eigos diagrama</comment>
+ <comment xml:lang="ko">Kivio 순서도</comment>
+ <comment xml:lang="kk">Kivio диаграммасы</comment>
+ <comment xml:lang="ja">Kivio フローチャート</comment>
+ <comment xml:lang="it">Diagramma di flusso Kivio</comment>
+ <comment xml:lang="is">Kivio flæðirit</comment>
+ <comment xml:lang="id">Bagan Kivio</comment>
+ <comment xml:lang="ia">Diagramma de fluxo Kivio</comment>
+ <comment xml:lang="hu">Kivio-folyamatábra</comment>
+ <comment xml:lang="hr">Kivio dijagram toka</comment>
+ <comment xml:lang="he">תרשים זרימה של Kivio</comment>
+ <comment xml:lang="gl">gráfica de fluxo de Kivio</comment>
+ <comment xml:lang="ga">sreabhchairt Kivio</comment>
+ <comment xml:lang="fur">diagram di flus Kivio</comment>
+ <comment xml:lang="fr">diagramme de flux Kivio</comment>
+ <comment xml:lang="fo">Kivio leiðarit</comment>
+ <comment xml:lang="fi">Kivio-vuokaavio</comment>
+ <comment xml:lang="eu">Kivio diagrama</comment>
+ <comment xml:lang="es">diagrama de flujo de Kivio</comment>
+ <comment xml:lang="eo">Kivo-fluskemo</comment>
+ <comment xml:lang="en_GB">Kivio flowchart</comment>
+ <comment xml:lang="el">Διάγραμμα ροής Kivio</comment>
+ <comment xml:lang="de">Kivio-Flussdiagramm</comment>
+ <comment xml:lang="da">Kiviorutediagram</comment>
+ <comment xml:lang="cs">vývojový diagram Kivio</comment>
+ <comment xml:lang="ca">diagrama de flux de Kivio</comment>
+ <comment xml:lang="bg">Диаграма — Kivio</comment>
+ <comment xml:lang="be@latin">Blok-schiema Kivio</comment>
+ <comment xml:lang="be">блок-схема Kivio</comment>
+ <comment xml:lang="ar">قائمة تدفق Kivio</comment>
+ <comment xml:lang="af">Kivio-vloeidiagram</comment>
<generic-icon name="x-office-document"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kivio\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kivio\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kivio" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kivio" offset="38"/>
</match>
</match>
</magic>
@@ -14098,64 +15335,69 @@
</mime-type>
<mime-type type="application/x-kontour">
<comment>Kontour drawing</comment>
- <comment xml:lang="ar">تصميم Kontour</comment>
- <comment xml:lang="be@latin">Rysunak Kontour</comment>
- <comment xml:lang="bg">Чертеж — Kontour</comment>
- <comment xml:lang="ca">dibuix de Kontour</comment>
- <comment xml:lang="cs">kresba Kontour</comment>
- <comment xml:lang="da">Kontourtegning</comment>
- <comment xml:lang="de">Kontour-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Kontour</comment>
- <comment xml:lang="en_GB">Kontour drawing</comment>
- <comment xml:lang="eo">Kontour-grafikaĵo</comment>
- <comment xml:lang="es">dibujo de Kontour</comment>
- <comment xml:lang="eu">Kontour marrazkia</comment>
- <comment xml:lang="fi">Kontour-piirros</comment>
- <comment xml:lang="fo">Kontour tekning</comment>
- <comment xml:lang="fr">dessin Kontour</comment>
- <comment xml:lang="ga">líníocht Kontour</comment>
- <comment xml:lang="gl">debuxo de Kontour</comment>
- <comment xml:lang="he">ציור Kontour</comment>
- <comment xml:lang="hr">Kontour crtež</comment>
- <comment xml:lang="hu">Kontour-rajz</comment>
- <comment xml:lang="ia">Designo Kontour</comment>
- <comment xml:lang="id">Gambar Kontour</comment>
- <comment xml:lang="it">Disegno Kontour</comment>
- <comment xml:lang="ja">Kontour ドロー</comment>
- <comment xml:lang="kk">Kontour суреті</comment>
- <comment xml:lang="ko">Kontour 그림</comment>
- <comment xml:lang="lt">Kontour piešinys</comment>
- <comment xml:lang="lv">Kontour zīmējums</comment>
- <comment xml:lang="ms">Lukisan Kontour</comment>
- <comment xml:lang="nb">Kontour-tegning</comment>
- <comment xml:lang="nl">Kontour-tekening</comment>
- <comment xml:lang="nn">Kontour-teikning</comment>
- <comment xml:lang="oc">dessenh Kontour</comment>
- <comment xml:lang="pl">Rysunek Kontour</comment>
- <comment xml:lang="pt">desenho Kontour</comment>
- <comment xml:lang="pt_BR">Desenho do Kontour</comment>
- <comment xml:lang="ro">Desen Kontour</comment>
- <comment xml:lang="ru">Рисунок Kontour</comment>
- <comment xml:lang="sk">Kresba Kontour</comment>
- <comment xml:lang="sl">Datoteka risbe Kontour</comment>
- <comment xml:lang="sq">Vizatim Kontour</comment>
- <comment xml:lang="sr">Контуров цртеж</comment>
- <comment xml:lang="sv">Kontour-teckning</comment>
- <comment xml:lang="tr">Kontour çizimi</comment>
- <comment xml:lang="uk">малюнок Kontour</comment>
- <comment xml:lang="vi">Bản vẽ Kontour</comment>
- <comment xml:lang="zh_CN">Kontour 绘图</comment>
<comment xml:lang="zh_TW">Kontour 繪圖</comment>
+ <comment xml:lang="zh_CN">Kontour 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ Kontour</comment>
+ <comment xml:lang="uk">малюнок Kontour</comment>
+ <comment xml:lang="tr">Kontour çizimi</comment>
+ <comment xml:lang="sv">Kontour-teckning</comment>
+ <comment xml:lang="sr">Контуров цртеж</comment>
+ <comment xml:lang="sq">vizatim Kontour</comment>
+ <comment xml:lang="sl">Datoteka risbe Kontour</comment>
+ <comment xml:lang="si">කොන්ටූර් ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba Kontour</comment>
+ <comment xml:lang="ru">Рисунок Kontour</comment>
+ <comment xml:lang="ro">Desen Kontour</comment>
+ <comment xml:lang="pt_BR">Desenho do Kontour</comment>
+ <comment xml:lang="pt">desenho Kontour</comment>
+ <comment xml:lang="pl">Rysunek Kontour</comment>
+ <comment xml:lang="oc">dessenh Kontour</comment>
+ <comment xml:lang="nn">Kontour-teikning</comment>
+ <comment xml:lang="nl">Kontour-tekening</comment>
+ <comment xml:lang="nb">Kontour-tegning</comment>
+ <comment xml:lang="ms">Lukisan Kontour</comment>
+ <comment xml:lang="lv">Kontour zīmējums</comment>
+ <comment xml:lang="lt">Kontour piešinys</comment>
+ <comment xml:lang="ko">Kontour 그림</comment>
+ <comment xml:lang="kk">Kontour суреті</comment>
+ <comment xml:lang="ja">Kontour ドロー</comment>
+ <comment xml:lang="it">Disegno Kontour</comment>
+ <comment xml:lang="is">Kontour teikning</comment>
+ <comment xml:lang="id">Gambar Kontour</comment>
+ <comment xml:lang="ia">Designo Kontour</comment>
+ <comment xml:lang="hu">Kontour-rajz</comment>
+ <comment xml:lang="hr">Kontour crtež</comment>
+ <comment xml:lang="he">ציור Kontour</comment>
+ <comment xml:lang="gl">debuxo de Kontour</comment>
+ <comment xml:lang="ga">líníocht Kontour</comment>
+ <comment xml:lang="fur">dissen Kontour</comment>
+ <comment xml:lang="fr">dessin Kontour</comment>
+ <comment xml:lang="fo">Kontour tekning</comment>
+ <comment xml:lang="fi">Kontour-piirros</comment>
+ <comment xml:lang="eu">Kontour marrazkia</comment>
+ <comment xml:lang="es">dibujo de Kontour</comment>
+ <comment xml:lang="eo">Kontour-grafikaĵo</comment>
+ <comment xml:lang="en_GB">Kontour drawing</comment>
+ <comment xml:lang="el">Σχέδιο Kontour</comment>
+ <comment xml:lang="de">Kontour-Zeichnung</comment>
+ <comment xml:lang="da">Kontourtegning</comment>
+ <comment xml:lang="cs">kresba Kontour</comment>
+ <comment xml:lang="ca">dibuix de Kontour</comment>
+ <comment xml:lang="bg">Чертеж — Kontour</comment>
+ <comment xml:lang="be@latin">Rysunak Kontour</comment>
+ <comment xml:lang="be">рысунак Kontour</comment>
+ <comment xml:lang="ar">تصميم Kontour</comment>
+ <comment xml:lang="af">Kontour-tekening</comment>
<generic-icon name="image-x-generic"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kontour\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kontour\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kontour" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kontour" offset="38"/>
</match>
</match>
</magic>
@@ -14163,117 +15405,127 @@
</mime-type>
<mime-type type="application/x-kpovmodeler">
<comment>KPovModeler scene</comment>
- <comment xml:lang="ar">مشهد KPovModeler</comment>
- <comment xml:lang="be@latin">Scena KPovModeler</comment>
- <comment xml:lang="bg">Сцена — KPovModeler</comment>
- <comment xml:lang="ca">escena de KPovModeler</comment>
- <comment xml:lang="cs">scéna KPovModeler</comment>
- <comment xml:lang="da">KPovModeler-scene</comment>
- <comment xml:lang="de">KPovModeler-Szene</comment>
- <comment xml:lang="el">Σκηνή KPovModeler</comment>
- <comment xml:lang="en_GB">KPovModeler scene</comment>
- <comment xml:lang="eo">KPovModeler-sceno</comment>
- <comment xml:lang="es">escena de KPovModeler</comment>
- <comment xml:lang="eu">KPovModeler eszena</comment>
- <comment xml:lang="fi">KPovModeler-näkymä</comment>
- <comment xml:lang="fo">KPovModeler leikmynd</comment>
- <comment xml:lang="fr">scène KPovModeler</comment>
- <comment xml:lang="ga">radharc KPovModeler</comment>
- <comment xml:lang="gl">escena de KPovModeler</comment>
- <comment xml:lang="he">סצנת KPovModeler</comment>
- <comment xml:lang="hr">KPovModeler scena</comment>
- <comment xml:lang="hu">KPovModeler-jelenet</comment>
- <comment xml:lang="ia">Scena KPovModeler</comment>
- <comment xml:lang="id">Scene KPovModeler</comment>
- <comment xml:lang="it">Scena KPovModeler</comment>
- <comment xml:lang="ja">KPovModeler シーン</comment>
- <comment xml:lang="kk">KPovModeler сахнасы</comment>
- <comment xml:lang="ko">KPovModeler 장면</comment>
- <comment xml:lang="lt">KPovModeler scena</comment>
- <comment xml:lang="lv">KPovModeler aina</comment>
- <comment xml:lang="ms">Babak KPovModeler</comment>
- <comment xml:lang="nb">KPovModeler-scene</comment>
- <comment xml:lang="nl">KPovModeler-scène</comment>
- <comment xml:lang="nn">KPovModeler-scene</comment>
- <comment xml:lang="oc">scène KPovModeler</comment>
- <comment xml:lang="pl">Scena KPovModeler</comment>
- <comment xml:lang="pt">cenário KPovModeler</comment>
- <comment xml:lang="pt_BR">Cena do KPovModeler</comment>
- <comment xml:lang="ro">Scenă KPovModeler</comment>
- <comment xml:lang="ru">Сцена KPovModeler</comment>
- <comment xml:lang="sk">Scéna KPovModeler</comment>
- <comment xml:lang="sl">Datoteka scene KPovModeler</comment>
- <comment xml:lang="sq">Skenë KPovModeler</comment>
- <comment xml:lang="sr">сцена КПов Моделера</comment>
- <comment xml:lang="sv">KPovModeler-scen</comment>
- <comment xml:lang="tr">KPovModeler sahnesi</comment>
- <comment xml:lang="uk">сцена KPovModeler</comment>
- <comment xml:lang="vi">Cảnh KPovModeler</comment>
- <comment xml:lang="zh_CN">KPovModeler 场景</comment>
<comment xml:lang="zh_TW">KPovModeler 場景</comment>
+ <comment xml:lang="zh_CN">KPovModeler 场景</comment>
+ <comment xml:lang="vi">Cảnh KPovModeler</comment>
+ <comment xml:lang="uk">сцена KPovModeler</comment>
+ <comment xml:lang="tr">KPovModeler sahnesi</comment>
+ <comment xml:lang="sv">KPovModeler-scen</comment>
+ <comment xml:lang="sr">сцена КПов Моделера</comment>
+ <comment xml:lang="sq">skenë KPovModeler</comment>
+ <comment xml:lang="sl">Datoteka scene KPovModeler</comment>
+ <comment xml:lang="si">KPovModeler දර්ශනය</comment>
+ <comment xml:lang="sk">Scéna KPovModeler</comment>
+ <comment xml:lang="ru">Сцена KPovModeler</comment>
+ <comment xml:lang="ro">Scenă KPovModeler</comment>
+ <comment xml:lang="pt_BR">Cena do KPovModeler</comment>
+ <comment xml:lang="pt">cenário KPovModeler</comment>
+ <comment xml:lang="pl">Scena KPovModeler</comment>
+ <comment xml:lang="oc">scène KPovModeler</comment>
+ <comment xml:lang="nn">KPovModeler-scene</comment>
+ <comment xml:lang="nl">KPovModeler-scène</comment>
+ <comment xml:lang="nb">KPovModeler-scene</comment>
+ <comment xml:lang="ms">Babak KPovModeler</comment>
+ <comment xml:lang="lv">KPovModeler aina</comment>
+ <comment xml:lang="lt">KPovModeler scena</comment>
+ <comment xml:lang="ko">KPovModeler 장면</comment>
+ <comment xml:lang="kk">KPovModeler сахнасы</comment>
+ <comment xml:lang="ja">KPovModeler シーン</comment>
+ <comment xml:lang="it">Scena KPovModeler</comment>
+ <comment xml:lang="is">KPovModeler sviðsmynd</comment>
+ <comment xml:lang="id">Scene KPovModeler</comment>
+ <comment xml:lang="ia">Scena KPovModeler</comment>
+ <comment xml:lang="hu">KPovModeler-jelenet</comment>
+ <comment xml:lang="hr">KPovModeler scena</comment>
+ <comment xml:lang="he">סצנת KPovModeler</comment>
+ <comment xml:lang="gl">escena de KPovModeler</comment>
+ <comment xml:lang="ga">radharc KPovModeler</comment>
+ <comment xml:lang="fur">sene KPovModeler</comment>
+ <comment xml:lang="fr">scène KPovModeler</comment>
+ <comment xml:lang="fo">KPovModeler leikmynd</comment>
+ <comment xml:lang="fi">KPovModeler-näkymä</comment>
+ <comment xml:lang="eu">KPovModeler eszena</comment>
+ <comment xml:lang="es">escena de KPovModeler</comment>
+ <comment xml:lang="eo">KPovModeler-sceno</comment>
+ <comment xml:lang="en_GB">KPovModeler scene</comment>
+ <comment xml:lang="el">Σκηνή KPovModeler</comment>
+ <comment xml:lang="de">KPovModeler-Szene</comment>
+ <comment xml:lang="da">KPovModeler-scene</comment>
+ <comment xml:lang="cs">scéna KPovModeler</comment>
+ <comment xml:lang="ca">escena de KPovModeler</comment>
+ <comment xml:lang="bg">Сцена — KPovModeler</comment>
+ <comment xml:lang="be@latin">Scena KPovModeler</comment>
+ <comment xml:lang="be">сцэна KPovModeler</comment>
+ <comment xml:lang="ar">مشهد KPovModeler</comment>
+ <comment xml:lang="af">KPovModeler-toneel</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.kpm"/>
</mime-type>
<mime-type type="application/x-kpresenter">
<comment>KPresenter presentation</comment>
- <comment xml:lang="ar">عرض تقديمي KPresenter</comment>
- <comment xml:lang="be@latin">Prezentacyja KPresenter</comment>
- <comment xml:lang="bg">Презентация — KPresenter</comment>
- <comment xml:lang="ca">presentació de KPresenter</comment>
- <comment xml:lang="cs">prezentace KPresenter</comment>
- <comment xml:lang="da">KPresenter-præsentation</comment>
- <comment xml:lang="de">KPresenter-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση KPresenter</comment>
- <comment xml:lang="en_GB">KPresenter presentation</comment>
- <comment xml:lang="eo">KPresenter-prezentaĵo</comment>
- <comment xml:lang="es">presentación de KPresenter</comment>
- <comment xml:lang="eu">Kpresenter aurkezpena</comment>
- <comment xml:lang="fi">KPresenter-esitys</comment>
- <comment xml:lang="fo">KPresenter framløga</comment>
- <comment xml:lang="fr">présentation KPresenter</comment>
- <comment xml:lang="ga">láithreoireacht KPresenter</comment>
- <comment xml:lang="gl">presentación de KPresenter</comment>
- <comment xml:lang="he">מצגת KPresenter</comment>
- <comment xml:lang="hr">KPresenter prezentacija</comment>
- <comment xml:lang="hu">KPresenter-bemutató</comment>
- <comment xml:lang="ia">Presentation KPresenter</comment>
- <comment xml:lang="id">Presentasi KPresenter</comment>
- <comment xml:lang="it">Presentazione KPresenter</comment>
- <comment xml:lang="ja">KPresenter プレゼンテーション</comment>
- <comment xml:lang="kk">KPresenter презентациясы</comment>
- <comment xml:lang="ko">KPresenter 프레젠테이션</comment>
- <comment xml:lang="lt">KPresenter pateiktis</comment>
- <comment xml:lang="lv">KPresenter prezentācija</comment>
- <comment xml:lang="ms">Persembahan Kpresenter</comment>
- <comment xml:lang="nb">KPresenter-presentasjon</comment>
- <comment xml:lang="nl">KPresenter-presentatie</comment>
- <comment xml:lang="nn">KPresenter-presentasjon</comment>
- <comment xml:lang="oc">presentacion KPresenter</comment>
- <comment xml:lang="pl">Prezentacja KPresenter</comment>
- <comment xml:lang="pt">apresentação KPresenter</comment>
- <comment xml:lang="pt_BR">Apresentação do KPresenter</comment>
- <comment xml:lang="ro">Prezentare KPresenter</comment>
- <comment xml:lang="ru">Презентация KPresenter</comment>
- <comment xml:lang="sk">Prezentácia KPresenter</comment>
- <comment xml:lang="sl">Predstavitev KPresenter</comment>
- <comment xml:lang="sq">Prezantim i KPresenter</comment>
- <comment xml:lang="sr">презентација К-представљача</comment>
- <comment xml:lang="sv">KPresenter-presentation</comment>
- <comment xml:lang="tr">KPresenter sunum dosyası</comment>
- <comment xml:lang="uk">презентація KPresenter</comment>
- <comment xml:lang="vi">Trình diễn KPresenter</comment>
+ <comment xml:lang="zh_TW">KPresenter 簡報</comment>
<comment xml:lang="zh_CN">KPresenter 演示文稿</comment>
- <comment xml:lang="zh_TW">KPresenter 簡報檔</comment>
+ <comment xml:lang="vi">Trình diễn KPresenter</comment>
+ <comment xml:lang="uk">презентація KPresenter</comment>
+ <comment xml:lang="tr">KPresenter sunum dosyası</comment>
+ <comment xml:lang="sv">KPresenter-presentation</comment>
+ <comment xml:lang="sr">презентација К-представљача</comment>
+ <comment xml:lang="sq">paraqitje KPresenter</comment>
+ <comment xml:lang="sl">Predstavitev KPresenter</comment>
+ <comment xml:lang="si">KPresenter ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia KPresenter</comment>
+ <comment xml:lang="ru">Презентация KPresenter</comment>
+ <comment xml:lang="ro">Prezentare KPresenter</comment>
+ <comment xml:lang="pt_BR">Apresentação do KPresenter</comment>
+ <comment xml:lang="pt">apresentação KPresenter</comment>
+ <comment xml:lang="pl">Prezentacja KPresenter</comment>
+ <comment xml:lang="oc">presentacion KPresenter</comment>
+ <comment xml:lang="nn">KPresenter-presentasjon</comment>
+ <comment xml:lang="nl">KPresenter-presentatie</comment>
+ <comment xml:lang="nb">KPresenter-presentasjon</comment>
+ <comment xml:lang="ms">Persembahan Kpresenter</comment>
+ <comment xml:lang="lv">KPresenter prezentācija</comment>
+ <comment xml:lang="lt">KPresenter pateiktis</comment>
+ <comment xml:lang="ko">KPresenter 프레젠테이션</comment>
+ <comment xml:lang="kk">KPresenter презентациясы</comment>
+ <comment xml:lang="ja">KPresenter プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione KPresenter</comment>
+ <comment xml:lang="is">KPresenter framsetning</comment>
+ <comment xml:lang="id">Presentasi KPresenter</comment>
+ <comment xml:lang="ia">Presentation KPresenter</comment>
+ <comment xml:lang="hu">KPresenter-bemutató</comment>
+ <comment xml:lang="hr">KPresenter prezentacija</comment>
+ <comment xml:lang="he">מצגת KPresenter</comment>
+ <comment xml:lang="gl">presentación de KPresenter</comment>
+ <comment xml:lang="ga">láithreoireacht KPresenter</comment>
+ <comment xml:lang="fur">presentazion KPresenter</comment>
+ <comment xml:lang="fr">présentation KPresenter</comment>
+ <comment xml:lang="fo">KPresenter framløga</comment>
+ <comment xml:lang="fi">KPresenter-esitys</comment>
+ <comment xml:lang="eu">Kpresenter aurkezpena</comment>
+ <comment xml:lang="es">presentación de KPresenter</comment>
+ <comment xml:lang="eo">KPresenter-prezentaĵo</comment>
+ <comment xml:lang="en_GB">KPresenter presentation</comment>
+ <comment xml:lang="el">Παρουσίαση KPresenter</comment>
+ <comment xml:lang="de">KPresenter-Präsentation</comment>
+ <comment xml:lang="da">KPresenter-præsentation</comment>
+ <comment xml:lang="cs">prezentace KPresenter</comment>
+ <comment xml:lang="ca">presentació de KPresenter</comment>
+ <comment xml:lang="bg">Презентация — KPresenter</comment>
+ <comment xml:lang="be@latin">Prezentacyja KPresenter</comment>
+ <comment xml:lang="be">прэзентацыя KPresenter</comment>
+ <comment xml:lang="ar">عرض تقديمي KPresenter</comment>
+ <comment xml:lang="af">KPresenter-voorlegging</comment>
<generic-icon name="x-office-presentation"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kpresenter\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kpresenter\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kpresenter" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kpresenter" offset="38"/>
</match>
</match>
</magic>
@@ -14282,130 +15534,144 @@
</mime-type>
<mime-type type="application/x-krita">
<comment>Krita document</comment>
- <comment xml:lang="ar">مستند Krita</comment>
- <comment xml:lang="ast">Documentu de Krita</comment>
- <comment xml:lang="be@latin">Dakument Krita</comment>
- <comment xml:lang="bg">Документ — Krita</comment>
- <comment xml:lang="ca">document Krita</comment>
- <comment xml:lang="cs">dokument Krita</comment>
- <comment xml:lang="da">Kritadokument</comment>
- <comment xml:lang="de">Krita-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Krita</comment>
- <comment xml:lang="en_GB">Krita document</comment>
- <comment xml:lang="eo">Krita-dokumento</comment>
- <comment xml:lang="es">documento de Krita</comment>
- <comment xml:lang="eu">Krita dokumentua</comment>
- <comment xml:lang="fi">Krita-asiakirja</comment>
- <comment xml:lang="fo">Krita skjal</comment>
- <comment xml:lang="fr">document Krita</comment>
- <comment xml:lang="ga">cáipéis Krita</comment>
- <comment xml:lang="gl">documento de Krita</comment>
- <comment xml:lang="he">מסמך Krita</comment>
- <comment xml:lang="hr">Krita dokument</comment>
- <comment xml:lang="hu">Krita-dokumentum</comment>
- <comment xml:lang="ia">Documento Krita</comment>
- <comment xml:lang="id">Dokumen Krita</comment>
- <comment xml:lang="it">Documento Krita</comment>
- <comment xml:lang="ja">Krita ドキュメント</comment>
- <comment xml:lang="kk">Krita құжаты</comment>
- <comment xml:lang="ko">Krita 문서</comment>
- <comment xml:lang="lt">Krita dokumentas</comment>
- <comment xml:lang="lv">Krita dokuments</comment>
- <comment xml:lang="ms">Dokumen Krita</comment>
- <comment xml:lang="nb">Krita-dokument</comment>
- <comment xml:lang="nl">Krita-document</comment>
- <comment xml:lang="nn">Krita-dokument</comment>
- <comment xml:lang="oc">document Krita</comment>
- <comment xml:lang="pl">Dokument Krita</comment>
- <comment xml:lang="pt">documento Krita</comment>
- <comment xml:lang="pt_BR">Documento do Krita</comment>
- <comment xml:lang="ro">Document Krita</comment>
- <comment xml:lang="ru">Документ Krita</comment>
- <comment xml:lang="sk">Dokument Krita</comment>
- <comment xml:lang="sl">Dokument Krita</comment>
- <comment xml:lang="sq">Dokument Krita</comment>
- <comment xml:lang="sr">документ Крите</comment>
- <comment xml:lang="sv">Krita-dokument</comment>
- <comment xml:lang="tr">Krita belgesi</comment>
- <comment xml:lang="uk">документ Krita</comment>
- <comment xml:lang="vi">Tài liệu Krita</comment>
- <comment xml:lang="zh_CN">Krita 文档</comment>
<comment xml:lang="zh_TW">Krita 文件</comment>
+ <comment xml:lang="zh_CN">Krita 文档</comment>
+ <comment xml:lang="vi">Tài liệu Krita</comment>
+ <comment xml:lang="uk">документ Krita</comment>
+ <comment xml:lang="tr">Krita belgesi</comment>
+ <comment xml:lang="sv">Krita-dokument</comment>
+ <comment xml:lang="sr">документ Крите</comment>
+ <comment xml:lang="sq">dokument Krita</comment>
+ <comment xml:lang="sl">Dokument Krita</comment>
+ <comment xml:lang="si">ක්‍රිටා ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Krita</comment>
+ <comment xml:lang="ru">Документ Krita</comment>
+ <comment xml:lang="ro">Document Krita</comment>
+ <comment xml:lang="pt_BR">Documento do Krita</comment>
+ <comment xml:lang="pt">documento Krita</comment>
+ <comment xml:lang="pl">Dokument Krita</comment>
+ <comment xml:lang="oc">document Krita</comment>
+ <comment xml:lang="nn">Krita-dokument</comment>
+ <comment xml:lang="nl">Krita-document</comment>
+ <comment xml:lang="nb">Krita-dokument</comment>
+ <comment xml:lang="ms">Dokumen Krita</comment>
+ <comment xml:lang="lv">Krita dokuments</comment>
+ <comment xml:lang="lt">Krita dokumentas</comment>
+ <comment xml:lang="ko">Krita 문서</comment>
+ <comment xml:lang="kk">Krita құжаты</comment>
+ <comment xml:lang="ja">Krita ドキュメント</comment>
+ <comment xml:lang="it">Documento Krita</comment>
+ <comment xml:lang="is">Krita skjal</comment>
+ <comment xml:lang="id">Dokumen Krita</comment>
+ <comment xml:lang="ia">Documento Krita</comment>
+ <comment xml:lang="hu">Krita-dokumentum</comment>
+ <comment xml:lang="hr">Krita dokument</comment>
+ <comment xml:lang="he">מסמך Krita</comment>
+ <comment xml:lang="gl">documento de Krita</comment>
+ <comment xml:lang="ga">cáipéis Krita</comment>
+ <comment xml:lang="fur">document Krita</comment>
+ <comment xml:lang="fr">document Krita</comment>
+ <comment xml:lang="fo">Krita skjal</comment>
+ <comment xml:lang="fi">Krita-asiakirja</comment>
+ <comment xml:lang="eu">Krita dokumentua</comment>
+ <comment xml:lang="es">documento de Krita</comment>
+ <comment xml:lang="eo">Krita-dokumento</comment>
+ <comment xml:lang="en_GB">Krita document</comment>
+ <comment xml:lang="el">Έγγραφο Krita</comment>
+ <comment xml:lang="de">Krita-Dokument</comment>
+ <comment xml:lang="da">Kritadokument</comment>
+ <comment xml:lang="cs">dokument Krita</comment>
+ <comment xml:lang="ca">document de Krita</comment>
+ <comment xml:lang="bg">Документ — Krita</comment>
+ <comment xml:lang="be@latin">Dakument Krita</comment>
+ <comment xml:lang="be">дакумент Krita</comment>
+ <comment xml:lang="ast">Documentu de Krita</comment>
+ <comment xml:lang="ar">مستند Krita</comment>
+ <comment xml:lang="af">Krita-dokument</comment>
<generic-icon name="x-office-document"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-krita\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-krita\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-krita" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <!-- Depending on the zip library and whether a 32 or 64 bits zip file is used, the offset is different. -->
+ <match type="string" value="application/x-krita" offset="38"/>
+ <match type="string" value="application/x-krita" offset="42"/>
+ <match type="string" value="application/x-krita" offset="63"/>
</match>
</match>
</magic>
<glob pattern="*.kra"/>
+ <glob pattern="*.krz"/>
</mime-type>
<mime-type type="application/x-kspread">
<comment>KSpread spreadsheet</comment>
- <comment xml:lang="ar">جدول KSpread</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš KSpread</comment>
- <comment xml:lang="bg">Таблица — KSpread</comment>
- <comment xml:lang="ca">full de càlcul de KSpread</comment>
- <comment xml:lang="cs">sešit KSpread</comment>
- <comment xml:lang="da">KSpread-regneark</comment>
- <comment xml:lang="de">KSpread-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο KSpread</comment>
- <comment xml:lang="en_GB">KSpread spreadsheet</comment>
- <comment xml:lang="eo">KSpread-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo de KSpread</comment>
- <comment xml:lang="eu">KSpread kalkulu-orria</comment>
- <comment xml:lang="fi">KSpread-taulukko</comment>
- <comment xml:lang="fo">KSpread rokniark</comment>
- <comment xml:lang="fr">feuille de calcul KSpread</comment>
- <comment xml:lang="ga">scarbhileog KSpread</comment>
- <comment xml:lang="gl">folla de cálculo de KSpread</comment>
- <comment xml:lang="he">גליון נתונים של Kspread</comment>
- <comment xml:lang="hr">KSpread proračunska tablica</comment>
- <comment xml:lang="hu">KSpread-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo KSpread</comment>
- <comment xml:lang="id">Lembar sebar KSpread</comment>
- <comment xml:lang="it">Foglio di calcolo KSpread</comment>
- <comment xml:lang="ja">KSpread スプレッドシート</comment>
- <comment xml:lang="kk">KSpread электрондық кестесі</comment>
- <comment xml:lang="ko">KSpread 스프레드시트</comment>
- <comment xml:lang="lt">KSpread skaičialentė</comment>
- <comment xml:lang="lv">KSpread izklājlapa</comment>
- <comment xml:lang="ms">Hamparan KSpread</comment>
- <comment xml:lang="nb">KSpread-regneark</comment>
- <comment xml:lang="nl">KSpread-rekenblad</comment>
- <comment xml:lang="nn">KSpread-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul KSpread</comment>
- <comment xml:lang="pl">Arkusz KSpread</comment>
- <comment xml:lang="pt">folha de cálculo KSpread</comment>
- <comment xml:lang="pt_BR">Planilha do KSpread</comment>
- <comment xml:lang="ro">Foaie de calcul KSpread</comment>
- <comment xml:lang="ru">Электронная таблица KSpread</comment>
- <comment xml:lang="sk">Zošit KSpread</comment>
- <comment xml:lang="sl">Preglednica KSpread</comment>
- <comment xml:lang="sq">Fletë llogaritjesh KSpread</comment>
- <comment xml:lang="sr">табела К-табеле</comment>
- <comment xml:lang="sv">KSpread-kalkylblad</comment>
- <comment xml:lang="tr">KSpread çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця KSpread</comment>
- <comment xml:lang="vi">Bảng tính KSpread</comment>
- <comment xml:lang="zh_CN">KSpread 电子表格</comment>
<comment xml:lang="zh_TW">KSpread 試算表</comment>
+ <comment xml:lang="zh_CN">KSpread 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính KSpread</comment>
+ <comment xml:lang="uk">електронна таблиця KSpread</comment>
+ <comment xml:lang="tr">KSpread hesap çizelgesi</comment>
+ <comment xml:lang="sv">KSpread-kalkylblad</comment>
+ <comment xml:lang="sr">табела К-табеле</comment>
+ <comment xml:lang="sq">fletëllogaritje KSpread</comment>
+ <comment xml:lang="sl">Preglednica KSpread</comment>
+ <comment xml:lang="si">KSpread පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit KSpread</comment>
+ <comment xml:lang="ru">Электронная таблица KSpread</comment>
+ <comment xml:lang="ro">Foaie de calcul KSpread</comment>
+ <comment xml:lang="pt_BR">Planilha do KSpread</comment>
+ <comment xml:lang="pt">folha de cálculo KSpread</comment>
+ <comment xml:lang="pl">Arkusz KSpread</comment>
+ <comment xml:lang="oc">fuèlh de calcul KSpread</comment>
+ <comment xml:lang="nn">KSpread-rekneark</comment>
+ <comment xml:lang="nl">KSpread-rekenblad</comment>
+ <comment xml:lang="nb">KSpread-regneark</comment>
+ <comment xml:lang="ms">Hamparan KSpread</comment>
+ <comment xml:lang="lv">KSpread izklājlapa</comment>
+ <comment xml:lang="lt">KSpread skaičialentė</comment>
+ <comment xml:lang="ko">KSpread 스프레드시트</comment>
+ <comment xml:lang="kk">KSpread электрондық кестесі</comment>
+ <comment xml:lang="ja">KSpread スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo KSpread</comment>
+ <comment xml:lang="is">KSpread töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar KSpread</comment>
+ <comment xml:lang="ia">Folio de calculo KSpread</comment>
+ <comment xml:lang="hu">KSpread-munkafüzet</comment>
+ <comment xml:lang="hr">KSpread proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Kspread</comment>
+ <comment xml:lang="gl">folla de cálculo de KSpread</comment>
+ <comment xml:lang="ga">scarbhileog KSpread</comment>
+ <comment xml:lang="fur">sfuei di calcul KSpread</comment>
+ <comment xml:lang="fr">feuille de calcul KSpread</comment>
+ <comment xml:lang="fo">KSpread rokniark</comment>
+ <comment xml:lang="fi">KSpread-taulukko</comment>
+ <comment xml:lang="eu">KSpread kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de KSpread</comment>
+ <comment xml:lang="eo">KSpread-kalkultabelo</comment>
+ <comment xml:lang="en_GB">KSpread spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο KSpread</comment>
+ <comment xml:lang="de">KSpread-Tabelle</comment>
+ <comment xml:lang="da">KSpread-regneark</comment>
+ <comment xml:lang="cs">sešit KSpread</comment>
+ <comment xml:lang="ca">full de càlcul de KSpread</comment>
+ <comment xml:lang="bg">Таблица — KSpread</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš KSpread</comment>
+ <comment xml:lang="be">электронная табліца KSpread</comment>
+ <comment xml:lang="ar">جدول KSpread</comment>
+ <comment xml:lang="af">KSpread-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kspread\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kspread\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kspread" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kspread" offset="38"/>
</match>
</match>
</magic>
@@ -14413,230 +15679,249 @@
</mime-type>
<mime-type type="application/x-kspread-crypt">
<comment>KSpread spreadsheet (encrypted)</comment>
- <comment xml:lang="ar">جدول KSpread (مشفر)</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš KSpread (zašyfravany)</comment>
- <comment xml:lang="bg">Таблица — KSpread, шифрирана</comment>
- <comment xml:lang="ca">full de càlcul de KSpread (xifrat)</comment>
- <comment xml:lang="cs">sešit KSpread (šifrovaný)</comment>
- <comment xml:lang="da">KSpread-regneark (krypteret)</comment>
- <comment xml:lang="de">KSpread-Tabelle (verschlüsselt)</comment>
- <comment xml:lang="el">Λογιστικό φύλλο KSpread (κρυπτογραφημένο)</comment>
- <comment xml:lang="en_GB">KSpread spreadsheet (encrypted)</comment>
- <comment xml:lang="eo">KSpread-kalkultabelo (ĉifrita)</comment>
- <comment xml:lang="es">hoja de cálculo de KSpread (cifrada)</comment>
- <comment xml:lang="eu">KSpread kalkulu-orria (enkriptatua)</comment>
- <comment xml:lang="fi">KSpread-taulukko (salattu)</comment>
- <comment xml:lang="fo">KSpread rokniark (bronglað)</comment>
- <comment xml:lang="fr">feuille de calcul KSpread (chiffrée)</comment>
- <comment xml:lang="ga">scarbhileog KSpread (criptithe)</comment>
- <comment xml:lang="gl">folla de cálculo de KSpread (cifrada)</comment>
- <comment xml:lang="he">גליון נתונים של KSpread (מוצפן)</comment>
- <comment xml:lang="hr">KSpread proračunska tablica (šifrirana)</comment>
- <comment xml:lang="hu">KSpread-munkafüzet (titkosított)</comment>
- <comment xml:lang="ia">Folio de calculo KSpread (cryptate)</comment>
- <comment xml:lang="id">Lembar sebar KSpread (terenkripsi)</comment>
- <comment xml:lang="it">Foglio di calcolo KSpread (cifrato)</comment>
- <comment xml:lang="ja">KSpread (暗号化) スプレッドシート</comment>
- <comment xml:lang="kk">KSpread электрондық кестесі (шифрленген)</comment>
- <comment xml:lang="ko">암호화된 KSpread 스프레드시트</comment>
- <comment xml:lang="lt">KSpread skaičialentė (užšifruota)</comment>
- <comment xml:lang="lv">KSpread izklājlapa (šifrēta)</comment>
- <comment xml:lang="ms">Hampatan KSpread (terenkripsi)</comment>
- <comment xml:lang="nb">KSpread-regneark (kryptert)</comment>
- <comment xml:lang="nl">KSpread-rekenblad (versleuteld)</comment>
- <comment xml:lang="nn">Kryptert KSpread-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul KSpread (chifrada)</comment>
- <comment xml:lang="pl">Arkusz KSpread (zaszyfrowany)</comment>
- <comment xml:lang="pt">folha de cálculo KSpread (encriptada)</comment>
- <comment xml:lang="pt_BR">Planilha do KSpread (criptografada)</comment>
- <comment xml:lang="ro">Foaie de calcul KSpread (criptat)</comment>
- <comment xml:lang="ru">Электронная таблица KSpread (зашифрованная)</comment>
- <comment xml:lang="sk">Zošit KSpread (šifrovaný)</comment>
- <comment xml:lang="sl">Preglednica KSpread (šifrirana)</comment>
- <comment xml:lang="sq">Fletë llogaritjesh KSpread (e kriptuar)</comment>
- <comment xml:lang="sr">табела К-табеле (шифрована)</comment>
- <comment xml:lang="sv">KSpread-kalkylblad (krypterat)</comment>
- <comment xml:lang="tr">KSpread çalışma sayfası (şifreli)</comment>
- <comment xml:lang="uk">ел. таблиця KSpread (зашифрована)</comment>
- <comment xml:lang="vi">Bảng tính KSpread (đã mật mã)</comment>
+ <comment xml:lang="zh_TW">KSpread 試算表 (加密)</comment>
<comment xml:lang="zh_CN">KSpread 电子表格(加密)</comment>
- <comment xml:lang="zh_TW">KSpread 試算表 (已加密)</comment>
+ <comment xml:lang="vi">Bảng tính KSpread (đã mật mã)</comment>
+ <comment xml:lang="uk">електронна таблиця KSpread (зашифрована)</comment>
+ <comment xml:lang="tr">KSpread hesap çizelgesi (şifreli)</comment>
+ <comment xml:lang="sv">KSpread-kalkylblad (krypterat)</comment>
+ <comment xml:lang="sr">табела К-табеле (шифрована)</comment>
+ <comment xml:lang="sq">fletëllogaritje KSpread (e fshehtëzuar)</comment>
+ <comment xml:lang="sl">Preglednica KSpread (šifrirana)</comment>
+ <comment xml:lang="si">KSpread පැතුරුම්පත (සංකේතනය කළ)</comment>
+ <comment xml:lang="sk">Zošit KSpread (šifrovaný)</comment>
+ <comment xml:lang="ru">Электронная таблица KSpread (зашифрованная)</comment>
+ <comment xml:lang="ro">Foaie de calcul KSpread (criptat)</comment>
+ <comment xml:lang="pt_BR">Planilha do KSpread (criptografada)</comment>
+ <comment xml:lang="pt">folha de cálculo KSpread (encriptada)</comment>
+ <comment xml:lang="pl">Arkusz KSpread (zaszyfrowany)</comment>
+ <comment xml:lang="oc">fuèlh de calcul KSpread (chifrada)</comment>
+ <comment xml:lang="nn">Kryptert KSpread-rekneark</comment>
+ <comment xml:lang="nl">KSpread-rekenblad (versleuteld)</comment>
+ <comment xml:lang="nb">KSpread-regneark (kryptert)</comment>
+ <comment xml:lang="ms">Hampatan KSpread (terenkripsi)</comment>
+ <comment xml:lang="lv">KSpread izklājlapa (šifrēta)</comment>
+ <comment xml:lang="lt">KSpread skaičialentė (užšifruota)</comment>
+ <comment xml:lang="ko">암호화된 KSpread 스프레드시트</comment>
+ <comment xml:lang="kk">KSpread электрондық кестесі (шифрленген)</comment>
+ <comment xml:lang="ja">KSpread (暗号化) スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo KSpread (cifrato)</comment>
+ <comment xml:lang="is">KSpread töflureikniskjal (dulritað)</comment>
+ <comment xml:lang="id">Lembar sebar KSpread (terenkripsi)</comment>
+ <comment xml:lang="ia">Folio de calculo KSpread (cryptate)</comment>
+ <comment xml:lang="hu">KSpread-munkafüzet (titkosított)</comment>
+ <comment xml:lang="hr">KSpread proračunska tablica (šifrirana)</comment>
+ <comment xml:lang="he">גיליון נתונים של KSpread (מוצפן)</comment>
+ <comment xml:lang="gl">folla de cálculo de KSpread (cifrada)</comment>
+ <comment xml:lang="ga">scarbhileog KSpread (criptithe)</comment>
+ <comment xml:lang="fur">sfuei di calcul KSpread (cifrât)</comment>
+ <comment xml:lang="fr">feuille de calcul KSpread (chiffrée)</comment>
+ <comment xml:lang="fo">KSpread rokniark (bronglað)</comment>
+ <comment xml:lang="fi">KSpread-taulukko (salattu)</comment>
+ <comment xml:lang="eu">KSpread kalkulu-orria (zifratuta)</comment>
+ <comment xml:lang="es">hoja de cálculo de KSpread (cifrada)</comment>
+ <comment xml:lang="eo">KSpread-kalkultabelo (ĉifrita)</comment>
+ <comment xml:lang="en_GB">KSpread spreadsheet (encrypted)</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο KSpread (κρυπτογραφημένο)</comment>
+ <comment xml:lang="de">KSpread-Tabelle (verschlüsselt)</comment>
+ <comment xml:lang="da">KSpread-regneark (krypteret)</comment>
+ <comment xml:lang="cs">sešit KSpread (šifrovaný)</comment>
+ <comment xml:lang="ca">full de càlcul de KSpread (xifrat)</comment>
+ <comment xml:lang="bg">Таблица — KSpread, шифрирана</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš KSpread (zašyfravany)</comment>
+ <comment xml:lang="be">электронная табліца KSpread (зашыфравана)</comment>
+ <comment xml:lang="ar">جدول KSpread (مشفر)</comment>
+ <comment xml:lang="af">KSpread-sigblad (geënkripteer)</comment>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="0x0d1a2702" type="big32" offset="0"/>
+ <magic>
+ <match type="big32" value="0x0d1a2702" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-ksysv-package">
<comment>KSysV init package</comment>
- <comment xml:lang="ar">حزمة KSysV init</comment>
- <comment xml:lang="be@latin">Inicyjalny pakunak KSysV</comment>
- <comment xml:lang="bg">Пакет — KSysV init</comment>
- <comment xml:lang="ca">paquet d'inici KSysV</comment>
- <comment xml:lang="cs">balíček init KSysV</comment>
- <comment xml:lang="da">KSsV init-pakke</comment>
- <comment xml:lang="de">KSysV-Init-Paket</comment>
- <comment xml:lang="el">Αρχικό πακέτο KSysV</comment>
- <comment xml:lang="en_GB">KSysV init package</comment>
- <comment xml:lang="es">paquete de configuración de init para KSysV</comment>
- <comment xml:lang="eu">KSysV hasieratzeko paketea</comment>
- <comment xml:lang="fi">KSysV init -paketti</comment>
- <comment xml:lang="fo">KSysV init pakki</comment>
- <comment xml:lang="fr">paquet d'initialisation KSysV</comment>
- <comment xml:lang="ga">pacáiste túsaithe KSysV</comment>
- <comment xml:lang="gl">paquete de KsysV init</comment>
- <comment xml:lang="he">חבילת KSysV init</comment>
- <comment xml:lang="hr">KSysV init paket</comment>
- <comment xml:lang="hu">KSysV init csomag</comment>
- <comment xml:lang="ia">Pacchetto de initialisation KSysV</comment>
- <comment xml:lang="id">Paket init KSysV</comment>
- <comment xml:lang="it">Pacchetto init KSysV</comment>
- <comment xml:lang="ja">KSysV init パッケージ</comment>
- <comment xml:lang="kk">KSysV инициализация дестесі</comment>
- <comment xml:lang="ko">KSysV init 패키지</comment>
- <comment xml:lang="lt">KSysV init paketas</comment>
- <comment xml:lang="lv">KSysV inicializācijas pakotne</comment>
- <comment xml:lang="nb">KSysV init-pakke</comment>
- <comment xml:lang="nl">KSysV-init-pakket</comment>
- <comment xml:lang="nn">KSysV init-pakke</comment>
- <comment xml:lang="oc">paquet d'initializacion KSysV</comment>
- <comment xml:lang="pl">Pakiet KSysV init</comment>
- <comment xml:lang="pt">pacote inicial KSysV</comment>
- <comment xml:lang="pt_BR">Pacote init do KSysV</comment>
- <comment xml:lang="ro">Pachet KSysV init</comment>
- <comment xml:lang="ru">Пакет инициализации KSysV</comment>
- <comment xml:lang="sk">Balíček KSysV init</comment>
- <comment xml:lang="sl">Datoteka paketa KSysV init</comment>
- <comment xml:lang="sq">Paketë init KSysV</comment>
- <comment xml:lang="sr">КСисВ побудни пакет</comment>
- <comment xml:lang="sv">KSysV init-paket</comment>
- <comment xml:lang="tr">KSysV init paketi</comment>
- <comment xml:lang="uk">пакунок KSysV init</comment>
- <comment xml:lang="vi">Gói sở khởi KSysV</comment>
- <comment xml:lang="zh_CN">KSysV init 软件包</comment>
<comment xml:lang="zh_TW">KSysV init 軟體包</comment>
+ <comment xml:lang="zh_CN">KSysV init 软件包</comment>
+ <comment xml:lang="vi">Gói sở khởi KSysV</comment>
+ <comment xml:lang="uk">пакунок KSysV init</comment>
+ <comment xml:lang="tr">KSysV init paketi</comment>
+ <comment xml:lang="sv">KSysV init-paket</comment>
+ <comment xml:lang="sr">КСисВ побудни пакет</comment>
+ <comment xml:lang="sq">paketë init KSysV</comment>
+ <comment xml:lang="sl">Datoteka paketa KSysV init</comment>
+ <comment xml:lang="si">KSysV init පැකේජය</comment>
+ <comment xml:lang="sk">Balíček KSysV init</comment>
+ <comment xml:lang="ru">Пакет инициализации KSysV</comment>
+ <comment xml:lang="ro">Pachet KSysV init</comment>
+ <comment xml:lang="pt_BR">Pacote init do KSysV</comment>
+ <comment xml:lang="pt">pacote inicial KSysV</comment>
+ <comment xml:lang="pl">Pakiet KSysV init</comment>
+ <comment xml:lang="oc">paquet d'initializacion KSysV</comment>
+ <comment xml:lang="nn">KSysV init-pakke</comment>
+ <comment xml:lang="nl">KSysV-init-pakket</comment>
+ <comment xml:lang="nb">KSysV init-pakke</comment>
+ <comment xml:lang="lv">KSysV inicializācijas pakotne</comment>
+ <comment xml:lang="lt">KSysV init paketas</comment>
+ <comment xml:lang="ko">KSysV init 패키지</comment>
+ <comment xml:lang="kk">KSysV инициализация дестесі</comment>
+ <comment xml:lang="ja">KSysV init パッケージ</comment>
+ <comment xml:lang="it">Pacchetto init KSysV</comment>
+ <comment xml:lang="is">KSysV init-pakki</comment>
+ <comment xml:lang="id">Paket init KSysV</comment>
+ <comment xml:lang="ia">Pacchetto de initialisation KSysV</comment>
+ <comment xml:lang="hu">KSysV init csomag</comment>
+ <comment xml:lang="hr">KSysV init paket</comment>
+ <comment xml:lang="he">חבילת KSysV init</comment>
+ <comment xml:lang="gl">paquete de KsysV init</comment>
+ <comment xml:lang="ga">pacáiste túsaithe KSysV</comment>
+ <comment xml:lang="fur">pachet init KSysV</comment>
+ <comment xml:lang="fr">paquet d'initialisation KSysV</comment>
+ <comment xml:lang="fo">KSysV init pakki</comment>
+ <comment xml:lang="fi">KSysV init -paketti</comment>
+ <comment xml:lang="eu">KSysV hasieratzeko paketea</comment>
+ <comment xml:lang="es">paquete de configuración de init para KSysV</comment>
+ <comment xml:lang="en_GB">KSysV init package</comment>
+ <comment xml:lang="el">Αρχικό πακέτο KSysV</comment>
+ <comment xml:lang="de">KSysV-Init-Paket</comment>
+ <comment xml:lang="da">KSsV init-pakke</comment>
+ <comment xml:lang="cs">balíček init KSysV</comment>
+ <comment xml:lang="ca">paquet de KSysV init</comment>
+ <comment xml:lang="bg">Пакет — KSysV init</comment>
+ <comment xml:lang="be@latin">Inicyjalny pakunak KSysV</comment>
+ <comment xml:lang="be">пакет ініцыялізацыі KSysV</comment>
+ <comment xml:lang="ar">حزمة KSysV init</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="KSysV" type="string" offset="4">
- <match value="1" type="byte" offset="15"/>
+ <magic>
+ <match type="string" value="KSysV" offset="4">
+ <match type="byte" value="1" offset="15"/>
</match>
</magic>
</mime-type>
<mime-type type="application/x-kugar">
<comment>Kugar document</comment>
- <comment xml:lang="ar">مستند Kugar</comment>
- <comment xml:lang="ast">Documentu de Kugar</comment>
- <comment xml:lang="be@latin">Dakument Kugar</comment>
- <comment xml:lang="bg">Документ — Kugar</comment>
- <comment xml:lang="ca">document Kugar</comment>
- <comment xml:lang="cs">dokument Kugar</comment>
- <comment xml:lang="da">Kugardokument</comment>
- <comment xml:lang="de">Kugar-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Kugar</comment>
- <comment xml:lang="en_GB">Kugar document</comment>
- <comment xml:lang="eo">Kugar-dokumento</comment>
- <comment xml:lang="es">documento de Kugar</comment>
- <comment xml:lang="eu">Kugar dokumentua</comment>
- <comment xml:lang="fi">Kugar-asiakirja</comment>
- <comment xml:lang="fo">Kugar skjal</comment>
- <comment xml:lang="fr">document Kugar</comment>
- <comment xml:lang="ga">cáipéis Kugar</comment>
- <comment xml:lang="gl">documento de Kugar</comment>
- <comment xml:lang="he">מסמך Kugar</comment>
- <comment xml:lang="hr">Kugar dokument</comment>
- <comment xml:lang="hu">Kugar-dokumentum</comment>
- <comment xml:lang="ia">Documento Kugar</comment>
- <comment xml:lang="id">Dokumen Kugar</comment>
- <comment xml:lang="it">Documento Kugar</comment>
- <comment xml:lang="ja">Kugar ドキュメント</comment>
- <comment xml:lang="kk">Kugar құжаты</comment>
- <comment xml:lang="ko">Kugar 문서</comment>
- <comment xml:lang="lt">Kugar dokumentas</comment>
- <comment xml:lang="lv">Kugar dokuments</comment>
- <comment xml:lang="ms">Dokumen Kugar</comment>
- <comment xml:lang="nb">Kugar-dokument</comment>
- <comment xml:lang="nl">Kugar-document</comment>
- <comment xml:lang="nn">Kugar-dokument</comment>
- <comment xml:lang="oc">document Kugar</comment>
- <comment xml:lang="pl">Dokument Kuguar</comment>
- <comment xml:lang="pt">documento Kugar</comment>
- <comment xml:lang="pt_BR">Documento do Kugar</comment>
- <comment xml:lang="ro">Document Kugar</comment>
- <comment xml:lang="ru">Документ Kugar</comment>
- <comment xml:lang="sk">Dokument Kugar</comment>
- <comment xml:lang="sl">Dokument Kugar</comment>
- <comment xml:lang="sq">Dokument Kugar</comment>
- <comment xml:lang="sr">документ Кугара</comment>
- <comment xml:lang="sv">Kugar-dokument</comment>
- <comment xml:lang="tr">Kugar belgesi</comment>
- <comment xml:lang="uk">документ Kugar</comment>
- <comment xml:lang="vi">Tài liệu Kugar</comment>
- <comment xml:lang="zh_CN">Kugar 文档</comment>
<comment xml:lang="zh_TW">Kugar 文件</comment>
+ <comment xml:lang="zh_CN">Kugar 文档</comment>
+ <comment xml:lang="vi">Tài liệu Kugar</comment>
+ <comment xml:lang="uk">документ Kugar</comment>
+ <comment xml:lang="tr">Kugar belgesi</comment>
+ <comment xml:lang="sv">Kugar-dokument</comment>
+ <comment xml:lang="sr">документ Кугара</comment>
+ <comment xml:lang="sq">dokument Kugar</comment>
+ <comment xml:lang="sl">Dokument Kugar</comment>
+ <comment xml:lang="si">කුගර් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Kugar</comment>
+ <comment xml:lang="ru">Документ Kugar</comment>
+ <comment xml:lang="ro">Document Kugar</comment>
+ <comment xml:lang="pt_BR">Documento do Kugar</comment>
+ <comment xml:lang="pt">documento Kugar</comment>
+ <comment xml:lang="pl">Dokument Kuguar</comment>
+ <comment xml:lang="oc">document Kugar</comment>
+ <comment xml:lang="nn">Kugar-dokument</comment>
+ <comment xml:lang="nl">Kugar-document</comment>
+ <comment xml:lang="nb">Kugar-dokument</comment>
+ <comment xml:lang="ms">Dokumen Kugar</comment>
+ <comment xml:lang="lv">Kugar dokuments</comment>
+ <comment xml:lang="lt">Kugar dokumentas</comment>
+ <comment xml:lang="ko">Kugar 문서</comment>
+ <comment xml:lang="kk">Kugar құжаты</comment>
+ <comment xml:lang="ja">Kugar ドキュメント</comment>
+ <comment xml:lang="it">Documento Kugar</comment>
+ <comment xml:lang="is">Kugar skjal</comment>
+ <comment xml:lang="id">Dokumen Kugar</comment>
+ <comment xml:lang="ia">Documento Kugar</comment>
+ <comment xml:lang="hu">Kugar-dokumentum</comment>
+ <comment xml:lang="hr">Kugar dokument</comment>
+ <comment xml:lang="he">מסמך Kugar</comment>
+ <comment xml:lang="gl">documento de Kugar</comment>
+ <comment xml:lang="ga">cáipéis Kugar</comment>
+ <comment xml:lang="fur">document Kugar</comment>
+ <comment xml:lang="fr">document Kugar</comment>
+ <comment xml:lang="fo">Kugar skjal</comment>
+ <comment xml:lang="fi">Kugar-asiakirja</comment>
+ <comment xml:lang="eu">Kugar dokumentua</comment>
+ <comment xml:lang="es">documento de Kugar</comment>
+ <comment xml:lang="eo">Kugar-dokumento</comment>
+ <comment xml:lang="en_GB">Kugar document</comment>
+ <comment xml:lang="el">Έγγραφο Kugar</comment>
+ <comment xml:lang="de">Kugar-Dokument</comment>
+ <comment xml:lang="da">Kugardokument</comment>
+ <comment xml:lang="cs">dokument Kugar</comment>
+ <comment xml:lang="ca">document Kugar</comment>
+ <comment xml:lang="bg">Документ — Kugar</comment>
+ <comment xml:lang="be@latin">Dakument Kugar</comment>
+ <comment xml:lang="be">дакумент Kugar</comment>
+ <comment xml:lang="ast">Documentu de Kugar</comment>
+ <comment xml:lang="ar">مستند Kugar</comment>
+ <comment xml:lang="af">Kugar-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.kud"/>
</mime-type>
<mime-type type="application/x-kword">
<comment>KWord document</comment>
- <comment xml:lang="ar">مستند KWord</comment>
- <comment xml:lang="ast">Documentu de Kword</comment>
- <comment xml:lang="be@latin">Dakument KWord</comment>
- <comment xml:lang="bg">Документ — KWord</comment>
- <comment xml:lang="ca">document KWord</comment>
- <comment xml:lang="cs">dokument KWord</comment>
- <comment xml:lang="cy">Dogfen KWord</comment>
- <comment xml:lang="da">KWord-dokument</comment>
- <comment xml:lang="de">KWord-Dokument</comment>
- <comment xml:lang="el">Έγγραφο KWord</comment>
- <comment xml:lang="en_GB">KWord document</comment>
- <comment xml:lang="eo">KWord-dokumento</comment>
- <comment xml:lang="es">documento de KWord</comment>
- <comment xml:lang="eu">KWord dokumentua</comment>
- <comment xml:lang="fi">KWord-asiakirja</comment>
- <comment xml:lang="fo">KWord skjal</comment>
- <comment xml:lang="fr">document KWord</comment>
- <comment xml:lang="ga">cáipéis KWord</comment>
- <comment xml:lang="gl">documento de KWord</comment>
- <comment xml:lang="he">מסמך KWord</comment>
- <comment xml:lang="hr">KWord dokument</comment>
- <comment xml:lang="hu">KWord-dokumentum</comment>
- <comment xml:lang="ia">Documento KWord</comment>
- <comment xml:lang="id">Dokumen KWord</comment>
- <comment xml:lang="it">Documento KWord</comment>
- <comment xml:lang="ja">KWord ドキュメント</comment>
- <comment xml:lang="kk">KWord құжаты</comment>
- <comment xml:lang="ko">KWord 문서</comment>
- <comment xml:lang="lt">KWord dokumentas</comment>
- <comment xml:lang="lv">KWord dokuments</comment>
- <comment xml:lang="ms">Dokumen KWord</comment>
- <comment xml:lang="nb">KWord-dokument</comment>
- <comment xml:lang="nl">KWord-document</comment>
- <comment xml:lang="nn">KWord-dokument</comment>
- <comment xml:lang="oc">document KWord</comment>
- <comment xml:lang="pl">Dokument KWord</comment>
- <comment xml:lang="pt">documento KWord</comment>
- <comment xml:lang="pt_BR">Documento do KWord</comment>
- <comment xml:lang="ro">Document KWord</comment>
- <comment xml:lang="ru">Документ KWord</comment>
- <comment xml:lang="sk">Dokument KWord</comment>
- <comment xml:lang="sl">Dokument KWord</comment>
- <comment xml:lang="sq">Dokument KWord</comment>
- <comment xml:lang="sr">документ К-речи</comment>
- <comment xml:lang="sv">KWord-dokument</comment>
- <comment xml:lang="tr">KWord belgesi</comment>
- <comment xml:lang="uk">документ KWord</comment>
- <comment xml:lang="vi">Tài liệu KWord</comment>
- <comment xml:lang="zh_CN">KWord 文档</comment>
<comment xml:lang="zh_TW">KWord 文件</comment>
+ <comment xml:lang="zh_CN">KWord 文档</comment>
+ <comment xml:lang="vi">Tài liệu KWord</comment>
+ <comment xml:lang="uk">документ KWord</comment>
+ <comment xml:lang="tr">KWord belgesi</comment>
+ <comment xml:lang="sv">KWord-dokument</comment>
+ <comment xml:lang="sr">документ К-речи</comment>
+ <comment xml:lang="sq">dokument KWord</comment>
+ <comment xml:lang="sl">Dokument KWord</comment>
+ <comment xml:lang="si">KWord ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument KWord</comment>
+ <comment xml:lang="ru">Документ KWord</comment>
+ <comment xml:lang="ro">Document KWord</comment>
+ <comment xml:lang="pt_BR">Documento do KWord</comment>
+ <comment xml:lang="pt">documento KWord</comment>
+ <comment xml:lang="pl">Dokument KWord</comment>
+ <comment xml:lang="oc">document KWord</comment>
+ <comment xml:lang="nn">KWord-dokument</comment>
+ <comment xml:lang="nl">KWord-document</comment>
+ <comment xml:lang="nb">KWord-dokument</comment>
+ <comment xml:lang="ms">Dokumen KWord</comment>
+ <comment xml:lang="lv">KWord dokuments</comment>
+ <comment xml:lang="lt">KWord dokumentas</comment>
+ <comment xml:lang="ko">KWord 문서</comment>
+ <comment xml:lang="kk">KWord құжаты</comment>
+ <comment xml:lang="ja">KWord ドキュメント</comment>
+ <comment xml:lang="it">Documento KWord</comment>
+ <comment xml:lang="is">KWord skjal</comment>
+ <comment xml:lang="id">Dokumen KWord</comment>
+ <comment xml:lang="ia">Documento KWord</comment>
+ <comment xml:lang="hu">KWord-dokumentum</comment>
+ <comment xml:lang="hr">KWord dokument</comment>
+ <comment xml:lang="he">מסמך KWord</comment>
+ <comment xml:lang="gl">documento de KWord</comment>
+ <comment xml:lang="ga">cáipéis KWord</comment>
+ <comment xml:lang="fur">document KWord</comment>
+ <comment xml:lang="fr">document KWord</comment>
+ <comment xml:lang="fo">KWord skjal</comment>
+ <comment xml:lang="fi">KWord-asiakirja</comment>
+ <comment xml:lang="eu">KWord dokumentua</comment>
+ <comment xml:lang="es">documento de KWord</comment>
+ <comment xml:lang="eo">KWord-dokumento</comment>
+ <comment xml:lang="en_GB">KWord document</comment>
+ <comment xml:lang="el">Έγγραφο KWord</comment>
+ <comment xml:lang="de">KWord-Dokument</comment>
+ <comment xml:lang="da">KWord-dokument</comment>
+ <comment xml:lang="cy">Dogfen KWord</comment>
+ <comment xml:lang="cs">dokument KWord</comment>
+ <comment xml:lang="ca">document KWord</comment>
+ <comment xml:lang="bg">Документ — KWord</comment>
+ <comment xml:lang="be@latin">Dakument KWord</comment>
+ <comment xml:lang="be">дакумент KWord</comment>
+ <comment xml:lang="ast">Documentu de Kword</comment>
+ <comment xml:lang="ar">مستند KWord</comment>
+ <comment xml:lang="af">KWord-dokument</comment>
<generic-icon name="x-office-document"/>
<magic priority="60">
- <match value="\037\213" type="string" offset="0">
- <match value="KOffice" type="string" offset="10">
- <match value="application/x-kword\004\006" type="string" offset="18"/>
+ <match type="string" value="\037\213" offset="0">
+ <match type="string" value="KOffice" offset="10">
+ <match type="string" value="application/x-kword\004\006" offset="18"/>
</match>
</match>
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="application/x-kword" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="application/x-kword" offset="38"/>
</match>
</match>
</magic>
@@ -14645,126 +15930,136 @@
</mime-type>
<mime-type type="application/x-kword-crypt">
<comment>KWord document (encrypted)</comment>
- <comment xml:lang="ar">مستند KWord (مشفر)</comment>
- <comment xml:lang="ast">Documentu de Kword (cifráu)</comment>
- <comment xml:lang="be@latin">Dakument KWord (zašyfravany)</comment>
- <comment xml:lang="bg">Документ — KWord, шифриран</comment>
- <comment xml:lang="ca">document KWord (xifrat)</comment>
- <comment xml:lang="cs">dokument KWord (šifrovaný)</comment>
- <comment xml:lang="da">KWord-dokument (krypteret)</comment>
- <comment xml:lang="de">KWord-Dokument (verschlüsselt)</comment>
- <comment xml:lang="el">Έγγραφο KWord (κρυπτογραφημένο)</comment>
- <comment xml:lang="en_GB">KWord document (encrypted)</comment>
- <comment xml:lang="eo">KWord-dokumento (ĉifrita)</comment>
- <comment xml:lang="es">documento de KWord (cifrado)</comment>
- <comment xml:lang="eu">KWord dokumentua (enkriptatua)</comment>
- <comment xml:lang="fi">KWord-asiakirja (salattu)</comment>
- <comment xml:lang="fo">KWord skjal (bronglað)</comment>
- <comment xml:lang="fr">document KWord (chiffré)</comment>
- <comment xml:lang="ga">cáipéis KWord (criptithe)</comment>
- <comment xml:lang="gl">documento de KWord (cifrado)</comment>
- <comment xml:lang="he">מסמך KWord (מוצפן)</comment>
- <comment xml:lang="hr">KWord dokument (šifriran)</comment>
- <comment xml:lang="hu">KWord-dokumentum (titkosított)</comment>
- <comment xml:lang="ia">Documento KWord (cryptate)</comment>
- <comment xml:lang="id">Dokumen KWord (terenkripsi)</comment>
- <comment xml:lang="it">Documento KWord (cifrato)</comment>
- <comment xml:lang="ja">KWord (暗号化) ドキュメント</comment>
- <comment xml:lang="kk">KWord құжаты (шифрленген)</comment>
- <comment xml:lang="ko">암호화된 KWord 문서</comment>
- <comment xml:lang="lt">KWord dokumentas (užšifruotas)</comment>
- <comment xml:lang="lv">KWord dokuments (šifrēts)</comment>
- <comment xml:lang="ms">Dokumen Kword (terenkripsi)</comment>
- <comment xml:lang="nb">KWord-dokument (kryptert)</comment>
- <comment xml:lang="nl">KWord-document (versleuteld)</comment>
- <comment xml:lang="nn">Kryptert KWord-dokument</comment>
- <comment xml:lang="oc">document KWord (chifrat)</comment>
- <comment xml:lang="pl">Dokument KWord (zaszyfrowany)</comment>
- <comment xml:lang="pt">documento KWord (encriptado)</comment>
- <comment xml:lang="pt_BR">Documento do KWord (criptografado)</comment>
- <comment xml:lang="ro">Document KWord (criptat)</comment>
- <comment xml:lang="ru">Документ KWord (зашифрованный)</comment>
- <comment xml:lang="sk">Dokument KWord (šifrovaný)</comment>
- <comment xml:lang="sl">Dokument KWord (šifriran)</comment>
- <comment xml:lang="sq">Dokument KWord (i kriptuar)</comment>
- <comment xml:lang="sr">документ К-речи (шифровани)</comment>
- <comment xml:lang="sv">KWord-dokument (krypterat)</comment>
- <comment xml:lang="tr">KWord belgesi (şifreli)</comment>
- <comment xml:lang="uk">документ KWord (зашифрований)</comment>
- <comment xml:lang="vi">Tài liệu KWord (đã mật mã)</comment>
+ <comment xml:lang="zh_TW">KWord 文件 (加密)</comment>
<comment xml:lang="zh_CN">KWord 文档(加密)</comment>
- <comment xml:lang="zh_TW">KWord 文件 (已加密)</comment>
+ <comment xml:lang="vi">Tài liệu KWord (đã mật mã)</comment>
+ <comment xml:lang="uk">документ KWord (зашифрований)</comment>
+ <comment xml:lang="tr">KWord belgesi (şifreli)</comment>
+ <comment xml:lang="sv">KWord-dokument (krypterat)</comment>
+ <comment xml:lang="sr">документ К-речи (шифровани)</comment>
+ <comment xml:lang="sq">dokument KWord (i fshehtëzuar)</comment>
+ <comment xml:lang="sl">Dokument KWord (šifriran)</comment>
+ <comment xml:lang="si">KWord ලේඛනය (සංකේතනය කළ)</comment>
+ <comment xml:lang="sk">Dokument KWord (šifrovaný)</comment>
+ <comment xml:lang="ru">Документ KWord (зашифрованный)</comment>
+ <comment xml:lang="ro">Document KWord (criptat)</comment>
+ <comment xml:lang="pt_BR">Documento do KWord (criptografado)</comment>
+ <comment xml:lang="pt">documento KWord (encriptado)</comment>
+ <comment xml:lang="pl">Dokument KWord (zaszyfrowany)</comment>
+ <comment xml:lang="oc">document KWord (chifrat)</comment>
+ <comment xml:lang="nn">Kryptert KWord-dokument</comment>
+ <comment xml:lang="nl">KWord-document (versleuteld)</comment>
+ <comment xml:lang="nb">KWord-dokument (kryptert)</comment>
+ <comment xml:lang="ms">Dokumen Kword (terenkripsi)</comment>
+ <comment xml:lang="lv">KWord dokuments (šifrēts)</comment>
+ <comment xml:lang="lt">KWord dokumentas (užšifruotas)</comment>
+ <comment xml:lang="ko">암호화된 KWord 문서</comment>
+ <comment xml:lang="kk">KWord құжаты (шифрленген)</comment>
+ <comment xml:lang="ja">KWord (暗号化) ドキュメント</comment>
+ <comment xml:lang="it">Documento KWord (cifrato)</comment>
+ <comment xml:lang="is">KWord skjal (dulritað)</comment>
+ <comment xml:lang="id">Dokumen KWord (terenkripsi)</comment>
+ <comment xml:lang="ia">Documento KWord (cryptate)</comment>
+ <comment xml:lang="hu">KWord-dokumentum (titkosított)</comment>
+ <comment xml:lang="hr">KWord dokument (šifriran)</comment>
+ <comment xml:lang="he">מסמך KWord (מוצפן)</comment>
+ <comment xml:lang="gl">documento de KWord (cifrado)</comment>
+ <comment xml:lang="ga">cáipéis KWord (criptithe)</comment>
+ <comment xml:lang="fur">document KWord (cifrât)</comment>
+ <comment xml:lang="fr">document KWord (chiffré)</comment>
+ <comment xml:lang="fo">KWord skjal (bronglað)</comment>
+ <comment xml:lang="fi">KWord-asiakirja (salattu)</comment>
+ <comment xml:lang="eu">KWord dokumentua (zifratuta)</comment>
+ <comment xml:lang="es">documento de KWord (cifrado)</comment>
+ <comment xml:lang="eo">KWord-dokumento (ĉifrita)</comment>
+ <comment xml:lang="en_GB">KWord document (encrypted)</comment>
+ <comment xml:lang="el">Έγγραφο KWord (κρυπτογραφημένο)</comment>
+ <comment xml:lang="de">KWord-Dokument (verschlüsselt)</comment>
+ <comment xml:lang="da">KWord-dokument (krypteret)</comment>
+ <comment xml:lang="cs">dokument KWord (šifrovaný)</comment>
+ <comment xml:lang="ca">document KWord (xifrat)</comment>
+ <comment xml:lang="bg">Документ — KWord, шифриран</comment>
+ <comment xml:lang="be@latin">Dakument KWord (zašyfravany)</comment>
+ <comment xml:lang="be">дакумент KWord (зашыфраваны)</comment>
+ <comment xml:lang="ast">Documentu de Kword (cifráu)</comment>
+ <comment xml:lang="ar">مستند KWord (مشفر)</comment>
+ <comment xml:lang="af">KWord-dokument (geënkripteer)</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="0x0d1a2701" type="big32" offset="0"/>
+ <magic>
+ <match type="big32" value="0x0d1a2701" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-lha">
<comment>LHA archive</comment>
- <comment xml:lang="ar">أرشيف LHA</comment>
- <comment xml:lang="az">LHA arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ LHA</comment>
- <comment xml:lang="bg">Архив — LHA</comment>
- <comment xml:lang="ca">arxiu LHA</comment>
- <comment xml:lang="cs">archiv LHA</comment>
- <comment xml:lang="cy">Archif LHA</comment>
- <comment xml:lang="da">LHA-arkiv</comment>
- <comment xml:lang="de">LHA-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο LHA</comment>
- <comment xml:lang="en_GB">LHA archive</comment>
- <comment xml:lang="eo">LHA-arkivo</comment>
- <comment xml:lang="es">archivador LHA</comment>
- <comment xml:lang="eu">LHA artxiboa</comment>
- <comment xml:lang="fi">LHA-arkisto</comment>
- <comment xml:lang="fo">LHA skjalasavn</comment>
- <comment xml:lang="fr">archive LHA</comment>
- <comment xml:lang="ga">cartlann LHA</comment>
- <comment xml:lang="gl">arquivo LHA</comment>
- <comment xml:lang="he">ארכיון LHA</comment>
- <comment xml:lang="hr">LHA arhiva</comment>
- <comment xml:lang="hu">LHA-archívum</comment>
- <comment xml:lang="ia">Archivo LHA</comment>
- <comment xml:lang="id">Arsip LHA</comment>
- <comment xml:lang="it">Archivio LHA</comment>
- <comment xml:lang="ja">LHA アーカイブ</comment>
- <comment xml:lang="kk">LHA архиві</comment>
- <comment xml:lang="ko">LHA 압축 파일</comment>
- <comment xml:lang="lt">LHA archyvas</comment>
- <comment xml:lang="lv">LHA arhīvs</comment>
- <comment xml:lang="ms">Arkib LHA</comment>
- <comment xml:lang="nb">LHA-arkiv</comment>
- <comment xml:lang="nl">LHA-archief</comment>
- <comment xml:lang="nn">LHA-arkiv</comment>
- <comment xml:lang="oc">archiu LHA</comment>
- <comment xml:lang="pl">Archiwum LHA</comment>
- <comment xml:lang="pt">arquivo LHA</comment>
- <comment xml:lang="pt_BR">Pacote LHA</comment>
- <comment xml:lang="ro">Arhivă LHA</comment>
- <comment xml:lang="ru">Архив LHA</comment>
- <comment xml:lang="sk">Archív LHA</comment>
- <comment xml:lang="sl">Datoteka arhiva LHA</comment>
- <comment xml:lang="sq">Arkiv LHA</comment>
- <comment xml:lang="sr">ЛХА архива</comment>
- <comment xml:lang="sv">LHA-arkiv</comment>
- <comment xml:lang="tr">LHA arşivi</comment>
- <comment xml:lang="uk">архів LHA</comment>
- <comment xml:lang="vi">Kho nén LHA</comment>
- <comment xml:lang="zh_CN">LHA 归档文件</comment>
<comment xml:lang="zh_TW">LHA 封存檔</comment>
+ <comment xml:lang="zh_CN">LHA 归档文件</comment>
+ <comment xml:lang="vi">Kho nén LHA</comment>
+ <comment xml:lang="uk">архів LHA</comment>
+ <comment xml:lang="tr">LHA arşivi</comment>
+ <comment xml:lang="sv">LHA-arkiv</comment>
+ <comment xml:lang="sr">ЛХА архива</comment>
+ <comment xml:lang="sq">arkiv LHA</comment>
+ <comment xml:lang="sl">Datoteka arhiva LHA</comment>
+ <comment xml:lang="si">LHA ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív LHA</comment>
+ <comment xml:lang="ru">Архив LHA</comment>
+ <comment xml:lang="ro">Arhivă LHA</comment>
+ <comment xml:lang="pt_BR">Pacote LHA</comment>
+ <comment xml:lang="pt">arquivo LHA</comment>
+ <comment xml:lang="pl">Archiwum LHA</comment>
+ <comment xml:lang="oc">archiu LHA</comment>
+ <comment xml:lang="nn">LHA-arkiv</comment>
+ <comment xml:lang="nl">LHA-archief</comment>
+ <comment xml:lang="nb">LHA-arkiv</comment>
+ <comment xml:lang="ms">Arkib LHA</comment>
+ <comment xml:lang="lv">LHA arhīvs</comment>
+ <comment xml:lang="lt">LHA archyvas</comment>
+ <comment xml:lang="ko">LHA 압축 파일</comment>
+ <comment xml:lang="kk">LHA архиві</comment>
+ <comment xml:lang="ja">LHA アーカイブ</comment>
+ <comment xml:lang="it">Archivio LHA</comment>
+ <comment xml:lang="is">LHA safnskrá</comment>
+ <comment xml:lang="id">Arsip LHA</comment>
+ <comment xml:lang="ia">Archivo LHA</comment>
+ <comment xml:lang="hu">LHA-archívum</comment>
+ <comment xml:lang="hr">LHA arhiva</comment>
+ <comment xml:lang="he">ארכיון LHA</comment>
+ <comment xml:lang="gl">arquivo LHA</comment>
+ <comment xml:lang="ga">cartlann LHA</comment>
+ <comment xml:lang="fur">archivi LHA</comment>
+ <comment xml:lang="fr">archive LHA</comment>
+ <comment xml:lang="fo">LHA skjalasavn</comment>
+ <comment xml:lang="fi">LHA-arkisto</comment>
+ <comment xml:lang="eu">LHA artxiboa</comment>
+ <comment xml:lang="es">archivador LHA</comment>
+ <comment xml:lang="eo">LHA-arkivo</comment>
+ <comment xml:lang="en_GB">LHA archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο LHA</comment>
+ <comment xml:lang="de">LHA-Archiv</comment>
+ <comment xml:lang="da">LHA-arkiv</comment>
+ <comment xml:lang="cy">Archif LHA</comment>
+ <comment xml:lang="cs">archiv LHA</comment>
+ <comment xml:lang="ca">arxiu LHA</comment>
+ <comment xml:lang="bg">Архив — LHA</comment>
+ <comment xml:lang="be@latin">Archiŭ LHA</comment>
+ <comment xml:lang="be">архіў LHA</comment>
+ <comment xml:lang="az">LHA arxivi</comment>
+ <comment xml:lang="ar">أرشيف LHA</comment>
+ <comment xml:lang="af">LHA-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="-lh -" type="string" offset="2"/>
- <match value="-lh0-" type="string" offset="2"/>
- <match value="-lh1-" type="string" offset="2"/>
- <match value="-lh2-" type="string" offset="2"/>
- <match value="-lh3-" type="string" offset="2"/>
- <match value="-lh4-" type="string" offset="2"/>
- <match value="-lh5-" type="string" offset="2"/>
- <match value="-lh40-" type="string" offset="2"/>
- <match value="-lhd-" type="string" offset="2"/>
- <match value="-lz4-" type="string" offset="2"/>
- <match value="-lz5-" type="string" offset="2"/>
- <match value="-lzs-" type="string" offset="2"/>
+ <match type="string" value="-lh -" offset="2"/>
+ <match type="string" value="-lh0-" offset="2"/>
+ <match type="string" value="-lh1-" offset="2"/>
+ <match type="string" value="-lh2-" offset="2"/>
+ <match type="string" value="-lh3-" offset="2"/>
+ <match type="string" value="-lh4-" offset="2"/>
+ <match type="string" value="-lh5-" offset="2"/>
+ <match type="string" value="-lh40-" offset="2"/>
+ <match type="string" value="-lhd-" offset="2"/>
+ <match type="string" value="-lz4-" offset="2"/>
+ <match type="string" value="-lz5-" offset="2"/>
+ <match type="string" value="-lzs-" offset="2"/>
</magic>
<glob pattern="*.lha"/>
<glob pattern="*.lzh"/>
@@ -14772,413 +16067,445 @@
</mime-type>
<mime-type type="application/x-lhz">
<comment>LHZ archive</comment>
- <comment xml:lang="ar">أرشيف LHZ</comment>
- <comment xml:lang="be@latin">Archiŭ LHZ</comment>
- <comment xml:lang="bg">Архив — LHZ</comment>
- <comment xml:lang="ca">arxiu LHZ</comment>
- <comment xml:lang="cs">archiv LHZ</comment>
- <comment xml:lang="da">LHZ-arkiv</comment>
- <comment xml:lang="de">LHZ-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο LHZ</comment>
- <comment xml:lang="en_GB">LHZ archive</comment>
- <comment xml:lang="eo">LHZ-arkivo</comment>
- <comment xml:lang="es">archivador LHZ</comment>
- <comment xml:lang="eu">LHZ artxiboa</comment>
- <comment xml:lang="fi">LHZ-arkisto</comment>
- <comment xml:lang="fo">LHZ skjalasavn</comment>
- <comment xml:lang="fr">archive LHZ</comment>
- <comment xml:lang="ga">cartlann LHZ</comment>
- <comment xml:lang="gl">arquivo LHZ</comment>
- <comment xml:lang="he">ארכיון LHZ</comment>
- <comment xml:lang="hr">LHZ arhiva</comment>
- <comment xml:lang="hu">LHZ-archívum</comment>
- <comment xml:lang="ia">Archivo LHZ</comment>
- <comment xml:lang="id">Arsip LHZ</comment>
- <comment xml:lang="it">Archivio LHZ</comment>
- <comment xml:lang="ja">LHZ アーカイブ</comment>
- <comment xml:lang="kk">LHZ архиві</comment>
- <comment xml:lang="ko">LHZ 압축 파일</comment>
- <comment xml:lang="lt">LHZ archyvas</comment>
- <comment xml:lang="lv">LHZ arhīvs</comment>
- <comment xml:lang="ms">Arkib LHZ</comment>
- <comment xml:lang="nb">LHZ-arkiv</comment>
- <comment xml:lang="nl">LHZ-archief</comment>
- <comment xml:lang="nn">LHZ-arkiv</comment>
- <comment xml:lang="oc">archiu LHZ</comment>
- <comment xml:lang="pl">Archiwum LHZ</comment>
- <comment xml:lang="pt">arquivo LHZ</comment>
- <comment xml:lang="pt_BR">Pacote LHZ</comment>
- <comment xml:lang="ro">Arhivă LHZ</comment>
- <comment xml:lang="ru">Архив LHZ</comment>
- <comment xml:lang="sk">Archív LHZ</comment>
- <comment xml:lang="sl">Datoteka arhiva LHZ</comment>
- <comment xml:lang="sq">Arkiv LHZ</comment>
- <comment xml:lang="sr">ЛХЗ архива</comment>
- <comment xml:lang="sv">LHZ-arkiv</comment>
- <comment xml:lang="tr">LHZ arşivi</comment>
- <comment xml:lang="uk">архів LHZ</comment>
- <comment xml:lang="vi">Kho nén LHZ (LHA đã nén)</comment>
- <comment xml:lang="zh_CN">LHZ 归档文件</comment>
<comment xml:lang="zh_TW">LHZ 封存檔</comment>
+ <comment xml:lang="zh_CN">LHZ 归档文件</comment>
+ <comment xml:lang="vi">Kho nén LHZ (LHA đã nén)</comment>
+ <comment xml:lang="uk">архів LHZ</comment>
+ <comment xml:lang="tr">LHZ arşivi</comment>
+ <comment xml:lang="sv">LHZ-arkiv</comment>
+ <comment xml:lang="sr">ЛХЗ архива</comment>
+ <comment xml:lang="sq">arkiv LHZ</comment>
+ <comment xml:lang="sl">Datoteka arhiva LHZ</comment>
+ <comment xml:lang="si">LHZ ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív LHZ</comment>
+ <comment xml:lang="ru">Архив LHZ</comment>
+ <comment xml:lang="ro">Arhivă LHZ</comment>
+ <comment xml:lang="pt_BR">Pacote LHZ</comment>
+ <comment xml:lang="pt">arquivo LHZ</comment>
+ <comment xml:lang="pl">Archiwum LHZ</comment>
+ <comment xml:lang="oc">archiu LHZ</comment>
+ <comment xml:lang="nn">LHZ-arkiv</comment>
+ <comment xml:lang="nl">LHZ-archief</comment>
+ <comment xml:lang="nb">LHZ-arkiv</comment>
+ <comment xml:lang="ms">Arkib LHZ</comment>
+ <comment xml:lang="lv">LHZ arhīvs</comment>
+ <comment xml:lang="lt">LHZ archyvas</comment>
+ <comment xml:lang="ko">LHZ 압축 파일</comment>
+ <comment xml:lang="kk">LHZ архиві</comment>
+ <comment xml:lang="ja">LHZ アーカイブ</comment>
+ <comment xml:lang="it">Archivio LHZ</comment>
+ <comment xml:lang="is">LHZ safnskrá</comment>
+ <comment xml:lang="id">Arsip LHZ</comment>
+ <comment xml:lang="ia">Archivo LHZ</comment>
+ <comment xml:lang="hu">LHZ-archívum</comment>
+ <comment xml:lang="hr">LHZ arhiva</comment>
+ <comment xml:lang="he">ארכיון LHZ</comment>
+ <comment xml:lang="gl">arquivo LHZ</comment>
+ <comment xml:lang="ga">cartlann LHZ</comment>
+ <comment xml:lang="fur">archivi LHZ</comment>
+ <comment xml:lang="fr">archive LHZ</comment>
+ <comment xml:lang="fo">LHZ skjalasavn</comment>
+ <comment xml:lang="fi">LHZ-arkisto</comment>
+ <comment xml:lang="eu">LHZ artxiboa</comment>
+ <comment xml:lang="es">archivador LHZ</comment>
+ <comment xml:lang="eo">LHZ-arkivo</comment>
+ <comment xml:lang="en_GB">LHZ archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο LHZ</comment>
+ <comment xml:lang="de">LHZ-Archiv</comment>
+ <comment xml:lang="da">LHZ-arkiv</comment>
+ <comment xml:lang="cs">archiv LHZ</comment>
+ <comment xml:lang="ca">arxiu LHZ</comment>
+ <comment xml:lang="bg">Архив — LHZ</comment>
+ <comment xml:lang="be@latin">Archiŭ LHZ</comment>
+ <comment xml:lang="be">архіў LHZ</comment>
+ <comment xml:lang="ar">أرشيف LHZ</comment>
+ <comment xml:lang="af">LHZ-argief</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.lhz"/>
</mime-type>
- <mime-type type="text/vnd.qt.linguist">
- <comment>message catalog</comment>
- <comment xml:lang="ar">كتالوج الرسالة</comment>
- <comment xml:lang="be@latin">kataloh paviedamleńniaŭ</comment>
- <comment xml:lang="bg">Каталог със съобщения</comment>
- <comment xml:lang="ca">catàleg de missatges</comment>
- <comment xml:lang="cs">katalog zpráv</comment>
- <comment xml:lang="da">meddelelseskatalog</comment>
- <comment xml:lang="de">Nachrichtenkatalog</comment>
- <comment xml:lang="el">Κατάλογος μηνυμάτων</comment>
- <comment xml:lang="en_GB">message catalogue</comment>
- <comment xml:lang="eo">katalogo de mesaĝoj</comment>
- <comment xml:lang="es">catálogo de mensajes</comment>
- <comment xml:lang="eu">mezuen katalogoa</comment>
- <comment xml:lang="fi">viestiluettelo</comment>
- <comment xml:lang="fo">boðskrá</comment>
- <comment xml:lang="fr">catalogue de messages</comment>
- <comment xml:lang="ga">catalóg theachtaireachtaí</comment>
- <comment xml:lang="gl">catálogo de mensaxes</comment>
- <comment xml:lang="he">קטלוג הודעות</comment>
- <comment xml:lang="hr">Katalog poruka</comment>
- <comment xml:lang="hu">üzenetkatalógus</comment>
- <comment xml:lang="ia">Catalogo de messages</comment>
- <comment xml:lang="id">katalog pesan</comment>
- <comment xml:lang="it">Catalogo di messaggi</comment>
- <comment xml:lang="ja">メッセージカタログ</comment>
- <comment xml:lang="kk">мәлімдемелер каталогы</comment>
- <comment xml:lang="ko">메시지 카탈로그</comment>
- <comment xml:lang="lt">laiškų katalogas</comment>
- <comment xml:lang="lv">ziņojumu katalogs</comment>
- <comment xml:lang="ms">Katalog mesej</comment>
- <comment xml:lang="nb">meldingskatalog</comment>
- <comment xml:lang="nl">berichtencatalogus</comment>
- <comment xml:lang="nn">meldingskatalog</comment>
- <comment xml:lang="oc">catalòg de messatges</comment>
- <comment xml:lang="pl">Katalog wiadomości</comment>
- <comment xml:lang="pt">catálogo de mensagens</comment>
- <comment xml:lang="pt_BR">Catálogo de mensagens</comment>
- <comment xml:lang="ro">catalog de mesaje</comment>
- <comment xml:lang="ru">Каталог сообщений</comment>
- <comment xml:lang="sk">Katalóg správ</comment>
- <comment xml:lang="sl">katalogov sporočil</comment>
- <comment xml:lang="sq">Katallog mesazhesh</comment>
- <comment xml:lang="sr">каталог порука</comment>
- <comment xml:lang="sv">meddelandekatalog</comment>
- <comment xml:lang="tr">ileti kataloğu</comment>
+ <mime-type type="text/vnd.trolltech.linguist">
+ <comment>Message catalog</comment>
<comment xml:lang="uk">каталог повідомлень</comment>
- <comment xml:lang="vi">phân loại thông điệp</comment>
- <comment xml:lang="zh_CN">消息库</comment>
- <comment xml:lang="zh_TW">訊息目錄</comment>
+ <comment xml:lang="sv">Meddelandekatalog</comment>
+ <comment xml:lang="ru">Каталог сообщений</comment>
+ <comment xml:lang="pl">Katalog wiadomości</comment>
+ <comment xml:lang="it">Catalogo di messaggi</comment>
+ <comment xml:lang="gl">Catálogo de mensaxes</comment>
+ <comment xml:lang="eu">Mezu-katalogoa</comment>
+ <comment xml:lang="es">catálogo de mensajes</comment>
+ <comment xml:lang="de">Nachrichtenkatalog</comment>
+ <comment xml:lang="be">каталог паведамленняў</comment>
<sub-class-of type="application/xml"/>
<magic>
- <match value="&lt;TS" type="string" offset="0:256"/>
+ <match type="string" value="&lt;TS " offset="0:256"/>
+ <match type="string" value="&lt;TS&gt;" offset="0:256"/>
</magic>
<glob pattern="*.ts"/>
<alias type="application/x-linguist"/>
- <alias type="text/vnd.trolltech.linguist"/>
+ <alias type="text/vnd.qt.linguist"/>
</mime-type>
<mime-type type="application/x-lyx">
<comment>LyX document</comment>
- <comment xml:lang="ar">مستند LyX</comment>
- <comment xml:lang="ast">Documentu de Lyx</comment>
- <comment xml:lang="be@latin">Dakument LyX</comment>
- <comment xml:lang="bg">Документ — LyX</comment>
- <comment xml:lang="ca">document LyX</comment>
- <comment xml:lang="cs">dokument LyX</comment>
- <comment xml:lang="da">LyX-dokument</comment>
- <comment xml:lang="de">LyX-Dokument</comment>
- <comment xml:lang="el">Έγγραφο LyX</comment>
- <comment xml:lang="en_GB">LyX document</comment>
- <comment xml:lang="eo">LyX-dokumento</comment>
- <comment xml:lang="es">documento de LyX</comment>
- <comment xml:lang="eu">LyX dokumentua</comment>
- <comment xml:lang="fi">LyX-asiakirja</comment>
- <comment xml:lang="fo">LyX skjal</comment>
- <comment xml:lang="fr">document LyX</comment>
- <comment xml:lang="ga">cáipéis LyX</comment>
- <comment xml:lang="gl">documento LyX</comment>
- <comment xml:lang="he">מסמך Lyx</comment>
- <comment xml:lang="hr">LyX dokument</comment>
- <comment xml:lang="hu">LyX-dokumentum</comment>
- <comment xml:lang="ia">Documento LyX</comment>
- <comment xml:lang="id">Dokumen LyX</comment>
- <comment xml:lang="it">Documento LyX</comment>
- <comment xml:lang="ja">LyX ドキュメント</comment>
- <comment xml:lang="kk">LyX құжаты</comment>
- <comment xml:lang="ko">LyX 문서</comment>
- <comment xml:lang="lt">LyX dokumentas</comment>
- <comment xml:lang="lv">LyX dokuments</comment>
- <comment xml:lang="ms">Dokumen LyX</comment>
- <comment xml:lang="nb">LyX-dokument</comment>
- <comment xml:lang="nl">LyX-document</comment>
- <comment xml:lang="nn">LyX-dokument</comment>
- <comment xml:lang="oc">document LyX</comment>
- <comment xml:lang="pl">Dokument LyX</comment>
- <comment xml:lang="pt">documento LyX</comment>
- <comment xml:lang="pt_BR">Documento LyX</comment>
- <comment xml:lang="ro">Document LyX</comment>
- <comment xml:lang="ru">Документ LyX</comment>
- <comment xml:lang="sk">Dokument LyX</comment>
- <comment xml:lang="sl">Dokument LyX</comment>
- <comment xml:lang="sq">Dokument LyX</comment>
- <comment xml:lang="sr">ЛиКс документ</comment>
- <comment xml:lang="sv">LyX-dokument</comment>
- <comment xml:lang="tr">LyX belgesi</comment>
- <comment xml:lang="uk">документ LyX</comment>
- <comment xml:lang="vi">Tài liệu LyX</comment>
- <comment xml:lang="zh_CN">LyX 文档</comment>
<comment xml:lang="zh_TW">LyX 文件</comment>
+ <comment xml:lang="zh_CN">LyX 文档</comment>
+ <comment xml:lang="vi">Tài liệu LyX</comment>
+ <comment xml:lang="uk">документ LyX</comment>
+ <comment xml:lang="tr">LyX belgesi</comment>
+ <comment xml:lang="sv">LyX-dokument</comment>
+ <comment xml:lang="sr">ЛиКс документ</comment>
+ <comment xml:lang="sq">dokument LyX</comment>
+ <comment xml:lang="sl">Dokument LyX</comment>
+ <comment xml:lang="si">LyX ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument LyX</comment>
+ <comment xml:lang="ru">Документ LyX</comment>
+ <comment xml:lang="ro">Document LyX</comment>
+ <comment xml:lang="pt_BR">Documento LyX</comment>
+ <comment xml:lang="pt">documento LyX</comment>
+ <comment xml:lang="pl">Dokument LyX</comment>
+ <comment xml:lang="oc">document LyX</comment>
+ <comment xml:lang="nn">LyX-dokument</comment>
+ <comment xml:lang="nl">LyX-document</comment>
+ <comment xml:lang="nb">LyX-dokument</comment>
+ <comment xml:lang="ms">Dokumen LyX</comment>
+ <comment xml:lang="lv">LyX dokuments</comment>
+ <comment xml:lang="lt">LyX dokumentas</comment>
+ <comment xml:lang="ko">LyX 문서</comment>
+ <comment xml:lang="kk">LyX құжаты</comment>
+ <comment xml:lang="ja">LyX ドキュメント</comment>
+ <comment xml:lang="it">Documento LyX</comment>
+ <comment xml:lang="is">LyX skjal</comment>
+ <comment xml:lang="id">Dokumen LyX</comment>
+ <comment xml:lang="ia">Documento LyX</comment>
+ <comment xml:lang="hu">LyX-dokumentum</comment>
+ <comment xml:lang="hr">LyX dokument</comment>
+ <comment xml:lang="he">מסמך Lyx</comment>
+ <comment xml:lang="gl">documento LyX</comment>
+ <comment xml:lang="ga">cáipéis LyX</comment>
+ <comment xml:lang="fur">document LyX</comment>
+ <comment xml:lang="fr">document LyX</comment>
+ <comment xml:lang="fo">LyX skjal</comment>
+ <comment xml:lang="fi">LyX-asiakirja</comment>
+ <comment xml:lang="eu">LyX dokumentua</comment>
+ <comment xml:lang="es">documento de LyX</comment>
+ <comment xml:lang="eo">LyX-dokumento</comment>
+ <comment xml:lang="en_GB">LyX document</comment>
+ <comment xml:lang="el">Έγγραφο LyX</comment>
+ <comment xml:lang="de">LyX-Dokument</comment>
+ <comment xml:lang="da">LyX-dokument</comment>
+ <comment xml:lang="cs">dokument LyX</comment>
+ <comment xml:lang="ca">document LyX</comment>
+ <comment xml:lang="bg">Документ — LyX</comment>
+ <comment xml:lang="be@latin">Dakument LyX</comment>
+ <comment xml:lang="be">дакумент LyX</comment>
+ <comment xml:lang="ast">Documentu de Lyx</comment>
+ <comment xml:lang="ar">مستند LyX</comment>
+ <comment xml:lang="af">LyX-dokument</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="#LyX" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#LyX" offset="0"/>
</magic>
<glob pattern="*.lyx"/>
<alias type="text/x-lyx"/>
</mime-type>
<mime-type type="application/x-lz4">
<comment>LZ4 archive</comment>
- <comment xml:lang="ca">arxiu LZ4</comment>
- <comment xml:lang="cs">archiv LZ4</comment>
- <comment xml:lang="da">LZ4-arkiv</comment>
- <comment xml:lang="de">LZ4-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο LZ4</comment>
- <comment xml:lang="en_GB">LZ4 archive</comment>
- <comment xml:lang="es">archivador LZ4</comment>
- <comment xml:lang="eu">LZ4 artxiboa</comment>
- <comment xml:lang="fi">LZ4-arkisto</comment>
- <comment xml:lang="fr">archive LZ4</comment>
- <comment xml:lang="ga">Cartlann LZ4</comment>
- <comment xml:lang="gl">Arquivo LZ4</comment>
- <comment xml:lang="he">ארכיון LZ4</comment>
- <comment xml:lang="hr">LZ4 arhiva</comment>
- <comment xml:lang="hu">LZ4 archívum</comment>
- <comment xml:lang="ia">Archivo LZ4</comment>
- <comment xml:lang="id">Arsip LZ4</comment>
- <comment xml:lang="it">Archivio LZ4</comment>
- <comment xml:lang="kk">LZ4 архиві</comment>
- <comment xml:lang="ko">LZ4 압축 파일</comment>
- <comment xml:lang="oc">archiu LZ4</comment>
- <comment xml:lang="pl">Archiwum LZ4</comment>
- <comment xml:lang="pt">arquivo LZ4</comment>
- <comment xml:lang="pt_BR">Pacote LZ4</comment>
- <comment xml:lang="ru">Архив LZ4</comment>
- <comment xml:lang="sk">Archív LZ4</comment>
- <comment xml:lang="sl">Datoteka arhiva LZ4</comment>
- <comment xml:lang="sr">ЛЗ4 архива</comment>
- <comment xml:lang="sv">LZ4-arkiv</comment>
- <comment xml:lang="tr">LZ4 arşivi</comment>
- <comment xml:lang="uk">архів LZ4</comment>
- <comment xml:lang="zh_CN">LZ4 归档文件</comment>
<comment xml:lang="zh_TW">LZ4 封存檔</comment>
+ <comment xml:lang="zh_CN">LZ4 归档文件</comment>
+ <comment xml:lang="uk">архів LZ4</comment>
+ <comment xml:lang="tr">LZ4 arşivi</comment>
+ <comment xml:lang="sv">LZ4-arkiv</comment>
+ <comment xml:lang="sr">ЛЗ4 архива</comment>
+ <comment xml:lang="sq">arkiv LZ4</comment>
+ <comment xml:lang="sl">Datoteka arhiva LZ4</comment>
+ <comment xml:lang="si">LZ4 ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív LZ4</comment>
+ <comment xml:lang="ru">Архив LZ4</comment>
+ <comment xml:lang="pt_BR">Pacote LZ4</comment>
+ <comment xml:lang="pt">arquivo LZ4</comment>
+ <comment xml:lang="pl">Archiwum LZ4</comment>
+ <comment xml:lang="oc">archiu LZ4</comment>
+ <comment xml:lang="nl">LZ4-archief</comment>
+ <comment xml:lang="ko">LZ4 압축 파일</comment>
+ <comment xml:lang="kk">LZ4 архиві</comment>
+ <comment xml:lang="ja">LZ4 アーカイヴ</comment>
+ <comment xml:lang="it">Archivio LZ4</comment>
+ <comment xml:lang="is">LZ4 safnskrá</comment>
+ <comment xml:lang="id">Arsip LZ4</comment>
+ <comment xml:lang="ia">Archivo LZ4</comment>
+ <comment xml:lang="hu">LZ4 archívum</comment>
+ <comment xml:lang="hr">LZ4 arhiva</comment>
+ <comment xml:lang="he">ארכיון LZ4</comment>
+ <comment xml:lang="gl">Arquivo LZ4</comment>
+ <comment xml:lang="ga">Cartlann LZ4</comment>
+ <comment xml:lang="fur">archivi LZ4</comment>
+ <comment xml:lang="fr">archive LZ4</comment>
+ <comment xml:lang="fi">LZ4-arkisto</comment>
+ <comment xml:lang="eu">LZ4 artxiboa</comment>
+ <comment xml:lang="es">archivador LZ4</comment>
+ <comment xml:lang="en_GB">LZ4 archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο LZ4</comment>
+ <comment xml:lang="de">LZ4-Archiv</comment>
+ <comment xml:lang="da">LZ4-arkiv</comment>
+ <comment xml:lang="cs">archiv LZ4</comment>
+ <comment xml:lang="ca">arxiu LZ4</comment>
+ <comment xml:lang="bg">Архив — LZ4</comment>
+ <comment xml:lang="be">архіў LZ4</comment>
+ <comment xml:lang="ar">أرشيف LZ4</comment>
+ <comment xml:lang="af">LZ4-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="0x184d2204" type="little32" offset="0"/>
- <match value="0x184c2102" type="little32" offset="0"/>
+ <match type="little32" value="0x184d2204" offset="0"/>
+ <match type="little32" value="0x184c2102" offset="0"/>
</magic>
<glob pattern="*.lz4"/>
</mime-type>
<mime-type type="application/x-lz4-compressed-tar">
<comment>Tar archive (LZ4-compressed)</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió LZ4)</comment>
- <comment xml:lang="cs">archiv Tar (komprimace LZ4)</comment>
- <comment xml:lang="da">Tar-arkiv (LZ4-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (LZ4-komprimiert)</comment>
- <comment xml:lang="en_GB">Tar archive (LZ4-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con LZ4)</comment>
- <comment xml:lang="eu">Tar artxiboa (LZ4-rekin konprimatua)</comment>
- <comment xml:lang="fi">Tar-arkisto (LZ4-pakattu)</comment>
- <comment xml:lang="fr">archive tar (compression LZ4)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le LZ4)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י LZ4)</comment>
- <comment xml:lang="hr">Tar arhiva (LZ4 sažeto)</comment>
- <comment xml:lang="hu">Tar archívum (LZ4-el tömörítve)</comment>
- <comment xml:lang="id">arsip tar (terkompresi LZ4)</comment>
- <comment xml:lang="it">Archivio tar (compresso con LZ4)</comment>
- <comment xml:lang="kk">Tar архиві (LZ4-пен сығылған)</comment>
- <comment xml:lang="ko">Tar 묶음 파일(LZ4 압축)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja LZ4)</comment>
- <comment xml:lang="pt_BR">Arquvio Tar (compactado com LZ4)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый lz4)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou LZ4)</comment>
- <comment xml:lang="sr">Тар архива (запакована ЛЗ4-ом)</comment>
- <comment xml:lang="sv">Tar-arkiv (LZ4-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (LZ4 ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений LZ4)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (LZ4 壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(LZ4 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (LZ4 格式壓縮)</comment>
+ <comment xml:lang="uk">архів tar (стиснений LZ4)</comment>
+ <comment xml:lang="tr">Tar arşivi (LZ4 ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (LZ4-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована ЛЗ4-ом)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me LZ4)</comment>
+ <comment xml:lang="sl">Arhiv tar (stisnjen, LZ4)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (LZ4-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou LZ4)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый lz4)</comment>
+ <comment xml:lang="pt_BR">Arquivo Tar (compactado com LZ4)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja LZ4)</comment>
+ <comment xml:lang="oc">archiu Tar (compression LZ4)</comment>
+ <comment xml:lang="nl">Tar-archief (gecomprimeerd met LZ4)</comment>
+ <comment xml:lang="ko">Tar 묶음 파일(LZ4 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (LZ4-пен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (LZ4 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con LZ4)</comment>
+ <comment xml:lang="is">Tar safnskrá (LZ4-þjappað)</comment>
+ <comment xml:lang="id">Arsip tar (terkompresi LZ4)</comment>
+ <comment xml:lang="hu">Tar archívum (LZ4 tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (LZ4 sažeto)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י LZ4)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le LZ4)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun LZ4)</comment>
+ <comment xml:lang="fr">archive tar (compression LZ4)</comment>
+ <comment xml:lang="fi">Tar-arkisto (LZ4-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (LZ4-rekin konprimatua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con LZ4)</comment>
+ <comment xml:lang="en_GB">Tar archive (LZ4-compressed)</comment>
+ <comment xml:lang="de">Tar-Archiv (LZ4-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (LZ4-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimace LZ4)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió LZ4)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с LZ4</comment>
+ <comment xml:lang="be">архіў tar (сцісканне LZ4)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-LZ4)</comment>
+ <comment xml:lang="af">Tar-argief (LZ4-saamgepers)</comment>
<generic-icon name="package-x-generic"/>
<sub-class-of type="application/x-lz4"/>
<glob pattern="*.tar.lz4"/>
</mime-type>
<mime-type type="application/x-lzip">
<comment>Lzip archive</comment>
- <comment xml:lang="ar">أرشيف Lzip</comment>
- <comment xml:lang="bg">Архив — lzip</comment>
- <comment xml:lang="ca">arxiu lzip</comment>
- <comment xml:lang="cs">archiv Lzip</comment>
- <comment xml:lang="da">Lzip-arkiv</comment>
- <comment xml:lang="de">Lzip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Lzip</comment>
- <comment xml:lang="en_GB">Lzip archive</comment>
- <comment xml:lang="eo">Lzip-arkivo</comment>
- <comment xml:lang="es">archivador Lzip</comment>
- <comment xml:lang="eu">Lzip artxiboa</comment>
- <comment xml:lang="fi">Lzip-arkisto</comment>
- <comment xml:lang="fo">Lzip skjalasavn</comment>
- <comment xml:lang="fr">archive lzip</comment>
- <comment xml:lang="ga">cartlann Lzip</comment>
- <comment xml:lang="gl">arquivo Lzip</comment>
- <comment xml:lang="he">ארכיון Lzip</comment>
- <comment xml:lang="hr">Lzip arhiva</comment>
- <comment xml:lang="hu">Lzip archívum</comment>
- <comment xml:lang="ia">Archivo Lzip</comment>
- <comment xml:lang="id">Arsip Lzip</comment>
- <comment xml:lang="it">Archivio Lzip</comment>
- <comment xml:lang="ja">Lzip アーカイブ</comment>
- <comment xml:lang="kk">Lzip архиві</comment>
- <comment xml:lang="ko">LZIP 압축 파일</comment>
- <comment xml:lang="lt">Lzip archyvas</comment>
- <comment xml:lang="lv">Lzip arhīvs</comment>
- <comment xml:lang="nl">Lzip archief</comment>
- <comment xml:lang="oc">archiu lzip</comment>
- <comment xml:lang="pl">Archiwum lzip</comment>
- <comment xml:lang="pt">arquivo LZip</comment>
- <comment xml:lang="pt_BR">Pacote Lzip</comment>
- <comment xml:lang="ro">Arhivă Lzip</comment>
- <comment xml:lang="ru">Архив LZIP</comment>
- <comment xml:lang="sk">Archív Lzip</comment>
- <comment xml:lang="sl">Datoteka arhiva Lzip</comment>
- <comment xml:lang="sr">Лзип архива</comment>
- <comment xml:lang="sv">Lzip-arkiv</comment>
- <comment xml:lang="tr">Lzip arşivi</comment>
- <comment xml:lang="uk">архів lzip</comment>
- <comment xml:lang="zh_CN">Lzip 归档文件</comment>
<comment xml:lang="zh_TW">Lzip 封存檔</comment>
+ <comment xml:lang="zh_CN">Lzip 归档文件</comment>
+ <comment xml:lang="uk">архів lzip</comment>
+ <comment xml:lang="tr">Lzip arşivi</comment>
+ <comment xml:lang="sv">Lzip-arkiv</comment>
+ <comment xml:lang="sr">Лзип архива</comment>
+ <comment xml:lang="sq">arkiv Lzip</comment>
+ <comment xml:lang="sl">Datoteka arhiva Lzip</comment>
+ <comment xml:lang="si">Lzip සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Lzip</comment>
+ <comment xml:lang="ru">Архив LZIP</comment>
+ <comment xml:lang="ro">Arhivă Lzip</comment>
+ <comment xml:lang="pt_BR">Pacote Lzip</comment>
+ <comment xml:lang="pt">arquivo LZip</comment>
+ <comment xml:lang="pl">Archiwum lzip</comment>
+ <comment xml:lang="oc">archiu lzip</comment>
+ <comment xml:lang="nl">Lzip-archief</comment>
+ <comment xml:lang="lv">Lzip arhīvs</comment>
+ <comment xml:lang="lt">Lzip archyvas</comment>
+ <comment xml:lang="ko">LZIP 압축 파일</comment>
+ <comment xml:lang="kk">Lzip архиві</comment>
+ <comment xml:lang="ja">Lzip アーカイブ</comment>
+ <comment xml:lang="it">Archivio Lzip</comment>
+ <comment xml:lang="is">Lzip safnskrá</comment>
+ <comment xml:lang="id">Arsip Lzip</comment>
+ <comment xml:lang="ia">Archivo Lzip</comment>
+ <comment xml:lang="hu">Lzip archívum</comment>
+ <comment xml:lang="hr">Lzip arhiva</comment>
+ <comment xml:lang="he">ארכיון Lzip</comment>
+ <comment xml:lang="gl">arquivo Lzip</comment>
+ <comment xml:lang="ga">cartlann Lzip</comment>
+ <comment xml:lang="fur">archivi Lzip</comment>
+ <comment xml:lang="fr">archive lzip</comment>
+ <comment xml:lang="fo">Lzip skjalasavn</comment>
+ <comment xml:lang="fi">Lzip-arkisto</comment>
+ <comment xml:lang="eu">Lzip artxiboa</comment>
+ <comment xml:lang="es">archivador Lzip</comment>
+ <comment xml:lang="eo">Lzip-arkivo</comment>
+ <comment xml:lang="en_GB">Lzip archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Lzip</comment>
+ <comment xml:lang="de">Lzip-Archiv</comment>
+ <comment xml:lang="da">Lzip-arkiv</comment>
+ <comment xml:lang="cs">archiv Lzip</comment>
+ <comment xml:lang="ca">arxiu lzip</comment>
+ <comment xml:lang="bg">Архив — Lzip</comment>
+ <comment xml:lang="be">архіў Lzip</comment>
+ <comment xml:lang="ar">أرشيف Lzip</comment>
+ <comment xml:lang="af">Lzip-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="LZIP" type="string" offset="0"/>
+ <match type="string" value="LZIP" offset="0"/>
</magic>
<glob pattern="*.lz"/>
</mime-type>
<mime-type type="application/x-lzip-compressed-tar">
<comment>Tar archive (lzip-compressed)</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió lzip)</comment>
- <comment xml:lang="cs">archiv Tar (komprimace lzip)</comment>
- <comment xml:lang="da">Tar-arkiv (lzip-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (lzip-komprimiert)</comment>
- <comment xml:lang="en_GB">Tar archive (lzip-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con lzip)</comment>
- <comment xml:lang="eu">Tar artxiboa (lzip-rekin konprimatua)</comment>
- <comment xml:lang="fi">Tar-arkisto (lzip-pakattu)</comment>
- <comment xml:lang="fr">archive tar (compressée lzip)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le lzip)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י lzip)</comment>
- <comment xml:lang="hr">Tar arhiva (lzip sažeto)</comment>
- <comment xml:lang="hu">Tar archívum (lzippel tömörítve)</comment>
- <comment xml:lang="id">arsip tar (terkompresi lzip)</comment>
- <comment xml:lang="it">Archivio tar (compresso con lzip)</comment>
- <comment xml:lang="kk">Tar архиві (lzip-пен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(LZIP 압축)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja lzip)</comment>
- <comment xml:lang="pt_BR">Arquivo Tar (compactado com lzip)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый lzip)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou lzip)</comment>
- <comment xml:lang="sr">Тар архива (запакована лзипом)</comment>
- <comment xml:lang="sv">Tar-arkiv (lzip-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (lzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений lzip)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (lzip 壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(lzip 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (lzip 格式壓縮)</comment>
+ <comment xml:lang="uk">архів tar (стиснений lzip)</comment>
+ <comment xml:lang="tr">Tar arşivi (lzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (lzip-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована лзипом)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me lzip)</comment>
+ <comment xml:lang="sl">Arhiv tar (stisnjen, lzip)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (lzip-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou lzip)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый lzip)</comment>
+ <comment xml:lang="pt_BR">Arquivo Tar (compactado com lzip)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja lzip)</comment>
+ <comment xml:lang="oc">archiu Tar (compression lzip)</comment>
+ <comment xml:lang="nl">Tar-archief (gecomprimeerd met lzip)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(LZIP 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (lzip-пен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (lzip 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con lzip)</comment>
+ <comment xml:lang="is">Tar safnskrá (lzip-þjappað)</comment>
+ <comment xml:lang="id">Arsip tar (terkompresi lzip)</comment>
+ <comment xml:lang="hu">Tar archívum (lzip tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (lzip sažeto)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י lzip)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le lzip)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun lzip)</comment>
+ <comment xml:lang="fr">archive tar (compressée lzip)</comment>
+ <comment xml:lang="fi">Tar-arkisto (lzip-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (lzip-rekin konprimatua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con LZIP)</comment>
+ <comment xml:lang="en_GB">Tar archive (lzip-compressed)</comment>
+ <comment xml:lang="de">Tar-Archiv (lzip-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (lzip-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimace lzip)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió lzip)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с Lzip</comment>
+ <comment xml:lang="be">архіў tar (сцісканне lzip)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-lzip)</comment>
+ <comment xml:lang="af">Tar-argief (lzip-saamgepers)</comment>
<generic-icon name="package-x-generic"/>
<sub-class-of type="application/x-lzip"/>
<glob pattern="*.tar.lz"/>
</mime-type>
<mime-type type="application/x-lzpdf">
<comment>PDF document (lzip-compressed)</comment>
- <comment xml:lang="ast">Documentu PDF (comprimíu en lzip)</comment>
- <comment xml:lang="ca">document PDF (amb compressió lzip)</comment>
- <comment xml:lang="cs">dokument PDF (komprimace lzip)</comment>
- <comment xml:lang="de">PDF-Dokument (lzip-komprimiert)</comment>
- <comment xml:lang="en_GB">PDF document (lzip-compressed)</comment>
- <comment xml:lang="es">documento PDF (comprimido con lzip)</comment>
- <comment xml:lang="eu">PDF dokumentua (lzip-rekin konprimitua)</comment>
- <comment xml:lang="fi">PDF-asiakirja (lzip-pakattu)</comment>
- <comment xml:lang="fr">document PDF (compressé lzip)</comment>
- <comment xml:lang="ga">cáipéis PDF (comhbhrúite le lzip)</comment>
- <comment xml:lang="hr">PDF dokument (lzip sažeto)</comment>
- <comment xml:lang="hu">PDF dokumentum (lzip-tömörítésű)</comment>
- <comment xml:lang="id">dokumen PDF (termkompresi lzip)</comment>
- <comment xml:lang="it">Documento PDF (compresso con lzip)</comment>
- <comment xml:lang="kk">PDF құжаты (lzip-пен сығылған)</comment>
- <comment xml:lang="ko">PDF 문서(LZIP 압축)</comment>
- <comment xml:lang="pl">Dokument PDF (kompresja lzip)</comment>
- <comment xml:lang="pt_BR">Documento PDF (compactado com lzip)</comment>
- <comment xml:lang="ru">Документ PDF (сжатый lzip)</comment>
- <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou lzip)</comment>
- <comment xml:lang="sr">ПДФ документ (запакован лзип-ом)</comment>
- <comment xml:lang="sv">PDF-dokument (lzip-komprimerat)</comment>
- <comment xml:lang="tr">PDF belgesi (lzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ PDF (стиснений lzip)</comment>
+ <comment xml:lang="zh_TW">PDF 文件 (lzip 壓縮)</comment>
<comment xml:lang="zh_CN">PDF 文档(lzip 压缩)</comment>
- <comment xml:lang="zh_TW">PDF 文件 (lzip 格式壓縮)</comment>
+ <comment xml:lang="uk">документ PDF (стиснений lzip)</comment>
+ <comment xml:lang="tr">PDF belgesi (lzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">PDF-dokument (lzip-komprimerat)</comment>
+ <comment xml:lang="sr">ПДФ документ (запакован лзип-ом)</comment>
+ <comment xml:lang="sq">dokument PDF (ngjeshur me lzip)</comment>
+ <comment xml:lang="sl">Dokument PDF (stisnjen, lzip)</comment>
+ <comment xml:lang="si">PDF ලේඛනය (lzip-compressed)</comment>
+ <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou lzip)</comment>
+ <comment xml:lang="ru">Документ PDF (сжатый lzip)</comment>
+ <comment xml:lang="pt_BR">Documento PDF (compactado com lzip)</comment>
+ <comment xml:lang="pl">Dokument PDF (kompresja lzip)</comment>
+ <comment xml:lang="oc">document PDF (compressat amb lzip)</comment>
+ <comment xml:lang="nl">PDF-document (gecomprimeerd met lzip)</comment>
+ <comment xml:lang="ko">PDF 문서(LZIP 압축)</comment>
+ <comment xml:lang="kk">PDF құжаты (lzip-пен сығылған)</comment>
+ <comment xml:lang="ja">PDF ドキュメント (lzip 圧縮)</comment>
+ <comment xml:lang="it">Documento PDF (compresso con lzip)</comment>
+ <comment xml:lang="is">PDF skjal (lzip-þjappað)</comment>
+ <comment xml:lang="id">Dokumen PDF (termkompresi lzip)</comment>
+ <comment xml:lang="hu">PDF dokumentum (lzip tömörítésű)</comment>
+ <comment xml:lang="hr">PDF dokument (lzip sažeto)</comment>
+ <comment xml:lang="he">מסמך PDF (דחוס ב־lzip)</comment>
+ <comment xml:lang="ga">cáipéis PDF (comhbhrúite le lzip)</comment>
+ <comment xml:lang="fur">document PDF (comprimût cun lzip)</comment>
+ <comment xml:lang="fr">document PDF (compressé lzip)</comment>
+ <comment xml:lang="fi">PDF-asiakirja (lzip-pakattu)</comment>
+ <comment xml:lang="eu">PDF dokumentua (lzip-rekin konprimitua)</comment>
+ <comment xml:lang="es">documento PDF (comprimido con LZIP)</comment>
+ <comment xml:lang="en_GB">PDF document (lzip-compressed)</comment>
+ <comment xml:lang="de">PDF-Dokument (lzip-komprimiert)</comment>
+ <comment xml:lang="da">PDF-dokument (lzip-komprimeret)</comment>
+ <comment xml:lang="cs">dokument PDF (komprimace lzip)</comment>
+ <comment xml:lang="ca">document PDF (amb compressió lzip)</comment>
+ <comment xml:lang="bg">Документ — PDF, компресиран с Lzip</comment>
+ <comment xml:lang="be">дакумент PDF (сцісканне lzip)</comment>
+ <comment xml:lang="ast">Documentu PDF (comprimíu en lzip)</comment>
+ <comment xml:lang="ar">مستند PDF (مضغوط-lzip)</comment>
+ <comment xml:lang="af">PDF-dokument (lzip-saamgepers)</comment>
<sub-class-of type="application/x-lzip"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.pdf.lz"/>
</mime-type>
<mime-type type="application/x-lzma">
<comment>LZMA archive</comment>
- <comment xml:lang="ar">أرشيف LZMA</comment>
- <comment xml:lang="be@latin">Archiŭ LZMA</comment>
- <comment xml:lang="bg">Архив — LZMA</comment>
- <comment xml:lang="ca">arxiu LZMA</comment>
- <comment xml:lang="cs">archiv LZMA</comment>
- <comment xml:lang="da">LZHA-arkiv</comment>
- <comment xml:lang="de">LZMA-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο LZMA</comment>
- <comment xml:lang="en_GB">LZMA archive</comment>
- <comment xml:lang="eo">LZMA-arkivo</comment>
- <comment xml:lang="es">archivador LZMA</comment>
- <comment xml:lang="eu">LZMA artxiboa</comment>
- <comment xml:lang="fi">LZMA-arkisto</comment>
- <comment xml:lang="fo">LZMA skjalasavn</comment>
- <comment xml:lang="fr">archive LZMA</comment>
- <comment xml:lang="ga">cartlann LZMA</comment>
- <comment xml:lang="gl">arquivo LZMA</comment>
- <comment xml:lang="he">ארכיון LZMA</comment>
- <comment xml:lang="hr">LZMA arhiva</comment>
- <comment xml:lang="hu">LZMA-archívum</comment>
- <comment xml:lang="ia">Archivo LZMA</comment>
- <comment xml:lang="id">Arsip LZMA</comment>
- <comment xml:lang="it">Archivio LZMA</comment>
- <comment xml:lang="ja">LZMA アーカイブ</comment>
- <comment xml:lang="kk">LZMA архиві</comment>
- <comment xml:lang="ko">LZMA 압축 파일</comment>
- <comment xml:lang="lt">LZMA archyvas</comment>
- <comment xml:lang="lv">LZMA arhīvs</comment>
- <comment xml:lang="nb">LZMA-arkiv</comment>
- <comment xml:lang="nl">LZMA-archief</comment>
- <comment xml:lang="nn">LZMA-arkiv</comment>
- <comment xml:lang="oc">archiu LZMA</comment>
- <comment xml:lang="pl">Archiwum LZMA</comment>
- <comment xml:lang="pt">arquivo LZMA</comment>
- <comment xml:lang="pt_BR">Pacote LZMA</comment>
- <comment xml:lang="ro">Arhivă LZMA</comment>
- <comment xml:lang="ru">Архив LZMA</comment>
- <comment xml:lang="sk">Archív LZMA</comment>
- <comment xml:lang="sl">Datoteka arhiva LZMA</comment>
- <comment xml:lang="sq">Arkiv LZMA</comment>
- <comment xml:lang="sr">ЛЗМА архива</comment>
- <comment xml:lang="sv">LZMA-arkiv</comment>
- <comment xml:lang="tr">LZMA arşivi</comment>
- <comment xml:lang="uk">архів LZMA</comment>
- <comment xml:lang="vi">Kho nén LZMA</comment>
- <comment xml:lang="zh_CN">LZMA 归档文件</comment>
<comment xml:lang="zh_TW">LZMA 封存檔</comment>
+ <comment xml:lang="zh_CN">LZMA 归档文件</comment>
+ <comment xml:lang="vi">Kho nén LZMA</comment>
+ <comment xml:lang="uk">архів LZMA</comment>
+ <comment xml:lang="tr">LZMA arşivi</comment>
+ <comment xml:lang="sv">LZMA-arkiv</comment>
+ <comment xml:lang="sr">ЛЗМА архива</comment>
+ <comment xml:lang="sq">arkiv LZMA</comment>
+ <comment xml:lang="sl">Datoteka arhiva LZMA</comment>
+ <comment xml:lang="si">LZMA ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív LZMA</comment>
+ <comment xml:lang="ru">Архив LZMA</comment>
+ <comment xml:lang="ro">Arhivă LZMA</comment>
+ <comment xml:lang="pt_BR">Pacote LZMA</comment>
+ <comment xml:lang="pt">arquivo LZMA</comment>
+ <comment xml:lang="pl">Archiwum LZMA</comment>
+ <comment xml:lang="oc">archiu LZMA</comment>
+ <comment xml:lang="nn">LZMA-arkiv</comment>
+ <comment xml:lang="nl">LZMA-archief</comment>
+ <comment xml:lang="nb">LZMA-arkiv</comment>
+ <comment xml:lang="lv">LZMA arhīvs</comment>
+ <comment xml:lang="lt">LZMA archyvas</comment>
+ <comment xml:lang="ko">LZMA 압축 파일</comment>
+ <comment xml:lang="kk">LZMA архиві</comment>
+ <comment xml:lang="ja">LZMA アーカイブ</comment>
+ <comment xml:lang="it">Archivio LZMA</comment>
+ <comment xml:lang="is">LZMA safnskrá</comment>
+ <comment xml:lang="id">Arsip LZMA</comment>
+ <comment xml:lang="ia">Archivo LZMA</comment>
+ <comment xml:lang="hu">LZMA-archívum</comment>
+ <comment xml:lang="hr">LZMA arhiva</comment>
+ <comment xml:lang="he">ארכיון LZMA</comment>
+ <comment xml:lang="gl">arquivo LZMA</comment>
+ <comment xml:lang="ga">cartlann LZMA</comment>
+ <comment xml:lang="fur">archivi LZMA</comment>
+ <comment xml:lang="fr">archive LZMA</comment>
+ <comment xml:lang="fo">LZMA skjalasavn</comment>
+ <comment xml:lang="fi">LZMA-arkisto</comment>
+ <comment xml:lang="eu">LZMA artxiboa</comment>
+ <comment xml:lang="es">archivador LZMA</comment>
+ <comment xml:lang="eo">LZMA-arkivo</comment>
+ <comment xml:lang="en_GB">LZMA archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο LZMA</comment>
+ <comment xml:lang="de">LZMA-Archiv</comment>
+ <comment xml:lang="da">LZHA-arkiv</comment>
+ <comment xml:lang="cs">archiv LZMA</comment>
+ <comment xml:lang="ca">arxiu LZMA</comment>
+ <comment xml:lang="bg">Архив — LZMA</comment>
+ <comment xml:lang="be@latin">Archiŭ LZMA</comment>
+ <comment xml:lang="be">архіў LZMA</comment>
+ <comment xml:lang="ar">أرشيف LZMA</comment>
+ <comment xml:lang="af">LZMA-argief</comment>
<acronym>LZMA</acronym>
<expanded-acronym>Lempel-Ziv-Markov chain-Algorithm</expanded-acronym>
<generic-icon name="package-x-generic"/>
@@ -15186,52 +16513,57 @@
</mime-type>
<mime-type type="application/x-lzma-compressed-tar">
<comment>Tar archive (LZMA-compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط-LZMA)</comment>
- <comment xml:lang="be@latin">Archiŭ tar (LZMA-skampresavany)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран с LZMA</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió LZMA)</comment>
- <comment xml:lang="cs">archiv Tar (komprimace LZMA)</comment>
- <comment xml:lang="da">Tar-arkiv (LZMA-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (LZMA-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με LZMA)</comment>
- <comment xml:lang="en_GB">Tar archive (LZMA-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con LZMA)</comment>
- <comment xml:lang="eu">Tar artxiboa (LZMA-rekin konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (LZMA-pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn (LZMA-stappað)</comment>
- <comment xml:lang="fr">archive tar (compression LZMA)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le LZMA)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido con LZMA)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י LZMA)</comment>
- <comment xml:lang="hr">Tar arhiva (LZMA sažeta)</comment>
- <comment xml:lang="hu">Tar archívum (LZMA-val tömörítve)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite con LZMA)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi LZMA)</comment>
- <comment xml:lang="it">Archivio tar (compresso con LZMA)</comment>
- <comment xml:lang="ja">Tar アーカイブ (LZMA 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (LZMA-мен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(LZMA 압축)</comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas su LZMA)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests ar LZMA)</comment>
- <comment xml:lang="nb">Tar-arkiv (LZMA-komprimert)</comment>
- <comment xml:lang="nl">Tar-archief (ingepakt met LZMA)</comment>
- <comment xml:lang="nn">Tar-arkiv (pakka med LZMA)</comment>
- <comment xml:lang="oc">archiu tar (compression LZMA)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja LZMA)</comment>
- <comment xml:lang="pt">arquivo Tar (compressão LZMA)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado com LZMA)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată LZMA)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый lzma)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou LZMA)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z LZMA)</comment>
- <comment xml:lang="sq">Arkiv tar (i kompresuar me LZMA)</comment>
- <comment xml:lang="sr">Тар архива (запакована ЛЗМА-ом)</comment>
- <comment xml:lang="sv">Tar-arkiv (LZMA-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (LZMA ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений LZMA)</comment>
- <comment xml:lang="vi">Kho nén tar (đã nén LZMA)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (LZMA 壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(LZMA 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (LZMA 格式壓縮)</comment>
+ <comment xml:lang="vi">Kho nén tar (đã nén LZMA)</comment>
+ <comment xml:lang="uk">архів tar (стиснений LZMA)</comment>
+ <comment xml:lang="tr">Tar arşivi (LZMA ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (LZMA-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована ЛЗМА-ом)</comment>
+ <comment xml:lang="sq">arkiv Tar (ngjeshur me LZMA)</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z LZMA)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (LZMA-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou LZMA)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый lzma)</comment>
+ <comment xml:lang="ro">Arhivă Tar (comprimată LZMA)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado com LZMA)</comment>
+ <comment xml:lang="pt">arquivo Tar (compressão LZMA)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja LZMA)</comment>
+ <comment xml:lang="oc">archiu tar (compression LZMA)</comment>
+ <comment xml:lang="nn">Tar-arkiv (pakka med LZMA)</comment>
+ <comment xml:lang="nl">Tar-archief (gecomprimeerd met LZMA)</comment>
+ <comment xml:lang="nb">Tar-arkiv (LZMA-komprimert)</comment>
+ <comment xml:lang="lv">Tar arhīvs (saspiests ar LZMA)</comment>
+ <comment xml:lang="lt">Tar archyvas (suglaudintas su LZMA)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(LZMA 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (LZMA-мен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (LZMA 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con LZMA)</comment>
+ <comment xml:lang="is">Tar safnskrá (LZMA-þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi LZMA)</comment>
+ <comment xml:lang="ia">Archivo Tar (comprimite con LZMA)</comment>
+ <comment xml:lang="hu">Tar archívum (LZMA tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (LZMA sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י LZMA)</comment>
+ <comment xml:lang="gl">arquivo Tar (comprimido con LZMA)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le LZMA)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun LZMA)</comment>
+ <comment xml:lang="fr">archive tar (compression LZMA)</comment>
+ <comment xml:lang="fo">Tar skjalasavn (LZMA-stappað)</comment>
+ <comment xml:lang="fi">Tar-arkisto (LZMA-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (LZMA-rekin konprimitua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con LZMA)</comment>
+ <comment xml:lang="en_GB">Tar archive (LZMA-compressed)</comment>
+ <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με LZMA)</comment>
+ <comment xml:lang="de">Tar-Archiv (LZMA-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (LZMA-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimace LZMA)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió LZMA)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с LZMA</comment>
+ <comment xml:lang="be@latin">Archiŭ tar (LZMA-skampresavany)</comment>
+ <comment xml:lang="be">архіў tar (сцісканне LZMA)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-LZMA)</comment>
+ <comment xml:lang="af">Tar-argief (LZMA-saamgepers)</comment>
<sub-class-of type="application/x-lzma"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.tar.lzma"/>
@@ -15239,637 +16571,732 @@
</mime-type>
<mime-type type="application/x-lzop">
<comment>LZO archive</comment>
- <comment xml:lang="ar">أرشيف LZO</comment>
- <comment xml:lang="be@latin">Archiŭ LZO</comment>
- <comment xml:lang="bg">Архив — LZO</comment>
- <comment xml:lang="ca">arxiu LZO</comment>
- <comment xml:lang="cs">archiv LZO</comment>
- <comment xml:lang="da">LZO-arkiv</comment>
- <comment xml:lang="de">LZO-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο LZO</comment>
- <comment xml:lang="en_GB">LZO archive</comment>
- <comment xml:lang="eo">LZO-arkivo</comment>
- <comment xml:lang="es">archivador LZO</comment>
- <comment xml:lang="eu">LZO artxiboa</comment>
- <comment xml:lang="fi">LZO-arkisto</comment>
- <comment xml:lang="fo">LZO skjalasavn</comment>
- <comment xml:lang="fr">archive LZO</comment>
- <comment xml:lang="ga">cartlann LZO</comment>
- <comment xml:lang="gl">arquivo LZO</comment>
- <comment xml:lang="he">ארכיון LZO</comment>
- <comment xml:lang="hr">LZO arhiva</comment>
- <comment xml:lang="hu">LZO-archívum</comment>
- <comment xml:lang="ia">Archivo LZO</comment>
- <comment xml:lang="id">Arsip LZO</comment>
- <comment xml:lang="it">Archivio LZO</comment>
- <comment xml:lang="ja">LZO アーカイブ</comment>
- <comment xml:lang="kk">LZO архиві</comment>
- <comment xml:lang="ko">LZO 압축 파일</comment>
- <comment xml:lang="lt">LZO archyvas</comment>
- <comment xml:lang="lv">LZO arhīvs</comment>
- <comment xml:lang="ms">Arkib LZO</comment>
- <comment xml:lang="nb">LZO-arkiv</comment>
- <comment xml:lang="nl">LZO-archief</comment>
- <comment xml:lang="nn">LZO-arkiv</comment>
- <comment xml:lang="oc">archiu LZO</comment>
- <comment xml:lang="pl">Archiwum LZO</comment>
- <comment xml:lang="pt">arquivo LZO</comment>
- <comment xml:lang="pt_BR">Pacote LZO</comment>
- <comment xml:lang="ro">Arhivă LZO</comment>
- <comment xml:lang="ru">Архив LZO</comment>
- <comment xml:lang="sk">Archív LZO</comment>
- <comment xml:lang="sl">Datoteka arhiva LZO</comment>
- <comment xml:lang="sq">Arkiv LZO</comment>
- <comment xml:lang="sr">ЛЗО архива</comment>
- <comment xml:lang="sv">LZO-arkiv</comment>
- <comment xml:lang="tr">LZO arşivi</comment>
- <comment xml:lang="uk">архів LZO</comment>
- <comment xml:lang="vi">Kho nén LZO</comment>
- <comment xml:lang="zh_CN">LZO 归档文件</comment>
<comment xml:lang="zh_TW">LZO 封存檔</comment>
+ <comment xml:lang="zh_CN">LZO 归档文件</comment>
+ <comment xml:lang="vi">Kho nén LZO</comment>
+ <comment xml:lang="uk">архів LZO</comment>
+ <comment xml:lang="tr">LZO arşivi</comment>
+ <comment xml:lang="sv">LZO-arkiv</comment>
+ <comment xml:lang="sr">ЛЗО архива</comment>
+ <comment xml:lang="sq">arkiv LZO</comment>
+ <comment xml:lang="sl">Datoteka arhiva LZO</comment>
+ <comment xml:lang="si">LZO ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív LZO</comment>
+ <comment xml:lang="ru">Архив LZO</comment>
+ <comment xml:lang="ro">Arhivă LZO</comment>
+ <comment xml:lang="pt_BR">Pacote LZO</comment>
+ <comment xml:lang="pt">arquivo LZO</comment>
+ <comment xml:lang="pl">Archiwum LZO</comment>
+ <comment xml:lang="oc">archiu LZO</comment>
+ <comment xml:lang="nn">LZO-arkiv</comment>
+ <comment xml:lang="nl">LZO-archief</comment>
+ <comment xml:lang="nb">LZO-arkiv</comment>
+ <comment xml:lang="ms">Arkib LZO</comment>
+ <comment xml:lang="lv">LZO arhīvs</comment>
+ <comment xml:lang="lt">LZO archyvas</comment>
+ <comment xml:lang="ko">LZO 압축 파일</comment>
+ <comment xml:lang="kk">LZO архиві</comment>
+ <comment xml:lang="ja">LZO アーカイブ</comment>
+ <comment xml:lang="it">Archivio LZO</comment>
+ <comment xml:lang="is">LZO safnskrá</comment>
+ <comment xml:lang="id">Arsip LZO</comment>
+ <comment xml:lang="ia">Archivo LZO</comment>
+ <comment xml:lang="hu">LZO-archívum</comment>
+ <comment xml:lang="hr">LZO arhiva</comment>
+ <comment xml:lang="he">ארכיון LZO</comment>
+ <comment xml:lang="gl">arquivo LZO</comment>
+ <comment xml:lang="ga">cartlann LZO</comment>
+ <comment xml:lang="fur">archivi LZO</comment>
+ <comment xml:lang="fr">archive LZO</comment>
+ <comment xml:lang="fo">LZO skjalasavn</comment>
+ <comment xml:lang="fi">LZO-arkisto</comment>
+ <comment xml:lang="eu">LZO artxiboa</comment>
+ <comment xml:lang="es">archivador LZO</comment>
+ <comment xml:lang="eo">LZO-arkivo</comment>
+ <comment xml:lang="en_GB">LZO archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο LZO</comment>
+ <comment xml:lang="de">LZO-Archiv</comment>
+ <comment xml:lang="da">LZO-arkiv</comment>
+ <comment xml:lang="cs">archiv LZO</comment>
+ <comment xml:lang="ca">arxiu LZO</comment>
+ <comment xml:lang="bg">Архив — LZO</comment>
+ <comment xml:lang="be@latin">Archiŭ LZO</comment>
+ <comment xml:lang="be">архіў LZO</comment>
+ <comment xml:lang="ar">أرشيف LZO</comment>
+ <comment xml:lang="af">LZO-argief</comment>
<acronym>LZO</acronym>
<expanded-acronym>Lempel-Ziv-Oberhumer</expanded-acronym>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="\x89\x4c\x5a\x4f\x00\x0d\x0a\x1a\x0a" type="string" offset="0"/>
+ <match type="string" value="\x89\x4c\x5a\x4f\x00\x0d\x0a\x1a\x0a" offset="0"/>
</magic>
<glob pattern="*.lzo"/>
</mime-type>
<mime-type type="application/x-qpress">
<comment>Qpress archive</comment>
- <comment xml:lang="ca">arxiu Qpress</comment>
- <comment xml:lang="cs">archiv Qpress</comment>
- <comment xml:lang="da">Qpress-arkiv</comment>
- <comment xml:lang="de">Qpress-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Qpress</comment>
- <comment xml:lang="en_GB">Qpress archive</comment>
- <comment xml:lang="es">archivador de Qpress</comment>
- <comment xml:lang="fi">Qpress-arkisto</comment>
- <comment xml:lang="fr">Archive Qpress</comment>
- <comment xml:lang="ga">cartlann Qpress</comment>
- <comment xml:lang="gl">Arquivo Qpress</comment>
- <comment xml:lang="he">ארכיון Qpress</comment>
- <comment xml:lang="hr">Qpress arhiva</comment>
- <comment xml:lang="hu">Qpress archívum</comment>
- <comment xml:lang="ia">Archivo Qpress</comment>
- <comment xml:lang="id">Arsip Qpress</comment>
- <comment xml:lang="it">Archivio Qpress</comment>
- <comment xml:lang="kk">Qpress архиві</comment>
- <comment xml:lang="ko">Qpress 압축 파일</comment>
- <comment xml:lang="oc">Archiu Qpress</comment>
- <comment xml:lang="pl">Archiwum Qpress</comment>
- <comment xml:lang="pt">arquivo Qpress</comment>
- <comment xml:lang="pt_BR">Pacote Qpress</comment>
- <comment xml:lang="ru">Архив Qpress</comment>
- <comment xml:lang="sk">Archív Qpress</comment>
- <comment xml:lang="sl">Datoteka arhiva Qpress</comment>
- <comment xml:lang="sr">Купрес архива</comment>
- <comment xml:lang="sv">Qpress-arkiv</comment>
- <comment xml:lang="tr">Qpress arşivi</comment>
- <comment xml:lang="uk">архів Qpress</comment>
- <comment xml:lang="zh_CN">Qpress 归档文件</comment>
<comment xml:lang="zh_TW">Qpress 封存檔</comment>
+ <comment xml:lang="zh_CN">Qpress 归档文件</comment>
+ <comment xml:lang="uk">архів Qpress</comment>
+ <comment xml:lang="tr">Qpress arşivi</comment>
+ <comment xml:lang="sv">Qpress-arkiv</comment>
+ <comment xml:lang="sr">Купрес архива</comment>
+ <comment xml:lang="sq">arkiv Qpress</comment>
+ <comment xml:lang="sl">Datoteka arhiva Qpress</comment>
+ <comment xml:lang="si">Qpress සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Qpress</comment>
+ <comment xml:lang="ru">Архив Qpress</comment>
+ <comment xml:lang="pt_BR">Pacote Qpress</comment>
+ <comment xml:lang="pt">arquivo Qpress</comment>
+ <comment xml:lang="pl">Archiwum Qpress</comment>
+ <comment xml:lang="oc">Archiu Qpress</comment>
+ <comment xml:lang="nl">Qpress-archief</comment>
+ <comment xml:lang="ko">Qpress 압축 파일</comment>
+ <comment xml:lang="kk">Qpress архиві</comment>
+ <comment xml:lang="ja">Qpress アーカイブ</comment>
+ <comment xml:lang="it">Archivio Qpress</comment>
+ <comment xml:lang="is">Qpress safnskrá</comment>
+ <comment xml:lang="id">Arsip Qpress</comment>
+ <comment xml:lang="ia">Archivo Qpress</comment>
+ <comment xml:lang="hu">Qpress archívum</comment>
+ <comment xml:lang="hr">Qpress arhiva</comment>
+ <comment xml:lang="he">ארכיון Qpress</comment>
+ <comment xml:lang="gl">Arquivo Qpress</comment>
+ <comment xml:lang="ga">cartlann Qpress</comment>
+ <comment xml:lang="fur">archivi Qpress</comment>
+ <comment xml:lang="fr">Archive Qpress</comment>
+ <comment xml:lang="fi">Qpress-arkisto</comment>
+ <comment xml:lang="eu">Qpress artxiboa</comment>
+ <comment xml:lang="es">archivador de Qpress</comment>
+ <comment xml:lang="en_GB">Qpress archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Qpress</comment>
+ <comment xml:lang="de">Qpress-Archiv</comment>
+ <comment xml:lang="da">Qpress-arkiv</comment>
+ <comment xml:lang="cs">archiv Qpress</comment>
+ <comment xml:lang="ca">arxiu Qpress</comment>
+ <comment xml:lang="bg">Архив — Qpress</comment>
+ <comment xml:lang="be">архіў Qpress</comment>
+ <comment xml:lang="ar">أرشيف Qpress</comment>
+ <comment xml:lang="af">Qpress-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="qpress10" type="string" offset="0"/>
+ <match type="string" value="qpress10" offset="0"/>
</magic>
<glob pattern="*.qp"/>
</mime-type>
<mime-type type="application/x-xar">
<comment>XAR archive</comment>
- <comment xml:lang="ca">arxiu XAR</comment>
- <comment xml:lang="cs">archiv XAR</comment>
- <comment xml:lang="da">XAR-arkiv</comment>
- <comment xml:lang="de">XAR-Archiv</comment>
- <comment xml:lang="en_GB">XAR archive</comment>
- <comment xml:lang="es">archivador XAR</comment>
- <comment xml:lang="eu">XAR artxiboa</comment>
- <comment xml:lang="fi">XAR-arkisto</comment>
- <comment xml:lang="fr">archive XAR</comment>
- <comment xml:lang="ga">cartlann XAR</comment>
- <comment xml:lang="he">ארכיון XAR</comment>
- <comment xml:lang="hr">XAR arhiva</comment>
- <comment xml:lang="hu">XAR archívum</comment>
- <comment xml:lang="id">Arsip XAR</comment>
- <comment xml:lang="it">Archivio XAR</comment>
- <comment xml:lang="kk">XAR архиві</comment>
- <comment xml:lang="ko">XAR 아카이브</comment>
- <comment xml:lang="oc">Archiu XAR</comment>
- <comment xml:lang="pl">Archiwum XAR</comment>
- <comment xml:lang="pt_BR">Arquivo XAR</comment>
- <comment xml:lang="ru">Архив XAR</comment>
- <comment xml:lang="sk">Archív XAR</comment>
- <comment xml:lang="sr">ИксАР архива</comment>
- <comment xml:lang="sv">XAR-arkiv</comment>
- <comment xml:lang="tr">XAR arşivi</comment>
- <comment xml:lang="uk">архів XAR</comment>
- <comment xml:lang="zh_CN">XAR 归档文件</comment>
<comment xml:lang="zh_TW">XAR 封存檔</comment>
+ <comment xml:lang="zh_CN">XAR 归档文件</comment>
+ <comment xml:lang="uk">архів XAR</comment>
+ <comment xml:lang="tr">XAR arşivi</comment>
+ <comment xml:lang="sv">XAR-arkiv</comment>
+ <comment xml:lang="sr">ИксАР архива</comment>
+ <comment xml:lang="sq">arkvi XAR</comment>
+ <comment xml:lang="sl">Arhiv XAR</comment>
+ <comment xml:lang="si">XAR ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív XAR</comment>
+ <comment xml:lang="ru">Архив XAR</comment>
+ <comment xml:lang="pt_BR">Arquivo XAR</comment>
+ <comment xml:lang="pl">Archiwum XAR</comment>
+ <comment xml:lang="oc">Archiu XAR</comment>
+ <comment xml:lang="nl">XAR-archief</comment>
+ <comment xml:lang="ko">XAR 압축 파일</comment>
+ <comment xml:lang="kk">XAR архиві</comment>
+ <comment xml:lang="ja">XAR アーカイブ</comment>
+ <comment xml:lang="it">Archivio XAR</comment>
+ <comment xml:lang="is">XAR safnskrá</comment>
+ <comment xml:lang="id">Arsip XAR</comment>
+ <comment xml:lang="hu">XAR archívum</comment>
+ <comment xml:lang="hr">XAR arhiva</comment>
+ <comment xml:lang="he">ארכיון XAR</comment>
+ <comment xml:lang="gl">Arquivo XAR</comment>
+ <comment xml:lang="ga">cartlann XAR</comment>
+ <comment xml:lang="fur">archivi XAR</comment>
+ <comment xml:lang="fr">archive XAR</comment>
+ <comment xml:lang="fi">XAR-arkisto</comment>
+ <comment xml:lang="eu">XAR artxiboa</comment>
+ <comment xml:lang="es">archivador XAR</comment>
+ <comment xml:lang="en_GB">XAR archive</comment>
+ <comment xml:lang="de">XAR-Archiv</comment>
+ <comment xml:lang="da">XAR-arkiv</comment>
+ <comment xml:lang="cs">archiv XAR</comment>
+ <comment xml:lang="ca">arxiu XAR</comment>
+ <comment xml:lang="bg">Архив — XAR</comment>
+ <comment xml:lang="be">архіў XAR</comment>
+ <comment xml:lang="ar">أرشيف XAR</comment>
+ <comment xml:lang="af">XAR-argief</comment>
<acronym>XAR</acronym>
<expanded-acronym>eXtensible ARchive</expanded-acronym>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="0x78617221" type="big32" offset="0"/>
+ <match type="big32" value="0x78617221" offset="0"/>
</magic>
<glob pattern="*.xar"/>
-
+ <!-- OS X 10.5+ installer package -->
<glob pattern="*.pkg"/>
</mime-type>
<mime-type type="application/zlib">
<comment>Zlib archive</comment>
- <comment xml:lang="ca">arxiu Zlib</comment>
- <comment xml:lang="cs">archiv Zlib</comment>
- <comment xml:lang="da">Zlib-arkiv</comment>
- <comment xml:lang="de">Zlib-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Zlib</comment>
- <comment xml:lang="en_GB">Zlib archive</comment>
- <comment xml:lang="es">archivador Zlib</comment>
- <comment xml:lang="fi">Zlib-arkisto</comment>
- <comment xml:lang="fr">Archive Zlib</comment>
- <comment xml:lang="ga">cartlann Zlib</comment>
- <comment xml:lang="gl">Arquivo Zlib</comment>
- <comment xml:lang="he">ארכיון Zlib</comment>
- <comment xml:lang="hr">Zlib arhiva</comment>
- <comment xml:lang="hu">Zlib archívum</comment>
- <comment xml:lang="ia">Archivo Zlib</comment>
- <comment xml:lang="id">Arsip Zlib</comment>
- <comment xml:lang="it">Archivio zlib</comment>
- <comment xml:lang="kk">Zlib архиві</comment>
- <comment xml:lang="ko">Zlib 압축 파일</comment>
- <comment xml:lang="oc">Archiu Zlib</comment>
- <comment xml:lang="pl">Archiwum Zlib</comment>
- <comment xml:lang="pt">arquivo Zlib</comment>
- <comment xml:lang="pt_BR">Pacote Zlib</comment>
- <comment xml:lang="ru">Архив Zlib</comment>
- <comment xml:lang="sk">Archív Zlib</comment>
- <comment xml:lang="sl">Datoteka arhiva Zlib</comment>
- <comment xml:lang="sr">Злиб архива</comment>
- <comment xml:lang="sv">Zlib-arkiv</comment>
- <comment xml:lang="tr">Zlib arşivi</comment>
- <comment xml:lang="uk">архів zlib</comment>
- <comment xml:lang="zh_CN">Alzip 归档文件</comment>
<comment xml:lang="zh_TW">Zlib 封存檔</comment>
+ <comment xml:lang="zh_CN">Alzip 归档文件</comment>
+ <comment xml:lang="uk">архів zlib</comment>
+ <comment xml:lang="tr">Zlib arşivi</comment>
+ <comment xml:lang="sv">Zlib-arkiv</comment>
+ <comment xml:lang="sr">Злиб архива</comment>
+ <comment xml:lang="sq">arkiv Zlib</comment>
+ <comment xml:lang="sl">Datoteka arhiva Zlib</comment>
+ <comment xml:lang="si">Zlib ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Zlib</comment>
+ <comment xml:lang="ru">Архив Zlib</comment>
+ <comment xml:lang="pt_BR">Pacote Zlib</comment>
+ <comment xml:lang="pt">arquivo Zlib</comment>
+ <comment xml:lang="pl">Archiwum Zlib</comment>
+ <comment xml:lang="oc">Archiu Zlib</comment>
+ <comment xml:lang="nl">Zlib-archief</comment>
+ <comment xml:lang="ko">Zlib 압축 파일</comment>
+ <comment xml:lang="kk">Zlib архиві</comment>
+ <comment xml:lang="ja">Zlib アーカイブ</comment>
+ <comment xml:lang="it">Archivio zlib</comment>
+ <comment xml:lang="is">Zlib safnskrá</comment>
+ <comment xml:lang="id">Arsip Zlib</comment>
+ <comment xml:lang="ia">Archivo Zlib</comment>
+ <comment xml:lang="hu">Zlib archívum</comment>
+ <comment xml:lang="hr">Zlib arhiva</comment>
+ <comment xml:lang="he">ארכיון Zlib</comment>
+ <comment xml:lang="gl">Arquivo Zlib</comment>
+ <comment xml:lang="ga">cartlann Zlib</comment>
+ <comment xml:lang="fur">archivi Zlib</comment>
+ <comment xml:lang="fr">Archive Zlib</comment>
+ <comment xml:lang="fi">Zlib-arkisto</comment>
+ <comment xml:lang="eu">Zlib artxiboa</comment>
+ <comment xml:lang="es">archivador Zlib</comment>
+ <comment xml:lang="en_GB">Zlib archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Zlib</comment>
+ <comment xml:lang="de">Zlib-Archiv</comment>
+ <comment xml:lang="da">Zlib-arkiv</comment>
+ <comment xml:lang="cs">archiv Zlib</comment>
+ <comment xml:lang="ca">arxiu Zlib</comment>
+ <comment xml:lang="bg">Архив — Zlib</comment>
+ <comment xml:lang="be">архіў Zlib</comment>
+ <comment xml:lang="ar">أرشيف Zlib</comment>
+ <comment xml:lang="af">Zlib-argief</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.zz"/>
</mime-type>
<mime-type type="application/x-magicpoint">
<comment>MagicPoint presentation</comment>
- <comment xml:lang="ar">عرض تقديمي MagicPoint</comment>
- <comment xml:lang="be@latin">Prezentacyja MagicPoint</comment>
- <comment xml:lang="bg">Презентация — MagicPoint</comment>
- <comment xml:lang="ca">presentació de MagicPoint</comment>
- <comment xml:lang="cs">prezentace MagicPoint</comment>
- <comment xml:lang="cy">Cyflwyniad MagicPoint</comment>
- <comment xml:lang="da">MagicPoint-præsentation</comment>
- <comment xml:lang="de">MagicPoint-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση MagicPoint</comment>
- <comment xml:lang="en_GB">MagicPoint presentation</comment>
- <comment xml:lang="eo">MagicPoint-prezentaĵo</comment>
- <comment xml:lang="es">presentación de MagicPoint</comment>
- <comment xml:lang="eu">MagicPoint aurkezpena</comment>
- <comment xml:lang="fi">MagicPoint-esitys</comment>
- <comment xml:lang="fo">MagicPoint framløga</comment>
- <comment xml:lang="fr">présentation MagicPoint</comment>
- <comment xml:lang="ga">láithreoireacht MagicPoint</comment>
- <comment xml:lang="gl">presentación de MagicPoint</comment>
- <comment xml:lang="he">מצגת MagicPoint</comment>
- <comment xml:lang="hr">MagicPoint prezentacija</comment>
- <comment xml:lang="hu">MagicPoint-bemutató</comment>
- <comment xml:lang="ia">Presentation MagicPoint</comment>
- <comment xml:lang="id">Presentasi MagicPoint</comment>
- <comment xml:lang="it">Presentazione MagicPoint</comment>
- <comment xml:lang="ja">MagicPoint プレゼンテーション</comment>
- <comment xml:lang="ka">MagicPoint-ის პრეზენტაცია</comment>
- <comment xml:lang="kk">MagicPoint презентациясы</comment>
- <comment xml:lang="ko">MagicPoint 프레젠테이션</comment>
- <comment xml:lang="lt">MagicPoint pateiktis</comment>
- <comment xml:lang="lv">MagicPoint prezentācija</comment>
- <comment xml:lang="ms">Persembahan MagicPoint</comment>
- <comment xml:lang="nb">MagicPoint-presentasjon</comment>
- <comment xml:lang="nl">MagicPoint-presentatie</comment>
- <comment xml:lang="nn">MagicPoint-presentasjon</comment>
- <comment xml:lang="oc">presentacion MagicPoint</comment>
- <comment xml:lang="pl">Prezentacja programu MagicPoint</comment>
- <comment xml:lang="pt">apresentação MagicPoint</comment>
- <comment xml:lang="pt_BR">Apresentação do MagicPoint</comment>
- <comment xml:lang="ro">Prezentare MagicPoint</comment>
- <comment xml:lang="ru">Презентация MagicPoint</comment>
- <comment xml:lang="sk">Prezentácia MagicPoint</comment>
- <comment xml:lang="sl">Predstavitev MagicPoint</comment>
- <comment xml:lang="sq">Prezantim MagicPoint</comment>
- <comment xml:lang="sr">презентација Меџик Поинта</comment>
- <comment xml:lang="sv">MagicPoint-presentation</comment>
- <comment xml:lang="tr">MagicPoint sunumu</comment>
- <comment xml:lang="uk">презентація MagicPoint</comment>
- <comment xml:lang="vi">Trình diễn MagicPoint</comment>
+ <comment xml:lang="zh_TW">MagicPoint 簡報</comment>
<comment xml:lang="zh_CN">MagicPoint 演示文稿</comment>
- <comment xml:lang="zh_TW">MagicPoint 簡報檔</comment>
+ <comment xml:lang="vi">Trình diễn MagicPoint</comment>
+ <comment xml:lang="uk">презентація MagicPoint</comment>
+ <comment xml:lang="tr">MagicPoint sunumu</comment>
+ <comment xml:lang="sv">MagicPoint-presentation</comment>
+ <comment xml:lang="sr">презентација Меџик Поинта</comment>
+ <comment xml:lang="sq">paraqitje MagicPoint</comment>
+ <comment xml:lang="sl">Predstavitev MagicPoint</comment>
+ <comment xml:lang="si">MagicPoint ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia MagicPoint</comment>
+ <comment xml:lang="ru">Презентация MagicPoint</comment>
+ <comment xml:lang="ro">Prezentare MagicPoint</comment>
+ <comment xml:lang="pt_BR">Apresentação do MagicPoint</comment>
+ <comment xml:lang="pt">apresentação MagicPoint</comment>
+ <comment xml:lang="pl">Prezentacja programu MagicPoint</comment>
+ <comment xml:lang="oc">presentacion MagicPoint</comment>
+ <comment xml:lang="nn">MagicPoint-presentasjon</comment>
+ <comment xml:lang="nl">MagicPoint-presentatie</comment>
+ <comment xml:lang="nb">MagicPoint-presentasjon</comment>
+ <comment xml:lang="ms">Persembahan MagicPoint</comment>
+ <comment xml:lang="lv">MagicPoint prezentācija</comment>
+ <comment xml:lang="lt">MagicPoint pateiktis</comment>
+ <comment xml:lang="ko">MagicPoint 프레젠테이션</comment>
+ <comment xml:lang="kk">MagicPoint презентациясы</comment>
+ <comment xml:lang="ka">MagicPoint-ის პრეზენტაცია</comment>
+ <comment xml:lang="ja">MagicPoint プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione MagicPoint</comment>
+ <comment xml:lang="is">MagicPoint framsetning</comment>
+ <comment xml:lang="id">Presentasi MagicPoint</comment>
+ <comment xml:lang="ia">Presentation MagicPoint</comment>
+ <comment xml:lang="hu">MagicPoint-bemutató</comment>
+ <comment xml:lang="hr">MagicPoint prezentacija</comment>
+ <comment xml:lang="he">מצגת MagicPoint</comment>
+ <comment xml:lang="gl">presentación de MagicPoint</comment>
+ <comment xml:lang="ga">láithreoireacht MagicPoint</comment>
+ <comment xml:lang="fur">presentazion MagicPoint</comment>
+ <comment xml:lang="fr">présentation MagicPoint</comment>
+ <comment xml:lang="fo">MagicPoint framløga</comment>
+ <comment xml:lang="fi">MagicPoint-esitys</comment>
+ <comment xml:lang="eu">MagicPoint aurkezpena</comment>
+ <comment xml:lang="es">presentación de MagicPoint</comment>
+ <comment xml:lang="eo">MagicPoint-prezentaĵo</comment>
+ <comment xml:lang="en_GB">MagicPoint presentation</comment>
+ <comment xml:lang="el">Παρουσίαση MagicPoint</comment>
+ <comment xml:lang="de">MagicPoint-Präsentation</comment>
+ <comment xml:lang="da">MagicPoint-præsentation</comment>
+ <comment xml:lang="cy">Cyflwyniad MagicPoint</comment>
+ <comment xml:lang="cs">prezentace MagicPoint</comment>
+ <comment xml:lang="ca">presentació de MagicPoint</comment>
+ <comment xml:lang="bg">Презентация — MagicPoint</comment>
+ <comment xml:lang="be@latin">Prezentacyja MagicPoint</comment>
+ <comment xml:lang="be">прэзентацыя MagicPoint</comment>
+ <comment xml:lang="ar">عرض تقديمي MagicPoint</comment>
+ <comment xml:lang="af">MagicPoint-voorlegging</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-presentation"/>
<glob pattern="*.mgp"/>
</mime-type>
<mime-type type="application/x-macbinary">
<comment>Macintosh MacBinary file</comment>
- <comment xml:lang="ar">ملف Macintosh MacBinary</comment>
- <comment xml:lang="be@latin">Fajł Macintosh MacBinary</comment>
- <comment xml:lang="bg">Файл — MacBinary</comment>
- <comment xml:lang="ca">fitxer MacBinary de Macintosh</comment>
- <comment xml:lang="cs">soubor MacBinary pro Macintosh </comment>
- <comment xml:lang="da">Macintosh MacBinary-fil</comment>
- <comment xml:lang="de">Macintosh-MacBinary-Datei</comment>
- <comment xml:lang="el">Εκτελέσιμο Macintosh MacBinary</comment>
- <comment xml:lang="en_GB">Macintosh MacBinary file</comment>
- <comment xml:lang="eo">MacBinary-dosiero de Macintosh</comment>
- <comment xml:lang="es">archivo de Macintosh MacBinary</comment>
- <comment xml:lang="eu">Macintosh MacBinary fitxategia</comment>
- <comment xml:lang="fi">Macintosh MacBinary -tiedosto</comment>
- <comment xml:lang="fo">Macintosh MacBinary fíla</comment>
- <comment xml:lang="fr">fichier Macintosh MacBinary</comment>
- <comment xml:lang="ga">comhad Macintosh MacBinary</comment>
- <comment xml:lang="gl">ficheiro MacBinary de Macintosh</comment>
- <comment xml:lang="he">קובץ בינרי של מקינטוש</comment>
- <comment xml:lang="hr">Macintosh MacBinary datoteka</comment>
- <comment xml:lang="hu">Macintosh MacBinary-fájl</comment>
- <comment xml:lang="ia">File MacBinary de Macintosh</comment>
- <comment xml:lang="id">Berkas Macintosh MacBinary</comment>
- <comment xml:lang="it">File Macintosh MacBinary</comment>
- <comment xml:lang="ja">Macintosh MacBinary ファイル</comment>
- <comment xml:lang="kk">Macintosh MacBinary файлы</comment>
- <comment xml:lang="ko">MacBinary 파일</comment>
- <comment xml:lang="lt">Macintosh MacBinary failas</comment>
- <comment xml:lang="lv">Macintosh MacBinary datne</comment>
- <comment xml:lang="ms">Fail MacBinary Macintosh</comment>
- <comment xml:lang="nb">Macintosh MacBinary-fil</comment>
- <comment xml:lang="nl">Macintosh MacBinary-bestand</comment>
- <comment xml:lang="nn">Macintosh MacBinary-fil</comment>
- <comment xml:lang="oc">fichièr Macintosh MacBinary</comment>
- <comment xml:lang="pl">Plik MacBinary Macintosh</comment>
- <comment xml:lang="pt">ficheiro MacBinary de Macintosh</comment>
- <comment xml:lang="pt_BR">Arquivo do Macintosh MacBinary</comment>
- <comment xml:lang="ro">Fișier Macintosh MacBinary</comment>
- <comment xml:lang="ru">Файл Macintosh MacBinary</comment>
- <comment xml:lang="sk">Súbor pre Macintosh MacBinary</comment>
- <comment xml:lang="sl">Izvedljiva dvojiška datoteka Macintosh MacBinary</comment>
- <comment xml:lang="sq">File MacBinary Macintosh</comment>
- <comment xml:lang="sr">Мекинтош Мек Бинари датотека</comment>
- <comment xml:lang="sv">Macintosh MacBinary-fil</comment>
- <comment xml:lang="tr">Macintosh MacBinary dosyası</comment>
- <comment xml:lang="uk">файл Macintosh MacBinary</comment>
- <comment xml:lang="vi">Tập tin nhị phân MacBinary của Macintosh</comment>
- <comment xml:lang="zh_CN">Macintosh MacBinary 文件</comment>
<comment xml:lang="zh_TW">Macintosh MacBinary 檔</comment>
+ <comment xml:lang="zh_CN">Macintosh MacBinary 文件</comment>
+ <comment xml:lang="vi">Tập tin nhị phân MacBinary của Macintosh</comment>
+ <comment xml:lang="uk">файл Macintosh MacBinary</comment>
+ <comment xml:lang="tr">Macintosh MacBinary dosyası</comment>
+ <comment xml:lang="sv">Macintosh MacBinary-fil</comment>
+ <comment xml:lang="sr">Мекинтош Мек Бинари датотека</comment>
+ <comment xml:lang="sq">kartelë MacBinary Macintosh</comment>
+ <comment xml:lang="sl">Izvedljiva dvojiška datoteka Macintosh MacBinary</comment>
+ <comment xml:lang="si">Macintosh MacBinary ගොනුව</comment>
+ <comment xml:lang="sk">Súbor pre Macintosh MacBinary</comment>
+ <comment xml:lang="ru">Файл Macintosh MacBinary</comment>
+ <comment xml:lang="ro">Fișier Macintosh MacBinary</comment>
+ <comment xml:lang="pt_BR">Arquivo do Macintosh MacBinary</comment>
+ <comment xml:lang="pt">ficheiro MacBinary de Macintosh</comment>
+ <comment xml:lang="pl">Plik MacBinary Macintosh</comment>
+ <comment xml:lang="oc">fichièr Macintosh MacBinary</comment>
+ <comment xml:lang="nn">Macintosh MacBinary-fil</comment>
+ <comment xml:lang="nl">Macintosh MacBinary-bestand</comment>
+ <comment xml:lang="nb">Macintosh MacBinary-fil</comment>
+ <comment xml:lang="ms">Fail MacBinary Macintosh</comment>
+ <comment xml:lang="lv">Macintosh MacBinary datne</comment>
+ <comment xml:lang="lt">Macintosh MacBinary failas</comment>
+ <comment xml:lang="ko">MacBinary 파일</comment>
+ <comment xml:lang="kk">Macintosh MacBinary файлы</comment>
+ <comment xml:lang="ja">Macintosh MacBinary ファイル</comment>
+ <comment xml:lang="it">File Macintosh MacBinary</comment>
+ <comment xml:lang="is">Macintosh MacBinary skrá</comment>
+ <comment xml:lang="id">Berkas Macintosh MacBinary</comment>
+ <comment xml:lang="ia">File MacBinary de Macintosh</comment>
+ <comment xml:lang="hu">Macintosh MacBinary-fájl</comment>
+ <comment xml:lang="hr">Macintosh MacBinary datoteka</comment>
+ <comment xml:lang="he">קובץ בינרי של מקינטוש</comment>
+ <comment xml:lang="gl">ficheiro MacBinary de Macintosh</comment>
+ <comment xml:lang="ga">comhad Macintosh MacBinary</comment>
+ <comment xml:lang="fur">file MacBinary di Macintosh</comment>
+ <comment xml:lang="fr">fichier Macintosh MacBinary</comment>
+ <comment xml:lang="fo">Macintosh MacBinary fíla</comment>
+ <comment xml:lang="fi">Macintosh MacBinary -tiedosto</comment>
+ <comment xml:lang="eu">Macintosh MacBinary fitxategia</comment>
+ <comment xml:lang="es">archivo de Macintosh MacBinary</comment>
+ <comment xml:lang="eo">MacBinary-dosiero de Macintosh</comment>
+ <comment xml:lang="en_GB">Macintosh MacBinary file</comment>
+ <comment xml:lang="el">Εκτελέσιμο Macintosh MacBinary</comment>
+ <comment xml:lang="de">Macintosh-MacBinary-Datei</comment>
+ <comment xml:lang="da">Macintosh MacBinary-fil</comment>
+ <comment xml:lang="cs">soubor MacBinary pro Macintosh </comment>
+ <comment xml:lang="ca">fitxer MacBinary de Macintosh</comment>
+ <comment xml:lang="bg">Файл — MacBinary</comment>
+ <comment xml:lang="be@latin">Fajł Macintosh MacBinary</comment>
+ <comment xml:lang="be">файл Macintosh MacBinary</comment>
+ <comment xml:lang="ar">ملف Macintosh MacBinary</comment>
+ <comment xml:lang="af">Macintosh MacBinary-lêer</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="mBIN" type="string" offset="102"/>
+ <magic>
+ <match type="string" value="mBIN" offset="102"/>
</magic>
</mime-type>
<mime-type type="application/x-matroska">
<comment>Matroska stream</comment>
- <comment xml:lang="ar">دفق Matroska</comment>
- <comment xml:lang="be@latin">Płyń Matroska</comment>
- <comment xml:lang="bg">Поток — Matroska</comment>
- <comment xml:lang="ca">flux Matroska</comment>
- <comment xml:lang="cs">proud Matroska</comment>
- <comment xml:lang="da">Matroskastrøm</comment>
- <comment xml:lang="de">Matroska-Datenstrom</comment>
- <comment xml:lang="el">Ροή Matroska</comment>
- <comment xml:lang="en_GB">Matroska stream</comment>
- <comment xml:lang="es">flujo Matroska</comment>
- <comment xml:lang="eu">Matroska korrontea</comment>
- <comment xml:lang="fi">Matroska-virta</comment>
- <comment xml:lang="fo">Matroska streymur</comment>
- <comment xml:lang="fr">flux Matroska</comment>
- <comment xml:lang="ga">sruth Matroska</comment>
- <comment xml:lang="gl">fluxo de Matroska</comment>
- <comment xml:lang="he">זרימת Matroska</comment>
- <comment xml:lang="hr">Matroška zapis</comment>
- <comment xml:lang="hu">Matroska adatfolyam</comment>
- <comment xml:lang="ia">Fluxo Matroska</comment>
- <comment xml:lang="id">Stream Matroska</comment>
- <comment xml:lang="it">Stream Matroska</comment>
- <comment xml:lang="ja">Matroska ストリーム</comment>
- <comment xml:lang="ka">Matroska-ის ნაკადი</comment>
- <comment xml:lang="kk">Matroska ағымы</comment>
- <comment xml:lang="ko">Matroska 스트림</comment>
- <comment xml:lang="lt">Matroska srautas</comment>
- <comment xml:lang="lv">Matroska straume</comment>
- <comment xml:lang="nl">Matroska-stream</comment>
- <comment xml:lang="nn">Matroska-straum</comment>
- <comment xml:lang="oc">flux Matroska</comment>
- <comment xml:lang="pl">Strumień Matroska</comment>
- <comment xml:lang="pt">fluxo Matroska</comment>
- <comment xml:lang="pt_BR">Transmissão do Matroska</comment>
- <comment xml:lang="ro">Flux Matroska</comment>
- <comment xml:lang="ru">Поток Matroska</comment>
- <comment xml:lang="sk">Stream Matroska</comment>
- <comment xml:lang="sl">Pretočni vir Matroska</comment>
- <comment xml:lang="sq">Stream Matroska</comment>
- <comment xml:lang="sr">Матрошкин ток</comment>
- <comment xml:lang="sv">Matroska-ström</comment>
- <comment xml:lang="tr">Matroska akışı</comment>
- <comment xml:lang="uk">потік даних Matroska</comment>
- <comment xml:lang="vi">Luồng Matroska</comment>
- <comment xml:lang="zh_CN">Matroska 流</comment>
<comment xml:lang="zh_TW">Matroska 串流</comment>
+ <comment xml:lang="zh_CN">Matroska 流</comment>
+ <comment xml:lang="vi">Luồng Matroska</comment>
+ <comment xml:lang="uk">потік даних Matroska</comment>
+ <comment xml:lang="tr">Matroska akışı</comment>
+ <comment xml:lang="sv">Matroska-ström</comment>
+ <comment xml:lang="sr">Матрошкин ток</comment>
+ <comment xml:lang="sq">rrjedhë Matroska</comment>
+ <comment xml:lang="sl">Pretočni vir Matroska</comment>
+ <comment xml:lang="si">Matroska ධාරාව</comment>
+ <comment xml:lang="sk">Stream Matroska</comment>
+ <comment xml:lang="ru">Поток Matroska</comment>
+ <comment xml:lang="ro">Flux Matroska</comment>
+ <comment xml:lang="pt_BR">Transmissão do Matroska</comment>
+ <comment xml:lang="pt">fluxo Matroska</comment>
+ <comment xml:lang="pl">Strumień Matroska</comment>
+ <comment xml:lang="oc">flux Matroska</comment>
+ <comment xml:lang="nn">Matroska-straum</comment>
+ <comment xml:lang="nl">Matroska-stream</comment>
+ <comment xml:lang="lv">Matroska straume</comment>
+ <comment xml:lang="lt">Matroska srautas</comment>
+ <comment xml:lang="ko">Matroska 스트림</comment>
+ <comment xml:lang="kk">Matroska ағымы</comment>
+ <comment xml:lang="ka">Matroska-ის ნაკადი</comment>
+ <comment xml:lang="ja">Matroska ストリーム</comment>
+ <comment xml:lang="it">Stream Matroska</comment>
+ <comment xml:lang="is">Matroska streymi</comment>
+ <comment xml:lang="id">Stream Matroska</comment>
+ <comment xml:lang="ia">Fluxo Matroska</comment>
+ <comment xml:lang="hu">Matroska adatfolyam</comment>
+ <comment xml:lang="hr">Matroška zapis</comment>
+ <comment xml:lang="he">זרימת Matroska</comment>
+ <comment xml:lang="gl">fluxo de Matroska</comment>
+ <comment xml:lang="ga">sruth Matroska</comment>
+ <comment xml:lang="fur">flus Matroska</comment>
+ <comment xml:lang="fr">flux Matroska</comment>
+ <comment xml:lang="fo">Matroska streymur</comment>
+ <comment xml:lang="fi">Matroska-virta</comment>
+ <comment xml:lang="eu">Matroska korrontea</comment>
+ <comment xml:lang="es">flujo Matroska</comment>
+ <comment xml:lang="en_GB">Matroska stream</comment>
+ <comment xml:lang="el">Ροή Matroska</comment>
+ <comment xml:lang="de">Matroska-Datenstrom</comment>
+ <comment xml:lang="da">Matroska-strøm</comment>
+ <comment xml:lang="cs">proud Matroska</comment>
+ <comment xml:lang="ca">flux Matroska</comment>
+ <comment xml:lang="bg">Поток — Matroska</comment>
+ <comment xml:lang="be@latin">Płyń Matroska</comment>
+ <comment xml:lang="be">плынь Matroska</comment>
+ <comment xml:lang="ar">دفق Matroska</comment>
+ <comment xml:lang="af">Matroska-stroom</comment>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
-
- <match value="0x1a45dfa3" type="big32" offset="0">
-
- <match value="0x4282" type="big16" offset="5:65">
-
- <match value="matroska" type="string" offset="8:75"/>
+ <magic>
+ <!-- EBML ID -->
+ <match type="big32" value="0x1a45dfa3" offset="0">
+ <!-- DocumentType ID -->
+ <match type="big16" value="0x4282" offset="5:65">
+ <!-- DocumentType -->
+ <match type="string" value="matroska" offset="8:75"/>
</match>
</match>
</magic>
</mime-type>
<mime-type type="video/x-matroska">
<comment>Matroska video</comment>
- <comment xml:lang="ar">Matroska مرئي</comment>
- <comment xml:lang="ast">Videu en Matroska</comment>
- <comment xml:lang="be@latin">Videa Matroska</comment>
- <comment xml:lang="bg">Видео — Matroska</comment>
- <comment xml:lang="ca">vídeo Matroska</comment>
- <comment xml:lang="cs">video Matroska</comment>
- <comment xml:lang="da">Matroskavideo</comment>
- <comment xml:lang="de">Matroska-Video</comment>
- <comment xml:lang="el">Βίντεο Matroska</comment>
- <comment xml:lang="en_GB">Matroska video</comment>
- <comment xml:lang="eo">Matroska-video</comment>
- <comment xml:lang="es">vídeo Matroska</comment>
- <comment xml:lang="eu">Matroska bideoa</comment>
- <comment xml:lang="fi">Matroska-video</comment>
- <comment xml:lang="fo">Matroska video</comment>
- <comment xml:lang="fr">vidéo Matroska</comment>
- <comment xml:lang="ga">físeán Matroska</comment>
- <comment xml:lang="gl">vídeo de Matroska</comment>
- <comment xml:lang="he">וידאו Matroska</comment>
- <comment xml:lang="hr">Matroška video snimka</comment>
- <comment xml:lang="hu">Matroska-videó</comment>
- <comment xml:lang="ia">Video Matroska</comment>
- <comment xml:lang="id">Video Matroska</comment>
- <comment xml:lang="it">Video Matroska</comment>
- <comment xml:lang="ja">Matroska 動画</comment>
- <comment xml:lang="ka">Matroska-ის ვიდეო</comment>
- <comment xml:lang="kk">Matroska видеосы</comment>
- <comment xml:lang="ko">Matroska 동영상</comment>
- <comment xml:lang="lt">Matroska vaizdo įrašas</comment>
- <comment xml:lang="lv">Matroska video</comment>
- <comment xml:lang="ms">Video Matroska</comment>
- <comment xml:lang="nb">Matroska-film</comment>
- <comment xml:lang="nl">Matroska-video</comment>
- <comment xml:lang="nn">Matroska-video</comment>
- <comment xml:lang="oc">vidèo Matroska</comment>
- <comment xml:lang="pl">Plik wideo Matroska</comment>
- <comment xml:lang="pt">vídeo Matroska</comment>
- <comment xml:lang="pt_BR">Vídeo Matroska</comment>
- <comment xml:lang="ro">Video Matroska</comment>
- <comment xml:lang="ru">Видео Matroska</comment>
- <comment xml:lang="sk">Video Matroska</comment>
- <comment xml:lang="sl">Video datoteka Matroska</comment>
- <comment xml:lang="sq">Video Matroska</comment>
- <comment xml:lang="sr">Матрошкин видео</comment>
- <comment xml:lang="sv">Matroska-video</comment>
- <comment xml:lang="tr">Matroska video</comment>
- <comment xml:lang="uk">відеокліп Matroska</comment>
- <comment xml:lang="vi">Ảnh động Matroska</comment>
- <comment xml:lang="zh_CN">Matroska 视频</comment>
<comment xml:lang="zh_TW">Matroska 視訊</comment>
+ <comment xml:lang="zh_CN">Matroska 视频</comment>
+ <comment xml:lang="vi">Ảnh động Matroska</comment>
+ <comment xml:lang="uk">відеокліп Matroska</comment>
+ <comment xml:lang="tr">Matroska video</comment>
+ <comment xml:lang="sv">Matroska-video</comment>
+ <comment xml:lang="sr">Матрошкин видео</comment>
+ <comment xml:lang="sq">video Matroska</comment>
+ <comment xml:lang="sl">Video datoteka Matroska</comment>
+ <comment xml:lang="si">Matroska වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Matroska</comment>
+ <comment xml:lang="ru">Видео Matroska</comment>
+ <comment xml:lang="ro">Video Matroska</comment>
+ <comment xml:lang="pt_BR">Vídeo Matroska</comment>
+ <comment xml:lang="pt">vídeo Matroska</comment>
+ <comment xml:lang="pl">Plik wideo Matroska</comment>
+ <comment xml:lang="oc">vidèo Matroska</comment>
+ <comment xml:lang="nn">Matroska-video</comment>
+ <comment xml:lang="nl">Matroska-video</comment>
+ <comment xml:lang="nb">Matroska-film</comment>
+ <comment xml:lang="ms">Video Matroska</comment>
+ <comment xml:lang="lv">Matroska video</comment>
+ <comment xml:lang="lt">Matroska vaizdo įrašas</comment>
+ <comment xml:lang="ko">Matroska 동영상</comment>
+ <comment xml:lang="kk">Matroska видеосы</comment>
+ <comment xml:lang="ka">Matroska-ის ვიდეო</comment>
+ <comment xml:lang="ja">Matroska 動画</comment>
+ <comment xml:lang="it">Video Matroska</comment>
+ <comment xml:lang="is">Matroska myndskeið</comment>
+ <comment xml:lang="id">Video Matroska</comment>
+ <comment xml:lang="ia">Video Matroska</comment>
+ <comment xml:lang="hu">Matroska-videó</comment>
+ <comment xml:lang="hr">Matroška video snimka</comment>
+ <comment xml:lang="he">וידאו Matroska</comment>
+ <comment xml:lang="gl">vídeo de Matroska</comment>
+ <comment xml:lang="ga">físeán Matroska</comment>
+ <comment xml:lang="fur">video Matroska</comment>
+ <comment xml:lang="fr">vidéo Matroska</comment>
+ <comment xml:lang="fo">Matroska video</comment>
+ <comment xml:lang="fi">Matroska-video</comment>
+ <comment xml:lang="eu">Matroska bideoa</comment>
+ <comment xml:lang="es">vídeo Matroska</comment>
+ <comment xml:lang="eo">Matroska-video</comment>
+ <comment xml:lang="en_GB">Matroska video</comment>
+ <comment xml:lang="el">Βίντεο Matroska</comment>
+ <comment xml:lang="de">Matroska-Video</comment>
+ <comment xml:lang="da">Matroska-video</comment>
+ <comment xml:lang="cs">video Matroska</comment>
+ <comment xml:lang="ca">vídeo Matroska</comment>
+ <comment xml:lang="bg">Видео — Matroska</comment>
+ <comment xml:lang="be@latin">Videa Matroska</comment>
+ <comment xml:lang="be">відэа Matroska</comment>
+ <comment xml:lang="ast">Videu en Matroska</comment>
+ <comment xml:lang="ar">فيديو Matroska</comment>
+ <comment xml:lang="af">Matroska-video</comment>
<glob pattern="*.mkv"/>
<sub-class-of type="application/x-matroska"/>
</mime-type>
<mime-type type="video/x-matroska-3d">
<comment>Matroska 3D video</comment>
- <comment xml:lang="ast">Videu en Matroska 3D</comment>
- <comment xml:lang="ca">vídeo Matroska 3D</comment>
- <comment xml:lang="cs">3D video Matroska</comment>
- <comment xml:lang="da">Matroska 3D-video</comment>
- <comment xml:lang="de">Matroska 3D-Video</comment>
- <comment xml:lang="el">Βίντεο 3Δ Matroska</comment>
- <comment xml:lang="en_GB">Matroska 3D video</comment>
- <comment xml:lang="es">vídeo Matroska en 3D</comment>
- <comment xml:lang="eu">Matroska 3D bideoa</comment>
- <comment xml:lang="fi">Matroska 3D-video</comment>
- <comment xml:lang="fr">vidéo Matroska 3D</comment>
- <comment xml:lang="ga">físeán Matroska 3D</comment>
- <comment xml:lang="gl">Video Matroska 3D</comment>
- <comment xml:lang="he">סרטון תלת ממדי מסוג Matroska</comment>
- <comment xml:lang="hr">Matroška 3D video snimka</comment>
- <comment xml:lang="hu">Matroska 3D videó</comment>
- <comment xml:lang="ia">Video 3D Matroska</comment>
- <comment xml:lang="id">Video 3D Matroska</comment>
- <comment xml:lang="it">Video Matroska 3D</comment>
- <comment xml:lang="kk">Matroska 3D видеосы</comment>
- <comment xml:lang="ko">Matroska 3D 동영상</comment>
- <comment xml:lang="oc">vidèo Matroska 3D</comment>
- <comment xml:lang="pl">Plik wideo Matroska 3D</comment>
- <comment xml:lang="pt">vídeo 3D Matroska</comment>
- <comment xml:lang="pt_BR">Vídeo 3D Matroska</comment>
- <comment xml:lang="ru">Видео Matroska 3D</comment>
- <comment xml:lang="sk">3D video Matroska</comment>
- <comment xml:lang="sl">Video datoteka Matroska 3D</comment>
- <comment xml:lang="sr">Матрошкин 3Д видео</comment>
- <comment xml:lang="sv">Matroska 3D-video</comment>
- <comment xml:lang="tr">Matroska 3B video</comment>
- <comment xml:lang="uk">відеокліп Matroska 3D</comment>
- <comment xml:lang="zh_CN">Matroska 3D 视频</comment>
<comment xml:lang="zh_TW">Matroska 3D 視訊</comment>
+ <comment xml:lang="zh_CN">Matroska 3D 视频</comment>
+ <comment xml:lang="uk">відеокліп Matroska 3D</comment>
+ <comment xml:lang="tr">Matroska 3B video</comment>
+ <comment xml:lang="sv">Matroska 3D-video</comment>
+ <comment xml:lang="sr">Матрошкин 3Д видео</comment>
+ <comment xml:lang="sq">video Matroska 3D</comment>
+ <comment xml:lang="sl">Video datoteka Matroska 3D</comment>
+ <comment xml:lang="si">Matroska 3D වීඩියෝ</comment>
+ <comment xml:lang="sk">3D video Matroska</comment>
+ <comment xml:lang="ru">Видео Matroska 3D</comment>
+ <comment xml:lang="pt_BR">Vídeo 3D Matroska</comment>
+ <comment xml:lang="pt">vídeo 3D Matroska</comment>
+ <comment xml:lang="pl">Plik wideo Matroska 3D</comment>
+ <comment xml:lang="oc">vidèo Matroska 3D</comment>
+ <comment xml:lang="nl">Matroska-3D-video</comment>
+ <comment xml:lang="ko">Matroska 3D 동영상</comment>
+ <comment xml:lang="kk">Matroska 3D видеосы</comment>
+ <comment xml:lang="ja">Matroska 3D ビデオ</comment>
+ <comment xml:lang="it">Video Matroska 3D</comment>
+ <comment xml:lang="is">Matroska 3D myndskeið</comment>
+ <comment xml:lang="id">Video 3D Matroska</comment>
+ <comment xml:lang="ia">Video 3D Matroska</comment>
+ <comment xml:lang="hu">Matroska 3D videó</comment>
+ <comment xml:lang="hr">Matroška 3D video snimka</comment>
+ <comment xml:lang="he">סרטון תלת ממדי מסוג Matroska</comment>
+ <comment xml:lang="gl">Video Matroska 3D</comment>
+ <comment xml:lang="ga">físeán Matroska 3D</comment>
+ <comment xml:lang="fur">video 3D Matroska</comment>
+ <comment xml:lang="fr">vidéo Matroska 3D</comment>
+ <comment xml:lang="fi">Matroska 3D-video</comment>
+ <comment xml:lang="eu">Matroska 3D bideoa</comment>
+ <comment xml:lang="es">vídeo Matroska en 3D</comment>
+ <comment xml:lang="en_GB">Matroska 3D video</comment>
+ <comment xml:lang="el">Βίντεο 3Δ Matroska</comment>
+ <comment xml:lang="de">Matroska-3D-Video</comment>
+ <comment xml:lang="da">Matroska 3D-video</comment>
+ <comment xml:lang="cs">3D video Matroska</comment>
+ <comment xml:lang="ca">vídeo Matroska 3D</comment>
+ <comment xml:lang="bg">Видео — Matroska 3D</comment>
+ <comment xml:lang="be">відэа Matroska 3D</comment>
+ <comment xml:lang="ast">Videu en Matroska 3D</comment>
+ <comment xml:lang="ar">فيديو Matroska 3D</comment>
+ <comment xml:lang="af">Matroska 3D video</comment>
<glob pattern="*.mk3d"/>
<sub-class-of type="application/x-matroska"/>
</mime-type>
<mime-type type="audio/x-matroska">
<comment>Matroska audio</comment>
- <comment xml:lang="ar">سمعي Matroska</comment>
- <comment xml:lang="be@latin">Aŭdyjo Matroska</comment>
- <comment xml:lang="bg">Аудио — Matroska</comment>
- <comment xml:lang="ca">àudio de Matroska</comment>
- <comment xml:lang="cs">zvuk Matroska</comment>
- <comment xml:lang="da">Matroskalyd</comment>
- <comment xml:lang="de">Matroska-Audio</comment>
- <comment xml:lang="el">Ήχος Matroska</comment>
- <comment xml:lang="en_GB">Matroska audio</comment>
- <comment xml:lang="eo">Matroska-sondosiero</comment>
- <comment xml:lang="es">sonido Matroska</comment>
- <comment xml:lang="eu">Matroska audioa</comment>
- <comment xml:lang="fi">Matroska-ääni</comment>
- <comment xml:lang="fo">Matroska ljóður</comment>
- <comment xml:lang="fr">audio Matroska</comment>
- <comment xml:lang="ga">fuaim Matroska</comment>
- <comment xml:lang="gl">son de Matroska</comment>
- <comment xml:lang="he">שמע Matroska</comment>
- <comment xml:lang="hr">Matroška zvučni zapis</comment>
- <comment xml:lang="hu">Matroska hang</comment>
- <comment xml:lang="ia">Audio Matroska</comment>
- <comment xml:lang="id">Audio Matroska</comment>
- <comment xml:lang="it">Audio Matroska</comment>
- <comment xml:lang="ja">Matroska オーディオ</comment>
- <comment xml:lang="ka">Matroska-ის აუდიო</comment>
- <comment xml:lang="kk">Matroska аудиосы</comment>
- <comment xml:lang="ko">Matroska 오디오</comment>
- <comment xml:lang="lt">Matroska garso įrašas</comment>
- <comment xml:lang="lv">Matroska audio</comment>
- <comment xml:lang="nb">Matroska-lyd</comment>
- <comment xml:lang="nl">Matroska-audio</comment>
- <comment xml:lang="nn">Matroska-lyd</comment>
- <comment xml:lang="oc">àudio Matroska</comment>
- <comment xml:lang="pl">Plik dźwiękowy Matroska</comment>
- <comment xml:lang="pt">áudio Matroska</comment>
- <comment xml:lang="pt_BR">Áudio Matroska</comment>
- <comment xml:lang="ro">Audio Matroska</comment>
- <comment xml:lang="ru">Аудио Matroska</comment>
- <comment xml:lang="sk">Zvuk Matroska</comment>
- <comment xml:lang="sl">Zvočna datoteka Matroska</comment>
- <comment xml:lang="sq">Audio Matroska</comment>
- <comment xml:lang="sr">Матрошкин звук</comment>
- <comment xml:lang="sv">Matroska-ljud</comment>
- <comment xml:lang="tr">Matroska ses</comment>
- <comment xml:lang="uk">звук Matroska</comment>
- <comment xml:lang="vi">Âm thanh Matroska</comment>
- <comment xml:lang="zh_CN">Matroska 音频</comment>
<comment xml:lang="zh_TW">Matroska 音訊</comment>
+ <comment xml:lang="zh_CN">Matroska 音频</comment>
+ <comment xml:lang="vi">Âm thanh Matroska</comment>
+ <comment xml:lang="uk">звук Matroska</comment>
+ <comment xml:lang="tr">Matroska ses</comment>
+ <comment xml:lang="sv">Matroska-ljud</comment>
+ <comment xml:lang="sr">Матрошкин звук</comment>
+ <comment xml:lang="sq">audio Matroska</comment>
+ <comment xml:lang="sl">Zvočna datoteka Matroska</comment>
+ <comment xml:lang="si">Matroska ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk Matroska</comment>
+ <comment xml:lang="ru">Аудио Matroska</comment>
+ <comment xml:lang="ro">Audio Matroska</comment>
+ <comment xml:lang="pt_BR">Áudio Matroska</comment>
+ <comment xml:lang="pt">áudio Matroska</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Matroska</comment>
+ <comment xml:lang="oc">àudio Matroska</comment>
+ <comment xml:lang="nn">Matroska-lyd</comment>
+ <comment xml:lang="nl">Matroska-audio</comment>
+ <comment xml:lang="nb">Matroska-lyd</comment>
+ <comment xml:lang="lv">Matroska audio</comment>
+ <comment xml:lang="lt">Matroska garso įrašas</comment>
+ <comment xml:lang="ko">Matroska 오디오</comment>
+ <comment xml:lang="kk">Matroska аудиосы</comment>
+ <comment xml:lang="ka">Matroska-ის აუდიო</comment>
+ <comment xml:lang="ja">Matroska オーディオ</comment>
+ <comment xml:lang="it">Audio Matroska</comment>
+ <comment xml:lang="is">Matroska hljóðskrá</comment>
+ <comment xml:lang="id">Audio Matroska</comment>
+ <comment xml:lang="ia">Audio Matroska</comment>
+ <comment xml:lang="hu">Matroska hang</comment>
+ <comment xml:lang="hr">Matroška zvučni zapis</comment>
+ <comment xml:lang="he">שמע Matroska</comment>
+ <comment xml:lang="gl">son de Matroska</comment>
+ <comment xml:lang="ga">fuaim Matroska</comment>
+ <comment xml:lang="fur">audio Matroska</comment>
+ <comment xml:lang="fr">audio Matroska</comment>
+ <comment xml:lang="fo">Matroska ljóður</comment>
+ <comment xml:lang="fi">Matroska-ääni</comment>
+ <comment xml:lang="eu">Matroska audioa</comment>
+ <comment xml:lang="es">sonido Matroska</comment>
+ <comment xml:lang="eo">Matroska-sondosiero</comment>
+ <comment xml:lang="en_GB">Matroska audio</comment>
+ <comment xml:lang="el">Ήχος Matroska</comment>
+ <comment xml:lang="de">Matroska-Audio</comment>
+ <comment xml:lang="da">Matroska-lyd</comment>
+ <comment xml:lang="cs">zvuk Matroska</comment>
+ <comment xml:lang="ca">àudio Matroska</comment>
+ <comment xml:lang="bg">Аудио — Matroska</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Matroska</comment>
+ <comment xml:lang="be">аўдыя Matroska</comment>
+ <comment xml:lang="ar">صوت Matroska</comment>
+ <comment xml:lang="af">Matroska-oudio</comment>
<glob pattern="*.mka"/>
<sub-class-of type="application/x-matroska"/>
</mime-type>
<mime-type type="video/webm">
<comment>WebM video</comment>
- <comment xml:lang="ar">WebM مرئي</comment>
- <comment xml:lang="ast">Videu en WebM</comment>
- <comment xml:lang="bg">Видео — WebM</comment>
- <comment xml:lang="ca">vídeo WebM</comment>
- <comment xml:lang="cs">video WebM</comment>
- <comment xml:lang="da">WebM-video</comment>
- <comment xml:lang="de">WebM-Video</comment>
- <comment xml:lang="el">Βίντεο WebM</comment>
- <comment xml:lang="en_GB">WebM video</comment>
- <comment xml:lang="eo">WebM-video</comment>
- <comment xml:lang="es">vídeo WebM</comment>
- <comment xml:lang="eu">WebM bideoa</comment>
- <comment xml:lang="fi">WebM-video</comment>
- <comment xml:lang="fo">WebM video</comment>
- <comment xml:lang="fr">vidéo WebM</comment>
- <comment xml:lang="ga">físeán WebM</comment>
- <comment xml:lang="gl">vídeo WebM</comment>
- <comment xml:lang="he">וידאו WebM</comment>
- <comment xml:lang="hr">WebM video snimka</comment>
- <comment xml:lang="hu">WebM videó</comment>
- <comment xml:lang="ia">Video WebM</comment>
- <comment xml:lang="id">Video WebM</comment>
- <comment xml:lang="it">Video WebM</comment>
- <comment xml:lang="ja">WebM 動画</comment>
- <comment xml:lang="kk">WebM видеосы</comment>
- <comment xml:lang="ko">WebM 동영상</comment>
- <comment xml:lang="lt">WebM vaizdo įrašas</comment>
- <comment xml:lang="lv">WebM video</comment>
- <comment xml:lang="nl">WebM video</comment>
- <comment xml:lang="oc">vidèo WebM</comment>
- <comment xml:lang="pl">Plik wideo WebM</comment>
- <comment xml:lang="pt">vídeo WebM</comment>
- <comment xml:lang="pt_BR">Vídeo WebM</comment>
- <comment xml:lang="ro">Video WebM</comment>
- <comment xml:lang="ru">Видео WebM</comment>
- <comment xml:lang="sk">Video WebM</comment>
- <comment xml:lang="sl">Video datoteka WebM</comment>
- <comment xml:lang="sr">ВебМ видео</comment>
- <comment xml:lang="sv">WebM-video</comment>
- <comment xml:lang="tr">WebM video</comment>
- <comment xml:lang="uk">відео WebM</comment>
- <comment xml:lang="zh_CN">WebM 视频</comment>
<comment xml:lang="zh_TW">WebM 視訊</comment>
+ <comment xml:lang="zh_CN">WebM 视频</comment>
+ <comment xml:lang="uk">відео WebM</comment>
+ <comment xml:lang="tr">WebM video</comment>
+ <comment xml:lang="sv">WebM-video</comment>
+ <comment xml:lang="sr">ВебМ видео</comment>
+ <comment xml:lang="sq">audio WebM</comment>
+ <comment xml:lang="sl">Video datoteka WebM</comment>
+ <comment xml:lang="si">WebM වීඩියෝව</comment>
+ <comment xml:lang="sk">Video WebM</comment>
+ <comment xml:lang="ru">Видео WebM</comment>
+ <comment xml:lang="ro">Video WebM</comment>
+ <comment xml:lang="pt_BR">Vídeo WebM</comment>
+ <comment xml:lang="pt">vídeo WebM</comment>
+ <comment xml:lang="pl">Plik wideo WebM</comment>
+ <comment xml:lang="oc">vidèo WebM</comment>
+ <comment xml:lang="nl">WebM-video</comment>
+ <comment xml:lang="lv">WebM video</comment>
+ <comment xml:lang="lt">WebM vaizdo įrašas</comment>
+ <comment xml:lang="ko">WebM 동영상</comment>
+ <comment xml:lang="kk">WebM видеосы</comment>
+ <comment xml:lang="ja">WebM 動画</comment>
+ <comment xml:lang="it">Video WebM</comment>
+ <comment xml:lang="is">WebM myndskeið</comment>
+ <comment xml:lang="id">Video WebM</comment>
+ <comment xml:lang="ia">Video WebM</comment>
+ <comment xml:lang="hu">WebM videó</comment>
+ <comment xml:lang="hr">WebM video snimka</comment>
+ <comment xml:lang="he">וידאו WebM</comment>
+ <comment xml:lang="gl">vídeo WebM</comment>
+ <comment xml:lang="ga">físeán WebM</comment>
+ <comment xml:lang="fur">video WebM</comment>
+ <comment xml:lang="fr">vidéo WebM</comment>
+ <comment xml:lang="fo">WebM video</comment>
+ <comment xml:lang="fi">WebM-video</comment>
+ <comment xml:lang="eu">WebM bideoa</comment>
+ <comment xml:lang="es">vídeo WebM</comment>
+ <comment xml:lang="eo">WebM-video</comment>
+ <comment xml:lang="en_GB">WebM video</comment>
+ <comment xml:lang="el">Βίντεο WebM</comment>
+ <comment xml:lang="de">WebM-Video</comment>
+ <comment xml:lang="da">WebM-video</comment>
+ <comment xml:lang="cs">video WebM</comment>
+ <comment xml:lang="ca">vídeo WebM</comment>
+ <comment xml:lang="bg">Видео — WebM</comment>
+ <comment xml:lang="be">відэа WebM</comment>
+ <comment xml:lang="ast">Videu en WebM</comment>
+ <comment xml:lang="ar">فيديو WebM</comment>
+ <comment xml:lang="af">WebM-video</comment>
<glob pattern="*.webm"/>
- <magic priority="50">
-
- <match value="0x1a45dfa3" type="big32" offset="0">
-
- <match value="0x4282" type="big16" offset="5:65">
-
- <match value="webm" type="string" offset="8:75"/>
+ <magic>
+ <!-- EBML ID -->
+ <match type="big32" value="0x1a45dfa3" offset="0">
+ <!-- DocumentType ID -->
+ <match type="big16" value="0x4282" offset="5:65">
+ <!-- DocumentType -->
+ <match type="string" value="webm" offset="8:75"/>
</match>
</match>
</magic>
</mime-type>
<mime-type type="audio/webm">
<comment>WebM audio</comment>
- <comment xml:lang="ar">WebM سمعي</comment>
- <comment xml:lang="bg">Аудио — WebM</comment>
- <comment xml:lang="ca">àudio de WebM</comment>
- <comment xml:lang="cs">zvuk WebM</comment>
- <comment xml:lang="da">WebM-lyd</comment>
- <comment xml:lang="de">WebM-Audio</comment>
- <comment xml:lang="el">Ήχος WebM</comment>
- <comment xml:lang="en_GB">WebM audio</comment>
- <comment xml:lang="eo">WebM-sondosiero</comment>
- <comment xml:lang="es">sonido WebM</comment>
- <comment xml:lang="eu">WebM audioa</comment>
- <comment xml:lang="fi">WebM-ääni</comment>
- <comment xml:lang="fo">WebM ljóður</comment>
- <comment xml:lang="fr">audio WebM</comment>
- <comment xml:lang="ga">fuaim WebM</comment>
- <comment xml:lang="gl">son WebM</comment>
- <comment xml:lang="he">שמע WebM</comment>
- <comment xml:lang="hr">WebM zvučni zapis</comment>
- <comment xml:lang="hu">WebM hang</comment>
- <comment xml:lang="ia">Audio WebM</comment>
- <comment xml:lang="id">Audio WebM</comment>
- <comment xml:lang="it">Audio WebM</comment>
- <comment xml:lang="ja">WebM オーディオ</comment>
- <comment xml:lang="kk">WebM аудиосы</comment>
- <comment xml:lang="ko">WebM 오디오</comment>
- <comment xml:lang="lt">WebM garso įrašas</comment>
- <comment xml:lang="lv">WebM audio</comment>
- <comment xml:lang="nl">WebM audio</comment>
- <comment xml:lang="oc">àudio WebM</comment>
- <comment xml:lang="pl">Plik dźwiękowy WebM</comment>
- <comment xml:lang="pt">áudio WebM</comment>
- <comment xml:lang="pt_BR">Áudio WebM</comment>
- <comment xml:lang="ro">Audio WebM</comment>
- <comment xml:lang="ru">Аудио WebM</comment>
- <comment xml:lang="sk">Zvuk WebM</comment>
- <comment xml:lang="sl">Zvočna datoteka WebM</comment>
- <comment xml:lang="sr">ВебМ звук</comment>
- <comment xml:lang="sv">WebM-ljud</comment>
- <comment xml:lang="tr">WebM sesi</comment>
- <comment xml:lang="uk">звук WebM</comment>
- <comment xml:lang="zh_CN">WebM 音频</comment>
<comment xml:lang="zh_TW">WebM 音訊</comment>
+ <comment xml:lang="zh_CN">WebM 音频</comment>
+ <comment xml:lang="uk">звук WebM</comment>
+ <comment xml:lang="tr">WebM sesi</comment>
+ <comment xml:lang="sv">WebM-ljud</comment>
+ <comment xml:lang="sr">ВебМ звук</comment>
+ <comment xml:lang="sq">audio WebM</comment>
+ <comment xml:lang="sl">Zvočna datoteka WebM</comment>
+ <comment xml:lang="si">WebM ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk WebM</comment>
+ <comment xml:lang="ru">Аудио WebM</comment>
+ <comment xml:lang="ro">Audio WebM</comment>
+ <comment xml:lang="pt_BR">Áudio WebM</comment>
+ <comment xml:lang="pt">áudio WebM</comment>
+ <comment xml:lang="pl">Plik dźwiękowy WebM</comment>
+ <comment xml:lang="oc">àudio WebM</comment>
+ <comment xml:lang="nl">WebM-audio</comment>
+ <comment xml:lang="lv">WebM audio</comment>
+ <comment xml:lang="lt">WebM garso įrašas</comment>
+ <comment xml:lang="ko">WebM 오디오</comment>
+ <comment xml:lang="kk">WebM аудиосы</comment>
+ <comment xml:lang="ja">WebM オーディオ</comment>
+ <comment xml:lang="it">Audio WebM</comment>
+ <comment xml:lang="is">WebM hljóðskrá</comment>
+ <comment xml:lang="id">Audio WebM</comment>
+ <comment xml:lang="ia">Audio WebM</comment>
+ <comment xml:lang="hu">WebM hang</comment>
+ <comment xml:lang="hr">WebM zvučni zapis</comment>
+ <comment xml:lang="he">שמע WebM</comment>
+ <comment xml:lang="gl">son WebM</comment>
+ <comment xml:lang="ga">fuaim WebM</comment>
+ <comment xml:lang="fur">audio WebM</comment>
+ <comment xml:lang="fr">audio WebM</comment>
+ <comment xml:lang="fo">WebM ljóður</comment>
+ <comment xml:lang="fi">WebM-ääni</comment>
+ <comment xml:lang="eu">WebM audioa</comment>
+ <comment xml:lang="es">sonido WebM</comment>
+ <comment xml:lang="eo">WebM-sondosiero</comment>
+ <comment xml:lang="en_GB">WebM audio</comment>
+ <comment xml:lang="el">Ήχος WebM</comment>
+ <comment xml:lang="de">WebM-Audio</comment>
+ <comment xml:lang="da">WebM-lyd</comment>
+ <comment xml:lang="cs">zvuk WebM</comment>
+ <comment xml:lang="ca">àudio WebM</comment>
+ <comment xml:lang="bg">Аудио — WebM</comment>
+ <comment xml:lang="be">аўдыя WebM</comment>
+ <comment xml:lang="ar">صوت WebM</comment>
+ <comment xml:lang="af">WebM-oudio</comment>
<sub-class-of type="video/webm"/>
</mime-type>
<mime-type type="application/x-mimearchive">
<comment>MHTML web archive</comment>
- <comment xml:lang="ca">arxiu web MHTML</comment>
- <comment xml:lang="cs">webový archiv MHTML</comment>
- <comment xml:lang="da">MHTML-netarkiv</comment>
- <comment xml:lang="de">MHTML-Webarchiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο ιστού MHTML</comment>
- <comment xml:lang="en_GB">MHTML web archive</comment>
- <comment xml:lang="es">archivador web MHTML</comment>
- <comment xml:lang="eu">MHTML web artxiboa</comment>
- <comment xml:lang="fi">MHTML-kooste</comment>
- <comment xml:lang="fr">archive web MHTML</comment>
- <comment xml:lang="ga">cartlann ghréasáin MHTML</comment>
- <comment xml:lang="gl">Arquivo web MHTML</comment>
- <comment xml:lang="he">ארכיון רשת MHTML</comment>
- <comment xml:lang="hr">MHTML web arhiva</comment>
- <comment xml:lang="hu">MHTML webarchívum</comment>
- <comment xml:lang="ia">Archivo web MHTML</comment>
- <comment xml:lang="id">Arsip web MHTML</comment>
- <comment xml:lang="it">Archivio web MHTML</comment>
- <comment xml:lang="ja">MHTML Web アーカイブ</comment>
- <comment xml:lang="kk">MHTML веб архиві</comment>
- <comment xml:lang="ko">MHTML 웹 보관 파일</comment>
- <comment xml:lang="lv">MHTML tīmekļa arhīvs</comment>
- <comment xml:lang="oc">archiu web MHTML</comment>
- <comment xml:lang="pl">Archiwum witryny MHTML</comment>
- <comment xml:lang="pt">arquivo web MHTML</comment>
- <comment xml:lang="pt_BR">Pacote web MHTML</comment>
- <comment xml:lang="ru">Веб-архив MHTML</comment>
- <comment xml:lang="sk">Webový archív MHTML</comment>
- <comment xml:lang="sl">Spletni arhiv MHTML</comment>
- <comment xml:lang="sr">МХТМЛ веб архива</comment>
- <comment xml:lang="sv">MHTML-webbarkiv</comment>
- <comment xml:lang="tr">MHTML web arşivi</comment>
- <comment xml:lang="uk">вебархів MHTML</comment>
- <comment xml:lang="zh_CN">MHTML 网络归档</comment>
<comment xml:lang="zh_TW">MHTML 網頁封存檔</comment>
+ <comment xml:lang="zh_CN">MHTML 网络归档</comment>
+ <comment xml:lang="uk">вебархів MHTML</comment>
+ <comment xml:lang="tr">MHTML web arşivi</comment>
+ <comment xml:lang="sv">MHTML-webbarkiv</comment>
+ <comment xml:lang="sr">МХТМЛ веб архива</comment>
+ <comment xml:lang="sq">arkiv web MHTML</comment>
+ <comment xml:lang="sl">Spletni arhiv MHTML</comment>
+ <comment xml:lang="si">MHTML වෙබ් සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Webový archív MHTML</comment>
+ <comment xml:lang="ru">Веб-архив MHTML</comment>
+ <comment xml:lang="pt_BR">Pacote web MHTML</comment>
+ <comment xml:lang="pt">arquivo web MHTML</comment>
+ <comment xml:lang="pl">Archiwum witryny MHTML</comment>
+ <comment xml:lang="oc">archiu web MHTML</comment>
+ <comment xml:lang="nl">MHTML-webarchief</comment>
+ <comment xml:lang="lv">MHTML tīmekļa arhīvs</comment>
+ <comment xml:lang="ko">MHTML 웹 보관 파일</comment>
+ <comment xml:lang="kk">MHTML веб архиві</comment>
+ <comment xml:lang="ja">MHTML Web アーカイブ</comment>
+ <comment xml:lang="it">Archivio web MHTML</comment>
+ <comment xml:lang="is">MHTML vefsafnskrá</comment>
+ <comment xml:lang="id">Arsip web MHTML</comment>
+ <comment xml:lang="ia">Archivo web MHTML</comment>
+ <comment xml:lang="hu">MHTML webarchívum</comment>
+ <comment xml:lang="hr">MHTML web arhiva</comment>
+ <comment xml:lang="he">ארכיון רשת MHTML</comment>
+ <comment xml:lang="gl">Arquivo web MHTML</comment>
+ <comment xml:lang="ga">cartlann ghréasáin MHTML</comment>
+ <comment xml:lang="fur">archivi web MHTML</comment>
+ <comment xml:lang="fr">archive web MHTML</comment>
+ <comment xml:lang="fi">MHTML-kooste</comment>
+ <comment xml:lang="eu">MHTML web artxiboa</comment>
+ <comment xml:lang="es">archivador web MHTML</comment>
+ <comment xml:lang="en_GB">MHTML web archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο ιστού MHTML</comment>
+ <comment xml:lang="de">MHTML-Webarchiv</comment>
+ <comment xml:lang="da">MHTML-webarkiv</comment>
+ <comment xml:lang="cs">webový archiv MHTML</comment>
+ <comment xml:lang="ca">arxiu web MHTML</comment>
+ <comment xml:lang="bg">Архив — MHTML</comment>
+ <comment xml:lang="be">вэб-архіў MHTML</comment>
+ <comment xml:lang="ar">أرشيف ويب MHTML</comment>
+ <comment xml:lang="af">MHTML-webargief</comment>
<acronym>MHTML</acronym>
<expanded-acronym>MIME HTML</expanded-acronym>
<glob pattern="*.mhtml"/>
@@ -15878,153 +17305,160 @@
</mime-type>
<mime-type type="application/mxf">
<comment>MXF video</comment>
- <comment xml:lang="ar">MXF مرئي</comment>
- <comment xml:lang="ast">Videu en MXF</comment>
- <comment xml:lang="bg">Видео — MXF</comment>
- <comment xml:lang="ca">vídeo MXF</comment>
- <comment xml:lang="cs">video MXF</comment>
- <comment xml:lang="da">MXF-video</comment>
- <comment xml:lang="de">MXF-Video</comment>
- <comment xml:lang="el">Βίντεο MXF</comment>
- <comment xml:lang="en_GB">MXF video</comment>
- <comment xml:lang="eo">MXF-video</comment>
- <comment xml:lang="es">vídeo MXF</comment>
- <comment xml:lang="eu">MXF bideoa</comment>
- <comment xml:lang="fi">MXF-video</comment>
- <comment xml:lang="fo">MXF video</comment>
- <comment xml:lang="fr">vidéo MXF</comment>
- <comment xml:lang="ga">físeán MXF</comment>
- <comment xml:lang="gl">vídeo MXF</comment>
- <comment xml:lang="he">וידאו MXF</comment>
- <comment xml:lang="hr">MXF video snimka</comment>
- <comment xml:lang="hu">MXF videó</comment>
- <comment xml:lang="ia">Video MXF</comment>
- <comment xml:lang="id">Video MXF</comment>
- <comment xml:lang="it">Video MXF</comment>
- <comment xml:lang="ja">MXF 動画</comment>
- <comment xml:lang="ka">MXF ვიდეო</comment>
- <comment xml:lang="kk">MXF видеосы</comment>
- <comment xml:lang="ko">MXF 동영상</comment>
- <comment xml:lang="lt">MXF vaizdo įrašas</comment>
- <comment xml:lang="lv">MXF video</comment>
- <comment xml:lang="nl">MXF video</comment>
- <comment xml:lang="oc">vidèo MXF</comment>
- <comment xml:lang="pl">Plik wideo MXF</comment>
- <comment xml:lang="pt">vídeo MXF</comment>
- <comment xml:lang="pt_BR">Vídeo MXF</comment>
- <comment xml:lang="ro">Video MXF</comment>
- <comment xml:lang="ru">Видео MXF</comment>
- <comment xml:lang="sk">Video MXF</comment>
- <comment xml:lang="sl">Video datoteka MXF</comment>
- <comment xml:lang="sr">МИксФ видео</comment>
- <comment xml:lang="sv">MXF-video</comment>
- <comment xml:lang="tr">MXF video</comment>
- <comment xml:lang="uk">відеокліп MXF</comment>
- <comment xml:lang="zh_CN">MXF 视频</comment>
<comment xml:lang="zh_TW">MXF 視訊</comment>
+ <comment xml:lang="zh_CN">MXF 视频</comment>
+ <comment xml:lang="uk">відеокліп MXF</comment>
+ <comment xml:lang="tr">MXF video</comment>
+ <comment xml:lang="sv">MXF-video</comment>
+ <comment xml:lang="sr">МИксФ видео</comment>
+ <comment xml:lang="sq">video MXF</comment>
+ <comment xml:lang="sl">Video datoteka MXF</comment>
+ <comment xml:lang="si">MXF වීඩියෝව</comment>
+ <comment xml:lang="sk">Video MXF</comment>
+ <comment xml:lang="ru">Видео MXF</comment>
+ <comment xml:lang="ro">Video MXF</comment>
+ <comment xml:lang="pt_BR">Vídeo MXF</comment>
+ <comment xml:lang="pt">vídeo MXF</comment>
+ <comment xml:lang="pl">Plik wideo MXF</comment>
+ <comment xml:lang="oc">vidèo MXF</comment>
+ <comment xml:lang="nl">MXF-video</comment>
+ <comment xml:lang="lv">MXF video</comment>
+ <comment xml:lang="lt">MXF vaizdo įrašas</comment>
+ <comment xml:lang="ko">MXF 동영상</comment>
+ <comment xml:lang="kk">MXF видеосы</comment>
+ <comment xml:lang="ka">MXF ვიდეო</comment>
+ <comment xml:lang="ja">MXF 動画</comment>
+ <comment xml:lang="it">Video MXF</comment>
+ <comment xml:lang="is">MXF myndskeið</comment>
+ <comment xml:lang="id">Video MXF</comment>
+ <comment xml:lang="ia">Video MXF</comment>
+ <comment xml:lang="hu">MXF videó</comment>
+ <comment xml:lang="hr">MXF video snimka</comment>
+ <comment xml:lang="he">וידאו MXF</comment>
+ <comment xml:lang="gl">vídeo MXF</comment>
+ <comment xml:lang="ga">físeán MXF</comment>
+ <comment xml:lang="fur">video MXF</comment>
+ <comment xml:lang="fr">vidéo MXF</comment>
+ <comment xml:lang="fo">MXF video</comment>
+ <comment xml:lang="fi">MXF-video</comment>
+ <comment xml:lang="eu">MXF bideoa</comment>
+ <comment xml:lang="es">vídeo MXF</comment>
+ <comment xml:lang="eo">MXF-video</comment>
+ <comment xml:lang="en_GB">MXF video</comment>
+ <comment xml:lang="el">Βίντεο MXF</comment>
+ <comment xml:lang="de">MXF-Video</comment>
+ <comment xml:lang="da">MXF-video</comment>
+ <comment xml:lang="cs">video MXF</comment>
+ <comment xml:lang="ca">vídeo MXF</comment>
+ <comment xml:lang="bg">Видео — MXF</comment>
+ <comment xml:lang="be">відэа MXF</comment>
+ <comment xml:lang="ast">Videu en MXF</comment>
+ <comment xml:lang="ar">فيديو MXF</comment>
+ <comment xml:lang="af">MXF-video</comment>
<acronym>MXF</acronym>
<expanded-acronym>Material Exchange Format</expanded-acronym>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
- <match value="\x06\x0e\x2b\x34\x02\x05\x01\x01\x0d\x01\x02\x01\x01\x02" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="\x06\x0e\x2b\x34\x02\x05\x01\x01\x0d\x01\x02\x01\x01\x02" offset="0:256"/>
</magic>
<glob pattern="*.mxf"/>
</mime-type>
<mime-type type="text/x-ocl">
<comment>OCL file</comment>
- <comment xml:lang="ar">ملف OCL</comment>
- <comment xml:lang="be@latin">Fajł OCL</comment>
- <comment xml:lang="bg">Файл — OCL</comment>
- <comment xml:lang="ca">fitxer OCL</comment>
- <comment xml:lang="cs">soubor OCL</comment>
- <comment xml:lang="da">OCL-fil</comment>
- <comment xml:lang="de">OCL-Datei</comment>
- <comment xml:lang="el">Αρχείο OCL</comment>
- <comment xml:lang="en_GB">OCL file</comment>
- <comment xml:lang="eo">OCL-dosiero</comment>
- <comment xml:lang="es">archivo OCL</comment>
- <comment xml:lang="eu">OCL fitxategia</comment>
- <comment xml:lang="fi">OCL-tiedosto</comment>
- <comment xml:lang="fo">OCL fíla</comment>
- <comment xml:lang="fr">fichier OCL</comment>
- <comment xml:lang="ga">comhad OCL</comment>
- <comment xml:lang="gl">ficheiro OCL</comment>
- <comment xml:lang="he">קובץ OCL</comment>
- <comment xml:lang="hr">OCL datoteka</comment>
- <comment xml:lang="hu">OCL fájl</comment>
- <comment xml:lang="ia">File OCL</comment>
- <comment xml:lang="id">Berkas OCL</comment>
- <comment xml:lang="it">File OCL</comment>
- <comment xml:lang="ja">OCL ファイル</comment>
- <comment xml:lang="kk">OCL файлы</comment>
- <comment xml:lang="ko">OCL 파일</comment>
- <comment xml:lang="lt">OCL failas</comment>
- <comment xml:lang="lv">OCL datne</comment>
- <comment xml:lang="nb">OCL-fil</comment>
- <comment xml:lang="nl">OCL-bestand</comment>
- <comment xml:lang="nn">OCL-fil</comment>
- <comment xml:lang="oc">fichièr OCL</comment>
- <comment xml:lang="pl">Plik OCL</comment>
- <comment xml:lang="pt">ficheiro OCL</comment>
- <comment xml:lang="pt_BR">Arquivo OCL</comment>
- <comment xml:lang="ro">Fișier OCL</comment>
- <comment xml:lang="ru">Файл OCL</comment>
- <comment xml:lang="sk">Súbor OCL</comment>
- <comment xml:lang="sl">Datoteka OCL</comment>
- <comment xml:lang="sq">File OCL</comment>
- <comment xml:lang="sr">ОЦЛ датотека</comment>
- <comment xml:lang="sv">OCL-fil</comment>
- <comment xml:lang="tr">OCL dosyası</comment>
- <comment xml:lang="uk">файл OCL</comment>
- <comment xml:lang="vi">Tập tin OCL</comment>
- <comment xml:lang="zh_CN">OCL 文件</comment>
<comment xml:lang="zh_TW">OCL 檔</comment>
+ <comment xml:lang="zh_CN">OCL 文件</comment>
+ <comment xml:lang="vi">Tập tin OCL</comment>
+ <comment xml:lang="uk">файл OCL</comment>
+ <comment xml:lang="tr">OCL dosyası</comment>
+ <comment xml:lang="sv">OCL-fil</comment>
+ <comment xml:lang="sr">ОЦЛ датотека</comment>
+ <comment xml:lang="sq">kartelë OCL</comment>
+ <comment xml:lang="sl">Datoteka OCL</comment>
+ <comment xml:lang="si">OCL ගොනුව</comment>
+ <comment xml:lang="sk">Súbor OCL</comment>
+ <comment xml:lang="ru">Файл OCL</comment>
+ <comment xml:lang="ro">Fișier OCL</comment>
+ <comment xml:lang="pt_BR">Arquivo OCL</comment>
+ <comment xml:lang="pt">ficheiro OCL</comment>
+ <comment xml:lang="pl">Plik OCL</comment>
+ <comment xml:lang="oc">fichièr OCL</comment>
+ <comment xml:lang="nn">OCL-fil</comment>
+ <comment xml:lang="nl">OCL-bestand</comment>
+ <comment xml:lang="nb">OCL-fil</comment>
+ <comment xml:lang="lv">OCL datne</comment>
+ <comment xml:lang="lt">OCL failas</comment>
+ <comment xml:lang="ko">OCL 파일</comment>
+ <comment xml:lang="kk">OCL файлы</comment>
+ <comment xml:lang="ja">OCL ファイル</comment>
+ <comment xml:lang="it">File OCL</comment>
+ <comment xml:lang="is">OCL skrá</comment>
+ <comment xml:lang="id">Berkas OCL</comment>
+ <comment xml:lang="ia">File OCL</comment>
+ <comment xml:lang="hu">OCL fájl</comment>
+ <comment xml:lang="hr">OCL datoteka</comment>
+ <comment xml:lang="he">קובץ OCL</comment>
+ <comment xml:lang="gl">ficheiro OCL</comment>
+ <comment xml:lang="ga">comhad OCL</comment>
+ <comment xml:lang="fur">file OCL</comment>
+ <comment xml:lang="fr">fichier OCL</comment>
+ <comment xml:lang="fo">OCL fíla</comment>
+ <comment xml:lang="fi">OCL-tiedosto</comment>
+ <comment xml:lang="eu">OCL fitxategia</comment>
+ <comment xml:lang="es">archivo OCL</comment>
+ <comment xml:lang="eo">OCL-dosiero</comment>
+ <comment xml:lang="en_GB">OCL file</comment>
+ <comment xml:lang="el">Αρχείο OCL</comment>
+ <comment xml:lang="de">OCL-Datei</comment>
+ <comment xml:lang="da">OCL-fil</comment>
+ <comment xml:lang="cs">soubor OCL</comment>
+ <comment xml:lang="ca">fitxer OCL</comment>
+ <comment xml:lang="bg">Файл — OCL</comment>
+ <comment xml:lang="be@latin">Fajł OCL</comment>
+ <comment xml:lang="be">файл OCL</comment>
+ <comment xml:lang="ar">ملف OCL</comment>
+ <comment xml:lang="af">OCL-lêer</comment>
<acronym>OCL</acronym>
<expanded-acronym>Object Constraint Language</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.ocl"/>
</mime-type>
<mime-type type="text/x-cobol">
- <comment>COBOL source file</comment>
- <comment xml:lang="bg">Изходен код — COBOL</comment>
- <comment xml:lang="ca">codi font en COBOL</comment>
- <comment xml:lang="cs">zdrojový soubor COBOL</comment>
- <comment xml:lang="da">COBOL-kildefil</comment>
- <comment xml:lang="de">COBOL-Quelldatei</comment>
- <comment xml:lang="el">Πηγαίο αρχείο COBOL</comment>
- <comment xml:lang="en_GB">COBOL source file</comment>
- <comment xml:lang="eo">COBOL-fontdosiero</comment>
- <comment xml:lang="es">archivo fuente de COBOL</comment>
- <comment xml:lang="eu">COBOL iturburu-kodea</comment>
- <comment xml:lang="fi">COBOL-lähdekoodi</comment>
- <comment xml:lang="fr">fichier source COBOL</comment>
- <comment xml:lang="ga">cód foinseach COBOL</comment>
- <comment xml:lang="gl">ficheiro fonte de COBOL</comment>
- <comment xml:lang="he">קובץ מקור של COBOL</comment>
- <comment xml:lang="hr">COBOL izvorna datoteka</comment>
- <comment xml:lang="hu">COBOL forrásfájl</comment>
- <comment xml:lang="ia">File de codice fonte COBOL</comment>
- <comment xml:lang="id">Berkas sumber COBOL</comment>
- <comment xml:lang="it">File sorgente COBOL</comment>
- <comment xml:lang="ja">COBOL ソースファイル</comment>
- <comment xml:lang="ka">COBOL-ის საწყისი ფაილი</comment>
- <comment xml:lang="kk">COBOL бастапқы коды</comment>
- <comment xml:lang="ko">COBOL 소스 파일</comment>
- <comment xml:lang="lv">COBOL pirmkods</comment>
- <comment xml:lang="nl">COBOL bronbestand</comment>
- <comment xml:lang="oc">fichièr font COBOL</comment>
- <comment xml:lang="pl">Plik źródłowy COBOL</comment>
- <comment xml:lang="pt">ficheiro origem COBOL</comment>
- <comment xml:lang="pt_BR">Arquivo de código-fonte em COBOL</comment>
- <comment xml:lang="ru">Файл исходного кода на COBOL</comment>
- <comment xml:lang="sk">Zdrojový súbor COBOLu</comment>
+ <comment>COBOL source code</comment>
+ <comment xml:lang="zh_TW">COBOL 原始碼</comment>
+ <comment xml:lang="zh_CN">COBOL 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою COBOL</comment>
+ <comment xml:lang="tr">COBOL kaynak kodu</comment>
+ <comment xml:lang="sv">COBOL-källkod</comment>
+ <comment xml:lang="sq">kod burim COBOL</comment>
<comment xml:lang="sl">Izvorna koda COBOL</comment>
- <comment xml:lang="sr">изворна датотека КОБОЛ-а</comment>
- <comment xml:lang="sv">COBOL-källkodsfil</comment>
- <comment xml:lang="tr">COBOL kaynak dosyası</comment>
- <comment xml:lang="uk">вихідний код мовою COBOL</comment>
- <comment xml:lang="zh_CN">COBOL 源文件</comment>
- <comment xml:lang="zh_TW">COBOL 源檔</comment>
+ <comment xml:lang="si">COBOL මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód COBOL</comment>
+ <comment xml:lang="ru">Исходный код COBOL</comment>
+ <comment xml:lang="pt_BR">Código-fonte COBOL</comment>
+ <comment xml:lang="pl">Kod źródłowy COBOL</comment>
+ <comment xml:lang="oc">còdi font COBOL</comment>
+ <comment xml:lang="nl">COBOL-broncode</comment>
+ <comment xml:lang="ko">코볼 소스 코드</comment>
+ <comment xml:lang="kk">COBOL бастапқы коды</comment>
+ <comment xml:lang="ja">COBOL ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente COBOL</comment>
+ <comment xml:lang="is">COBOL frumkóði</comment>
+ <comment xml:lang="id">Kode sumber COBOL</comment>
+ <comment xml:lang="hu">COBOL forráskód</comment>
+ <comment xml:lang="hr">COBOL izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור COBOL</comment>
+ <comment xml:lang="gl">Código fonte en COBOL</comment>
+ <comment xml:lang="fr">code source COBOL</comment>
+ <comment xml:lang="fi">COBOL-lähdekoodi</comment>
+ <comment xml:lang="eu">COBOL iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en COBOL</comment>
+ <comment xml:lang="en_GB">COBOL source code</comment>
+ <comment xml:lang="de">COBOL-Quelltext</comment>
+ <comment xml:lang="da">COBOL-kildekode</comment>
+ <comment xml:lang="ca">codi font en COBOL</comment>
+ <comment xml:lang="bg">Изходен код — COBOL</comment>
+ <comment xml:lang="be">зыходны код COBOL</comment>
+ <comment xml:lang="ar">شيفرة مصدر كوبول</comment>
<acronym>COBOL</acronym>
<expanded-acronym>COmmon Business Oriented Language</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -16033,660 +17467,832 @@
</mime-type>
<mime-type type="application/x-mobipocket-ebook">
<comment>Mobipocket e-book</comment>
- <comment xml:lang="bg">Е-книга — Mobipocket</comment>
- <comment xml:lang="ca">llibre electrònic Mobipocket </comment>
- <comment xml:lang="cs">elektronická kniha Mobipocket</comment>
- <comment xml:lang="da">Mobipocket e-bog</comment>
- <comment xml:lang="de">Mobipocket E-Book</comment>
- <comment xml:lang="el">Ηλεκτρονικό βιβλίο Mobipocket</comment>
- <comment xml:lang="en_GB">Mobipocket e-book</comment>
- <comment xml:lang="es">libro electrónico de Mobipocket</comment>
- <comment xml:lang="eu">Mobipocket liburua</comment>
- <comment xml:lang="fi">Mobipocket e-kirja</comment>
- <comment xml:lang="fr">livre numérique Mobipocket</comment>
- <comment xml:lang="ga">r-leabhar Mobipocket</comment>
- <comment xml:lang="gl">E-book Mobipocket</comment>
- <comment xml:lang="he">ספר אלקטרוני של Mobipocket</comment>
- <comment xml:lang="hr">Mobipocket e-knjiga</comment>
- <comment xml:lang="hu">Mobipocket e-könyv</comment>
- <comment xml:lang="ia">E-libro Mobipocket</comment>
- <comment xml:lang="id">e-book Mobipocket</comment>
- <comment xml:lang="it">E-book Mobipocket</comment>
- <comment xml:lang="ja">Mobipocket 電子書籍</comment>
- <comment xml:lang="ka">Mobipocket-ის ელწიგნი</comment>
- <comment xml:lang="kk">Mobipocket эл. кітабы</comment>
- <comment xml:lang="ko">Mobipocket 전자책</comment>
- <comment xml:lang="lv">Mobipocket e-grāmata</comment>
- <comment xml:lang="nl">Mobipocket e-book</comment>
- <comment xml:lang="oc">libre numeric Mobipocket</comment>
- <comment xml:lang="pl">E-book Mobipocket</comment>
- <comment xml:lang="pt">ebook Mobipocket</comment>
- <comment xml:lang="pt_BR">E-book Mobipocket</comment>
- <comment xml:lang="ru">Электронная книга Mobipocket</comment>
- <comment xml:lang="sk">E-kniha Mobipocket</comment>
- <comment xml:lang="sl">e-knjiga Mobipocket</comment>
- <comment xml:lang="sr">Мобипокет ел. књига</comment>
- <comment xml:lang="sv">Mobipocket-e-bok</comment>
- <comment xml:lang="tr">Mobipocket e-kitap</comment>
- <comment xml:lang="uk">електронна книга Mobipocket</comment>
- <comment xml:lang="zh_CN">Mobipocket 电子书</comment>
<comment xml:lang="zh_TW">Mobipocket e-book</comment>
+ <comment xml:lang="zh_CN">Mobipocket 电子书</comment>
+ <comment xml:lang="uk">електронна книга Mobipocket</comment>
+ <comment xml:lang="tr">Mobipocket e-kitap</comment>
+ <comment xml:lang="sv">Mobipocket-e-bok</comment>
+ <comment xml:lang="sr">Мобипокет ел. књига</comment>
+ <comment xml:lang="sq">e-libër Mobipocket</comment>
+ <comment xml:lang="sl">e-knjiga Mobipocket</comment>
+ <comment xml:lang="si">මොබිපොකට් ඊ-පොත</comment>
+ <comment xml:lang="sk">E-kniha Mobipocket</comment>
+ <comment xml:lang="ru">Электронная книга Mobipocket</comment>
+ <comment xml:lang="pt_BR">E-book Mobipocket</comment>
+ <comment xml:lang="pt">ebook Mobipocket</comment>
+ <comment xml:lang="pl">E-book Mobipocket</comment>
+ <comment xml:lang="oc">libre numeric Mobipocket</comment>
+ <comment xml:lang="nl">Mobipocket e-book</comment>
+ <comment xml:lang="lv">Mobipocket e-grāmata</comment>
+ <comment xml:lang="ko">Mobipocket 전자책</comment>
+ <comment xml:lang="kk">Mobipocket эл. кітабы</comment>
+ <comment xml:lang="ka">Mobipocket-ის ელწიგნი</comment>
+ <comment xml:lang="ja">Mobipocket 電子書籍</comment>
+ <comment xml:lang="it">E-book Mobipocket</comment>
+ <comment xml:lang="is">Mobipocket rafbók</comment>
+ <comment xml:lang="id">E-book Mobipocket</comment>
+ <comment xml:lang="ia">E-libro Mobipocket</comment>
+ <comment xml:lang="hu">Mobipocket e-könyv</comment>
+ <comment xml:lang="hr">Mobipocket e-knjiga</comment>
+ <comment xml:lang="he">ספר אלקטרוני של Mobipocket</comment>
+ <comment xml:lang="gl">E-book Mobipocket</comment>
+ <comment xml:lang="ga">r-leabhar Mobipocket</comment>
+ <comment xml:lang="fur">e-book Mobipocket</comment>
+ <comment xml:lang="fr">livre numérique Mobipocket</comment>
+ <comment xml:lang="fi">Mobipocket-e-kirja</comment>
+ <comment xml:lang="eu">Mobipocket liburua</comment>
+ <comment xml:lang="es">libro electrónico de Mobipocket</comment>
+ <comment xml:lang="en_GB">Mobipocket e-book</comment>
+ <comment xml:lang="el">Ηλεκτρονικό βιβλίο Mobipocket</comment>
+ <comment xml:lang="de">Mobipocket E-Book</comment>
+ <comment xml:lang="da">Mobipocket e-bog</comment>
+ <comment xml:lang="cs">elektronická kniha Mobipocket</comment>
+ <comment xml:lang="ca">llibre electrònic Mobipocket </comment>
+ <comment xml:lang="bg">Е-книга — Mobipocket</comment>
+ <comment xml:lang="be">электронная кніга Mobipocket</comment>
+ <comment xml:lang="ar">كتاب إلكتروني Mobipocket</comment>
+ <comment xml:lang="af">Mobipocket e-boek</comment>
<sub-class-of type="application/vnd.palm"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.mobi"/>
<glob pattern="*.prc"/>
<magic priority="30">
-
- <match value="TEXtREAd" type="string" offset="60"/>
+ <!-- This also matches AportisDoc, so lower the priority and prefer extension -->
+ <match type="string" offset="60" value="TEXtREAd"/>
</magic>
<magic priority="80">
- <match value="BOOKMOBI" type="string" offset="60"/>
+ <match type="string" offset="60" value="BOOKMOBI"/>
</magic>
</mime-type>
<mime-type type="application/x-mif">
<comment>Adobe FrameMaker MIF document</comment>
- <comment xml:lang="ar">مستند أدوبي الصانع للإطارات MIF</comment>
- <comment xml:lang="ast">Documentu MIF d'Adobe FrameMaker</comment>
- <comment xml:lang="be@latin">Dakument Adobe FrameMaker MIF</comment>
- <comment xml:lang="bg">Документ — Adobe FrameMaker MIF</comment>
- <comment xml:lang="ca">document MIF d'Adobe FrameMaker</comment>
- <comment xml:lang="cs">dokument Adobe FrameMaker MIF</comment>
- <comment xml:lang="da">Adobe FrameMaker MIF-dokument</comment>
- <comment xml:lang="de">Adobe-FrameMaker-MIF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο MIF του Adobe FrameMaker </comment>
- <comment xml:lang="en_GB">Adobe FrameMaker MIF document</comment>
- <comment xml:lang="eo">MIF-dokumento de Adobe FrameMaker</comment>
- <comment xml:lang="es">documento MIF de Adobe FrameMaker</comment>
- <comment xml:lang="eu">Adobe FrameMaker-en MIF dokumentua</comment>
- <comment xml:lang="fi">Adobe FrameMaker MIF -asiakirja</comment>
- <comment xml:lang="fo">Adobe FrameMaker MIF skjal</comment>
- <comment xml:lang="fr">document MIF Adobe FrameMaker</comment>
- <comment xml:lang="ga">cáipéis MIF Adobe FrameMaker</comment>
- <comment xml:lang="gl">documento MIF de Adobe FrameMaker</comment>
- <comment xml:lang="he">מסמך MIF של Adobe FrameMaker</comment>
- <comment xml:lang="hr">Adobe FrameMaker MIF dokument</comment>
- <comment xml:lang="hu">Adobe FrameMaker MIF-dokumentum</comment>
- <comment xml:lang="ia">Documento MIF de Adobe FrameMaker</comment>
- <comment xml:lang="id">Dokumen Adobe FrameMaker MIF</comment>
- <comment xml:lang="it">Documento MIF Adobe FrameMaker</comment>
- <comment xml:lang="ja">Adobe FrameMaker MIF ドキュメント</comment>
- <comment xml:lang="ka">Adobe FrameMaker-ის MIF დოკუმენტი</comment>
- <comment xml:lang="kk">Adobe FrameMaker MIF құжаты</comment>
- <comment xml:lang="ko">Adobe 프레임메이커 MIF 문서</comment>
- <comment xml:lang="lt">Adobe FrameMaker MIF dokumentas</comment>
- <comment xml:lang="lv">Adobe FrameMaker MIF dokuments</comment>
- <comment xml:lang="nb">Adobe FrameMaker MIF-dokument</comment>
- <comment xml:lang="nl">Adobe FrameMaker MIF-document</comment>
- <comment xml:lang="nn">Adobe FrameMaker MIF-dokument</comment>
- <comment xml:lang="oc">document MIF Adobe FrameMaker</comment>
- <comment xml:lang="pl">Dokument MIF Adobe FrameMaker</comment>
- <comment xml:lang="pt">documento Adobe FrameMaker MIF</comment>
- <comment xml:lang="pt_BR">Documento MIF do Adobe FrameMaker</comment>
- <comment xml:lang="ro">Document Adobe FrameMaker MIF</comment>
- <comment xml:lang="ru">Документ Adobe FrameMaker MIF</comment>
- <comment xml:lang="sk">Dokument Adobe FrameMaker MIF</comment>
- <comment xml:lang="sl">Dokument Adobe FrameMaker MIF</comment>
- <comment xml:lang="sq">Dokument MIF Adobe FrameMaker</comment>
- <comment xml:lang="sr">Адобе Фрејм Мејкер МИФ документ</comment>
- <comment xml:lang="sv">Adobe FrameMaker MIF-dokument</comment>
- <comment xml:lang="tr">Adobe FrameMaker MIF belgesi</comment>
- <comment xml:lang="uk">документ Adobe FrameMaker MIF</comment>
- <comment xml:lang="vi">Tài liệu Adobe FrameMaker MIF</comment>
- <comment xml:lang="zh_CN">Adobe FrameMaker MIF 文档</comment>
<comment xml:lang="zh_TW">Adobe FrameMaker MIF 文件</comment>
+ <comment xml:lang="zh_CN">Adobe FrameMaker MIF 文档</comment>
+ <comment xml:lang="vi">Tài liệu Adobe FrameMaker MIF</comment>
+ <comment xml:lang="uk">документ Adobe FrameMaker MIF</comment>
+ <comment xml:lang="tr">Adobe FrameMaker MIF belgesi</comment>
+ <comment xml:lang="sv">Adobe FrameMaker MIF-dokument</comment>
+ <comment xml:lang="sr">Адобе Фрејм Мејкер МИФ документ</comment>
+ <comment xml:lang="sq">dokument MIF Adobe FrameMaker</comment>
+ <comment xml:lang="sl">Dokument Adobe FrameMaker MIF</comment>
+ <comment xml:lang="si">Adobe FrameMaker MIF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Adobe FrameMaker MIF</comment>
+ <comment xml:lang="ru">Документ Adobe FrameMaker MIF</comment>
+ <comment xml:lang="ro">Document Adobe FrameMaker MIF</comment>
+ <comment xml:lang="pt_BR">Documento MIF do Adobe FrameMaker</comment>
+ <comment xml:lang="pt">documento Adobe FrameMaker MIF</comment>
+ <comment xml:lang="pl">Dokument MIF Adobe FrameMaker</comment>
+ <comment xml:lang="oc">document MIF Adobe FrameMaker</comment>
+ <comment xml:lang="nn">Adobe FrameMaker MIF-dokument</comment>
+ <comment xml:lang="nl">Adobe FrameMaker MIF-document</comment>
+ <comment xml:lang="nb">Adobe FrameMaker MIF-dokument</comment>
+ <comment xml:lang="lv">Adobe FrameMaker MIF dokuments</comment>
+ <comment xml:lang="lt">Adobe FrameMaker MIF dokumentas</comment>
+ <comment xml:lang="ko">Adobe 프레임메이커 MIF 문서</comment>
+ <comment xml:lang="kk">Adobe FrameMaker MIF құжаты</comment>
+ <comment xml:lang="ka">Adobe FrameMaker-ის MIF დოკუმენტი</comment>
+ <comment xml:lang="ja">Adobe FrameMaker MIF ドキュメント</comment>
+ <comment xml:lang="it">Documento MIF Adobe FrameMaker</comment>
+ <comment xml:lang="is">Adobe FrameMaker MIF skjal</comment>
+ <comment xml:lang="id">Dokumen Adobe FrameMaker MIF</comment>
+ <comment xml:lang="ia">Documento MIF de Adobe FrameMaker</comment>
+ <comment xml:lang="hu">Adobe FrameMaker MIF-dokumentum</comment>
+ <comment xml:lang="hr">Adobe FrameMaker MIF dokument</comment>
+ <comment xml:lang="he">מסמך MIF של Adobe FrameMaker</comment>
+ <comment xml:lang="gl">documento MIF de Adobe FrameMaker</comment>
+ <comment xml:lang="ga">cáipéis MIF Adobe FrameMaker</comment>
+ <comment xml:lang="fur">document MIF di Adobe FrameMaker</comment>
+ <comment xml:lang="fr">document MIF Adobe FrameMaker</comment>
+ <comment xml:lang="fo">Adobe FrameMaker MIF skjal</comment>
+ <comment xml:lang="fi">Adobe FrameMaker MIF -asiakirja</comment>
+ <comment xml:lang="eu">Adobe FrameMaker-en MIF dokumentua</comment>
+ <comment xml:lang="es">documento MIF de Adobe FrameMaker</comment>
+ <comment xml:lang="eo">MIF-dokumento de Adobe FrameMaker</comment>
+ <comment xml:lang="en_GB">Adobe FrameMaker MIF document</comment>
+ <comment xml:lang="el">Έγγραφο MIF του Adobe FrameMaker </comment>
+ <comment xml:lang="de">Adobe-FrameMaker-MIF-Dokument</comment>
+ <comment xml:lang="da">Adobe FrameMaker MIF-dokument</comment>
+ <comment xml:lang="cs">dokument Adobe FrameMaker MIF</comment>
+ <comment xml:lang="ca">document MIF d'Adobe FrameMaker</comment>
+ <comment xml:lang="bg">Документ — Adobe FrameMaker MIF</comment>
+ <comment xml:lang="be@latin">Dakument Adobe FrameMaker MIF</comment>
+ <comment xml:lang="be">дакумент Adobe FrameMaker MIF</comment>
+ <comment xml:lang="ast">Documentu MIF d'Adobe FrameMaker</comment>
+ <comment xml:lang="ar">مستند أدوبي FrameMaker MIF</comment>
+ <comment xml:lang="af">Adobe FrameMaker MIF-dokument</comment>
<glob pattern="*.mif"/>
</mime-type>
<mime-type type="application/x-mozilla-bookmarks">
<comment>Mozilla bookmarks</comment>
- <comment xml:lang="ar">علامات موزيلا</comment>
- <comment xml:lang="be@latin">Zakładki Mozilla</comment>
- <comment xml:lang="bg">Отметки — Mozilla</comment>
- <comment xml:lang="ca">llista d'adreces d'interès de Mozilla</comment>
- <comment xml:lang="cs">záložky Mozilla</comment>
- <comment xml:lang="da">Mozillabogmærker</comment>
- <comment xml:lang="de">Mozilla-Lesezeichen</comment>
- <comment xml:lang="el">Σελιδοδείκτες Mozilla</comment>
- <comment xml:lang="en_GB">Mozilla bookmarks</comment>
- <comment xml:lang="eo">Mozilla-legosignoj</comment>
- <comment xml:lang="es">marcadores de Mozilla</comment>
- <comment xml:lang="eu">Mozillako laster-markak</comment>
- <comment xml:lang="fi">Mozilla-kirjanmerkit</comment>
- <comment xml:lang="fo">Mozilla bókamerki</comment>
- <comment xml:lang="fr">marque-pages Mozilla</comment>
- <comment xml:lang="ga">leabharmharcanna Mozilla</comment>
- <comment xml:lang="gl">Marcadores de Mozilla</comment>
- <comment xml:lang="he">סימניה של Mozilla</comment>
- <comment xml:lang="hr">Mozilla zabilješke</comment>
- <comment xml:lang="hu">Mozilla-könyvjelzők</comment>
- <comment xml:lang="ia">Marcapaginas Mozilla</comment>
- <comment xml:lang="id">Bookmark Mozilla</comment>
- <comment xml:lang="it">Segnalibri Mozilla</comment>
- <comment xml:lang="ja">Mozilla ブックマーク</comment>
- <comment xml:lang="kk">Mozilla бетбелгілері</comment>
- <comment xml:lang="ko">모질라 책갈피</comment>
- <comment xml:lang="lt">Mozilla žymelės</comment>
- <comment xml:lang="lv">Mozilla grāmatzīmes</comment>
- <comment xml:lang="ms">Tandabuku Mozilla</comment>
- <comment xml:lang="nb">Mozilla-bokmerker</comment>
- <comment xml:lang="nl">Mozilla-bladwijzers</comment>
- <comment xml:lang="nn">Mozilla-bokmerker</comment>
- <comment xml:lang="oc">marcapaginas Mozilla</comment>
- <comment xml:lang="pl">Zakładki Mozilla</comment>
- <comment xml:lang="pt">marcadores do Mozilla</comment>
- <comment xml:lang="pt_BR">Favoritos do Mozilla</comment>
- <comment xml:lang="ro">Semne de carte Mozilla</comment>
- <comment xml:lang="ru">Закладки Mozilla</comment>
- <comment xml:lang="sk">Záložky Mozilla</comment>
- <comment xml:lang="sl">Datoteka zaznamkov Mozilla</comment>
- <comment xml:lang="sq">Libërshënues Mozilla</comment>
- <comment xml:lang="sr">Мозилини обележивачи</comment>
- <comment xml:lang="sv">Mozilla-bokmärken</comment>
- <comment xml:lang="tr">Mozilla yer imleri</comment>
- <comment xml:lang="uk">закладки Mozilla</comment>
- <comment xml:lang="vi">Liên kết đã lưu Mozilla</comment>
- <comment xml:lang="zh_CN">Mozilla 书签</comment>
<comment xml:lang="zh_TW">Mozilla 書籤</comment>
+ <comment xml:lang="zh_CN">Mozilla 书签</comment>
+ <comment xml:lang="vi">Liên kết đã lưu Mozilla</comment>
+ <comment xml:lang="uk">закладки Mozilla</comment>
+ <comment xml:lang="tr">Mozilla yer imleri</comment>
+ <comment xml:lang="sv">Mozilla-bokmärken</comment>
+ <comment xml:lang="sr">Мозилини обележивачи</comment>
+ <comment xml:lang="sq">faqerojtës Mozilla</comment>
+ <comment xml:lang="sl">Datoteka zaznamkov Mozilla</comment>
+ <comment xml:lang="si">මොසිල්ලා පිටු සලකුණු</comment>
+ <comment xml:lang="sk">Záložky Mozilla</comment>
+ <comment xml:lang="ru">Закладки Mozilla</comment>
+ <comment xml:lang="ro">Semne de carte Mozilla</comment>
+ <comment xml:lang="pt_BR">Favoritos do Mozilla</comment>
+ <comment xml:lang="pt">marcadores do Mozilla</comment>
+ <comment xml:lang="pl">Zakładki Mozilla</comment>
+ <comment xml:lang="oc">marcapaginas Mozilla</comment>
+ <comment xml:lang="nn">Mozilla-bokmerker</comment>
+ <comment xml:lang="nl">Mozilla-bladwijzers</comment>
+ <comment xml:lang="nb">Mozilla-bokmerker</comment>
+ <comment xml:lang="ms">Tandabuku Mozilla</comment>
+ <comment xml:lang="lv">Mozilla grāmatzīmes</comment>
+ <comment xml:lang="lt">Mozilla žymelės</comment>
+ <comment xml:lang="ko">모질라 책갈피</comment>
+ <comment xml:lang="kk">Mozilla бетбелгілері</comment>
+ <comment xml:lang="ja">Mozilla ブックマーク</comment>
+ <comment xml:lang="it">Segnalibri Mozilla</comment>
+ <comment xml:lang="is">Mozilla bókamerki</comment>
+ <comment xml:lang="id">Bookmark Mozilla</comment>
+ <comment xml:lang="ia">Marcapaginas Mozilla</comment>
+ <comment xml:lang="hu">Mozilla-könyvjelzők</comment>
+ <comment xml:lang="hr">Mozilla zabilješke</comment>
+ <comment xml:lang="he">סימניה של Mozilla</comment>
+ <comment xml:lang="gl">Marcadores de Mozilla</comment>
+ <comment xml:lang="ga">leabharmharcanna Mozilla</comment>
+ <comment xml:lang="fur">segnelibris Mozilla</comment>
+ <comment xml:lang="fr">marque-pages Mozilla</comment>
+ <comment xml:lang="fo">Mozilla bókamerki</comment>
+ <comment xml:lang="fi">Mozilla-kirjanmerkit</comment>
+ <comment xml:lang="eu">Mozillako laster-markak</comment>
+ <comment xml:lang="es">marcadores de Mozilla</comment>
+ <comment xml:lang="eo">Mozilla-legosignoj</comment>
+ <comment xml:lang="en_GB">Mozilla bookmarks</comment>
+ <comment xml:lang="el">Σελιδοδείκτες Mozilla</comment>
+ <comment xml:lang="de">Mozilla-Lesezeichen</comment>
+ <comment xml:lang="da">Mozillabogmærker</comment>
+ <comment xml:lang="cs">záložky Mozilla</comment>
+ <comment xml:lang="ca">llista d'adreces d'interès de Mozilla</comment>
+ <comment xml:lang="bg">Отметки — Mozilla</comment>
+ <comment xml:lang="be@latin">Zakładki Mozilla</comment>
+ <comment xml:lang="be">закладкі Mozilla</comment>
+ <comment xml:lang="ar">علامات موزيلا</comment>
+ <comment xml:lang="af">Mozilla-boekmerke</comment>
<sub-class-of type="text/html"/>
<generic-icon name="text-html"/>
<magic priority="80">
- <match value="&lt;!DOCTYPE NETSCAPE-Bookmark-file-1&gt;" type="string" offset="0:64"/>
+ <match type="string" value="&lt;!DOCTYPE NETSCAPE-Bookmark-file-1&gt;" offset="0:64"/>
</magic>
<alias type="application/x-netscape-bookmarks"/>
</mime-type>
- <mime-type type="application/x-ms-dos-executable">
- <comment>DOS/Windows executable</comment>
- <comment xml:lang="ar">تنفيذي DOS/Windows</comment>
- <comment xml:lang="be@latin">Vykonvalny fajł DOS/Windows</comment>
- <comment xml:lang="bg">Изпълним файл — DOS/Windows</comment>
- <comment xml:lang="ca">executable de DOS o de Windows</comment>
- <comment xml:lang="cs">spustitelný soubor pro DOS/Windows</comment>
- <comment xml:lang="da">DOS-/Windowskørbar</comment>
- <comment xml:lang="de">DOS/Windows-Programmdatei</comment>
- <comment xml:lang="el">Εκτελέσιμο DOS/Windows</comment>
- <comment xml:lang="en_GB">DOS/Windows executable</comment>
- <comment xml:lang="eo">DOS/Windows-plenumebla</comment>
- <comment xml:lang="es">ejecutable de DOS/Windows</comment>
- <comment xml:lang="eu">DOS/Windows-eko exekutagarria</comment>
- <comment xml:lang="fi">DOS/Windows-ohjelma</comment>
- <comment xml:lang="fo">DOS/Windows inningarfør</comment>
- <comment xml:lang="fr">exécutable DOS/Windows</comment>
- <comment xml:lang="ga">comhad inrite DOS/Windows</comment>
- <comment xml:lang="gl">executábel de DOS/Windows</comment>
- <comment xml:lang="he">קובץ בר־הרצה של DOS/חלונות</comment>
- <comment xml:lang="hr">DOS/Windows izvršna datoteka</comment>
- <comment xml:lang="hu">DOS/Windows futtatható</comment>
- <comment xml:lang="ia">Executabile DOS/Windows</comment>
- <comment xml:lang="id">DOS/Windows dapat dieksekusi</comment>
- <comment xml:lang="it">Eseguibile DOS/Windows</comment>
- <comment xml:lang="ja">DOS/Windows 実行ファイル</comment>
- <comment xml:lang="ka">DOS/Windows გაშვებადი ფაილი</comment>
- <comment xml:lang="kk">DOS/Windows орындалатын файлы</comment>
- <comment xml:lang="ko">DOS/Windows 실행 파일</comment>
- <comment xml:lang="lt">DOS/Windows vykdomasis failas</comment>
- <comment xml:lang="lv">DOS/Windows izpildāmais</comment>
- <comment xml:lang="ms">Bolehlaksana DOS/Windows</comment>
- <comment xml:lang="nb">Kjørbar fil for DOS/Windows</comment>
- <comment xml:lang="nl">DOS/Windows-uitvoerbaar bestand</comment>
- <comment xml:lang="nn">DOS/Windows køyrbar fil</comment>
- <comment xml:lang="oc">executable DOS/Windows</comment>
- <comment xml:lang="pl">Program DOS/Windows</comment>
- <comment xml:lang="pt">executável DOS/Windows</comment>
- <comment xml:lang="pt_BR">Executável do DOS/Windows</comment>
- <comment xml:lang="ro">Executabil DOS/Windows</comment>
- <comment xml:lang="ru">Исполняемый файл DOS/Windows</comment>
- <comment xml:lang="sk">Spustiteľný súbor pre DOS/Windows</comment>
- <comment xml:lang="sl">Izvedljiva datoteka DOS/Windows</comment>
- <comment xml:lang="sq">I ekzekutueshëm DOS/Windows</comment>
- <comment xml:lang="sr">ДОС/Виндоуз извршна</comment>
- <comment xml:lang="sv">Körbar DOS/Windows-fil</comment>
- <comment xml:lang="tr">DOS/Windows çalıştırılabilir</comment>
- <comment xml:lang="uk">виконуваний файл DOS/Windows</comment>
- <comment xml:lang="vi">Tập tin có thực hiện được DOS/Windows</comment>
- <comment xml:lang="zh_CN">DOS/Windows 可执行文件</comment>
- <comment xml:lang="zh_TW">DOS/Windows 可執行檔</comment>
+ <mime-type type="application/x-msdownload">
+ <comment>Windows or DOS program</comment>
+ <acronym>DOS</acronym>
+ <expanded-acronym>Disk Operating System</expanded-acronym>
+ <sub-class-of type="application/x-executable"/>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="MZ" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="MZ" offset="0"/>
</magic>
<glob pattern="*.exe"/>
+ <glob pattern="*.dll"/>
+ <glob pattern="*.cpl"/>
+ <glob pattern="*.drv"/>
+ <glob pattern="*.scr"/>
+ <alias type="application/x-ms-dos-executable"/>
+ </mime-type>
+ <mime-type type="application/x-dosexec">
+ <comment>DOS executable</comment>
+ <acronym>DOS</acronym>
+ <expanded-acronym>Disk Operating System</expanded-acronym>
+ <sub-class-of type="application/x-msdownload"/>
+ <generic-icon name="application-x-executable"/>
+ <magic priority="60">
+ <match type="string" value="MZ" offset="0">
+ <match type="little16" mask="0xffc0" value="0" offset="24"/>
+ </match>
+ </magic>
+ <glob pattern="*.exe" weight="30"/>
+ </mime-type>
+ <mime-type type="application/x-ms-ne-executable">
+ <comment>16-bit Windows program</comment>
+ <sub-class-of type="application/x-msdownload"/>
+ <generic-icon name="application-x-executable"/>
+ <magic priority="70">
+ <match type="string" value="MZ" offset="0">
+ <match type="string" value="NE" offset="64:256"/>
+ </match>
+ </magic>
+ <glob pattern="*.exe" weight="20"/>
+ <glob pattern="*.dll" weight="20"/>
+ <glob pattern="*.cpl" weight="20"/>
+ <glob pattern="*.drv" weight="20"/>
+ <glob pattern="*.scr" weight="20"/>
+ </mime-type>
+ <mime-type type="application/vnd.microsoft.portable-executable">
+ <comment>Windows or EFI program</comment>
+ <acronym>EFI</acronym>
+ <expanded-acronym>Extensible Firmware Interface</expanded-acronym>
+ <sub-class-of type="application/x-msdownload"/>
+ <generic-icon name="application-x-executable"/>
+ <magic priority="80">
+ <match type="string" value="MZ" offset="0">
+ <match type="string" value="PE\0\0" offset="64:256"/>
+ </match>
+ </magic>
+ <glob pattern="*.exe" weight="40"/>
+ <glob pattern="*.dll" weight="40"/>
+ <glob pattern="*.cpl" weight="40"/>
+ <glob pattern="*.drv" weight="40"/>
+ <glob pattern="*.scr" weight="40"/>
+ <glob pattern="*.efi"/>
+ <glob pattern="*.ocx"/>
+ <glob pattern="*.sys"/>
+ <glob pattern="*.lib"/>
+ </mime-type>
+ <mime-type type="application/x-ms-pdb">
+ <comment>Windows program database</comment>
+ <comment xml:lang="uk">база даних програм Windows</comment>
+ <comment xml:lang="sv">Windows-programdatabas</comment>
+ <comment xml:lang="ru">База данных программ Windows</comment>
+ <comment xml:lang="pl">Baza danych programów Windows</comment>
+ <comment xml:lang="eu">Windows programen datu-basea</comment>
+ <comment xml:lang="es">base de datos de programa de Windows</comment>
+ <comment xml:lang="de">Windows-Programmdatenbank</comment>
+ <magic>
+ <match type="string" value="Microsoft C/C++ MSF 7.00\r\n\x1aDS" offset="0"/>
+ <match type="string" value="Microsoft C/C++ program database 2.00\r\n\x1aJG" offset="0"/>
+ </magic>
+ <glob pattern="*.pdb"/>
+ </mime-type>
+ <mime-type type="application/x-bat">
+ <comment>DOS/Windows batch file</comment>
+ <comment xml:lang="uk">пакетний файл DOS/Windows</comment>
+ <comment xml:lang="sv">DOS/Windows-batchfil</comment>
+ <comment xml:lang="ru">Пакетный файл DOS/Windows</comment>
+ <comment xml:lang="pl">Plik wsadowy DOS/Windows</comment>
+ <comment xml:lang="ja">DOS/Windowsバッチファイル</comment>
+ <comment xml:lang="it">File batch DOS/Windows</comment>
+ <comment xml:lang="gl">Ficheiro en lote DOS/Windows</comment>
+ <comment xml:lang="eu">DOS/Windows sortakako fitxategia</comment>
+ <comment xml:lang="es">archivo por lotes de DOS/Windows</comment>
+ <comment xml:lang="de">DOS/Windows Stapelverarbeitungsdatei</comment>
+ <comment xml:lang="be">выконвальны файл DOS/Windows</comment>
+ <sub-class-of type="text/plain"/>
+ <alias type="application/bat"/>
+ <generic-icon name="text-x-script"/>
+ <glob pattern="*.bat"/>
+ </mime-type>
+ <mime-type type="application/x-powershell">
+ <comment>PowerShell script</comment>
+ <comment xml:lang="uk">скрипт PowerShell</comment>
+ <comment xml:lang="sv">PowerShell-skript</comment>
+ <comment xml:lang="ru">Сценарий PowerShell</comment>
+ <comment xml:lang="pl">Skrypt PowerShell</comment>
+ <comment xml:lang="es">secuencia de órdenes de PowerShell</comment>
+ <comment xml:lang="de">PowerShell-Skript</comment>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-script"/>
+ <magic>
+ <match type="string" value="#Requires -PSEdition Core" offset="0"/>
+ <match type="string" value="#Requires -PSEdition Desktop" offset="0"/>
+ </magic>
+ <glob pattern="*.ps1"/>
+ </mime-type>
+ <mime-type type="application/x-ms-shortcut">
+ <comment>Windows shortcut</comment>
+ <comment xml:lang="uk">ярлик Windows</comment>
+ <comment xml:lang="sv">Windows-genväg</comment>
+ <comment xml:lang="ru">Ярлык Windows</comment>
+ <comment xml:lang="pl">Skrót Windows</comment>
+ <comment xml:lang="es">acceso directo de Windows</comment>
+ <comment xml:lang="de">Windows-Verweis</comment>
+ <generic-icon name="emblem-symbolic-link"/>
+ <magic>
+ <match type="string" value="\x4c\x00\x00\x00\x01\x14\x02\x00\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x00\x00\x46" offset="0"/>
+ </magic>
+ <glob pattern="*.lnk"/>
+ <alias type="application/x-win-lnk"/>
</mime-type>
<mime-type type="application/x-mswinurl">
<comment>Internet shortcut</comment>
- <comment xml:lang="ar">اختصار الإنترنت</comment>
- <comment xml:lang="be@latin">Sieciŭnaja spasyłka</comment>
- <comment xml:lang="bg">Адрес в Интернет</comment>
- <comment xml:lang="ca">drecera d'Internet</comment>
- <comment xml:lang="cs">odkaz do Internetu</comment>
- <comment xml:lang="da">Internetgenvej</comment>
- <comment xml:lang="de">Internet-Verweis</comment>
- <comment xml:lang="el">Συντόμευση διαδικτύου</comment>
- <comment xml:lang="en_GB">Internet shortcut</comment>
- <comment xml:lang="es">acceso directo a Internet</comment>
- <comment xml:lang="eu">Interneteko lasterbidea</comment>
- <comment xml:lang="fi">Internet-pikakuvake</comment>
- <comment xml:lang="fo">Alnetssnarvegur</comment>
- <comment xml:lang="fr">raccourci Internet</comment>
- <comment xml:lang="ga">aicearra Idirlín</comment>
- <comment xml:lang="gl">atallo de Internet</comment>
- <comment xml:lang="he">קיצור דרך של האינטרנט</comment>
- <comment xml:lang="hr">Internetski prečac</comment>
- <comment xml:lang="hu">Internetes indítóikon</comment>
- <comment xml:lang="ia">Ligamine Internet</comment>
- <comment xml:lang="id">Jalan pintas Internet</comment>
- <comment xml:lang="it">Scorciatoia Internet</comment>
- <comment xml:lang="ja">インターネットショートカット</comment>
- <comment xml:lang="kk">Интернет сілтемесі</comment>
- <comment xml:lang="ko">인터넷 바로 가기</comment>
- <comment xml:lang="lt">Interneto nuoroda</comment>
- <comment xml:lang="lv">Interneta īsceļš</comment>
- <comment xml:lang="nb">Internettsnarvei</comment>
- <comment xml:lang="nl">internetkoppeling</comment>
- <comment xml:lang="nn">Internett-snarveg</comment>
- <comment xml:lang="oc">acorchi Internet</comment>
- <comment xml:lang="pl">Skrót internetowy</comment>
- <comment xml:lang="pt">atalho da Internet</comment>
- <comment xml:lang="pt_BR">Atalho da Internet</comment>
- <comment xml:lang="ro">Scurtătură Internet</comment>
- <comment xml:lang="ru">Интернет-ссылка</comment>
- <comment xml:lang="sk">Internetový odkaz</comment>
- <comment xml:lang="sl">Internetna bližnjica</comment>
- <comment xml:lang="sq">Shkurtim internet</comment>
- <comment xml:lang="sr">интернет пречица</comment>
- <comment xml:lang="sv">Internetgenväg</comment>
- <comment xml:lang="tr">İnternet kısayolu</comment>
- <comment xml:lang="uk">інтернет-посилання</comment>
- <comment xml:lang="vi">Lối tắt Internet</comment>
- <comment xml:lang="zh_CN">Internet 快捷方式</comment>
<comment xml:lang="zh_TW">網際網路捷徑</comment>
- <magic priority="50">
- <match value="InternetShortcut" type="string" offset="1"/>
- <match value="DEFAULT" type="string" offset="1">
- <match value="BASEURL=" type="string" offset="11"/>
+ <comment xml:lang="zh_CN">Internet 快捷方式</comment>
+ <comment xml:lang="vi">Lối tắt Internet</comment>
+ <comment xml:lang="uk">інтернет-посилання</comment>
+ <comment xml:lang="tr">İnternet kısayolu</comment>
+ <comment xml:lang="sv">Internetgenväg</comment>
+ <comment xml:lang="sr">интернет пречица</comment>
+ <comment xml:lang="sq">shkurtore Internet</comment>
+ <comment xml:lang="sl">Internetna bližnjica</comment>
+ <comment xml:lang="si">අන්තර්ජාල කෙටි මග</comment>
+ <comment xml:lang="sk">Internetový odkaz</comment>
+ <comment xml:lang="ru">Интернет-ссылка</comment>
+ <comment xml:lang="ro">Scurtătură Internet</comment>
+ <comment xml:lang="pt_BR">Atalho da Internet</comment>
+ <comment xml:lang="pt">atalho da Internet</comment>
+ <comment xml:lang="pl">Skrót internetowy</comment>
+ <comment xml:lang="oc">acorchi Internet</comment>
+ <comment xml:lang="nn">Internett-snarveg</comment>
+ <comment xml:lang="nl">internetkoppeling</comment>
+ <comment xml:lang="nb">Internettsnarvei</comment>
+ <comment xml:lang="lv">Interneta īsceļš</comment>
+ <comment xml:lang="lt">Interneto nuoroda</comment>
+ <comment xml:lang="ko">인터넷 바로 가기</comment>
+ <comment xml:lang="kk">Интернет сілтемесі</comment>
+ <comment xml:lang="ja">インターネットショートカット</comment>
+ <comment xml:lang="it">Scorciatoia Internet</comment>
+ <comment xml:lang="is">Internet-flýtileið</comment>
+ <comment xml:lang="id">Jalan pintas Internet</comment>
+ <comment xml:lang="ia">Ligamine Internet</comment>
+ <comment xml:lang="hu">Internetes indítóikon</comment>
+ <comment xml:lang="hr">Internetski prečac</comment>
+ <comment xml:lang="he">קיצור דרך של האינטרנט</comment>
+ <comment xml:lang="gl">atallo de Internet</comment>
+ <comment xml:lang="ga">aicearra Idirlín</comment>
+ <comment xml:lang="fur">scurte di internet</comment>
+ <comment xml:lang="fr">raccourci Internet</comment>
+ <comment xml:lang="fo">Alnetssnarvegur</comment>
+ <comment xml:lang="fi">Internet-pikakuvake</comment>
+ <comment xml:lang="eu">Interneteko lasterbidea</comment>
+ <comment xml:lang="es">acceso directo a Internet</comment>
+ <comment xml:lang="en_GB">Internet shortcut</comment>
+ <comment xml:lang="el">Συντόμευση διαδικτύου</comment>
+ <comment xml:lang="de">Internet-Verweis</comment>
+ <comment xml:lang="da">Internetgenvej</comment>
+ <comment xml:lang="cs">odkaz do Internetu</comment>
+ <comment xml:lang="ca">drecera d'Internet</comment>
+ <comment xml:lang="bg">Адрес в Интернет</comment>
+ <comment xml:lang="be@latin">Sieciŭnaja spasyłka</comment>
+ <comment xml:lang="be">ярлык інтэрнэту</comment>
+ <comment xml:lang="ar">اختصار إنترنت</comment>
+ <comment xml:lang="af">Internet-kortpad</comment>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="emblem-symbolic-link"/>
+ <magic>
+ <match type="string" value="InternetShortcut" offset="1"/>
+ <match type="string" value="DEFAULT" offset="1">
+ <match type="string" value="BASEURL=" offset="11"/>
</match>
</magic>
<glob pattern="*.url"/>
</mime-type>
<mime-type type="application/x-mswrite">
<comment>WRI document</comment>
- <comment xml:lang="ar">مستند WRI</comment>
- <comment xml:lang="ast">Documentu WRI</comment>
- <comment xml:lang="be@latin">Dakument WRI</comment>
- <comment xml:lang="bg">Документ — WRI</comment>
- <comment xml:lang="ca">document WRI</comment>
- <comment xml:lang="cs">dokument WRI</comment>
- <comment xml:lang="da">WRI-dokument</comment>
- <comment xml:lang="de">WRI-Dokument</comment>
- <comment xml:lang="el">Έγγραφο WRI</comment>
- <comment xml:lang="en_GB">WRI document</comment>
- <comment xml:lang="eo">WRI-dokumento</comment>
- <comment xml:lang="es">documento WRI</comment>
- <comment xml:lang="eu">WRI dokumentua</comment>
- <comment xml:lang="fi">WRI-asiakirja</comment>
- <comment xml:lang="fo">WRI skjal</comment>
- <comment xml:lang="fr">document WRI</comment>
- <comment xml:lang="ga">cáipéis WRI</comment>
- <comment xml:lang="gl">documento WRI</comment>
- <comment xml:lang="he">מסמך WRI</comment>
- <comment xml:lang="hr">WRI dokument</comment>
- <comment xml:lang="hu">WRI dokumentum</comment>
- <comment xml:lang="ia">Documento WRI</comment>
- <comment xml:lang="id">Dokumen WRI</comment>
- <comment xml:lang="it">Documento WRI</comment>
- <comment xml:lang="ja">WRI ドキュメント</comment>
- <comment xml:lang="kk">WRI құжаты</comment>
- <comment xml:lang="ko">WRI 문서</comment>
- <comment xml:lang="lt">WRI dokumentas</comment>
- <comment xml:lang="lv">WRI dokuments</comment>
- <comment xml:lang="nb">WRI-dokument</comment>
- <comment xml:lang="nl">WRI-document</comment>
- <comment xml:lang="nn">WRI-dokument</comment>
- <comment xml:lang="oc">document WRI</comment>
- <comment xml:lang="pl">Dokument WRI</comment>
- <comment xml:lang="pt">documento WRI</comment>
- <comment xml:lang="pt_BR">Documento WRI</comment>
- <comment xml:lang="ro">Document WRI</comment>
- <comment xml:lang="ru">Документ WRI</comment>
- <comment xml:lang="sk">Dokument WRI</comment>
- <comment xml:lang="sl">Dokument WRI</comment>
- <comment xml:lang="sq">Dokument WRI</comment>
- <comment xml:lang="sr">ВРИ документ</comment>
- <comment xml:lang="sv">WRI-dokument</comment>
- <comment xml:lang="tr">WRI belgesi</comment>
- <comment xml:lang="uk">документ WRI</comment>
- <comment xml:lang="vi">Tài liệu WRI</comment>
- <comment xml:lang="zh_CN">WRI 文档</comment>
<comment xml:lang="zh_TW">WRI 文件</comment>
+ <comment xml:lang="zh_CN">WRI 文档</comment>
+ <comment xml:lang="vi">Tài liệu WRI</comment>
+ <comment xml:lang="uk">документ WRI</comment>
+ <comment xml:lang="tr">WRI belgesi</comment>
+ <comment xml:lang="sv">WRI-dokument</comment>
+ <comment xml:lang="sr">ВРИ документ</comment>
+ <comment xml:lang="sq">dokument WRI</comment>
+ <comment xml:lang="sl">Dokument WRI</comment>
+ <comment xml:lang="si">WRI ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument WRI</comment>
+ <comment xml:lang="ru">Документ WRI</comment>
+ <comment xml:lang="ro">Document WRI</comment>
+ <comment xml:lang="pt_BR">Documento WRI</comment>
+ <comment xml:lang="pt">documento WRI</comment>
+ <comment xml:lang="pl">Dokument WRI</comment>
+ <comment xml:lang="oc">document WRI</comment>
+ <comment xml:lang="nn">WRI-dokument</comment>
+ <comment xml:lang="nl">WRI-document</comment>
+ <comment xml:lang="nb">WRI-dokument</comment>
+ <comment xml:lang="lv">WRI dokuments</comment>
+ <comment xml:lang="lt">WRI dokumentas</comment>
+ <comment xml:lang="ko">WRI 문서</comment>
+ <comment xml:lang="kk">WRI құжаты</comment>
+ <comment xml:lang="ja">WRI ドキュメント</comment>
+ <comment xml:lang="it">Documento WRI</comment>
+ <comment xml:lang="is">WRI skjal</comment>
+ <comment xml:lang="id">Dokumen WRI</comment>
+ <comment xml:lang="ia">Documento WRI</comment>
+ <comment xml:lang="hu">WRI dokumentum</comment>
+ <comment xml:lang="hr">WRI dokument</comment>
+ <comment xml:lang="he">מסמך WRI</comment>
+ <comment xml:lang="gl">documento WRI</comment>
+ <comment xml:lang="ga">cáipéis WRI</comment>
+ <comment xml:lang="fur">document WRI</comment>
+ <comment xml:lang="fr">document WRI</comment>
+ <comment xml:lang="fo">WRI skjal</comment>
+ <comment xml:lang="fi">WRI-asiakirja</comment>
+ <comment xml:lang="eu">WRI dokumentua</comment>
+ <comment xml:lang="es">documento WRI</comment>
+ <comment xml:lang="eo">WRI-dokumento</comment>
+ <comment xml:lang="en_GB">WRI document</comment>
+ <comment xml:lang="el">Έγγραφο WRI</comment>
+ <comment xml:lang="de">WRI-Dokument</comment>
+ <comment xml:lang="da">WRI-dokument</comment>
+ <comment xml:lang="cs">dokument WRI</comment>
+ <comment xml:lang="ca">document WRI</comment>
+ <comment xml:lang="bg">Документ — WRI</comment>
+ <comment xml:lang="be@latin">Dakument WRI</comment>
+ <comment xml:lang="be">дакумент WRI</comment>
+ <comment xml:lang="ast">Documentu WRI</comment>
+ <comment xml:lang="ar">مستند WRI</comment>
+ <comment xml:lang="af">WRI-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.wri"/>
</mime-type>
<mime-type type="application/x-msx-rom">
<comment>MSX ROM</comment>
- <comment xml:lang="ar">MSX ROM</comment>
- <comment xml:lang="be@latin">MSX ROM</comment>
- <comment xml:lang="bg">ROM — MSX</comment>
- <comment xml:lang="ca">ROM de MSX</comment>
- <comment xml:lang="cs">ROM pro MSX</comment>
- <comment xml:lang="cy">ROM MSX</comment>
- <comment xml:lang="da">MSX-rom</comment>
- <comment xml:lang="de">MSX ROM</comment>
- <comment xml:lang="el">MSX ROM</comment>
- <comment xml:lang="en_GB">MSX ROM</comment>
- <comment xml:lang="eo">MSX-NLM</comment>
- <comment xml:lang="es">ROM de MSX</comment>
- <comment xml:lang="eu">MSX-ko ROMa</comment>
- <comment xml:lang="fi">MSX-ROM</comment>
- <comment xml:lang="fo">MSX ROM</comment>
- <comment xml:lang="fr">ROM MSX</comment>
- <comment xml:lang="ga">ROM MSX</comment>
- <comment xml:lang="gl">ROM de MSX</comment>
- <comment xml:lang="he">MSX ROM</comment>
- <comment xml:lang="hr">MSX ROM</comment>
- <comment xml:lang="hu">MSX ROM</comment>
- <comment xml:lang="ia">ROM pro MSX</comment>
- <comment xml:lang="id">Memori baca-saja MSX</comment>
- <comment xml:lang="it">ROM MSX</comment>
- <comment xml:lang="ja">MSX ROM</comment>
- <comment xml:lang="ka">MSX-ის ROM</comment>
- <comment xml:lang="kk">MSX ROM</comment>
- <comment xml:lang="ko">MSX 롬</comment>
- <comment xml:lang="lt">MSX ROM</comment>
- <comment xml:lang="lv">MSX ROM</comment>
- <comment xml:lang="ms">ROM MSX</comment>
- <comment xml:lang="nb">MSX-ROM</comment>
- <comment xml:lang="nl">MSX-ROM</comment>
- <comment xml:lang="nn">MSX-ROM</comment>
- <comment xml:lang="oc">ROM MSX</comment>
- <comment xml:lang="pl">Plik ROM konsoli MSX</comment>
- <comment xml:lang="pt">ROM MSX</comment>
- <comment xml:lang="pt_BR">ROM de MSX</comment>
- <comment xml:lang="ro">ROM MSX</comment>
- <comment xml:lang="ru">MSX ROM</comment>
- <comment xml:lang="sk">ROM pre MSX</comment>
- <comment xml:lang="sl">Bralni pomnilnik MSX</comment>
- <comment xml:lang="sq">ROM MSX</comment>
- <comment xml:lang="sr">МСИкс РОМ</comment>
- <comment xml:lang="sv">MSX-rom</comment>
- <comment xml:lang="tr">MSX ROM</comment>
- <comment xml:lang="uk">ППП MSX</comment>
- <comment xml:lang="vi">ROM MSX</comment>
- <comment xml:lang="zh_CN">MSX ROM</comment>
<comment xml:lang="zh_TW">MSX ROM</comment>
+ <comment xml:lang="zh_CN">MSX ROM</comment>
+ <comment xml:lang="vi">ROM MSX</comment>
+ <comment xml:lang="uk">ППП MSX</comment>
+ <comment xml:lang="tr">MSX ROM</comment>
+ <comment xml:lang="sv">MSX-rom</comment>
+ <comment xml:lang="sr">МСИкс РОМ</comment>
+ <comment xml:lang="sq">ROM MSX</comment>
+ <comment xml:lang="sl">Bralni pomnilnik MSX</comment>
+ <comment xml:lang="si">MSX ROM</comment>
+ <comment xml:lang="sk">ROM pre MSX</comment>
+ <comment xml:lang="ru">MSX ROM</comment>
+ <comment xml:lang="ro">ROM MSX</comment>
+ <comment xml:lang="pt_BR">ROM de MSX</comment>
+ <comment xml:lang="pt">ROM MSX</comment>
+ <comment xml:lang="pl">Plik ROM konsoli MSX</comment>
+ <comment xml:lang="oc">ROM MSX</comment>
+ <comment xml:lang="nn">MSX-ROM</comment>
+ <comment xml:lang="nl">MSX-ROM</comment>
+ <comment xml:lang="nb">MSX-ROM</comment>
+ <comment xml:lang="ms">ROM MSX</comment>
+ <comment xml:lang="lv">MSX ROM</comment>
+ <comment xml:lang="lt">MSX ROM</comment>
+ <comment xml:lang="ko">MSX 롬</comment>
+ <comment xml:lang="kk">MSX ROM</comment>
+ <comment xml:lang="ka">MSX-ის ROM</comment>
+ <comment xml:lang="ja">MSX ROM</comment>
+ <comment xml:lang="it">ROM MSX</comment>
+ <comment xml:lang="is">MSX ROM</comment>
+ <comment xml:lang="id">Memori baca-saja MSX</comment>
+ <comment xml:lang="ia">ROM pro MSX</comment>
+ <comment xml:lang="hu">MSX ROM</comment>
+ <comment xml:lang="hr">MSX ROM</comment>
+ <comment xml:lang="he">MSX ROM</comment>
+ <comment xml:lang="gl">ROM de MSX</comment>
+ <comment xml:lang="ga">ROM MSX</comment>
+ <comment xml:lang="fur">ROM MSX</comment>
+ <comment xml:lang="fr">ROM MSX</comment>
+ <comment xml:lang="fo">MSX ROM</comment>
+ <comment xml:lang="fi">MSX-ROM</comment>
+ <comment xml:lang="eu">MSX-ko ROMa</comment>
+ <comment xml:lang="es">ROM de MSX</comment>
+ <comment xml:lang="eo">MSX-NLM</comment>
+ <comment xml:lang="en_GB">MSX ROM</comment>
+ <comment xml:lang="el">MSX ROM</comment>
+ <comment xml:lang="de">MSX-ROM</comment>
+ <comment xml:lang="da">MSX-ROM</comment>
+ <comment xml:lang="cy">ROM MSX</comment>
+ <comment xml:lang="cs">ROM pro MSX</comment>
+ <comment xml:lang="ca">ROM de MSX</comment>
+ <comment xml:lang="bg">ROM — MSX</comment>
+ <comment xml:lang="be@latin">MSX ROM</comment>
+ <comment xml:lang="be">MSX ROM</comment>
+ <comment xml:lang="ar">روم MSX</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.msx"/>
</mime-type>
<mime-type type="application/x-m4">
<comment>M4 macro</comment>
- <comment xml:lang="ar">M4 macro</comment>
- <comment xml:lang="be@latin">Makras M4</comment>
- <comment xml:lang="bg">Макроси — M4</comment>
- <comment xml:lang="ca">macro M4</comment>
- <comment xml:lang="cs">makro M4</comment>
- <comment xml:lang="da">M4-makro</comment>
- <comment xml:lang="de">M4-Makro</comment>
- <comment xml:lang="el">Μακροεντολή m4</comment>
- <comment xml:lang="en_GB">M4 macro</comment>
- <comment xml:lang="es">macro M4</comment>
- <comment xml:lang="eu">M4 makroa</comment>
- <comment xml:lang="fi">M4-makro</comment>
- <comment xml:lang="fo">M4 fjølvi</comment>
- <comment xml:lang="fr">macro M4</comment>
- <comment xml:lang="ga">macra M4</comment>
- <comment xml:lang="gl">macro M4</comment>
- <comment xml:lang="he">מאקרו M4</comment>
- <comment xml:lang="hr">M4 makro</comment>
- <comment xml:lang="hu">M4 makró</comment>
- <comment xml:lang="ia">Macro M4</comment>
- <comment xml:lang="id">Makro M4</comment>
- <comment xml:lang="it">Macro M4</comment>
- <comment xml:lang="ja">M4 マクロ</comment>
- <comment xml:lang="kk">M4 макросы</comment>
- <comment xml:lang="ko">M4 매크로</comment>
- <comment xml:lang="lt">M4 macro</comment>
- <comment xml:lang="lv">M4 makross</comment>
- <comment xml:lang="nb">M4-makro</comment>
- <comment xml:lang="nl">M4-macro</comment>
- <comment xml:lang="nn">M4-makro</comment>
- <comment xml:lang="oc">macro M4</comment>
- <comment xml:lang="pl">Makro M4</comment>
- <comment xml:lang="pt">macro M4</comment>
- <comment xml:lang="pt_BR">Macro M4</comment>
- <comment xml:lang="ro">Macro M4</comment>
- <comment xml:lang="ru">Макрос M4</comment>
- <comment xml:lang="sk">Makro M4</comment>
- <comment xml:lang="sl">Makro datoteka M4</comment>
- <comment xml:lang="sq">Macro M4</comment>
- <comment xml:lang="sr">М4 макро</comment>
- <comment xml:lang="sv">M4-makro</comment>
- <comment xml:lang="tr">M4 makrosu</comment>
- <comment xml:lang="uk">макрос M4</comment>
- <comment xml:lang="vi">Vĩ lệnh M4</comment>
- <comment xml:lang="zh_CN">M4 宏</comment>
<comment xml:lang="zh_TW">M4 巨集</comment>
+ <comment xml:lang="zh_CN">M4 宏</comment>
+ <comment xml:lang="vi">Vĩ lệnh M4</comment>
+ <comment xml:lang="uk">макрос M4</comment>
+ <comment xml:lang="tr">M4 makrosu</comment>
+ <comment xml:lang="sv">M4-makro</comment>
+ <comment xml:lang="sr">М4 макро</comment>
+ <comment xml:lang="sq">Macro M4</comment>
+ <comment xml:lang="sl">Makro datoteka M4</comment>
+ <comment xml:lang="si">M4 මැක්රෝ</comment>
+ <comment xml:lang="sk">Makro M4</comment>
+ <comment xml:lang="ru">Макрос M4</comment>
+ <comment xml:lang="ro">Macro M4</comment>
+ <comment xml:lang="pt_BR">Macro M4</comment>
+ <comment xml:lang="pt">macro M4</comment>
+ <comment xml:lang="pl">Makro M4</comment>
+ <comment xml:lang="oc">macro M4</comment>
+ <comment xml:lang="nn">M4-makro</comment>
+ <comment xml:lang="nl">M4-macro</comment>
+ <comment xml:lang="nb">M4-makro</comment>
+ <comment xml:lang="lv">M4 makross</comment>
+ <comment xml:lang="lt">M4 macro</comment>
+ <comment xml:lang="ko">M4 매크로</comment>
+ <comment xml:lang="kk">M4 макросы</comment>
+ <comment xml:lang="ja">M4 マクロ</comment>
+ <comment xml:lang="it">Macro M4</comment>
+ <comment xml:lang="is">M4 fjölvi</comment>
+ <comment xml:lang="id">Makro M4</comment>
+ <comment xml:lang="ia">Macro M4</comment>
+ <comment xml:lang="hu">M4 makró</comment>
+ <comment xml:lang="hr">M4 makro</comment>
+ <comment xml:lang="he">מאקרו M4</comment>
+ <comment xml:lang="gl">macro M4</comment>
+ <comment xml:lang="ga">macra M4</comment>
+ <comment xml:lang="fur">macro M4</comment>
+ <comment xml:lang="fr">macro M4</comment>
+ <comment xml:lang="fo">M4 fjølvi</comment>
+ <comment xml:lang="fi">M4-makro</comment>
+ <comment xml:lang="eu">M4 makroa</comment>
+ <comment xml:lang="es">macro M4</comment>
+ <comment xml:lang="en_GB">M4 macro</comment>
+ <comment xml:lang="el">Μακροεντολή m4</comment>
+ <comment xml:lang="de">M4-Makro</comment>
+ <comment xml:lang="da">M4-makro</comment>
+ <comment xml:lang="cs">makro M4</comment>
+ <comment xml:lang="ca">macro M4</comment>
+ <comment xml:lang="bg">Макроси — M4</comment>
+ <comment xml:lang="be@latin">Makras M4</comment>
+ <comment xml:lang="be">макрас M4</comment>
+ <comment xml:lang="ar">ماكرو M4</comment>
+ <comment xml:lang="af">M4-makro</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.m4"/>
</mime-type>
<mime-type type="application/x-n64-rom">
<comment>Nintendo64 ROM</comment>
- <comment xml:lang="ar">Nintendo64 ROM</comment>
- <comment xml:lang="be@latin">Nintendo64 ROM</comment>
- <comment xml:lang="bg">ROM — Nintendo64</comment>
- <comment xml:lang="ca">ROM de Nintendo64</comment>
- <comment xml:lang="cs">ROM pro Nintendo64</comment>
- <comment xml:lang="da">Nintendo64-rom</comment>
- <comment xml:lang="de">Nintendo64 ROM</comment>
- <comment xml:lang="el">Nintendo64 ROM</comment>
- <comment xml:lang="en_GB">Nintendo64 ROM</comment>
- <comment xml:lang="eo">Nintendo64-NLM</comment>
- <comment xml:lang="es">ROM de Nintendo64</comment>
- <comment xml:lang="eu">Nintendo64-ko ROMa</comment>
- <comment xml:lang="fi">Nintendo64-ROM</comment>
- <comment xml:lang="fo">Nintendo64 ROM</comment>
- <comment xml:lang="fr">ROM Nintendo64</comment>
- <comment xml:lang="ga">ROM Nintendo64</comment>
- <comment xml:lang="gl">ROM de Nintendo64</comment>
- <comment xml:lang="he">ROM של Nintendo64</comment>
- <comment xml:lang="hr">Nintendo64 ROM</comment>
- <comment xml:lang="hu">Nintendo64 ROM</comment>
- <comment xml:lang="ia">ROM pro Nintendo64</comment>
- <comment xml:lang="id">Memori baca-saja Nintendo64</comment>
- <comment xml:lang="it">ROM Nintendo64</comment>
- <comment xml:lang="ja">Nintendo64 ROM</comment>
- <comment xml:lang="kk">Nintendo64 ROM</comment>
- <comment xml:lang="ko">닌텐도 64 롬</comment>
- <comment xml:lang="lt">Nintendo64 ROM</comment>
- <comment xml:lang="lv">Nintendo64 ROM</comment>
- <comment xml:lang="ms">ROM Nintendo64</comment>
- <comment xml:lang="nb">Nintendo64-ROM</comment>
- <comment xml:lang="nl">Nintendo64-ROM</comment>
- <comment xml:lang="nn">Nintendo64-ROM</comment>
- <comment xml:lang="oc">ROM Nintendo64</comment>
- <comment xml:lang="pl">Plik ROM konsoli Nintendo64</comment>
- <comment xml:lang="pt">ROM Nintendo64</comment>
- <comment xml:lang="pt_BR">ROM de Nintendo64</comment>
- <comment xml:lang="ro">ROM Nintendo64</comment>
- <comment xml:lang="ru">Nintendo64 ROM</comment>
- <comment xml:lang="sk">ROM pre Nintendo64</comment>
- <comment xml:lang="sl">Bralni pomnilnik Nintendo64</comment>
- <comment xml:lang="sq">ROM Nintendo64</comment>
- <comment xml:lang="sr">Нинтендо64 РОМ</comment>
- <comment xml:lang="sv">Nintendo64-rom</comment>
- <comment xml:lang="tr">Nintendo64 ROM</comment>
- <comment xml:lang="uk">ППП Nintendo64</comment>
- <comment xml:lang="vi">ROM Nintendo64</comment>
- <comment xml:lang="zh_CN">任天堂 64 ROM</comment>
<comment xml:lang="zh_TW">Nintendo64 ROM</comment>
+ <comment xml:lang="zh_CN">任天堂 64 ROM</comment>
+ <comment xml:lang="vi">ROM Nintendo64</comment>
+ <comment xml:lang="uk">ППП Nintendo64</comment>
+ <comment xml:lang="tr">Nintendo64 ROM</comment>
+ <comment xml:lang="sv">Nintendo64-rom</comment>
+ <comment xml:lang="sr">Нинтендо64 РОМ</comment>
+ <comment xml:lang="sq">ROM Nintendo64</comment>
+ <comment xml:lang="sl">Bralni pomnilnik Nintendo64</comment>
+ <comment xml:lang="si">Nintendo64 ROM</comment>
+ <comment xml:lang="sk">ROM pre Nintendo64</comment>
+ <comment xml:lang="ru">Nintendo64 ROM</comment>
+ <comment xml:lang="ro">ROM Nintendo64</comment>
+ <comment xml:lang="pt_BR">ROM de Nintendo64</comment>
+ <comment xml:lang="pt">ROM Nintendo64</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Nintendo64</comment>
+ <comment xml:lang="oc">ROM Nintendo64</comment>
+ <comment xml:lang="nn">Nintendo64-ROM</comment>
+ <comment xml:lang="nl">Nintendo64-ROM</comment>
+ <comment xml:lang="nb">Nintendo64-ROM</comment>
+ <comment xml:lang="ms">ROM Nintendo64</comment>
+ <comment xml:lang="lv">Nintendo64 ROM</comment>
+ <comment xml:lang="lt">Nintendo64 ROM</comment>
+ <comment xml:lang="ko">닌텐도 64 롬</comment>
+ <comment xml:lang="kk">Nintendo64 ROM</comment>
+ <comment xml:lang="ja">Nintendo64 ROM</comment>
+ <comment xml:lang="it">ROM Nintendo64</comment>
+ <comment xml:lang="is">Nintendo64 ROM</comment>
+ <comment xml:lang="id">Memori baca-saja Nintendo64</comment>
+ <comment xml:lang="ia">ROM pro Nintendo64</comment>
+ <comment xml:lang="hu">Nintendo64 ROM</comment>
+ <comment xml:lang="hr">Nintendo64 ROM</comment>
+ <comment xml:lang="he">ROM של Nintendo64</comment>
+ <comment xml:lang="gl">ROM de Nintendo64</comment>
+ <comment xml:lang="ga">ROM Nintendo64</comment>
+ <comment xml:lang="fur">ROM Nintendo64</comment>
+ <comment xml:lang="fr">ROM Nintendo64</comment>
+ <comment xml:lang="fo">Nintendo64 ROM</comment>
+ <comment xml:lang="fi">Nintendo64-ROM</comment>
+ <comment xml:lang="eu">Nintendo64-ko ROMa</comment>
+ <comment xml:lang="es">ROM de Nintendo64</comment>
+ <comment xml:lang="eo">Nintendo64-NLM</comment>
+ <comment xml:lang="en_GB">Nintendo64 ROM</comment>
+ <comment xml:lang="el">Nintendo64 ROM</comment>
+ <comment xml:lang="de">Nintendo64-ROM</comment>
+ <comment xml:lang="da">Nintendo64-ROM</comment>
+ <comment xml:lang="cs">ROM pro Nintendo64</comment>
+ <comment xml:lang="ca">ROM de Nintendo64</comment>
+ <comment xml:lang="bg">ROM — Nintendo64</comment>
+ <comment xml:lang="be@latin">Nintendo64 ROM</comment>
+ <comment xml:lang="be">Nintendo64 ROM</comment>
+ <comment xml:lang="ar">روم Nintendo64</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.n64"/>
<glob pattern="*.z64"/>
<glob pattern="*.v64"/>
<magic>
-
- <match value="0x80371240" type="big32" offset="0"/>
-
- <match value="0x37804012" type="big32" offset="0"/>
-
- <match value="0x40123780" type="big32" offset="0"/>
+ <!-- native *.z64 -->
+ <match type="big32" offset="0" value="0x80371240"/>
+ <!-- byteswapped [BADC] *.v64 -->
+ <match type="big32" offset="0" value="0x37804012"/>
+ <!-- wordswapped [DCBA] *.n64 -->
+ <match type="big32" offset="0" value="0x40123780"/>
</magic>
</mime-type>
<mime-type type="application/x-nautilus-link">
<comment>Nautilus link</comment>
- <comment xml:lang="ar">وصلة Nautilus</comment>
- <comment xml:lang="az">Nautilus körpüsü</comment>
- <comment xml:lang="be@latin">Spasyłka Nautilus</comment>
- <comment xml:lang="bg">Връзка — Nautilus</comment>
- <comment xml:lang="ca">enllaç de Nautilus</comment>
- <comment xml:lang="cs">odkaz Nautilus</comment>
- <comment xml:lang="cy">Cyswllt Nautilus</comment>
- <comment xml:lang="da">Nautilus-henvisning</comment>
- <comment xml:lang="de">Nautilus-Verknüpfung</comment>
- <comment xml:lang="el">Σύνδεσμος Nautilus</comment>
- <comment xml:lang="en_GB">Nautilus link</comment>
- <comment xml:lang="eo">Nautilus-ligilo</comment>
- <comment xml:lang="es">enlace de Nautilus</comment>
- <comment xml:lang="eu">Nautilus esteka</comment>
- <comment xml:lang="fi">Nautilus-linkki</comment>
- <comment xml:lang="fo">Nautilus leinkja</comment>
- <comment xml:lang="fr">lien Nautilus</comment>
- <comment xml:lang="ga">nasc Nautilus</comment>
- <comment xml:lang="gl">ligazón de nautilus</comment>
- <comment xml:lang="he">קישור של Nautilus</comment>
- <comment xml:lang="hr">Nautilusova poveznica</comment>
- <comment xml:lang="hu">Nautilus-link</comment>
- <comment xml:lang="ia">Ligamine Nautilus</comment>
- <comment xml:lang="id">Taut Nautilus</comment>
- <comment xml:lang="it">Collegamento Nautilus</comment>
- <comment xml:lang="ja">Nautilus リンク</comment>
- <comment xml:lang="kk">Nautilus сілтемесі</comment>
- <comment xml:lang="ko">노틸러스 바로 가기</comment>
- <comment xml:lang="lt">Nautilus nuoroda</comment>
- <comment xml:lang="lv">Nautilus saite</comment>
- <comment xml:lang="ms">Pautan Nautilus</comment>
- <comment xml:lang="nb">Nautilus-lenke</comment>
- <comment xml:lang="nl">Nautilus-verwijzing</comment>
- <comment xml:lang="nn">Nautilus-lenke</comment>
- <comment xml:lang="oc">ligam Nautilus</comment>
- <comment xml:lang="pl">Odnośnik Nautilus</comment>
- <comment xml:lang="pt">atalho Nautilus</comment>
- <comment xml:lang="pt_BR">Link do Nautilus</comment>
- <comment xml:lang="ro">Legătură Nautilus</comment>
- <comment xml:lang="ru">Ссылка Nautilus</comment>
- <comment xml:lang="sk">Odkaz Nautilus</comment>
- <comment xml:lang="sl">Datoteka povezave Nautilus</comment>
- <comment xml:lang="sq">Lidhje Nautilus</comment>
- <comment xml:lang="sr">Наутилусова веза</comment>
- <comment xml:lang="sv">Nautiluslänk</comment>
- <comment xml:lang="tr">Nautilus bağlantısı</comment>
- <comment xml:lang="uk">посилання Nautilus</comment>
- <comment xml:lang="vi">Liên kết Nautilus</comment>
+ <comment xml:lang="zh_TW">Nautilus 連結</comment>
<comment xml:lang="zh_CN">Nautilus 链接</comment>
- <comment xml:lang="zh_TW">Nautilus 鏈結</comment>
+ <comment xml:lang="vi">Liên kết Nautilus</comment>
+ <comment xml:lang="uk">посилання Nautilus</comment>
+ <comment xml:lang="tr">Nautilus bağlantısı</comment>
+ <comment xml:lang="sv">Nautiluslänk</comment>
+ <comment xml:lang="sr">Наутилусова веза</comment>
+ <comment xml:lang="sq">lidhje Nautilus</comment>
+ <comment xml:lang="sl">Datoteka povezave Nautilus</comment>
+ <comment xml:lang="si">Nautilus සබැඳිය</comment>
+ <comment xml:lang="sk">Odkaz Nautilus</comment>
+ <comment xml:lang="ru">Ссылка Nautilus</comment>
+ <comment xml:lang="ro">Legătură Nautilus</comment>
+ <comment xml:lang="pt_BR">Link do Nautilus</comment>
+ <comment xml:lang="pt">atalho Nautilus</comment>
+ <comment xml:lang="pl">Odnośnik Nautilus</comment>
+ <comment xml:lang="oc">ligam Nautilus</comment>
+ <comment xml:lang="nn">Nautilus-lenke</comment>
+ <comment xml:lang="nl">Nautilus-verwijzing</comment>
+ <comment xml:lang="nb">Nautilus-lenke</comment>
+ <comment xml:lang="ms">Pautan Nautilus</comment>
+ <comment xml:lang="lv">Nautilus saite</comment>
+ <comment xml:lang="lt">Nautilus nuoroda</comment>
+ <comment xml:lang="ko">노틸러스 바로 가기</comment>
+ <comment xml:lang="kk">Nautilus сілтемесі</comment>
+ <comment xml:lang="ja">Nautilus リンク</comment>
+ <comment xml:lang="it">Collegamento Nautilus</comment>
+ <comment xml:lang="is">Nautilus tengill</comment>
+ <comment xml:lang="id">Taut Nautilus</comment>
+ <comment xml:lang="ia">Ligamine Nautilus</comment>
+ <comment xml:lang="hu">Nautilus-link</comment>
+ <comment xml:lang="hr">Nautilusova poveznica</comment>
+ <comment xml:lang="he">קישור של Nautilus</comment>
+ <comment xml:lang="gl">ligazón de nautilus</comment>
+ <comment xml:lang="ga">nasc Nautilus</comment>
+ <comment xml:lang="fur">colegament Nautilus</comment>
+ <comment xml:lang="fr">lien Nautilus</comment>
+ <comment xml:lang="fo">Nautilus leinkja</comment>
+ <comment xml:lang="fi">Nautilus-linkki</comment>
+ <comment xml:lang="eu">Nautilus esteka</comment>
+ <comment xml:lang="es">enlace de Nautilus</comment>
+ <comment xml:lang="eo">Nautilus-ligilo</comment>
+ <comment xml:lang="en_GB">Nautilus link</comment>
+ <comment xml:lang="el">Σύνδεσμος Nautilus</comment>
+ <comment xml:lang="de">Nautilus-Verknüpfung</comment>
+ <comment xml:lang="da">Nautilus-henvisning</comment>
+ <comment xml:lang="cy">Cyswllt Nautilus</comment>
+ <comment xml:lang="cs">odkaz Nautilus</comment>
+ <comment xml:lang="ca">enllaç de Nautilus</comment>
+ <comment xml:lang="bg">Връзка — Nautilus</comment>
+ <comment xml:lang="be@latin">Spasyłka Nautilus</comment>
+ <comment xml:lang="be">спасылка Nautilus</comment>
+ <comment xml:lang="az">Nautilus körpüsü</comment>
+ <comment xml:lang="ar">وصلة Nautilus</comment>
+ <comment xml:lang="af">Nautilus-skakel</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="&lt;nautilus_object nautilus_link" type="string" offset="0:32"/>
+ <magic>
+ <match type="string" value="&lt;nautilus_object nautilus_link" offset="0:32"/>
</magic>
</mime-type>
<mime-type type="application/x-neo-geo-pocket-rom">
<comment>Neo-Geo Pocket ROM</comment>
- <comment xml:lang="ca">ROM de Neo-Geo Pocket</comment>
- <comment xml:lang="cs">ROM pro Neo-Geo Pocket</comment>
- <comment xml:lang="da">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="de">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="en_GB">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="es">ROM de Neo-Geo Pocket</comment>
- <comment xml:lang="eu">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="fi">Neo-Geo Pocket -ROM</comment>
- <comment xml:lang="fr">ROM Neo-Geo Pocket</comment>
- <comment xml:lang="ga">ROM Neo-Geo Pocket</comment>
- <comment xml:lang="hr">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="hu">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="id">ROM Neo-Geo Pocket</comment>
- <comment xml:lang="it">ROM Neo-Geo Pocket</comment>
- <comment xml:lang="kk">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="ko">네오지오 포켓 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Neo-Geo Pocket</comment>
- <comment xml:lang="pt_BR">ROM de Neo-Geo Pocket</comment>
- <comment xml:lang="ru">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="sk">ROM pre Neo-Geo Pocket</comment>
- <comment xml:lang="sr">Нео-Гео Покет РОМ</comment>
- <comment xml:lang="sv">Neo-Geo Pocket-rom</comment>
- <comment xml:lang="tr">Neo-Geo Pocket ROM</comment>
- <comment xml:lang="uk">ППП Neo-Geo Pocket</comment>
- <comment xml:lang="zh_CN">Neo-Geo Pocket ROM</comment>
<comment xml:lang="zh_TW">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="zh_CN">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="uk">ППП Neo-Geo Pocket</comment>
+ <comment xml:lang="tr">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="sv">Neo-Geo Pocket-rom</comment>
+ <comment xml:lang="sr">Нео-Гео Покет РОМ</comment>
+ <comment xml:lang="sq">ROM Neo-Geo Pocket</comment>
+ <comment xml:lang="sl">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="si">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="sk">ROM pre Neo-Geo Pocket</comment>
+ <comment xml:lang="ru">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Neo-Geo Pocket</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Neo-Geo Pocket</comment>
+ <comment xml:lang="nl">Neo-Geo Pocket-ROM</comment>
+ <comment xml:lang="ko">네오지오 포켓 롬</comment>
+ <comment xml:lang="kk">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="ja">ネオジオポケット ROM</comment>
+ <comment xml:lang="it">ROM Neo-Geo Pocket</comment>
+ <comment xml:lang="is">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="id">ROM Neo-Geo Pocket</comment>
+ <comment xml:lang="hu">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="hr">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="he">ROM מסוג Neo-Geo Pocket</comment>
+ <comment xml:lang="gl">ROM de Neo-Geo Pocket</comment>
+ <comment xml:lang="ga">ROM Neo-Geo Pocket</comment>
+ <comment xml:lang="fur">ROM Neo-Geo Pocket</comment>
+ <comment xml:lang="fr">ROM Neo-Geo Pocket</comment>
+ <comment xml:lang="fi">Neo-Geo Pocket -ROM</comment>
+ <comment xml:lang="eu">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="es">ROM de Neo-Geo Pocket</comment>
+ <comment xml:lang="en_GB">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="de">Neo-Geo-Pocket-ROM</comment>
+ <comment xml:lang="da">Neo-Geo Pocket-ROM</comment>
+ <comment xml:lang="cs">ROM pro Neo-Geo Pocket</comment>
+ <comment xml:lang="ca">ROM de Neo-Geo Pocket</comment>
+ <comment xml:lang="bg">ROM — Neo-Geo Pocket</comment>
+ <comment xml:lang="be">Neo-Geo Pocket ROM</comment>
+ <comment xml:lang="ar">روم Neo-Geo Pocket</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.ngp"/>
<magic>
- <match value="0x0" type="byte" offset="35">
- <match value="COPYRIGHT BY SNK CORPORATION" type="string" offset="0"/>
- <match value=" LICENSED BY SNK CORPORATION" type="string" offset="0"/>
+ <match offset="35" type="byte" value="0x0">
+ <match offset="0" type="string" value="COPYRIGHT BY SNK CORPORATION"/>
+ <match offset="0" type="string" value=" LICENSED BY SNK CORPORATION"/>
</match>
</magic>
</mime-type>
<mime-type type="application/x-neo-geo-pocket-color-rom">
<comment>Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="zh_TW">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="zh_CN">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="uk">ППП Neo-Geo Pocket Color</comment>
+ <comment xml:lang="tr">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="sv">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="sq">ROM Neo-Geo Pocket Color</comment>
+ <comment xml:lang="sl">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="si">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="sk">ROM pre Neo-Geo Pocket Color</comment>
+ <comment xml:lang="ru">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Neo-Geo Pocket Color</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Neo-Geo Pocket Color</comment>
+ <comment xml:lang="nl">Neo-Geo Pocket Color-ROM</comment>
+ <comment xml:lang="ko">네오지오 포켓 컬러 롬</comment>
+ <comment xml:lang="kk">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="ja">ネオジオポケットカラー ROM</comment>
+ <comment xml:lang="it">ROM Neo-Geo Pocket Color</comment>
+ <comment xml:lang="is">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="id">ROM Neo-Geo Pocket Color</comment>
+ <comment xml:lang="hu">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="hr">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="he">ROM של Neo-Geo Pocket</comment>
+ <comment xml:lang="gl">ROM de Neo-Geo Pocket Color</comment>
+ <comment xml:lang="ga">ROM datha Neo-Geo Pocket</comment>
+ <comment xml:lang="fur">ROM Neo-Geo Pocket Color</comment>
+ <comment xml:lang="fr">ROM Neo-Geo Pocket Color</comment>
+ <comment xml:lang="fi">Neo-Geo Pocket Color -ROM</comment>
+ <comment xml:lang="eu">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="es">ROM de Neo-Geo Pocket Color</comment>
+ <comment xml:lang="en_GB">Neo-Geo Pocket Colour ROM</comment>
+ <comment xml:lang="de">Neo-Geo-Pocket-Color-ROM</comment>
+ <comment xml:lang="da">Neo-Geo Pocket Color-ROM</comment>
+ <comment xml:lang="cs">ROM pro Neo-Geo Pocket Color</comment>
+ <comment xml:lang="ca">ROM de Neo-Geo Pocket Color</comment>
+ <comment xml:lang="bg">ROM — Neo-Geo Pocket Color</comment>
+ <comment xml:lang="be">Neo-Geo Pocket Color ROM</comment>
+ <comment xml:lang="ar">روم Neo-Geo Pocket Color</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.ngc"/>
<magic>
- <match value="0x10" type="byte" offset="35">
- <match value="COPYRIGHT BY SNK CORPORATION" type="string" offset="0"/>
- <match value=" LICENSED BY SNK CORPORATION" type="string" offset="0"/>
+ <match offset="35" type="byte" value="0x10">
+ <match offset="0" type="string" value="COPYRIGHT BY SNK CORPORATION"/>
+ <match offset="0" type="string" value=" LICENSED BY SNK CORPORATION"/>
</match>
</magic>
</mime-type>
<mime-type type="application/x-nes-rom">
-
+ <!-- Translate this to Famicom if the console was known as such in your locale -->
<comment>NES ROM</comment>
- <comment xml:lang="ar">NES ROM</comment>
- <comment xml:lang="be@latin">NES ROM</comment>
- <comment xml:lang="bg">ROM — NES</comment>
- <comment xml:lang="ca">ROM de NES</comment>
- <comment xml:lang="cs">ROM pro NES</comment>
- <comment xml:lang="cy">ROM NES</comment>
- <comment xml:lang="da">NES-rom</comment>
- <comment xml:lang="de">NES ROM</comment>
- <comment xml:lang="el">NES ROM</comment>
- <comment xml:lang="en_GB">NES ROM</comment>
- <comment xml:lang="eo">NES-NLM</comment>
- <comment xml:lang="es">ROM de NES</comment>
- <comment xml:lang="eu">NES-eko ROMa</comment>
- <comment xml:lang="fi">NES-ROM</comment>
- <comment xml:lang="fo">NES ROM</comment>
- <comment xml:lang="fr">ROM NES</comment>
- <comment xml:lang="ga">ROM NES</comment>
- <comment xml:lang="gl">ROM de NES</comment>
- <comment xml:lang="he">ROM של NES</comment>
- <comment xml:lang="hr">NES ROM</comment>
- <comment xml:lang="hu">NES ROM</comment>
- <comment xml:lang="ia">ROM pro NES</comment>
- <comment xml:lang="id">Memori baca-saja NES</comment>
- <comment xml:lang="it">ROM NES</comment>
- <comment xml:lang="ja">ファミコン ROM</comment>
- <comment xml:lang="kk">NES ROM</comment>
- <comment xml:lang="ko">NES 롬</comment>
- <comment xml:lang="lt">NES ROM</comment>
- <comment xml:lang="lv">NES ROM</comment>
- <comment xml:lang="ms">ROM NES</comment>
- <comment xml:lang="nb">NES ROM</comment>
- <comment xml:lang="nl">Nintendo</comment>
- <comment xml:lang="nn">NES-ROM</comment>
- <comment xml:lang="oc">ROM NES</comment>
- <comment xml:lang="pl">Plik ROM konsoli NES</comment>
- <comment xml:lang="pt">ROM NES</comment>
- <comment xml:lang="pt_BR">ROM de NES</comment>
- <comment xml:lang="ro">ROM NES</comment>
- <comment xml:lang="ru">NES ROM</comment>
- <comment xml:lang="sk">ROM pre NES</comment>
- <comment xml:lang="sl">Bralni pomnilnik NES</comment>
- <comment xml:lang="sq">ROM NES</comment>
- <comment xml:lang="sr">НЕС РОМ</comment>
- <comment xml:lang="sv">NES-rom</comment>
- <comment xml:lang="tr">NES ROM</comment>
- <comment xml:lang="uk">ППП NES</comment>
- <comment xml:lang="vi">ROM NES</comment>
+ <comment xml:lang="zh_TW">任天堂紅白機 ROM</comment>
<comment xml:lang="zh_CN">NES ROM</comment>
- <comment xml:lang="zh_TW">任天堂 ROM</comment>
+ <comment xml:lang="vi">ROM NES</comment>
+ <comment xml:lang="uk">ППП NES</comment>
+ <comment xml:lang="tr">NES ROM</comment>
+ <comment xml:lang="sv">NES-rom</comment>
+ <comment xml:lang="sr">НЕС РОМ</comment>
+ <comment xml:lang="sq">ROM NES</comment>
+ <comment xml:lang="sl">Bralni pomnilnik NES</comment>
+ <comment xml:lang="si">NES ROM</comment>
+ <comment xml:lang="sk">ROM pre NES</comment>
+ <comment xml:lang="ru">NES ROM</comment>
+ <comment xml:lang="ro">ROM NES</comment>
+ <comment xml:lang="pt_BR">ROM de NES</comment>
+ <comment xml:lang="pt">ROM NES</comment>
+ <comment xml:lang="pl">Plik ROM konsoli NES</comment>
+ <comment xml:lang="oc">ROM NES</comment>
+ <comment xml:lang="nn">NES-ROM</comment>
+ <comment xml:lang="nl">Super Nintendo-ROM</comment>
+ <comment xml:lang="nb">NES ROM</comment>
+ <comment xml:lang="ms">ROM NES</comment>
+ <comment xml:lang="lv">NES ROM</comment>
+ <comment xml:lang="lt">NES ROM</comment>
+ <comment xml:lang="ko">NES 롬</comment>
+ <comment xml:lang="kk">NES ROM</comment>
+ <comment xml:lang="ja">ファミコン ROM</comment>
+ <comment xml:lang="it">ROM NES</comment>
+ <comment xml:lang="is">NES ROM</comment>
+ <comment xml:lang="id">Memori baca-saja NES</comment>
+ <comment xml:lang="ia">ROM pro NES</comment>
+ <comment xml:lang="hu">NES ROM</comment>
+ <comment xml:lang="hr">NES ROM</comment>
+ <comment xml:lang="he">ROM של NES</comment>
+ <comment xml:lang="gl">ROM de NES</comment>
+ <comment xml:lang="ga">ROM NES</comment>
+ <comment xml:lang="fur">ROM NES</comment>
+ <comment xml:lang="fr">ROM NES</comment>
+ <comment xml:lang="fo">NES ROM</comment>
+ <comment xml:lang="fi">NES-ROM</comment>
+ <comment xml:lang="eu">NES-eko ROMa</comment>
+ <comment xml:lang="es">ROM de NES</comment>
+ <comment xml:lang="eo">NES-NLM</comment>
+ <comment xml:lang="en_GB">NES ROM</comment>
+ <comment xml:lang="el">NES ROM</comment>
+ <comment xml:lang="de">NES-ROM</comment>
+ <comment xml:lang="da">NES-ROM</comment>
+ <comment xml:lang="cy">ROM NES</comment>
+ <comment xml:lang="cs">ROM pro NES</comment>
+ <comment xml:lang="ca">ROM de NES</comment>
+ <comment xml:lang="bg">ROM — NES</comment>
+ <comment xml:lang="be@latin">NES ROM</comment>
+ <comment xml:lang="be">NES ROM</comment>
+ <comment xml:lang="ar">روم NES</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.nes"/>
<glob pattern="*.nez"/>
@@ -16695,55 +18301,59 @@
</mime-type>
<mime-type type="application/x-netcdf">
<comment>Unidata NetCDF document</comment>
- <comment xml:lang="ar">مستند Unidata NetCDF</comment>
- <comment xml:lang="ast">Documentu NetCDF d'Unidata</comment>
- <comment xml:lang="be@latin">Dakument Unidata NetCDF</comment>
- <comment xml:lang="bg">Документ — Unidata NetCDF</comment>
- <comment xml:lang="ca">document d'Unidata NetCDF</comment>
- <comment xml:lang="cs">dokument Unidata NetCDF</comment>
- <comment xml:lang="da">Unidata NetCDF-dokument</comment>
- <comment xml:lang="de">Unidata-NetCDF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Unidata NetCDF</comment>
- <comment xml:lang="en_GB">Unidata NetCDF document</comment>
- <comment xml:lang="eo">dokumento en NetCDF-formato de Unidata</comment>
- <comment xml:lang="es">documento de Unidata NetCDF</comment>
- <comment xml:lang="eu">Unidata NetCDF dokumentua</comment>
- <comment xml:lang="fi">Unidata NetCDF -asiakirja</comment>
- <comment xml:lang="fo">Unidata NetCDF skjal</comment>
- <comment xml:lang="fr">document Unidata NetCDF</comment>
- <comment xml:lang="ga">cáipéis Unidata NetCDF</comment>
- <comment xml:lang="gl">Documentno de Unixdata NetCDF</comment>
- <comment xml:lang="he">מסמך של Unidata NetCDF</comment>
- <comment xml:lang="hr">Unidata NetCDF dokument</comment>
- <comment xml:lang="hu">Unidata NetCDF-dokumentum</comment>
- <comment xml:lang="ia">Documento Unidata NetCDF</comment>
- <comment xml:lang="id">Dokumen Unidata NetCDF</comment>
- <comment xml:lang="it">Documento Unidata NetCDF</comment>
- <comment xml:lang="ja">Unidata NetCDF ドキュメント</comment>
- <comment xml:lang="kk">Unidata NetCDF құжаты</comment>
- <comment xml:lang="ko">Unidata NetCDF 문서</comment>
- <comment xml:lang="lt">Unidata NetCDF dokumentas</comment>
- <comment xml:lang="lv">Unidata NetCDF dokuments</comment>
- <comment xml:lang="ms">Dokumen Unidata NetCDF</comment>
- <comment xml:lang="nb">Unidata NetCDF-dokument</comment>
- <comment xml:lang="nl">Unidata NetCDF-document</comment>
- <comment xml:lang="nn">Unidata netCDF-dokument</comment>
- <comment xml:lang="oc">document Unidata NetCDF</comment>
- <comment xml:lang="pl">Dokument Unidata NetCDF</comment>
- <comment xml:lang="pt">documento Unidata NetCDF</comment>
- <comment xml:lang="pt_BR">Documento do Unidata NetCDF</comment>
- <comment xml:lang="ro">Document Unidata NetCDF</comment>
- <comment xml:lang="ru">Документ Unidata NetCDF</comment>
- <comment xml:lang="sk">Dokument Unidata NetCDF</comment>
- <comment xml:lang="sl">Dokument Unidata NetCDF</comment>
- <comment xml:lang="sq">Dokument Unidata NetCDF</comment>
- <comment xml:lang="sr">документ Унидата НетЦДФ-а</comment>
- <comment xml:lang="sv">Unidata NetCDF-dokument</comment>
- <comment xml:lang="tr">Unidata NetCDF belgesi</comment>
- <comment xml:lang="uk">документ Unidata NetCDF</comment>
- <comment xml:lang="vi">Tài liệu NetCDF Unidata</comment>
- <comment xml:lang="zh_CN">Unidata NetCDF 文档</comment>
<comment xml:lang="zh_TW">Unidata NetCDF 文件</comment>
+ <comment xml:lang="zh_CN">Unidata NetCDF 文档</comment>
+ <comment xml:lang="vi">Tài liệu NetCDF Unidata</comment>
+ <comment xml:lang="uk">документ Unidata NetCDF</comment>
+ <comment xml:lang="tr">Unidata NetCDF belgesi</comment>
+ <comment xml:lang="sv">Unidata NetCDF-dokument</comment>
+ <comment xml:lang="sr">документ Унидата НетЦДФ-а</comment>
+ <comment xml:lang="sq">dokument Unidata NetCDF</comment>
+ <comment xml:lang="sl">Dokument Unidata NetCDF</comment>
+ <comment xml:lang="si">Unidata NetCDF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Unidata NetCDF</comment>
+ <comment xml:lang="ru">Документ Unidata NetCDF</comment>
+ <comment xml:lang="ro">Document Unidata NetCDF</comment>
+ <comment xml:lang="pt_BR">Documento do Unidata NetCDF</comment>
+ <comment xml:lang="pt">documento Unidata NetCDF</comment>
+ <comment xml:lang="pl">Dokument Unidata NetCDF</comment>
+ <comment xml:lang="oc">document Unidata NetCDF</comment>
+ <comment xml:lang="nn">Unidata netCDF-dokument</comment>
+ <comment xml:lang="nl">Unidata NetCDF-document</comment>
+ <comment xml:lang="nb">Unidata NetCDF-dokument</comment>
+ <comment xml:lang="ms">Dokumen Unidata NetCDF</comment>
+ <comment xml:lang="lv">Unidata NetCDF dokuments</comment>
+ <comment xml:lang="lt">Unidata NetCDF dokumentas</comment>
+ <comment xml:lang="ko">Unidata NetCDF 문서</comment>
+ <comment xml:lang="kk">Unidata NetCDF құжаты</comment>
+ <comment xml:lang="ja">Unidata NetCDF ドキュメント</comment>
+ <comment xml:lang="it">Documento Unidata NetCDF</comment>
+ <comment xml:lang="is">Unidata NetCDF skjal</comment>
+ <comment xml:lang="id">Dokumen Unidata NetCDF</comment>
+ <comment xml:lang="ia">Documento Unidata NetCDF</comment>
+ <comment xml:lang="hu">Unidata NetCDF-dokumentum</comment>
+ <comment xml:lang="hr">Unidata NetCDF dokument</comment>
+ <comment xml:lang="he">מסמך של Unidata NetCDF</comment>
+ <comment xml:lang="gl">Documentno de Unixdata NetCDF</comment>
+ <comment xml:lang="ga">cáipéis Unidata NetCDF</comment>
+ <comment xml:lang="fur">document Unidata NetCDF</comment>
+ <comment xml:lang="fr">document Unidata NetCDF</comment>
+ <comment xml:lang="fo">Unidata NetCDF skjal</comment>
+ <comment xml:lang="fi">Unidata NetCDF -asiakirja</comment>
+ <comment xml:lang="eu">Unidata NetCDF dokumentua</comment>
+ <comment xml:lang="es">documento de Unidata NetCDF</comment>
+ <comment xml:lang="eo">dokumento en NetCDF-formato de Unidata</comment>
+ <comment xml:lang="en_GB">Unidata NetCDF document</comment>
+ <comment xml:lang="el">Έγγραφο Unidata NetCDF</comment>
+ <comment xml:lang="de">Unidata-NetCDF-Dokument</comment>
+ <comment xml:lang="da">Unidata NetCDF-dokument</comment>
+ <comment xml:lang="cs">dokument Unidata NetCDF</comment>
+ <comment xml:lang="ca">document d'Unidata NetCDF</comment>
+ <comment xml:lang="bg">Документ — Unidata NetCDF</comment>
+ <comment xml:lang="be@latin">Dakument Unidata NetCDF</comment>
+ <comment xml:lang="be">дакумент Unidata NetCDF</comment>
+ <comment xml:lang="ast">Documentu NetCDF d'Unidata</comment>
+ <comment xml:lang="ar">مستند Unidata NetCDF</comment>
<acronym>NetCDF</acronym>
<expanded-acronym>Network Common Data Form</expanded-acronym>
<generic-icon name="x-office-document"/>
@@ -16752,162 +18362,138 @@
</mime-type>
<mime-type type="application/x-nzb">
<comment>NewzBin usenet index</comment>
- <comment xml:lang="bg">Индекс — Usenet, NewzBin</comment>
- <comment xml:lang="ca">índex d'Usenet NewzBin</comment>
- <comment xml:lang="cs">index NewzBin diskuzních skupin Usenet</comment>
- <comment xml:lang="da">NewzBin-brugernetindex</comment>
- <comment xml:lang="de">NewzBin-Usenet-Index</comment>
- <comment xml:lang="el">Ευρετήριο usenet NewzBin</comment>
- <comment xml:lang="en_GB">NewzBin usenet index</comment>
- <comment xml:lang="es">índice NewzBin de usenet</comment>
- <comment xml:lang="eu">NewzBin usenet indizea</comment>
- <comment xml:lang="fr">index usenet </comment>
- <comment xml:lang="ga">innéacs usenet NewzBin</comment>
- <comment xml:lang="gl">Índice de usenet NEwzBin</comment>
- <comment xml:lang="he">אינדקס שרתי חדשות NewzBin</comment>
- <comment xml:lang="hr">NewzBin usenet indeks</comment>
- <comment xml:lang="hu">NewzBin usenet index</comment>
- <comment xml:lang="ia">Indice de usenet NewzBin</comment>
- <comment xml:lang="id">Indeks usenet NewzBin</comment>
- <comment xml:lang="it">Indice Usenet NewzBiz</comment>
- <comment xml:lang="ja">NewzBin Usenet インデックス</comment>
- <comment xml:lang="kk">NewzBin usenet индексі</comment>
- <comment xml:lang="ko">NewzBin 유즈넷 인덱스</comment>
- <comment xml:lang="lv">NewzBin usenet rādītājs</comment>
- <comment xml:lang="nl">NewzBin usenet index</comment>
- <comment xml:lang="oc">indèx usenet NewzBin</comment>
- <comment xml:lang="pl">Indeks grup dyskusyjnych NewzBin</comment>
- <comment xml:lang="pt">índice usenet NewzBin</comment>
- <comment xml:lang="pt_BR">Índice de usenet NewzBin</comment>
- <comment xml:lang="ru">Индекс usenet NewzBin</comment>
- <comment xml:lang="sk">Index Usenetu NewzBin</comment>
- <comment xml:lang="sl">Kazalo usenet NewzBin</comment>
- <comment xml:lang="sr">Њузбин попис јузнета</comment>
- <comment xml:lang="sv">NewzBin-usenetindex</comment>
- <comment xml:lang="tr">NewzBin usenet dizini</comment>
- <comment xml:lang="uk">покажчик usenet NewzBin</comment>
- <comment xml:lang="zh_CN">NewzBin Usenet 索引</comment>
<comment xml:lang="zh_TW">NewzBin usenet 索引</comment>
+ <comment xml:lang="zh_CN">NewzBin Usenet 索引</comment>
+ <comment xml:lang="uk">покажчик usenet NewzBin</comment>
+ <comment xml:lang="tr">NewzBin usenet dizini</comment>
+ <comment xml:lang="sv">NewzBin-usenetindex</comment>
+ <comment xml:lang="sr">Њузбин попис јузнета</comment>
+ <comment xml:lang="sq">tregues usenet NewzBin</comment>
+ <comment xml:lang="sl">Kazalo usenet NewzBin</comment>
+ <comment xml:lang="si">NewzBin Usenet index</comment>
+ <comment xml:lang="sk">Index Usenetu NewzBin</comment>
+ <comment xml:lang="ru">Индекс usenet NewzBin</comment>
+ <comment xml:lang="pt_BR">Índice de usenet NewzBin</comment>
+ <comment xml:lang="pt">índice usenet NewzBin</comment>
+ <comment xml:lang="pl">Indeks grup dyskusyjnych NewzBin</comment>
+ <comment xml:lang="oc">indèx usenet NewzBin</comment>
+ <comment xml:lang="nl">NewzBin usenet-index</comment>
+ <comment xml:lang="lv">NewzBin usenet rādītājs</comment>
+ <comment xml:lang="ko">NewzBin 유즈넷 인덱스</comment>
+ <comment xml:lang="kk">NewzBin usenet индексі</comment>
+ <comment xml:lang="ja">NewzBin Usenet インデックス</comment>
+ <comment xml:lang="it">Indice Usenet NewzBiz</comment>
+ <comment xml:lang="is">NewzBin usenet yfirlit</comment>
+ <comment xml:lang="id">Indeks usenet NewzBin</comment>
+ <comment xml:lang="ia">Indice de usenet NewzBin</comment>
+ <comment xml:lang="hu">NewzBin usenet index</comment>
+ <comment xml:lang="hr">NewzBin usenet indeks</comment>
+ <comment xml:lang="he">אינדקס שרתי חדשות NewzBin</comment>
+ <comment xml:lang="gl">Índice de usenet NEwzBin</comment>
+ <comment xml:lang="ga">innéacs usenet NewzBin</comment>
+ <comment xml:lang="fur">tabele usenet NewzBin</comment>
+ <comment xml:lang="fr">index usenet </comment>
+ <comment xml:lang="fi">NewzBin usenet -indeksi</comment>
+ <comment xml:lang="eu">NewzBin usenet indizea</comment>
+ <comment xml:lang="es">índice NewzBin de usenet</comment>
+ <comment xml:lang="en_GB">NewzBin usenet index</comment>
+ <comment xml:lang="el">Ευρετήριο usenet NewzBin</comment>
+ <comment xml:lang="de">NewzBin Usenet-Index</comment>
+ <comment xml:lang="da">NewzBin usenet-indeks</comment>
+ <comment xml:lang="cs">index NewzBin diskuzních skupin Usenet</comment>
+ <comment xml:lang="ca">índex d'Usenet NewzBin</comment>
+ <comment xml:lang="bg">Индекс — Usenet, NewzBin</comment>
+ <comment xml:lang="be">індэкс usenet NewzBin</comment>
+ <comment xml:lang="ar">فهرس يوزنت NewzBin</comment>
<sub-class-of type="application/xml"/>
<magic priority="80">
- <match value="&lt;nzb" type="string" offset="0:256"/>
+ <match type="string" value="&lt;nzb" offset="0:256"/>
</magic>
<glob pattern="*.nzb"/>
</mime-type>
<mime-type type="application/x-object">
- <comment>object code</comment>
- <comment xml:lang="ar">رمز الكائن</comment>
- <comment xml:lang="be@latin">abjektny kod</comment>
- <comment xml:lang="bg">Обектен код</comment>
- <comment xml:lang="ca">codi objecte</comment>
- <comment xml:lang="cs">objektový kód</comment>
- <comment xml:lang="da">objektkode</comment>
- <comment xml:lang="de">Objektcode</comment>
- <comment xml:lang="el">Μεταφρασμένος κώδικας</comment>
- <comment xml:lang="en_GB">object code</comment>
- <comment xml:lang="eo">celkodo</comment>
- <comment xml:lang="es">código objeto</comment>
- <comment xml:lang="eu">objektu kodea</comment>
- <comment xml:lang="fi">objektikoodi</comment>
- <comment xml:lang="fr">code objet</comment>
- <comment xml:lang="ga">cód réada</comment>
- <comment xml:lang="gl">código obxecto</comment>
- <comment xml:lang="he">קוד אובייקט</comment>
- <comment xml:lang="hr">Object kôd</comment>
- <comment xml:lang="hu">tárgykód</comment>
- <comment xml:lang="ia">Codice objecto</comment>
- <comment xml:lang="id">kode objek</comment>
- <comment xml:lang="it">Codice oggetto</comment>
- <comment xml:lang="ja">オブジェクトコード</comment>
- <comment xml:lang="kk">объектті коды</comment>
- <comment xml:lang="ko">개체 코드</comment>
- <comment xml:lang="lt">objektinis kodas</comment>
- <comment xml:lang="lv">objekta kods</comment>
- <comment xml:lang="ms">Kod objek</comment>
- <comment xml:lang="nb">objektkode</comment>
- <comment xml:lang="nl">objectcode</comment>
- <comment xml:lang="nn">objektkode</comment>
- <comment xml:lang="oc">còde objet</comment>
- <comment xml:lang="pl">Kod obiektowy</comment>
- <comment xml:lang="pt">código de objeto</comment>
- <comment xml:lang="pt_BR">Código-objeto</comment>
- <comment xml:lang="ro">cod sursă obiect</comment>
- <comment xml:lang="ru">Объектный код</comment>
- <comment xml:lang="sk">Objektový kód</comment>
- <comment xml:lang="sl">predmetna koda</comment>
- <comment xml:lang="sq">Kod objekti</comment>
- <comment xml:lang="sr">објектни ко̂д</comment>
- <comment xml:lang="sv">objektkod</comment>
- <comment xml:lang="tr">nesne kodu</comment>
+ <comment>Object code</comment>
<comment xml:lang="uk">об'єктний код</comment>
- <comment xml:lang="vi">mã đối tượng</comment>
- <comment xml:lang="zh_CN">目标代码</comment>
- <comment xml:lang="zh_TW">目的碼</comment>
+ <comment xml:lang="sv">Objektkod</comment>
+ <comment xml:lang="ru">Объектный код</comment>
+ <comment xml:lang="pl">Kod obiektowy</comment>
+ <comment xml:lang="ja">目的符号文書</comment>
+ <comment xml:lang="it">Codice oggetto</comment>
+ <comment xml:lang="gl">Código obxecto</comment>
+ <comment xml:lang="eu">Objektu-kodea</comment>
+ <comment xml:lang="es">código de objeto</comment>
+ <comment xml:lang="de">Objektcode</comment>
+ <comment xml:lang="be">аб'ектны код</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="\177ELF" type="string" offset="0">
- <match value="1" type="byte" offset="5">
- <match value="1" type="little16" offset="16"/>
+ <magic>
+ <match type="string" value="\177ELF" offset="0">
+ <match type="byte" value="1" offset="5">
+ <match type="little16" value="1" offset="16"/>
</match>
</match>
- <match value="\177ELF" type="string" offset="0">
- <match value="2" type="byte" offset="5">
- <match value="1" type="big16" offset="16"/>
+ <match type="string" value="\177ELF" offset="0">
+ <match type="byte" value="2" offset="5">
+ <match type="big16" value="1" offset="16"/>
</match>
</match>
</magic>
<glob pattern="*.o"/>
+ <glob pattern="*.mod" weight="40"/>
</mime-type>
<mime-type type="application/annodex">
<comment>Annodex exchange format</comment>
- <comment xml:lang="ar">صيغة Annodex البديلة</comment>
- <comment xml:lang="bg">Формат за обмяна — Annodex</comment>
- <comment xml:lang="ca">format d'intercanvi Annodex</comment>
- <comment xml:lang="cs">výměnný formát Annodex</comment>
- <comment xml:lang="da">Udvekslingsformat for Annodex</comment>
- <comment xml:lang="de">Annodex-Wechselformat</comment>
- <comment xml:lang="el">Μορφή ανταλλαγής Annodex</comment>
- <comment xml:lang="en_GB">Annodex exchange format</comment>
- <comment xml:lang="es">formato de intercambio de Annodex</comment>
- <comment xml:lang="eu">Annodex trukatze-formatua</comment>
- <comment xml:lang="fi">Annodex-siirtomuoto</comment>
- <comment xml:lang="fo">Annodex umbýtingarsnið</comment>
- <comment xml:lang="fr">format d'échange Annodex</comment>
- <comment xml:lang="ga">formáid mhalairte Annodex</comment>
- <comment xml:lang="gl">formato intercambiábel de Annodex</comment>
- <comment xml:lang="he">תבנית החלפת Annodex</comment>
- <comment xml:lang="hr">Annodex format razmjene</comment>
- <comment xml:lang="hu">Annodex csereformátum</comment>
- <comment xml:lang="ia">Formato de excambio Annodex</comment>
- <comment xml:lang="id">Format pertukaran Annodex</comment>
- <comment xml:lang="it">Formato di scambio Annodex</comment>
- <comment xml:lang="ja">Annodex 交換フォーマット</comment>
- <comment xml:lang="ka">Annodex-ის გაცვლითი ფორმატი</comment>
- <comment xml:lang="kk">Annodex алмасу пішімі</comment>
- <comment xml:lang="ko">Annodex 교환 형식</comment>
- <comment xml:lang="lt">Annodex mainų formatas</comment>
- <comment xml:lang="lv">Annodex apmaiņas formāts</comment>
- <comment xml:lang="nl">Annodex-exchange</comment>
- <comment xml:lang="oc">format d'escambi Annodex</comment>
- <comment xml:lang="pl">Format wymiany Annodex</comment>
- <comment xml:lang="pt">formato de troca Annodex</comment>
- <comment xml:lang="pt_BR">Formato de troca Annodex</comment>
- <comment xml:lang="ro">Format schimb Annodex</comment>
- <comment xml:lang="ru">Формат обмена Annodex</comment>
- <comment xml:lang="sk">Formát pre výmenu Annodex</comment>
- <comment xml:lang="sl">Izmenjalna datoteka Annodex</comment>
- <comment xml:lang="sr">Анодексов запис размене</comment>
- <comment xml:lang="sv">Annodex-utväxlingsformat</comment>
- <comment xml:lang="tr">Annodex değişim biçimi</comment>
- <comment xml:lang="uk">формат обміну даними Annodex</comment>
- <comment xml:lang="vi">Định dạng trao đổi Annodex</comment>
- <comment xml:lang="zh_CN">Annodex 交换格式</comment>
<comment xml:lang="zh_TW">Annodex 交換格式</comment>
+ <comment xml:lang="zh_CN">Annodex 交换格式</comment>
+ <comment xml:lang="vi">Định dạng trao đổi Annodex</comment>
+ <comment xml:lang="uk">формат обміну даними Annodex</comment>
+ <comment xml:lang="tr">Annodex değişim biçimi</comment>
+ <comment xml:lang="sv">Annodex-utväxlingsformat</comment>
+ <comment xml:lang="sr">Анодексов запис размене</comment>
+ <comment xml:lang="sl">Izmenjalna datoteka Annodex</comment>
+ <comment xml:lang="si">Annodex හුවමාරු ආකෘතිය</comment>
+ <comment xml:lang="sk">Formát pre výmenu Annodex</comment>
+ <comment xml:lang="ru">Формат обмена Annodex</comment>
+ <comment xml:lang="ro">Format schimb Annodex</comment>
+ <comment xml:lang="pt_BR">Formato de troca Annodex</comment>
+ <comment xml:lang="pt">formato de troca Annodex</comment>
+ <comment xml:lang="pl">Format wymiany Annodex</comment>
+ <comment xml:lang="oc">format d'escambi Annodex</comment>
+ <comment xml:lang="nl">Annodex-exchange</comment>
+ <comment xml:lang="lv">Annodex apmaiņas formāts</comment>
+ <comment xml:lang="lt">Annodex mainų formatas</comment>
+ <comment xml:lang="ko">Annodex 교환 형식</comment>
+ <comment xml:lang="kk">Annodex алмасу пішімі</comment>
+ <comment xml:lang="ka">Annodex-ის გაცვლითი ფორმატი</comment>
+ <comment xml:lang="ja">Annodex 交換フォーマット</comment>
+ <comment xml:lang="it">Formato di scambio Annodex</comment>
+ <comment xml:lang="is">Annodex skiptiskráasnið</comment>
+ <comment xml:lang="id">Format pertukaran Annodex</comment>
+ <comment xml:lang="ia">Formato de excambio Annodex</comment>
+ <comment xml:lang="hu">Annodex csereformátum</comment>
+ <comment xml:lang="hr">Annodex format razmjene</comment>
+ <comment xml:lang="he">תבנית החלפת Annodex</comment>
+ <comment xml:lang="gl">formato intercambiábel de Annodex</comment>
+ <comment xml:lang="ga">formáid mhalairte Annodex</comment>
+ <comment xml:lang="fur">formât di scambi Annodex</comment>
+ <comment xml:lang="fr">format d'échange Annodex</comment>
+ <comment xml:lang="fo">Annodex umbýtingarsnið</comment>
+ <comment xml:lang="fi">Annodex-siirtomuoto</comment>
+ <comment xml:lang="eu">Annodex trukatze-formatua</comment>
+ <comment xml:lang="es">formato de intercambio de Annodex</comment>
+ <comment xml:lang="en_GB">Annodex exchange format</comment>
+ <comment xml:lang="el">Μορφή ανταλλαγής Annodex</comment>
+ <comment xml:lang="de">Annodex-Austauschformat</comment>
+ <comment xml:lang="da">Udvekslingsformat for Annodex</comment>
+ <comment xml:lang="cs">výměnný formát Annodex</comment>
+ <comment xml:lang="ca">format d'intercanvi Annodex</comment>
+ <comment xml:lang="bg">Формат за обмяна — Annodex</comment>
+ <comment xml:lang="be">фармат абмену Annodex</comment>
+ <comment xml:lang="ar">صيغة تبادل Annodex</comment>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
- <match value="OggS" type="string" offset="0">
- <match value="fishead\0" type="string" offset="28">
- <match value="CMML\0\0\0\0" type="string" offset="56:512"/>
+ <magic>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="fishead\0" offset="28">
+ <match type="string" value="CMML\0\0\0\0" offset="56:512"/>
</match>
</match>
</magic>
@@ -16915,57 +18501,46 @@
<alias type="application/x-annodex"/>
</mime-type>
<mime-type type="video/annodex">
- <comment>Annodex Video</comment>
- <comment xml:lang="ar">Annodex مرئي</comment>
- <comment xml:lang="ast">Videu n'Annodex</comment>
- <comment xml:lang="bg">Видео — Annodex</comment>
- <comment xml:lang="ca">Annodex Video</comment>
- <comment xml:lang="cs">video Annodex</comment>
- <comment xml:lang="da">Annodexvideo</comment>
- <comment xml:lang="de">Annodex-Video</comment>
- <comment xml:lang="el">Βίντεο Annodex</comment>
- <comment xml:lang="en_GB">Annodex Video</comment>
- <comment xml:lang="eo">Annodex-video</comment>
- <comment xml:lang="es">vídeo Annodex</comment>
- <comment xml:lang="eu">Annodex bideoa</comment>
- <comment xml:lang="fi">Annodex-video</comment>
- <comment xml:lang="fo">Annodex video</comment>
- <comment xml:lang="fr">vidéo Annodex</comment>
- <comment xml:lang="ga">Físeán Annodex</comment>
- <comment xml:lang="gl">vídeo de Annodex</comment>
- <comment xml:lang="he">וידאו Annodex</comment>
- <comment xml:lang="hr">Annodex video snimka</comment>
- <comment xml:lang="hu">Annodex videó</comment>
- <comment xml:lang="ia">Video Annodex</comment>
- <comment xml:lang="id">Video Annodex</comment>
- <comment xml:lang="it">Video Annodex</comment>
- <comment xml:lang="ja">Annodex 動画</comment>
- <comment xml:lang="ka">Annodex-ის ვიდეო</comment>
- <comment xml:lang="kk">Annodex видеосы</comment>
- <comment xml:lang="ko">Annodex 동영상</comment>
- <comment xml:lang="lt">Annodex vaizdo įrašas</comment>
- <comment xml:lang="lv">Annodex video</comment>
- <comment xml:lang="nl">Annodex Video</comment>
- <comment xml:lang="oc">vidèo Annodex</comment>
- <comment xml:lang="pl">Plik wideo Annodex</comment>
- <comment xml:lang="pt">vídeo Annodex</comment>
- <comment xml:lang="pt_BR">Vídeo Annodex</comment>
- <comment xml:lang="ro">Video Annodex</comment>
- <comment xml:lang="ru">Видео Annodex</comment>
- <comment xml:lang="sk">Video Annodex</comment>
- <comment xml:lang="sl">Video datoteka Annodex</comment>
- <comment xml:lang="sr">Анодекс видео</comment>
- <comment xml:lang="sv">Annodex-video</comment>
- <comment xml:lang="tr">Annodex Video</comment>
- <comment xml:lang="uk">відеокліп Annodex</comment>
- <comment xml:lang="vi">Ảnh động Annodex</comment>
- <comment xml:lang="zh_CN">Annodex 视频</comment>
+ <comment>Annodex video</comment>
<comment xml:lang="zh_TW">Annodex 視訊</comment>
+ <comment xml:lang="zh_CN">Annodex 视频</comment>
+ <comment xml:lang="uk">відео Annodex</comment>
+ <comment xml:lang="tr">Annodex video</comment>
+ <comment xml:lang="sv">Annodex-video</comment>
+ <comment xml:lang="sq">video Annodex</comment>
+ <comment xml:lang="sl">Video Annodex</comment>
+ <comment xml:lang="si">Annodex වීඩියෝව</comment>
+ <comment xml:lang="ru">Видео Annodex</comment>
+ <comment xml:lang="pt_BR">Vídeo Annodex</comment>
+ <comment xml:lang="pl">Plik wideo Annodex</comment>
+ <comment xml:lang="oc">vidèo Annodex</comment>
+ <comment xml:lang="nl">Annodex-video</comment>
+ <comment xml:lang="ko">Annodex 동영상</comment>
+ <comment xml:lang="kk">Annodex видеосы</comment>
+ <comment xml:lang="ja">Annodex 動画</comment>
+ <comment xml:lang="it">Video Annodex</comment>
+ <comment xml:lang="is">Annodex myndskeið</comment>
+ <comment xml:lang="id">Video Annodex</comment>
+ <comment xml:lang="hu">Annodex videó</comment>
+ <comment xml:lang="hr">Annodex video snimka</comment>
+ <comment xml:lang="he">סרטון Annodex</comment>
+ <comment xml:lang="gl">Vídeo de Annodex</comment>
+ <comment xml:lang="fr">vidéo Annodex</comment>
+ <comment xml:lang="fi">Annodex-video</comment>
+ <comment xml:lang="eu">Annodex bideoa</comment>
+ <comment xml:lang="es">vídeo Annodex</comment>
+ <comment xml:lang="en_GB">Annodex video</comment>
+ <comment xml:lang="de">Annodex-Video</comment>
+ <comment xml:lang="da">Annodex-video</comment>
+ <comment xml:lang="ca">vídeo Annodex</comment>
+ <comment xml:lang="bg">Видео — Annodex</comment>
+ <comment xml:lang="be">відэа Annodex</comment>
+ <comment xml:lang="ar">فيديو Annodex</comment>
<sub-class-of type="application/annodex"/>
- <magic priority="50">
- <match value="OggS" type="string" offset="0">
- <match value="fishead\0" type="string" offset="28">
- <match value="CMML\0\0\0\0" type="string" offset="56:512"/>
+ <magic>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="fishead\0" offset="28">
+ <match type="string" value="CMML\0\0\0\0" offset="56:512"/>
</match>
</match>
</magic>
@@ -16973,56 +18548,46 @@
<alias type="video/x-annodex"/>
</mime-type>
<mime-type type="audio/annodex">
- <comment>Annodex Audio</comment>
- <comment xml:lang="ar">Annodex سمعي</comment>
- <comment xml:lang="bg">Аудио — Annodex</comment>
- <comment xml:lang="ca">Annodex Audio</comment>
- <comment xml:lang="cs">zvuk Annodex</comment>
- <comment xml:lang="da">Annodexlyd</comment>
- <comment xml:lang="de">Annodex-Audio</comment>
- <comment xml:lang="el">Ήχος Annodex</comment>
- <comment xml:lang="en_GB">Annodex Audio</comment>
- <comment xml:lang="eo">Annodex-sondosiero</comment>
- <comment xml:lang="es">sonido Annodex</comment>
- <comment xml:lang="eu">Annodex audioa</comment>
- <comment xml:lang="fi">Annodex-ääni</comment>
- <comment xml:lang="fo">Annodex ljóður</comment>
- <comment xml:lang="fr">audio Annodex</comment>
- <comment xml:lang="ga">Fuaim Annodex</comment>
- <comment xml:lang="gl">son de Annodex</comment>
- <comment xml:lang="he">שמע Annodex</comment>
- <comment xml:lang="hr">Annodex zvučni zapis</comment>
- <comment xml:lang="hu">Annodex hang</comment>
- <comment xml:lang="ia">Audio Annodex</comment>
- <comment xml:lang="id">Audio Annodex</comment>
- <comment xml:lang="it">Audio Annodex</comment>
- <comment xml:lang="ja">Annodex オーディオ</comment>
- <comment xml:lang="ka">Annodex-ის აუდიო</comment>
- <comment xml:lang="kk">Annodex аудиосы</comment>
- <comment xml:lang="ko">Annodex 오디오</comment>
- <comment xml:lang="lt">Annodex garso įrašas</comment>
- <comment xml:lang="lv">Annodex audio</comment>
- <comment xml:lang="nl">Annodex Audio</comment>
- <comment xml:lang="oc">àudio Annodex</comment>
- <comment xml:lang="pl">Plik dźwiękowy Annodex</comment>
- <comment xml:lang="pt">áudio Annodex</comment>
- <comment xml:lang="pt_BR">Áudio Annodex</comment>
- <comment xml:lang="ro">Audio Annodex</comment>
- <comment xml:lang="ru">Аудио Annodex</comment>
- <comment xml:lang="sk">Zvuk Annodex</comment>
- <comment xml:lang="sl">Zvočna datoteka Annodex</comment>
- <comment xml:lang="sr">Анодекс аудио</comment>
- <comment xml:lang="sv">Annodex-ljud</comment>
- <comment xml:lang="tr">Annodex Sesi</comment>
- <comment xml:lang="uk">звук Annodex</comment>
- <comment xml:lang="vi">Âm thanh Annodex</comment>
- <comment xml:lang="zh_CN">Annodex 音频</comment>
+ <comment>Annodex audio</comment>
<comment xml:lang="zh_TW">Annodex 音訊</comment>
+ <comment xml:lang="zh_CN">Annodex 音频</comment>
+ <comment xml:lang="uk">звук Annodex</comment>
+ <comment xml:lang="tr">Annodex sesi</comment>
+ <comment xml:lang="sv">Annodex-ljud</comment>
+ <comment xml:lang="sq">audio Annodex</comment>
+ <comment xml:lang="sl">Zvok Annodex</comment>
+ <comment xml:lang="si">ඇනෝඩෙක්ස් ඕඩියෝ</comment>
+ <comment xml:lang="ru">Аудио Annodex</comment>
+ <comment xml:lang="pt_BR">Áudio Annodex</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Annodex</comment>
+ <comment xml:lang="oc">àudio Annodex</comment>
+ <comment xml:lang="nl">Annodex-audio</comment>
+ <comment xml:lang="ko">Annodex 오디오</comment>
+ <comment xml:lang="kk">Annodex аудиосы</comment>
+ <comment xml:lang="ja">Annodex オーディオ</comment>
+ <comment xml:lang="it">Audio Annodex</comment>
+ <comment xml:lang="is">Annodex hljóðskrá</comment>
+ <comment xml:lang="id">Audio Annodex</comment>
+ <comment xml:lang="hu">Annodex hang</comment>
+ <comment xml:lang="hr">Annodex zvučni zapis</comment>
+ <comment xml:lang="he">שמע Annodex</comment>
+ <comment xml:lang="gl">Son de Annodex</comment>
+ <comment xml:lang="fr">audio Annodex</comment>
+ <comment xml:lang="fi">Annodex-ääni</comment>
+ <comment xml:lang="eu">Annodex audioa</comment>
+ <comment xml:lang="es">sonido Annodex</comment>
+ <comment xml:lang="en_GB">Annodex audio</comment>
+ <comment xml:lang="de">Annodex-Audio</comment>
+ <comment xml:lang="da">Annodex-lyd</comment>
+ <comment xml:lang="ca">àudio Annodex</comment>
+ <comment xml:lang="bg">Аудио — Annodex</comment>
+ <comment xml:lang="be">аўдыя Annodex</comment>
+ <comment xml:lang="ar">صوت Annodex</comment>
<sub-class-of type="application/annodex"/>
- <magic priority="50">
- <match value="OggS" type="string" offset="0">
- <match value="fishead\0" type="string" offset="28">
- <match value="CMML\0\0\0\0" type="string" offset="56:512"/>
+ <magic>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="fishead\0" offset="28">
+ <match type="string" value="CMML\0\0\0\0" offset="56:512"/>
</match>
</match>
</magic>
@@ -17031,112 +18596,106 @@
</mime-type>
<mime-type type="application/ogg">
<comment>Ogg multimedia file</comment>
- <comment xml:lang="ar">ملف وسائط متعددة Ogg</comment>
- <comment xml:lang="be@latin">Multymedyjny fajł Ogg</comment>
- <comment xml:lang="bg">Мултимедия — Ogg</comment>
- <comment xml:lang="ca">fitxer multimèdia Ogg</comment>
- <comment xml:lang="cs">multimediální soubor Ogg</comment>
- <comment xml:lang="da">Ogg multimedie-fil</comment>
- <comment xml:lang="de">Ogg-Multimediadatei</comment>
- <comment xml:lang="el">Αρχείο πολυμέσων Ogg</comment>
- <comment xml:lang="en_GB">Ogg multimedia file</comment>
- <comment xml:lang="es">archivo multimedia Ogg</comment>
- <comment xml:lang="eu">Ogg multimediako fitxategia</comment>
- <comment xml:lang="fi">Ogg-multimediatiedosto</comment>
- <comment xml:lang="fo">Ogg margmiðlafíla</comment>
- <comment xml:lang="fr">fichier multimédia Ogg</comment>
- <comment xml:lang="ga">comhad ilmheán Ogg</comment>
- <comment xml:lang="gl">ficheiro multimedia Ogg</comment>
- <comment xml:lang="he">קובץ מולטימדיה Ogg</comment>
- <comment xml:lang="hr">Ogg multimedijalna datoteka</comment>
- <comment xml:lang="hu">Ogg multimédiafájl</comment>
- <comment xml:lang="ia">File multimedial Ogg</comment>
- <comment xml:lang="id">Berkas multimedia Ogg</comment>
- <comment xml:lang="it">File multimediale Ogg</comment>
- <comment xml:lang="ja">Ogg マルチメディアファイル</comment>
- <comment xml:lang="ka">Ogg-ის მულტიმედია ფაილი</comment>
- <comment xml:lang="kk">Ogg мультимедиа файлы</comment>
- <comment xml:lang="ko">Ogg 멀티미디어 파일</comment>
- <comment xml:lang="lt">Ogg multimedijos failas</comment>
- <comment xml:lang="lv">Ogg multimediju datne</comment>
- <comment xml:lang="nb">Ogg-multimediafil</comment>
- <comment xml:lang="nl">Ogg-multimediabestand</comment>
- <comment xml:lang="nn">Ogg multimediafil</comment>
- <comment xml:lang="oc">fichièr multimèdia Ogg</comment>
- <comment xml:lang="pl">Plik multimedialny Ogg</comment>
- <comment xml:lang="pt">ficheiro multimédia Ogg</comment>
- <comment xml:lang="pt_BR">Arquivo multimídia Ogg</comment>
- <comment xml:lang="ro">Fișier multimedia Ogg</comment>
- <comment xml:lang="ru">Мультимедийный файл Ogg</comment>
- <comment xml:lang="sk">Súbor multimédií Ogg</comment>
- <comment xml:lang="sl">Večpredstavnostna datoteka Ogg</comment>
- <comment xml:lang="sq">File multimedial Ogg</comment>
- <comment xml:lang="sr">Огг мултимедијална датотека</comment>
- <comment xml:lang="sv">Ogg-multimediafil</comment>
- <comment xml:lang="tr">Ogg çokluortam dosyası</comment>
- <comment xml:lang="uk">мультимедійний файл Ogg</comment>
- <comment xml:lang="vi">Tập tin đa phương tiện Ogg</comment>
- <comment xml:lang="zh_CN">Ogg 多媒体文件</comment>
<comment xml:lang="zh_TW">Ogg 多媒體檔案</comment>
+ <comment xml:lang="zh_CN">Ogg 多媒体文件</comment>
+ <comment xml:lang="vi">Tập tin đa phương tiện Ogg</comment>
+ <comment xml:lang="uk">мультимедійний файл Ogg</comment>
+ <comment xml:lang="tr">Ogg çoklu ortam dosyası</comment>
+ <comment xml:lang="sv">Ogg-multimediafil</comment>
+ <comment xml:lang="sr">Огг мултимедијална датотека</comment>
+ <comment xml:lang="sq">kartelë multimediale Ogg</comment>
+ <comment xml:lang="sl">Večpredstavnostna datoteka Ogg</comment>
+ <comment xml:lang="si">Ogg බහුමාධ්‍ය ගොනුව</comment>
+ <comment xml:lang="sk">Súbor multimédií Ogg</comment>
+ <comment xml:lang="ru">Мультимедийный файл Ogg</comment>
+ <comment xml:lang="ro">Fișier multimedia Ogg</comment>
+ <comment xml:lang="pt_BR">Arquivo multimídia Ogg</comment>
+ <comment xml:lang="pt">ficheiro multimédia Ogg</comment>
+ <comment xml:lang="pl">Plik multimedialny Ogg</comment>
+ <comment xml:lang="oc">fichièr multimèdia Ogg</comment>
+ <comment xml:lang="nn">Ogg multimediafil</comment>
+ <comment xml:lang="nl">Ogg-multimediabestand</comment>
+ <comment xml:lang="nb">Ogg-multimediafil</comment>
+ <comment xml:lang="lv">Ogg multimediju datne</comment>
+ <comment xml:lang="lt">Ogg multimedijos failas</comment>
+ <comment xml:lang="ko">Ogg 멀티미디어 파일</comment>
+ <comment xml:lang="kk">Ogg мультимедиа файлы</comment>
+ <comment xml:lang="ka">Ogg-ის მულტიმედია ფაილი</comment>
+ <comment xml:lang="ja">Ogg マルチメディアファイル</comment>
+ <comment xml:lang="it">File multimediale Ogg</comment>
+ <comment xml:lang="is">OGG margmiðlunarskrá</comment>
+ <comment xml:lang="id">Berkas multimedia Ogg</comment>
+ <comment xml:lang="ia">File multimedial Ogg</comment>
+ <comment xml:lang="hu">Ogg multimédiafájl</comment>
+ <comment xml:lang="hr">Ogg multimedijalna datoteka</comment>
+ <comment xml:lang="he">קובץ מולטימדיה Ogg</comment>
+ <comment xml:lang="gl">ficheiro multimedia Ogg</comment>
+ <comment xml:lang="ga">comhad ilmheán Ogg</comment>
+ <comment xml:lang="fur">file multimediâl Ogg</comment>
+ <comment xml:lang="fr">fichier multimédia Ogg</comment>
+ <comment xml:lang="fo">Ogg margmiðlafíla</comment>
+ <comment xml:lang="fi">Ogg-multimediatiedosto</comment>
+ <comment xml:lang="eu">Ogg multimediako fitxategia</comment>
+ <comment xml:lang="es">archivo multimedia Ogg</comment>
+ <comment xml:lang="en_GB">Ogg multimedia file</comment>
+ <comment xml:lang="el">Αρχείο πολυμέσων Ogg</comment>
+ <comment xml:lang="de">Ogg-Multimediadatei</comment>
+ <comment xml:lang="da">Ogg multimedie-fil</comment>
+ <comment xml:lang="cs">multimediální soubor Ogg</comment>
+ <comment xml:lang="ca">fitxer multimèdia Ogg</comment>
+ <comment xml:lang="bg">Мултимедия — Ogg</comment>
+ <comment xml:lang="be@latin">Multymedyjny fajł Ogg</comment>
+ <comment xml:lang="be">мультымедыйны файл Ogg</comment>
+ <comment xml:lang="ar">ملف وسائط متعددة Ogg</comment>
+ <comment xml:lang="af">Ogg-multimedialêer</comment>
<generic-icon name="video-x-generic"/>
<alias type="application/x-ogg"/>
- <magic priority="50">
- <match value="OggS" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="OggS" offset="0"/>
</magic>
<glob pattern="*.ogx"/>
</mime-type>
<mime-type type="audio/ogg">
- <comment>Ogg Audio</comment>
- <comment xml:lang="ar">Ogg سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Ogg</comment>
- <comment xml:lang="bg">Аудио — Ogg</comment>
- <comment xml:lang="ca">àudio d'Ogg</comment>
- <comment xml:lang="cs">zvuk Ogg</comment>
- <comment xml:lang="da">Ogg-lyd</comment>
- <comment xml:lang="de">Ogg-Audio</comment>
- <comment xml:lang="el">Ήχος Ogg</comment>
- <comment xml:lang="en_GB">Ogg Audio</comment>
- <comment xml:lang="es">sonido Ogg</comment>
- <comment xml:lang="eu">Ogg audioa</comment>
- <comment xml:lang="fi">Ogg-ääni</comment>
- <comment xml:lang="fo">Ogg ljóður</comment>
- <comment xml:lang="fr">audio Ogg</comment>
- <comment xml:lang="ga">Fuaim Ogg</comment>
- <comment xml:lang="gl">son Ogg</comment>
- <comment xml:lang="he">שמע Ogg</comment>
- <comment xml:lang="hr">Ogg zvučni zapis</comment>
- <comment xml:lang="hu">Ogg hang</comment>
- <comment xml:lang="ia">Audio Ogg</comment>
- <comment xml:lang="id">Audio Ogg</comment>
- <comment xml:lang="it">Audio Ogg</comment>
- <comment xml:lang="ja">Ogg オーディオ</comment>
- <comment xml:lang="ka">Ogg-ის აუდიო</comment>
- <comment xml:lang="kk">Ogg аудиосы</comment>
- <comment xml:lang="ko">Ogg 오디오</comment>
- <comment xml:lang="lt">Ogg garso įrašas</comment>
- <comment xml:lang="lv">Ogg audio</comment>
- <comment xml:lang="nb">Ogg lyd</comment>
- <comment xml:lang="nl">Ogg-audio</comment>
- <comment xml:lang="nn">Ogg-lyd</comment>
- <comment xml:lang="oc">àudio Ogg</comment>
- <comment xml:lang="pl">Plik dźwiękowy Ogg</comment>
- <comment xml:lang="pt">áudio Ogg</comment>
- <comment xml:lang="pt_BR">Áudio Ogg</comment>
- <comment xml:lang="ro">Audio Ogg</comment>
- <comment xml:lang="ru">Аудио Ogg</comment>
- <comment xml:lang="sk">Zvuk Ogg</comment>
- <comment xml:lang="sl">Zvočna datoteka Ogg</comment>
- <comment xml:lang="sq">Audio Ogg</comment>
- <comment xml:lang="sr">Огг звук</comment>
- <comment xml:lang="sv">Ogg-ljud</comment>
- <comment xml:lang="tr">Ogg Sesi</comment>
- <comment xml:lang="uk">звук ogg</comment>
- <comment xml:lang="vi">Âm thanh Ogg</comment>
- <comment xml:lang="zh_CN">Ogg 音频</comment>
+ <comment>Ogg audio</comment>
<comment xml:lang="zh_TW">Ogg 音訊</comment>
+ <comment xml:lang="zh_CN">Ogg 音频</comment>
+ <comment xml:lang="uk">звук ogg</comment>
+ <comment xml:lang="tr">Ogg sesi</comment>
+ <comment xml:lang="sv">Ogg-ljud</comment>
+ <comment xml:lang="sr">ОГГ аудио</comment>
+ <comment xml:lang="sq">audio Ogg</comment>
+ <comment xml:lang="sl">Zvok Ogg</comment>
+ <comment xml:lang="si">ඕග් ඕඩියෝ</comment>
+ <comment xml:lang="sk">Zvuk Ogg</comment>
+ <comment xml:lang="ru">Аудио Ogg</comment>
+ <comment xml:lang="pt_BR">Áudio Ogg</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Ogg</comment>
+ <comment xml:lang="oc">àudio Ogg</comment>
+ <comment xml:lang="nl">Ogg-audio</comment>
+ <comment xml:lang="ko">Ogg 오디오</comment>
+ <comment xml:lang="kk">Ogg аулиосы</comment>
+ <comment xml:lang="ja">Ogg オーディオ</comment>
+ <comment xml:lang="it">Audio Ogg</comment>
+ <comment xml:lang="is">Ogg hljóðskrá</comment>
+ <comment xml:lang="id">Audio Ogg</comment>
+ <comment xml:lang="hu">Ogg hang</comment>
+ <comment xml:lang="hr">Ogg zvučni zapis</comment>
+ <comment xml:lang="he">שמע Ogg</comment>
+ <comment xml:lang="gl">Son Ogg</comment>
+ <comment xml:lang="fr">audio Ogg</comment>
+ <comment xml:lang="fi">Ogg-ääni</comment>
+ <comment xml:lang="eu">Ogg audioa</comment>
+ <comment xml:lang="es">sonido Ogg</comment>
+ <comment xml:lang="en_GB">Ogg audio</comment>
+ <comment xml:lang="de">Ogg-Audio</comment>
+ <comment xml:lang="da">Ogg-lyd</comment>
+ <comment xml:lang="ca">àudio Ogg</comment>
+ <comment xml:lang="bg">Аудио — Ogg</comment>
+ <comment xml:lang="be">аўдыя Ogg</comment>
+ <comment xml:lang="ar">صوت Ogg</comment>
<sub-class-of type="application/ogg"/>
- <magic priority="50">
- <match value="OggS" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="OggS" offset="0"/>
</magic>
<glob pattern="*.oga"/>
<glob pattern="*.ogg"/>
@@ -17144,58 +18703,46 @@
<alias type="audio/x-ogg"/>
</mime-type>
<mime-type type="video/ogg">
- <comment>Ogg Video</comment>
- <comment xml:lang="ar">Ogg مرئي</comment>
- <comment xml:lang="ast">Videu n'Ogg</comment>
- <comment xml:lang="be@latin">Videa Ogg</comment>
- <comment xml:lang="bg">Видео — Ogg</comment>
- <comment xml:lang="ca">vídeo Ogg</comment>
- <comment xml:lang="cs">video Ogg</comment>
- <comment xml:lang="da">Ogg-video</comment>
- <comment xml:lang="de">Ogg-Video</comment>
- <comment xml:lang="el">Βίντεο Ogg</comment>
- <comment xml:lang="en_GB">Ogg Video</comment>
- <comment xml:lang="es">vídeo Ogg</comment>
- <comment xml:lang="eu">Ogg bideoa</comment>
- <comment xml:lang="fi">Ogg-video</comment>
- <comment xml:lang="fo">Ogg Video</comment>
- <comment xml:lang="fr">vidéo Ogg</comment>
- <comment xml:lang="ga">Físeán Ogg</comment>
- <comment xml:lang="gl">vídeo Ogg</comment>
- <comment xml:lang="he">וידאו Ogg</comment>
- <comment xml:lang="hr">Ogg video snimka</comment>
- <comment xml:lang="hu">Ogg videó</comment>
- <comment xml:lang="ia">Video Ogg</comment>
- <comment xml:lang="id">Video Ogg</comment>
- <comment xml:lang="it">Video Ogg</comment>
- <comment xml:lang="ja">Ogg 動画</comment>
- <comment xml:lang="ka">Ogg ვიდეო</comment>
- <comment xml:lang="kk">Ogg видеосы</comment>
- <comment xml:lang="ko">Ogg 동영상</comment>
- <comment xml:lang="lt">Ogg vaizdo įrašas</comment>
- <comment xml:lang="lv">Ogg video</comment>
- <comment xml:lang="nb">Ogg video</comment>
- <comment xml:lang="nl">Ogg-video</comment>
- <comment xml:lang="nn">Ogg-video</comment>
- <comment xml:lang="oc">vidèo Ogg</comment>
- <comment xml:lang="pl">Plik wideo Ogg</comment>
- <comment xml:lang="pt">vídeo Ogg</comment>
- <comment xml:lang="pt_BR">Vídeo Ogg</comment>
- <comment xml:lang="ro">Video Ogg</comment>
- <comment xml:lang="ru">Видео Ogg</comment>
- <comment xml:lang="sk">Video Ogg</comment>
- <comment xml:lang="sl">Video datoteka Ogg</comment>
- <comment xml:lang="sq">Video Ogg</comment>
- <comment xml:lang="sr">Огг снимак</comment>
- <comment xml:lang="sv">Ogg-video</comment>
- <comment xml:lang="tr">Ogg Video</comment>
- <comment xml:lang="uk">відеокліп ogg</comment>
- <comment xml:lang="vi">Ảnh động Ogg</comment>
- <comment xml:lang="zh_CN">Ogg 视频</comment>
+ <comment>Ogg video</comment>
<comment xml:lang="zh_TW">Ogg 視訊</comment>
+ <comment xml:lang="zh_CN">Ogg 视频</comment>
+ <comment xml:lang="uk">відео ogg</comment>
+ <comment xml:lang="tr">Ogg video</comment>
+ <comment xml:lang="sv">Ogg-video</comment>
+ <comment xml:lang="sr">ОГГ видео</comment>
+ <comment xml:lang="sq">video Ogg</comment>
+ <comment xml:lang="sl">Video Ogg</comment>
+ <comment xml:lang="si">ඔග් වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Ogg</comment>
+ <comment xml:lang="ru">Видео Ogg</comment>
+ <comment xml:lang="pt_BR">Vídeo Ogg</comment>
+ <comment xml:lang="pl">Plik wideo Ogg</comment>
+ <comment xml:lang="oc">vidèo Ogg</comment>
+ <comment xml:lang="nl">Ogg-video</comment>
+ <comment xml:lang="ko">Ogg 동영상</comment>
+ <comment xml:lang="kk">Ogg видеосы</comment>
+ <comment xml:lang="ja">Ogg 動画</comment>
+ <comment xml:lang="it">Video Ogg</comment>
+ <comment xml:lang="is">Ogg myndskeið</comment>
+ <comment xml:lang="id">Video Ogg</comment>
+ <comment xml:lang="hu">Ogg videó</comment>
+ <comment xml:lang="hr">Ogg video snimka</comment>
+ <comment xml:lang="he">וידאו Ogg</comment>
+ <comment xml:lang="gl">Vídeo Ogg</comment>
+ <comment xml:lang="fr">vidéo Ogg</comment>
+ <comment xml:lang="fi">Ogg-video</comment>
+ <comment xml:lang="eu">Ogg bideoa</comment>
+ <comment xml:lang="es">vídeo Ogg</comment>
+ <comment xml:lang="en_GB">Ogg video</comment>
+ <comment xml:lang="de">Ogg-Video</comment>
+ <comment xml:lang="da">Ogg-video</comment>
+ <comment xml:lang="ca">vídeo Ogg</comment>
+ <comment xml:lang="bg">Видео — Ogg</comment>
+ <comment xml:lang="be">відэа Ogg</comment>
+ <comment xml:lang="ar">فيديو Ogg</comment>
<sub-class-of type="application/ogg"/>
- <magic priority="50">
- <match value="OggS" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="OggS" offset="0"/>
</magic>
<glob pattern="*.ogv"/>
<glob pattern="*.ogg"/>
@@ -17203,63 +18750,68 @@
</mime-type>
<mime-type type="audio/x-vorbis+ogg">
<comment>Ogg Vorbis audio</comment>
- <comment xml:lang="ar">Ogg Vorbis سمعي</comment>
- <comment xml:lang="az">Ogg Vorbis audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo Ogg Vorbis</comment>
- <comment xml:lang="bg">Аудио — Ogg Vorbis</comment>
- <comment xml:lang="ca">àudio d'Ogg Vorbis</comment>
- <comment xml:lang="cs">zvuk Ogg Vorbis</comment>
- <comment xml:lang="cy">Sain Ogg Vorbis</comment>
- <comment xml:lang="da">Ogg Vorbis-lyd</comment>
- <comment xml:lang="de">Ogg-Vorbis-Audio</comment>
- <comment xml:lang="el">Ήχος Ogg Vobris</comment>
- <comment xml:lang="en_GB">Ogg Vorbis audio</comment>
- <comment xml:lang="eo">Ogg-Vorbis-sondosiero</comment>
- <comment xml:lang="es">sonido Ogg Vorbis</comment>
- <comment xml:lang="eu">Ogg Vorbis audioa</comment>
- <comment xml:lang="fi">Ogg Vorbis -ääni</comment>
- <comment xml:lang="fo">Ogg Vorbis ljóður</comment>
- <comment xml:lang="fr">audio Ogg Vorbis</comment>
- <comment xml:lang="ga">fuaim Ogg Vorbis</comment>
- <comment xml:lang="gl">son Ogg Vorbis</comment>
- <comment xml:lang="he">שמע Ogg Vorbis</comment>
- <comment xml:lang="hr">Ogg Vorbis zvučni zapis</comment>
- <comment xml:lang="hu">Ogg Vorbis hang</comment>
- <comment xml:lang="ia">Audio Ogg Vorbis</comment>
- <comment xml:lang="id">Audio Ogg Vorbis</comment>
- <comment xml:lang="it">Audio Ogg Vorbis</comment>
- <comment xml:lang="ja">Ogg Vorbis オーディオ</comment>
- <comment xml:lang="ka">Ogg Vorbis აუდიო</comment>
- <comment xml:lang="kk">Ogg Vorbis аудиосы</comment>
- <comment xml:lang="ko">Ogg Vorbis 오디오</comment>
- <comment xml:lang="lt">Ogg Vorbis garso įrašas</comment>
- <comment xml:lang="lv">Ogg Vorbis audio</comment>
- <comment xml:lang="ms">Audio Ogg Vorbis</comment>
- <comment xml:lang="nb">Ogg Vorbis lyd</comment>
- <comment xml:lang="nl">Ogg Vorbis-audio</comment>
- <comment xml:lang="nn">Ogg Vorbis-lyd</comment>
- <comment xml:lang="oc">àudio Ogg Vorbis</comment>
- <comment xml:lang="pl">Plik dźwiękowy Ogg Vorbis</comment>
- <comment xml:lang="pt">áudio Ogg Vorbis</comment>
- <comment xml:lang="pt_BR">Áudio Ogg Vorbis</comment>
- <comment xml:lang="ro">Audio Ogg Vorbis</comment>
- <comment xml:lang="ru">Аудио Ogg Vorbis</comment>
- <comment xml:lang="sk">Zvuk Ogg Vorbis</comment>
- <comment xml:lang="sl">Zvočna datoteka Ogg Vorbis</comment>
- <comment xml:lang="sq">Audio Ogg Vorbis</comment>
- <comment xml:lang="sr">Огг Ворбис звук</comment>
- <comment xml:lang="sv">Ogg Vorbis-ljud</comment>
- <comment xml:lang="tr">Ogg Vorbis sesi</comment>
- <comment xml:lang="uk">звук ogg Vorbis</comment>
- <comment xml:lang="vi">Âm thanh Vorbis Ogg</comment>
- <comment xml:lang="zh_CN">Ogg Vorbis 音频</comment>
<comment xml:lang="zh_TW">Ogg Vorbis 音訊</comment>
+ <comment xml:lang="zh_CN">Ogg Vorbis 音频</comment>
+ <comment xml:lang="vi">Âm thanh Vorbis Ogg</comment>
+ <comment xml:lang="uk">звук ogg Vorbis</comment>
+ <comment xml:lang="tr">Ogg Vorbis sesi</comment>
+ <comment xml:lang="sv">Ogg Vorbis-ljud</comment>
+ <comment xml:lang="sr">Огг Ворбис звук</comment>
+ <comment xml:lang="sq">audio Ogg Vorbis</comment>
+ <comment xml:lang="sl">Zvočna datoteka Ogg Vorbis</comment>
+ <comment xml:lang="si">Ogg Vorbis ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk Ogg Vorbis</comment>
+ <comment xml:lang="ru">Аудио Ogg Vorbis</comment>
+ <comment xml:lang="ro">Audio Ogg Vorbis</comment>
+ <comment xml:lang="pt_BR">Áudio Ogg Vorbis</comment>
+ <comment xml:lang="pt">áudio Ogg Vorbis</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Ogg Vorbis</comment>
+ <comment xml:lang="oc">àudio Ogg Vorbis</comment>
+ <comment xml:lang="nn">Ogg Vorbis-lyd</comment>
+ <comment xml:lang="nl">Ogg Vorbis-audio</comment>
+ <comment xml:lang="nb">Ogg Vorbis lyd</comment>
+ <comment xml:lang="ms">Audio Ogg Vorbis</comment>
+ <comment xml:lang="lv">Ogg Vorbis audio</comment>
+ <comment xml:lang="lt">Ogg Vorbis garso įrašas</comment>
+ <comment xml:lang="ko">Ogg Vorbis 오디오</comment>
+ <comment xml:lang="kk">Ogg Vorbis аудиосы</comment>
+ <comment xml:lang="ka">Ogg Vorbis აუდიო</comment>
+ <comment xml:lang="ja">Ogg Vorbis オーディオ</comment>
+ <comment xml:lang="it">Audio Ogg Vorbis</comment>
+ <comment xml:lang="is">Ogg Vorbis hljóðskrá</comment>
+ <comment xml:lang="id">Audio Ogg Vorbis</comment>
+ <comment xml:lang="ia">Audio Ogg Vorbis</comment>
+ <comment xml:lang="hu">Ogg Vorbis hang</comment>
+ <comment xml:lang="hr">Ogg Vorbis zvučni zapis</comment>
+ <comment xml:lang="he">שמע Ogg Vorbis</comment>
+ <comment xml:lang="gl">son Ogg Vorbis</comment>
+ <comment xml:lang="ga">fuaim Ogg Vorbis</comment>
+ <comment xml:lang="fur">audio Ogg Vorbis</comment>
+ <comment xml:lang="fr">audio Ogg Vorbis</comment>
+ <comment xml:lang="fo">Ogg Vorbis ljóður</comment>
+ <comment xml:lang="fi">Ogg Vorbis -ääni</comment>
+ <comment xml:lang="eu">Ogg Vorbis audioa</comment>
+ <comment xml:lang="es">sonido Ogg Vorbis</comment>
+ <comment xml:lang="eo">Ogg-Vorbis-sondosiero</comment>
+ <comment xml:lang="en_GB">Ogg Vorbis audio</comment>
+ <comment xml:lang="el">Ήχος Ogg Vobris</comment>
+ <comment xml:lang="de">Ogg-Vorbis-Audio</comment>
+ <comment xml:lang="da">Ogg Vorbis-lyd</comment>
+ <comment xml:lang="cy">Sain Ogg Vorbis</comment>
+ <comment xml:lang="cs">zvuk Ogg Vorbis</comment>
+ <comment xml:lang="ca">àudio Ogg Vorbis</comment>
+ <comment xml:lang="bg">Аудио — Ogg Vorbis</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Ogg Vorbis</comment>
+ <comment xml:lang="be">аўдыя Ogg Vorbis</comment>
+ <comment xml:lang="az">Ogg Vorbis audio faylı</comment>
+ <comment xml:lang="ar">صوت Ogg Vorbis</comment>
+ <comment xml:lang="af">Ogg Vorbis-oudio</comment>
<sub-class-of type="audio/ogg"/>
<alias type="audio/vorbis"/>
<alias type="audio/x-vorbis"/>
<magic priority="80">
- <match value="OggS" type="string" offset="0">
- <match value="\x01vorbis" type="string" offset="28"/>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="\x01vorbis" offset="28"/>
</match>
</magic>
<glob pattern="*.oga"/>
@@ -17267,58 +18819,63 @@
</mime-type>
<mime-type type="audio/x-flac+ogg">
<comment>Ogg FLAC audio</comment>
- <comment xml:lang="ar">Ogg FLAC سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Ogg FLAC</comment>
- <comment xml:lang="bg">Аудио — Ogg FLAC</comment>
- <comment xml:lang="ca">àudio FLAC d'Ogg</comment>
- <comment xml:lang="cs">zvuk Ogg FLAC</comment>
- <comment xml:lang="da">Ogg FLAC-lyd</comment>
- <comment xml:lang="de">Ogg-FLAC-Audio</comment>
- <comment xml:lang="el">Ήχος Ogg FLAC</comment>
- <comment xml:lang="en_GB">Ogg FLAC audio</comment>
- <comment xml:lang="es">sonido Ogg FLAC</comment>
- <comment xml:lang="eu">Ogg FLAC audioa</comment>
- <comment xml:lang="fi">Ogg FLAC -ääni</comment>
- <comment xml:lang="fo">Ogg FLAC ljóður</comment>
- <comment xml:lang="fr">audio Ogg FLAC</comment>
- <comment xml:lang="ga">fuaim Ogg FLAC</comment>
- <comment xml:lang="gl">son Ogg FLAC</comment>
- <comment xml:lang="he">שמע Ogg FLAC</comment>
- <comment xml:lang="hr">Ogg FLAC zvučni zapis</comment>
- <comment xml:lang="hu">Ogg FLAC hang</comment>
- <comment xml:lang="ia">Audio Ogg FLAC</comment>
- <comment xml:lang="id">Audio Ogg FLAC</comment>
- <comment xml:lang="it">Audio Ogg FLAC</comment>
- <comment xml:lang="ja">Ogg FLAC オーディオ</comment>
- <comment xml:lang="ka">Ogg FLAC აუდიო</comment>
- <comment xml:lang="kk">Ogg FLAC аудиосы</comment>
- <comment xml:lang="ko">Ogg FLAC 오디오</comment>
- <comment xml:lang="lt">Ogg FLAC garso įrašas</comment>
- <comment xml:lang="lv">Ogg FLAC audio</comment>
- <comment xml:lang="nb">Ogg FLAC-lyd</comment>
- <comment xml:lang="nl">Ogg FLAC-audio</comment>
- <comment xml:lang="nn">Ogg FLAC-lyd</comment>
- <comment xml:lang="oc">àudio Ogg FLAC</comment>
- <comment xml:lang="pl">Plik dźwiękowy Ogg FLAC</comment>
- <comment xml:lang="pt">áudio Ogg FLAC</comment>
- <comment xml:lang="pt_BR">Áudio Ogg FLAC</comment>
- <comment xml:lang="ro">Audio Ogg FLAC</comment>
- <comment xml:lang="ru">Аудио Ogg FLAC</comment>
- <comment xml:lang="sk">Zvuk Ogg FLAC</comment>
- <comment xml:lang="sl">Zvočna datoteka Ogg FLAC</comment>
- <comment xml:lang="sq">Audio Ogg FLAC</comment>
- <comment xml:lang="sr">Огг ФЛАЦ звук</comment>
- <comment xml:lang="sv">Ogg FLAC-ljud</comment>
- <comment xml:lang="tr">Ogg FLAC sesi</comment>
- <comment xml:lang="uk">звук ogg FLAC</comment>
- <comment xml:lang="vi">Âm thanh FLAC Ogg</comment>
- <comment xml:lang="zh_CN">Ogg FLAC 音频</comment>
<comment xml:lang="zh_TW">Ogg FLAC 音訊</comment>
+ <comment xml:lang="zh_CN">Ogg FLAC 音频</comment>
+ <comment xml:lang="vi">Âm thanh FLAC Ogg</comment>
+ <comment xml:lang="uk">звук ogg FLAC</comment>
+ <comment xml:lang="tr">Ogg FLAC sesi</comment>
+ <comment xml:lang="sv">Ogg FLAC-ljud</comment>
+ <comment xml:lang="sr">Огг ФЛАЦ звук</comment>
+ <comment xml:lang="sq">audio Ogg FLAC</comment>
+ <comment xml:lang="sl">Zvočna datoteka Ogg FLAC</comment>
+ <comment xml:lang="si">Ogg FLAC ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk Ogg FLAC</comment>
+ <comment xml:lang="ru">Аудио Ogg FLAC</comment>
+ <comment xml:lang="ro">Audio Ogg FLAC</comment>
+ <comment xml:lang="pt_BR">Áudio Ogg FLAC</comment>
+ <comment xml:lang="pt">áudio Ogg FLAC</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Ogg FLAC</comment>
+ <comment xml:lang="oc">àudio Ogg FLAC</comment>
+ <comment xml:lang="nn">Ogg FLAC-lyd</comment>
+ <comment xml:lang="nl">Ogg FLAC-audio</comment>
+ <comment xml:lang="nb">Ogg FLAC-lyd</comment>
+ <comment xml:lang="lv">Ogg FLAC audio</comment>
+ <comment xml:lang="lt">Ogg FLAC garso įrašas</comment>
+ <comment xml:lang="ko">Ogg FLAC 오디오</comment>
+ <comment xml:lang="kk">Ogg FLAC аудиосы</comment>
+ <comment xml:lang="ka">Ogg FLAC აუდიო</comment>
+ <comment xml:lang="ja">Ogg FLAC オーディオ</comment>
+ <comment xml:lang="it">Audio Ogg FLAC</comment>
+ <comment xml:lang="is">Ogg FLAC hljóðskrá</comment>
+ <comment xml:lang="id">Audio Ogg FLAC</comment>
+ <comment xml:lang="ia">Audio Ogg FLAC</comment>
+ <comment xml:lang="hu">Ogg FLAC hang</comment>
+ <comment xml:lang="hr">Ogg FLAC zvučni zapis</comment>
+ <comment xml:lang="he">שמע Ogg FLAC</comment>
+ <comment xml:lang="gl">son Ogg FLAC</comment>
+ <comment xml:lang="ga">fuaim Ogg FLAC</comment>
+ <comment xml:lang="fur">audio Ogg FLAC</comment>
+ <comment xml:lang="fr">audio Ogg FLAC</comment>
+ <comment xml:lang="fo">Ogg FLAC ljóður</comment>
+ <comment xml:lang="fi">Ogg FLAC -ääni</comment>
+ <comment xml:lang="eu">Ogg FLAC audioa</comment>
+ <comment xml:lang="es">sonido Ogg FLAC</comment>
+ <comment xml:lang="en_GB">Ogg FLAC audio</comment>
+ <comment xml:lang="el">Ήχος Ogg FLAC</comment>
+ <comment xml:lang="de">Ogg-FLAC-Audio</comment>
+ <comment xml:lang="da">Ogg FLAC-lyd</comment>
+ <comment xml:lang="cs">zvuk Ogg FLAC</comment>
+ <comment xml:lang="ca">àudio Ogg FLAC</comment>
+ <comment xml:lang="bg">Аудио — Ogg FLAC</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Ogg FLAC</comment>
+ <comment xml:lang="be">аўдыя Ogg FLAC</comment>
+ <comment xml:lang="ar">صوت Ogg FLAC</comment>
+ <comment xml:lang="af">Ogg FLAC-oudio</comment>
<sub-class-of type="audio/ogg"/>
<alias type="audio/x-oggflac"/>
<magic priority="80">
- <match value="OggS" type="string" offset="0">
- <match value="fLaC" type="string" offset="28"/>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="fLaC" offset="28"/>
</match>
<match value="OggS" type="string" offset="0">
<match value="\177FLAC" type="string" offset="28"/>
@@ -17329,841 +18886,1014 @@
</mime-type>
<mime-type type="audio/x-opus+ogg">
<comment>Opus audio</comment>
- <comment xml:lang="ca">àudio d'Opus</comment>
- <comment xml:lang="cs">zvuk Opus</comment>
- <comment xml:lang="da">Opus-lyd</comment>
- <comment xml:lang="de">Opus-Audio</comment>
- <comment xml:lang="el">Ήχος Opus </comment>
- <comment xml:lang="en_GB">Opus audio</comment>
- <comment xml:lang="es">sonido Opus</comment>
- <comment xml:lang="eu">Opus audioa</comment>
- <comment xml:lang="fi">Opus-ääni</comment>
- <comment xml:lang="fr">audio Opus</comment>
- <comment xml:lang="ga">fuaim Opus</comment>
- <comment xml:lang="gl">Son Opus</comment>
- <comment xml:lang="he">שמע Opus</comment>
- <comment xml:lang="hr">Opus zvučni zapis</comment>
- <comment xml:lang="hu">Opus hang</comment>
- <comment xml:lang="ia">Audio Opus</comment>
- <comment xml:lang="id">Audio Opus</comment>
- <comment xml:lang="it">Audio Opus</comment>
- <comment xml:lang="kk">Opus аудиосы</comment>
- <comment xml:lang="ko">Opus 오디오</comment>
- <comment xml:lang="oc">àudio Opus</comment>
- <comment xml:lang="pl">Plik dźwiękowy Opus</comment>
- <comment xml:lang="pt">áudio Opus</comment>
- <comment xml:lang="pt_BR">Áudio Opus</comment>
- <comment xml:lang="ru">Аудио Opus</comment>
- <comment xml:lang="sk">Zvuk Opu</comment>
- <comment xml:lang="sl">Zvočna datoteka Opus</comment>
- <comment xml:lang="sr">Опус звук</comment>
- <comment xml:lang="sv">Opus-ljud</comment>
- <comment xml:lang="tr">Opus sesi</comment>
- <comment xml:lang="uk">звук Opus</comment>
- <comment xml:lang="zh_CN">Opus 音频</comment>
<comment xml:lang="zh_TW">Opus 音訊</comment>
+ <comment xml:lang="zh_CN">Opus 音频</comment>
+ <comment xml:lang="uk">звук Opus</comment>
+ <comment xml:lang="tr">Opus sesi</comment>
+ <comment xml:lang="sv">Opus-ljud</comment>
+ <comment xml:lang="sr">Опус звук</comment>
+ <comment xml:lang="sq">audio Opus</comment>
+ <comment xml:lang="sl">Zvočna datoteka Opus</comment>
+ <comment xml:lang="si">ඕපස් ඕඩියෝ</comment>
+ <comment xml:lang="sk">Zvuk Opu</comment>
+ <comment xml:lang="ru">Аудио Opus</comment>
+ <comment xml:lang="pt_BR">Áudio Opus</comment>
+ <comment xml:lang="pt">áudio Opus</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Opus</comment>
+ <comment xml:lang="oc">àudio Opus</comment>
+ <comment xml:lang="nl">Opus-audio</comment>
+ <comment xml:lang="ko">Opus 오디오</comment>
+ <comment xml:lang="kk">Opus аудиосы</comment>
+ <comment xml:lang="ja">Opus オーディオ</comment>
+ <comment xml:lang="it">Audio Opus</comment>
+ <comment xml:lang="is">Opus hljóðskrá</comment>
+ <comment xml:lang="id">Audio Opus</comment>
+ <comment xml:lang="ia">Audio Opus</comment>
+ <comment xml:lang="hu">Opus hang</comment>
+ <comment xml:lang="hr">Opus zvučni zapis</comment>
+ <comment xml:lang="he">שמע Opus</comment>
+ <comment xml:lang="gl">Son Opus</comment>
+ <comment xml:lang="ga">fuaim Opus</comment>
+ <comment xml:lang="fur">audio Opus</comment>
+ <comment xml:lang="fr">audio Opus</comment>
+ <comment xml:lang="fi">Opus-ääni</comment>
+ <comment xml:lang="eu">Opus audioa</comment>
+ <comment xml:lang="es">sonido Opus</comment>
+ <comment xml:lang="en_GB">Opus audio</comment>
+ <comment xml:lang="el">Ήχος Opus </comment>
+ <comment xml:lang="de">Opus-Audio</comment>
+ <comment xml:lang="da">Opus-lyd</comment>
+ <comment xml:lang="cs">zvuk Opus</comment>
+ <comment xml:lang="ca">àudio Opus</comment>
+ <comment xml:lang="bg">Аудио — Opus</comment>
+ <comment xml:lang="be">аўдыя Opus</comment>
+ <comment xml:lang="ar">صوت Opus</comment>
+ <comment xml:lang="af">Opus-oudio</comment>
<sub-class-of type="audio/ogg"/>
<magic priority="80">
- <match value="OggS" type="string" offset="0">
- <match value="OpusHead" type="string" offset="28"/>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="OpusHead" offset="28"/>
</match>
</magic>
<glob pattern="*.opus"/>
</mime-type>
<mime-type type="audio/x-speex+ogg">
<comment>Ogg Speex audio</comment>
- <comment xml:lang="ar">Ogg Speex سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Ogg Speex</comment>
- <comment xml:lang="bg">Аудио — Ogg Speex</comment>
- <comment xml:lang="ca">àudio Speex d'Ogg</comment>
- <comment xml:lang="cs">zvuk Ogg Speex</comment>
- <comment xml:lang="da">Ogg Speex-lyd</comment>
- <comment xml:lang="de">Ogg-Speex-Audio</comment>
- <comment xml:lang="el">Ήχος Ogg Speex</comment>
- <comment xml:lang="en_GB">Ogg Speex audio</comment>
- <comment xml:lang="es">sonido Ogg Speex</comment>
- <comment xml:lang="eu">Ogg Speex audioa</comment>
- <comment xml:lang="fi">Ogg Speex -ääni</comment>
- <comment xml:lang="fo">Ogg Speex ljóður</comment>
- <comment xml:lang="fr">audio Ogg Speex</comment>
- <comment xml:lang="ga">fuaim Ogg Speex</comment>
- <comment xml:lang="gl">son Ogg Speex</comment>
- <comment xml:lang="he">שמע Ogg Speex</comment>
- <comment xml:lang="hr">Ogg Speex zvučni zapis</comment>
- <comment xml:lang="hu">Ogg Speex hang</comment>
- <comment xml:lang="ia">Audio Ogg Speex</comment>
- <comment xml:lang="id">Audio Ogg Speex</comment>
- <comment xml:lang="it">Audio Ogg Speex</comment>
- <comment xml:lang="ja">Ogg Speex オーディオ</comment>
- <comment xml:lang="ka">Ogg Speex აუდიო</comment>
- <comment xml:lang="kk">Ogg Speex аудиосы</comment>
- <comment xml:lang="ko">Ogg Speex 오디오</comment>
- <comment xml:lang="lt">Ogg Speex garso įrašas</comment>
- <comment xml:lang="lv">Ogg Speex audio</comment>
- <comment xml:lang="nb">Ogg Speex lyd</comment>
- <comment xml:lang="nl">Ogg Speex-audio</comment>
- <comment xml:lang="nn">Ogg Speex-lyd</comment>
- <comment xml:lang="oc">àudio Ogg Speex</comment>
- <comment xml:lang="pl">Plik dźwiękowy Ogg Speex</comment>
- <comment xml:lang="pt">áudio Ogg Speex</comment>
- <comment xml:lang="pt_BR">Áudio Ogg Speex</comment>
- <comment xml:lang="ro">Audio Ogg Speex</comment>
- <comment xml:lang="ru">Аудио Ogg Speex</comment>
- <comment xml:lang="sk">Zvuk Ogg Speex</comment>
- <comment xml:lang="sl">Zvočna datoteka Ogg Speex</comment>
- <comment xml:lang="sq">Audio Ogg Speex</comment>
- <comment xml:lang="sr">Огг Спикс звук</comment>
- <comment xml:lang="sv">Ogg Speex-ljud</comment>
- <comment xml:lang="tr">Ogg Speex sesi</comment>
- <comment xml:lang="uk">звук ogg Speex</comment>
- <comment xml:lang="vi">Âm thanh Speex Ogg</comment>
- <comment xml:lang="zh_CN">Ogg Speex 音频</comment>
<comment xml:lang="zh_TW">Ogg Speex 音訊</comment>
+ <comment xml:lang="zh_CN">Ogg Speex 音频</comment>
+ <comment xml:lang="vi">Âm thanh Speex Ogg</comment>
+ <comment xml:lang="uk">звук ogg Speex</comment>
+ <comment xml:lang="tr">Ogg Speex sesi</comment>
+ <comment xml:lang="sv">Ogg Speex-ljud</comment>
+ <comment xml:lang="sr">Огг Спикс звук</comment>
+ <comment xml:lang="sq">audio Ogg Speex</comment>
+ <comment xml:lang="sl">Zvočna datoteka Ogg Speex</comment>
+ <comment xml:lang="si">Ogg Speex ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk Ogg Speex</comment>
+ <comment xml:lang="ru">Аудио Ogg Speex</comment>
+ <comment xml:lang="ro">Audio Ogg Speex</comment>
+ <comment xml:lang="pt_BR">Áudio Ogg Speex</comment>
+ <comment xml:lang="pt">áudio Ogg Speex</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Ogg Speex</comment>
+ <comment xml:lang="oc">àudio Ogg Speex</comment>
+ <comment xml:lang="nn">Ogg Speex-lyd</comment>
+ <comment xml:lang="nl">Ogg Speex-audio</comment>
+ <comment xml:lang="nb">Ogg Speex lyd</comment>
+ <comment xml:lang="lv">Ogg Speex audio</comment>
+ <comment xml:lang="lt">Ogg Speex garso įrašas</comment>
+ <comment xml:lang="ko">Ogg Speex 오디오</comment>
+ <comment xml:lang="kk">Ogg Speex аудиосы</comment>
+ <comment xml:lang="ka">Ogg Speex აუდიო</comment>
+ <comment xml:lang="ja">Ogg Speex オーディオ</comment>
+ <comment xml:lang="it">Audio Ogg Speex</comment>
+ <comment xml:lang="is">Ogg Speex hljóðskrá</comment>
+ <comment xml:lang="id">Audio Ogg Speex</comment>
+ <comment xml:lang="ia">Audio Ogg Speex</comment>
+ <comment xml:lang="hu">Ogg Speex hang</comment>
+ <comment xml:lang="hr">Ogg Speex zvučni zapis</comment>
+ <comment xml:lang="he">שמע Ogg Speex</comment>
+ <comment xml:lang="gl">son Ogg Speex</comment>
+ <comment xml:lang="ga">fuaim Ogg Speex</comment>
+ <comment xml:lang="fur">audio Ogg Speex</comment>
+ <comment xml:lang="fr">audio Ogg Speex</comment>
+ <comment xml:lang="fo">Ogg Speex ljóður</comment>
+ <comment xml:lang="fi">Ogg Speex -ääni</comment>
+ <comment xml:lang="eu">Ogg Speex audioa</comment>
+ <comment xml:lang="es">sonido Ogg Speex</comment>
+ <comment xml:lang="en_GB">Ogg Speex audio</comment>
+ <comment xml:lang="el">Ήχος Ogg Speex</comment>
+ <comment xml:lang="de">Ogg-Speex-Audio</comment>
+ <comment xml:lang="da">Ogg Speex-lyd</comment>
+ <comment xml:lang="cs">zvuk Ogg Speex</comment>
+ <comment xml:lang="ca">àudio Ogg Speex</comment>
+ <comment xml:lang="bg">Аудио — Ogg Speex</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Ogg Speex</comment>
+ <comment xml:lang="be">аўдыя Ogg Speex</comment>
+ <comment xml:lang="ar">صوت Ogg Speex</comment>
+ <comment xml:lang="af">Ogg Speex-oudio</comment>
<sub-class-of type="audio/ogg"/>
<magic priority="80">
- <match value="OggS" type="string" offset="0">
- <match value="Speex " type="string" offset="28"/>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="Speex " offset="28"/>
</match>
</magic>
<glob pattern="*.oga"/>
<glob pattern="*.ogg"/>
+ <glob pattern="*.spx"/>
</mime-type>
<mime-type type="audio/x-speex">
<comment>Speex audio</comment>
- <comment xml:lang="ar">Speex سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Speex</comment>
- <comment xml:lang="bg">Аудио — Speex</comment>
- <comment xml:lang="ca">àudio de Speex</comment>
- <comment xml:lang="cs">zvuk Speex</comment>
- <comment xml:lang="da">Speexlyd</comment>
- <comment xml:lang="de">Speex-Audio</comment>
- <comment xml:lang="el">Ήχος Speex</comment>
- <comment xml:lang="en_GB">Speex audio</comment>
- <comment xml:lang="es">sonido Speex</comment>
- <comment xml:lang="eu">Speex audioa</comment>
- <comment xml:lang="fi">Speex-ääni</comment>
- <comment xml:lang="fo">Speex ljóður</comment>
- <comment xml:lang="fr">audio Speex</comment>
- <comment xml:lang="ga">fuaim Speex</comment>
- <comment xml:lang="gl">son Speex</comment>
- <comment xml:lang="he">שמע של Speex</comment>
- <comment xml:lang="hr">Speex zvučni zapis</comment>
- <comment xml:lang="hu">Speex hang</comment>
- <comment xml:lang="ia">Audio Speex</comment>
- <comment xml:lang="id">Audio Speex</comment>
- <comment xml:lang="it">Audio Speex</comment>
- <comment xml:lang="ja">Speex オーディオ</comment>
- <comment xml:lang="kk">Speex аудиосы</comment>
- <comment xml:lang="ko">Speex 오디오</comment>
- <comment xml:lang="lt">Speex garso įrašas</comment>
- <comment xml:lang="lv">Speex audio</comment>
- <comment xml:lang="nb">Speex lyd</comment>
- <comment xml:lang="nl">Speex-audio</comment>
- <comment xml:lang="nn">Speex-lyd</comment>
- <comment xml:lang="oc">àudio Speex</comment>
- <comment xml:lang="pl">Plik dźwiękowy Speex</comment>
- <comment xml:lang="pt">áudio Speex</comment>
- <comment xml:lang="pt_BR">Áudio Speex</comment>
- <comment xml:lang="ro">Audio Speex</comment>
- <comment xml:lang="ru">Аудио Speex</comment>
- <comment xml:lang="sk">Zvuk Speex</comment>
- <comment xml:lang="sl">Zvočna datoteka Speex</comment>
- <comment xml:lang="sq">Audio Speex</comment>
- <comment xml:lang="sr">Спикс звук</comment>
- <comment xml:lang="sv">Speex-ljud</comment>
- <comment xml:lang="tr">Speex sesi</comment>
- <comment xml:lang="uk">звук Speex</comment>
- <comment xml:lang="vi">Âm thanh Speex</comment>
- <comment xml:lang="zh_CN">Speex 音频</comment>
<comment xml:lang="zh_TW">Speex 音訊</comment>
- <magic priority="50">
- <match value="Speex" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">Speex 音频</comment>
+ <comment xml:lang="vi">Âm thanh Speex</comment>
+ <comment xml:lang="uk">звук Speex</comment>
+ <comment xml:lang="tr">Speex sesi</comment>
+ <comment xml:lang="sv">Speex-ljud</comment>
+ <comment xml:lang="sr">Спикс звук</comment>
+ <comment xml:lang="sq">audio Speex</comment>
+ <comment xml:lang="sl">Zvočna datoteka Speex</comment>
+ <comment xml:lang="si">ස්පීක්ස් ඕඩියෝ</comment>
+ <comment xml:lang="sk">Zvuk Speex</comment>
+ <comment xml:lang="ru">Аудио Speex</comment>
+ <comment xml:lang="ro">Audio Speex</comment>
+ <comment xml:lang="pt_BR">Áudio Speex</comment>
+ <comment xml:lang="pt">áudio Speex</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Speex</comment>
+ <comment xml:lang="oc">àudio Speex</comment>
+ <comment xml:lang="nn">Speex-lyd</comment>
+ <comment xml:lang="nl">Speex-audio</comment>
+ <comment xml:lang="nb">Speex lyd</comment>
+ <comment xml:lang="lv">Speex audio</comment>
+ <comment xml:lang="lt">Speex garso įrašas</comment>
+ <comment xml:lang="ko">Speex 오디오</comment>
+ <comment xml:lang="kk">Speex аудиосы</comment>
+ <comment xml:lang="ja">Speex オーディオ</comment>
+ <comment xml:lang="it">Audio Speex</comment>
+ <comment xml:lang="is">Speex hljóðskrá</comment>
+ <comment xml:lang="id">Audio Speex</comment>
+ <comment xml:lang="ia">Audio Speex</comment>
+ <comment xml:lang="hu">Speex hang</comment>
+ <comment xml:lang="hr">Speex zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Speex</comment>
+ <comment xml:lang="gl">son Speex</comment>
+ <comment xml:lang="ga">fuaim Speex</comment>
+ <comment xml:lang="fur">audio Speex</comment>
+ <comment xml:lang="fr">audio Speex</comment>
+ <comment xml:lang="fo">Speex ljóður</comment>
+ <comment xml:lang="fi">Speex-ääni</comment>
+ <comment xml:lang="eu">Speex audioa</comment>
+ <comment xml:lang="es">sonido Speex</comment>
+ <comment xml:lang="en_GB">Speex audio</comment>
+ <comment xml:lang="el">Ήχος Speex</comment>
+ <comment xml:lang="de">Speex-Audio</comment>
+ <comment xml:lang="da">Speex-lyd</comment>
+ <comment xml:lang="cs">zvuk Speex</comment>
+ <comment xml:lang="ca">àudio Speex</comment>
+ <comment xml:lang="bg">Аудио — Speex</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Speex</comment>
+ <comment xml:lang="be">аўдыя Speex</comment>
+ <comment xml:lang="ar">صوت Speex</comment>
+ <comment xml:lang="af">Speex-oudio</comment>
+ <magic>
+ <match type="string" value="Speex" offset="0"/>
</magic>
<glob pattern="*.spx"/>
</mime-type>
<mime-type type="video/x-theora+ogg">
<comment>Ogg Theora video</comment>
- <comment xml:lang="ar">Ogg Theora مرئي</comment>
- <comment xml:lang="ast">Videu n'Ogg Theora</comment>
- <comment xml:lang="be@latin">Videa Ogg Theora</comment>
- <comment xml:lang="bg">Видео — Ogg Theora</comment>
- <comment xml:lang="ca">vídeo Ogg Theora</comment>
- <comment xml:lang="cs">video Ogg Theora</comment>
- <comment xml:lang="da">Ogg Theora-video</comment>
- <comment xml:lang="de">Ogg-Theora-Video</comment>
- <comment xml:lang="el">Βίντεο Ogg Theora</comment>
- <comment xml:lang="en_GB">Ogg Theora video</comment>
- <comment xml:lang="es">vídeo Ogg Theora</comment>
- <comment xml:lang="eu">Ogg Theora bideoa</comment>
- <comment xml:lang="fi">Ogg Theora -video</comment>
- <comment xml:lang="fo">Ogg Theora video</comment>
- <comment xml:lang="fr">vidéo Ogg Theora</comment>
- <comment xml:lang="ga">físeán Ogg Theora</comment>
- <comment xml:lang="gl">vídeo Ogg Theora</comment>
- <comment xml:lang="he">שמע Ogg Theora</comment>
- <comment xml:lang="hr">Ogg Theora video snimka</comment>
- <comment xml:lang="hu">Ogg Theora videó</comment>
- <comment xml:lang="ia">Video Ogg Theora</comment>
- <comment xml:lang="id">Video Ogg Theora</comment>
- <comment xml:lang="it">Video Ogg Theora</comment>
- <comment xml:lang="ja">Ogg Theora 動画</comment>
- <comment xml:lang="ka">Ogg Theora ვიდეო</comment>
- <comment xml:lang="kk">Ogg Theora видеосы</comment>
- <comment xml:lang="ko">Ogg Theora 동영상</comment>
- <comment xml:lang="lt">Ogg Theora vaizdo įrašas</comment>
- <comment xml:lang="lv">Ogg Theora video</comment>
- <comment xml:lang="nb">Ogg Theora video</comment>
- <comment xml:lang="nl">Ogg Theora-video</comment>
- <comment xml:lang="nn">Ogg Theora-video</comment>
- <comment xml:lang="oc">vidèo Ogg Theora</comment>
- <comment xml:lang="pl">Plik wideo Ogg Theora</comment>
- <comment xml:lang="pt">vídeo Ogg Theora</comment>
- <comment xml:lang="pt_BR">Vídeo Ogg Theora</comment>
- <comment xml:lang="ro">Video Ogg Theora</comment>
- <comment xml:lang="ru">Видео Ogg Theora</comment>
- <comment xml:lang="sk">Video Ogg Theora</comment>
- <comment xml:lang="sl">Video datoteka Ogg Theora</comment>
- <comment xml:lang="sq">Video Ogg Theora</comment>
- <comment xml:lang="sr">Огг Теора видео</comment>
- <comment xml:lang="sv">Ogg Theora-video</comment>
- <comment xml:lang="tr">Ogg Theora video</comment>
- <comment xml:lang="uk">відеокліп ogg Theora</comment>
- <comment xml:lang="vi">Ảnh động Theora Ogg</comment>
- <comment xml:lang="zh_CN">Ogg Theora 视频</comment>
<comment xml:lang="zh_TW">Ogg Theora 視訊</comment>
+ <comment xml:lang="zh_CN">Ogg Theora 视频</comment>
+ <comment xml:lang="vi">Ảnh động Theora Ogg</comment>
+ <comment xml:lang="uk">відеокліп ogg Theora</comment>
+ <comment xml:lang="tr">Ogg Theora video</comment>
+ <comment xml:lang="sv">Ogg Theora-video</comment>
+ <comment xml:lang="sr">Огг Теора видео</comment>
+ <comment xml:lang="sq">video Ogg Theora</comment>
+ <comment xml:lang="sl">Video datoteka Ogg Theora</comment>
+ <comment xml:lang="si">Ogg Theora වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Ogg Theora</comment>
+ <comment xml:lang="ru">Видео Ogg Theora</comment>
+ <comment xml:lang="ro">Video Ogg Theora</comment>
+ <comment xml:lang="pt_BR">Vídeo Ogg Theora</comment>
+ <comment xml:lang="pt">vídeo Ogg Theora</comment>
+ <comment xml:lang="pl">Plik wideo Ogg Theora</comment>
+ <comment xml:lang="oc">vidèo Ogg Theora</comment>
+ <comment xml:lang="nn">Ogg Theora-video</comment>
+ <comment xml:lang="nl">Ogg Theora-video</comment>
+ <comment xml:lang="nb">Ogg Theora video</comment>
+ <comment xml:lang="lv">Ogg Theora video</comment>
+ <comment xml:lang="lt">Ogg Theora vaizdo įrašas</comment>
+ <comment xml:lang="ko">Ogg Theora 동영상</comment>
+ <comment xml:lang="kk">Ogg Theora видеосы</comment>
+ <comment xml:lang="ka">Ogg Theora ვიდეო</comment>
+ <comment xml:lang="ja">Ogg Theora 動画</comment>
+ <comment xml:lang="it">Video Ogg Theora</comment>
+ <comment xml:lang="is">Ogg Theora myndskeið</comment>
+ <comment xml:lang="id">Video Ogg Theora</comment>
+ <comment xml:lang="ia">Video Ogg Theora</comment>
+ <comment xml:lang="hu">Ogg Theora videó</comment>
+ <comment xml:lang="hr">Ogg Theora video snimka</comment>
+ <comment xml:lang="he">שמע Ogg Theora</comment>
+ <comment xml:lang="gl">vídeo Ogg Theora</comment>
+ <comment xml:lang="ga">físeán Ogg Theora</comment>
+ <comment xml:lang="fur">video Ogg Theora</comment>
+ <comment xml:lang="fr">vidéo Ogg Theora</comment>
+ <comment xml:lang="fo">Ogg Theora video</comment>
+ <comment xml:lang="fi">Ogg Theora -video</comment>
+ <comment xml:lang="eu">Ogg Theora bideoa</comment>
+ <comment xml:lang="es">vídeo Ogg Theora</comment>
+ <comment xml:lang="en_GB">Ogg Theora video</comment>
+ <comment xml:lang="el">Βίντεο Ogg Theora</comment>
+ <comment xml:lang="de">Ogg-Theora-Video</comment>
+ <comment xml:lang="da">Ogg Theora-video</comment>
+ <comment xml:lang="cs">video Ogg Theora</comment>
+ <comment xml:lang="ca">vídeo Ogg Theora</comment>
+ <comment xml:lang="bg">Видео — Ogg Theora</comment>
+ <comment xml:lang="be@latin">Videa Ogg Theora</comment>
+ <comment xml:lang="be">відэа Ogg Theora</comment>
+ <comment xml:lang="ast">Videu n'Ogg Theora</comment>
+ <comment xml:lang="ar">فيديو Ogg Theora</comment>
+ <comment xml:lang="af">Ogg Theora-video</comment>
<sub-class-of type="video/ogg"/>
<alias type="video/x-theora"/>
<magic priority="80">
- <match value="OggS" type="string" offset="0">
- <match value="\x80theora" type="string" offset="28"/>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="\x80theora" offset="28"/>
</match>
</magic>
<glob pattern="*.ogg"/>
</mime-type>
<mime-type type="video/x-ogm+ogg">
<comment>OGM video</comment>
- <comment xml:lang="ar">OGM مرئي</comment>
- <comment xml:lang="ast">Videu n'OGM</comment>
- <comment xml:lang="be@latin">Videa OGM</comment>
- <comment xml:lang="bg">Видео — OGM</comment>
- <comment xml:lang="ca">vídeo OGM</comment>
- <comment xml:lang="cs">video OGM</comment>
- <comment xml:lang="da">OGM-video</comment>
- <comment xml:lang="de">OGM-Video</comment>
- <comment xml:lang="el">Βίντεο OGM</comment>
- <comment xml:lang="en_GB">OGM video</comment>
- <comment xml:lang="eo">OGM-video</comment>
- <comment xml:lang="es">vídeo OGM</comment>
- <comment xml:lang="eu">OGM bideoa</comment>
- <comment xml:lang="fi">OGM-video</comment>
- <comment xml:lang="fo">OGM video</comment>
- <comment xml:lang="fr">vidéo OGM</comment>
- <comment xml:lang="ga">físeán OGM</comment>
- <comment xml:lang="gl">vídeo OGM</comment>
- <comment xml:lang="he">וידאו OGM</comment>
- <comment xml:lang="hr">OGM video snimka</comment>
- <comment xml:lang="hu">OGM-videó</comment>
- <comment xml:lang="ia">Video OGM</comment>
- <comment xml:lang="id">Video OGM</comment>
- <comment xml:lang="it">Video OGM</comment>
- <comment xml:lang="ja">OGM 動画</comment>
- <comment xml:lang="ka">OGM ვიდეო</comment>
- <comment xml:lang="kk">OGM видеосы</comment>
- <comment xml:lang="ko">OGM 동영상</comment>
- <comment xml:lang="lt">OGM vaizdo įrašas</comment>
- <comment xml:lang="lv">OGM video</comment>
- <comment xml:lang="nb">OGM-film</comment>
- <comment xml:lang="nl">OGM-video</comment>
- <comment xml:lang="nn">OGM-video</comment>
- <comment xml:lang="oc">vidèo OGM</comment>
- <comment xml:lang="pl">Plik wideo OGM</comment>
- <comment xml:lang="pt">vídeo OGM</comment>
- <comment xml:lang="pt_BR">Vídeo OGM</comment>
- <comment xml:lang="ro">Video OGM</comment>
- <comment xml:lang="ru">Видео OGM</comment>
- <comment xml:lang="sk">Video OGM</comment>
- <comment xml:lang="sl">Video datoteka OGM</comment>
- <comment xml:lang="sq">Video OGM</comment>
- <comment xml:lang="sr">ОГМ видео</comment>
- <comment xml:lang="sv">OGM-video</comment>
- <comment xml:lang="tr">OGM video</comment>
- <comment xml:lang="uk">відеокліп OGM</comment>
- <comment xml:lang="vi">Ảnh động OGM</comment>
- <comment xml:lang="zh_CN">OGM 视频</comment>
<comment xml:lang="zh_TW">OGM 視訊</comment>
+ <comment xml:lang="zh_CN">OGM 视频</comment>
+ <comment xml:lang="vi">Ảnh động OGM</comment>
+ <comment xml:lang="uk">відеокліп OGM</comment>
+ <comment xml:lang="tr">OGM video</comment>
+ <comment xml:lang="sv">OGM-video</comment>
+ <comment xml:lang="sr">ОГМ видео</comment>
+ <comment xml:lang="sq">video OGM</comment>
+ <comment xml:lang="sl">Video datoteka OGM</comment>
+ <comment xml:lang="si">OGM වීඩියෝව</comment>
+ <comment xml:lang="sk">Video OGM</comment>
+ <comment xml:lang="ru">Видео OGM</comment>
+ <comment xml:lang="ro">Video OGM</comment>
+ <comment xml:lang="pt_BR">Vídeo OGM</comment>
+ <comment xml:lang="pt">vídeo OGM</comment>
+ <comment xml:lang="pl">Plik wideo OGM</comment>
+ <comment xml:lang="oc">vidèo OGM</comment>
+ <comment xml:lang="nn">OGM-video</comment>
+ <comment xml:lang="nl">OGM-video</comment>
+ <comment xml:lang="nb">OGM-film</comment>
+ <comment xml:lang="lv">OGM video</comment>
+ <comment xml:lang="lt">OGM vaizdo įrašas</comment>
+ <comment xml:lang="ko">OGM 동영상</comment>
+ <comment xml:lang="kk">OGM видеосы</comment>
+ <comment xml:lang="ka">OGM ვიდეო</comment>
+ <comment xml:lang="ja">OGM 動画</comment>
+ <comment xml:lang="it">Video OGM</comment>
+ <comment xml:lang="is">OGM myndskeið</comment>
+ <comment xml:lang="id">Video OGM</comment>
+ <comment xml:lang="ia">Video OGM</comment>
+ <comment xml:lang="hu">OGM-videó</comment>
+ <comment xml:lang="hr">OGM video snimka</comment>
+ <comment xml:lang="he">וידאו OGM</comment>
+ <comment xml:lang="gl">vídeo OGM</comment>
+ <comment xml:lang="ga">físeán OGM</comment>
+ <comment xml:lang="fur">video OGM</comment>
+ <comment xml:lang="fr">vidéo OGM</comment>
+ <comment xml:lang="fo">OGM video</comment>
+ <comment xml:lang="fi">OGM-video</comment>
+ <comment xml:lang="eu">OGM bideoa</comment>
+ <comment xml:lang="es">vídeo OGM</comment>
+ <comment xml:lang="eo">OGM-video</comment>
+ <comment xml:lang="en_GB">OGM video</comment>
+ <comment xml:lang="el">Βίντεο OGM</comment>
+ <comment xml:lang="de">OGM-Video</comment>
+ <comment xml:lang="da">OGM-video</comment>
+ <comment xml:lang="cs">video OGM</comment>
+ <comment xml:lang="ca">vídeo OGM</comment>
+ <comment xml:lang="bg">Видео — OGM</comment>
+ <comment xml:lang="be@latin">Videa OGM</comment>
+ <comment xml:lang="be">відэа OGM</comment>
+ <comment xml:lang="ast">Videu n'OGM</comment>
+ <comment xml:lang="ar">فيديو OGM</comment>
+ <comment xml:lang="af">OGM-video</comment>
<sub-class-of type="video/ogg"/>
<alias type="video/x-ogm"/>
<magic priority="80">
- <match value="OggS" type="string" offset="0">
- <match value="video" type="string" offset="29"/>
+ <match type="string" value="OggS" offset="0">
+ <match type="string" value="video" offset="29"/>
</match>
</magic>
<glob pattern="*.ogm"/>
</mime-type>
-
+ <!-- These are typically compount document of various types, so prefer
+ extensions for these -->
<mime-type type="application/x-ole-storage">
<comment>OLE2 compound document storage</comment>
- <comment xml:lang="ar">تخزين مجمع مستند OLE2</comment>
- <comment xml:lang="ast">Almacenamientu de documentos compuestu por OLE2</comment>
- <comment xml:lang="be@latin">Schovišča dla kampanentaŭ dakumentu OLE2</comment>
- <comment xml:lang="bg">Съставен документ-хранилище — OLE2</comment>
- <comment xml:lang="ca">emmagatzematge de documents compostos OLE2</comment>
- <comment xml:lang="cs">úložiště složeného dokumentu OLE2</comment>
- <comment xml:lang="da">OLE2-sammensat dokumentlager</comment>
- <comment xml:lang="de">OLE2-Verbunddokumentenspeicher</comment>
- <comment xml:lang="el">Αρχείο συμπαγούς αποθήκευσης εγγράφων OLE2</comment>
- <comment xml:lang="en_GB">OLE2 compound document storage</comment>
- <comment xml:lang="eo">OLE2-deponejo de parentezaj dokumentoj</comment>
- <comment xml:lang="es">almacenamiento de documentos compuestos OLE2</comment>
- <comment xml:lang="eu">OLE2 konposatutako dokumentu-bilduma</comment>
- <comment xml:lang="fi">OLE2-yhdisteasiakirjatallenne</comment>
- <comment xml:lang="fo">OLE2 samansett skjalagoymsla</comment>
- <comment xml:lang="fr">document de stockage composé OLE2</comment>
- <comment xml:lang="ga">stóras cáipéisí comhshuite OLE2</comment>
- <comment xml:lang="gl">almacenamento de documento composto OLE2</comment>
- <comment xml:lang="he">אחסון מסמך משותף OLE2</comment>
- <comment xml:lang="hr">OLE2 pohrana složenog dokumenta</comment>
- <comment xml:lang="hu">OLE2 összetett dokumentumtároló</comment>
- <comment xml:lang="ia">Magazin de documentos composite OLE2</comment>
- <comment xml:lang="id">penyimpan dokumen kompon OLE2</comment>
- <comment xml:lang="it">Memorizzazione documento composto OLE2</comment>
- <comment xml:lang="ja">OLE2 複合ドキュメントストレージ</comment>
- <comment xml:lang="kk">OLE2 құрама құжаттар қоймасы</comment>
- <comment xml:lang="ko">OLE2 복합 문서</comment>
- <comment xml:lang="lt">OLE2 sudėtinių dokumentų laikmena</comment>
- <comment xml:lang="lv">OLE2 savienoto dokumentu glabātuve</comment>
- <comment xml:lang="ms">Storan dokumen halaman OLE2</comment>
- <comment xml:lang="nb">OLE-lager for sammensatte dokumenter</comment>
- <comment xml:lang="nl">OLE2-samengestelde documentopslag</comment>
- <comment xml:lang="nn">OLE2 lager for samansett dokument</comment>
- <comment xml:lang="oc">document d'emmagazinatge compausat OLE2</comment>
- <comment xml:lang="pl">Magazyn dokumentu złożonego OLE2</comment>
- <comment xml:lang="pt">armazenamento de documento composto OLE2</comment>
- <comment xml:lang="pt_BR">Armazenamento de documento composto OLE2</comment>
- <comment xml:lang="ro">Document de stocare compus OLE2</comment>
- <comment xml:lang="ru">Хранилище составных документов OLE2</comment>
- <comment xml:lang="sk">Úložisko zloženého dokumentu OLE2</comment>
- <comment xml:lang="sl">Združeni dokument OLE2</comment>
- <comment xml:lang="sq">Arkiv dokumenti i përbërë OLE2</comment>
- <comment xml:lang="sr">смештај ОЛЕ2 сједињеног документа</comment>
- <comment xml:lang="sv">Sammansatt OLE2-dokumentlager</comment>
- <comment xml:lang="tr">OLE2 bileşik belge depolama</comment>
- <comment xml:lang="uk">сховище складних документів OLE2</comment>
- <comment xml:lang="vi">Kho lưu tài liệu ghép OLE2</comment>
- <comment xml:lang="zh_CN">OLE2 组合文档存储</comment>
<comment xml:lang="zh_TW">OLE2 複合文件儲存</comment>
+ <comment xml:lang="zh_CN">OLE2 组合文档存储</comment>
+ <comment xml:lang="vi">Kho lưu tài liệu ghép OLE2</comment>
+ <comment xml:lang="uk">сховище складних документів OLE2</comment>
+ <comment xml:lang="tr">OLE2 bileşik belge depolama</comment>
+ <comment xml:lang="sv">Sammansatt OLE2-dokumentlager</comment>
+ <comment xml:lang="sr">смештај ОЛЕ2 сједињеног документа</comment>
+ <comment xml:lang="sq">depozitë dokumenti të përbërë OLE2</comment>
+ <comment xml:lang="sl">Združeni dokument OLE2</comment>
+ <comment xml:lang="si">OLE2 සංයුක්ත ලේඛන ගබඩා කිරීම</comment>
+ <comment xml:lang="sk">Úložisko zloženého dokumentu OLE2</comment>
+ <comment xml:lang="ru">Хранилище составных документов OLE2</comment>
+ <comment xml:lang="ro">Document de stocare compus OLE2</comment>
+ <comment xml:lang="pt_BR">Armazenamento de documento composto OLE2</comment>
+ <comment xml:lang="pt">armazenamento de documento composto OLE2</comment>
+ <comment xml:lang="pl">Magazyn dokumentu złożonego OLE2</comment>
+ <comment xml:lang="oc">document d'emmagazinatge compausat OLE2</comment>
+ <comment xml:lang="nn">OLE2 lager for samansett dokument</comment>
+ <comment xml:lang="nl">OLE2-samengestelde documentopslag</comment>
+ <comment xml:lang="nb">OLE-lager for sammensatte dokumenter</comment>
+ <comment xml:lang="ms">Storan dokumen halaman OLE2</comment>
+ <comment xml:lang="lv">OLE2 savienoto dokumentu glabātuve</comment>
+ <comment xml:lang="lt">OLE2 sudėtinių dokumentų laikmena</comment>
+ <comment xml:lang="ko">OLE2 복합 문서</comment>
+ <comment xml:lang="kk">OLE2 құрама құжаттар қоймасы</comment>
+ <comment xml:lang="ja">OLE2 複合ドキュメントストレージ</comment>
+ <comment xml:lang="it">Memorizzazione documento composto OLE2</comment>
+ <comment xml:lang="is">OLE2 samsett skjalageymsla</comment>
+ <comment xml:lang="id">Penyimpan dokumen kompon OLE2</comment>
+ <comment xml:lang="ia">Magazin de documentos composite OLE2</comment>
+ <comment xml:lang="hu">OLE2 összetett dokumentumtároló</comment>
+ <comment xml:lang="hr">OLE2 pohrana složenog dokumenta</comment>
+ <comment xml:lang="he">אחסון מסמך משותף OLE2</comment>
+ <comment xml:lang="gl">almacenamento de documento composto OLE2</comment>
+ <comment xml:lang="ga">stóras cáipéisí comhshuite OLE2</comment>
+ <comment xml:lang="fur">memorizazion document compost OLE2</comment>
+ <comment xml:lang="fr">document de stockage composé OLE2</comment>
+ <comment xml:lang="fo">OLE2 samansett skjalagoymsla</comment>
+ <comment xml:lang="fi">OLE2-yhdisteasiakirjatallenne</comment>
+ <comment xml:lang="eu">OLE2 konposatutako dokumentu-bilduma</comment>
+ <comment xml:lang="es">almacenamiento de documentos compuestos OLE2</comment>
+ <comment xml:lang="eo">OLE2-deponejo de parentezaj dokumentoj</comment>
+ <comment xml:lang="en_GB">OLE2 compound document storage</comment>
+ <comment xml:lang="el">Αρχείο συμπαγούς αποθήκευσης εγγράφων OLE2</comment>
+ <comment xml:lang="de">OLE2-Verbunddokumentspeicher</comment>
+ <comment xml:lang="da">OLE2-sammensat dokumentlager</comment>
+ <comment xml:lang="cs">úložiště složeného dokumentu OLE2</comment>
+ <comment xml:lang="ca">emmagatzematge de documents compostos OLE2</comment>
+ <comment xml:lang="bg">Съставен документ-хранилище — OLE2</comment>
+ <comment xml:lang="be@latin">Schovišča dla kampanentaŭ dakumentu OLE2</comment>
+ <comment xml:lang="be">сховішча складаных дакументаў OLE2</comment>
+ <comment xml:lang="ast">Almacenamientu de documentos compuestu por OLE2</comment>
+ <comment xml:lang="ar">تخزين مجمع مستند OLE2</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="\320\317\021\340\241\261\032\341" type="string" offset="0"/>
- <match value="0xe011cfd0" type="little32" offset="0"/>
- </magic>
+ <magic>
+ <match type="string" value="\320\317\021\340\241\261\032\341" offset="0"/>
+ <match type="little32" value="0xe011cfd0" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/vnd.microsoft.windows.thumbnail-cache">
+ <comment>Microsoft Windows Thumbnail Cache</comment>
+ <comment xml:lang="uk">кеш мініатюр Microsoft Windows</comment>
+ <comment xml:lang="sv">Microsoft Windows-miniatyrbildscache</comment>
+ <comment xml:lang="ru">Кэш миниатюр Microsoft Windows</comment>
+ <comment xml:lang="pl">Pamięć podręczna miniatur Microsoft Windows</comment>
+ <comment xml:lang="it">Cache miniuature Microsoft Windows</comment>
+ <comment xml:lang="eu">Microsoft Windows miniatura-cachea</comment>
+ <comment xml:lang="es">antememoria de miniaturas de Microsoft Windows</comment>
+ <comment xml:lang="de">Microsoft Windows-Vorschaubilderzwischenspeicher</comment>
+ <comment xml:lang="be">пакет тэмы Microsoft Windows</comment>
+ <sub-class-of type="application/x-ole-storage"/>
+ <generic-icon name="image-x-generic"/>
+ <glob pattern="ehthumbs.db"/>
+ <glob pattern="ehthumbs_vista.db"/>
+ <glob pattern="image.db"/>
+ <glob pattern="musicthumbs.db"/>
+ <glob pattern="thumbs.db"/>
+ <glob pattern="tvthumb.db"/>
+ <glob pattern="video.db"/>
</mime-type>
<mime-type type="application/vnd.ms-publisher">
<comment>Microsoft Publisher document</comment>
- <comment xml:lang="ast">Documentu de Microsoft Publisher</comment>
- <comment xml:lang="ca">document de Microsoft Publisher</comment>
- <comment xml:lang="cs">dokument Microsoft Publisher</comment>
- <comment xml:lang="da">Microsoft Publisher-dokument</comment>
- <comment xml:lang="de">Microsoft-Publisher-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Microsoft Publisher</comment>
- <comment xml:lang="en_GB">Microsoft Publisher document</comment>
- <comment xml:lang="es">documento de Microsoft Publisher</comment>
- <comment xml:lang="eu">Microsoft Publisher dokumentua</comment>
- <comment xml:lang="fi">Microsoft Publisher -asiakirja</comment>
- <comment xml:lang="fr">document Microsoft Publisher</comment>
- <comment xml:lang="ga">cáipéis Microsoft Publisher</comment>
- <comment xml:lang="gl">Documento de Microsoft Publisher</comment>
- <comment xml:lang="he">מסמך Microsoft Publisher</comment>
- <comment xml:lang="hr">Microsoft Publisher dokument</comment>
- <comment xml:lang="hu">Microsoft Publisher dokumentum</comment>
- <comment xml:lang="ia">Documento Microsoft Publisher</comment>
- <comment xml:lang="id">Dokumen Microsoft Publisher</comment>
- <comment xml:lang="it">Documento Microsoft Publisher</comment>
- <comment xml:lang="kk">Microsoft Publisher құжаты</comment>
- <comment xml:lang="ko">Microsoft Publisher 문서</comment>
- <comment xml:lang="oc">document Microsoft Publisher</comment>
- <comment xml:lang="pl">Dokument Microsoft Publisher</comment>
- <comment xml:lang="pt">documento Microsoft Publisher</comment>
- <comment xml:lang="pt_BR">Documento do Microsoft Publisher</comment>
- <comment xml:lang="ru">Документ Microsoft Publisher</comment>
- <comment xml:lang="sk">Dokument Microsoft Publisher</comment>
- <comment xml:lang="sl">Dokument Microsoft Publisher</comment>
- <comment xml:lang="sr">документ Мајкрософтовог Издавача</comment>
- <comment xml:lang="sv">Microsoft Publisher-dokument</comment>
- <comment xml:lang="tr">Microsoft Publisher belgesi</comment>
- <comment xml:lang="uk">документ Microsoft Publisher</comment>
+ <comment xml:lang="zh_TW">微軟 Publisher 文件</comment>
<comment xml:lang="zh_CN">Microsoft Publisher 文档</comment>
- <comment xml:lang="zh_TW">Microsoft Publisher 文件</comment>
+ <comment xml:lang="uk">документ Microsoft Publisher</comment>
+ <comment xml:lang="tr">Microsoft Publisher belgesi</comment>
+ <comment xml:lang="sv">Microsoft Publisher-dokument</comment>
+ <comment xml:lang="sr">документ Мајкрософтовог Издавача</comment>
+ <comment xml:lang="sq">dokument Microsoft Publisher</comment>
+ <comment xml:lang="sl">Dokument Microsoft Publisher</comment>
+ <comment xml:lang="si">Microsoft Publisher ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Microsoft Publisher</comment>
+ <comment xml:lang="ru">Документ Microsoft Publisher</comment>
+ <comment xml:lang="pt_BR">Documento do Microsoft Publisher</comment>
+ <comment xml:lang="pt">documento Microsoft Publisher</comment>
+ <comment xml:lang="pl">Dokument Microsoft Publisher</comment>
+ <comment xml:lang="oc">document Microsoft Publisher</comment>
+ <comment xml:lang="nl">Microsoft Publisher-document</comment>
+ <comment xml:lang="ko">Microsoft Publisher 문서</comment>
+ <comment xml:lang="kk">Microsoft Publisher құжаты</comment>
+ <comment xml:lang="ja">Microsoft Publisher ドキュメント</comment>
+ <comment xml:lang="it">Documento Microsoft Publisher</comment>
+ <comment xml:lang="is">Microsoft Publisher skjal</comment>
+ <comment xml:lang="id">Dokumen Microsoft Publisher</comment>
+ <comment xml:lang="ia">Documento Microsoft Publisher</comment>
+ <comment xml:lang="hu">Microsoft Publisher dokumentum</comment>
+ <comment xml:lang="hr">Microsoft Publisher dokument</comment>
+ <comment xml:lang="he">מסמך Microsoft Publisher</comment>
+ <comment xml:lang="gl">Documento de Microsoft Publisher</comment>
+ <comment xml:lang="ga">cáipéis Microsoft Publisher</comment>
+ <comment xml:lang="fur">document Microsoft Publisher</comment>
+ <comment xml:lang="fr">document Microsoft Publisher</comment>
+ <comment xml:lang="fi">Microsoft Publisher -asiakirja</comment>
+ <comment xml:lang="eu">Microsoft Publisher dokumentua</comment>
+ <comment xml:lang="es">documento de Microsoft Publisher</comment>
+ <comment xml:lang="en_GB">Microsoft Publisher document</comment>
+ <comment xml:lang="el">Έγγραφο Microsoft Publisher</comment>
+ <comment xml:lang="de">Microsoft-Publisher-Dokument</comment>
+ <comment xml:lang="da">Microsoft Publisher-dokument</comment>
+ <comment xml:lang="cs">dokument Microsoft Publisher</comment>
+ <comment xml:lang="ca">document de Microsoft Publisher</comment>
+ <comment xml:lang="bg">Документ — Microsoft Publisher</comment>
+ <comment xml:lang="be">дакумент Microsoft Publisher</comment>
+ <comment xml:lang="ast">Documentu de Microsoft Publisher</comment>
+ <comment xml:lang="ar">مستند ناشر مايكروسوفت</comment>
+ <comment xml:lang="af">Microsoft Publisher-dokument</comment>
<sub-class-of type="application/x-ole-storage"/>
<glob pattern="*.pub"/>
</mime-type>
<mime-type type="application/x-msi">
<comment>Windows Installer package</comment>
- <comment xml:lang="ar">حزمة مثبّت ويندوز</comment>
- <comment xml:lang="be@latin">Pakunak Windows Installer</comment>
- <comment xml:lang="bg">Пакет — инсталация за Windows</comment>
- <comment xml:lang="ca">paquet de Windows Installer</comment>
- <comment xml:lang="cs">balíček Windows Installer</comment>
- <comment xml:lang="da">Windows Installer-pakke</comment>
- <comment xml:lang="de">Windows-Installationspaket</comment>
- <comment xml:lang="el">Πακέτο Windows Installer</comment>
- <comment xml:lang="en_GB">Windows Installer package</comment>
- <comment xml:lang="es">paquete de instalación de Windows</comment>
- <comment xml:lang="eu">Windows-eko pakete instalatzailea</comment>
- <comment xml:lang="fi">Windows-asennuspaketti</comment>
- <comment xml:lang="fo">Windows innleggingarpakki</comment>
- <comment xml:lang="fr">paquet d'installation Windows</comment>
- <comment xml:lang="ga">pacáiste Windows Installer</comment>
- <comment xml:lang="gl">paquete de instalación de Windows</comment>
- <comment xml:lang="he">חבילה של Windows Installer</comment>
- <comment xml:lang="hr">Windows Instalacijski paket</comment>
- <comment xml:lang="hu">Windows Installer csomag</comment>
- <comment xml:lang="ia">Pacchetto Windows Installer</comment>
- <comment xml:lang="id">Paket Windows Installer</comment>
- <comment xml:lang="it">Pacchetto Windows Installer</comment>
- <comment xml:lang="ja">Windows インストーラパッケージ</comment>
- <comment xml:lang="kk">Windows Installer дестесі</comment>
- <comment xml:lang="ko">Windows 설치 패키지</comment>
- <comment xml:lang="lt">Windows Installer paketas</comment>
- <comment xml:lang="lv">Windows Installer pakotne</comment>
- <comment xml:lang="nl">Windows-installatiepakket</comment>
- <comment xml:lang="nn">Windows Installer-pakke</comment>
- <comment xml:lang="oc">paquet d'installacion Windows</comment>
- <comment xml:lang="pl">Pakiet instalatora Windows</comment>
- <comment xml:lang="pt">pacote de instalação Windows</comment>
- <comment xml:lang="pt_BR">Pacote do Windows Installer</comment>
- <comment xml:lang="ro">Pachet instalator Windows</comment>
- <comment xml:lang="ru">Пакет Windows Installer</comment>
- <comment xml:lang="sk">Balík Windows Installer</comment>
- <comment xml:lang="sl">Datoteka paketa Windows namestilnika</comment>
- <comment xml:lang="sq">Paketë Windows Installer</comment>
- <comment xml:lang="sr">пакет Виндоузовог инсталатера</comment>
- <comment xml:lang="sv">Windows Installer-paket</comment>
- <comment xml:lang="tr">Windows Installer paketi</comment>
- <comment xml:lang="uk">пакунок Windows Installer</comment>
- <comment xml:lang="vi">Gói cài đặt Windows</comment>
- <comment xml:lang="zh_CN">Windows 程序安装包</comment>
<comment xml:lang="zh_TW">Windows Installer 軟體包</comment>
+ <comment xml:lang="zh_CN">Windows 程序安装包</comment>
+ <comment xml:lang="vi">Gói cài đặt Windows</comment>
+ <comment xml:lang="uk">пакунок Windows Installer</comment>
+ <comment xml:lang="tr">Windows Installer paketi</comment>
+ <comment xml:lang="sv">Windows Installer-paket</comment>
+ <comment xml:lang="sr">пакет Виндоузовог инсталатера</comment>
+ <comment xml:lang="sq">paketë Windows Installer</comment>
+ <comment xml:lang="sl">Datoteka paketa Windows namestilnika</comment>
+ <comment xml:lang="si">වින්ඩෝස් ස්ථාපක පැකේජය</comment>
+ <comment xml:lang="sk">Balík Windows Installer</comment>
+ <comment xml:lang="ru">Пакет Windows Installer</comment>
+ <comment xml:lang="ro">Pachet instalator Windows</comment>
+ <comment xml:lang="pt_BR">Pacote do Windows Installer</comment>
+ <comment xml:lang="pt">pacote de instalação Windows</comment>
+ <comment xml:lang="pl">Pakiet instalatora Windows</comment>
+ <comment xml:lang="oc">paquet d'installacion Windows</comment>
+ <comment xml:lang="nn">Windows Installer-pakke</comment>
+ <comment xml:lang="nl">Windows-installatiepakket</comment>
+ <comment xml:lang="lv">Windows Installer pakotne</comment>
+ <comment xml:lang="lt">Windows Installer paketas</comment>
+ <comment xml:lang="ko">Windows 설치 패키지</comment>
+ <comment xml:lang="kk">Windows Installer дестесі</comment>
+ <comment xml:lang="ja">Windows インストーラパッケージ</comment>
+ <comment xml:lang="it">Pacchetto Windows Installer</comment>
+ <comment xml:lang="is">Windows uppsetningarpakki</comment>
+ <comment xml:lang="id">Paket Windows Installer</comment>
+ <comment xml:lang="ia">Pacchetto Windows Installer</comment>
+ <comment xml:lang="hu">Windows Installer csomag</comment>
+ <comment xml:lang="hr">Windows Instalacijski paket</comment>
+ <comment xml:lang="he">חבילה של Windows Installer</comment>
+ <comment xml:lang="gl">paquete de instalación de Windows</comment>
+ <comment xml:lang="ga">pacáiste Windows Installer</comment>
+ <comment xml:lang="fur">pachet Windows Installer</comment>
+ <comment xml:lang="fr">paquet d'installation Windows</comment>
+ <comment xml:lang="fo">Windows innleggingarpakki</comment>
+ <comment xml:lang="fi">Windows-asennuspaketti</comment>
+ <comment xml:lang="eu">Windows-eko pakete instalatzailea</comment>
+ <comment xml:lang="es">paquete de instalación de Windows</comment>
+ <comment xml:lang="en_GB">Windows Installer package</comment>
+ <comment xml:lang="el">Πακέτο Windows Installer</comment>
+ <comment xml:lang="de">Windows-Installationspaket</comment>
+ <comment xml:lang="da">Windows installationsprogram-pakke</comment>
+ <comment xml:lang="cs">balíček Windows Installer</comment>
+ <comment xml:lang="ca">paquet de Windows Installer</comment>
+ <comment xml:lang="bg">Пакет — инсталация за Windows</comment>
+ <comment xml:lang="be@latin">Pakunak Windows Installer</comment>
+ <comment xml:lang="be">пакет Windows Installer</comment>
+ <comment xml:lang="ar">حزمة مثبّت ويندوز</comment>
+ <comment xml:lang="af">Windows-installeerpakket</comment>
<sub-class-of type="application/x-ole-storage"/>
+ <generic-icon name="package-x-generic"/>
<glob pattern="*.msi"/>
</mime-type>
+ <mime-type type="application/appx">
+ <comment>Windows app store package</comment>
+ <comment xml:lang="uk">пакунок крамниці програм Windows</comment>
+ <comment xml:lang="sv">Windows app store-paket</comment>
+ <comment xml:lang="ru">Пакет магазина приложений Windows</comment>
+ <comment xml:lang="pl">Pakiet sklepu z aplikacjami Windows</comment>
+ <comment xml:lang="es">paquete de la tienda de aplicaciones de Windows</comment>
+ <comment xml:lang="de">Windows-Appstore-Paket</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="package-x-generic"/>
+ <glob pattern="*.appx"/>
+ </mime-type>
+ <mime-type type="application/msix">
+ <comment>Windows app store package</comment>
+ <comment xml:lang="uk">пакунок крамниці програм Windows</comment>
+ <comment xml:lang="sv">Windows app store-paket</comment>
+ <comment xml:lang="ru">Пакет магазина приложений Windows</comment>
+ <comment xml:lang="pl">Pakiet sklepu z aplikacjami Windows</comment>
+ <comment xml:lang="es">paquete de la tienda de aplicaciones de Windows</comment>
+ <comment xml:lang="de">Windows-Appstore-Paket</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="package-x-generic"/>
+ <glob pattern="*.msix"/>
+ </mime-type>
+ <mime-type type="application/appxbundle">
+ <comment>Windows app store bundle</comment>
+ <comment xml:lang="uk">комплект крамниці програм Windows</comment>
+ <comment xml:lang="sv">Windows app store-bunt</comment>
+ <comment xml:lang="ru">Объединённый пакет магазина приложений Windows</comment>
+ <comment xml:lang="pl">Paczka sklepu z aplikacjami Windows</comment>
+ <comment xml:lang="de">Zusammengefasste Windows-Appstore-Pakete</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="package-x-generic"/>
+ <glob pattern="*.appxbundle"/>
+ </mime-type>
+ <mime-type type="application/msixbundle">
+ <comment>Windows app store bundle</comment>
+ <comment xml:lang="uk">комплект крамниці програм Windows</comment>
+ <comment xml:lang="sv">Windows app store-bunt</comment>
+ <comment xml:lang="ru">Объединённый пакет магазина приложений Windows</comment>
+ <comment xml:lang="pl">Paczka sklepu z aplikacjami Windows</comment>
+ <comment xml:lang="de">Zusammengefasste Windows-Appstore-Pakete</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="package-x-generic"/>
+ <glob pattern="*.msixbundle"/>
+ </mime-type>
+ <mime-type type="application/appinstaller">
+ <comment>Windows app store installer</comment>
+ <comment xml:lang="uk">встановлювач крамниці програм Windows</comment>
+ <comment xml:lang="sv">Windows app store-installerare</comment>
+ <comment xml:lang="ru">Программа установки магазина приложений Windows</comment>
+ <comment xml:lang="pl">Instalator sklepu z aplikacjami Windows</comment>
+ <comment xml:lang="es">instalador de la tienda de aplicaciones de Windows</comment>
+ <comment xml:lang="de">Windows-Appstore-Installationsprogramm</comment>
+ <sub-class-of type="application/xml"/>
+ <generic-icon name="package-x-generic"/>
+ <magic>
+ <match type="string" value="&lt;AppInstaller" offset="0:256"/>
+ </magic>
+ <glob pattern="*.appinstaller"/>
+ </mime-type>
<mime-type type="application/x-oleo">
<comment>GNU Oleo spreadsheet</comment>
- <comment xml:lang="ar">جدول جنو Oleo</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš GNU Oleo</comment>
- <comment xml:lang="bg">Таблица — GNU Oleo</comment>
- <comment xml:lang="ca">full de càlcul de GNU Oleo</comment>
- <comment xml:lang="cs">sešit GNU Oleo</comment>
- <comment xml:lang="da">GNU Oleo-regneark</comment>
- <comment xml:lang="de">GNU-Oleo-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο GNU Oleo</comment>
- <comment xml:lang="en_GB">GNU Oleo spreadsheet</comment>
- <comment xml:lang="eo">Kalkultabelo de GNU Oleo</comment>
- <comment xml:lang="es">hoja de cálculo de GNU Oleo</comment>
- <comment xml:lang="eu">GNU Oleo kalkulu-orria</comment>
- <comment xml:lang="fi">GNU Oleo -taulukko</comment>
- <comment xml:lang="fo">GNU Oleo rokniark</comment>
- <comment xml:lang="fr">feuille de calcul GNU Oleo</comment>
- <comment xml:lang="ga">scarbhileog GNU Oleo</comment>
- <comment xml:lang="gl">folla de cálculo de Oleo GNU</comment>
- <comment xml:lang="he">גליון נתונים של GNU Oleo</comment>
- <comment xml:lang="hr">GNU Oleo proračunska tablica</comment>
- <comment xml:lang="hu">GNU Oleo-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo GNU Oleo</comment>
- <comment xml:lang="id">Lembar sebar GNU Oleo</comment>
- <comment xml:lang="it">Foglio di calcolo GNU Oleo</comment>
- <comment xml:lang="ja">GNU Oleo スプレッドシート</comment>
- <comment xml:lang="ka">GNU Oleo ცხრილი</comment>
- <comment xml:lang="kk">GNU Oleo электрондық кестесі</comment>
- <comment xml:lang="ko">GNU Oleo 스프레드시트</comment>
- <comment xml:lang="lt">GNU Oleo skaičialentė</comment>
- <comment xml:lang="lv">GNU Oleo izklājlapa</comment>
- <comment xml:lang="ms">Hamparan GNU Oleo</comment>
- <comment xml:lang="nb">GNU Oleo regneark</comment>
- <comment xml:lang="nl">GNU Oleo-rekenblad</comment>
- <comment xml:lang="nn">GNU Oleo-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul GNU Oleo</comment>
- <comment xml:lang="pl">Arkusz GNU Oleo</comment>
- <comment xml:lang="pt">folha de cálculo GNU Oleo</comment>
- <comment xml:lang="pt_BR">Planilha do GNU Oleo</comment>
- <comment xml:lang="ro">Foaie de calcul GNU Oleo</comment>
- <comment xml:lang="ru">Электронная таблица GNU Oleo</comment>
- <comment xml:lang="sk">Zošit GNU Oleo</comment>
- <comment xml:lang="sl">Preglednica GNU Oleo</comment>
- <comment xml:lang="sq">Fletë llogaritje GNU Oleo</comment>
- <comment xml:lang="sr">ГНУ Олео табела</comment>
- <comment xml:lang="sv">GNU Oleo-kalkylblad</comment>
- <comment xml:lang="tr">GNU Oleo çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця GNU Oleo</comment>
- <comment xml:lang="vi">Bảng tính Oleo của GNU</comment>
- <comment xml:lang="zh_CN">GNU Oleo 电子表格</comment>
<comment xml:lang="zh_TW">GNU Oleo 試算表</comment>
+ <comment xml:lang="zh_CN">GNU Oleo 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Oleo của GNU</comment>
+ <comment xml:lang="uk">електронна таблиця GNU Oleo</comment>
+ <comment xml:lang="tr">GNU Oleo hesap çizelgesi</comment>
+ <comment xml:lang="sv">GNU Oleo-kalkylblad</comment>
+ <comment xml:lang="sr">ГНУ Олео табела</comment>
+ <comment xml:lang="sq">fletëllogaritje GNU Oleo</comment>
+ <comment xml:lang="sl">Preglednica GNU Oleo</comment>
+ <comment xml:lang="si">GNU Oleo පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit GNU Oleo</comment>
+ <comment xml:lang="ru">Электронная таблица GNU Oleo</comment>
+ <comment xml:lang="ro">Foaie de calcul GNU Oleo</comment>
+ <comment xml:lang="pt_BR">Planilha do GNU Oleo</comment>
+ <comment xml:lang="pt">folha de cálculo GNU Oleo</comment>
+ <comment xml:lang="pl">Arkusz GNU Oleo</comment>
+ <comment xml:lang="oc">fuèlh de calcul GNU Oleo</comment>
+ <comment xml:lang="nn">GNU Oleo-rekneark</comment>
+ <comment xml:lang="nl">GNU Oleo-rekenblad</comment>
+ <comment xml:lang="nb">GNU Oleo regneark</comment>
+ <comment xml:lang="ms">Hamparan GNU Oleo</comment>
+ <comment xml:lang="lv">GNU Oleo izklājlapa</comment>
+ <comment xml:lang="lt">GNU Oleo skaičialentė</comment>
+ <comment xml:lang="ko">GNU Oleo 스프레드시트</comment>
+ <comment xml:lang="kk">GNU Oleo электрондық кестесі</comment>
+ <comment xml:lang="ka">GNU Oleo ცხრილი</comment>
+ <comment xml:lang="ja">GNU Oleo スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo GNU Oleo</comment>
+ <comment xml:lang="is">GNU Oleo töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar GNU Oleo</comment>
+ <comment xml:lang="ia">Folio de calculo GNU Oleo</comment>
+ <comment xml:lang="hu">GNU Oleo-munkafüzet</comment>
+ <comment xml:lang="hr">GNU Oleo proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של GNU Oleo</comment>
+ <comment xml:lang="gl">folla de cálculo de Oleo GNU</comment>
+ <comment xml:lang="ga">scarbhileog GNU Oleo</comment>
+ <comment xml:lang="fur">sfuei di calcul GNU Oleo</comment>
+ <comment xml:lang="fr">feuille de calcul GNU Oleo</comment>
+ <comment xml:lang="fo">GNU Oleo rokniark</comment>
+ <comment xml:lang="fi">GNU Oleo -taulukko</comment>
+ <comment xml:lang="eu">GNU Oleo kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de GNU Oleo</comment>
+ <comment xml:lang="eo">Kalkultabelo de GNU Oleo</comment>
+ <comment xml:lang="en_GB">GNU Oleo spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο GNU Oleo</comment>
+ <comment xml:lang="de">GNU-Oleo-Tabelle</comment>
+ <comment xml:lang="da">GNU Oleo-regneark</comment>
+ <comment xml:lang="cs">sešit GNU Oleo</comment>
+ <comment xml:lang="ca">full de càlcul de GNU Oleo</comment>
+ <comment xml:lang="bg">Таблица — GNU Oleo</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš GNU Oleo</comment>
+ <comment xml:lang="be">электронная табліца GNU Oleo</comment>
+ <comment xml:lang="ar">جدول جنو Oleo</comment>
+ <comment xml:lang="af">GNU Oleo-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="Oleo" type="string" offset="31"/>
+ <magic>
+ <match type="string" value="Oleo" offset="31"/>
</magic>
<glob pattern="*.oleo"/>
</mime-type>
<mime-type type="application/x-pak">
<comment>PAK archive</comment>
- <comment xml:lang="ar">أرشيف PAK</comment>
- <comment xml:lang="be@latin">Archiŭ PAK</comment>
- <comment xml:lang="bg">Архив — PAK</comment>
- <comment xml:lang="ca">arxiu PAK</comment>
- <comment xml:lang="cs">archiv PAK</comment>
- <comment xml:lang="da">PAK-arkiv</comment>
- <comment xml:lang="de">PAK-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο PAK</comment>
- <comment xml:lang="en_GB">PAK archive</comment>
- <comment xml:lang="eo">PAK-arkivo</comment>
- <comment xml:lang="es">archivador PAK</comment>
- <comment xml:lang="eu">PAK artxiboa</comment>
- <comment xml:lang="fi">PAK-arkisto</comment>
- <comment xml:lang="fo">PAK skjalasavn</comment>
- <comment xml:lang="fr">archive PAK</comment>
- <comment xml:lang="ga">cartlann PAK</comment>
- <comment xml:lang="gl">arquivo PAK</comment>
- <comment xml:lang="he">ארכיון PAK</comment>
- <comment xml:lang="hr">PAK arhiva</comment>
- <comment xml:lang="hu">PAK-archívum</comment>
- <comment xml:lang="ia">Archivo PAK</comment>
- <comment xml:lang="id">Arsip PAK</comment>
- <comment xml:lang="it">Archivio PAK</comment>
- <comment xml:lang="ja">PAK アーカイブ</comment>
- <comment xml:lang="ka">PAK არქივი</comment>
- <comment xml:lang="kk">PAK архиві</comment>
- <comment xml:lang="ko">PAK 압축 파일</comment>
- <comment xml:lang="lt">PAK archyvas</comment>
- <comment xml:lang="lv">PAK arhīvs</comment>
- <comment xml:lang="nb">PAK-arkiv</comment>
- <comment xml:lang="nl">PAK-archief</comment>
- <comment xml:lang="nn">PAK-arkiv</comment>
- <comment xml:lang="oc">archiu PAK</comment>
- <comment xml:lang="pl">Archiwum PAK</comment>
- <comment xml:lang="pt">arquivo PAK</comment>
- <comment xml:lang="pt_BR">Pacote PAK</comment>
- <comment xml:lang="ro">Arhivă PAK</comment>
- <comment xml:lang="ru">Архив PAK</comment>
- <comment xml:lang="sk">Archív PAK</comment>
- <comment xml:lang="sl">Datoteka arhiva PAK</comment>
- <comment xml:lang="sq">Arkiv PAK</comment>
- <comment xml:lang="sr">ПАК архива</comment>
- <comment xml:lang="sv">PAK-arkiv</comment>
- <comment xml:lang="tr">PAK arşivi</comment>
- <comment xml:lang="uk">архів PAK</comment>
- <comment xml:lang="vi">Kho nén PAK</comment>
- <comment xml:lang="zh_CN">PAK 归档文件</comment>
<comment xml:lang="zh_TW">PAK 封存檔</comment>
+ <comment xml:lang="zh_CN">PAK 归档文件</comment>
+ <comment xml:lang="vi">Kho nén PAK</comment>
+ <comment xml:lang="uk">архів PAK</comment>
+ <comment xml:lang="tr">PAK arşivi</comment>
+ <comment xml:lang="sv">PAK-arkiv</comment>
+ <comment xml:lang="sr">ПАК архива</comment>
+ <comment xml:lang="sq">arkiv PAK</comment>
+ <comment xml:lang="sl">Datoteka arhiva PAK</comment>
+ <comment xml:lang="si">PAK ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív PAK</comment>
+ <comment xml:lang="ru">Архив PAK</comment>
+ <comment xml:lang="ro">Arhivă PAK</comment>
+ <comment xml:lang="pt_BR">Pacote PAK</comment>
+ <comment xml:lang="pt">arquivo PAK</comment>
+ <comment xml:lang="pl">Archiwum PAK</comment>
+ <comment xml:lang="oc">archiu PAK</comment>
+ <comment xml:lang="nn">PAK-arkiv</comment>
+ <comment xml:lang="nl">PAK-archief</comment>
+ <comment xml:lang="nb">PAK-arkiv</comment>
+ <comment xml:lang="lv">PAK arhīvs</comment>
+ <comment xml:lang="lt">PAK archyvas</comment>
+ <comment xml:lang="ko">PAK 압축 파일</comment>
+ <comment xml:lang="kk">PAK архиві</comment>
+ <comment xml:lang="ka">PAK არქივი</comment>
+ <comment xml:lang="ja">PAK アーカイブ</comment>
+ <comment xml:lang="it">Archivio PAK</comment>
+ <comment xml:lang="is">PAK safnskrá</comment>
+ <comment xml:lang="id">Arsip PAK</comment>
+ <comment xml:lang="ia">Archivo PAK</comment>
+ <comment xml:lang="hu">PAK-archívum</comment>
+ <comment xml:lang="hr">PAK arhiva</comment>
+ <comment xml:lang="he">ארכיון PAK</comment>
+ <comment xml:lang="gl">arquivo PAK</comment>
+ <comment xml:lang="ga">cartlann PAK</comment>
+ <comment xml:lang="fur">archivi PAK</comment>
+ <comment xml:lang="fr">archive PAK</comment>
+ <comment xml:lang="fo">PAK skjalasavn</comment>
+ <comment xml:lang="fi">PAK-arkisto</comment>
+ <comment xml:lang="eu">PAK artxiboa</comment>
+ <comment xml:lang="es">archivador PAK</comment>
+ <comment xml:lang="eo">PAK-arkivo</comment>
+ <comment xml:lang="en_GB">PAK archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο PAK</comment>
+ <comment xml:lang="de">PAK-Archiv</comment>
+ <comment xml:lang="da">PAK-arkiv</comment>
+ <comment xml:lang="cs">archiv PAK</comment>
+ <comment xml:lang="ca">arxiu PAK</comment>
+ <comment xml:lang="bg">Архив — PAK</comment>
+ <comment xml:lang="be@latin">Archiŭ PAK</comment>
+ <comment xml:lang="be">архіў PAK</comment>
+ <comment xml:lang="ar">أرشيف PAK</comment>
+ <comment xml:lang="af">PAK-argief</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="80">
- <match value="PACK" type="string" offset="0"/>
- </magic>
<glob pattern="*.pak"/>
</mime-type>
<mime-type type="application/vnd.palm">
<comment>Palm OS database</comment>
- <comment xml:lang="ar">قاعدة بيانات Palm OS</comment>
- <comment xml:lang="az">Palm OS mə'lumat bazası</comment>
- <comment xml:lang="be@latin">Baza źviestak Palm OS</comment>
- <comment xml:lang="bg">База от данни — Palm OS</comment>
- <comment xml:lang="ca">base de dades Palm OS</comment>
- <comment xml:lang="cs">databáze Palm OS</comment>
- <comment xml:lang="cy">Cronfa Ddata Palm OS</comment>
- <comment xml:lang="da">Palm OS-database</comment>
- <comment xml:lang="de">Palm-OS-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων Palm OS</comment>
- <comment xml:lang="en_GB">Palm OS database</comment>
- <comment xml:lang="eo">datumbazo de Palm OS</comment>
- <comment xml:lang="es">base de datos de Palm OS</comment>
- <comment xml:lang="eu">Palm OS datu-basea</comment>
- <comment xml:lang="fi">Palm OS -tietokanta</comment>
- <comment xml:lang="fo">Palm OS dátustovnur</comment>
- <comment xml:lang="fr">base de données Palm OS</comment>
- <comment xml:lang="ga">bunachar sonraí Palm OS</comment>
- <comment xml:lang="gl">base de datos de Palm OS</comment>
- <comment xml:lang="he">מסד נתונים של Palm OS</comment>
- <comment xml:lang="hr">Palm OS baza podataka</comment>
- <comment xml:lang="hu">Palm OS-adatbázis</comment>
- <comment xml:lang="ia">Base de datos Palm OS</comment>
- <comment xml:lang="id">Basis data Palm OS</comment>
- <comment xml:lang="it">Database Palm OS</comment>
- <comment xml:lang="ja">Palm OS データベース</comment>
- <comment xml:lang="kk">Palm OS дерекқоры</comment>
- <comment xml:lang="ko">Palm OS 데이터베이스</comment>
- <comment xml:lang="lt">Palm OS duomenų bazė</comment>
- <comment xml:lang="lv">Palm OS datubāze</comment>
- <comment xml:lang="ms">Pangkalandata PalmOS</comment>
- <comment xml:lang="nb">Palm OS-database</comment>
- <comment xml:lang="nl">Palm OS-gegevensbank</comment>
- <comment xml:lang="nn">Palm OS-database</comment>
- <comment xml:lang="oc">banca de donadas Palm OS</comment>
- <comment xml:lang="pl">Baza danych Palm OS</comment>
- <comment xml:lang="pt">base de dados Palm OS</comment>
- <comment xml:lang="pt_BR">Banco de dados do Palm OS</comment>
- <comment xml:lang="ro">Bază de date Palm OS</comment>
- <comment xml:lang="ru">База данных Palm OS</comment>
- <comment xml:lang="sk">Databáza Palm OS</comment>
- <comment xml:lang="sl">Podatkovna zbirka Palm OS</comment>
- <comment xml:lang="sq">Bankë me të dhëna Palm OS</comment>
- <comment xml:lang="sr">база података Палм ОС-а</comment>
- <comment xml:lang="sv">Palm OS-databas</comment>
- <comment xml:lang="tr">Palm OS veritabanı</comment>
- <comment xml:lang="uk">база даних Palm OS</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu PalmOS</comment>
- <comment xml:lang="zh_CN">Palm OS 数据库</comment>
<comment xml:lang="zh_TW">Palm OS 資料庫</comment>
+ <comment xml:lang="zh_CN">Palm OS 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu PalmOS</comment>
+ <comment xml:lang="uk">база даних Palm OS</comment>
+ <comment xml:lang="tr">Palm OS veri tabanı</comment>
+ <comment xml:lang="sv">Palm OS-databas</comment>
+ <comment xml:lang="sr">база података Палм ОС-а</comment>
+ <comment xml:lang="sq">bazë të dhënash Palm OS</comment>
+ <comment xml:lang="sl">Podatkovna zbirka Palm OS</comment>
+ <comment xml:lang="si">Palm OS දත්ත ගබඩාව</comment>
+ <comment xml:lang="sk">Databáza Palm OS</comment>
+ <comment xml:lang="ru">База данных Palm OS</comment>
+ <comment xml:lang="ro">Bază de date Palm OS</comment>
+ <comment xml:lang="pt_BR">Banco de dados do Palm OS</comment>
+ <comment xml:lang="pt">base de dados Palm OS</comment>
+ <comment xml:lang="pl">Baza danych Palm OS</comment>
+ <comment xml:lang="oc">banca de donadas Palm OS</comment>
+ <comment xml:lang="nn">Palm OS-database</comment>
+ <comment xml:lang="nl">Palm OS-database</comment>
+ <comment xml:lang="nb">Palm OS-database</comment>
+ <comment xml:lang="ms">Pangkalandata PalmOS</comment>
+ <comment xml:lang="lv">Palm OS datubāze</comment>
+ <comment xml:lang="lt">Palm OS duomenų bazė</comment>
+ <comment xml:lang="ko">Palm OS 데이터베이스</comment>
+ <comment xml:lang="kk">Palm OS дерекқоры</comment>
+ <comment xml:lang="ja">Palm OS データベース</comment>
+ <comment xml:lang="it">Database Palm OS</comment>
+ <comment xml:lang="is">Palm OS gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data Palm OS</comment>
+ <comment xml:lang="ia">Base de datos Palm OS</comment>
+ <comment xml:lang="hu">Palm OS-adatbázis</comment>
+ <comment xml:lang="hr">Palm OS baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים של Palm OS</comment>
+ <comment xml:lang="gl">base de datos de Palm OS</comment>
+ <comment xml:lang="ga">bunachar sonraí Palm OS</comment>
+ <comment xml:lang="fur">base di dâts Palm OS</comment>
+ <comment xml:lang="fr">base de données Palm OS</comment>
+ <comment xml:lang="fo">Palm OS dátustovnur</comment>
+ <comment xml:lang="fi">Palm OS -tietokanta</comment>
+ <comment xml:lang="eu">Palm OS datu-basea</comment>
+ <comment xml:lang="es">base de datos de Palm OS</comment>
+ <comment xml:lang="eo">datumbazo de Palm OS</comment>
+ <comment xml:lang="en_GB">Palm OS database</comment>
+ <comment xml:lang="el">Βάση δεδομένων Palm OS</comment>
+ <comment xml:lang="de">Palm-OS-Datenbank</comment>
+ <comment xml:lang="da">Palm OS-database</comment>
+ <comment xml:lang="cy">Cronfa Ddata Palm OS</comment>
+ <comment xml:lang="cs">databáze Palm OS</comment>
+ <comment xml:lang="ca">base de dades Palm OS</comment>
+ <comment xml:lang="bg">База от данни — Palm OS</comment>
+ <comment xml:lang="be@latin">Baza źviestak Palm OS</comment>
+ <comment xml:lang="be">база даных Palm OS</comment>
+ <comment xml:lang="az">Palm OS mə'lumat bazası</comment>
+ <comment xml:lang="ar">قاعدة بيانات Palm OS</comment>
+ <comment xml:lang="af">Palm OS-databasis</comment>
<glob pattern="*.prc"/>
- <glob pattern="*.pdb"/>
+ <glob pattern="*.pdb" weight="40"/>
<glob pattern="*.pqa"/>
<glob pattern="*.oprc"/>
<alias type="application/x-palm-database"/>
</mime-type>
<mime-type type="application/x-par2">
<comment>Parchive archive</comment>
- <comment xml:lang="ar">أرشيف Parchive</comment>
- <comment xml:lang="be@latin">Archiŭ Parchive</comment>
- <comment xml:lang="bg">Архив — parchive</comment>
- <comment xml:lang="ca">arxiu Parchive</comment>
- <comment xml:lang="cs">archiv Parchive</comment>
- <comment xml:lang="da">Parchive-arkiv</comment>
- <comment xml:lang="de">Parchive-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Parchive</comment>
- <comment xml:lang="en_GB">Parchive archive</comment>
- <comment xml:lang="es">archivador Parchive</comment>
- <comment xml:lang="eu">Parchive artxiboa</comment>
- <comment xml:lang="fi">Parchive-arkisto</comment>
- <comment xml:lang="fo">Parchive skjalasavn</comment>
- <comment xml:lang="fr">archive Parchive</comment>
- <comment xml:lang="ga">cartlann Parchive</comment>
- <comment xml:lang="gl">arquivo Parchive</comment>
- <comment xml:lang="he">ארכיון של Parchive</comment>
- <comment xml:lang="hr">Parchive arhiva</comment>
- <comment xml:lang="hu">Parchive archívum</comment>
- <comment xml:lang="ia">Archivo Parchive</comment>
- <comment xml:lang="id">Arsip Parchive</comment>
- <comment xml:lang="it">Archivio Parchive</comment>
- <comment xml:lang="ja">Parchive アーカイブ</comment>
- <comment xml:lang="kk">Parchive архиві</comment>
- <comment xml:lang="ko">Parchive 압축 파일</comment>
- <comment xml:lang="lt">Parchive archyvas</comment>
- <comment xml:lang="lv">Parchive arhīvs</comment>
- <comment xml:lang="nb">Parchive-arkiv</comment>
- <comment xml:lang="nl">Parchive-archief</comment>
- <comment xml:lang="nn">Parchive-arkiv</comment>
- <comment xml:lang="oc">archiu Parchive</comment>
- <comment xml:lang="pl">Archiwum parchive</comment>
- <comment xml:lang="pt">arquivo Parchive</comment>
- <comment xml:lang="pt_BR">Pacote Parchive</comment>
- <comment xml:lang="ro">Arhivă Parchive</comment>
- <comment xml:lang="ru">Архив Parchive</comment>
- <comment xml:lang="sk">Archív Parchive</comment>
- <comment xml:lang="sl">Datoteka arhiva Parchive</comment>
- <comment xml:lang="sq">Arkiv Parchive</comment>
- <comment xml:lang="sr">архива Пархива</comment>
- <comment xml:lang="sv">Parchive-arkiv</comment>
- <comment xml:lang="tr">Parchive arşivi</comment>
- <comment xml:lang="uk">архів Parchive</comment>
- <comment xml:lang="vi">Kho nén Parchive</comment>
- <comment xml:lang="zh_CN">Parchive 归档文件</comment>
<comment xml:lang="zh_TW">Parchive 封存檔</comment>
+ <comment xml:lang="zh_CN">Parchive 归档文件</comment>
+ <comment xml:lang="vi">Kho nén Parchive</comment>
+ <comment xml:lang="uk">архів Parchive</comment>
+ <comment xml:lang="tr">Parchive arşivi</comment>
+ <comment xml:lang="sv">Parchive-arkiv</comment>
+ <comment xml:lang="sr">архива Пархива</comment>
+ <comment xml:lang="sq">arkiv Parchive</comment>
+ <comment xml:lang="sl">Datoteka arhiva Parchive</comment>
+ <comment xml:lang="si">Parchive ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Parchive</comment>
+ <comment xml:lang="ru">Архив Parchive</comment>
+ <comment xml:lang="ro">Arhivă Parchive</comment>
+ <comment xml:lang="pt_BR">Pacote Parchive</comment>
+ <comment xml:lang="pt">arquivo Parchive</comment>
+ <comment xml:lang="pl">Archiwum parchive</comment>
+ <comment xml:lang="oc">archiu Parchive</comment>
+ <comment xml:lang="nn">Parchive-arkiv</comment>
+ <comment xml:lang="nl">Parchive-archief</comment>
+ <comment xml:lang="nb">Parchive-arkiv</comment>
+ <comment xml:lang="lv">Parchive arhīvs</comment>
+ <comment xml:lang="lt">Parchive archyvas</comment>
+ <comment xml:lang="ko">Parchive 압축 파일</comment>
+ <comment xml:lang="kk">Parchive архиві</comment>
+ <comment xml:lang="ja">Parchive アーカイブ</comment>
+ <comment xml:lang="it">Archivio Parchive</comment>
+ <comment xml:lang="is">Parchive safnskrá</comment>
+ <comment xml:lang="id">Arsip Parchive</comment>
+ <comment xml:lang="ia">Archivo Parchive</comment>
+ <comment xml:lang="hu">Parchive archívum</comment>
+ <comment xml:lang="hr">Parchive arhiva</comment>
+ <comment xml:lang="he">ארכיון של Parchive</comment>
+ <comment xml:lang="gl">arquivo Parchive</comment>
+ <comment xml:lang="ga">cartlann Parchive</comment>
+ <comment xml:lang="fur">archivi Parchive</comment>
+ <comment xml:lang="fr">archive Parchive</comment>
+ <comment xml:lang="fo">Parchive skjalasavn</comment>
+ <comment xml:lang="fi">Parchive-arkisto</comment>
+ <comment xml:lang="eu">Parchive artxiboa</comment>
+ <comment xml:lang="es">archivador Parchive</comment>
+ <comment xml:lang="en_GB">Parchive archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Parchive</comment>
+ <comment xml:lang="de">Parchive-Archiv</comment>
+ <comment xml:lang="da">Parchive-arkiv</comment>
+ <comment xml:lang="cs">archiv Parchive</comment>
+ <comment xml:lang="ca">arxiu Parchive</comment>
+ <comment xml:lang="bg">Архив — parchive</comment>
+ <comment xml:lang="be@latin">Archiŭ Parchive</comment>
+ <comment xml:lang="be">архіў Parchive</comment>
+ <comment xml:lang="ar">أرشيف Parchive</comment>
+ <comment xml:lang="af">Parchive-argief</comment>
<acronym>Parchive</acronym>
<expanded-acronym>Parity Volume Set Archive</expanded-acronym>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="PAR2" type="string" offset="0"/>
+ <match offset="0" type="string" value="PAR2"/>
</magic>
<glob pattern="*.PAR2"/>
<glob pattern="*.par2"/>
</mime-type>
<mime-type type="application/x-pef-executable">
<comment>PEF executable</comment>
- <comment xml:lang="ar">PEF تنفيذي</comment>
- <comment xml:lang="be@latin">Vykonvalny fajł PEF</comment>
- <comment xml:lang="bg">Изпълним файл — PEF</comment>
- <comment xml:lang="ca">executable PEF</comment>
- <comment xml:lang="cs">spustitelný soubor PEF</comment>
- <comment xml:lang="da">PEF-kørbar</comment>
- <comment xml:lang="de">PEF-Programm</comment>
- <comment xml:lang="el">Εκτελέσιμο PEF</comment>
- <comment xml:lang="en_GB">PEF executable</comment>
- <comment xml:lang="eo">PEF-plenumebla</comment>
- <comment xml:lang="es">ejecutable PEF</comment>
- <comment xml:lang="eu">PEF exekutagarria</comment>
- <comment xml:lang="fi">PEF-ohjelma</comment>
- <comment xml:lang="fo">PEF inningarfør</comment>
- <comment xml:lang="fr">exécutable PEF</comment>
- <comment xml:lang="ga">comhad inrite PEF</comment>
- <comment xml:lang="gl">Executábel PEF</comment>
- <comment xml:lang="he">קובץ הרצה PEF</comment>
- <comment xml:lang="hr">PEF izvršna datoteka</comment>
- <comment xml:lang="hu">PEF futtatható</comment>
- <comment xml:lang="ia">Executabile PEF</comment>
- <comment xml:lang="id">PEF dapat dieksekusi</comment>
- <comment xml:lang="it">Eseguibile PEF</comment>
- <comment xml:lang="ja">PEF 実行ファイル</comment>
- <comment xml:lang="kk">PEF орындалатын файлы</comment>
- <comment xml:lang="ko">PEF 실행 파일</comment>
- <comment xml:lang="lt">PEF vykdomasis failas</comment>
- <comment xml:lang="lv">PEF izpildāmais</comment>
- <comment xml:lang="ms">Bolehlaksana PEF</comment>
- <comment xml:lang="nb">PEF-kjørbar</comment>
- <comment xml:lang="nl">PEF-uitvoerbaar bestand</comment>
- <comment xml:lang="nn">Køyrbar PEF-fil</comment>
- <comment xml:lang="oc">executable PEF</comment>
- <comment xml:lang="pl">Program PEF</comment>
- <comment xml:lang="pt">executável PEF</comment>
- <comment xml:lang="pt_BR">Executável PEF</comment>
- <comment xml:lang="ro">Executabil PEF</comment>
- <comment xml:lang="ru">Исполняемый файл PEF</comment>
- <comment xml:lang="sk">Spustiteľný súbor PEF</comment>
- <comment xml:lang="sl">Izvedljiva datoteka PEF</comment>
- <comment xml:lang="sq">E ekzekutueshme PEF</comment>
- <comment xml:lang="sr">ПЕФ извршна</comment>
- <comment xml:lang="sv">Körbar PEF-fil</comment>
- <comment xml:lang="tr">PEF çalıştırılabilir</comment>
- <comment xml:lang="uk">виконуваний файл PEF</comment>
- <comment xml:lang="vi">Tập tin thực hiện được PEF</comment>
- <comment xml:lang="zh_CN">PEF 可执行文件</comment>
<comment xml:lang="zh_TW">PEF 可執行檔</comment>
+ <comment xml:lang="zh_CN">PEF 可执行文件</comment>
+ <comment xml:lang="vi">Tập tin thực hiện được PEF</comment>
+ <comment xml:lang="uk">виконуваний файл PEF</comment>
+ <comment xml:lang="tr">PEF çalıştırılabilir</comment>
+ <comment xml:lang="sv">Körbar PEF-fil</comment>
+ <comment xml:lang="sr">ПЕФ извршна</comment>
+ <comment xml:lang="sq">e ekzekutueshme PEF</comment>
+ <comment xml:lang="sl">Izvedljiva datoteka PEF</comment>
+ <comment xml:lang="si">PEF ක්‍රියාත්මක කළ හැකිය</comment>
+ <comment xml:lang="sk">Spustiteľný súbor PEF</comment>
+ <comment xml:lang="ru">Исполняемый файл PEF</comment>
+ <comment xml:lang="ro">Executabil PEF</comment>
+ <comment xml:lang="pt_BR">Executável PEF</comment>
+ <comment xml:lang="pt">executável PEF</comment>
+ <comment xml:lang="pl">Program PEF</comment>
+ <comment xml:lang="oc">executable PEF</comment>
+ <comment xml:lang="nn">Køyrbar PEF-fil</comment>
+ <comment xml:lang="nl">PEF-programmabestand</comment>
+ <comment xml:lang="nb">PEF-kjørbar</comment>
+ <comment xml:lang="ms">Bolehlaksana PEF</comment>
+ <comment xml:lang="lv">PEF izpildāmais</comment>
+ <comment xml:lang="lt">PEF vykdomasis failas</comment>
+ <comment xml:lang="ko">PEF 실행 파일</comment>
+ <comment xml:lang="kk">PEF орындалатын файлы</comment>
+ <comment xml:lang="ja">PEF 実行ファイル</comment>
+ <comment xml:lang="it">Eseguibile PEF</comment>
+ <comment xml:lang="is">PEF keyrsluskrá</comment>
+ <comment xml:lang="id">PEF dapat dieksekusi</comment>
+ <comment xml:lang="ia">Executabile PEF</comment>
+ <comment xml:lang="hu">PEF futtatható</comment>
+ <comment xml:lang="hr">PEF izvršna datoteka</comment>
+ <comment xml:lang="he">קובץ הרצה PEF</comment>
+ <comment xml:lang="gl">Executábel PEF</comment>
+ <comment xml:lang="ga">comhad inrite PEF</comment>
+ <comment xml:lang="fur">eseguibil PEF</comment>
+ <comment xml:lang="fr">exécutable PEF</comment>
+ <comment xml:lang="fo">PEF inningarfør</comment>
+ <comment xml:lang="fi">PEF-ohjelma</comment>
+ <comment xml:lang="eu">PEF exekutagarria</comment>
+ <comment xml:lang="es">ejecutable PEF</comment>
+ <comment xml:lang="eo">PEF-plenumebla</comment>
+ <comment xml:lang="en_GB">PEF executable</comment>
+ <comment xml:lang="el">Εκτελέσιμο PEF</comment>
+ <comment xml:lang="de">PEF-Programm</comment>
+ <comment xml:lang="da">PEF-kørbar</comment>
+ <comment xml:lang="cs">spustitelný soubor PEF</comment>
+ <comment xml:lang="ca">executable PEF</comment>
+ <comment xml:lang="bg">Изпълним файл — PEF</comment>
+ <comment xml:lang="be@latin">Vykonvalny fajł PEF</comment>
+ <comment xml:lang="be">выконвальны файл PEF</comment>
+ <comment xml:lang="ar">PEF تنفيذي</comment>
+ <comment xml:lang="af">PEF-uitvoerbaar</comment>
+ <acronym>PEF</acronym>
+ <expanded-acronym>Preferred Executable Format</expanded-acronym>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
- <match value="Joy!" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="Joy!" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-perl">
<comment>Perl script</comment>
- <comment xml:lang="ar">سكربت بيرل</comment>
- <comment xml:lang="be@latin">Skrypt Perl</comment>
- <comment xml:lang="bg">Скрипт — Perl</comment>
- <comment xml:lang="ca">script Perl</comment>
- <comment xml:lang="cs">skript v Perlu</comment>
- <comment xml:lang="cy">Sgript Perl</comment>
- <comment xml:lang="da">Perlprogram</comment>
- <comment xml:lang="de">Perl-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών Perl</comment>
- <comment xml:lang="en_GB">Perl script</comment>
- <comment xml:lang="eo">Perl-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en Perl</comment>
- <comment xml:lang="eu">Perl script-a</comment>
- <comment xml:lang="fi">Perl-komentotiedosto</comment>
- <comment xml:lang="fo">Perl boðrøð</comment>
- <comment xml:lang="fr">script Perl</comment>
- <comment xml:lang="ga">script Perl</comment>
- <comment xml:lang="gl">Script de Perl</comment>
- <comment xml:lang="he">תסריט מעטפת של Perl</comment>
- <comment xml:lang="hr">Perl skripta</comment>
- <comment xml:lang="hu">Perl-parancsfájl</comment>
- <comment xml:lang="ia">Script Perl</comment>
- <comment xml:lang="id">Skrip Perl</comment>
- <comment xml:lang="it">Script Perl</comment>
- <comment xml:lang="ja">Perl スクリプト</comment>
- <comment xml:lang="kk">Perl сценарийі</comment>
- <comment xml:lang="ko">펄 스크립트</comment>
- <comment xml:lang="lt">Perl scenarijus</comment>
- <comment xml:lang="lv">Perl skripts</comment>
- <comment xml:lang="ms">Skrip Perl</comment>
- <comment xml:lang="nb">Perl skript</comment>
- <comment xml:lang="nl">Perl-script</comment>
- <comment xml:lang="nn">Perl-skript</comment>
- <comment xml:lang="oc">escript Perl</comment>
- <comment xml:lang="pl">Skrypt Perl</comment>
- <comment xml:lang="pt">script Perl</comment>
- <comment xml:lang="pt_BR">Script Perl</comment>
- <comment xml:lang="ro">Script Perl</comment>
- <comment xml:lang="ru">Сценарий Perl</comment>
- <comment xml:lang="sk">Skript jazyka Perl</comment>
- <comment xml:lang="sl">Skriptna datoteka Perl</comment>
- <comment xml:lang="sq">Script Perl</comment>
- <comment xml:lang="sr">Перл скрипта</comment>
- <comment xml:lang="sv">Perlskript</comment>
- <comment xml:lang="tr">Perl betiği</comment>
- <comment xml:lang="uk">скрипт на Perl</comment>
- <comment xml:lang="vi">Văn lệnh Perl</comment>
- <comment xml:lang="zh_CN">Perl 脚本</comment>
<comment xml:lang="zh_TW">Perl 指令稿</comment>
+ <comment xml:lang="zh_CN">Perl 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh Perl</comment>
+ <comment xml:lang="uk">скрипт на Perl</comment>
+ <comment xml:lang="tr">Perl betiği</comment>
+ <comment xml:lang="sv">Perlskript</comment>
+ <comment xml:lang="sr">Перл скрипта</comment>
+ <comment xml:lang="sq">programth Perl</comment>
+ <comment xml:lang="sl">Skriptna datoteka Perl</comment>
+ <comment xml:lang="si">පර්ල් පිටපත</comment>
+ <comment xml:lang="sk">Skript jazyka Perl</comment>
+ <comment xml:lang="ru">Сценарий Perl</comment>
+ <comment xml:lang="ro">Script Perl</comment>
+ <comment xml:lang="pt_BR">Script Perl</comment>
+ <comment xml:lang="pt">script Perl</comment>
+ <comment xml:lang="pl">Skrypt Perl</comment>
+ <comment xml:lang="oc">escript Perl</comment>
+ <comment xml:lang="nn">Perl-skript</comment>
+ <comment xml:lang="nl">Perl-script</comment>
+ <comment xml:lang="nb">Perl skript</comment>
+ <comment xml:lang="ms">Skrip Perl</comment>
+ <comment xml:lang="lv">Perl skripts</comment>
+ <comment xml:lang="lt">Perl scenarijus</comment>
+ <comment xml:lang="ko">펄 스크립트</comment>
+ <comment xml:lang="kk">Perl сценарийі</comment>
+ <comment xml:lang="ja">Perl スクリプト</comment>
+ <comment xml:lang="it">Script Perl</comment>
+ <comment xml:lang="is">Perl skrifta</comment>
+ <comment xml:lang="id">Skrip Perl</comment>
+ <comment xml:lang="ia">Script Perl</comment>
+ <comment xml:lang="hu">Perl-parancsfájl</comment>
+ <comment xml:lang="hr">Perl skripta</comment>
+ <comment xml:lang="he">תסריט מעטפת של Perl</comment>
+ <comment xml:lang="gl">Script de Perl</comment>
+ <comment xml:lang="ga">script Perl</comment>
+ <comment xml:lang="fur">script Perl</comment>
+ <comment xml:lang="fr">script Perl</comment>
+ <comment xml:lang="fo">Perl boðrøð</comment>
+ <comment xml:lang="fi">Perl-komentotiedosto</comment>
+ <comment xml:lang="eu">Perl script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Perl</comment>
+ <comment xml:lang="eo">Perl-skripto</comment>
+ <comment xml:lang="en_GB">Perl script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών Perl</comment>
+ <comment xml:lang="de">Perl-Skript</comment>
+ <comment xml:lang="da">Perl-program</comment>
+ <comment xml:lang="cy">Sgript Perl</comment>
+ <comment xml:lang="cs">skript v Perlu</comment>
+ <comment xml:lang="ca">script Perl</comment>
+ <comment xml:lang="bg">Скрипт — Perl</comment>
+ <comment xml:lang="be@latin">Skrypt Perl</comment>
+ <comment xml:lang="be">скрыпт Perl</comment>
+ <comment xml:lang="ar">سكربت بيرل</comment>
+ <comment xml:lang="af">Perl-skrip</comment>
<sub-class-of type="application/x-executable"/>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<alias type="text/x-perl"/>
- <magic priority="50">
- <match value='eval \"exec /usr/local/bin/perl' type="string" offset="0"/>
- <match value="/bin/perl" type="string" offset="2:16"/>
- <match value="/bin/env perl" type="string" offset="2:16"/>
- <match value="use strict" type="string" offset="0:256"/>
- <match value="use warnings" type="string" offset="0:256"/>
- <match value="use diagnostics" type="string" offset="0:256"/>
- <match value="use Test::" type="string" offset="0:256"/>
- <match value="BEGIN {" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="eval \&quot;exec /usr/local/bin/perl" offset="0"/>
+ <match type="string" value="/bin/perl" offset="2:16"/>
+ <match type="string" value="/bin/env perl" offset="2:16"/>
+ <match type="string" value="use Test::" offset="0:256"/>
</magic>
<magic priority="40">
- <match value="\n=pod" type="string" offset="0:256"/>
- <match value="\n=head1 NAME" type="string" offset="0:256"/>
- <match value="\n=head1 DESCRIPTION" type="string" offset="0:256"/>
+ <match type="string" value="use strict" offset="0:256"/>
+ <match type="string" value="use warnings" offset="0:256"/>
+ <match type="string" value="use diagnostics" offset="0:256"/>
+ <match type="string" value="\n=pod" offset="0:256"/>
+ <match type="string" value="\n=head1 NAME" offset="0:256"/>
+ <match type="string" value="\n=head1 DESCRIPTION" offset="0:256"/>
+ <match type="string" value="BEGIN {" offset="0:256"/>
</magic>
<glob pattern="*.pl"/>
<glob pattern="*.PL"/>
+ <!-- CPAN-style Perl build script -->
<glob pattern="*.pm"/>
+ <!-- module -->
<glob pattern="*.al"/>
+ <!-- autoloader -->
<glob pattern="*.perl"/>
<glob pattern="*.pod"/>
- <glob weight="10" pattern="*.t"/>
+ <!-- documentation -->
+ <glob pattern="*.t" weight="10"/>
+ <!-- CPAN-style Perl test script -->
</mime-type>
<mime-type type="application/x-php">
<comment>PHP script</comment>
- <comment xml:lang="ar">سكربت PHP</comment>
- <comment xml:lang="az">PHP skripti</comment>
- <comment xml:lang="be@latin">Skrypt PHP</comment>
- <comment xml:lang="bg">Скрипт — PHP</comment>
- <comment xml:lang="ca">script PHP</comment>
- <comment xml:lang="cs">skript PHP</comment>
- <comment xml:lang="cy">Sgript PHP</comment>
- <comment xml:lang="da">PHP-program</comment>
- <comment xml:lang="de">PHP-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών PHP</comment>
- <comment xml:lang="en_GB">PHP script</comment>
- <comment xml:lang="eo">PHP-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en PHP</comment>
- <comment xml:lang="eu">PHP script-a</comment>
- <comment xml:lang="fi">PHP-komentotiedosto</comment>
- <comment xml:lang="fo">PHP boðrøð</comment>
- <comment xml:lang="fr">script PHP</comment>
- <comment xml:lang="ga">script PHP</comment>
- <comment xml:lang="gl">Script de PHP</comment>
- <comment xml:lang="he">תסריט מעטפת של PHP</comment>
- <comment xml:lang="hr">PHP skripta</comment>
- <comment xml:lang="hu">PHP-parancsfájl</comment>
- <comment xml:lang="ia">Script PHP</comment>
- <comment xml:lang="id">Skrip PHP</comment>
- <comment xml:lang="it">Script PHP</comment>
- <comment xml:lang="ja">PHP スクリプト</comment>
- <comment xml:lang="kk">PHP сценарийі</comment>
- <comment xml:lang="ko">PHP 스크립트</comment>
- <comment xml:lang="lt">PHP scenarijus</comment>
- <comment xml:lang="lv">PHP skripts</comment>
- <comment xml:lang="ms">Skrip PHP</comment>
- <comment xml:lang="nb">PHP-skript</comment>
- <comment xml:lang="nl">PHP-script</comment>
- <comment xml:lang="nn">PHP-skript</comment>
- <comment xml:lang="oc">escript PHP</comment>
- <comment xml:lang="pl">Skrypt PHP</comment>
- <comment xml:lang="pt">script PHP</comment>
- <comment xml:lang="pt_BR">Script PHP</comment>
- <comment xml:lang="ro">Script PHP</comment>
- <comment xml:lang="ru">Сценарий PHP</comment>
- <comment xml:lang="sk">Skript PHP</comment>
- <comment xml:lang="sl">Skriptna datoteka PHP</comment>
- <comment xml:lang="sq">Script PHP</comment>
- <comment xml:lang="sr">ПХП скрипта</comment>
- <comment xml:lang="sv">PHP-skript</comment>
- <comment xml:lang="tr">PHP betiği</comment>
- <comment xml:lang="uk">скрипт PHP</comment>
- <comment xml:lang="vi">Văn lệnh PHP</comment>
- <comment xml:lang="zh_CN">PHP 脚本</comment>
<comment xml:lang="zh_TW">PHP 指令稿</comment>
+ <comment xml:lang="zh_CN">PHP 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh PHP</comment>
+ <comment xml:lang="uk">скрипт PHP</comment>
+ <comment xml:lang="tr">PHP betiği</comment>
+ <comment xml:lang="sv">PHP-skript</comment>
+ <comment xml:lang="sr">ПХП скрипта</comment>
+ <comment xml:lang="sq">programth PHP</comment>
+ <comment xml:lang="sl">Skriptna datoteka PHP</comment>
+ <comment xml:lang="si">PHP ස්ක්‍රිප්ට්</comment>
+ <comment xml:lang="sk">Skript PHP</comment>
+ <comment xml:lang="ru">Сценарий PHP</comment>
+ <comment xml:lang="ro">Script PHP</comment>
+ <comment xml:lang="pt_BR">Script PHP</comment>
+ <comment xml:lang="pt">script PHP</comment>
+ <comment xml:lang="pl">Skrypt PHP</comment>
+ <comment xml:lang="oc">escript PHP</comment>
+ <comment xml:lang="nn">PHP-skript</comment>
+ <comment xml:lang="nl">PHP-script</comment>
+ <comment xml:lang="nb">PHP-skript</comment>
+ <comment xml:lang="ms">Skrip PHP</comment>
+ <comment xml:lang="lv">PHP skripts</comment>
+ <comment xml:lang="lt">PHP scenarijus</comment>
+ <comment xml:lang="ko">PHP 스크립트</comment>
+ <comment xml:lang="kk">PHP сценарийі</comment>
+ <comment xml:lang="ja">PHP スクリプト</comment>
+ <comment xml:lang="it">Script PHP</comment>
+ <comment xml:lang="is">PHP skrifta</comment>
+ <comment xml:lang="id">Skrip PHP</comment>
+ <comment xml:lang="ia">Script PHP</comment>
+ <comment xml:lang="hu">PHP-parancsfájl</comment>
+ <comment xml:lang="hr">PHP skripta</comment>
+ <comment xml:lang="he">תסריט מעטפת של PHP</comment>
+ <comment xml:lang="gl">Script de PHP</comment>
+ <comment xml:lang="ga">script PHP</comment>
+ <comment xml:lang="fur">script PHP</comment>
+ <comment xml:lang="fr">script PHP</comment>
+ <comment xml:lang="fo">PHP boðrøð</comment>
+ <comment xml:lang="fi">PHP-komentotiedosto</comment>
+ <comment xml:lang="eu">PHP script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en PHP</comment>
+ <comment xml:lang="eo">PHP-skripto</comment>
+ <comment xml:lang="en_GB">PHP script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών PHP</comment>
+ <comment xml:lang="de">PHP-Skript</comment>
+ <comment xml:lang="da">PHP-program</comment>
+ <comment xml:lang="cy">Sgript PHP</comment>
+ <comment xml:lang="cs">skript PHP</comment>
+ <comment xml:lang="ca">script PHP</comment>
+ <comment xml:lang="bg">Скрипт — PHP</comment>
+ <comment xml:lang="be@latin">Skrypt PHP</comment>
+ <comment xml:lang="be">скрыпт PHP</comment>
+ <comment xml:lang="az">PHP skripti</comment>
+ <comment xml:lang="ar">سكربت PHP</comment>
+ <comment xml:lang="af">PHP-skrip</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<magic priority="80">
- <match value="&lt;?php" type="string" offset="0:64"/>
+ <match type="string" value="&lt;?php" offset="0:64"/>
</magic>
<glob pattern="*.php"/>
<glob pattern="*.php3"/>
@@ -18173,48 +19903,54 @@
</mime-type>
<mime-type type="application/x-pkcs7-certificates">
<comment>PKCS#7 certificate bundle</comment>
- <comment xml:lang="ar">رزمة الشهادة PKCS#7</comment>
- <comment xml:lang="bg">Сбор със сертификати — PKCS#7</comment>
- <comment xml:lang="ca">conjunt de certificats PKCS#7</comment>
- <comment xml:lang="cs">svazek certifikátů PKCS#7</comment>
- <comment xml:lang="da">PKCS#7-certifikatbundt</comment>
- <comment xml:lang="de">PKCS#7-Zertifikatspaket</comment>
- <comment xml:lang="el">Πακέτο ψηφιακών πιστοποιητικών PKCS#7</comment>
- <comment xml:lang="en_GB">PKCS#7 certificate bundle</comment>
- <comment xml:lang="es">lote de certificados PCKS#7</comment>
- <comment xml:lang="eu">PKCS#7 zertifikazio sorta</comment>
- <comment xml:lang="fi">PKCS#7-varmennenippu</comment>
- <comment xml:lang="fo">PKCS#7 váttanar bundi</comment>
- <comment xml:lang="fr">lot de certificats PKCS#7</comment>
- <comment xml:lang="ga">burla teastas PKCS#7</comment>
- <comment xml:lang="gl">paquete de certificado PKCS#7</comment>
- <comment xml:lang="he">בקשה מוסמכת PKCS#7</comment>
- <comment xml:lang="hr">PKCS#7 paket vjerodajnica</comment>
- <comment xml:lang="hu">PKCS#7-tanúsítványcsomag</comment>
- <comment xml:lang="ia">Pacchetto de certificatos PKCS#7</comment>
- <comment xml:lang="id">Bundel sertifikat PKCS#7</comment>
- <comment xml:lang="it">Bundle certificato PKCS#7</comment>
- <comment xml:lang="ja">PKCS#7 証明書</comment>
- <comment xml:lang="kk">PKCS#7 сертификаттар дестесі</comment>
- <comment xml:lang="ko">PKCS#7 인증서 묶음</comment>
- <comment xml:lang="lt">PKCS#7 liudijimų ryšulys</comment>
- <comment xml:lang="lv">PKCS#7 sertifikātu saišķis</comment>
- <comment xml:lang="nl">PKCS#7-certificaatbundel</comment>
- <comment xml:lang="oc">lòt de certificats PKCS#7</comment>
- <comment xml:lang="pl">Pakiet certyfikatu PKCS#7</comment>
- <comment xml:lang="pt">pacote de certificação PKCS#7</comment>
- <comment xml:lang="pt_BR">Pacote de certificados PKCS#7</comment>
- <comment xml:lang="ro">Pachet certificat PKCS#7</comment>
- <comment xml:lang="ru">Пакет сертификата PKCS#7</comment>
- <comment xml:lang="sk">Zväzok certifikátov PKCS#7</comment>
- <comment xml:lang="sl">Datoteka potrdila PKCS#7</comment>
- <comment xml:lang="sr">ПКЦС#7 пакет уверења</comment>
- <comment xml:lang="sv">PKCS#7-certifikatsamling</comment>
- <comment xml:lang="tr">PKCS#7 sertifika paketi</comment>
- <comment xml:lang="uk">комплект сертифікатів PKCS#7</comment>
- <comment xml:lang="vi">Bó chứng nhận PKCS#7</comment>
- <comment xml:lang="zh_CN">PKCS#7 证书束</comment>
<comment xml:lang="zh_TW">PKCS#7 憑證綁包</comment>
+ <comment xml:lang="zh_CN">PKCS#7 证书束</comment>
+ <comment xml:lang="vi">Bó chứng nhận PKCS#7</comment>
+ <comment xml:lang="uk">комплект сертифікатів PKCS#7</comment>
+ <comment xml:lang="tr">PKCS#7 sertifika paketi</comment>
+ <comment xml:lang="sv">PKCS#7-certifikatsamling</comment>
+ <comment xml:lang="sr">ПКЦС#7 пакет уверења</comment>
+ <comment xml:lang="sq">paketë dëshmish PKCS#7</comment>
+ <comment xml:lang="sl">Datoteka potrdila PKCS#7</comment>
+ <comment xml:lang="si">PKCS#7 සහතික මිටියක්</comment>
+ <comment xml:lang="sk">Zväzok certifikátov PKCS#7</comment>
+ <comment xml:lang="ru">Пакет сертификата PKCS#7</comment>
+ <comment xml:lang="ro">Pachet certificat PKCS#7</comment>
+ <comment xml:lang="pt_BR">Pacote de certificados PKCS#7</comment>
+ <comment xml:lang="pt">pacote de certificação PKCS#7</comment>
+ <comment xml:lang="pl">Pakiet certyfikatu PKCS#7</comment>
+ <comment xml:lang="oc">lòt de certificats PKCS#7</comment>
+ <comment xml:lang="nl">PKCS#7-certificaatbundel</comment>
+ <comment xml:lang="lv">PKCS#7 sertifikātu saišķis</comment>
+ <comment xml:lang="lt">PKCS#7 liudijimų ryšulys</comment>
+ <comment xml:lang="ko">PKCS#7 인증서 묶음</comment>
+ <comment xml:lang="kk">PKCS#7 сертификаттар дестесі</comment>
+ <comment xml:lang="ja">PKCS#7 証明書バンドル</comment>
+ <comment xml:lang="it">Bundle certificato PKCS#7</comment>
+ <comment xml:lang="is">PKCS#7 skilríkjavöndull</comment>
+ <comment xml:lang="id">Bundel sertifikat PKCS#7</comment>
+ <comment xml:lang="ia">Pacchetto de certificatos PKCS#7</comment>
+ <comment xml:lang="hu">PKCS#7-tanúsítványcsomag</comment>
+ <comment xml:lang="hr">PKCS#7 paket vjerodajnica</comment>
+ <comment xml:lang="he">בקשה מוסמכת PKCS#7</comment>
+ <comment xml:lang="gl">paquete de certificado PKCS#7</comment>
+ <comment xml:lang="ga">burla teastas PKCS#7</comment>
+ <comment xml:lang="fur">côl di certificâts PKCS#7</comment>
+ <comment xml:lang="fr">lot de certificats PKCS#7</comment>
+ <comment xml:lang="fo">PKCS#7 váttanar bundi</comment>
+ <comment xml:lang="fi">PKCS#7-varmennepaketti</comment>
+ <comment xml:lang="eu">PKCS#7 zertifikazio sorta</comment>
+ <comment xml:lang="es">lote de certificados PCKS#7</comment>
+ <comment xml:lang="en_GB">PKCS#7 certificate bundle</comment>
+ <comment xml:lang="el">Πακέτο ψηφιακών πιστοποιητικών PKCS#7</comment>
+ <comment xml:lang="de">PKCS#7-Zertifikatpaket</comment>
+ <comment xml:lang="da">PKCS#7-certifikatbundt</comment>
+ <comment xml:lang="cs">svazek certifikátů PKCS#7</comment>
+ <comment xml:lang="ca">conjunt de certificats PKCS#7</comment>
+ <comment xml:lang="bg">Пакет със сертификати — PKCS#7</comment>
+ <comment xml:lang="be">пакет сертыфікатаў PKCS#7</comment>
+ <comment xml:lang="ar">رزمة شهادة PKCS#7</comment>
+ <comment xml:lang="af">PKCS#7-sertifikaatbundel</comment>
<acronym>PKCS</acronym>
<expanded-acronym>Public-Key Cryptography Standards</expanded-acronym>
<glob pattern="*.p7b"/>
@@ -18222,54 +19958,59 @@
</mime-type>
<mime-type type="application/pkcs12">
<comment>PKCS#12 certificate bundle</comment>
- <comment xml:lang="ar">رزمة الشهادة PKCS#12</comment>
- <comment xml:lang="be@latin">Viazka sertyfikataŭ PKCS#12</comment>
- <comment xml:lang="bg">Сбор със сертификати — PKCS#12</comment>
- <comment xml:lang="ca">conjunt de certificats PKCS#12</comment>
- <comment xml:lang="cs">svazek certifikátů PKCS#12</comment>
- <comment xml:lang="da">PKCS#12-certifikatbundt</comment>
- <comment xml:lang="de">PKCS#12-Zertifikatspaket</comment>
- <comment xml:lang="el">Πακέτο ψηφιακών πιστοποιητικών PKCS#12</comment>
- <comment xml:lang="en_GB">PKCS#12 certificate bundle</comment>
- <comment xml:lang="eo">ligaĵo de PKCS#12-atestiloj</comment>
- <comment xml:lang="es">lote de certificados PCKS#12</comment>
- <comment xml:lang="eu">PKCS#12 zertifikazio sorta</comment>
- <comment xml:lang="fi">PKCS#12-varmennenippu</comment>
- <comment xml:lang="fo">PKCS#12 váttanar bundi</comment>
- <comment xml:lang="fr">lot de certificats PKCS#12</comment>
- <comment xml:lang="ga">burla teastas PKCS#12</comment>
- <comment xml:lang="gl">paquete de certificado PKCS#12</comment>
- <comment xml:lang="he">בקשה מוסמכת PKCS#12</comment>
- <comment xml:lang="hr">PKCS#12 paket vjerodajnica</comment>
- <comment xml:lang="hu">PKCS#12-tanúsítványcsomag</comment>
- <comment xml:lang="ia">Pacchetto de certificatos PKCS#12</comment>
- <comment xml:lang="id">Bundel sertifikat PKCS#12</comment>
- <comment xml:lang="it">Bundle certificato PKCS#12</comment>
- <comment xml:lang="ja">PKCS#12 証明書</comment>
- <comment xml:lang="kk">PKCS#12 сертификаттар дестесі</comment>
- <comment xml:lang="ko">PKCS#12 인증서 묶음</comment>
- <comment xml:lang="lt">PKCS#12 liudijimų ryšulys</comment>
- <comment xml:lang="lv">PKCS#12 sertifikātu saišķis</comment>
- <comment xml:lang="ms">Sijil PKCS#12</comment>
- <comment xml:lang="nb">PKCS#12 sertifikathaug</comment>
- <comment xml:lang="nl">PKCS#12-certificaatbundel</comment>
- <comment xml:lang="nn">PKCS#12-sertifikatbunt</comment>
- <comment xml:lang="oc">lòt de certificats PKCS#12</comment>
- <comment xml:lang="pl">Pakiet certyfikatu PKCS#12</comment>
- <comment xml:lang="pt">pacote de certificação PKCS#12</comment>
- <comment xml:lang="pt_BR">Pacote de certificados PKCS#12</comment>
- <comment xml:lang="ro">Certificat împachetat PKCS#12</comment>
- <comment xml:lang="ru">Пакет сертификата PKCS#12</comment>
- <comment xml:lang="sk">Zväzok certifikátov PKCS#12</comment>
- <comment xml:lang="sl">Datoteka potrdila PKCS#12</comment>
- <comment xml:lang="sq">Bundle çertifikate PKCS#12</comment>
- <comment xml:lang="sr">ПКЦС#12 пакет уверења</comment>
- <comment xml:lang="sv">PKCS#12-certifikatsamling</comment>
- <comment xml:lang="tr">PKCS#12 sertifika paketi</comment>
- <comment xml:lang="uk">комплект сертифікатів PKCS#12</comment>
- <comment xml:lang="vi">Bó chứng nhận PKCS#12</comment>
+ <comment xml:lang="zh_TW">PKCS#12 憑證綁包</comment>
<comment xml:lang="zh_CN">PKCS#12 证书束</comment>
- <comment xml:lang="zh_TW">PKCS#12 憑證檔綁包</comment>
+ <comment xml:lang="vi">Bó chứng nhận PKCS#12</comment>
+ <comment xml:lang="uk">комплект сертифікатів PKCS#12</comment>
+ <comment xml:lang="tr">PKCS#12 sertifika paketi</comment>
+ <comment xml:lang="sv">PKCS#12-certifikatsamling</comment>
+ <comment xml:lang="sr">ПКЦС#12 пакет уверења</comment>
+ <comment xml:lang="sq">paketë dëshmish PKCS#12</comment>
+ <comment xml:lang="sl">Datoteka potrdila PKCS#12</comment>
+ <comment xml:lang="si">PKCS#12 සහතික මිටියක්</comment>
+ <comment xml:lang="sk">Zväzok certifikátov PKCS#12</comment>
+ <comment xml:lang="ru">Пакет сертификата PKCS#12</comment>
+ <comment xml:lang="ro">Certificat împachetat PKCS#12</comment>
+ <comment xml:lang="pt_BR">Pacote de certificados PKCS#12</comment>
+ <comment xml:lang="pt">pacote de certificação PKCS#12</comment>
+ <comment xml:lang="pl">Pakiet certyfikatu PKCS#12</comment>
+ <comment xml:lang="oc">lòt de certificats PKCS#12</comment>
+ <comment xml:lang="nn">PKCS#12-sertifikatbunt</comment>
+ <comment xml:lang="nl">PKCS#12-certificaatbundel</comment>
+ <comment xml:lang="nb">PKCS#12 sertifikathaug</comment>
+ <comment xml:lang="ms">Sijil PKCS#12</comment>
+ <comment xml:lang="lv">PKCS#12 sertifikātu saišķis</comment>
+ <comment xml:lang="lt">PKCS#12 liudijimų ryšulys</comment>
+ <comment xml:lang="ko">PKCS#12 인증서 묶음</comment>
+ <comment xml:lang="kk">PKCS#12 сертификаттар дестесі</comment>
+ <comment xml:lang="ja">PKCS#12 証明書バンドル</comment>
+ <comment xml:lang="it">Bundle certificato PKCS#12</comment>
+ <comment xml:lang="is">PKCS#12 skilríkjavöndull</comment>
+ <comment xml:lang="id">Bundel sertifikat PKCS#12</comment>
+ <comment xml:lang="ia">Pacchetto de certificatos PKCS#12</comment>
+ <comment xml:lang="hu">PKCS#12-tanúsítványcsomag</comment>
+ <comment xml:lang="hr">PKCS#12 paket vjerodajnica</comment>
+ <comment xml:lang="he">בקשה מוסמכת PKCS#12</comment>
+ <comment xml:lang="gl">paquete de certificado PKCS#12</comment>
+ <comment xml:lang="ga">burla teastas PKCS#12</comment>
+ <comment xml:lang="fur">côl di certificâts PKCS#12</comment>
+ <comment xml:lang="fr">lot de certificats PKCS#12</comment>
+ <comment xml:lang="fo">PKCS#12 váttanar bundi</comment>
+ <comment xml:lang="fi">PKCS#12-varmennepaketti</comment>
+ <comment xml:lang="eu">PKCS#12 zertifikazio sorta</comment>
+ <comment xml:lang="es">lote de certificados PCKS#12</comment>
+ <comment xml:lang="eo">ligaĵo de PKCS#12-atestiloj</comment>
+ <comment xml:lang="en_GB">PKCS#12 certificate bundle</comment>
+ <comment xml:lang="el">Πακέτο ψηφιακών πιστοποιητικών PKCS#12</comment>
+ <comment xml:lang="de">PKCS#12-Zertifikatpaket</comment>
+ <comment xml:lang="da">PKCS#12-certifikatbundt</comment>
+ <comment xml:lang="cs">svazek certifikátů PKCS#12</comment>
+ <comment xml:lang="ca">conjunt de certificats PKCS#12</comment>
+ <comment xml:lang="bg">Пакет със сертификати — PKCS#12</comment>
+ <comment xml:lang="be@latin">Viazka sertyfikataŭ PKCS#12</comment>
+ <comment xml:lang="be">пакет сертыфікатаў PKCS#12</comment>
+ <comment xml:lang="ar">رزمة شهادة PKCS#12</comment>
+ <comment xml:lang="af">PKCS#12-sertifikaatbundel</comment>
<acronym>PKCS</acronym>
<expanded-acronym>Public-Key Cryptography Standards</expanded-acronym>
<glob pattern="*.p12"/>
@@ -18278,314 +20019,304 @@
</mime-type>
<mime-type type="application/x-planperfect">
<comment>PlanPerfect spreadsheet</comment>
- <comment xml:lang="ar">جدول PlanPerfect</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš PlanPerfect</comment>
- <comment xml:lang="bg">Таблица — PlanPerfect</comment>
- <comment xml:lang="ca">full de càlcul de PlanPerfect</comment>
- <comment xml:lang="cs">sešit PlanPerfect</comment>
- <comment xml:lang="da">PlanPerfect-regneark</comment>
- <comment xml:lang="de">PlanPerfect-Tabelle</comment>
- <comment xml:lang="el">Φύλλο εργασίας PlanPerfect</comment>
- <comment xml:lang="en_GB">PlanPerfect spreadsheet</comment>
- <comment xml:lang="es">hoja de cálculo de PlanPerfect</comment>
- <comment xml:lang="eu">PlanPerfect kalkulu-orria</comment>
- <comment xml:lang="fi">PlanPerfect-taulukko</comment>
- <comment xml:lang="fo">PlanPerfect rokniark</comment>
- <comment xml:lang="fr">feuille de calcul PlanPerfect</comment>
- <comment xml:lang="ga">scarbhileog PlanPerfect</comment>
- <comment xml:lang="gl">folla de cálculo de PlanPerfect</comment>
- <comment xml:lang="he">גליון נתונים של PlanPerfect</comment>
- <comment xml:lang="hr">PlanPerfect proračunska tablica</comment>
- <comment xml:lang="hu">PlanPerfect táblázat</comment>
- <comment xml:lang="ia">Folio de calculo PlanPerfect</comment>
- <comment xml:lang="id">Lembar sebar PlanPerfect</comment>
- <comment xml:lang="it">Foglio di calcolo PlanPerfect</comment>
- <comment xml:lang="ja">PlanPerfect スプレッドシート</comment>
- <comment xml:lang="kk">PlanPerfect электрондық кестесі</comment>
- <comment xml:lang="ko">PlanPerfect 스프레드시트</comment>
- <comment xml:lang="lt">PlanPerfect skaičialentė</comment>
- <comment xml:lang="lv">PlanPerfect izklājlapa</comment>
- <comment xml:lang="nb">PlanPerfect-regneark</comment>
- <comment xml:lang="nl">PlanPerfect-rekenblad</comment>
- <comment xml:lang="nn">PlanPerfect-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul PlanPerfect</comment>
- <comment xml:lang="pl">Arkusz PlanPerfect</comment>
- <comment xml:lang="pt">folha de cálculo PlanPerfect</comment>
- <comment xml:lang="pt_BR">Planilha do PlanPerfect</comment>
- <comment xml:lang="ro">Foaie de calcul PlanPerfect</comment>
- <comment xml:lang="ru">Электронная таблица PlanPerfect</comment>
- <comment xml:lang="sk">Zošit PlanPerfect</comment>
- <comment xml:lang="sl">Preglednica PlanPerfect</comment>
- <comment xml:lang="sq">Fletë llogaritjesh PlanPerfect</comment>
- <comment xml:lang="sr">табела План Перфекта</comment>
- <comment xml:lang="sv">PlanPerfect-kalkylblad</comment>
- <comment xml:lang="tr">PlanPerfect çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця PlanPerfect</comment>
- <comment xml:lang="vi">Bảng tính PlanPerfect</comment>
- <comment xml:lang="zh_CN">PlanPerfect 电子表格</comment>
<comment xml:lang="zh_TW">PlanPerfect 試算表</comment>
+ <comment xml:lang="zh_CN">PlanPerfect 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính PlanPerfect</comment>
+ <comment xml:lang="uk">електронна таблиця PlanPerfect</comment>
+ <comment xml:lang="tr">PlanPerfect hesap çizelgesi</comment>
+ <comment xml:lang="sv">PlanPerfect-kalkylblad</comment>
+ <comment xml:lang="sr">табела План Перфекта</comment>
+ <comment xml:lang="sq">fletëllogaritje PlanPerfect</comment>
+ <comment xml:lang="sl">Preglednica PlanPerfect</comment>
+ <comment xml:lang="si">PlanPerfect පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit PlanPerfect</comment>
+ <comment xml:lang="ru">Электронная таблица PlanPerfect</comment>
+ <comment xml:lang="ro">Foaie de calcul PlanPerfect</comment>
+ <comment xml:lang="pt_BR">Planilha do PlanPerfect</comment>
+ <comment xml:lang="pt">folha de cálculo PlanPerfect</comment>
+ <comment xml:lang="pl">Arkusz PlanPerfect</comment>
+ <comment xml:lang="oc">fuèlh de calcul PlanPerfect</comment>
+ <comment xml:lang="nn">PlanPerfect-rekneark</comment>
+ <comment xml:lang="nl">PlanPerfect-rekenblad</comment>
+ <comment xml:lang="nb">PlanPerfect-regneark</comment>
+ <comment xml:lang="lv">PlanPerfect izklājlapa</comment>
+ <comment xml:lang="lt">PlanPerfect skaičialentė</comment>
+ <comment xml:lang="ko">PlanPerfect 스프레드시트</comment>
+ <comment xml:lang="kk">PlanPerfect электрондық кестесі</comment>
+ <comment xml:lang="ja">PlanPerfect スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo PlanPerfect</comment>
+ <comment xml:lang="is">PlanPerfect töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar PlanPerfect</comment>
+ <comment xml:lang="ia">Folio de calculo PlanPerfect</comment>
+ <comment xml:lang="hu">PlanPerfect táblázat</comment>
+ <comment xml:lang="hr">PlanPerfect proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של PlanPerfect</comment>
+ <comment xml:lang="gl">folla de cálculo de PlanPerfect</comment>
+ <comment xml:lang="ga">scarbhileog PlanPerfect</comment>
+ <comment xml:lang="fur">sfuei di calcul PlanPerfect</comment>
+ <comment xml:lang="fr">feuille de calcul PlanPerfect</comment>
+ <comment xml:lang="fo">PlanPerfect rokniark</comment>
+ <comment xml:lang="fi">PlanPerfect-taulukko</comment>
+ <comment xml:lang="eu">PlanPerfect kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de PlanPerfect</comment>
+ <comment xml:lang="en_GB">PlanPerfect spreadsheet</comment>
+ <comment xml:lang="el">Φύλλο εργασίας PlanPerfect</comment>
+ <comment xml:lang="de">PlanPerfect-Tabelle</comment>
+ <comment xml:lang="da">PlanPerfect-regneark</comment>
+ <comment xml:lang="cs">sešit PlanPerfect</comment>
+ <comment xml:lang="ca">full de càlcul de PlanPerfect</comment>
+ <comment xml:lang="bg">Таблица — PlanPerfect</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš PlanPerfect</comment>
+ <comment xml:lang="be">электронная табліца PlanPerfect</comment>
+ <comment xml:lang="ar">جدول PlanPerfect</comment>
+ <comment xml:lang="af">PlanPerfect-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.pln"/>
</mime-type>
<mime-type type="application/x-pocket-word">
<comment>Pocket Word document</comment>
- <comment xml:lang="ar">مستند Pocket Word</comment>
- <comment xml:lang="ast">Documentu de PocketWord</comment>
- <comment xml:lang="bg">Документ — Pocket Word</comment>
- <comment xml:lang="ca">document de Pocket Word</comment>
- <comment xml:lang="cs">dokument Pocket Word</comment>
- <comment xml:lang="da">Pocket Word-dokument</comment>
- <comment xml:lang="de">Pocket-Word-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Pocket Word</comment>
- <comment xml:lang="en_GB">Pocket Word document</comment>
- <comment xml:lang="es">documento de Pocket Word</comment>
- <comment xml:lang="eu">Pocket Word dokumentua</comment>
- <comment xml:lang="fi">Pocket Word -asiakirja</comment>
- <comment xml:lang="fo">Pocket Word skjal</comment>
- <comment xml:lang="fr">document Pocket Word</comment>
- <comment xml:lang="ga">cáipéis Pocket Word</comment>
- <comment xml:lang="gl">documento de Pocket Word</comment>
- <comment xml:lang="he">מסמך של Pocket Word</comment>
- <comment xml:lang="hr">Pocket Word dokument</comment>
- <comment xml:lang="hu">Pocket Word dokumentum</comment>
- <comment xml:lang="ia">Documento Pocket Word</comment>
- <comment xml:lang="id">Dokumen Pocket Word</comment>
- <comment xml:lang="it">Documento Pocket Word</comment>
- <comment xml:lang="ja">Pocket Word ドキュメント</comment>
- <comment xml:lang="kk">Pocket Word құжаты</comment>
- <comment xml:lang="ko">Pocket Word 문서</comment>
- <comment xml:lang="lt">Pocket Word dokumentas</comment>
- <comment xml:lang="lv">Pocket Word dokuments</comment>
- <comment xml:lang="nl">Pocket Word-document</comment>
- <comment xml:lang="oc">document Pocket Word</comment>
- <comment xml:lang="pl">Dokument Pocket Word</comment>
- <comment xml:lang="pt">documento Pocket Word</comment>
- <comment xml:lang="pt_BR">Documento do Pocket Word</comment>
- <comment xml:lang="ro">Document Pocket Word</comment>
- <comment xml:lang="ru">Документ Pocket Word</comment>
- <comment xml:lang="sk">Dokument Pocket Word</comment>
- <comment xml:lang="sl">Dokument Pocket Word</comment>
- <comment xml:lang="sr">документ Покет Ворда</comment>
- <comment xml:lang="sv">Pocket Word-dokument</comment>
- <comment xml:lang="tr">Pocket Word belgesi</comment>
- <comment xml:lang="uk">документ Pocket Word</comment>
- <comment xml:lang="vi">Tài liệu Pocket Word</comment>
- <comment xml:lang="zh_CN">Pocket Word 文档</comment>
<comment xml:lang="zh_TW">Pocket Word 文件</comment>
+ <comment xml:lang="zh_CN">Pocket Word 文档</comment>
+ <comment xml:lang="vi">Tài liệu Pocket Word</comment>
+ <comment xml:lang="uk">документ Pocket Word</comment>
+ <comment xml:lang="tr">Pocket Word belgesi</comment>
+ <comment xml:lang="sv">Pocket Word-dokument</comment>
+ <comment xml:lang="sr">документ Покет Ворда</comment>
+ <comment xml:lang="sq">dokument Pocket Word</comment>
+ <comment xml:lang="sl">Dokument Pocket Word</comment>
+ <comment xml:lang="si">Pocket Word ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Pocket Word</comment>
+ <comment xml:lang="ru">Документ Pocket Word</comment>
+ <comment xml:lang="ro">Document Pocket Word</comment>
+ <comment xml:lang="pt_BR">Documento do Pocket Word</comment>
+ <comment xml:lang="pt">documento Pocket Word</comment>
+ <comment xml:lang="pl">Dokument Pocket Word</comment>
+ <comment xml:lang="oc">document Pocket Word</comment>
+ <comment xml:lang="nl">Pocket Word-document</comment>
+ <comment xml:lang="lv">Pocket Word dokuments</comment>
+ <comment xml:lang="lt">Pocket Word dokumentas</comment>
+ <comment xml:lang="ko">Pocket Word 문서</comment>
+ <comment xml:lang="kk">Pocket Word құжаты</comment>
+ <comment xml:lang="ja">Pocket Word ドキュメント</comment>
+ <comment xml:lang="it">Documento Pocket Word</comment>
+ <comment xml:lang="is">Pocket Word skjal</comment>
+ <comment xml:lang="id">Dokumen Pocket Word</comment>
+ <comment xml:lang="ia">Documento Pocket Word</comment>
+ <comment xml:lang="hu">Pocket Word dokumentum</comment>
+ <comment xml:lang="hr">Pocket Word dokument</comment>
+ <comment xml:lang="he">מסמך של Pocket Word</comment>
+ <comment xml:lang="gl">documento de Pocket Word</comment>
+ <comment xml:lang="ga">cáipéis Pocket Word</comment>
+ <comment xml:lang="fur">document Pocket Word</comment>
+ <comment xml:lang="fr">document Pocket Word</comment>
+ <comment xml:lang="fo">Pocket Word skjal</comment>
+ <comment xml:lang="fi">Pocket Word -asiakirja</comment>
+ <comment xml:lang="eu">Pocket Word dokumentua</comment>
+ <comment xml:lang="es">documento de Pocket Word</comment>
+ <comment xml:lang="en_GB">Pocket Word document</comment>
+ <comment xml:lang="el">Έγγραφο Pocket Word</comment>
+ <comment xml:lang="de">Pocket-Word-Dokument</comment>
+ <comment xml:lang="da">Pocket Word-dokument</comment>
+ <comment xml:lang="cs">dokument Pocket Word</comment>
+ <comment xml:lang="ca">document de Pocket Word</comment>
+ <comment xml:lang="bg">Документ — Pocket Word</comment>
+ <comment xml:lang="be">дакумент Pocket Word</comment>
+ <comment xml:lang="ast">Documentu de PocketWord</comment>
+ <comment xml:lang="ar">مستند Pocket Word</comment>
+ <comment xml:lang="af">Pocket Word-dokument</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="{\\pwi" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="{\\pwi" offset="0"/>
</magic>
<glob pattern="*.psw"/>
</mime-type>
<mime-type type="application/x-profile">
- <comment>profiler results</comment>
- <comment xml:lang="ar">نتائج المحلل</comment>
- <comment xml:lang="az">profiler nəticələri</comment>
- <comment xml:lang="be@latin">vyniki profilera</comment>
- <comment xml:lang="bg">Резултати от анализатора</comment>
- <comment xml:lang="ca">resultats de profiler</comment>
- <comment xml:lang="cs">výsledky profileru</comment>
- <comment xml:lang="cy">canlyniadau proffeilio</comment>
- <comment xml:lang="da">profileringsresultater</comment>
- <comment xml:lang="de">Profiler-Ergebnisse</comment>
- <comment xml:lang="el">Αποτελέσματα μετρήσεων για την εκτέλεση προγράμματος</comment>
- <comment xml:lang="en_GB">profiler results</comment>
- <comment xml:lang="eo">resultoj de profililo</comment>
- <comment xml:lang="es">resultados del perfilador</comment>
- <comment xml:lang="eu">profiler-aren emaitzak</comment>
- <comment xml:lang="fi">profilointitulokset</comment>
- <comment xml:lang="fr">résultats de profileur</comment>
- <comment xml:lang="ga">torthaí próifíleora</comment>
- <comment xml:lang="gl">resultados do perfilador</comment>
- <comment xml:lang="he">תוצאות מאבחן</comment>
- <comment xml:lang="hr">Rezultati profila</comment>
- <comment xml:lang="hu">profilírozó-eredmények</comment>
- <comment xml:lang="ia">Resultatos de profilator</comment>
- <comment xml:lang="id">hasil profiler</comment>
- <comment xml:lang="it">Risultati profiler</comment>
- <comment xml:lang="ja">プロファイラー結果</comment>
- <comment xml:lang="kk">прифильдеу нәтижелері</comment>
- <comment xml:lang="ko">프로파일러 결과</comment>
- <comment xml:lang="lt">profiliklio rezultatai</comment>
- <comment xml:lang="lv">profilētāja rezultāti</comment>
- <comment xml:lang="ms">Hasil pemprofil</comment>
- <comment xml:lang="nb">profileingsresultat</comment>
- <comment xml:lang="nl">profiler-resultaten</comment>
- <comment xml:lang="nn">profileringsresultat</comment>
- <comment xml:lang="oc">resultats de perfilador</comment>
- <comment xml:lang="pl">Wyniki profilowania</comment>
- <comment xml:lang="pt">resultados de análise de perfil</comment>
- <comment xml:lang="pt_BR">Resultados do profiler</comment>
- <comment xml:lang="ro">rezultate profiler</comment>
- <comment xml:lang="ru">Результаты профилирования</comment>
- <comment xml:lang="sk">Výsledky profilera</comment>
- <comment xml:lang="sl">rezultati profilirnika</comment>
- <comment xml:lang="sq">Rezultate të profiluesit</comment>
- <comment xml:lang="sr">резултати профилатора</comment>
- <comment xml:lang="sv">profilerarresultat</comment>
- <comment xml:lang="tr">profil sonuçları</comment>
+ <comment>Profiler results</comment>
<comment xml:lang="uk">результати профілювання</comment>
- <comment xml:lang="vi">kết quả nét hiện trạng</comment>
- <comment xml:lang="zh_CN">探查器结果</comment>
- <comment xml:lang="zh_TW">硬體資訊產生器成果</comment>
+ <comment xml:lang="sv">Profilerarresultat</comment>
+ <comment xml:lang="ru">Результаты профилирования</comment>
+ <comment xml:lang="pl">Wyniki profilowania</comment>
+ <comment xml:lang="it">Risultati profiler</comment>
+ <comment xml:lang="gl">Resultados dos perfiladores</comment>
+ <comment xml:lang="eu">Profilatzaile-emaitzak</comment>
+ <comment xml:lang="es">resultados de generador de perfiles</comment>
+ <comment xml:lang="de">Profiler-Ergebnisse</comment>
+ <comment xml:lang="be">вынікі прафіліроўшчыка</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<glob pattern="gmon.out"/>
</mime-type>
<mime-type type="application/x-pw">
<comment>Pathetic Writer document</comment>
- <comment xml:lang="ar">مستند Pathetic Writer</comment>
- <comment xml:lang="ast">Documentu de Pathetic Writer</comment>
- <comment xml:lang="be@latin">Dakument Pathetic Writer</comment>
- <comment xml:lang="bg">Документ — Pathetic Writer</comment>
- <comment xml:lang="ca">document de Pathetic Writer</comment>
- <comment xml:lang="cs">dokument Pathetic Writer</comment>
- <comment xml:lang="da">Pathetic Writer-dokument</comment>
- <comment xml:lang="de">Pathetic-Writer-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Pathetic Writer</comment>
- <comment xml:lang="en_GB">Pathetic Writer document</comment>
- <comment xml:lang="eo">dokumento de Pathetic Writer</comment>
- <comment xml:lang="es">documento de Pathetic Writer</comment>
- <comment xml:lang="eu">Pathetic Writer dokumentua</comment>
- <comment xml:lang="fi">Pathetic Writer -asiakirja</comment>
- <comment xml:lang="fo">Pathetic Writer skjal</comment>
- <comment xml:lang="fr">document Pathetic Writer</comment>
- <comment xml:lang="ga">cáipéis Pathetic Writer</comment>
- <comment xml:lang="gl">documento de Pathetic Writer</comment>
- <comment xml:lang="he">מסמך של Pathetic Writer</comment>
- <comment xml:lang="hr">Pathetic Writer dokument</comment>
- <comment xml:lang="hu">Pathetic Writer-dokumentum</comment>
- <comment xml:lang="ia">Documento Pathetic Writer</comment>
- <comment xml:lang="id">Dokumen Pathetic Writer</comment>
- <comment xml:lang="it">Documento Pathetic Writer</comment>
- <comment xml:lang="ja">Pathetic Writer ドキュメント</comment>
- <comment xml:lang="kk">Pathetic Writer құжаты</comment>
- <comment xml:lang="ko">Pathetic Writer 문서</comment>
- <comment xml:lang="lt">Pathetic Writer dokumentas</comment>
- <comment xml:lang="lv">Pathetic Writer dokuments</comment>
- <comment xml:lang="ms">Dokumen Pathetic Writer</comment>
- <comment xml:lang="nb">Pathetic Writer-dokument</comment>
- <comment xml:lang="nl">Pathetic Writer-document</comment>
- <comment xml:lang="nn">Pathetic Writer-dokument</comment>
- <comment xml:lang="oc">document Pathetic Writer</comment>
- <comment xml:lang="pl">Dokument Pathetic Writer</comment>
- <comment xml:lang="pt">documento do Pathetic Writer</comment>
- <comment xml:lang="pt_BR">Documento do Pathetic Writer</comment>
- <comment xml:lang="ro">Document Pathetic Writer</comment>
- <comment xml:lang="ru">Документ Pathetic Writer</comment>
- <comment xml:lang="sk">Dokument Pathetic Writer</comment>
- <comment xml:lang="sl">Dokument Pathetic Writer</comment>
- <comment xml:lang="sq">Dokument Pathetic Writer</comment>
- <comment xml:lang="sr">документ Патетичног Писца</comment>
- <comment xml:lang="sv">Pathetic Writer-dokument</comment>
- <comment xml:lang="tr">Pathetic Writer belgesi</comment>
- <comment xml:lang="uk">документ Pathetic Writer</comment>
- <comment xml:lang="vi">Tài liệu Pathetic Writer</comment>
- <comment xml:lang="zh_CN">Pathetic Writer 文档</comment>
<comment xml:lang="zh_TW">Pathetic Writer 文件</comment>
+ <comment xml:lang="zh_CN">Pathetic Writer 文档</comment>
+ <comment xml:lang="vi">Tài liệu Pathetic Writer</comment>
+ <comment xml:lang="uk">документ Pathetic Writer</comment>
+ <comment xml:lang="tr">Pathetic Writer belgesi</comment>
+ <comment xml:lang="sv">Pathetic Writer-dokument</comment>
+ <comment xml:lang="sr">документ Патетичног Писца</comment>
+ <comment xml:lang="sq">dokument Pathetic Writer</comment>
+ <comment xml:lang="sl">Dokument Pathetic Writer</comment>
+ <comment xml:lang="si">දුක්ඛිත ලේඛක ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Pathetic Writer</comment>
+ <comment xml:lang="ru">Документ Pathetic Writer</comment>
+ <comment xml:lang="ro">Document Pathetic Writer</comment>
+ <comment xml:lang="pt_BR">Documento do Pathetic Writer</comment>
+ <comment xml:lang="pt">documento do Pathetic Writer</comment>
+ <comment xml:lang="pl">Dokument Pathetic Writer</comment>
+ <comment xml:lang="oc">document Pathetic Writer</comment>
+ <comment xml:lang="nn">Pathetic Writer-dokument</comment>
+ <comment xml:lang="nl">Pathetic Writer-document</comment>
+ <comment xml:lang="nb">Pathetic Writer-dokument</comment>
+ <comment xml:lang="ms">Dokumen Pathetic Writer</comment>
+ <comment xml:lang="lv">Pathetic Writer dokuments</comment>
+ <comment xml:lang="lt">Pathetic Writer dokumentas</comment>
+ <comment xml:lang="ko">Pathetic Writer 문서</comment>
+ <comment xml:lang="kk">Pathetic Writer құжаты</comment>
+ <comment xml:lang="ja">Pathetic Writer ドキュメント</comment>
+ <comment xml:lang="it">Documento Pathetic Writer</comment>
+ <comment xml:lang="is">Pathetic Writer skjal</comment>
+ <comment xml:lang="id">Dokumen Pathetic Writer</comment>
+ <comment xml:lang="ia">Documento Pathetic Writer</comment>
+ <comment xml:lang="hu">Pathetic Writer-dokumentum</comment>
+ <comment xml:lang="hr">Pathetic Writer dokument</comment>
+ <comment xml:lang="he">מסמך של Pathetic Writer</comment>
+ <comment xml:lang="gl">documento de Pathetic Writer</comment>
+ <comment xml:lang="ga">cáipéis Pathetic Writer</comment>
+ <comment xml:lang="fur">document Pathetic Writer</comment>
+ <comment xml:lang="fr">document Pathetic Writer</comment>
+ <comment xml:lang="fo">Pathetic Writer skjal</comment>
+ <comment xml:lang="fi">Pathetic Writer -asiakirja</comment>
+ <comment xml:lang="eu">Pathetic Writer dokumentua</comment>
+ <comment xml:lang="es">documento de Pathetic Writer</comment>
+ <comment xml:lang="eo">dokumento de Pathetic Writer</comment>
+ <comment xml:lang="en_GB">Pathetic Writer document</comment>
+ <comment xml:lang="el">Έγγραφο Pathetic Writer</comment>
+ <comment xml:lang="de">Pathetic-Writer-Dokument</comment>
+ <comment xml:lang="da">Pathetic Writer-dokument</comment>
+ <comment xml:lang="cs">dokument Pathetic Writer</comment>
+ <comment xml:lang="ca">document de Pathetic Writer</comment>
+ <comment xml:lang="bg">Документ — Pathetic Writer</comment>
+ <comment xml:lang="be@latin">Dakument Pathetic Writer</comment>
+ <comment xml:lang="be">дакумент Pathetic Writer</comment>
+ <comment xml:lang="ast">Documentu de Pathetic Writer</comment>
+ <comment xml:lang="ar">مستند Pathetic Writer</comment>
+ <comment xml:lang="af">Pathetic Writer-dokument</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.pw"/>
</mime-type>
<mime-type type="application/x-python-bytecode">
<comment>Python bytecode</comment>
- <comment xml:lang="ar">Python bytecode</comment>
- <comment xml:lang="az">Python bayt kodu</comment>
- <comment xml:lang="be@latin">Bajtavy kod Python</comment>
- <comment xml:lang="bg">Байт код — Python</comment>
- <comment xml:lang="ca">bytecode de Python</comment>
- <comment xml:lang="cs">bajtový kód Python</comment>
- <comment xml:lang="cy">Côd beit Python</comment>
- <comment xml:lang="da">Pythonbytekode</comment>
- <comment xml:lang="de">Python-Bytecode</comment>
- <comment xml:lang="el">Συμβολοκώδικας Python</comment>
- <comment xml:lang="en_GB">Python bytecode</comment>
- <comment xml:lang="eo">Python-bajtkodo</comment>
- <comment xml:lang="es">bytecode de Python</comment>
- <comment xml:lang="eu">Python byte-kodea</comment>
- <comment xml:lang="fi">Python-tavukoodi</comment>
- <comment xml:lang="fo">Python býtkota</comment>
- <comment xml:lang="fr">bytecode Python</comment>
- <comment xml:lang="ga">beartchód Python</comment>
- <comment xml:lang="gl">bytecode de Python</comment>
- <comment xml:lang="he">Bytecode של Python</comment>
- <comment xml:lang="hr">Python bajt kôd</comment>
- <comment xml:lang="hu">Python-bájtkód</comment>
- <comment xml:lang="ia">Codice intermediari Python</comment>
- <comment xml:lang="id">Kode bita Python</comment>
- <comment xml:lang="it">Bytecode Python</comment>
- <comment xml:lang="ja">Python バイトコード</comment>
- <comment xml:lang="kk">Python байткоды</comment>
- <comment xml:lang="ko">파이썬 바이트코드</comment>
- <comment xml:lang="lt">Python baitinis kodas</comment>
- <comment xml:lang="lv">Python bitkods</comment>
- <comment xml:lang="ms">Kodbait Python</comment>
- <comment xml:lang="nb">Python-bytekode</comment>
- <comment xml:lang="nl">Python-bytecode</comment>
- <comment xml:lang="nn">Python-bytekode</comment>
- <comment xml:lang="oc">bytecode Python</comment>
- <comment xml:lang="pl">Kod bajtowy Python</comment>
- <comment xml:lang="pt">código binário Python</comment>
- <comment xml:lang="pt_BR">Código compilado Python</comment>
- <comment xml:lang="ro">Bytecode Python</comment>
- <comment xml:lang="ru">Байт-код Python</comment>
- <comment xml:lang="sk">Bajtový kód Python</comment>
- <comment xml:lang="sl">Datoteka bitne kode Python</comment>
- <comment xml:lang="sq">Bytecode Python</comment>
- <comment xml:lang="sr">Питонов бајтни ко̂д</comment>
- <comment xml:lang="sv">Python-bytekod</comment>
- <comment xml:lang="tr">Python bayt kodu</comment>
- <comment xml:lang="uk">байт-код Python</comment>
- <comment xml:lang="vi">Mã byte Python</comment>
- <comment xml:lang="zh_CN">Python 字节码</comment>
<comment xml:lang="zh_TW">Python 位元組碼</comment>
- <magic priority="50">
- <match value="0x994e0d0a" type="big32" offset="0"/>
+ <comment xml:lang="zh_CN">Python 字节码</comment>
+ <comment xml:lang="vi">Mã byte Python</comment>
+ <comment xml:lang="uk">байт-код Python</comment>
+ <comment xml:lang="tr">Python bayt kodu</comment>
+ <comment xml:lang="sv">Python-bytekod</comment>
+ <comment xml:lang="sr">Питонов бајтни ко̂д</comment>
+ <comment xml:lang="sl">Datoteka bitne kode Python</comment>
+ <comment xml:lang="si">පයිතන් බයිට්කෝඩ්</comment>
+ <comment xml:lang="sk">Bajtový kód Python</comment>
+ <comment xml:lang="ru">Байт-код Python</comment>
+ <comment xml:lang="ro">Bytecode Python</comment>
+ <comment xml:lang="pt_BR">Código compilado Python</comment>
+ <comment xml:lang="pt">código binário Python</comment>
+ <comment xml:lang="pl">Kod bajtowy Python</comment>
+ <comment xml:lang="oc">bytecode Python</comment>
+ <comment xml:lang="nn">Python-bytekode</comment>
+ <comment xml:lang="nl">Python-bytecode</comment>
+ <comment xml:lang="nb">Python-bytekode</comment>
+ <comment xml:lang="ms">Kodbait Python</comment>
+ <comment xml:lang="lv">Python bitkods</comment>
+ <comment xml:lang="lt">Python baitinis kodas</comment>
+ <comment xml:lang="ko">파이썬 바이트코드</comment>
+ <comment xml:lang="kk">Python байткоды</comment>
+ <comment xml:lang="ja">Python バイトコード</comment>
+ <comment xml:lang="it">Bytecode Python</comment>
+ <comment xml:lang="is">Python bætakóði</comment>
+ <comment xml:lang="id">Kode bita Python</comment>
+ <comment xml:lang="ia">Codice intermediari Python</comment>
+ <comment xml:lang="hu">Python-bájtkód</comment>
+ <comment xml:lang="hr">Python bajt kôd</comment>
+ <comment xml:lang="he">Bytecode של Python</comment>
+ <comment xml:lang="gl">bytecode de Python</comment>
+ <comment xml:lang="ga">beartchód Python</comment>
+ <comment xml:lang="fur">bytecode di Python</comment>
+ <comment xml:lang="fr">bytecode Python</comment>
+ <comment xml:lang="fo">Python býtkota</comment>
+ <comment xml:lang="fi">Python-tavukoodi</comment>
+ <comment xml:lang="eu">Python byte-kodea</comment>
+ <comment xml:lang="es">código intermedio de Python</comment>
+ <comment xml:lang="eo">Python-bajtkodo</comment>
+ <comment xml:lang="en_GB">Python bytecode</comment>
+ <comment xml:lang="el">Συμβολοκώδικας Python</comment>
+ <comment xml:lang="de">Python-Bytecode</comment>
+ <comment xml:lang="da">Python-bytekode</comment>
+ <comment xml:lang="cy">Côd beit Python</comment>
+ <comment xml:lang="cs">bajtový kód Python</comment>
+ <comment xml:lang="ca">bytecode de Python</comment>
+ <comment xml:lang="bg">Байт код — Python</comment>
+ <comment xml:lang="be@latin">Bajtavy kod Python</comment>
+ <comment xml:lang="be">байт-код Python</comment>
+ <comment xml:lang="az">Python bayt kodu</comment>
+ <comment xml:lang="ar">Python bytecode</comment>
+ <comment xml:lang="af">Python binêre kode</comment>
+ <magic>
+ <match type="big32" value="0x994e0d0a" offset="0"/>
</magic>
<glob pattern="*.pyc"/>
<glob pattern="*.pyo"/>
</mime-type>
<mime-type type="application/x-qtiplot">
<comment>QtiPlot document</comment>
- <comment xml:lang="ast">Documentu de QtiPlot</comment>
- <comment xml:lang="ca">document QtiPlot</comment>
- <comment xml:lang="cs">dokument GtiPlot</comment>
- <comment xml:lang="da">QtiPlot-dokument</comment>
- <comment xml:lang="de">QtiPlot-Dokument</comment>
- <comment xml:lang="el">Έγγραφο QtiPlot</comment>
- <comment xml:lang="en_GB">QtiPlot document</comment>
- <comment xml:lang="es">documento de QtiPlot</comment>
- <comment xml:lang="eu">QtiPlot dokumentua</comment>
- <comment xml:lang="fi">QtiPlot-asiakirja</comment>
- <comment xml:lang="fr">document QtiPlot</comment>
- <comment xml:lang="ga">cáipéis QtiPlot</comment>
- <comment xml:lang="gl">Documento de QtiPilot</comment>
- <comment xml:lang="he">מסמך QtiPlot</comment>
- <comment xml:lang="hr">QtiPlot dokument</comment>
- <comment xml:lang="hu">QtiPlot dokumentum</comment>
- <comment xml:lang="ia">Documento QtiPlot</comment>
- <comment xml:lang="id">Dokumen QtiPlot</comment>
- <comment xml:lang="it">Documento QtiPlot</comment>
- <comment xml:lang="ja">QtiPlot ドキュメント</comment>
- <comment xml:lang="kk">QtiPlot құжаты</comment>
- <comment xml:lang="ko">QtiPlot 문서</comment>
- <comment xml:lang="lv">QtiPlot dokuments</comment>
- <comment xml:lang="oc">document QtiPlot</comment>
- <comment xml:lang="pl">Dokument QtiPlot</comment>
- <comment xml:lang="pt">documento QtiPlot</comment>
- <comment xml:lang="pt_BR">Documento do QtiPlot</comment>
- <comment xml:lang="ru">Документ QtiPlot</comment>
- <comment xml:lang="sk">Dokument QtiPlot</comment>
- <comment xml:lang="sl">Dokument QtiPlot</comment>
- <comment xml:lang="sr">КутиПлот документ</comment>
- <comment xml:lang="sv">QtiPlot-dokument</comment>
- <comment xml:lang="tr">QtiPlot belgesi</comment>
- <comment xml:lang="uk">документ QtiPlot</comment>
- <comment xml:lang="zh_CN">QtiPlot 文档</comment>
<comment xml:lang="zh_TW">QtiPlot 文件</comment>
+ <comment xml:lang="zh_CN">QtiPlot 文档</comment>
+ <comment xml:lang="uk">документ QtiPlot</comment>
+ <comment xml:lang="tr">QtiPlot belgesi</comment>
+ <comment xml:lang="sv">QtiPlot-dokument</comment>
+ <comment xml:lang="sr">КутиПлот документ</comment>
+ <comment xml:lang="sq">dokument QtiPlot</comment>
+ <comment xml:lang="sl">Dokument QtiPlot</comment>
+ <comment xml:lang="si">QtiPlot ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument QtiPlot</comment>
+ <comment xml:lang="ru">Документ QtiPlot</comment>
+ <comment xml:lang="pt_BR">Documento do QtiPlot</comment>
+ <comment xml:lang="pt">documento QtiPlot</comment>
+ <comment xml:lang="pl">Dokument QtiPlot</comment>
+ <comment xml:lang="oc">document QtiPlot</comment>
+ <comment xml:lang="nl">QtiPlot-document</comment>
+ <comment xml:lang="lv">QtiPlot dokuments</comment>
+ <comment xml:lang="ko">QtiPlot 문서</comment>
+ <comment xml:lang="kk">QtiPlot құжаты</comment>
+ <comment xml:lang="ja">QtiPlot ドキュメント</comment>
+ <comment xml:lang="it">Documento QtiPlot</comment>
+ <comment xml:lang="is">QtiPlot skjal</comment>
+ <comment xml:lang="id">Dokumen QtiPlot</comment>
+ <comment xml:lang="ia">Documento QtiPlot</comment>
+ <comment xml:lang="hu">QtiPlot dokumentum</comment>
+ <comment xml:lang="hr">QtiPlot dokument</comment>
+ <comment xml:lang="he">מסמך QtiPlot</comment>
+ <comment xml:lang="gl">Documento de QtiPilot</comment>
+ <comment xml:lang="ga">cáipéis QtiPlot</comment>
+ <comment xml:lang="fur">document QtiPlot</comment>
+ <comment xml:lang="fr">document QtiPlot</comment>
+ <comment xml:lang="fi">QtiPlot-asiakirja</comment>
+ <comment xml:lang="eu">QtiPlot dokumentua</comment>
+ <comment xml:lang="es">documento de QtiPlot</comment>
+ <comment xml:lang="en_GB">QtiPlot document</comment>
+ <comment xml:lang="el">Έγγραφο QtiPlot</comment>
+ <comment xml:lang="de">QtiPlot-Dokument</comment>
+ <comment xml:lang="da">QtiPlot-dokument</comment>
+ <comment xml:lang="cs">dokument GtiPlot</comment>
+ <comment xml:lang="ca">document QtiPlot</comment>
+ <comment xml:lang="bg">Документ — QtiPlot</comment>
+ <comment xml:lang="be">дакумент QtiPlot</comment>
+ <comment xml:lang="ast">Documentu de QtiPlot</comment>
+ <comment xml:lang="ar">مستند QtiPlot</comment>
+ <comment xml:lang="af">QtiPlot-dokument</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
+ <magic>
<match value="QtiPlot" type="string" offset="0"/>
</magic>
<glob pattern="*.qti"/>
@@ -18593,113 +20324,107 @@
</mime-type>
<mime-type type="application/x-quattropro">
<comment>Quattro Pro spreadsheet</comment>
- <comment xml:lang="ar">جدول Quattro Pro</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš Quattro Pro</comment>
- <comment xml:lang="bg">Таблица — Quattro Pro</comment>
- <comment xml:lang="ca">full de càlcul de Quattro Pro</comment>
- <comment xml:lang="cs">sešit Quattro Pro</comment>
- <comment xml:lang="da">Quattro Pro-regneark</comment>
- <comment xml:lang="de">Quattro-Pro-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Quattro Pro</comment>
- <comment xml:lang="en_GB">Quattro Pro spreadsheet</comment>
- <comment xml:lang="eo">sterntabelo de Quattro Pro</comment>
- <comment xml:lang="es">hoja de cálculo de Quattro Pro</comment>
- <comment xml:lang="eu">Quattro Pro kalkulu-orria</comment>
- <comment xml:lang="fi">Quattro Pro -taulukko</comment>
- <comment xml:lang="fo">Quattro Pro rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Quattro Pro</comment>
- <comment xml:lang="ga">scarbhileog Quattro Pro</comment>
- <comment xml:lang="gl">folla de cálculo Quattro Pro</comment>
- <comment xml:lang="he">גליון נתונים של Quattro Pro</comment>
- <comment xml:lang="hr">Quattro Pro proračunska tablica</comment>
- <comment xml:lang="hu">Quattro Pro-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo Quattro Pro</comment>
- <comment xml:lang="id">Lembar sebar Quattro Pro</comment>
- <comment xml:lang="it">Foglio di calcolo Quattro Pro</comment>
- <comment xml:lang="ja">Quattro Pro スプレッドシート</comment>
- <comment xml:lang="kk">Quattro Pro электрондық кестесі</comment>
- <comment xml:lang="ko">Quattro Pro 스프레드시트</comment>
- <comment xml:lang="lt">Quattro Pro skaičialentė</comment>
- <comment xml:lang="lv">Quattro Pro izklājlapa</comment>
- <comment xml:lang="ms">Hamparan Quatro Pro</comment>
- <comment xml:lang="nb">Quattro Pro-regneark</comment>
- <comment xml:lang="nl">Quattro Pro-rekenblad</comment>
- <comment xml:lang="nn">Quattro Pro-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul Quattro Pro</comment>
- <comment xml:lang="pl">Arkusz Quattro Pro</comment>
- <comment xml:lang="pt">folha de cálculo Quattro Pro</comment>
- <comment xml:lang="pt_BR">Planilha do Quattro Pro</comment>
- <comment xml:lang="ro">Foaie de calcul Quattro Pro</comment>
- <comment xml:lang="ru">Электронная таблица Quattro Pro</comment>
- <comment xml:lang="sk">Zošit Quattro Pro</comment>
- <comment xml:lang="sl">Preglednica Quattro Pro</comment>
- <comment xml:lang="sq">Fletë llogaritjesh Quattro Pro</comment>
- <comment xml:lang="sr">Кватро Про табела</comment>
- <comment xml:lang="sv">Quattro Pro-kalkylblad</comment>
- <comment xml:lang="tr">Quattro Pro çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Quattro Pro</comment>
- <comment xml:lang="vi">Bảng tính Quattro Pro</comment>
- <comment xml:lang="zh_CN">Quattro Pro 电子表格</comment>
<comment xml:lang="zh_TW">Quattro Pro 試算表</comment>
+ <comment xml:lang="zh_CN">Quattro Pro 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Quattro Pro</comment>
+ <comment xml:lang="uk">електронна таблиця Quattro Pro</comment>
+ <comment xml:lang="tr">Quattro Pro hesap çizelgesi</comment>
+ <comment xml:lang="sv">Quattro Pro-kalkylblad</comment>
+ <comment xml:lang="sr">Кватро Про табела</comment>
+ <comment xml:lang="sq">fletëllogaritje Quattro Pro</comment>
+ <comment xml:lang="sl">Preglednica Quattro Pro</comment>
+ <comment xml:lang="si">Quattro Pro පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Quattro Pro</comment>
+ <comment xml:lang="ru">Электронная таблица Quattro Pro</comment>
+ <comment xml:lang="ro">Foaie de calcul Quattro Pro</comment>
+ <comment xml:lang="pt_BR">Planilha do Quattro Pro</comment>
+ <comment xml:lang="pt">folha de cálculo Quattro Pro</comment>
+ <comment xml:lang="pl">Arkusz Quattro Pro</comment>
+ <comment xml:lang="oc">fuèlh de calcul Quattro Pro</comment>
+ <comment xml:lang="nn">Quattro Pro-rekneark</comment>
+ <comment xml:lang="nl">Quattro Pro-rekenblad</comment>
+ <comment xml:lang="nb">Quattro Pro-regneark</comment>
+ <comment xml:lang="ms">Hamparan Quatro Pro</comment>
+ <comment xml:lang="lv">Quattro Pro izklājlapa</comment>
+ <comment xml:lang="lt">Quattro Pro skaičialentė</comment>
+ <comment xml:lang="ko">Quattro Pro 스프레드시트</comment>
+ <comment xml:lang="kk">Quattro Pro электрондық кестесі</comment>
+ <comment xml:lang="ja">Quattro Pro スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Quattro Pro</comment>
+ <comment xml:lang="is">Quattro Pro töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Quattro Pro</comment>
+ <comment xml:lang="ia">Folio de calculo Quattro Pro</comment>
+ <comment xml:lang="hu">Quattro Pro-munkafüzet</comment>
+ <comment xml:lang="hr">Quattro Pro proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Quattro Pro</comment>
+ <comment xml:lang="gl">folla de cálculo Quattro Pro</comment>
+ <comment xml:lang="ga">scarbhileog Quattro Pro</comment>
+ <comment xml:lang="fur">sfuei di calcul Quattro Pro</comment>
+ <comment xml:lang="fr">feuille de calcul Quattro Pro</comment>
+ <comment xml:lang="fo">Quattro Pro rokniark</comment>
+ <comment xml:lang="fi">Quattro Pro -taulukko</comment>
+ <comment xml:lang="eu">Quattro Pro kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Quattro Pro</comment>
+ <comment xml:lang="eo">sterntabelo de Quattro Pro</comment>
+ <comment xml:lang="en_GB">Quattro Pro spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Quattro Pro</comment>
+ <comment xml:lang="de">Quattro-Pro-Tabelle</comment>
+ <comment xml:lang="da">Quattro Pro-regneark</comment>
+ <comment xml:lang="cs">sešit Quattro Pro</comment>
+ <comment xml:lang="ca">full de càlcul de Quattro Pro</comment>
+ <comment xml:lang="bg">Таблица — Quattro Pro</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš Quattro Pro</comment>
+ <comment xml:lang="be">электронная табліца Quattro Pro</comment>
+ <comment xml:lang="ar">جدول Quattro Pro</comment>
+ <comment xml:lang="af">Quattro Pro-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.wb1"/>
<glob pattern="*.wb2"/>
<glob pattern="*.wb3"/>
</mime-type>
<mime-type type="application/x-quicktime-media-link">
- <comment>QuickTime metalink playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل QuickTime metalink</comment>
- <comment xml:lang="be@latin">śpis metaspasyłak na pieśni QuickTime</comment>
- <comment xml:lang="bg">Списък за изпълнение — QuickTime</comment>
- <comment xml:lang="ca">llista de reproducció de metaenllaços QuickTime</comment>
- <comment xml:lang="cs">seznam k přehrání metalink QuickTime</comment>
- <comment xml:lang="da">QuickTime metalink-afspilningsliste</comment>
- <comment xml:lang="de">QuickTime-Metalink-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής metalinks QuickTime</comment>
- <comment xml:lang="en_GB">QuickTime metalink playlist</comment>
- <comment xml:lang="es">lista de reproducción de metaenlaces QuickTime</comment>
- <comment xml:lang="eu">QuickTime meta-esteken erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">QuickTime metalink -soittolista</comment>
- <comment xml:lang="fo">QuickTime metaleinkju avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture metalink QuickTime</comment>
- <comment xml:lang="ga">seinmliosta meiteanasc QuickTime</comment>
- <comment xml:lang="gl">lista de reprodución de metaligazóns QuickTime</comment>
- <comment xml:lang="he">רשימת השמעה מקושרת של QuickTime</comment>
- <comment xml:lang="hr">QuickTime meta poveznica popisa izvođenja</comment>
- <comment xml:lang="hu">QuickTime metalink lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection Metalink QuickTime</comment>
- <comment xml:lang="id">Senarai berkas taut meta QuickTime</comment>
- <comment xml:lang="it">Playlist metalink QuickTime</comment>
- <comment xml:lang="ja">QuickTime メタリンク再生リスト</comment>
- <comment xml:lang="kk">QuickTime метасілтемелер ойнау тізімі</comment>
- <comment xml:lang="ko">퀵타임 메타링크 재생 목록</comment>
- <comment xml:lang="lt">QuickTime metanuorodos grojaraštis</comment>
- <comment xml:lang="lv">QuickTime metasaites repertuārs</comment>
- <comment xml:lang="nb">QuickTime metalink-spilleliste</comment>
- <comment xml:lang="nl">QuickTime metalink-afspeellijst</comment>
- <comment xml:lang="nn">QuickTime metalink-speleliste</comment>
- <comment xml:lang="oc">lista de lectura metalink QuickTime</comment>
- <comment xml:lang="pl">Lista odtwarzania metaodnośników QuickTime</comment>
- <comment xml:lang="pt">lista de reprodução QuickTime metalink</comment>
- <comment xml:lang="pt_BR">Lista de reprodução metalink do QuickTime</comment>
- <comment xml:lang="ro">Listă cu metalegături QuickTime</comment>
- <comment xml:lang="ru">Список воспроизведения мета-ссылок QuickTime</comment>
- <comment xml:lang="sk">Zoznam skladieb metalink QuickTime</comment>
+ <comment>QuickTime playlist</comment>
+ <comment xml:lang="zh_TW">QuickTime 播放清單</comment>
+ <comment xml:lang="zh_CN">QuickTime 播放列表</comment>
+ <comment xml:lang="uk">список відтворення QuickTime</comment>
+ <comment xml:lang="tr">QuickTime çalma listesi</comment>
+ <comment xml:lang="sv">QuickTime-spellista</comment>
+ <comment xml:lang="sq">luajlistë QuickTime</comment>
<comment xml:lang="sl">Seznam predvajanja QuickTime</comment>
- <comment xml:lang="sq">Listë titujsh metalink QuickTime</comment>
- <comment xml:lang="sr">списак нумера мета везе Квик Тајма</comment>
- <comment xml:lang="sv">QuickTime-metalänkspellista</comment>
- <comment xml:lang="tr">QuickTime metalink çalma listesi</comment>
- <comment xml:lang="uk">список відтворення QuickTime metalink</comment>
- <comment xml:lang="vi">Danh mục nhạc siêu liên kết Quicktime</comment>
- <comment xml:lang="zh_CN">QuickTime Metalink 播放列表</comment>
- <comment xml:lang="zh_TW">QuickTime metalink 播放清單</comment>
+ <comment xml:lang="si">QuickTime ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb QuickTime</comment>
+ <comment xml:lang="ru">Список воспроизведения QuickTime</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução do QuickTime</comment>
+ <comment xml:lang="pl">Lista odtwarzania QuickTime</comment>
+ <comment xml:lang="oc">lista de lectura QuickTime</comment>
+ <comment xml:lang="nl">QuickTime-afspeellijst</comment>
+ <comment xml:lang="ko">퀵타임 재생 목록</comment>
+ <comment xml:lang="kk">QuickTime ойнау тізімі</comment>
+ <comment xml:lang="ka">QuickTime დასაკრავი სია</comment>
+ <comment xml:lang="ja">QuickTime プレイリスト</comment>
+ <comment xml:lang="it">Playlist QuickTime</comment>
+ <comment xml:lang="is">QuickTime spilunarlisti</comment>
+ <comment xml:lang="id">Daftar putar QuickTime</comment>
+ <comment xml:lang="hu">QuickTime lejátszólista</comment>
+ <comment xml:lang="hr">QuickTime popis izvođenja</comment>
+ <comment xml:lang="he">רשימת השמעה של QuickTime</comment>
+ <comment xml:lang="fr">liste de lecture QuickTime</comment>
+ <comment xml:lang="fi">QuickTime-soittolista</comment>
+ <comment xml:lang="eu">QuickTime erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción de QuickTime</comment>
+ <comment xml:lang="en_GB">QuickTime playlist</comment>
+ <comment xml:lang="de">QuickTime-Wiedergabeliste</comment>
+ <comment xml:lang="da">QuickTime-afspilningsliste</comment>
+ <comment xml:lang="ca">llista de reproducció QuickTime</comment>
+ <comment xml:lang="bg">Списък за изпълнение — QuickTime</comment>
+ <comment xml:lang="be">плэй-ліст QuickTime</comment>
+ <comment xml:lang="ar">قائمة تشغيل كويك تايم</comment>
<generic-icon name="video-x-generic"/>
<sub-class-of type="video/quicktime"/>
<alias type="application/x-quicktimeplayer"/>
<magic priority="60">
<match value="&lt;?xml" type="string" offset="0">
- <match value="&lt;?quicktime" type="string" offset="0:64"/>
+ <match type="string" value="&lt;?quicktime" offset="0:64"/>
</match>
<match value="RTSPtext" type="string" offset="0"/>
<match value="rtsptext" type="string" offset="0"/>
@@ -18709,283 +20434,267 @@
</mime-type>
<mime-type type="application/x-qw">
<comment>Quicken document</comment>
- <comment xml:lang="ar">مستند Quicken</comment>
- <comment xml:lang="ast">Documentu de Quicken</comment>
- <comment xml:lang="az">Quicken sənədi</comment>
- <comment xml:lang="be@latin">Dakument Quicken</comment>
- <comment xml:lang="bg">Документ — Quicken</comment>
- <comment xml:lang="ca">document Quicken</comment>
- <comment xml:lang="cs">dokument Quicken</comment>
- <comment xml:lang="cy">Dogfen Quicken</comment>
- <comment xml:lang="da">Quickendokument</comment>
- <comment xml:lang="de">Quicken-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Quicken</comment>
- <comment xml:lang="en_GB">Quicken document</comment>
- <comment xml:lang="eo">Quicken-dokumento</comment>
- <comment xml:lang="es">documento de Quicken</comment>
- <comment xml:lang="eu">Quicken dokumentua</comment>
- <comment xml:lang="fi">Quicken-asiakirja</comment>
- <comment xml:lang="fo">Quicken skjal</comment>
- <comment xml:lang="fr">document Quicken</comment>
- <comment xml:lang="ga">cáipéis Quicken</comment>
- <comment xml:lang="gl">documento de Quicken</comment>
- <comment xml:lang="he">מסמך של Quicken</comment>
- <comment xml:lang="hr">Quicken dokument</comment>
- <comment xml:lang="hu">Quicken-dokumentum</comment>
- <comment xml:lang="ia">Documento Quicken</comment>
- <comment xml:lang="id">Dokumen Quicken</comment>
- <comment xml:lang="it">Documento Quicken</comment>
- <comment xml:lang="ja">Quicken ドキュメント</comment>
- <comment xml:lang="kk">Quicken құжаты</comment>
- <comment xml:lang="ko">Quicken 문서</comment>
- <comment xml:lang="lt">Quicken dokumentas</comment>
- <comment xml:lang="lv">Quicken dokuments</comment>
- <comment xml:lang="ms">Dokumen Quicken</comment>
- <comment xml:lang="nb">Quicken-dokument</comment>
- <comment xml:lang="nl">Quicken-document</comment>
- <comment xml:lang="nn">Quicken-dokument</comment>
- <comment xml:lang="oc">document Quicken</comment>
- <comment xml:lang="pl">Dokument Quicken</comment>
- <comment xml:lang="pt">documento Quicken</comment>
- <comment xml:lang="pt_BR">Documento do Quicken</comment>
- <comment xml:lang="ro">Document Quicken</comment>
- <comment xml:lang="ru">Документ Quicken</comment>
- <comment xml:lang="sk">Dokument Quicken</comment>
- <comment xml:lang="sl">Dokument Quicken</comment>
- <comment xml:lang="sq">Dokument Quicken</comment>
- <comment xml:lang="sr">Квикен документ</comment>
- <comment xml:lang="sv">Quicken-dokument</comment>
- <comment xml:lang="tr">Quicken belgesi</comment>
- <comment xml:lang="uk">документ Quicken</comment>
- <comment xml:lang="vi">Tài liệu Quicken</comment>
- <comment xml:lang="zh_CN">Quicken 文档</comment>
<comment xml:lang="zh_TW">Quicken 文件</comment>
+ <comment xml:lang="zh_CN">Quicken 文档</comment>
+ <comment xml:lang="vi">Tài liệu Quicken</comment>
+ <comment xml:lang="uk">документ Quicken</comment>
+ <comment xml:lang="tr">Quicken belgesi</comment>
+ <comment xml:lang="sv">Quicken-dokument</comment>
+ <comment xml:lang="sr">Квикен документ</comment>
+ <comment xml:lang="sq">dokument Quicken</comment>
+ <comment xml:lang="sl">Dokument Quicken</comment>
+ <comment xml:lang="si">ඉක්මන් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Quicken</comment>
+ <comment xml:lang="ru">Документ Quicken</comment>
+ <comment xml:lang="ro">Document Quicken</comment>
+ <comment xml:lang="pt_BR">Documento do Quicken</comment>
+ <comment xml:lang="pt">documento Quicken</comment>
+ <comment xml:lang="pl">Dokument Quicken</comment>
+ <comment xml:lang="oc">document Quicken</comment>
+ <comment xml:lang="nn">Quicken-dokument</comment>
+ <comment xml:lang="nl">Quicken-document</comment>
+ <comment xml:lang="nb">Quicken-dokument</comment>
+ <comment xml:lang="ms">Dokumen Quicken</comment>
+ <comment xml:lang="lv">Quicken dokuments</comment>
+ <comment xml:lang="lt">Quicken dokumentas</comment>
+ <comment xml:lang="ko">Quicken 문서</comment>
+ <comment xml:lang="kk">Quicken құжаты</comment>
+ <comment xml:lang="ja">Quicken ドキュメント</comment>
+ <comment xml:lang="it">Documento Quicken</comment>
+ <comment xml:lang="is">Quicken skjal</comment>
+ <comment xml:lang="id">Dokumen Quicken</comment>
+ <comment xml:lang="ia">Documento Quicken</comment>
+ <comment xml:lang="hu">Quicken-dokumentum</comment>
+ <comment xml:lang="hr">Quicken dokument</comment>
+ <comment xml:lang="he">מסמך של Quicken</comment>
+ <comment xml:lang="gl">documento de Quicken</comment>
+ <comment xml:lang="ga">cáipéis Quicken</comment>
+ <comment xml:lang="fur">document Quicken</comment>
+ <comment xml:lang="fr">document Quicken</comment>
+ <comment xml:lang="fo">Quicken skjal</comment>
+ <comment xml:lang="fi">Quicken-asiakirja</comment>
+ <comment xml:lang="eu">Quicken dokumentua</comment>
+ <comment xml:lang="es">documento de Quicken</comment>
+ <comment xml:lang="eo">Quicken-dokumento</comment>
+ <comment xml:lang="en_GB">Quicken document</comment>
+ <comment xml:lang="el">Έγγραφο Quicken</comment>
+ <comment xml:lang="de">Quicken-Dokument</comment>
+ <comment xml:lang="da">Quickendokument</comment>
+ <comment xml:lang="cy">Dogfen Quicken</comment>
+ <comment xml:lang="cs">dokument Quicken</comment>
+ <comment xml:lang="ca">document Quicken</comment>
+ <comment xml:lang="bg">Документ — Quicken</comment>
+ <comment xml:lang="be@latin">Dakument Quicken</comment>
+ <comment xml:lang="be">дакумент Quicken</comment>
+ <comment xml:lang="az">Quicken sənədi</comment>
+ <comment xml:lang="ast">Documentu de Quicken</comment>
+ <comment xml:lang="ar">مستند Quicken</comment>
+ <comment xml:lang="af">Quicken-dokument</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.qif"/>
</mime-type>
<mime-type type="application/vnd.rar">
<comment>RAR archive</comment>
- <comment xml:lang="ar">أرشيف RAR</comment>
- <comment xml:lang="be@latin">Archiŭ RAR</comment>
- <comment xml:lang="bg">Архив — RAR</comment>
- <comment xml:lang="ca">arxiu RAR</comment>
- <comment xml:lang="cs">archiv RAR</comment>
- <comment xml:lang="cy">Archif RAR</comment>
- <comment xml:lang="da">RAR-arkiv</comment>
- <comment xml:lang="de">RAR-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο RAR</comment>
- <comment xml:lang="en_GB">RAR archive</comment>
- <comment xml:lang="eo">RAR-arkivo</comment>
- <comment xml:lang="es">archivador RAR</comment>
- <comment xml:lang="eu">RAR artxiboa</comment>
- <comment xml:lang="fi">RAR-arkisto</comment>
- <comment xml:lang="fo">RAR skjalasavn</comment>
- <comment xml:lang="fr">archive RAR</comment>
- <comment xml:lang="ga">cartlann RAR</comment>
- <comment xml:lang="gl">ficheiro RAR</comment>
- <comment xml:lang="he">ארכיון RAR</comment>
- <comment xml:lang="hr">RAR arhiva</comment>
- <comment xml:lang="hu">RAR-archívum</comment>
- <comment xml:lang="ia">Archivo RAR</comment>
- <comment xml:lang="id">Arsip RAR</comment>
- <comment xml:lang="it">Archivio RAR</comment>
- <comment xml:lang="ja">RAR アーカイブ</comment>
- <comment xml:lang="kk">RAR архиві</comment>
- <comment xml:lang="ko">RAR 압축 파일</comment>
- <comment xml:lang="lt">RAR archyvas</comment>
- <comment xml:lang="lv">RAR arhīvs</comment>
- <comment xml:lang="ms">Arkib RAR</comment>
- <comment xml:lang="nb">RAR-arkiv</comment>
- <comment xml:lang="nl">RAR-archief</comment>
- <comment xml:lang="nn">RAR-arkiv</comment>
- <comment xml:lang="oc">archiu RAR</comment>
- <comment xml:lang="pl">Archiwum RAR</comment>
- <comment xml:lang="pt">arquivo RAR</comment>
- <comment xml:lang="pt_BR">Pacote RAR</comment>
- <comment xml:lang="ro">Arhivă RAR</comment>
- <comment xml:lang="ru">Архив RAR</comment>
- <comment xml:lang="sk">Archív RAR</comment>
- <comment xml:lang="sl">Datoteka arhiva RAR</comment>
- <comment xml:lang="sq">Arkiv RAR</comment>
- <comment xml:lang="sr">РАР архива</comment>
- <comment xml:lang="sv">RAR-arkiv</comment>
- <comment xml:lang="tr">RAR arşivi</comment>
- <comment xml:lang="uk">архів RAR</comment>
- <comment xml:lang="vi">Kho nén RAR</comment>
- <comment xml:lang="zh_CN">RAR 归档文件</comment>
<comment xml:lang="zh_TW">RAR 封存檔</comment>
+ <comment xml:lang="zh_CN">RAR 归档文件</comment>
+ <comment xml:lang="vi">Kho nén RAR</comment>
+ <comment xml:lang="uk">архів RAR</comment>
+ <comment xml:lang="tr">RAR arşivi</comment>
+ <comment xml:lang="sv">RAR-arkiv</comment>
+ <comment xml:lang="sr">РАР архива</comment>
+ <comment xml:lang="sq">arkiv RAR</comment>
+ <comment xml:lang="sl">Datoteka arhiva RAR</comment>
+ <comment xml:lang="si">RAR ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív RAR</comment>
+ <comment xml:lang="ru">Архив RAR</comment>
+ <comment xml:lang="ro">Arhivă RAR</comment>
+ <comment xml:lang="pt_BR">Pacote RAR</comment>
+ <comment xml:lang="pt">arquivo RAR</comment>
+ <comment xml:lang="pl">Archiwum RAR</comment>
+ <comment xml:lang="oc">archiu RAR</comment>
+ <comment xml:lang="nn">RAR-arkiv</comment>
+ <comment xml:lang="nl">RAR-archief</comment>
+ <comment xml:lang="nb">RAR-arkiv</comment>
+ <comment xml:lang="ms">Arkib RAR</comment>
+ <comment xml:lang="lv">RAR arhīvs</comment>
+ <comment xml:lang="lt">RAR archyvas</comment>
+ <comment xml:lang="ko">RAR 압축 파일</comment>
+ <comment xml:lang="kk">RAR архиві</comment>
+ <comment xml:lang="ja">RAR アーカイブ</comment>
+ <comment xml:lang="it">Archivio RAR</comment>
+ <comment xml:lang="is">RAR safnskrá</comment>
+ <comment xml:lang="id">Arsip RAR</comment>
+ <comment xml:lang="ia">Archivo RAR</comment>
+ <comment xml:lang="hu">RAR-archívum</comment>
+ <comment xml:lang="hr">RAR arhiva</comment>
+ <comment xml:lang="he">ארכיון RAR</comment>
+ <comment xml:lang="gl">ficheiro RAR</comment>
+ <comment xml:lang="ga">cartlann RAR</comment>
+ <comment xml:lang="fur">archivi RAR</comment>
+ <comment xml:lang="fr">archive RAR</comment>
+ <comment xml:lang="fo">RAR skjalasavn</comment>
+ <comment xml:lang="fi">RAR-arkisto</comment>
+ <comment xml:lang="eu">RAR artxiboa</comment>
+ <comment xml:lang="es">archivador RAR</comment>
+ <comment xml:lang="eo">RAR-arkivo</comment>
+ <comment xml:lang="en_GB">RAR archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο RAR</comment>
+ <comment xml:lang="de">RAR-Archiv</comment>
+ <comment xml:lang="da">RAR-arkiv</comment>
+ <comment xml:lang="cy">Archif RAR</comment>
+ <comment xml:lang="cs">archiv RAR</comment>
+ <comment xml:lang="ca">arxiu RAR</comment>
+ <comment xml:lang="bg">Архив — RAR</comment>
+ <comment xml:lang="be@latin">Archiŭ RAR</comment>
+ <comment xml:lang="be">архіў RAR</comment>
+ <comment xml:lang="ar">أرشيف RAR</comment>
+ <comment xml:lang="af">RAR-argief</comment>
<acronym>RAR</acronym>
<expanded-acronym>Roshal ARchive</expanded-acronym>
<alias type="application/x-rar"/>
<alias type="application/x-rar-compressed"/>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="Rar!" type="string" offset="0"/>
+ <match type="string" value="Rar!" offset="0"/>
</magic>
<glob pattern="*.rar"/>
</mime-type>
<mime-type type="application/x-dar">
<comment>DAR archive</comment>
- <comment xml:lang="ar">أرشيف DAR</comment>
- <comment xml:lang="be@latin">Archiŭ DAR</comment>
- <comment xml:lang="bg">Архив — DAR</comment>
- <comment xml:lang="ca">arxiu DAR</comment>
- <comment xml:lang="cs">archiv DAR</comment>
- <comment xml:lang="da">DAR-arkiv</comment>
- <comment xml:lang="de">DAR-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο DAR</comment>
- <comment xml:lang="en_GB">DAR archive</comment>
- <comment xml:lang="eo">DAR-arkivo</comment>
- <comment xml:lang="es">archivador DAR</comment>
- <comment xml:lang="eu">DAR artxiboa</comment>
- <comment xml:lang="fi">DAR-arkisto</comment>
- <comment xml:lang="fo">DAR skjalasavn</comment>
- <comment xml:lang="fr">archive DAR</comment>
- <comment xml:lang="ga">cartlann DAR</comment>
- <comment xml:lang="gl">arquivo DAR</comment>
- <comment xml:lang="he">ארכיון DAR</comment>
- <comment xml:lang="hr">DAR arhiva</comment>
- <comment xml:lang="hu">DAR archívum</comment>
- <comment xml:lang="ia">Archivo DAR</comment>
- <comment xml:lang="id">Arsip DAR</comment>
- <comment xml:lang="it">Archivio DAR</comment>
- <comment xml:lang="ja">DAR アーカイブ</comment>
- <comment xml:lang="ka">DAR არქივი</comment>
- <comment xml:lang="kk">DAR архиві</comment>
- <comment xml:lang="ko">DAR 묶음 파일</comment>
- <comment xml:lang="lt">DAR archyvas</comment>
- <comment xml:lang="lv">DAR arhīvs</comment>
- <comment xml:lang="nb">DAR-arkiv</comment>
- <comment xml:lang="nl">DAR-archief</comment>
- <comment xml:lang="nn">DAR-arkiv</comment>
- <comment xml:lang="oc">archiu DAR</comment>
- <comment xml:lang="pl">Archiwum DAR</comment>
- <comment xml:lang="pt">arquivo DAR</comment>
- <comment xml:lang="pt_BR">Pacote DAR</comment>
- <comment xml:lang="ro">Arhivă DAR</comment>
- <comment xml:lang="ru">Архив DAR</comment>
- <comment xml:lang="sk">Archív DAR</comment>
- <comment xml:lang="sl">Datoteka arhiva DAR</comment>
- <comment xml:lang="sq">Arkiv DAR</comment>
- <comment xml:lang="sr">ДАР архива</comment>
- <comment xml:lang="sv">DAR-arkiv</comment>
- <comment xml:lang="tr">DAR arşivi</comment>
- <comment xml:lang="uk">архів DAR</comment>
- <comment xml:lang="vi">Kho nén DAR</comment>
- <comment xml:lang="zh_CN">DAR 归档文件</comment>
<comment xml:lang="zh_TW">DAR 封存檔</comment>
+ <comment xml:lang="zh_CN">DAR 归档文件</comment>
+ <comment xml:lang="vi">Kho nén DAR</comment>
+ <comment xml:lang="uk">архів DAR</comment>
+ <comment xml:lang="tr">DAR arşivi</comment>
+ <comment xml:lang="sv">DAR-arkiv</comment>
+ <comment xml:lang="sr">ДАР архива</comment>
+ <comment xml:lang="sq">arkiv DAR</comment>
+ <comment xml:lang="sl">Datoteka arhiva DAR</comment>
+ <comment xml:lang="si">DAR ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív DAR</comment>
+ <comment xml:lang="ru">Архив DAR</comment>
+ <comment xml:lang="ro">Arhivă DAR</comment>
+ <comment xml:lang="pt_BR">Pacote DAR</comment>
+ <comment xml:lang="pt">arquivo DAR</comment>
+ <comment xml:lang="pl">Archiwum DAR</comment>
+ <comment xml:lang="oc">archiu DAR</comment>
+ <comment xml:lang="nn">DAR-arkiv</comment>
+ <comment xml:lang="nl">DAR-archief</comment>
+ <comment xml:lang="nb">DAR-arkiv</comment>
+ <comment xml:lang="lv">DAR arhīvs</comment>
+ <comment xml:lang="lt">DAR archyvas</comment>
+ <comment xml:lang="ko">DAR 묶음 파일</comment>
+ <comment xml:lang="kk">DAR архиві</comment>
+ <comment xml:lang="ka">DAR არქივი</comment>
+ <comment xml:lang="ja">DAR アーカイブ</comment>
+ <comment xml:lang="it">Archivio DAR</comment>
+ <comment xml:lang="is">DAR safnskrá</comment>
+ <comment xml:lang="id">Arsip DAR</comment>
+ <comment xml:lang="ia">Archivo DAR</comment>
+ <comment xml:lang="hu">DAR archívum</comment>
+ <comment xml:lang="hr">DAR arhiva</comment>
+ <comment xml:lang="he">ארכיון DAR</comment>
+ <comment xml:lang="gl">arquivo DAR</comment>
+ <comment xml:lang="ga">cartlann DAR</comment>
+ <comment xml:lang="fur">archivi DAR</comment>
+ <comment xml:lang="fr">archive DAR</comment>
+ <comment xml:lang="fo">DAR skjalasavn</comment>
+ <comment xml:lang="fi">DAR-arkisto</comment>
+ <comment xml:lang="eu">DAR artxiboa</comment>
+ <comment xml:lang="es">archivador DAR</comment>
+ <comment xml:lang="eo">DAR-arkivo</comment>
+ <comment xml:lang="en_GB">DAR archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο DAR</comment>
+ <comment xml:lang="de">DAR-Archiv</comment>
+ <comment xml:lang="da">DAR-arkiv</comment>
+ <comment xml:lang="cs">archiv DAR</comment>
+ <comment xml:lang="ca">arxiu DAR</comment>
+ <comment xml:lang="bg">Архив — DAR</comment>
+ <comment xml:lang="be@latin">Archiŭ DAR</comment>
+ <comment xml:lang="be">архіў DAR</comment>
+ <comment xml:lang="ar">أرشيف DAR</comment>
+ <comment xml:lang="af">DAR-argief</comment>
+ <acronym>DAR</acronym>
+ <expanded-acronym>Disk ARchive</expanded-acronym>
<generic-icon name="package-x-generic"/>
<magic>
- <match value="123" type="big32" offset="0"/>
+ <match type="big32" value="123" offset="0"/>
</magic>
<glob pattern="*.dar"/>
</mime-type>
<mime-type type="application/x-alz">
<comment>Alzip archive</comment>
- <comment xml:lang="ar">أرشيف Alzip</comment>
- <comment xml:lang="be@latin">Archiŭ Alzip</comment>
- <comment xml:lang="bg">Архив — alzip</comment>
- <comment xml:lang="ca">arxiu Alzip</comment>
- <comment xml:lang="cs">archiv Alzip</comment>
- <comment xml:lang="da">Alziparkiv</comment>
- <comment xml:lang="de">Alzip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Alzip</comment>
- <comment xml:lang="en_GB">Alzip archive</comment>
- <comment xml:lang="eo">Alzip-arkivo</comment>
- <comment xml:lang="es">archivador Alzip</comment>
- <comment xml:lang="eu">Alzip artxiboa</comment>
- <comment xml:lang="fi">Alzip-arkisto</comment>
- <comment xml:lang="fo">Alsip skjalasavn</comment>
- <comment xml:lang="fr">archive alzip</comment>
- <comment xml:lang="ga">cartlann Alzip</comment>
- <comment xml:lang="gl">arquivo Alzip</comment>
- <comment xml:lang="he">ארכיון Alzip</comment>
- <comment xml:lang="hr">Alzip arhiva</comment>
- <comment xml:lang="hu">Alzip archívum</comment>
- <comment xml:lang="ia">Archivo Alzip</comment>
- <comment xml:lang="id">Arsip Alzip</comment>
- <comment xml:lang="it">Archivio Alzip</comment>
- <comment xml:lang="ja">Alzip アーカイブ</comment>
- <comment xml:lang="ka">Alzip არქივი</comment>
- <comment xml:lang="kk">Alzip архиві</comment>
- <comment xml:lang="ko">알집 압축 파일</comment>
- <comment xml:lang="lt">Alzip archyvas</comment>
- <comment xml:lang="lv">Alzip arhīvs</comment>
- <comment xml:lang="nb">Alzip-arkiv</comment>
- <comment xml:lang="nl">Alzip-archief</comment>
- <comment xml:lang="nn">Alzip-arkiv</comment>
- <comment xml:lang="oc">archiu alzip</comment>
- <comment xml:lang="pl">Archiwum alzip</comment>
- <comment xml:lang="pt">arquivo Alzip</comment>
- <comment xml:lang="pt_BR">Pacote Alzip</comment>
- <comment xml:lang="ro">Arhivă Alzip</comment>
- <comment xml:lang="ru">Архив ALZIP</comment>
- <comment xml:lang="sk">Archív Alzip</comment>
- <comment xml:lang="sl">Datoteka arhiva Alzip</comment>
- <comment xml:lang="sq">Arkiv Alzip</comment>
- <comment xml:lang="sr">Алзип архива</comment>
- <comment xml:lang="sv">Alzip-arkiv</comment>
- <comment xml:lang="tr">Alzip arşivi</comment>
- <comment xml:lang="uk">архів Alzip</comment>
- <comment xml:lang="vi">Kho nén Alzip</comment>
- <comment xml:lang="zh_CN">Alzip 归档文件</comment>
<comment xml:lang="zh_TW">Alzip 封存檔</comment>
+ <comment xml:lang="zh_CN">Alzip 归档文件</comment>
+ <comment xml:lang="vi">Kho nén Alzip</comment>
+ <comment xml:lang="uk">архів Alzip</comment>
+ <comment xml:lang="tr">Alzip arşivi</comment>
+ <comment xml:lang="sv">Alzip-arkiv</comment>
+ <comment xml:lang="sr">Алзип архива</comment>
+ <comment xml:lang="sq">arkiv Alzip</comment>
+ <comment xml:lang="sl">Datoteka arhiva Alzip</comment>
+ <comment xml:lang="si">Alzip සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív Alzip</comment>
+ <comment xml:lang="ru">Архив ALZIP</comment>
+ <comment xml:lang="ro">Arhivă Alzip</comment>
+ <comment xml:lang="pt_BR">Pacote Alzip</comment>
+ <comment xml:lang="pt">arquivo Alzip</comment>
+ <comment xml:lang="pl">Archiwum alzip</comment>
+ <comment xml:lang="oc">archiu alzip</comment>
+ <comment xml:lang="nn">Alzip-arkiv</comment>
+ <comment xml:lang="nl">Alzip-archief</comment>
+ <comment xml:lang="nb">Alzip-arkiv</comment>
+ <comment xml:lang="lv">Alzip arhīvs</comment>
+ <comment xml:lang="lt">Alzip archyvas</comment>
+ <comment xml:lang="ko">알집 압축 파일</comment>
+ <comment xml:lang="kk">Alzip архиві</comment>
+ <comment xml:lang="ka">Alzip არქივი</comment>
+ <comment xml:lang="ja">Alzip アーカイブ</comment>
+ <comment xml:lang="it">Archivio Alzip</comment>
+ <comment xml:lang="is">Alzip safnskrá</comment>
+ <comment xml:lang="id">Arsip Alzip</comment>
+ <comment xml:lang="ia">Archivo Alzip</comment>
+ <comment xml:lang="hu">Alzip archívum</comment>
+ <comment xml:lang="hr">Alzip arhiva</comment>
+ <comment xml:lang="he">ארכיון Alzip</comment>
+ <comment xml:lang="gl">arquivo Alzip</comment>
+ <comment xml:lang="ga">cartlann Alzip</comment>
+ <comment xml:lang="fur">archivi Alzip</comment>
+ <comment xml:lang="fr">archive alzip</comment>
+ <comment xml:lang="fo">Alsip skjalasavn</comment>
+ <comment xml:lang="fi">Alzip-arkisto</comment>
+ <comment xml:lang="eu">Alzip artxiboa</comment>
+ <comment xml:lang="es">archivador Alzip</comment>
+ <comment xml:lang="eo">Alzip-arkivo</comment>
+ <comment xml:lang="en_GB">Alzip archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Alzip</comment>
+ <comment xml:lang="de">ALZip-Archiv</comment>
+ <comment xml:lang="da">Alzip-arkiv</comment>
+ <comment xml:lang="cs">archiv Alzip</comment>
+ <comment xml:lang="ca">arxiu Alzip</comment>
+ <comment xml:lang="bg">Архив — alzip</comment>
+ <comment xml:lang="be@latin">Archiŭ Alzip</comment>
+ <comment xml:lang="be">архіў Alzip</comment>
+ <comment xml:lang="ar">أرشيف Alzip</comment>
+ <comment xml:lang="af">Alzip-argief</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="ALZ" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="ALZ" offset="0"/>
</magic>
<glob pattern="*.alz"/>
</mime-type>
<mime-type type="text/x-reject">
- <comment>rejected patch</comment>
- <comment xml:lang="ar">رقعة مرفوضة</comment>
- <comment xml:lang="be@latin">niepryniaty patch</comment>
- <comment xml:lang="bg">Отхвърлен файл с кръпка</comment>
- <comment xml:lang="ca">pedaç rebutjat</comment>
- <comment xml:lang="cs">odmítnutá záplata</comment>
- <comment xml:lang="da">afvist tekstlap</comment>
- <comment xml:lang="de">Abgelehnter Patch</comment>
- <comment xml:lang="el">Διόρθωση που απορρίφθηκε</comment>
- <comment xml:lang="en_GB">rejected patch</comment>
- <comment xml:lang="eo">reĵeta flikaĵo</comment>
- <comment xml:lang="es">parche rechazado</comment>
- <comment xml:lang="eu">baztertutako adabakia</comment>
- <comment xml:lang="fi">hylättyjen muutosten tiedosto</comment>
- <comment xml:lang="fo">vrakað rætting</comment>
- <comment xml:lang="fr">correctif rejeté</comment>
- <comment xml:lang="ga">paiste diúltaithe</comment>
- <comment xml:lang="gl">parche rexeitado</comment>
- <comment xml:lang="he">טלאי שנדחה</comment>
- <comment xml:lang="hr">Odbijena zakrpa</comment>
- <comment xml:lang="hu">visszautasított folt</comment>
- <comment xml:lang="ia">Patch rejectate</comment>
- <comment xml:lang="id">patch ditolak</comment>
- <comment xml:lang="it">Patch rifiutata</comment>
- <comment xml:lang="ja">拒否されたパッチ</comment>
- <comment xml:lang="kk">алынбаған патч</comment>
- <comment xml:lang="ko">거부된 패치 파일</comment>
- <comment xml:lang="lt">atmestas lopas</comment>
- <comment xml:lang="lv">noraidītais ceļš</comment>
- <comment xml:lang="ms">Tampungan ditolak</comment>
- <comment xml:lang="nb">avvist patchfil</comment>
- <comment xml:lang="nl">verworpen patch</comment>
- <comment xml:lang="nn">avvist programfiks</comment>
- <comment xml:lang="oc">correctiu regetat</comment>
- <comment xml:lang="pl">Odrzucona łata</comment>
- <comment xml:lang="pt">patch rejeitado</comment>
- <comment xml:lang="pt_BR">Arquivo de patch rejeitado</comment>
- <comment xml:lang="ro">petec respsins</comment>
+ <comment>Rejected patch</comment>
+ <comment xml:lang="uk">відкинута латка</comment>
+ <comment xml:lang="sv">Avvisad programfix</comment>
<comment xml:lang="ru">Отклонённый патч</comment>
- <comment xml:lang="sk">Odmietnutá záplata</comment>
- <comment xml:lang="sl">zavrnjen popravek</comment>
- <comment xml:lang="sq">Patch i kthyer mbrapsht</comment>
- <comment xml:lang="sr">одбијена закрпа</comment>
- <comment xml:lang="sv">avvisad programfix</comment>
- <comment xml:lang="tr">reddedilmiş yama</comment>
- <comment xml:lang="uk">відхилена латка</comment>
- <comment xml:lang="vi">đắp vá bị từ chối</comment>
- <comment xml:lang="zh_CN">拒绝的补丁</comment>
- <comment xml:lang="zh_TW">回絕的修補</comment>
+ <comment xml:lang="pl">Odrzucona łata</comment>
+ <comment xml:lang="it">Patch rifiutata</comment>
+ <comment xml:lang="gl">Parche rexeitado</comment>
+ <comment xml:lang="eu">Baztertutako adabakia</comment>
+ <comment xml:lang="es">parche rechazado</comment>
+ <comment xml:lang="de">Abgelehnter Patch</comment>
+ <comment xml:lang="be">адхілены патч</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<alias type="application/x-reject"/>
@@ -18993,98 +20702,112 @@
</mime-type>
<mime-type type="application/x-rpm">
<comment>RPM package</comment>
- <comment xml:lang="ar">حزمة RPM</comment>
- <comment xml:lang="be@latin">Pakunak RPM</comment>
- <comment xml:lang="bg">Пакет — RPM</comment>
- <comment xml:lang="ca">paquet RPM</comment>
- <comment xml:lang="cs">balíček RPM</comment>
- <comment xml:lang="da">RPM-pakke</comment>
- <comment xml:lang="de">RPM-Paket</comment>
- <comment xml:lang="el">Πακέτο RPM</comment>
- <comment xml:lang="en_GB">RPM package</comment>
- <comment xml:lang="eo">RPM-pakaĵo</comment>
- <comment xml:lang="es">paquete RPM</comment>
- <comment xml:lang="eu">RPM paketea</comment>
- <comment xml:lang="fi">RPM-paketti</comment>
- <comment xml:lang="fo">RPM pakki</comment>
- <comment xml:lang="fr">paquet RPM</comment>
- <comment xml:lang="ga">pacáiste RPM</comment>
- <comment xml:lang="gl">paquete RFM</comment>
- <comment xml:lang="he">חבילת RPM</comment>
- <comment xml:lang="hr">RPM paket</comment>
- <comment xml:lang="hu">RPM-csomag</comment>
- <comment xml:lang="ia">Pacchetto RPM</comment>
- <comment xml:lang="id">Paket RPM</comment>
- <comment xml:lang="it">Pacchetto RPM</comment>
- <comment xml:lang="ja">RPM パッケージ</comment>
- <comment xml:lang="kk">RPM дестесі</comment>
- <comment xml:lang="ko">RPM 패키지</comment>
- <comment xml:lang="lt">RPM paketas</comment>
- <comment xml:lang="lv">RPM pakotne</comment>
- <comment xml:lang="ms">Pakej RPM</comment>
- <comment xml:lang="nb">RPM-pakke</comment>
- <comment xml:lang="nl">RPM-pakket</comment>
- <comment xml:lang="nn">RPM-pakke</comment>
- <comment xml:lang="oc">paquet RPM</comment>
- <comment xml:lang="pl">Pakiet RPM</comment>
- <comment xml:lang="pt">pacote RPM</comment>
- <comment xml:lang="pt_BR">Pacote RPM</comment>
- <comment xml:lang="ro">Pachet RPM</comment>
- <comment xml:lang="ru">Пакет RPM</comment>
- <comment xml:lang="sk">Balík RPM</comment>
- <comment xml:lang="sl">Datoteka paketa RPM</comment>
- <comment xml:lang="sq">Paketë RPM</comment>
- <comment xml:lang="sr">РПМ пакет</comment>
- <comment xml:lang="sv">RPM-paket</comment>
- <comment xml:lang="tr">RPM paketi</comment>
- <comment xml:lang="uk">пакунок RPM</comment>
- <comment xml:lang="vi">Gói RPM</comment>
- <comment xml:lang="zh_CN">RPM 软件包</comment>
<comment xml:lang="zh_TW">RPM 軟體包</comment>
+ <comment xml:lang="zh_CN">RPM 软件包</comment>
+ <comment xml:lang="vi">Gói RPM</comment>
+ <comment xml:lang="uk">пакунок RPM</comment>
+ <comment xml:lang="tr">RPM paketi</comment>
+ <comment xml:lang="sv">RPM-paket</comment>
+ <comment xml:lang="sr">РПМ пакет</comment>
+ <comment xml:lang="sq">paketë RPM</comment>
+ <comment xml:lang="sl">Datoteka paketa RPM</comment>
+ <comment xml:lang="si">RPM පැකේජය</comment>
+ <comment xml:lang="sk">Balík RPM</comment>
+ <comment xml:lang="ru">Пакет RPM</comment>
+ <comment xml:lang="ro">Pachet RPM</comment>
+ <comment xml:lang="pt_BR">Pacote RPM</comment>
+ <comment xml:lang="pt">pacote RPM</comment>
+ <comment xml:lang="pl">Pakiet RPM</comment>
+ <comment xml:lang="oc">paquet RPM</comment>
+ <comment xml:lang="nn">RPM-pakke</comment>
+ <comment xml:lang="nl">RPM-pakket</comment>
+ <comment xml:lang="nb">RPM-pakke</comment>
+ <comment xml:lang="ms">Pakej RPM</comment>
+ <comment xml:lang="lv">RPM pakotne</comment>
+ <comment xml:lang="lt">RPM paketas</comment>
+ <comment xml:lang="ko">RPM 패키지</comment>
+ <comment xml:lang="kk">RPM дестесі</comment>
+ <comment xml:lang="ja">RPM パッケージ</comment>
+ <comment xml:lang="it">Pacchetto RPM</comment>
+ <comment xml:lang="is">RPM pakki</comment>
+ <comment xml:lang="id">Paket RPM</comment>
+ <comment xml:lang="ia">Pacchetto RPM</comment>
+ <comment xml:lang="hu">RPM-csomag</comment>
+ <comment xml:lang="hr">RPM paket</comment>
+ <comment xml:lang="he">חבילת RPM</comment>
+ <comment xml:lang="gl">paquete RFM</comment>
+ <comment xml:lang="ga">pacáiste RPM</comment>
+ <comment xml:lang="fur">pachet RPM</comment>
+ <comment xml:lang="fr">paquet RPM</comment>
+ <comment xml:lang="fo">RPM pakki</comment>
+ <comment xml:lang="fi">RPM-paketti</comment>
+ <comment xml:lang="eu">RPM paketea</comment>
+ <comment xml:lang="es">paquete RPM</comment>
+ <comment xml:lang="eo">RPM-pakaĵo</comment>
+ <comment xml:lang="en_GB">RPM package</comment>
+ <comment xml:lang="el">Πακέτο RPM</comment>
+ <comment xml:lang="de">RPM-Paket</comment>
+ <comment xml:lang="da">RPM-pakke</comment>
+ <comment xml:lang="cs">balíček RPM</comment>
+ <comment xml:lang="ca">paquet RPM</comment>
+ <comment xml:lang="bg">Пакет — RPM</comment>
+ <comment xml:lang="be@latin">Pakunak RPM</comment>
+ <comment xml:lang="be">пакет RPM</comment>
+ <comment xml:lang="ar">حزمة RPM</comment>
+ <comment xml:lang="af">RPM-pakket</comment>
<generic-icon name="package-x-generic"/>
<alias type="application/x-redhat-package-manager"/>
- <magic priority="50">
- <match value="\xed\xab\xee\xdb" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\xed\xab\xee\xdb" offset="0"/>
</magic>
<glob pattern="*.rpm"/>
</mime-type>
<mime-type type="application/x-source-rpm">
<comment>Source RPM package</comment>
- <comment xml:lang="ca">paquet RPM de codi font</comment>
- <comment xml:lang="cs">zdrojový balíček RPM</comment>
- <comment xml:lang="da">Kilde RPM-pakke</comment>
- <comment xml:lang="de">Quell-RPM-Paket</comment>
- <comment xml:lang="el">Πακέτο πηγής RPM</comment>
- <comment xml:lang="en_GB">Source RPM package</comment>
- <comment xml:lang="es">paquete de fuente RPM</comment>
- <comment xml:lang="eu">Iturburu RPM paketea</comment>
- <comment xml:lang="fi">RPM-lähdepaketti</comment>
- <comment xml:lang="fr">paquet source RPM</comment>
- <comment xml:lang="ga">pacáiste foinse RPM</comment>
- <comment xml:lang="gl">Paquete RPM de fontes</comment>
- <comment xml:lang="he">חבילת מקור RPM</comment>
- <comment xml:lang="hr">RPM paket izvora</comment>
- <comment xml:lang="hu">Forrás RPM-csomag</comment>
- <comment xml:lang="ia">Pacchetto de fonte RPM</comment>
- <comment xml:lang="id">Paket RPM sumber</comment>
- <comment xml:lang="it">Pacchetto sorgente RPM</comment>
- <comment xml:lang="ja">ソース RPM パッケージ</comment>
- <comment xml:lang="kk">RPM бастапқы код дестесі</comment>
- <comment xml:lang="ko">소스 RPM 패키지</comment>
- <comment xml:lang="lv">Avota RPM pakotne</comment>
- <comment xml:lang="oc">paquet font RPM</comment>
- <comment xml:lang="pl">Źródłowy pakiet RPM</comment>
- <comment xml:lang="pt">pacote origem RPM</comment>
- <comment xml:lang="pt_BR">Pacote fonte RPM</comment>
- <comment xml:lang="ru">Пакет RPM с исходным кодом</comment>
- <comment xml:lang="sk">Zdrojový balík RPM</comment>
- <comment xml:lang="sl">Paket izvorne kode RPM</comment>
- <comment xml:lang="sr">изворни РПМ пакет</comment>
- <comment xml:lang="sv">Käll-RPM-paket</comment>
- <comment xml:lang="tr">Kaynak RPM paketi</comment>
- <comment xml:lang="uk">пакунок RPM з початковим кодом</comment>
- <comment xml:lang="zh_CN">源码 RPM 软件包</comment>
<comment xml:lang="zh_TW">來源 RPM 軟體包</comment>
+ <comment xml:lang="zh_CN">源码 RPM 软件包</comment>
+ <comment xml:lang="uk">пакунок RPM з початковим кодом</comment>
+ <comment xml:lang="tr">Kaynak RPM paketi</comment>
+ <comment xml:lang="sv">Käll-RPM-paket</comment>
+ <comment xml:lang="sr">изворни РПМ пакет</comment>
+ <comment xml:lang="sq">paketë RPM burimi</comment>
+ <comment xml:lang="sl">Paket izvorne kode RPM</comment>
+ <comment xml:lang="si">මූලාශ්‍ර RPM පැකේජය</comment>
+ <comment xml:lang="sk">Zdrojový balík RPM</comment>
+ <comment xml:lang="ru">Пакет RPM с исходным кодом</comment>
+ <comment xml:lang="pt_BR">Pacote fonte RPM</comment>
+ <comment xml:lang="pt">pacote origem RPM</comment>
+ <comment xml:lang="pl">Źródłowy pakiet RPM</comment>
+ <comment xml:lang="oc">paquet font RPM</comment>
+ <comment xml:lang="nl">Source RPM-pakket</comment>
+ <comment xml:lang="lv">Avota RPM pakotne</comment>
+ <comment xml:lang="ko">소스 RPM 패키지</comment>
+ <comment xml:lang="kk">RPM бастапқы код дестесі</comment>
+ <comment xml:lang="ja">ソース RPM パッケージ</comment>
+ <comment xml:lang="it">Pacchetto sorgente RPM</comment>
+ <comment xml:lang="is">RPM grunnkóðapakki</comment>
+ <comment xml:lang="id">Paket RPM sumber</comment>
+ <comment xml:lang="ia">Pacchetto de fonte RPM</comment>
+ <comment xml:lang="hu">Forrás RPM-csomag</comment>
+ <comment xml:lang="hr">RPM paket izvora</comment>
+ <comment xml:lang="he">חבילת מקור RPM</comment>
+ <comment xml:lang="gl">Paquete RPM de fontes</comment>
+ <comment xml:lang="ga">pacáiste foinse RPM</comment>
+ <comment xml:lang="fur">pachet sorzint RPM</comment>
+ <comment xml:lang="fr">paquet source RPM</comment>
+ <comment xml:lang="fi">RPM-lähdepaketti</comment>
+ <comment xml:lang="eu">Iturburu RPM paketea</comment>
+ <comment xml:lang="es">paquete de fuente RPM</comment>
+ <comment xml:lang="en_GB">Source RPM package</comment>
+ <comment xml:lang="el">Πακέτο πηγής RPM</comment>
+ <comment xml:lang="de">RPM-Quellpaket</comment>
+ <comment xml:lang="da">Kilde RPM-pakke</comment>
+ <comment xml:lang="cs">zdrojový balíček RPM</comment>
+ <comment xml:lang="ca">paquet RPM de codi font</comment>
+ <comment xml:lang="bg">Пакет — RPM с изходен код</comment>
+ <comment xml:lang="be">пакет RPM з зыходным кодам</comment>
+ <comment xml:lang="ar">حزمة RPM مصدرية</comment>
+ <comment xml:lang="af">Bron-RPM-pakket</comment>
<generic-icon name="package-x-generic"/>
<sub-class-of type="application/x-rpm"/>
<glob pattern="*.src.rpm"/>
@@ -19092,879 +20815,900 @@
</mime-type>
<mime-type type="application/x-ruby">
<comment>Ruby script</comment>
- <comment xml:lang="ar">سكربت روبي</comment>
- <comment xml:lang="be@latin">Skrypt Ruby</comment>
- <comment xml:lang="bg">Скрипт — Ruby</comment>
- <comment xml:lang="ca">script Ruby</comment>
- <comment xml:lang="cs">skript Ruby</comment>
- <comment xml:lang="da">Rubyprogram</comment>
- <comment xml:lang="de">Ruby-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών Ruby</comment>
- <comment xml:lang="en_GB">Ruby script</comment>
- <comment xml:lang="eo">Ruby-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en Ruby</comment>
- <comment xml:lang="eu">Ruby script-a</comment>
- <comment xml:lang="fi">Ruby-komentotiedosto</comment>
- <comment xml:lang="fo">Ruby boðrøð</comment>
- <comment xml:lang="fr">script Ruby</comment>
- <comment xml:lang="ga">script Ruby</comment>
- <comment xml:lang="gl">Script de Ruby</comment>
- <comment xml:lang="he">תסריט Ruby</comment>
- <comment xml:lang="hr">Ruby skripta</comment>
- <comment xml:lang="hu">Ruby-parancsfájl</comment>
- <comment xml:lang="ia">Script Ruby</comment>
- <comment xml:lang="id">Skrip Ruby</comment>
- <comment xml:lang="it">Script Ruby</comment>
- <comment xml:lang="ja">Ruby スクリプト</comment>
- <comment xml:lang="kk">Ruby сценарийі</comment>
- <comment xml:lang="ko">루비 스크립트</comment>
- <comment xml:lang="lt">Ruby scenarijus</comment>
- <comment xml:lang="lv">Ruby skripts</comment>
- <comment xml:lang="ms">Skrip Ruby</comment>
- <comment xml:lang="nb">Ruby-skript</comment>
- <comment xml:lang="nl">Ruby-script</comment>
- <comment xml:lang="nn">Ruby-skript</comment>
- <comment xml:lang="oc">escript Ruby</comment>
- <comment xml:lang="pl">Skrypt Ruby</comment>
- <comment xml:lang="pt">script Ruby</comment>
- <comment xml:lang="pt_BR">Script Ruby</comment>
- <comment xml:lang="ro">Script Ruby</comment>
- <comment xml:lang="ru">Сценарий Ruby</comment>
- <comment xml:lang="sk">Skript Ruby</comment>
- <comment xml:lang="sl">Skriptna datoteka Ruby</comment>
- <comment xml:lang="sq">Script Ruby</comment>
- <comment xml:lang="sr">Руби скрипта</comment>
- <comment xml:lang="sv">Ruby-skript</comment>
- <comment xml:lang="tr">Ruby betiği</comment>
- <comment xml:lang="uk">скрипт Ruby</comment>
- <comment xml:lang="vi">Văn lệnh Ruby</comment>
- <comment xml:lang="zh_CN">Ruby 脚本</comment>
<comment xml:lang="zh_TW">Ruby 指令稿</comment>
+ <comment xml:lang="zh_CN">Ruby 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh Ruby</comment>
+ <comment xml:lang="uk">скрипт Ruby</comment>
+ <comment xml:lang="tr">Ruby betiği</comment>
+ <comment xml:lang="sv">Ruby-skript</comment>
+ <comment xml:lang="sr">Руби скрипта</comment>
+ <comment xml:lang="sq">programth Ruby</comment>
+ <comment xml:lang="sl">Skriptna datoteka Ruby</comment>
+ <comment xml:lang="si">Ruby පිටපත</comment>
+ <comment xml:lang="sk">Skript Ruby</comment>
+ <comment xml:lang="ru">Сценарий Ruby</comment>
+ <comment xml:lang="ro">Script Ruby</comment>
+ <comment xml:lang="pt_BR">Script Ruby</comment>
+ <comment xml:lang="pt">script Ruby</comment>
+ <comment xml:lang="pl">Skrypt Ruby</comment>
+ <comment xml:lang="oc">escript Ruby</comment>
+ <comment xml:lang="nn">Ruby-skript</comment>
+ <comment xml:lang="nl">Ruby-script</comment>
+ <comment xml:lang="nb">Ruby-skript</comment>
+ <comment xml:lang="ms">Skrip Ruby</comment>
+ <comment xml:lang="lv">Ruby skripts</comment>
+ <comment xml:lang="lt">Ruby scenarijus</comment>
+ <comment xml:lang="ko">루비 스크립트</comment>
+ <comment xml:lang="kk">Ruby сценарийі</comment>
+ <comment xml:lang="ja">Ruby スクリプト</comment>
+ <comment xml:lang="it">Script Ruby</comment>
+ <comment xml:lang="is">Ruby skrifta</comment>
+ <comment xml:lang="id">Skrip Ruby</comment>
+ <comment xml:lang="ia">Script Ruby</comment>
+ <comment xml:lang="hu">Ruby-parancsfájl</comment>
+ <comment xml:lang="hr">Ruby skripta</comment>
+ <comment xml:lang="he">תסריט Ruby</comment>
+ <comment xml:lang="gl">Script de Ruby</comment>
+ <comment xml:lang="ga">script Ruby</comment>
+ <comment xml:lang="fur">script Ruby</comment>
+ <comment xml:lang="fr">script Ruby</comment>
+ <comment xml:lang="fo">Ruby boðrøð</comment>
+ <comment xml:lang="fi">Ruby-komentotiedosto</comment>
+ <comment xml:lang="eu">Ruby script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Ruby</comment>
+ <comment xml:lang="eo">Ruby-skripto</comment>
+ <comment xml:lang="en_GB">Ruby script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών Ruby</comment>
+ <comment xml:lang="de">Ruby-Skript</comment>
+ <comment xml:lang="da">Ruby-program</comment>
+ <comment xml:lang="cs">skript Ruby</comment>
+ <comment xml:lang="ca">script Ruby</comment>
+ <comment xml:lang="bg">Скрипт — Ruby</comment>
+ <comment xml:lang="be@latin">Skrypt Ruby</comment>
+ <comment xml:lang="be">скрыпт Ruby</comment>
+ <comment xml:lang="ar">سكربت روبي</comment>
+ <comment xml:lang="af">Ruby-skrip</comment>
<sub-class-of type="application/x-executable"/>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<magic>
- <match value="/bin/env ruby" type="string" offset="2:16"/>
- <match value="/bin/ruby" type="string" offset="2:16"/>
+ <match type="string" value="/bin/env ruby" offset="2:16"/>
+ <match type="string" value="/bin/ruby" offset="2:16"/>
</magic>
<glob pattern="*.rb"/>
</mime-type>
<mime-type type="application/x-markaby">
<comment>Markaby script</comment>
- <comment xml:lang="ar">سكربت Markaby</comment>
- <comment xml:lang="be@latin">Skrypt Markaby</comment>
- <comment xml:lang="bg">Скрипт — Markaby</comment>
- <comment xml:lang="ca">script Markaby</comment>
- <comment xml:lang="cs">skript Markaby</comment>
- <comment xml:lang="da">Markabyprogram</comment>
- <comment xml:lang="de">Markaby-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών Markaby</comment>
- <comment xml:lang="en_GB">Markaby script</comment>
- <comment xml:lang="eo">Markaby-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en Markaby</comment>
- <comment xml:lang="eu">Markaby script-a</comment>
- <comment xml:lang="fi">Markaby-komentotiedosto</comment>
- <comment xml:lang="fo">Markaby boðrøð</comment>
- <comment xml:lang="fr">script Markaby</comment>
- <comment xml:lang="ga">script Markaby</comment>
- <comment xml:lang="gl">Script de Markaby</comment>
- <comment xml:lang="he">תסריט Markby</comment>
- <comment xml:lang="hr">Markaby skripta</comment>
- <comment xml:lang="hu">Markaby parancsfájl</comment>
- <comment xml:lang="ia">Script Markaby</comment>
- <comment xml:lang="id">Skrip Markaby</comment>
- <comment xml:lang="it">Script Markaby</comment>
- <comment xml:lang="ja">Markaby スクリプト</comment>
- <comment xml:lang="ka">Markaby-ის სცენარი</comment>
- <comment xml:lang="kk">Markaby сценарийі</comment>
- <comment xml:lang="ko">Markaby 스크립트</comment>
- <comment xml:lang="lt">Markaby scenarijus</comment>
- <comment xml:lang="lv">Markaby skripts</comment>
- <comment xml:lang="nb">Markaby-skript</comment>
- <comment xml:lang="nl">Markaby-script</comment>
- <comment xml:lang="nn">Markaby-skript</comment>
- <comment xml:lang="oc">escript Markaby</comment>
- <comment xml:lang="pl">Skrypt Markaby</comment>
- <comment xml:lang="pt">script Markaby</comment>
- <comment xml:lang="pt_BR">Script Markaby</comment>
- <comment xml:lang="ro">Script Markaby</comment>
- <comment xml:lang="ru">Сценарий Markaby</comment>
- <comment xml:lang="sk">Skript Markaby</comment>
- <comment xml:lang="sl">Skriptna datoteka Markaby</comment>
- <comment xml:lang="sq">Script Markaby</comment>
- <comment xml:lang="sr">Маркаби скрипта</comment>
- <comment xml:lang="sv">Markaby-skript</comment>
- <comment xml:lang="tr">Markaby betiği</comment>
- <comment xml:lang="uk">скрипт Markaby</comment>
- <comment xml:lang="vi">Văn lệnh Markaby</comment>
- <comment xml:lang="zh_CN">RMarkaby 脚本</comment>
<comment xml:lang="zh_TW">Markaby 指令稿</comment>
+ <comment xml:lang="zh_CN">RMarkaby 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh Markaby</comment>
+ <comment xml:lang="uk">скрипт Markaby</comment>
+ <comment xml:lang="tr">Markaby betiği</comment>
+ <comment xml:lang="sv">Markaby-skript</comment>
+ <comment xml:lang="sr">Маркаби скрипта</comment>
+ <comment xml:lang="sq">programth Markaby</comment>
+ <comment xml:lang="sl">Skriptna datoteka Markaby</comment>
+ <comment xml:lang="si">Markaby පිටපත</comment>
+ <comment xml:lang="sk">Skript Markaby</comment>
+ <comment xml:lang="ru">Сценарий Markaby</comment>
+ <comment xml:lang="ro">Script Markaby</comment>
+ <comment xml:lang="pt_BR">Script Markaby</comment>
+ <comment xml:lang="pt">script Markaby</comment>
+ <comment xml:lang="pl">Skrypt Markaby</comment>
+ <comment xml:lang="oc">escript Markaby</comment>
+ <comment xml:lang="nn">Markaby-skript</comment>
+ <comment xml:lang="nl">Markaby-script</comment>
+ <comment xml:lang="nb">Markaby-skript</comment>
+ <comment xml:lang="lv">Markaby skripts</comment>
+ <comment xml:lang="lt">Markaby scenarijus</comment>
+ <comment xml:lang="ko">Markaby 스크립트</comment>
+ <comment xml:lang="kk">Markaby сценарийі</comment>
+ <comment xml:lang="ka">Markaby-ის სცენარი</comment>
+ <comment xml:lang="ja">Markaby スクリプト</comment>
+ <comment xml:lang="it">Script Markaby</comment>
+ <comment xml:lang="is">Markaby skrifta</comment>
+ <comment xml:lang="id">Skrip Markaby</comment>
+ <comment xml:lang="ia">Script Markaby</comment>
+ <comment xml:lang="hu">Markaby parancsfájl</comment>
+ <comment xml:lang="hr">Markaby skripta</comment>
+ <comment xml:lang="he">תסריט Markby</comment>
+ <comment xml:lang="gl">Script de Markaby</comment>
+ <comment xml:lang="ga">script Markaby</comment>
+ <comment xml:lang="fur">script Markaby</comment>
+ <comment xml:lang="fr">script Markaby</comment>
+ <comment xml:lang="fo">Markaby boðrøð</comment>
+ <comment xml:lang="fi">Markaby-komentotiedosto</comment>
+ <comment xml:lang="eu">Markaby script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Markaby</comment>
+ <comment xml:lang="eo">Markaby-skripto</comment>
+ <comment xml:lang="en_GB">Markaby script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών Markaby</comment>
+ <comment xml:lang="de">Markaby-Skript</comment>
+ <comment xml:lang="da">Markaby-program</comment>
+ <comment xml:lang="cs">skript Markaby</comment>
+ <comment xml:lang="ca">script Markaby</comment>
+ <comment xml:lang="bg">Скрипт — Markaby</comment>
+ <comment xml:lang="be@latin">Skrypt Markaby</comment>
+ <comment xml:lang="be">скрыпт Markaby</comment>
+ <comment xml:lang="ar">سكربت Markaby</comment>
+ <comment xml:lang="af">Markaby-skrip</comment>
<sub-class-of type="application/x-ruby"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.mab"/>
</mime-type>
+ <mime-type type="text/x-crystal">
+ <comment>Crystal source code</comment>
+ <comment xml:lang="zh_TW">Crystal 原始碼</comment>
+ <comment xml:lang="zh_CN">Crystal 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Crystal</comment>
+ <comment xml:lang="tr">Crystal kaynak kodu</comment>
+ <comment xml:lang="sv">Crystal-källkod</comment>
+ <comment xml:lang="sl">Izvorna koda Crystal</comment>
+ <comment xml:lang="si">Crystal source code</comment>
+ <comment xml:lang="ru">Исходный код Crystal</comment>
+ <comment xml:lang="pl">Kod źródłowy Crystal</comment>
+ <comment xml:lang="oc">còdi font Crystal</comment>
+ <comment xml:lang="nl">Crystal-broncode</comment>
+ <comment xml:lang="ko">Crystal 소스 코드</comment>
+ <comment xml:lang="kk">Crystal бастапқы коды</comment>
+ <comment xml:lang="ja">Crystal ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Crystal</comment>
+ <comment xml:lang="hr">Crystal izvorni kôd</comment>
+ <comment xml:lang="gl">Código fonte en Crystal</comment>
+ <comment xml:lang="fi">Crystal-lähdekoodi</comment>
+ <comment xml:lang="eu">Crystal iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Crystal</comment>
+ <comment xml:lang="en_GB">Crystal source code</comment>
+ <comment xml:lang="de">Crystal-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Crystal</comment>
+ <comment xml:lang="ar">شفرة مصدر Crystal</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.cr"/>
+ <alias type="text/crystal"/>
+ </mime-type>
+ <mime-type type="text/julia">
+ <comment>Julia source code</comment>
+ <comment xml:lang="uk">початковий код Julia</comment>
+ <comment xml:lang="sv">Julia-källkod</comment>
+ <comment xml:lang="ru">Исходный код Julia</comment>
+ <comment xml:lang="pl">Kod źródłowy Julia</comment>
+ <comment xml:lang="ja">Julia算譜</comment>
+ <comment xml:lang="it">Codice sorgente Julia</comment>
+ <comment xml:lang="gl">Código fonte en Julia</comment>
+ <comment xml:lang="eu">Julia iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Julia</comment>
+ <comment xml:lang="de">Julia-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Julia</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.jl"/>
+ </mime-type>
<mime-type type="text/rust">
<comment>Rust source code</comment>
- <comment xml:lang="ca">codi font en Rust</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Rust</comment>
- <comment xml:lang="da">Rust-kildekode</comment>
- <comment xml:lang="de">Rust-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Rust</comment>
- <comment xml:lang="en_GB">Rust source code</comment>
- <comment xml:lang="es">código fuente en Rust</comment>
- <comment xml:lang="eu">Rust iturburu-kodea</comment>
- <comment xml:lang="fi">Rust-lähdekoodi</comment>
- <comment xml:lang="fr">code source Rust</comment>
- <comment xml:lang="ga">cód foinseach Rust</comment>
- <comment xml:lang="he">קוד מקור של Rust</comment>
- <comment xml:lang="hr">Rust izvorni kôd</comment>
- <comment xml:lang="hu">Rust forrásfájl</comment>
- <comment xml:lang="ia">Codice-fonte Rust</comment>
- <comment xml:lang="id">Kode program Rust</comment>
- <comment xml:lang="it">Codice sorgente Rust</comment>
- <comment xml:lang="kk">Rust бастапқы коды</comment>
- <comment xml:lang="ko">Rust 소스 코드</comment>
- <comment xml:lang="oc">còde font Rust</comment>
- <comment xml:lang="pl">Kod źródłowy Rust</comment>
- <comment xml:lang="pt">código origem Rust</comment>
- <comment xml:lang="pt_BR">Código-fonte Rust</comment>
- <comment xml:lang="ru">Исходный код Rust</comment>
- <comment xml:lang="sk">Zdrojový kód Rust</comment>
- <comment xml:lang="sr">Раст изворни ко̂д</comment>
- <comment xml:lang="sv">Rust-källkod</comment>
- <comment xml:lang="tr">Rust kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Rust</comment>
- <comment xml:lang="zh_CN">Rust 源代码</comment>
<comment xml:lang="zh_TW">Rust 源碼</comment>
+ <comment xml:lang="zh_CN">Rust 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Rust</comment>
+ <comment xml:lang="tr">Rust kaynak kodu</comment>
+ <comment xml:lang="sv">Rust-källkod</comment>
+ <comment xml:lang="sr">Раст изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Rust</comment>
+ <comment xml:lang="sl">Izvorna koda Rust</comment>
+ <comment xml:lang="si">මලකඩ මූලාශ්ර කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Rust</comment>
+ <comment xml:lang="ru">Исходный код Rust</comment>
+ <comment xml:lang="pt_BR">Código-fonte Rust</comment>
+ <comment xml:lang="pt">código origem Rust</comment>
+ <comment xml:lang="pl">Kod źródłowy Rust</comment>
+ <comment xml:lang="oc">còde font Rust</comment>
+ <comment xml:lang="nl">Rust-broncode</comment>
+ <comment xml:lang="ko">Rust 소스 코드</comment>
+ <comment xml:lang="kk">Rust бастапқы коды</comment>
+ <comment xml:lang="ja">Rust ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Rust</comment>
+ <comment xml:lang="is">Rust frumkóði</comment>
+ <comment xml:lang="id">Kode program Rust</comment>
+ <comment xml:lang="ia">Codice-fonte Rust</comment>
+ <comment xml:lang="hu">Rust forrásfájl</comment>
+ <comment xml:lang="hr">Rust izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Rust</comment>
+ <comment xml:lang="gl">Código fonte en Rust</comment>
+ <comment xml:lang="ga">cód foinseach Rust</comment>
+ <comment xml:lang="fur">codiç sorzint Rust</comment>
+ <comment xml:lang="fr">code source Rust</comment>
+ <comment xml:lang="fi">Rust-lähdekoodi</comment>
+ <comment xml:lang="eu">Rust iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Rust</comment>
+ <comment xml:lang="en_GB">Rust source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Rust</comment>
+ <comment xml:lang="de">Rust-Quelltext</comment>
+ <comment xml:lang="da">Rust-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Rust</comment>
+ <comment xml:lang="ca">codi font en Rust</comment>
+ <comment xml:lang="bg">Изходен код — Rust</comment>
+ <comment xml:lang="be">зыходны код Rust</comment>
+ <comment xml:lang="ar">شفرة مصدر رست</comment>
+ <comment xml:lang="af">Rust-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.rs"/>
</mime-type>
<mime-type type="application/x-sc">
<comment>SC/Xspread spreadsheet</comment>
- <comment xml:lang="ar">جدول SC/Xspread</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš SC/Xspread</comment>
- <comment xml:lang="bg">Таблица — SC/Xspread</comment>
- <comment xml:lang="ca">full de càlcul de SC/Xspread</comment>
- <comment xml:lang="cs">sešit SC/Xspread</comment>
- <comment xml:lang="da">SC/Xspread-regneark</comment>
- <comment xml:lang="de">SX/Xspread-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο SC/Xspread</comment>
- <comment xml:lang="en_GB">SC/Xspread spreadsheet</comment>
- <comment xml:lang="eo">SC/Xspread-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo SC/Xspread</comment>
- <comment xml:lang="eu">SC/Xspread kalkulu-orria</comment>
- <comment xml:lang="fi">SC/Xspread-taulukko</comment>
- <comment xml:lang="fo">SC/Xspread rokniark</comment>
- <comment xml:lang="fr">feuille de calcul SC/Xspread</comment>
- <comment xml:lang="ga">scarbhileog SC/Xspread</comment>
- <comment xml:lang="gl">folla de cálculo SC/Xspread</comment>
- <comment xml:lang="he">גליון נתונים של SC/Xspread</comment>
- <comment xml:lang="hr">SC/Xspread proračunska tablica</comment>
- <comment xml:lang="hu">SC/Xspread táblázat</comment>
- <comment xml:lang="ia">Folio de calculo SC/Xspread</comment>
- <comment xml:lang="id">Lembar sebar SC/Xspread</comment>
- <comment xml:lang="it">Foglio di calcolo SC/Xspread</comment>
- <comment xml:lang="ja">SC/Xspread スプレッドシート</comment>
- <comment xml:lang="kk">SC/Xspread электрондық кестесі</comment>
- <comment xml:lang="ko">SC/Xspread 스프레드시트</comment>
- <comment xml:lang="lt">SC/Xspread skaičialentė</comment>
- <comment xml:lang="lv">SC/Xspread izklājlapa</comment>
- <comment xml:lang="nb">SC/Xspread-regneark</comment>
- <comment xml:lang="nl">SC/Xspread-rekenblad</comment>
- <comment xml:lang="nn">SC/Xspread-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul SC/Xspread</comment>
- <comment xml:lang="pl">Arkusz SC/Xspread</comment>
- <comment xml:lang="pt">folha de cálculo SC/Xspread</comment>
- <comment xml:lang="pt_BR">Planilha do SC/Xspread</comment>
- <comment xml:lang="ro">Foaie de calcul SC/Xspread</comment>
- <comment xml:lang="ru">Электронная таблица SC/Xspread</comment>
- <comment xml:lang="sk">Zošit SC/Xspread</comment>
- <comment xml:lang="sl">Preglednica SC/Xspread</comment>
- <comment xml:lang="sq">Fletë llogaritjesh SC/Xspread</comment>
- <comment xml:lang="sr">табела СЦ/Икс-табеле</comment>
- <comment xml:lang="sv">SC/Xspread-kalkylblad</comment>
- <comment xml:lang="tr">SC/Xspread çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця SC/Xspread</comment>
- <comment xml:lang="vi">Bảng tính SC/Xspread</comment>
- <comment xml:lang="zh_CN">SC/Xspread 电子表格</comment>
<comment xml:lang="zh_TW">SC/Xspread 試算表</comment>
+ <comment xml:lang="zh_CN">SC/Xspread 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính SC/Xspread</comment>
+ <comment xml:lang="uk">електронна таблиця SC/Xspread</comment>
+ <comment xml:lang="tr">SC/Xspread hesap çizelgesi</comment>
+ <comment xml:lang="sv">SC/Xspread-kalkylblad</comment>
+ <comment xml:lang="sr">табела СЦ/Икс-табеле</comment>
+ <comment xml:lang="sq">fletëllogaritje SC/Xspread</comment>
+ <comment xml:lang="sl">Preglednica SC/Xspread</comment>
+ <comment xml:lang="si">SC/Xspread පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit SC/Xspread</comment>
+ <comment xml:lang="ru">Электронная таблица SC/Xspread</comment>
+ <comment xml:lang="ro">Foaie de calcul SC/Xspread</comment>
+ <comment xml:lang="pt_BR">Planilha do SC/Xspread</comment>
+ <comment xml:lang="pt">folha de cálculo SC/Xspread</comment>
+ <comment xml:lang="pl">Arkusz SC/Xspread</comment>
+ <comment xml:lang="oc">fuèlh de calcul SC/Xspread</comment>
+ <comment xml:lang="nn">SC/Xspread-rekneark</comment>
+ <comment xml:lang="nl">SC/Xspread-rekenblad</comment>
+ <comment xml:lang="nb">SC/Xspread-regneark</comment>
+ <comment xml:lang="lv">SC/Xspread izklājlapa</comment>
+ <comment xml:lang="lt">SC/Xspread skaičialentė</comment>
+ <comment xml:lang="ko">SC/Xspread 스프레드시트</comment>
+ <comment xml:lang="kk">SC/Xspread электрондық кестесі</comment>
+ <comment xml:lang="ja">SC/Xspread スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo SC/Xspread</comment>
+ <comment xml:lang="is">SC/Xspread töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar SC/Xspread</comment>
+ <comment xml:lang="ia">Folio de calculo SC/Xspread</comment>
+ <comment xml:lang="hu">SC/Xspread táblázat</comment>
+ <comment xml:lang="hr">SC/Xspread proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של SC/Xspread</comment>
+ <comment xml:lang="gl">folla de cálculo SC/Xspread</comment>
+ <comment xml:lang="ga">scarbhileog SC/Xspread</comment>
+ <comment xml:lang="fur">sfuei di calcul SC/Xspread</comment>
+ <comment xml:lang="fr">feuille de calcul SC/Xspread</comment>
+ <comment xml:lang="fo">SC/Xspread rokniark</comment>
+ <comment xml:lang="fi">SC/Xspread-taulukko</comment>
+ <comment xml:lang="eu">SC/Xspread kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo SC/Xspread</comment>
+ <comment xml:lang="eo">SC/Xspread-kalkultabelo</comment>
+ <comment xml:lang="en_GB">SC/Xspread spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο SC/Xspread</comment>
+ <comment xml:lang="de">SC/Xspread-Tabelle</comment>
+ <comment xml:lang="da">SC/Xspread-regneark</comment>
+ <comment xml:lang="cs">sešit SC/Xspread</comment>
+ <comment xml:lang="ca">full de càlcul de SC/Xspread</comment>
+ <comment xml:lang="bg">Таблица — SC/Xspread</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš SC/Xspread</comment>
+ <comment xml:lang="be">электронная табліца SC/Xspread</comment>
+ <comment xml:lang="ar">جدول SC/Xspread</comment>
+ <comment xml:lang="af">SC/Xspread-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
- <magic priority="50">
- <match value="Spreadsheet" type="string" offset="38"/>
+ <magic>
+ <match type="string" value="Spreadsheet" offset="38"/>
</magic>
</mime-type>
<mime-type type="application/x-shar">
- <comment>shell archive</comment>
- <comment xml:lang="ar">أرشيف شِل</comment>
- <comment xml:lang="az">qabıq arxivi</comment>
- <comment xml:lang="be@latin">archiŭ abałonki</comment>
- <comment xml:lang="bg">Архив на обвивката</comment>
- <comment xml:lang="ca">arxiu de shell</comment>
- <comment xml:lang="cs">archiv shellu</comment>
- <comment xml:lang="cy">archif plisgyn</comment>
- <comment xml:lang="da">skalarkiv</comment>
- <comment xml:lang="de">Shell-Archiv</comment>
- <comment xml:lang="el">Αρχείο κέλυφους</comment>
- <comment xml:lang="en_GB">shell archive</comment>
- <comment xml:lang="eo">ŝel-arkivo</comment>
- <comment xml:lang="es">archivador shell</comment>
- <comment xml:lang="eu">shell artxiboa</comment>
- <comment xml:lang="fi">komentotulkkiarkisto</comment>
- <comment xml:lang="fo">skel savn</comment>
- <comment xml:lang="fr">archive shell</comment>
- <comment xml:lang="ga">cartlann bhlaoisce</comment>
- <comment xml:lang="gl">ficheiro shell</comment>
- <comment xml:lang="he">ארכיון מעטפת</comment>
- <comment xml:lang="hr">Arhiva ljuske</comment>
- <comment xml:lang="hu">héjarchívum</comment>
- <comment xml:lang="ia">Archivo de shell</comment>
- <comment xml:lang="id">arsip shell</comment>
- <comment xml:lang="it">Archivio shell</comment>
- <comment xml:lang="ja">シェルアーカイブ</comment>
- <comment xml:lang="kk">қоршам архиві</comment>
- <comment xml:lang="ko">셸 압축 파일</comment>
- <comment xml:lang="lt">shell archyvas</comment>
- <comment xml:lang="lv">čaulas arhīvs</comment>
- <comment xml:lang="ms">Arkib shell</comment>
- <comment xml:lang="nb">skallarkiv</comment>
- <comment xml:lang="nl">shell-archief</comment>
- <comment xml:lang="nn">skal-arkiv</comment>
- <comment xml:lang="oc">archiu shell</comment>
- <comment xml:lang="pl">Archiwum powłoki</comment>
- <comment xml:lang="pt">arquivo de terminal</comment>
- <comment xml:lang="pt_BR">Pacote shell</comment>
- <comment xml:lang="ro">arhivă shell</comment>
- <comment xml:lang="ru">Архив shell</comment>
- <comment xml:lang="sk">Archív shellu</comment>
- <comment xml:lang="sl">lupinski arhiv</comment>
- <comment xml:lang="sq">Arkiv shell</comment>
- <comment xml:lang="sr">архива љуске</comment>
- <comment xml:lang="sv">skalarkiv</comment>
- <comment xml:lang="tr">kabuk arşivi</comment>
+ <comment>Shell archive</comment>
<comment xml:lang="uk">архів оболонки</comment>
- <comment xml:lang="vi">kho trình bao</comment>
- <comment xml:lang="zh_CN">shell 归档文件</comment>
- <comment xml:lang="zh_TW">shell 封存檔</comment>
+ <comment xml:lang="sv">Skalarkiv</comment>
+ <comment xml:lang="ru">Архив shell</comment>
+ <comment xml:lang="pl">Archiwum powłoki</comment>
+ <comment xml:lang="ja">シェル自己解凍ファイル</comment>
+ <comment xml:lang="it">Archivio shell</comment>
+ <comment xml:lang="gl">Arquivo de Shell</comment>
+ <comment xml:lang="eu">Shell artxiboa</comment>
+ <comment xml:lang="es">archivador Shell</comment>
+ <comment xml:lang="de">Shell-Archiv</comment>
+ <comment xml:lang="be">архіў абалонкі</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.shar"/>
</mime-type>
<mime-type type="application/x-shared-library-la">
- <comment>libtool shared library</comment>
- <comment xml:lang="ar">مكتبة libtool المشتركة</comment>
- <comment xml:lang="be@latin">supolnaja biblijateka libtool</comment>
- <comment xml:lang="bg">Споделена библиотека — libtool</comment>
- <comment xml:lang="ca">biblioteca compartida libtool</comment>
- <comment xml:lang="cs">sdílená knihovna libtool</comment>
- <comment xml:lang="da">libtool delt bibliotek</comment>
- <comment xml:lang="de">Gemeinsame libtool-Bibliothek</comment>
- <comment xml:lang="el">Κοινόχρηστη βιβλιοθήκη libtool</comment>
- <comment xml:lang="en_GB">libtool shared library</comment>
- <comment xml:lang="es">biblioteca compartida de libtool</comment>
- <comment xml:lang="eu">libtool partekatutako liburutegia</comment>
- <comment xml:lang="fi">jaettu libtool-kirjasto</comment>
- <comment xml:lang="fo">libtool felagssavn</comment>
- <comment xml:lang="fr">bibliothèque partagée libtool</comment>
- <comment xml:lang="ga">comhleabharlann libtool</comment>
- <comment xml:lang="gl">biblioteca compartida de libtool</comment>
- <comment xml:lang="he">ספרייה משותפת של libtool</comment>
- <comment xml:lang="hr">libtool dijeljena biblioteka</comment>
- <comment xml:lang="hu">libtool osztott programkönyvtár</comment>
- <comment xml:lang="ia">Bibliotheca commun Libtool</comment>
- <comment xml:lang="id">pustaka bersama libtool</comment>
- <comment xml:lang="it">Libreria condivisa libtool</comment>
- <comment xml:lang="ja">libtool 共有ライブラリ</comment>
- <comment xml:lang="kk">libtool ортақ жинағы</comment>
- <comment xml:lang="ko">libtool 공유 라이브러리</comment>
- <comment xml:lang="lt">libtool bendroji biblioteka</comment>
- <comment xml:lang="lv">libtool koplietotā bibliotēka</comment>
- <comment xml:lang="nb">libtool delt bibliotek</comment>
- <comment xml:lang="nl">gedeelde libtool-bibliotheek</comment>
- <comment xml:lang="nn">libtool delt bibliotek</comment>
- <comment xml:lang="oc">bibliotèca partejada libtool</comment>
- <comment xml:lang="pl">Biblioteka współdzielona libtool</comment>
- <comment xml:lang="pt">biblioteca partilhada libtool</comment>
- <comment xml:lang="pt_BR">Biblioteca compartilhada libtool</comment>
- <comment xml:lang="ro">bibliotecă partajată libtool</comment>
- <comment xml:lang="ru">Разделяемая библиотека libtool</comment>
- <comment xml:lang="sk">Zdieľaná knižnica libtool</comment>
- <comment xml:lang="sl">Souporabna knjižnica libtool</comment>
- <comment xml:lang="sq">Librari e përbashkët libtool</comment>
- <comment xml:lang="sr">дељена библиотека библ-алата</comment>
- <comment xml:lang="sv">delat libtool-bibliotek</comment>
- <comment xml:lang="tr">libtool paylaşımlı kitaplığı</comment>
+ <comment>Libtool shared library</comment>
<comment xml:lang="uk">спільна бібліотека libtool</comment>
- <comment xml:lang="vi">thư viện dùng chung libtool</comment>
- <comment xml:lang="zh_CN">libtool 共享库</comment>
- <comment xml:lang="zh_TW">libtool 共享函式庫</comment>
+ <comment xml:lang="sv">Delat libtool-bibliotek</comment>
+ <comment xml:lang="ru">Разделяемая библиотека libtool</comment>
+ <comment xml:lang="pl">Biblioteka współdzielona libtool</comment>
+ <comment xml:lang="it">Libreria condivisa libtool</comment>
+ <comment xml:lang="eu">Libtool liburutegi partekatua</comment>
+ <comment xml:lang="es">biblioteca compartida de Libtool</comment>
+ <comment xml:lang="de">Gemeinsame libtool-Bibliothek</comment>
+ <comment xml:lang="be">агульная бібліятэка libtool</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-script"/>
<glob pattern="*.la"/>
</mime-type>
<mime-type type="application/x-sharedlib">
- <comment>shared library</comment>
- <comment xml:lang="ar">مكتبة مشتركة</comment>
- <comment xml:lang="az">bölüşülmüş kitabxana</comment>
- <comment xml:lang="be@latin">supolnaja biblijateka</comment>
- <comment xml:lang="bg">Споделена библиотека</comment>
- <comment xml:lang="ca">biblioteca compartida</comment>
- <comment xml:lang="cs">sdílená knihovna</comment>
- <comment xml:lang="cy">llyfrgell wedi ei rhannu</comment>
- <comment xml:lang="da">delt bibliotek</comment>
- <comment xml:lang="de">Gemeinsame Bibliothek</comment>
- <comment xml:lang="el">Αρχείο κοινόχρηστης βιβλιοθήκης</comment>
- <comment xml:lang="en_GB">shared library</comment>
- <comment xml:lang="eo">dinamike bindebla biblioteko</comment>
- <comment xml:lang="es">biblioteca compartida</comment>
- <comment xml:lang="eu">partekatutako liburutegia</comment>
- <comment xml:lang="fi">jaettu kirjasto</comment>
- <comment xml:lang="fo">felagssavn</comment>
- <comment xml:lang="fr">bibliothèque partagée</comment>
- <comment xml:lang="ga">comhleabharlann</comment>
- <comment xml:lang="gl">biblioteca compartida</comment>
- <comment xml:lang="he">ספרייה משותפת</comment>
- <comment xml:lang="hr">dijeljena biblioteka</comment>
- <comment xml:lang="hu">osztott programkönyvtár</comment>
- <comment xml:lang="ia">Bibliotheca commun</comment>
- <comment xml:lang="id">pustaka bersama</comment>
- <comment xml:lang="it">Libreria condivisa</comment>
- <comment xml:lang="ja">共有ライブラリ</comment>
- <comment xml:lang="kk">бөлісетін библиотека</comment>
- <comment xml:lang="ko">공유 라이브러리</comment>
- <comment xml:lang="lt">bendroji biblioteka</comment>
- <comment xml:lang="lv">koplietotā bibliotēka</comment>
- <comment xml:lang="ms">Pustaka terkongsi</comment>
- <comment xml:lang="nb">delt bibliotek</comment>
- <comment xml:lang="nl">gedeelde bibliotheek</comment>
- <comment xml:lang="nn">delt bibliotek</comment>
- <comment xml:lang="oc">bibliotèca partejada</comment>
- <comment xml:lang="pl">Biblioteka współdzielona</comment>
- <comment xml:lang="pt">biblioteca partilhada</comment>
- <comment xml:lang="pt_BR">Biblioteca compartilhada</comment>
- <comment xml:lang="ro">bibliotecă partajată</comment>
- <comment xml:lang="ru">Разделяемая библиотека</comment>
- <comment xml:lang="sk">Zdieľaná knižnica</comment>
- <comment xml:lang="sl">souporabljena knjižnica</comment>
- <comment xml:lang="sq">Librari e përbashkët</comment>
- <comment xml:lang="sr">дељена библиотека</comment>
- <comment xml:lang="sv">delat bibliotek</comment>
- <comment xml:lang="tr">paylaşımlı kitaplık</comment>
+ <comment>Shared library</comment>
<comment xml:lang="uk">спільна бібліотека</comment>
- <comment xml:lang="vi">thư viện dùng chung</comment>
- <comment xml:lang="zh_CN">共享库</comment>
- <comment xml:lang="zh_TW">共享函式庫</comment>
- <magic priority="50">
- <match value="\177ELF" type="string" offset="0">
- <match value="1" type="byte" offset="5">
- <match value="3" type="little16" offset="16"/>
- </match>
- </match>
- <match value="\177ELF" type="string" offset="0">
- <match value="2" type="byte" offset="5">
- <match value="3" type="big16" offset="16"/>
- </match>
- </match>
- <match value="0603" type="little16" offset="0">
- <match value="020000" type="little16" offset="22" mask="030000"/>
+ <comment xml:lang="sv">Delat bibliotek</comment>
+ <comment xml:lang="ru">Разделяемая библиотека</comment>
+ <comment xml:lang="pl">Biblioteka współdzielona</comment>
+ <comment xml:lang="ja">共有ライブラリ</comment>
+ <comment xml:lang="it">Libreria condivisa</comment>
+ <comment xml:lang="gl">Biblioteca compartida</comment>
+ <comment xml:lang="eu">Liburutegi partekatua</comment>
+ <comment xml:lang="es">biblioteca compartida</comment>
+ <comment xml:lang="de">Gemeinsam genutzte Bibliothek</comment>
+ <comment xml:lang="be">агульная бібліятэка</comment>
+ <magic>
+ <match type="little16" value="0603" offset="0">
+ <match type="little16" mask="030000" value="020000" offset="22"/>
</match>
- <match value="\177ELF \003" type="string" offset="0" mask="0xffffffff000000000000000000000000ff"/>
</magic>
<glob pattern="*.so"/>
+ <glob weight="60" pattern="*.so.[0-9]*"/>
</mime-type>
<mime-type type="application/x-shellscript">
- <comment>shell script</comment>
- <comment xml:lang="ar">سكربت شِل</comment>
- <comment xml:lang="az">qabıq skripti</comment>
- <comment xml:lang="be@latin">skrypt abałonki</comment>
- <comment xml:lang="bg">Скрипт на обвивката</comment>
- <comment xml:lang="ca">script shell</comment>
- <comment xml:lang="cs">skript shellu</comment>
- <comment xml:lang="cy">sgript plisgyn</comment>
- <comment xml:lang="da">skalprogram</comment>
- <comment xml:lang="de">Shell-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών κελύφους</comment>
- <comment xml:lang="en_GB">shell script</comment>
- <comment xml:lang="eo">ŝelskripto</comment>
- <comment xml:lang="es">secuencia de órdenes en shell</comment>
- <comment xml:lang="eu">shell script-a</comment>
- <comment xml:lang="fi">komentotulkin komentotiedosto</comment>
- <comment xml:lang="fo">skel boðrøð</comment>
- <comment xml:lang="fr">script shell</comment>
- <comment xml:lang="ga">script bhlaoisce</comment>
- <comment xml:lang="gl">script de shell</comment>
- <comment xml:lang="he">תסריט מעטפת</comment>
- <comment xml:lang="hr">Skripta ljuske</comment>
- <comment xml:lang="hu">héj-parancsfájl</comment>
- <comment xml:lang="ia">Script de shell</comment>
- <comment xml:lang="id">skrip shell</comment>
- <comment xml:lang="it">Script shell</comment>
- <comment xml:lang="ja">シェルスクリプト</comment>
- <comment xml:lang="kk">қоршам сценарийі</comment>
- <comment xml:lang="ko">셸 스크립트</comment>
- <comment xml:lang="lt">shell scenarijus</comment>
- <comment xml:lang="lv">čaulas skripts</comment>
- <comment xml:lang="ms">Skrip shell</comment>
- <comment xml:lang="nb">skallskript</comment>
- <comment xml:lang="nl">shellscript</comment>
- <comment xml:lang="nn">skalskript</comment>
- <comment xml:lang="oc">escript shell</comment>
- <comment xml:lang="pl">Skrypt powłoki</comment>
- <comment xml:lang="pt">script de terminal</comment>
- <comment xml:lang="pt_BR">Script shell</comment>
- <comment xml:lang="ro">script shell</comment>
- <comment xml:lang="ru">Сценарий shell</comment>
- <comment xml:lang="sk">Skript shellu</comment>
- <comment xml:lang="sl">lupinski skript</comment>
- <comment xml:lang="sq">Script shell</comment>
- <comment xml:lang="sr">скрипта љуске</comment>
- <comment xml:lang="sv">skalskript</comment>
- <comment xml:lang="tr">kabuk betiği</comment>
+ <comment>Shell script</comment>
<comment xml:lang="uk">скрипт оболонки</comment>
- <comment xml:lang="vi">văn lệnh trình bao</comment>
- <comment xml:lang="zh_CN">shell 脚本</comment>
- <comment xml:lang="zh_TW">shell 指令稿</comment>
+ <comment xml:lang="sv">Skalskript</comment>
+ <comment xml:lang="ru">Сценарий shell</comment>
+ <comment xml:lang="pl">Skrypt powłoki</comment>
+ <comment xml:lang="it">Script shell</comment>
+ <comment xml:lang="eu">Shell scripta</comment>
+ <comment xml:lang="es">secuencia de órdenes de consola</comment>
+ <comment xml:lang="de">Shell-Skript</comment>
+ <comment xml:lang="be">скрыпт абалонкі</comment>
<sub-class-of type="application/x-executable"/>
<sub-class-of type="text/plain"/>
<alias type="text/x-sh"/>
<generic-icon name="text-x-script"/>
- <magic priority="50">
- <match value="# This is a shell archive" type="string" offset="10"/>
- <match value="/bin/bash" type="string" offset="2:16"/>
- <match value="/bin/nawk" type="string" offset="2:16"/>
- <match value="/bin/zsh" type="string" offset="2:16"/>
- <match value="/bin/sh" type="string" offset="2:16"/>
- <match value="/bin/ksh" type="string" offset="2:16"/>
- <match value="/bin/dash" type="string" offset="2:16"/>
- <match value="/bin/env sh" type="string" offset="2:16"/>
- <match value="/bin/env bash" type="string" offset="2:16"/>
- <match value="/bin/env zsh" type="string" offset="2:16"/>
- <match value="/bin/env ksh" type="string" offset="2:16"/>
+ <magic>
+ <match type="string" value="# This is a shell archive" offset="10"/>
+ <match type="string" value="/bin/bash" offset="2:16"/>
+ <match type="string" value="/bin/nawk" offset="2:16"/>
+ <match type="string" value="/bin/zsh" offset="2:16"/>
+ <match type="string" value="/bin/sh" offset="2:16"/>
+ <match type="string" value="/bin/ksh" offset="2:16"/>
+ <match type="string" value="/bin/dash" offset="2:16"/>
+ <match type="string" value="/bin/env sh" offset="2:16"/>
+ <match type="string" value="/bin/env bash" offset="2:16"/>
+ <match type="string" value="/bin/env zsh" offset="2:16"/>
+ <match type="string" value="/bin/env ksh" offset="2:16"/>
</magic>
<glob pattern="*.sh"/>
</mime-type>
+ <mime-type type="application/x-fishscript">
+ <comment>Fish shell script</comment>
+ <comment xml:lang="uk">скрипт оболонки fish</comment>
+ <comment xml:lang="sv">Fish-skalskript</comment>
+ <comment xml:lang="ru">Сценарий fish shell</comment>
+ <comment xml:lang="pl">Skrypt powłoki Fish</comment>
+ <comment xml:lang="it">Script shell Fish</comment>
+ <comment xml:lang="eu">Fish shell scripta</comment>
+ <comment xml:lang="es">secuencia de órdenes de consola Fish</comment>
+ <comment xml:lang="de">Fish-Shell-Skript</comment>
+ <comment xml:lang="be">скрыпт Fish shell</comment>
+ <sub-class-of type="application/x-executable"/>
+ <sub-class-of type="text/plain"/>
+ <alias type="text/x-fish"/>
+ <generic-icon name="text-x-script"/>
+ <magic>
+ <match type="string" value="/bin/env fish" offset="2:16"/>
+ </magic>
+ <glob pattern="*.fish"/>
+ </mime-type>
+ <mime-type type="application/x-nuscript">
+ <comment>Nu shell script</comment>
+ <comment xml:lang="uk">скрипт оболонки nu</comment>
+ <comment xml:lang="sv">Nu-skalskript</comment>
+ <comment xml:lang="ru">Сценарий nu shell</comment>
+ <comment xml:lang="pl">Skrypt powłoki Nu</comment>
+ <comment xml:lang="it">Script shell Nu</comment>
+ <comment xml:lang="eu">Nu shell scripta</comment>
+ <comment xml:lang="es">secuencia de órdenes de consola Nu</comment>
+ <comment xml:lang="de">Nu-Shell-Skript</comment>
+ <comment xml:lang="be">скрыпт Nu shell</comment>
+ <sub-class-of type="application/x-executable"/>
+ <sub-class-of type="text/plain"/>
+ <alias type="text/x-nu"/>
+ <generic-icon name="text-x-script"/>
+ <magic>
+ <match type="string" value="/bin/env nu" offset="2:16"/>
+ </magic>
+ <glob pattern="*.nu"/>
+ </mime-type>
<mime-type type="application/vnd.adobe.flash.movie">
<comment>Shockwave Flash file</comment>
- <comment xml:lang="ar">ملف Shockwave Flash</comment>
- <comment xml:lang="be@latin">Fajł Shockwave Flash</comment>
- <comment xml:lang="bg">Файл — Shockwave Flash</comment>
- <comment xml:lang="ca">fitxer Shockwave Flash</comment>
- <comment xml:lang="cs">soubor Shockwave Flash</comment>
- <comment xml:lang="da">Shockwave Flash-fil</comment>
- <comment xml:lang="de">Shockwave-Flash-Datei</comment>
- <comment xml:lang="el">Αρχείο Shockwave Flash</comment>
- <comment xml:lang="en_GB">Shockwave Flash file</comment>
- <comment xml:lang="eo">dosiero de Shockwave Flash</comment>
- <comment xml:lang="es">archivo Shockwave Flash</comment>
- <comment xml:lang="eu">Shockwave Flash fitxategia</comment>
- <comment xml:lang="fi">Shockwave Flash -tiedosto</comment>
- <comment xml:lang="fo">Shockwave Flash fíla</comment>
- <comment xml:lang="fr">fichier Shockwave Flash</comment>
- <comment xml:lang="ga">comhad Shockwave Flash</comment>
- <comment xml:lang="gl">ficheiro sockwave Flash</comment>
- <comment xml:lang="he">קובץ של Shockwave Flash</comment>
- <comment xml:lang="hr">Shockwave Flash datoteka</comment>
- <comment xml:lang="hu">Shockwave Flash-fájl</comment>
- <comment xml:lang="ia">File Shockwave Flash</comment>
- <comment xml:lang="id">Berkas Shockwave Flash</comment>
- <comment xml:lang="it">File Shockwave Flash</comment>
- <comment xml:lang="ja">Shockwave Flash ファイル</comment>
- <comment xml:lang="kk">Shockwave Flash файлы</comment>
- <comment xml:lang="ko">Shockwave 플래시 파일</comment>
- <comment xml:lang="lt">Shockwave Flash failas</comment>
- <comment xml:lang="lv">Shockwave Flash datne</comment>
- <comment xml:lang="ms">Fail Shockwave Flash</comment>
- <comment xml:lang="nb">Shockwave Flash-fil</comment>
- <comment xml:lang="nl">Shockwave Flash-bestand</comment>
- <comment xml:lang="nn">Shockwave Flash-fil</comment>
- <comment xml:lang="oc">fichièr Shockwave Flash</comment>
- <comment xml:lang="pl">Plik Shockwave Flash</comment>
- <comment xml:lang="pt">ficheiro Shockwave Flash</comment>
- <comment xml:lang="pt_BR">Arquivo Shockwave Flash</comment>
- <comment xml:lang="ro">Fișier Shockwave Flash</comment>
- <comment xml:lang="ru">Файл Shockwave Flash</comment>
- <comment xml:lang="sk">Súbor Shockwave Flash</comment>
- <comment xml:lang="sl">Datoteka Shockwave Flash</comment>
- <comment xml:lang="sq">File Flash Shockwave</comment>
- <comment xml:lang="sr">Шоквејв Флеш датотека</comment>
- <comment xml:lang="sv">Shockwave Flash-fil</comment>
- <comment xml:lang="tr">Shockwave Flash dosyası</comment>
- <comment xml:lang="uk">файл Shockwave Flash</comment>
- <comment xml:lang="vi">Tập tin Flash Shockwave</comment>
- <comment xml:lang="zh_CN">Shockwave Flash 文件</comment>
<comment xml:lang="zh_TW">Shockwave Flash 檔案</comment>
+ <comment xml:lang="zh_CN">Shockwave Flash 文件</comment>
+ <comment xml:lang="vi">Tập tin Flash Shockwave</comment>
+ <comment xml:lang="uk">файл Shockwave Flash</comment>
+ <comment xml:lang="tr">Shockwave Flash dosyası</comment>
+ <comment xml:lang="sv">Shockwave Flash-fil</comment>
+ <comment xml:lang="sr">Шоквејв Флеш датотека</comment>
+ <comment xml:lang="sq">kartelë Shockwave Flash</comment>
+ <comment xml:lang="sl">Datoteka Shockwave Flash</comment>
+ <comment xml:lang="si">කම්පන තරංග ෆ්ලෑෂ් ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Shockwave Flash</comment>
+ <comment xml:lang="ru">Файл Shockwave Flash</comment>
+ <comment xml:lang="ro">Fișier Shockwave Flash</comment>
+ <comment xml:lang="pt_BR">Arquivo Shockwave Flash</comment>
+ <comment xml:lang="pt">ficheiro Shockwave Flash</comment>
+ <comment xml:lang="pl">Plik Shockwave Flash</comment>
+ <comment xml:lang="oc">fichièr Shockwave Flash</comment>
+ <comment xml:lang="nn">Shockwave Flash-fil</comment>
+ <comment xml:lang="nl">Shockwave Flash-bestand</comment>
+ <comment xml:lang="nb">Shockwave Flash-fil</comment>
+ <comment xml:lang="ms">Fail Shockwave Flash</comment>
+ <comment xml:lang="lv">Shockwave Flash datne</comment>
+ <comment xml:lang="lt">Shockwave Flash failas</comment>
+ <comment xml:lang="ko">Shockwave 플래시 파일</comment>
+ <comment xml:lang="kk">Shockwave Flash файлы</comment>
+ <comment xml:lang="ja">Shockwave Flash ファイル</comment>
+ <comment xml:lang="it">File Shockwave Flash</comment>
+ <comment xml:lang="is">Shockwave Flash skrá</comment>
+ <comment xml:lang="id">Berkas Shockwave Flash</comment>
+ <comment xml:lang="ia">File Shockwave Flash</comment>
+ <comment xml:lang="hu">Shockwave Flash-fájl</comment>
+ <comment xml:lang="hr">Shockwave Flash datoteka</comment>
+ <comment xml:lang="he">קובץ של Shockwave Flash</comment>
+ <comment xml:lang="gl">ficheiro sockwave Flash</comment>
+ <comment xml:lang="ga">comhad Shockwave Flash</comment>
+ <comment xml:lang="fur">file Shockwave Flash</comment>
+ <comment xml:lang="fr">fichier Shockwave Flash</comment>
+ <comment xml:lang="fo">Shockwave Flash fíla</comment>
+ <comment xml:lang="fi">Shockwave Flash -tiedosto</comment>
+ <comment xml:lang="eu">Shockwave Flash fitxategia</comment>
+ <comment xml:lang="es">archivo Shockwave Flash</comment>
+ <comment xml:lang="eo">dosiero de Shockwave Flash</comment>
+ <comment xml:lang="en_GB">Shockwave Flash file</comment>
+ <comment xml:lang="el">Αρχείο Shockwave Flash</comment>
+ <comment xml:lang="de">Shockwave-Flash-Datei</comment>
+ <comment xml:lang="da">Shockwave Flash-fil</comment>
+ <comment xml:lang="cs">soubor Shockwave Flash</comment>
+ <comment xml:lang="ca">fitxer Shockwave Flash</comment>
+ <comment xml:lang="bg">Файл — Shockwave Flash</comment>
+ <comment xml:lang="be@latin">Fajł Shockwave Flash</comment>
+ <comment xml:lang="be">файл Shockwave Flash</comment>
+ <comment xml:lang="ar">ملف Shockwave Flash</comment>
+ <comment xml:lang="af">Shockwave Flash-lêer</comment>
<alias type="application/x-shockwave-flash"/>
<alias type="application/futuresplash"/>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
- <match value="FWS" type="string" offset="0"/>
- <match value="CWS" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="FWS" offset="0"/>
+ <match type="string" value="CWS" offset="0"/>
</magic>
<glob pattern="*.swf"/>
<glob pattern="*.spl"/>
</mime-type>
<mime-type type="application/x-shorten">
-
+ <!-- translators: "Shorten" is the name of an audio codec -->
<comment>Shorten audio</comment>
- <comment xml:lang="ar">Shorten سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Shorten</comment>
- <comment xml:lang="bg">Аудио — Shorten</comment>
- <comment xml:lang="ca">àudio de Shorten</comment>
- <comment xml:lang="cs">zvuk Shorten</comment>
- <comment xml:lang="da">Shortenlyd</comment>
- <comment xml:lang="de">Shorten-Audio</comment>
- <comment xml:lang="el">Ήχος Shorten</comment>
- <comment xml:lang="en_GB">Shorten audio</comment>
- <comment xml:lang="eo">Shorten-sondosiero</comment>
- <comment xml:lang="es">sonido Shorten</comment>
- <comment xml:lang="eu">Shorten audioa</comment>
- <comment xml:lang="fi">Shorten-ääni</comment>
- <comment xml:lang="fo">Shorten ljóður</comment>
- <comment xml:lang="fr">audio Shorten</comment>
- <comment xml:lang="ga">fuaim Shorten</comment>
- <comment xml:lang="gl">son Shorten</comment>
- <comment xml:lang="he">שמע של Shorten</comment>
- <comment xml:lang="hr">Shorten zvučni zapis</comment>
- <comment xml:lang="hu">Shorten hang</comment>
- <comment xml:lang="ia">Audio Shorten</comment>
- <comment xml:lang="id">Audio Shorten</comment>
- <comment xml:lang="it">Audio Shorten</comment>
- <comment xml:lang="ja">Shorten オーディオ</comment>
- <comment xml:lang="kk">Shorten аудиосы</comment>
- <comment xml:lang="ko">Shorten 오디오</comment>
- <comment xml:lang="lt">Shorten garso įrašas</comment>
- <comment xml:lang="lv">Shorten audio</comment>
- <comment xml:lang="nb">Shorten lyd</comment>
- <comment xml:lang="nl">Shorten-audio</comment>
- <comment xml:lang="nn">Shorten-lyd</comment>
- <comment xml:lang="oc">àudio Shorten</comment>
- <comment xml:lang="pl">Plik dźwiękowy Shorten</comment>
- <comment xml:lang="pt">áudio Shorten</comment>
- <comment xml:lang="pt_BR">Áudio Shorten</comment>
- <comment xml:lang="ro">Audio Shorten</comment>
- <comment xml:lang="ru">Аудио Shorten</comment>
- <comment xml:lang="sk">Zvuk Shorten</comment>
- <comment xml:lang="sl">Zvočna datoteka Shorten</comment>
- <comment xml:lang="sq">Audio Shorten</comment>
- <comment xml:lang="sr">Шортен звук</comment>
- <comment xml:lang="sv">Shorten-ljud</comment>
- <comment xml:lang="tr">Kısaltılmış ses</comment>
- <comment xml:lang="uk">звук Shorten</comment>
- <comment xml:lang="vi">Âm thanh Shorten</comment>
- <comment xml:lang="zh_CN">Shorten 音频</comment>
<comment xml:lang="zh_TW">Shorten 音訊</comment>
+ <comment xml:lang="zh_CN">Shorten 音频</comment>
+ <comment xml:lang="vi">Âm thanh Shorten</comment>
+ <comment xml:lang="uk">звук Shorten</comment>
+ <comment xml:lang="tr">Shorten sesi</comment>
+ <comment xml:lang="sv">Shorten-ljud</comment>
+ <comment xml:lang="sr">Шортен звук</comment>
+ <comment xml:lang="sq">audio Shorten</comment>
+ <comment xml:lang="sl">Zvočna datoteka Shorten</comment>
+ <comment xml:lang="si">ශ්රව්ය උපකරණ කෙටි කරන්න</comment>
+ <comment xml:lang="sk">Zvuk Shorten</comment>
+ <comment xml:lang="ru">Аудио Shorten</comment>
+ <comment xml:lang="ro">Audio Shorten</comment>
+ <comment xml:lang="pt_BR">Áudio Shorten</comment>
+ <comment xml:lang="pt">áudio Shorten</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Shorten</comment>
+ <comment xml:lang="oc">àudio Shorten</comment>
+ <comment xml:lang="nn">Shorten-lyd</comment>
+ <comment xml:lang="nl">Shorten-audio</comment>
+ <comment xml:lang="nb">Shorten lyd</comment>
+ <comment xml:lang="lv">Shorten audio</comment>
+ <comment xml:lang="lt">Shorten garso įrašas</comment>
+ <comment xml:lang="ko">Shorten 오디오</comment>
+ <comment xml:lang="kk">Shorten аудиосы</comment>
+ <comment xml:lang="ja">Shorten オーディオ</comment>
+ <comment xml:lang="it">Audio Shorten</comment>
+ <comment xml:lang="is">Shorten hljóðskrá</comment>
+ <comment xml:lang="id">Audio Shorten</comment>
+ <comment xml:lang="ia">Audio Shorten</comment>
+ <comment xml:lang="hu">Shorten hang</comment>
+ <comment xml:lang="hr">Shorten zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Shorten</comment>
+ <comment xml:lang="gl">son Shorten</comment>
+ <comment xml:lang="ga">fuaim Shorten</comment>
+ <comment xml:lang="fur">audio Shorten</comment>
+ <comment xml:lang="fr">audio Shorten</comment>
+ <comment xml:lang="fo">Shorten ljóður</comment>
+ <comment xml:lang="fi">Shorten-ääni</comment>
+ <comment xml:lang="eu">Shorten audioa</comment>
+ <comment xml:lang="es">audio Shorten</comment>
+ <comment xml:lang="eo">Shorten-sondosiero</comment>
+ <comment xml:lang="en_GB">Shorten audio</comment>
+ <comment xml:lang="el">Ήχος Shorten</comment>
+ <comment xml:lang="de">Shorten-Audio</comment>
+ <comment xml:lang="da">Shorten-lyd</comment>
+ <comment xml:lang="cs">zvuk Shorten</comment>
+ <comment xml:lang="ca">àudio de Shorten</comment>
+ <comment xml:lang="bg">Аудио — Shorten</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Shorten</comment>
+ <comment xml:lang="be">аўдыя Shorten</comment>
+ <comment xml:lang="ar">صوت Shorten</comment>
+ <comment xml:lang="af">Shorten-oudio</comment>
<generic-icon name="audio-x-generic"/>
- <magic priority="50">
- <match value="ajkg" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="ajkg" offset="0"/>
</magic>
<glob pattern="*.shn"/>
<alias type="audio/x-shorten"/>
</mime-type>
<mime-type type="application/x-siag">
<comment>Siag spreadsheet</comment>
- <comment xml:lang="ar">جدول Siag</comment>
- <comment xml:lang="be@latin">Raźlikovy arkuš Siag</comment>
- <comment xml:lang="bg">Таблица — Siag</comment>
- <comment xml:lang="ca">full de càlcul Siag</comment>
- <comment xml:lang="cs">sešit Siag</comment>
- <comment xml:lang="da">Siagregneark</comment>
- <comment xml:lang="de">Siag-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Siag</comment>
- <comment xml:lang="en_GB">Siag spreadsheet</comment>
- <comment xml:lang="eo">Siag-kalkultabelo</comment>
- <comment xml:lang="es">hoja de cálculo de Siag</comment>
- <comment xml:lang="eu">Siag kalkulu-orria</comment>
- <comment xml:lang="fi">Siag-taulukko</comment>
- <comment xml:lang="fo">Siag rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Siag</comment>
- <comment xml:lang="ga">scarbhileog Siag</comment>
- <comment xml:lang="gl">folla de cálculo de Siag</comment>
- <comment xml:lang="he">גליון נתונים של Siag</comment>
- <comment xml:lang="hr">Siag proračunska tablica</comment>
- <comment xml:lang="hu">Siag-munkafüzet</comment>
- <comment xml:lang="ia">Folio de calculo Siag</comment>
- <comment xml:lang="id">Lembar sebar Siag</comment>
- <comment xml:lang="it">Foglio di calcolo Siag</comment>
- <comment xml:lang="ja">Siag スプレッドシート</comment>
- <comment xml:lang="kk">Siag электрондық кестесі</comment>
- <comment xml:lang="ko">Siag 스프레드시트</comment>
- <comment xml:lang="lt">Siag skaičialentė</comment>
- <comment xml:lang="lv">Siag izklājlapa</comment>
- <comment xml:lang="ms">Hamparan Siag</comment>
- <comment xml:lang="nb">Siag-regneark</comment>
- <comment xml:lang="nl">Siag-rekenblad</comment>
- <comment xml:lang="nn">Siag-rekneark</comment>
- <comment xml:lang="oc">fuèlh de calcul Siag</comment>
- <comment xml:lang="pl">Arkusz Siag</comment>
- <comment xml:lang="pt">folha de cálculo Siag</comment>
- <comment xml:lang="pt_BR">Planilha do Siag</comment>
- <comment xml:lang="ro">Foaie de calcul Siag</comment>
- <comment xml:lang="ru">Электронная таблица Siag</comment>
- <comment xml:lang="sk">Zošit Siag</comment>
- <comment xml:lang="sl">Preglednica Siag</comment>
- <comment xml:lang="sq">Fletë llogaritjesh Siag</comment>
- <comment xml:lang="sr">Сјаг табела</comment>
- <comment xml:lang="sv">Siag-kalkylblad</comment>
- <comment xml:lang="tr">Siag çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Siag</comment>
- <comment xml:lang="vi">Bảng tính Slag</comment>
- <comment xml:lang="zh_CN">Siag 电子表格</comment>
<comment xml:lang="zh_TW">Siag 試算表</comment>
+ <comment xml:lang="zh_CN">Siag 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Slag</comment>
+ <comment xml:lang="uk">електронна таблиця Siag</comment>
+ <comment xml:lang="tr">Siag hesap çizelgesi</comment>
+ <comment xml:lang="sv">Siag-kalkylblad</comment>
+ <comment xml:lang="sr">Сјаг табела</comment>
+ <comment xml:lang="sq">fletëllogaritje Siag</comment>
+ <comment xml:lang="sl">Preglednica Siag</comment>
+ <comment xml:lang="si">Siag පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Siag</comment>
+ <comment xml:lang="ru">Электронная таблица Siag</comment>
+ <comment xml:lang="ro">Foaie de calcul Siag</comment>
+ <comment xml:lang="pt_BR">Planilha do Siag</comment>
+ <comment xml:lang="pt">folha de cálculo Siag</comment>
+ <comment xml:lang="pl">Arkusz Siag</comment>
+ <comment xml:lang="oc">fuèlh de calcul Siag</comment>
+ <comment xml:lang="nn">Siag-rekneark</comment>
+ <comment xml:lang="nl">Siag-rekenblad</comment>
+ <comment xml:lang="nb">Siag-regneark</comment>
+ <comment xml:lang="ms">Hamparan Siag</comment>
+ <comment xml:lang="lv">Siag izklājlapa</comment>
+ <comment xml:lang="lt">Siag skaičialentė</comment>
+ <comment xml:lang="ko">Siag 스프레드시트</comment>
+ <comment xml:lang="kk">Siag электрондық кестесі</comment>
+ <comment xml:lang="ja">Siag スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Siag</comment>
+ <comment xml:lang="is">Siag töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Siag</comment>
+ <comment xml:lang="ia">Folio de calculo Siag</comment>
+ <comment xml:lang="hu">Siag-munkafüzet</comment>
+ <comment xml:lang="hr">Siag proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Siag</comment>
+ <comment xml:lang="gl">folla de cálculo de Siag</comment>
+ <comment xml:lang="ga">scarbhileog Siag</comment>
+ <comment xml:lang="fur">sfuei di calcul Siag</comment>
+ <comment xml:lang="fr">feuille de calcul Siag</comment>
+ <comment xml:lang="fo">Siag rokniark</comment>
+ <comment xml:lang="fi">Siag-taulukko</comment>
+ <comment xml:lang="eu">Siag kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Siag</comment>
+ <comment xml:lang="eo">Siag-kalkultabelo</comment>
+ <comment xml:lang="en_GB">Siag spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Siag</comment>
+ <comment xml:lang="de">Siag-Tabelle</comment>
+ <comment xml:lang="da">Siagregneark</comment>
+ <comment xml:lang="cs">sešit Siag</comment>
+ <comment xml:lang="ca">full de càlcul Siag</comment>
+ <comment xml:lang="bg">Таблица — Siag</comment>
+ <comment xml:lang="be@latin">Raźlikovy arkuš Siag</comment>
+ <comment xml:lang="be">электронная табліца Siag</comment>
+ <comment xml:lang="ar">جدول Siag</comment>
+ <comment xml:lang="af">Siag-sigblad</comment>
<generic-icon name="x-office-spreadsheet"/>
<glob pattern="*.siag"/>
</mime-type>
<mime-type type="image/x-skencil">
<comment>Skencil document</comment>
- <comment xml:lang="ar">مستند Skencil</comment>
- <comment xml:lang="ast">Documentu de Skencil</comment>
- <comment xml:lang="be@latin">Dakument Skencil</comment>
- <comment xml:lang="bg">Документ — Skencil</comment>
- <comment xml:lang="ca">document Skencil</comment>
- <comment xml:lang="cs">dokument Skencil</comment>
- <comment xml:lang="da">Skencildokument</comment>
- <comment xml:lang="de">Skencil-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Skencil</comment>
- <comment xml:lang="en_GB">Skencil document</comment>
- <comment xml:lang="eo">Skencil-dokumento</comment>
- <comment xml:lang="es">documento de Skencil</comment>
- <comment xml:lang="eu">Skencil dokumentua</comment>
- <comment xml:lang="fi">Skencil-asiakirja</comment>
- <comment xml:lang="fo">Skencil skjal</comment>
- <comment xml:lang="fr">document Skencil</comment>
- <comment xml:lang="ga">cáipéis Skencil</comment>
- <comment xml:lang="gl">documento Skencil</comment>
- <comment xml:lang="he">מסמך Skencil</comment>
- <comment xml:lang="hr">Skencil dokument</comment>
- <comment xml:lang="hu">Skencil-dokumentum</comment>
- <comment xml:lang="ia">Documento Skencil</comment>
- <comment xml:lang="id">Dokumen Skencil</comment>
- <comment xml:lang="it">Documento Skencil</comment>
- <comment xml:lang="ja">Skencil ドキュメント</comment>
- <comment xml:lang="kk">Skencil құжаты</comment>
- <comment xml:lang="ko">Skencil 문서</comment>
- <comment xml:lang="lt">Skencil dokumentas</comment>
- <comment xml:lang="lv">Skencil dokuments</comment>
- <comment xml:lang="nl">Skencil-document</comment>
- <comment xml:lang="nn">Skencil-dokument</comment>
- <comment xml:lang="oc">document Skencil</comment>
- <comment xml:lang="pl">Dokument Skencil</comment>
- <comment xml:lang="pt">documento Skencil</comment>
- <comment xml:lang="pt_BR">Documento do Skencil</comment>
- <comment xml:lang="ro">Document Skencil</comment>
- <comment xml:lang="ru">Документ Skencil</comment>
- <comment xml:lang="sk">Dokument Skencil</comment>
- <comment xml:lang="sl">Dokument Skencil</comment>
- <comment xml:lang="sq">Dokument Skencil</comment>
- <comment xml:lang="sr">Скенцил документ</comment>
- <comment xml:lang="sv">Skencil-dokument</comment>
- <comment xml:lang="tr">Skencil belgesi</comment>
- <comment xml:lang="uk">документ Skencil</comment>
- <comment xml:lang="vi">Tài liệu Skencil</comment>
- <comment xml:lang="zh_CN">Skencil 文档</comment>
<comment xml:lang="zh_TW">Skencil 文件</comment>
+ <comment xml:lang="zh_CN">Skencil 文档</comment>
+ <comment xml:lang="vi">Tài liệu Skencil</comment>
+ <comment xml:lang="uk">документ Skencil</comment>
+ <comment xml:lang="tr">Skencil belgesi</comment>
+ <comment xml:lang="sv">Skencil-dokument</comment>
+ <comment xml:lang="sr">Скенцил документ</comment>
+ <comment xml:lang="sq">dokument Skencil</comment>
+ <comment xml:lang="sl">Dokument Skencil</comment>
+ <comment xml:lang="si">ස්කෙන්සිල් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Skencil</comment>
+ <comment xml:lang="ru">Документ Skencil</comment>
+ <comment xml:lang="ro">Document Skencil</comment>
+ <comment xml:lang="pt_BR">Documento do Skencil</comment>
+ <comment xml:lang="pt">documento Skencil</comment>
+ <comment xml:lang="pl">Dokument Skencil</comment>
+ <comment xml:lang="oc">document Skencil</comment>
+ <comment xml:lang="nn">Skencil-dokument</comment>
+ <comment xml:lang="nl">Skencil-document</comment>
+ <comment xml:lang="lv">Skencil dokuments</comment>
+ <comment xml:lang="lt">Skencil dokumentas</comment>
+ <comment xml:lang="ko">Skencil 문서</comment>
+ <comment xml:lang="kk">Skencil құжаты</comment>
+ <comment xml:lang="ja">Skencil ドキュメント</comment>
+ <comment xml:lang="it">Documento Skencil</comment>
+ <comment xml:lang="is">Skencil skjal</comment>
+ <comment xml:lang="id">Dokumen Skencil</comment>
+ <comment xml:lang="ia">Documento Skencil</comment>
+ <comment xml:lang="hu">Skencil-dokumentum</comment>
+ <comment xml:lang="hr">Skencil dokument</comment>
+ <comment xml:lang="he">מסמך Skencil</comment>
+ <comment xml:lang="gl">documento Skencil</comment>
+ <comment xml:lang="ga">cáipéis Skencil</comment>
+ <comment xml:lang="fur">document Skencil</comment>
+ <comment xml:lang="fr">document Skencil</comment>
+ <comment xml:lang="fo">Skencil skjal</comment>
+ <comment xml:lang="fi">Skencil-asiakirja</comment>
+ <comment xml:lang="eu">Skencil dokumentua</comment>
+ <comment xml:lang="es">documento de Skencil</comment>
+ <comment xml:lang="eo">Skencil-dokumento</comment>
+ <comment xml:lang="en_GB">Skencil document</comment>
+ <comment xml:lang="el">Έγγραφο Skencil</comment>
+ <comment xml:lang="de">Skencil-Dokument</comment>
+ <comment xml:lang="da">Skencildokument</comment>
+ <comment xml:lang="cs">dokument Skencil</comment>
+ <comment xml:lang="ca">document Skencil</comment>
+ <comment xml:lang="bg">Документ — Skencil</comment>
+ <comment xml:lang="be@latin">Dakument Skencil</comment>
+ <comment xml:lang="be">дакумент Skencil</comment>
+ <comment xml:lang="ast">Documentu de Skencil</comment>
+ <comment xml:lang="ar">مستند Skencil</comment>
+ <comment xml:lang="af">Skencil-dokument</comment>
<glob pattern="*.sk"/>
<glob pattern="*.sk1"/>
- <magic priority="50">
- <match value="##Sketch" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="##Sketch" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-slp">
<comment>Stampede package</comment>
- <comment xml:lang="ar">حزمة Stampede</comment>
- <comment xml:lang="az">Stampede paketi</comment>
- <comment xml:lang="be@latin">Pakunak Stampede</comment>
- <comment xml:lang="bg">Пакет — Stampede</comment>
- <comment xml:lang="ca">paquet Stampede</comment>
- <comment xml:lang="cs">balíček Stampede</comment>
- <comment xml:lang="cy">Pecyn Stampede</comment>
- <comment xml:lang="da">Stampedepakke</comment>
- <comment xml:lang="de">Stampede-Paket</comment>
- <comment xml:lang="el">Πακέτο Stampede</comment>
- <comment xml:lang="en_GB">Stampede package</comment>
- <comment xml:lang="eo">Stampede-pakaĵo</comment>
- <comment xml:lang="es">paquete Stampede</comment>
- <comment xml:lang="eu">Stampede paketea</comment>
- <comment xml:lang="fi">Stampede-paketti</comment>
- <comment xml:lang="fo">Stampede pakki</comment>
- <comment xml:lang="fr">paquet Stampede</comment>
- <comment xml:lang="ga">pacáiste Stampede</comment>
- <comment xml:lang="gl">paquete Stampede</comment>
- <comment xml:lang="he">חבילה של Stampede</comment>
- <comment xml:lang="hr">Stampede paket</comment>
- <comment xml:lang="hu">Stampede-csomag</comment>
- <comment xml:lang="ia">Pacchetto Stampede</comment>
- <comment xml:lang="id">Paket Stampede</comment>
- <comment xml:lang="it">Pacchetto Stampede</comment>
- <comment xml:lang="ja">Stampede パッケージ</comment>
- <comment xml:lang="kk">Stampede дестесі</comment>
- <comment xml:lang="ko">Stampete 패키지</comment>
- <comment xml:lang="lt">Stampede paketas</comment>
- <comment xml:lang="lv">Stampede pakotne</comment>
- <comment xml:lang="ms">Pakej Stampede</comment>
- <comment xml:lang="nb">Stampede-pakke</comment>
- <comment xml:lang="nl">Stampede-pakket</comment>
- <comment xml:lang="nn">Stampede-pakke</comment>
- <comment xml:lang="oc">paquet Stampede</comment>
- <comment xml:lang="pl">Pakiet Stampede</comment>
- <comment xml:lang="pt">pacote Stampede</comment>
- <comment xml:lang="pt_BR">Pacote Stampede</comment>
- <comment xml:lang="ro">Pachet Stampede</comment>
- <comment xml:lang="ru">Пакет Stampede</comment>
- <comment xml:lang="sk">Balíček Stampede</comment>
- <comment xml:lang="sl">Datoteka paketa Stampede</comment>
- <comment xml:lang="sq">Paketë Stampede</comment>
- <comment xml:lang="sr">Стампеде пакет</comment>
- <comment xml:lang="sv">Stampede-paket</comment>
- <comment xml:lang="tr">Stampede paketi</comment>
- <comment xml:lang="uk">пакунок Stampede</comment>
- <comment xml:lang="vi">Gói Stampede</comment>
- <comment xml:lang="zh_CN">Stampede 软件包</comment>
<comment xml:lang="zh_TW">Stampede 軟體包</comment>
+ <comment xml:lang="zh_CN">Stampede 软件包</comment>
+ <comment xml:lang="vi">Gói Stampede</comment>
+ <comment xml:lang="uk">пакунок Stampede</comment>
+ <comment xml:lang="tr">Stampede paketi</comment>
+ <comment xml:lang="sv">Stampede-paket</comment>
+ <comment xml:lang="sr">Стампеде пакет</comment>
+ <comment xml:lang="sq">paketë Stampede</comment>
+ <comment xml:lang="sl">Datoteka paketa Stampede</comment>
+ <comment xml:lang="si">මුද්දර පැකේජය</comment>
+ <comment xml:lang="sk">Balíček Stampede</comment>
+ <comment xml:lang="ru">Пакет Stampede</comment>
+ <comment xml:lang="ro">Pachet Stampede</comment>
+ <comment xml:lang="pt_BR">Pacote Stampede</comment>
+ <comment xml:lang="pt">pacote Stampede</comment>
+ <comment xml:lang="pl">Pakiet Stampede</comment>
+ <comment xml:lang="oc">paquet Stampede</comment>
+ <comment xml:lang="nn">Stampede-pakke</comment>
+ <comment xml:lang="nl">Stampede-pakket</comment>
+ <comment xml:lang="nb">Stampede-pakke</comment>
+ <comment xml:lang="ms">Pakej Stampede</comment>
+ <comment xml:lang="lv">Stampede pakotne</comment>
+ <comment xml:lang="lt">Stampede paketas</comment>
+ <comment xml:lang="ko">Stampete 패키지</comment>
+ <comment xml:lang="kk">Stampede дестесі</comment>
+ <comment xml:lang="ja">Stampede パッケージ</comment>
+ <comment xml:lang="it">Pacchetto Stampede</comment>
+ <comment xml:lang="is">Stampede pakki</comment>
+ <comment xml:lang="id">Paket Stampede</comment>
+ <comment xml:lang="ia">Pacchetto Stampede</comment>
+ <comment xml:lang="hu">Stampede-csomag</comment>
+ <comment xml:lang="hr">Stampede paket</comment>
+ <comment xml:lang="he">חבילה של Stampede</comment>
+ <comment xml:lang="gl">paquete Stampede</comment>
+ <comment xml:lang="ga">pacáiste Stampede</comment>
+ <comment xml:lang="fur">pachet Stampede</comment>
+ <comment xml:lang="fr">paquet Stampede</comment>
+ <comment xml:lang="fo">Stampede pakki</comment>
+ <comment xml:lang="fi">Stampede-paketti</comment>
+ <comment xml:lang="eu">Stampede paketea</comment>
+ <comment xml:lang="es">paquete Stampede</comment>
+ <comment xml:lang="eo">Stampede-pakaĵo</comment>
+ <comment xml:lang="en_GB">Stampede package</comment>
+ <comment xml:lang="el">Πακέτο Stampede</comment>
+ <comment xml:lang="de">Stampede-Paket</comment>
+ <comment xml:lang="da">Stampedepakke</comment>
+ <comment xml:lang="cy">Pecyn Stampede</comment>
+ <comment xml:lang="cs">balíček Stampede</comment>
+ <comment xml:lang="ca">paquet Stampede</comment>
+ <comment xml:lang="bg">Пакет — Stampede</comment>
+ <comment xml:lang="be@latin">Pakunak Stampede</comment>
+ <comment xml:lang="be">пакет Stampede</comment>
+ <comment xml:lang="az">Stampede paketi</comment>
+ <comment xml:lang="ar">حزمة Stampede</comment>
+ <comment xml:lang="af">Stampede-pakket</comment>
<generic-icon name="package-x-generic"/>
</mime-type>
<mime-type type="application/x-sg1000-rom">
<comment>SG-1000 ROM</comment>
- <comment xml:lang="ca">ROM de SG-1000</comment>
- <comment xml:lang="cs">ROM pro SG-1000</comment>
- <comment xml:lang="da">SG-1000 ROM</comment>
- <comment xml:lang="de">SG-1000 ROM</comment>
- <comment xml:lang="en_GB">SG-1000 ROM</comment>
- <comment xml:lang="es">ROM de SG-1000</comment>
- <comment xml:lang="eu">SG-1000 ROM</comment>
- <comment xml:lang="fi">SG-1000 -ROM</comment>
- <comment xml:lang="fr">ROM SG-1000</comment>
- <comment xml:lang="ga">ROM SG-1000</comment>
- <comment xml:lang="hr">SG-1000 ROM</comment>
- <comment xml:lang="hu">SG-1000 ROM</comment>
- <comment xml:lang="id">ROM SG-1000</comment>
- <comment xml:lang="it">ROM SG-1000</comment>
- <comment xml:lang="kk">SG-1000 ROM</comment>
- <comment xml:lang="ko">SG-1000 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli SG-1000</comment>
- <comment xml:lang="pt_BR">ROM de SG-1000</comment>
- <comment xml:lang="ru">SG-1000 ROM</comment>
- <comment xml:lang="sk">ROM pre SG-1000</comment>
- <comment xml:lang="sr">СГ-1000 РОМ</comment>
- <comment xml:lang="sv">SG-1000-rom</comment>
- <comment xml:lang="tr">SG-1000 ROM</comment>
- <comment xml:lang="uk">ППП SG-1000</comment>
- <comment xml:lang="zh_CN">SG-1000 ROM</comment>
<comment xml:lang="zh_TW">SG-1000 ROM</comment>
+ <comment xml:lang="zh_CN">SG-1000 ROM</comment>
+ <comment xml:lang="uk">ППП SG-1000</comment>
+ <comment xml:lang="tr">SG-1000 ROM</comment>
+ <comment xml:lang="sv">SG-1000-rom</comment>
+ <comment xml:lang="sr">СГ-1000 РОМ</comment>
+ <comment xml:lang="sq">ROM SG-1000</comment>
+ <comment xml:lang="sl">SG-1000 ROM</comment>
+ <comment xml:lang="si">SG-1000 ROM</comment>
+ <comment xml:lang="sk">ROM pre SG-1000</comment>
+ <comment xml:lang="ru">SG-1000 ROM</comment>
+ <comment xml:lang="pt_BR">ROM de SG-1000</comment>
+ <comment xml:lang="pl">Plik ROM konsoli SG-1000</comment>
+ <comment xml:lang="nl">SG-1000-ROM</comment>
+ <comment xml:lang="ko">SG-1000 롬</comment>
+ <comment xml:lang="kk">SG-1000 ROM</comment>
+ <comment xml:lang="ja">SG-1000 ROM</comment>
+ <comment xml:lang="it">ROM SG-1000</comment>
+ <comment xml:lang="is">SG-1000 ROM</comment>
+ <comment xml:lang="id">ROM SG-1000</comment>
+ <comment xml:lang="hu">SG-1000 ROM</comment>
+ <comment xml:lang="hr">SG-1000 ROM</comment>
+ <comment xml:lang="he">ROM של SG-1000</comment>
+ <comment xml:lang="ga">ROM SG-1000</comment>
+ <comment xml:lang="fur">ROM SG-1000</comment>
+ <comment xml:lang="fr">ROM SG-1000</comment>
+ <comment xml:lang="fi">SG-1000 -ROM</comment>
+ <comment xml:lang="eu">SG-1000 ROM</comment>
+ <comment xml:lang="es">ROM de SG-1000</comment>
+ <comment xml:lang="en_GB">SG-1000 ROM</comment>
+ <comment xml:lang="de">SG-1000-ROM</comment>
+ <comment xml:lang="da">SG-1000-ROM</comment>
+ <comment xml:lang="cs">ROM pro SG-1000</comment>
+ <comment xml:lang="ca">ROM de SG-1000</comment>
+ <comment xml:lang="bg">ROM — SG-1000</comment>
+ <comment xml:lang="be">SG-1000 ROM</comment>
+ <comment xml:lang="ar">روم SG-1000</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.sg"/>
</mime-type>
<mime-type type="application/x-sms-rom">
-
+ <!-- Translate this to "Master System/Mark III" if the console was known as such in your locale (probably only in Japan) -->
<comment>Master System ROM</comment>
- <comment xml:lang="ca">ROM de Master System</comment>
- <comment xml:lang="cs">ROM pro Master System</comment>
- <comment xml:lang="da">Master System ROM</comment>
- <comment xml:lang="de">Master System ROM</comment>
- <comment xml:lang="en_GB">Master System ROM</comment>
- <comment xml:lang="es">ROM de Master System</comment>
- <comment xml:lang="eu">Master System ROM</comment>
- <comment xml:lang="fi">Master System -ROM</comment>
- <comment xml:lang="fr">ROM Master System</comment>
- <comment xml:lang="ga">ROM Master System</comment>
- <comment xml:lang="hr">Master System ROM</comment>
- <comment xml:lang="hu">Master System ROM</comment>
- <comment xml:lang="id">ROM Master System</comment>
- <comment xml:lang="it">ROM Master System</comment>
- <comment xml:lang="kk">Master System ROM</comment>
- <comment xml:lang="ko">마스터 시스템 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli SMS</comment>
- <comment xml:lang="pt_BR">ROM de Master System</comment>
- <comment xml:lang="ru">Master System ROM</comment>
- <comment xml:lang="sk">ROM pre Master System</comment>
- <comment xml:lang="sr">Мастер Систем РОМ</comment>
- <comment xml:lang="sv">Master System-rom</comment>
- <comment xml:lang="tr">Master System ROM</comment>
- <comment xml:lang="uk">ППП Master System</comment>
- <comment xml:lang="zh_CN">Master System ROM</comment>
<comment xml:lang="zh_TW">Master System ROM</comment>
+ <comment xml:lang="zh_CN">Master System ROM</comment>
+ <comment xml:lang="uk">ППП Master System</comment>
+ <comment xml:lang="tr">Master System ROM</comment>
+ <comment xml:lang="sv">Master System-rom</comment>
+ <comment xml:lang="sr">Мастер Систем РОМ</comment>
+ <comment xml:lang="sq">ROM Master System</comment>
+ <comment xml:lang="si">Master System ROM</comment>
+ <comment xml:lang="sk">ROM pre Master System</comment>
+ <comment xml:lang="ru">Master System ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Master System</comment>
+ <comment xml:lang="pl">Plik ROM konsoli SMS</comment>
+ <comment xml:lang="nl">Master System-ROM</comment>
+ <comment xml:lang="ko">마스터 시스템 롬</comment>
+ <comment xml:lang="kk">Master System ROM</comment>
+ <comment xml:lang="ja">マスターシステム ROM</comment>
+ <comment xml:lang="it">ROM Master System</comment>
+ <comment xml:lang="is">Master System ROM</comment>
+ <comment xml:lang="id">ROM Master System</comment>
+ <comment xml:lang="hu">Master System ROM</comment>
+ <comment xml:lang="hr">Master System ROM</comment>
+ <comment xml:lang="he">ROM של Master System</comment>
+ <comment xml:lang="ga">ROM Master System</comment>
+ <comment xml:lang="fur">ROM Master System</comment>
+ <comment xml:lang="fr">ROM Master System</comment>
+ <comment xml:lang="fi">Master System -ROM</comment>
+ <comment xml:lang="eu">Master System ROM</comment>
+ <comment xml:lang="es">ROM de Master System</comment>
+ <comment xml:lang="en_GB">Master System ROM</comment>
+ <comment xml:lang="de">Master-System-ROM</comment>
+ <comment xml:lang="da">Master System-ROM</comment>
+ <comment xml:lang="cs">ROM pro Master System</comment>
+ <comment xml:lang="ca">ROM de Master System</comment>
+ <comment xml:lang="bg">ROM — Master System</comment>
+ <comment xml:lang="be">Master System ROM</comment>
+ <comment xml:lang="ar">روم Master System</comment>
<generic-icon name="application-x-executable"/>
-
+ <!-- Disabled, the magic would be too far into the file
+ <magic>
+ <match type="string" value="TMR SEGA" offset="32752">
+ <match type="byte" value="0x30" offset="32767" mask="0xf0"/>
+ <match type="byte" value="0x40" offset="32767" mask="0xf0"/>
+ </match>
+ </magic> -->
<glob pattern="*.sms"/>
</mime-type>
<mime-type type="application/x-gamegear-rom">
<comment>Game Gear ROM</comment>
- <comment xml:lang="ca">ROM de Game Gear</comment>
- <comment xml:lang="cs">ROM pro Game Gear</comment>
- <comment xml:lang="da">Game Gear ROM</comment>
- <comment xml:lang="de">Game Gear ROM</comment>
- <comment xml:lang="en_GB">Game Gear ROM</comment>
- <comment xml:lang="es">ROM de Game Gear</comment>
- <comment xml:lang="eu">Game Gear ROM</comment>
- <comment xml:lang="fi">Game Gear -ROM</comment>
- <comment xml:lang="fr">ROM Game Gear</comment>
- <comment xml:lang="ga">ROM Game Gear</comment>
- <comment xml:lang="hr">Game Gear ROM</comment>
- <comment xml:lang="hu">Game Gear ROM</comment>
- <comment xml:lang="id">ROM Game Gear</comment>
- <comment xml:lang="it">ROM Game Gear</comment>
- <comment xml:lang="kk">Game Gear ROM</comment>
- <comment xml:lang="ko">게임 기어 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Game Gear</comment>
- <comment xml:lang="pt_BR">ROM de Game Gear</comment>
- <comment xml:lang="ru">Game Gear ROM</comment>
- <comment xml:lang="sk">ROM pre Game Gear</comment>
- <comment xml:lang="sr">Гејм Гир РОМ</comment>
- <comment xml:lang="sv">Game Gear-rom</comment>
- <comment xml:lang="tr">Game Gear ROM</comment>
- <comment xml:lang="uk">ППП Game Gear</comment>
- <comment xml:lang="zh_CN">Game Gear ROM</comment>
<comment xml:lang="zh_TW">Game Gear ROM</comment>
+ <comment xml:lang="zh_CN">Game Gear ROM</comment>
+ <comment xml:lang="uk">ППП Game Gear</comment>
+ <comment xml:lang="tr">Game Gear ROM</comment>
+ <comment xml:lang="sv">Game Gear-rom</comment>
+ <comment xml:lang="sr">Гејм Гир РОМ</comment>
+ <comment xml:lang="sq">ROM Game Gear</comment>
+ <comment xml:lang="sl">Game Gear ROM</comment>
+ <comment xml:lang="si">Game Gear ROM</comment>
+ <comment xml:lang="sk">ROM pre Game Gear</comment>
+ <comment xml:lang="ru">Game Gear ROM</comment>
+ <comment xml:lang="pt_BR">ROM de Game Gear</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Game Gear</comment>
+ <comment xml:lang="nl">Game Gear-ROM</comment>
+ <comment xml:lang="ko">게임 기어 롬</comment>
+ <comment xml:lang="kk">Game Gear ROM</comment>
+ <comment xml:lang="ja">ゲームギア ROM</comment>
+ <comment xml:lang="it">ROM Game Gear</comment>
+ <comment xml:lang="is">Game Gear ROM</comment>
+ <comment xml:lang="id">ROM Game Gear</comment>
+ <comment xml:lang="hu">Game Gear ROM</comment>
+ <comment xml:lang="hr">Game Gear ROM</comment>
+ <comment xml:lang="he">ROM של Game Gear</comment>
+ <comment xml:lang="ga">ROM Game Gear</comment>
+ <comment xml:lang="fur">ROM Game Gear</comment>
+ <comment xml:lang="fr">ROM Game Gear</comment>
+ <comment xml:lang="fi">Game Gear -ROM</comment>
+ <comment xml:lang="eu">Game Gear ROM</comment>
+ <comment xml:lang="es">ROM de Game Gear</comment>
+ <comment xml:lang="en_GB">Game Gear ROM</comment>
+ <comment xml:lang="de">Game-Gear-ROM</comment>
+ <comment xml:lang="da">Game Gear-ROM</comment>
+ <comment xml:lang="cs">ROM pro Game Gear</comment>
+ <comment xml:lang="ca">ROM de Game Gear</comment>
+ <comment xml:lang="bg">ROM — Game Gear</comment>
+ <comment xml:lang="be">Game Gear ROM</comment>
+ <comment xml:lang="ar">روم جيم جير</comment>
<generic-icon name="application-x-executable"/>
-
+ <!-- Disabled, the magic would be too far into the file
+ <magic>
+ <match type="string" value="TMR SEGA" offset="32752">
+ <match type="byte" value="0x50" offset="32767" mask="0xf0"/>
+ <match type="byte" value="0x60" offset="32767" mask="0xf0"/>
+ <match type="byte" value="0x70" offset="32767" mask="0xf0"/>
+ </match>
+ </magic> -->
<glob pattern="*.gg"/>
</mime-type>
<mime-type type="application/vnd.nintendo.snes.rom">
-
+ <!-- Translate this as Super Famicom (in Far East Asia) or Super Nintendo (in Europe) if the console was known as such in your locale -->
<comment>Super NES ROM</comment>
- <comment xml:lang="ar">Super NES ROM</comment>
- <comment xml:lang="be@latin">Super Nintendo ROM</comment>
- <comment xml:lang="bg">ROM — Super NES</comment>
- <comment xml:lang="ca">ROM de Super NES</comment>
- <comment xml:lang="cs">ROM pro Super Nintendo</comment>
- <comment xml:lang="da">Super NES-rom</comment>
- <comment xml:lang="de">Super NES ROM</comment>
- <comment xml:lang="el">Super NES ROM</comment>
- <comment xml:lang="en_GB">Super NES ROM</comment>
- <comment xml:lang="es">ROM de Super NES</comment>
- <comment xml:lang="eu">Super Nintendo-ko ROMa</comment>
- <comment xml:lang="fi">Super Nintendo -ROM</comment>
- <comment xml:lang="fo">Super NES ROM</comment>
- <comment xml:lang="fr">ROM Super Nintendo</comment>
- <comment xml:lang="ga">ROM Super NES</comment>
- <comment xml:lang="gl">ROM de Super NES</comment>
- <comment xml:lang="he">ROM של Super NES</comment>
- <comment xml:lang="hr">Super NES ROM</comment>
- <comment xml:lang="hu">Super NES ROM</comment>
- <comment xml:lang="ia">ROM pro Super Nintendo</comment>
- <comment xml:lang="id">Memori baca-saja Super Nintendo</comment>
- <comment xml:lang="it">ROM Super Nintendo</comment>
- <comment xml:lang="ja">スーパーファミコン ROM</comment>
- <comment xml:lang="kk">Super NES ROM</comment>
- <comment xml:lang="ko">수퍼 NES 롬</comment>
- <comment xml:lang="lt">Super NES ROM</comment>
- <comment xml:lang="lv">Super NES ROM</comment>
- <comment xml:lang="nb">Super Nintendo ROM</comment>
- <comment xml:lang="nl">Super Nintendo</comment>
- <comment xml:lang="nn">Super NES-ROM</comment>
- <comment xml:lang="oc">ROM Super Nintendo</comment>
- <comment xml:lang="pl">Plik ROM konsoli SNES</comment>
- <comment xml:lang="pt">ROM Super Nintendo</comment>
- <comment xml:lang="pt_BR">ROM de Super Nintendo</comment>
- <comment xml:lang="ro">ROM Super Nintendo</comment>
- <comment xml:lang="ru">Super NES ROM</comment>
- <comment xml:lang="sk">ROM pre Super Nintendo</comment>
- <comment xml:lang="sl">Bralni pomnilnik Super NES</comment>
- <comment xml:lang="sq">ROM Super NES</comment>
- <comment xml:lang="sr">Супер НЕС РОМ</comment>
- <comment xml:lang="sv">Super NES-rom</comment>
- <comment xml:lang="tr">Super NES ROM</comment>
- <comment xml:lang="uk">ППП Super NES</comment>
- <comment xml:lang="vi">ROM Super Nintendo</comment>
- <comment xml:lang="zh_CN">Super NES ROM</comment>
<comment xml:lang="zh_TW">超級任天堂 ROM</comment>
+ <comment xml:lang="zh_CN">Super NES ROM</comment>
+ <comment xml:lang="vi">ROM Super Nintendo</comment>
+ <comment xml:lang="uk">ППП Super NES</comment>
+ <comment xml:lang="tr">Super NES ROM</comment>
+ <comment xml:lang="sv">Super NES-rom</comment>
+ <comment xml:lang="sr">Супер НЕС РОМ</comment>
+ <comment xml:lang="sq">ROM Super NES</comment>
+ <comment xml:lang="sl">Bralni pomnilnik Super NES</comment>
+ <comment xml:lang="si">සුපිරි NES ROM</comment>
+ <comment xml:lang="sk">ROM pre Super Nintendo</comment>
+ <comment xml:lang="ru">Super NES ROM</comment>
+ <comment xml:lang="ro">ROM Super Nintendo</comment>
+ <comment xml:lang="pt_BR">ROM de Super Nintendo</comment>
+ <comment xml:lang="pt">ROM Super Nintendo</comment>
+ <comment xml:lang="pl">Plik ROM konsoli SNES</comment>
+ <comment xml:lang="oc">ROM Super Nintendo</comment>
+ <comment xml:lang="nn">Super NES-ROM</comment>
+ <comment xml:lang="nl">Super Nintendo-ROM</comment>
+ <comment xml:lang="nb">Super Nintendo ROM</comment>
+ <comment xml:lang="lv">Super NES ROM</comment>
+ <comment xml:lang="lt">Super NES ROM</comment>
+ <comment xml:lang="ko">수퍼 NES 롬</comment>
+ <comment xml:lang="kk">Super NES ROM</comment>
+ <comment xml:lang="ja">スーパーファミコン ROM</comment>
+ <comment xml:lang="it">ROM Super Nintendo</comment>
+ <comment xml:lang="is">Super NES ROM</comment>
+ <comment xml:lang="id">Memori baca-saja Super Nintendo</comment>
+ <comment xml:lang="ia">ROM pro Super Nintendo</comment>
+ <comment xml:lang="hu">Super NES ROM</comment>
+ <comment xml:lang="hr">Super NES ROM</comment>
+ <comment xml:lang="he">ROM של Super NES</comment>
+ <comment xml:lang="gl">ROM de Super NES</comment>
+ <comment xml:lang="ga">ROM Super NES</comment>
+ <comment xml:lang="fur">ROM Super Nintendo</comment>
+ <comment xml:lang="fr">ROM Super Nintendo</comment>
+ <comment xml:lang="fo">Super NES ROM</comment>
+ <comment xml:lang="fi">Super Nintendo -ROM</comment>
+ <comment xml:lang="eu">Super Nintendo-ko ROMa</comment>
+ <comment xml:lang="es">ROM de Super NES</comment>
+ <comment xml:lang="en_GB">Super NES ROM</comment>
+ <comment xml:lang="el">Super NES ROM</comment>
+ <comment xml:lang="de">Super-Nintendo-ROM</comment>
+ <comment xml:lang="da">Super NES-ROM</comment>
+ <comment xml:lang="cs">ROM pro Super Nintendo</comment>
+ <comment xml:lang="ca">ROM de Super NES</comment>
+ <comment xml:lang="bg">ROM — Super NES</comment>
+ <comment xml:lang="be@latin">Super Nintendo ROM</comment>
+ <comment xml:lang="be">Super Nintendo ROM</comment>
+ <comment xml:lang="ar">روم Super NES</comment>
<generic-icon name="application-x-executable"/>
<alias type="application/x-snes-rom"/>
<glob pattern="*.sfc"/>
@@ -19972,855 +21716,947 @@
</mime-type>
<mime-type type="application/x-stuffit">
<comment>StuffIt archive</comment>
- <comment xml:lang="ar">أرشيف StuffIt</comment>
- <comment xml:lang="be@latin">Archiŭ StuffIt</comment>
- <comment xml:lang="bg">Архив — StuffIt</comment>
- <comment xml:lang="ca">arxiu StuffIt</comment>
- <comment xml:lang="cs">archiv StuffIt</comment>
- <comment xml:lang="da">StuffIt-arkiv</comment>
- <comment xml:lang="de">StuffIt-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο StuffIt</comment>
- <comment xml:lang="en_GB">StuffIt archive</comment>
- <comment xml:lang="eo">StuffIt-arkivo</comment>
- <comment xml:lang="es">archivador de StuffIt</comment>
- <comment xml:lang="eu">StuffIt artxiboa</comment>
- <comment xml:lang="fi">StuffIt-arkisto</comment>
- <comment xml:lang="fo">StuffIt skjalasavn</comment>
- <comment xml:lang="fr">archive StuffIt</comment>
- <comment xml:lang="ga">cartlann StuffIt</comment>
- <comment xml:lang="gl">arquivo StuffIt</comment>
- <comment xml:lang="he">ארכיון של StuffIt</comment>
- <comment xml:lang="hr">StuffIt arhiva</comment>
- <comment xml:lang="hu">StuffIt-archívum</comment>
- <comment xml:lang="ia">Archivo StuffIt</comment>
- <comment xml:lang="id">Arsip StuffIt</comment>
- <comment xml:lang="it">Archivio StuffIt</comment>
- <comment xml:lang="ja">StuffIt アーカイブ</comment>
- <comment xml:lang="kk">StuffIt архиві</comment>
- <comment xml:lang="ko">StuffIt 압축 파일</comment>
- <comment xml:lang="lt">StuffIt archyvas</comment>
- <comment xml:lang="lv">StuffIt arhīvs</comment>
- <comment xml:lang="nb">StuffIt arkiv</comment>
- <comment xml:lang="nl">StuffIt-archief</comment>
- <comment xml:lang="nn">StuffIt-arkiv</comment>
- <comment xml:lang="oc">archiu StuffIt</comment>
- <comment xml:lang="pl">Archiwum StuffIt</comment>
- <comment xml:lang="pt">arquivo StuffIt</comment>
- <comment xml:lang="pt_BR">Pacote StuffIt</comment>
- <comment xml:lang="ro">Arhivă StuffIt</comment>
- <comment xml:lang="ru">Архив StuffIt</comment>
- <comment xml:lang="sk">Archív StuffIt</comment>
- <comment xml:lang="sl">Datoteka arhiva StuffIt</comment>
- <comment xml:lang="sq">Arkiv StuffIt</comment>
- <comment xml:lang="sr">Стаф Ит архива</comment>
- <comment xml:lang="sv">StuffIt-arkiv </comment>
- <comment xml:lang="tr">StuffIt arşivi</comment>
- <comment xml:lang="uk">архів StuffIt</comment>
- <comment xml:lang="vi">Kho nén Stuffit</comment>
- <comment xml:lang="zh_CN">Macintosh StuffIt 归档文件</comment>
<comment xml:lang="zh_TW">StuffIt 封存檔</comment>
+ <comment xml:lang="zh_CN">Macintosh StuffIt 归档文件</comment>
+ <comment xml:lang="vi">Kho nén Stuffit</comment>
+ <comment xml:lang="uk">архів StuffIt</comment>
+ <comment xml:lang="tr">StuffIt arşivi</comment>
+ <comment xml:lang="sv">StuffIt-arkiv </comment>
+ <comment xml:lang="sr">Стаф Ит архива</comment>
+ <comment xml:lang="sq">arkiv StuffIt</comment>
+ <comment xml:lang="sl">Datoteka arhiva StuffIt</comment>
+ <comment xml:lang="si">StuffIt ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív StuffIt</comment>
+ <comment xml:lang="ru">Архив StuffIt</comment>
+ <comment xml:lang="ro">Arhivă StuffIt</comment>
+ <comment xml:lang="pt_BR">Pacote StuffIt</comment>
+ <comment xml:lang="pt">arquivo StuffIt</comment>
+ <comment xml:lang="pl">Archiwum StuffIt</comment>
+ <comment xml:lang="oc">archiu StuffIt</comment>
+ <comment xml:lang="nn">StuffIt-arkiv</comment>
+ <comment xml:lang="nl">StuffIt-archief</comment>
+ <comment xml:lang="nb">StuffIt arkiv</comment>
+ <comment xml:lang="lv">StuffIt arhīvs</comment>
+ <comment xml:lang="lt">StuffIt archyvas</comment>
+ <comment xml:lang="ko">StuffIt 압축 파일</comment>
+ <comment xml:lang="kk">StuffIt архиві</comment>
+ <comment xml:lang="ja">StuffIt アーカイブ</comment>
+ <comment xml:lang="it">Archivio StuffIt</comment>
+ <comment xml:lang="is">StuffIt safnskrá</comment>
+ <comment xml:lang="id">Arsip StuffIt</comment>
+ <comment xml:lang="ia">Archivo StuffIt</comment>
+ <comment xml:lang="hu">StuffIt-archívum</comment>
+ <comment xml:lang="hr">StuffIt arhiva</comment>
+ <comment xml:lang="he">ארכיון של StuffIt</comment>
+ <comment xml:lang="gl">arquivo StuffIt</comment>
+ <comment xml:lang="ga">cartlann StuffIt</comment>
+ <comment xml:lang="fur">archivi StuffIt</comment>
+ <comment xml:lang="fr">archive StuffIt</comment>
+ <comment xml:lang="fo">StuffIt skjalasavn</comment>
+ <comment xml:lang="fi">StuffIt-arkisto</comment>
+ <comment xml:lang="eu">StuffIt artxiboa</comment>
+ <comment xml:lang="es">archivador de StuffIt</comment>
+ <comment xml:lang="eo">StuffIt-arkivo</comment>
+ <comment xml:lang="en_GB">StuffIt archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο StuffIt</comment>
+ <comment xml:lang="de">StuffIt-Archiv</comment>
+ <comment xml:lang="da">StuffIt-arkiv</comment>
+ <comment xml:lang="cs">archiv StuffIt</comment>
+ <comment xml:lang="ca">arxiu StuffIt</comment>
+ <comment xml:lang="bg">Архив — StuffIt</comment>
+ <comment xml:lang="be@latin">Archiŭ StuffIt</comment>
+ <comment xml:lang="be">архіў StuffIt</comment>
+ <comment xml:lang="ar">أرشيف StuffIt</comment>
+ <comment xml:lang="af">StuffIt-argief</comment>
<generic-icon name="package-x-generic"/>
<alias type="application/stuffit"/>
<alias type="application/x-sit"/>
<magic priority="60">
- <match value="StuffIt " type="string" offset="0"/>
- <match value="SIT!" type="string" offset="0"/>
+ <match type="string" value="StuffIt " offset="0"/>
+ <match type="string" value="SIT!" offset="0"/>
</magic>
<glob pattern="*.sit"/>
</mime-type>
+ <mime-type type="application/x-stuffitx">
+ <comment>StuffIt X archive</comment>
+ <comment xml:lang="uk">архів StuffIt X</comment>
+ <comment xml:lang="sv">StuffIt X-arkiv </comment>
+ <comment xml:lang="ru">Архив StuffIt X</comment>
+ <comment xml:lang="pl">Archiwum StuffIt X</comment>
+ <comment xml:lang="it">Archivio StuffIt X</comment>
+ <comment xml:lang="eu">StuffIt X artxiboa</comment>
+ <comment xml:lang="es">archivador de StuffIt X</comment>
+ <comment xml:lang="de">StuffIt-X-Archiv</comment>
+ <comment xml:lang="be">архіў StuffIt X</comment>
+ <generic-icon name="package-x-generic"/>
+ <alias type="application/x-sitx"/>
+ <magic priority="60">
+ <match type="string" value="StuffIt!" offset="0"/>
+ </magic>
+ <glob pattern="*.sitx"/>
+ </mime-type>
<mime-type type="application/x-subrip">
<comment>SubRip subtitles</comment>
- <comment xml:lang="ar">ترجمات SubRip</comment>
- <comment xml:lang="be@latin">Subtytry SubRip</comment>
- <comment xml:lang="bg">Субтитри — SubRip</comment>
- <comment xml:lang="ca">subtítols SubRip</comment>
- <comment xml:lang="cs">titulky SubRip</comment>
- <comment xml:lang="da">SubRip-undertekster</comment>
- <comment xml:lang="de">SubRip-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι SubRip</comment>
- <comment xml:lang="en_GB">SubRip subtitles</comment>
- <comment xml:lang="eo">SubRip-subtekstoj</comment>
- <comment xml:lang="es">subtítulos SubRip</comment>
- <comment xml:lang="eu">SubRip azpitituluak</comment>
- <comment xml:lang="fi">SubRip-tekstitykset</comment>
- <comment xml:lang="fo">SubRip undirtekstir</comment>
- <comment xml:lang="fr">sous-titres SubRip</comment>
- <comment xml:lang="ga">fotheidil SubRip</comment>
- <comment xml:lang="gl">subtítulos SubRip</comment>
- <comment xml:lang="he">כתוביות של SubRip</comment>
- <comment xml:lang="hr">SubRip podnaslovi</comment>
- <comment xml:lang="hu">SubRip feliratok</comment>
- <comment xml:lang="ia">Subtitulos SubRip</comment>
- <comment xml:lang="id">Subjudul SubRip</comment>
- <comment xml:lang="it">Sottotitoli SubRip</comment>
- <comment xml:lang="ja">SubRip 字幕</comment>
- <comment xml:lang="kk">SubRip субтитрлары</comment>
- <comment xml:lang="ko">SubRip 자막 파일</comment>
- <comment xml:lang="lt">SubRip subtitrai</comment>
- <comment xml:lang="lv">SubRip subtitri</comment>
- <comment xml:lang="nb">SubRip undertekst</comment>
- <comment xml:lang="nl">SubRip-ondertitels</comment>
- <comment xml:lang="nn">SubRip-teksting</comment>
- <comment xml:lang="oc">sostítols SubRip</comment>
- <comment xml:lang="pl">Napisy SubRip</comment>
- <comment xml:lang="pt">legendas SubRip</comment>
- <comment xml:lang="pt_BR">Legendas SubRip</comment>
- <comment xml:lang="ro">Subtitrare SubRip</comment>
- <comment xml:lang="ru">Субтитры SubRip</comment>
- <comment xml:lang="sk">Titulky SubRip</comment>
- <comment xml:lang="sl">Datoteka podnapisov SubRip</comment>
- <comment xml:lang="sq">Nëntituj SubRip</comment>
- <comment xml:lang="sr">Суб Рип преводи</comment>
- <comment xml:lang="sv">SubRip-undertexter</comment>
- <comment xml:lang="tr">SubRip altyazıları</comment>
- <comment xml:lang="uk">субтитри SubRip</comment>
- <comment xml:lang="vi">Phụ đề SubRip</comment>
- <comment xml:lang="zh_CN">SubRip 字幕</comment>
<comment xml:lang="zh_TW">SubRip 字幕</comment>
+ <comment xml:lang="zh_CN">SubRip 字幕</comment>
+ <comment xml:lang="vi">Phụ đề SubRip</comment>
+ <comment xml:lang="uk">субтитри SubRip</comment>
+ <comment xml:lang="tr">SubRip alt yazıları</comment>
+ <comment xml:lang="sv">SubRip-undertexter</comment>
+ <comment xml:lang="sr">Суб Рип преводи</comment>
+ <comment xml:lang="sq">titra SubRip</comment>
+ <comment xml:lang="sl">Datoteka podnapisov SubRip</comment>
+ <comment xml:lang="si">SubRip උපසිරැසි</comment>
+ <comment xml:lang="sk">Titulky SubRip</comment>
+ <comment xml:lang="ru">Субтитры SubRip</comment>
+ <comment xml:lang="ro">Subtitrare SubRip</comment>
+ <comment xml:lang="pt_BR">Legendas SubRip</comment>
+ <comment xml:lang="pt">legendas SubRip</comment>
+ <comment xml:lang="pl">Napisy SubRip</comment>
+ <comment xml:lang="oc">sostítols SubRip</comment>
+ <comment xml:lang="nn">SubRip-teksting</comment>
+ <comment xml:lang="nl">SubRip-ondertitels</comment>
+ <comment xml:lang="nb">SubRip undertekst</comment>
+ <comment xml:lang="lv">SubRip subtitri</comment>
+ <comment xml:lang="lt">SubRip subtitrai</comment>
+ <comment xml:lang="ko">SubRip 자막 파일</comment>
+ <comment xml:lang="kk">SubRip субтитрлары</comment>
+ <comment xml:lang="ja">SubRip 字幕</comment>
+ <comment xml:lang="it">Sottotitoli SubRip</comment>
+ <comment xml:lang="is">SubRip skjátextar</comment>
+ <comment xml:lang="id">Subjudul SubRip</comment>
+ <comment xml:lang="ia">Subtitulos SubRip</comment>
+ <comment xml:lang="hu">SubRip feliratok</comment>
+ <comment xml:lang="hr">SubRip podnaslovi</comment>
+ <comment xml:lang="he">כתוביות של SubRip</comment>
+ <comment xml:lang="gl">subtítulos SubRip</comment>
+ <comment xml:lang="ga">fotheidil SubRip</comment>
+ <comment xml:lang="fur">sottitui SubRip</comment>
+ <comment xml:lang="fr">sous-titres SubRip</comment>
+ <comment xml:lang="fo">SubRip undirtekstir</comment>
+ <comment xml:lang="fi">SubRip-tekstitykset</comment>
+ <comment xml:lang="eu">SubRip azpitituluak</comment>
+ <comment xml:lang="es">subtítulos SubRip</comment>
+ <comment xml:lang="eo">SubRip-subtekstoj</comment>
+ <comment xml:lang="en_GB">SubRip subtitles</comment>
+ <comment xml:lang="el">Υπότιτλοι SubRip</comment>
+ <comment xml:lang="de">SubRip-Untertitel</comment>
+ <comment xml:lang="da">SubRip-undertekster</comment>
+ <comment xml:lang="cs">titulky SubRip</comment>
+ <comment xml:lang="ca">subtítols SubRip</comment>
+ <comment xml:lang="bg">Субтитри — SubRip</comment>
+ <comment xml:lang="be@latin">Subtytry SubRip</comment>
+ <comment xml:lang="be">субцітры SubRip</comment>
+ <comment xml:lang="ar">ترجمات SubRip</comment>
+ <comment xml:lang="af">SubRip-onderskrifte</comment>
<alias type="application/x-srt"/>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="1" type="string" offset="0">
- <match value=" --> " type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="1" offset="0">
+ <match type="string" value=" --&gt; " offset="0:256"/>
</match>
</magic>
<glob pattern="*.srt"/>
</mime-type>
<mime-type type="text/vtt">
<comment>WebVTT subtitles</comment>
- <comment xml:lang="bg">Субтитри — WebVTT</comment>
- <comment xml:lang="ca">subtítols WebVTT</comment>
- <comment xml:lang="cs">titulky WebVTT</comment>
- <comment xml:lang="da">WebVTT-undertekster</comment>
- <comment xml:lang="de">WebVTT-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι WebVTT</comment>
- <comment xml:lang="en_GB">WebVTT subtitles</comment>
- <comment xml:lang="es">subtítulos WebVTT</comment>
- <comment xml:lang="eu">WebVTT azpitituluak</comment>
- <comment xml:lang="fi">WebVTT-tekstitykset</comment>
- <comment xml:lang="fr">sous-titres WebVTT</comment>
- <comment xml:lang="ga">fotheidil WebVTT</comment>
- <comment xml:lang="gl">subtítulos WebVTT</comment>
- <comment xml:lang="he">כתוביות WebVTT</comment>
- <comment xml:lang="hr">WebVTT podnaslovi</comment>
- <comment xml:lang="hu">WebVTT feliratok</comment>
- <comment xml:lang="ia">Subtitulos WebVTT</comment>
- <comment xml:lang="id">Subjudul WebVTT</comment>
- <comment xml:lang="it">Sottotitoli WebVTT</comment>
- <comment xml:lang="ja">WebVTT サブタイトル</comment>
- <comment xml:lang="ka">WebVTT ქვეტიტრები</comment>
- <comment xml:lang="kk">WebVTT субтитрлары</comment>
- <comment xml:lang="ko">WebVTT 자막</comment>
- <comment xml:lang="lv">WebVTT subtitri</comment>
- <comment xml:lang="nl">WebVTT ondertitels</comment>
- <comment xml:lang="oc">sostítols WebVTT</comment>
- <comment xml:lang="pl">Napisy WebVTT</comment>
- <comment xml:lang="pt">legendas WebVTT</comment>
- <comment xml:lang="pt_BR">Legendas WebVTT</comment>
- <comment xml:lang="ru">Субтитры WebVTT</comment>
- <comment xml:lang="sk">Titulky WebVTT</comment>
- <comment xml:lang="sl">Podnapisi WebVTT</comment>
- <comment xml:lang="sr">Веб ВТТ преводи</comment>
- <comment xml:lang="sv">WebVTT-undertexter</comment>
- <comment xml:lang="tr">WebVTT altyazıları</comment>
- <comment xml:lang="uk">субтитри WebVTT</comment>
- <comment xml:lang="zh_CN">WebVTT 字幕</comment>
<comment xml:lang="zh_TW">WebVTT 字幕</comment>
+ <comment xml:lang="zh_CN">WebVTT 字幕</comment>
+ <comment xml:lang="uk">субтитри WebVTT</comment>
+ <comment xml:lang="tr">WebVTT alt yazıları</comment>
+ <comment xml:lang="sv">WebVTT-undertexter</comment>
+ <comment xml:lang="sr">Веб ВТТ преводи</comment>
+ <comment xml:lang="sq">titra WebVTT</comment>
+ <comment xml:lang="sl">Podnapisi WebVTT</comment>
+ <comment xml:lang="si">WebVTT උපසිරැසි</comment>
+ <comment xml:lang="sk">Titulky WebVTT</comment>
+ <comment xml:lang="ru">Субтитры WebVTT</comment>
+ <comment xml:lang="pt_BR">Legendas WebVTT</comment>
+ <comment xml:lang="pt">legendas WebVTT</comment>
+ <comment xml:lang="pl">Napisy WebVTT</comment>
+ <comment xml:lang="oc">sostítols WebVTT</comment>
+ <comment xml:lang="nl">WebVTT ondertitels</comment>
+ <comment xml:lang="lv">WebVTT subtitri</comment>
+ <comment xml:lang="ko">WebVTT 자막 파일</comment>
+ <comment xml:lang="kk">WebVTT субтитрлары</comment>
+ <comment xml:lang="ka">WebVTT ქვეტიტრები</comment>
+ <comment xml:lang="ja">WebVTT 字幕</comment>
+ <comment xml:lang="it">Sottotitoli WebVTT</comment>
+ <comment xml:lang="is">WebVTT skjátextar</comment>
+ <comment xml:lang="id">Subjudul WebVTT</comment>
+ <comment xml:lang="ia">Subtitulos WebVTT</comment>
+ <comment xml:lang="hu">WebVTT feliratok</comment>
+ <comment xml:lang="hr">WebVTT podnaslovi</comment>
+ <comment xml:lang="he">כתוביות WebVTT</comment>
+ <comment xml:lang="gl">subtítulos WebVTT</comment>
+ <comment xml:lang="ga">fotheidil WebVTT</comment>
+ <comment xml:lang="fur">sottitui WebVTT</comment>
+ <comment xml:lang="fr">sous-titres WebVTT</comment>
+ <comment xml:lang="fi">WebVTT-tekstitykset</comment>
+ <comment xml:lang="eu">WebVTT azpitituluak</comment>
+ <comment xml:lang="es">subtítulos WebVTT</comment>
+ <comment xml:lang="en_GB">WebVTT subtitles</comment>
+ <comment xml:lang="el">Υπότιτλοι WebVTT</comment>
+ <comment xml:lang="de">WebVTT-Untertitel</comment>
+ <comment xml:lang="da">WebVTT-undertekster</comment>
+ <comment xml:lang="cs">titulky WebVTT</comment>
+ <comment xml:lang="ca">subtítols WebVTT</comment>
+ <comment xml:lang="bg">Субтитри — WebVTT</comment>
+ <comment xml:lang="be">субцітры WebVTT</comment>
+ <comment xml:lang="ar">ترجمات WebVTT</comment>
+ <comment xml:lang="af">WebVTT-onderskrifte</comment>
<acronym>VTT</acronym>
<expanded-acronym>Video Text Tracks</expanded-acronym>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="WEBVTT" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="WEBVTT" offset="0"/>
</magic>
<glob pattern="*.vtt"/>
</mime-type>
<mime-type type="application/x-sami">
<comment>SAMI subtitles</comment>
- <comment xml:lang="ar">ترجمات SAMI</comment>
- <comment xml:lang="be@latin">Subtytry SAMI</comment>
- <comment xml:lang="bg">Субтитри — SAMI</comment>
- <comment xml:lang="ca">subtítols SAMI</comment>
- <comment xml:lang="cs">titulky SAMI</comment>
- <comment xml:lang="da">SAMI-undertekster</comment>
- <comment xml:lang="de">SAMI-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι SAMI</comment>
- <comment xml:lang="en_GB">SAMI subtitles</comment>
- <comment xml:lang="eo">SAMI-subtekstoj</comment>
- <comment xml:lang="es">subtítulos SAMI</comment>
- <comment xml:lang="eu">SAMI azpitituluak</comment>
- <comment xml:lang="fi">SAMI-tekstitykset</comment>
- <comment xml:lang="fo">SAMI undirtekstir</comment>
- <comment xml:lang="fr">sous-titres SAMI</comment>
- <comment xml:lang="ga">fotheidil SAMI</comment>
- <comment xml:lang="gl">subtítulos SAMI</comment>
- <comment xml:lang="he">כתוביות SAMI</comment>
- <comment xml:lang="hr">SAMI podnaslovi</comment>
- <comment xml:lang="hu">SAMI feliratok</comment>
- <comment xml:lang="ia">Subtitulos SAMI</comment>
- <comment xml:lang="id">Subjudul SAMI</comment>
- <comment xml:lang="it">Sottotitoli SAMI</comment>
- <comment xml:lang="ja">SAMI 字幕</comment>
- <comment xml:lang="kk">SAMI субтитрлары</comment>
- <comment xml:lang="ko">SAMI 자막 파일</comment>
- <comment xml:lang="lt">SAMI subtitrai</comment>
- <comment xml:lang="lv">SAMI subtitri</comment>
- <comment xml:lang="nb">SAMI undertekst</comment>
- <comment xml:lang="nl">SAMI-ondertitels</comment>
- <comment xml:lang="nn">SAMI teksting</comment>
- <comment xml:lang="oc">sostítols SAMI</comment>
- <comment xml:lang="pl">Napisy SAMI</comment>
- <comment xml:lang="pt">legendas SAMI</comment>
- <comment xml:lang="pt_BR">Legendas SAMI</comment>
- <comment xml:lang="ro">Subtitrări SAMI</comment>
- <comment xml:lang="ru">Субтитры SAMI</comment>
- <comment xml:lang="sk">Titulky SAMI</comment>
- <comment xml:lang="sl">Datoteka podnapisov SAMI</comment>
- <comment xml:lang="sq">Nëntituj SAMI</comment>
- <comment xml:lang="sr">САМИ преводи</comment>
- <comment xml:lang="sv">SAMI-undertexter</comment>
- <comment xml:lang="tr">SAMI altyazıları</comment>
- <comment xml:lang="uk">субтитри SAMI</comment>
- <comment xml:lang="vi">Phụ đề SAMI</comment>
- <comment xml:lang="zh_CN">SAMI 字幕</comment>
<comment xml:lang="zh_TW">SAMI 字幕</comment>
+ <comment xml:lang="zh_CN">SAMI 字幕</comment>
+ <comment xml:lang="vi">Phụ đề SAMI</comment>
+ <comment xml:lang="uk">субтитри SAMI</comment>
+ <comment xml:lang="tr">SAMI alt yazıları</comment>
+ <comment xml:lang="sv">SAMI-undertexter</comment>
+ <comment xml:lang="sr">САМИ преводи</comment>
+ <comment xml:lang="sq">titra SAMI</comment>
+ <comment xml:lang="sl">Datoteka podnapisov SAMI</comment>
+ <comment xml:lang="si">SAMI උපසිරැසි</comment>
+ <comment xml:lang="sk">Titulky SAMI</comment>
+ <comment xml:lang="ru">Субтитры SAMI</comment>
+ <comment xml:lang="ro">Subtitrări SAMI</comment>
+ <comment xml:lang="pt_BR">Legendas SAMI</comment>
+ <comment xml:lang="pt">legendas SAMI</comment>
+ <comment xml:lang="pl">Napisy SAMI</comment>
+ <comment xml:lang="oc">sostítols SAMI</comment>
+ <comment xml:lang="nn">SAMI teksting</comment>
+ <comment xml:lang="nl">SAMI-ondertitels</comment>
+ <comment xml:lang="nb">SAMI undertekst</comment>
+ <comment xml:lang="lv">SAMI subtitri</comment>
+ <comment xml:lang="lt">SAMI subtitrai</comment>
+ <comment xml:lang="ko">SAMI 자막 파일</comment>
+ <comment xml:lang="kk">SAMI субтитрлары</comment>
+ <comment xml:lang="ja">SAMI 字幕</comment>
+ <comment xml:lang="it">Sottotitoli SAMI</comment>
+ <comment xml:lang="is">SAMI skjátextar</comment>
+ <comment xml:lang="id">Subjudul SAMI</comment>
+ <comment xml:lang="ia">Subtitulos SAMI</comment>
+ <comment xml:lang="hu">SAMI feliratok</comment>
+ <comment xml:lang="hr">SAMI podnaslovi</comment>
+ <comment xml:lang="he">כתוביות SAMI</comment>
+ <comment xml:lang="gl">subtítulos SAMI</comment>
+ <comment xml:lang="ga">fotheidil SAMI</comment>
+ <comment xml:lang="fur">sottitui SAMI</comment>
+ <comment xml:lang="fr">sous-titres SAMI</comment>
+ <comment xml:lang="fo">SAMI undirtekstir</comment>
+ <comment xml:lang="fi">SAMI-tekstitykset</comment>
+ <comment xml:lang="eu">SAMI azpitituluak</comment>
+ <comment xml:lang="es">subtítulos SAMI</comment>
+ <comment xml:lang="eo">SAMI-subtekstoj</comment>
+ <comment xml:lang="en_GB">SAMI subtitles</comment>
+ <comment xml:lang="el">Υπότιτλοι SAMI</comment>
+ <comment xml:lang="de">SAMI-Untertitel</comment>
+ <comment xml:lang="da">SAMI-undertekster</comment>
+ <comment xml:lang="cs">titulky SAMI</comment>
+ <comment xml:lang="ca">subtítols SAMI</comment>
+ <comment xml:lang="bg">Субтитри — SAMI</comment>
+ <comment xml:lang="be@latin">Subtytry SAMI</comment>
+ <comment xml:lang="be">субцітры SAMI</comment>
+ <comment xml:lang="ar">ترجمات SAMI</comment>
+ <comment xml:lang="af">SAMI-onderskrifte</comment>
<acronym>SAMI</acronym>
<expanded-acronym>Synchronized Accessible Media Interchange</expanded-acronym>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="&lt;SAMI&gt;" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;SAMI&gt;" offset="0:256"/>
</magic>
<glob pattern="*.smi"/>
<glob pattern="*.sami"/>
</mime-type>
<mime-type type="text/x-microdvd">
<comment>MicroDVD subtitles</comment>
- <comment xml:lang="ar">ترجمات MicroDVD</comment>
- <comment xml:lang="be@latin">Subtytry MicroDVD</comment>
- <comment xml:lang="bg">Субтитри — MicroDVD</comment>
- <comment xml:lang="ca">subtítols MicroDVD</comment>
- <comment xml:lang="cs">titulky MicroDVD</comment>
- <comment xml:lang="da">MicroDVD-undertekster</comment>
- <comment xml:lang="de">MicroDVD-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι MicroDVD</comment>
- <comment xml:lang="en_GB">MicroDVD subtitles</comment>
- <comment xml:lang="eo">MicroDVD-subtekstoj</comment>
- <comment xml:lang="es">subtítulos de MicroDVD</comment>
- <comment xml:lang="eu">MicroDVD azpitituluak</comment>
- <comment xml:lang="fi">MicroDVD-tekstitykset</comment>
- <comment xml:lang="fo">MicroDVD undirtekstir</comment>
- <comment xml:lang="fr">sous-titres MicroDVD</comment>
- <comment xml:lang="ga">fotheidil MicroDVD</comment>
- <comment xml:lang="gl">subtítulos de MicroDVD</comment>
- <comment xml:lang="he">כתוביות של MicroDVD</comment>
- <comment xml:lang="hr">MicroDVD podnaslovi</comment>
- <comment xml:lang="hu">MicroDVD feliratok</comment>
- <comment xml:lang="ia">Subtitulos MicroDVD</comment>
- <comment xml:lang="id">Subjudul MicroDVD</comment>
- <comment xml:lang="it">Sottotitoli MicroDVD</comment>
- <comment xml:lang="ja">MicroDVD 字幕</comment>
- <comment xml:lang="ka">MicroDVD-ის ქვეტიტრები</comment>
- <comment xml:lang="kk">MicroDVD субтитрлары</comment>
- <comment xml:lang="ko">MicroDVD 자막 파일</comment>
- <comment xml:lang="lt">MicroDVD subtitrai</comment>
- <comment xml:lang="lv">MicroDVD subtitri</comment>
- <comment xml:lang="nb">MicroDVD undertekst</comment>
- <comment xml:lang="nl">MicroDVD-ondertitels</comment>
- <comment xml:lang="nn">MicroDVD-teksting</comment>
- <comment xml:lang="oc">sostítols MicroDVD</comment>
- <comment xml:lang="pl">Napisy MicroDVD</comment>
- <comment xml:lang="pt">legendas MicroDVD</comment>
- <comment xml:lang="pt_BR">Legendas MicroDVD</comment>
- <comment xml:lang="ro">Subtitrări MicroDVD</comment>
- <comment xml:lang="ru">Субтитры MicroDVD</comment>
- <comment xml:lang="sk">Titulky MicroDVD</comment>
- <comment xml:lang="sl">Datoteka podnapisov MicroDVD</comment>
- <comment xml:lang="sq">Nëntituj MicroDVD</comment>
- <comment xml:lang="sr">Микро ДВД преводи</comment>
- <comment xml:lang="sv">MicroDVD-undertexter</comment>
- <comment xml:lang="tr">MicroDVD altyazısı</comment>
- <comment xml:lang="uk">субтитри MicroDVD</comment>
- <comment xml:lang="vi">Phụ đề MicroDVD</comment>
- <comment xml:lang="zh_CN">MicroDVD 字幕</comment>
<comment xml:lang="zh_TW">MicroDVD 字幕</comment>
+ <comment xml:lang="zh_CN">MicroDVD 字幕</comment>
+ <comment xml:lang="vi">Phụ đề MicroDVD</comment>
+ <comment xml:lang="uk">субтитри MicroDVD</comment>
+ <comment xml:lang="tr">MicroDVD alt yazısı</comment>
+ <comment xml:lang="sv">MicroDVD-undertexter</comment>
+ <comment xml:lang="sr">Микро ДВД преводи</comment>
+ <comment xml:lang="sq">titra MicroDVD</comment>
+ <comment xml:lang="sl">Datoteka podnapisov MicroDVD</comment>
+ <comment xml:lang="si">MicroDVD උපසිරැසි</comment>
+ <comment xml:lang="sk">Titulky MicroDVD</comment>
+ <comment xml:lang="ru">Субтитры MicroDVD</comment>
+ <comment xml:lang="ro">Subtitrări MicroDVD</comment>
+ <comment xml:lang="pt_BR">Legendas MicroDVD</comment>
+ <comment xml:lang="pt">legendas MicroDVD</comment>
+ <comment xml:lang="pl">Napisy MicroDVD</comment>
+ <comment xml:lang="oc">sostítols MicroDVD</comment>
+ <comment xml:lang="nn">MicroDVD-teksting</comment>
+ <comment xml:lang="nl">MicroDVD-ondertitels</comment>
+ <comment xml:lang="nb">MicroDVD undertekst</comment>
+ <comment xml:lang="lv">MicroDVD subtitri</comment>
+ <comment xml:lang="lt">MicroDVD subtitrai</comment>
+ <comment xml:lang="ko">MicroDVD 자막 파일</comment>
+ <comment xml:lang="kk">MicroDVD субтитрлары</comment>
+ <comment xml:lang="ka">MicroDVD-ის ქვეტიტრები</comment>
+ <comment xml:lang="ja">MicroDVD 字幕</comment>
+ <comment xml:lang="it">Sottotitoli MicroDVD</comment>
+ <comment xml:lang="is">MicroDVD skjátextar</comment>
+ <comment xml:lang="id">Subjudul MicroDVD</comment>
+ <comment xml:lang="ia">Subtitulos MicroDVD</comment>
+ <comment xml:lang="hu">MicroDVD feliratok</comment>
+ <comment xml:lang="hr">MicroDVD podnaslovi</comment>
+ <comment xml:lang="he">כתוביות של MicroDVD</comment>
+ <comment xml:lang="gl">subtítulos de MicroDVD</comment>
+ <comment xml:lang="ga">fotheidil MicroDVD</comment>
+ <comment xml:lang="fur">sottitui MicroDVD</comment>
+ <comment xml:lang="fr">sous-titres MicroDVD</comment>
+ <comment xml:lang="fo">MicroDVD undirtekstir</comment>
+ <comment xml:lang="fi">MicroDVD-tekstitykset</comment>
+ <comment xml:lang="eu">MicroDVD azpitituluak</comment>
+ <comment xml:lang="es">subtítulos de MicroDVD</comment>
+ <comment xml:lang="eo">MicroDVD-subtekstoj</comment>
+ <comment xml:lang="en_GB">MicroDVD subtitles</comment>
+ <comment xml:lang="el">Υπότιτλοι MicroDVD</comment>
+ <comment xml:lang="de">MicroDVD-Untertitel</comment>
+ <comment xml:lang="da">MicroDVD-undertekster</comment>
+ <comment xml:lang="cs">titulky MicroDVD</comment>
+ <comment xml:lang="ca">subtítols MicroDVD</comment>
+ <comment xml:lang="bg">Субтитри — MicroDVD</comment>
+ <comment xml:lang="be@latin">Subtytry MicroDVD</comment>
+ <comment xml:lang="be">субцітры MicroDVD</comment>
+ <comment xml:lang="ar">ترجمات MicroDVD</comment>
+ <comment xml:lang="af">MicroDVD-onderskrifte</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="{1}" type="string" offset="0"/>
- <match value="{0}" type="string" offset="0"/>
- <match value="}{" type="string" offset="0:6"/>
+ <magic>
+ <match type="string" value="{1}" offset="0"/>
+ <match type="string" value="{0}" offset="0"/>
+ <match type="string" value="}{" offset="0:6"/>
</magic>
<glob pattern="*.sub"/>
</mime-type>
+ <mime-type type="text/x-mpl2">
+ <comment>MPL2 subtitles</comment>
+ <comment xml:lang="uk">субтитри MPL2</comment>
+ <comment xml:lang="sv">MPL2-undertexter</comment>
+ <comment xml:lang="ru">Субтитры MPL2</comment>
+ <comment xml:lang="pl">Napisy MPL2</comment>
+ <comment xml:lang="es">subtítulos MPL2</comment>
+ <comment xml:lang="de">MPL2-Untertitel</comment>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="[1]" offset="0"/>
+ <match type="string" value="[0]" offset="0"/>
+ <match type="string" value="][" offset="0:6"/>
+ </magic>
+ <glob pattern="*.mpl"/>
+ </mime-type>
<mime-type type="text/x-mpsub">
- <comment>MPSub subtitles</comment>
- <comment xml:lang="ar">ترجمات MPSub</comment>
- <comment xml:lang="be@latin">Subtytry MPSub</comment>
- <comment xml:lang="bg">Субтитри — MPSub</comment>
- <comment xml:lang="ca">subtítols MPSub</comment>
- <comment xml:lang="cs">titulky MPSub</comment>
- <comment xml:lang="da">MPSub-undertekster</comment>
- <comment xml:lang="de">MPSub-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι MPSub</comment>
- <comment xml:lang="en_GB">MPSub subtitles</comment>
- <comment xml:lang="eo">MPSub-subtekstoj</comment>
- <comment xml:lang="es">subtítulos MPSub</comment>
- <comment xml:lang="eu">MPSub azpitituluak</comment>
- <comment xml:lang="fi">MPSub-tekstitykset</comment>
- <comment xml:lang="fo">MPSub undirtekstir</comment>
- <comment xml:lang="fr">sous-titres MPSub</comment>
- <comment xml:lang="ga">fotheidil MPSub</comment>
- <comment xml:lang="gl">subtítulos MPSub</comment>
- <comment xml:lang="he">כתוביות MPSub</comment>
- <comment xml:lang="hr">MPSub podnaslovi</comment>
- <comment xml:lang="hu">MPSub feliratok</comment>
- <comment xml:lang="ia">Subtitulos MPSub</comment>
- <comment xml:lang="id">Subjudul MPSub</comment>
- <comment xml:lang="it">Sottotitoli MPSub</comment>
- <comment xml:lang="ja">MPSub サブタイトル</comment>
- <comment xml:lang="ka">MPSub ქვეტიტრები</comment>
- <comment xml:lang="kk">MPSub субтитрлары</comment>
- <comment xml:lang="ko">MPSub 자막 파일</comment>
- <comment xml:lang="lt">MPSub subtitrai</comment>
- <comment xml:lang="lv">MPSub subtitri</comment>
- <comment xml:lang="nb">MPSub undertekst</comment>
- <comment xml:lang="nl">MPSub-ondertitels</comment>
- <comment xml:lang="nn">MPSub-undertekstar</comment>
- <comment xml:lang="oc">sostítols MPSub</comment>
- <comment xml:lang="pl">Napisy MPSub</comment>
- <comment xml:lang="pt">legendas MPSub</comment>
- <comment xml:lang="pt_BR">Legendas MPSub</comment>
- <comment xml:lang="ro">Subtitrări MPSub</comment>
- <comment xml:lang="ru">Субтитры MPSub</comment>
- <comment xml:lang="sk">Titulky MPSub</comment>
- <comment xml:lang="sl">Datoteka podnapisov MPSub</comment>
- <comment xml:lang="sq">Nëntituj MPSub</comment>
- <comment xml:lang="sr">МПСуб преводи</comment>
- <comment xml:lang="sv">MPSub-undertexter</comment>
- <comment xml:lang="tr">MPSub altyazıları</comment>
- <comment xml:lang="uk">субтитри MPSub</comment>
- <comment xml:lang="vi">Phụ đề MPSub</comment>
- <comment xml:lang="zh_CN">MPSub 字幕</comment>
- <comment xml:lang="zh_TW">MPSub 字幕</comment>
- <acronym>MPSub</acronym>
- <expanded-acronym>MPlayer Subtitle</expanded-acronym>
+ <comment>MPlayer subtitles</comment>
+ <comment xml:lang="uk">субтитри MPlayer</comment>
+ <comment xml:lang="sv">MPlayer-undertexter</comment>
+ <comment xml:lang="ru">Субтитры MPlayer</comment>
+ <comment xml:lang="pl">Napisy MPlayer</comment>
+ <comment xml:lang="es">subtítulos de MPlayer</comment>
+ <comment xml:lang="de">MPlayer-Untertitel</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="FORMAT=" type="string" offset="0:256"/>
+ <magic priority="40">
+ <match type="string" value="FORMAT=" offset="0:256"/>
</magic>
<glob pattern="*.sub"/>
</mime-type>
<mime-type type="text/x-ssa">
<comment>SSA subtitles</comment>
- <comment xml:lang="ar">ترجمات SSA</comment>
- <comment xml:lang="be@latin">Subtytry SSA</comment>
- <comment xml:lang="bg">Субтитри — SSA</comment>
- <comment xml:lang="ca">subtítols SSA</comment>
- <comment xml:lang="cs">titulky SSA</comment>
- <comment xml:lang="da">SSA-undertekster</comment>
- <comment xml:lang="de">SSA-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι SSA</comment>
- <comment xml:lang="en_GB">SSA subtitles</comment>
- <comment xml:lang="eo">SSA-subtekstoj</comment>
- <comment xml:lang="es">subtítulos SSA</comment>
- <comment xml:lang="eu">SSA azpitituluak</comment>
- <comment xml:lang="fi">SSA-tekstitykset</comment>
- <comment xml:lang="fo">SSA undirtekstir</comment>
- <comment xml:lang="fr">sous-titres SSA</comment>
- <comment xml:lang="ga">fotheidil SSA</comment>
- <comment xml:lang="gl">Subtitulos SSA</comment>
- <comment xml:lang="he">כתובית SSA</comment>
- <comment xml:lang="hr">SSA podnaslovi</comment>
- <comment xml:lang="hu">SSA feliratok</comment>
- <comment xml:lang="ia">Subtitulos SSA</comment>
- <comment xml:lang="id">Subjudul SSA</comment>
- <comment xml:lang="it">Sottotitoli SSA</comment>
- <comment xml:lang="ja">SSA 字幕</comment>
- <comment xml:lang="kk">SSA субтитрлары</comment>
- <comment xml:lang="ko">SSA 자막 파일</comment>
- <comment xml:lang="lt">SSA subtitrai</comment>
- <comment xml:lang="lv">SSA subtitri</comment>
- <comment xml:lang="nb">SSA undertekst</comment>
- <comment xml:lang="nl">SSA-ondertitels</comment>
- <comment xml:lang="nn">SSA-teksting</comment>
- <comment xml:lang="oc">sostítols SSA</comment>
- <comment xml:lang="pl">Napisy SSA</comment>
- <comment xml:lang="pt">legendas SSA</comment>
- <comment xml:lang="pt_BR">Legendas SSA</comment>
- <comment xml:lang="ro">Subtitrări SSA</comment>
- <comment xml:lang="ru">Субтитры SSA</comment>
- <comment xml:lang="sk">Titulky SSA</comment>
- <comment xml:lang="sl">Datoteka podnapisov SSA</comment>
- <comment xml:lang="sq">Nëntituj SSA</comment>
- <comment xml:lang="sr">ССА преводи</comment>
- <comment xml:lang="sv">SSA-undertexter</comment>
- <comment xml:lang="tr">SSA altyazıları</comment>
- <comment xml:lang="uk">субтитри SSA</comment>
- <comment xml:lang="vi">Phụ đề SSA</comment>
- <comment xml:lang="zh_CN">SSA 字幕</comment>
<comment xml:lang="zh_TW">SSA 字幕</comment>
+ <comment xml:lang="zh_CN">SSA 字幕</comment>
+ <comment xml:lang="vi">Phụ đề SSA</comment>
+ <comment xml:lang="uk">субтитри SSA</comment>
+ <comment xml:lang="tr">SSA alt yazıları</comment>
+ <comment xml:lang="sv">SSA-undertexter</comment>
+ <comment xml:lang="sr">ССА преводи</comment>
+ <comment xml:lang="sq">titra SSA</comment>
+ <comment xml:lang="sl">Datoteka podnapisov SSA</comment>
+ <comment xml:lang="si">SSA උපසිරැසි</comment>
+ <comment xml:lang="sk">Titulky SSA</comment>
+ <comment xml:lang="ru">Субтитры SSA</comment>
+ <comment xml:lang="ro">Subtitrări SSA</comment>
+ <comment xml:lang="pt_BR">Legendas SSA</comment>
+ <comment xml:lang="pt">legendas SSA</comment>
+ <comment xml:lang="pl">Napisy SSA</comment>
+ <comment xml:lang="oc">sostítols SSA</comment>
+ <comment xml:lang="nn">SSA-teksting</comment>
+ <comment xml:lang="nl">SSA-ondertitels</comment>
+ <comment xml:lang="nb">SSA undertekst</comment>
+ <comment xml:lang="lv">SSA subtitri</comment>
+ <comment xml:lang="lt">SSA subtitrai</comment>
+ <comment xml:lang="ko">SSA 자막 파일</comment>
+ <comment xml:lang="kk">SSA субтитрлары</comment>
+ <comment xml:lang="ja">SSA 字幕</comment>
+ <comment xml:lang="it">Sottotitoli SSA</comment>
+ <comment xml:lang="is">SSA skjátextar</comment>
+ <comment xml:lang="id">Subjudul SSA</comment>
+ <comment xml:lang="ia">Subtitulos SSA</comment>
+ <comment xml:lang="hu">SSA feliratok</comment>
+ <comment xml:lang="hr">SSA podnaslovi</comment>
+ <comment xml:lang="he">כתובית SSA</comment>
+ <comment xml:lang="gl">Subtitulos SSA</comment>
+ <comment xml:lang="ga">fotheidil SSA</comment>
+ <comment xml:lang="fur">sottitui SSA</comment>
+ <comment xml:lang="fr">sous-titres SSA</comment>
+ <comment xml:lang="fo">SSA undirtekstir</comment>
+ <comment xml:lang="fi">SSA-tekstitykset</comment>
+ <comment xml:lang="eu">SSA azpitituluak</comment>
+ <comment xml:lang="es">subtítulos SSA</comment>
+ <comment xml:lang="eo">SSA-subtekstoj</comment>
+ <comment xml:lang="en_GB">SSA subtitles</comment>
+ <comment xml:lang="el">Υπότιτλοι SSA</comment>
+ <comment xml:lang="de">SSA-Untertitel</comment>
+ <comment xml:lang="da">SSA-undertekster</comment>
+ <comment xml:lang="cs">titulky SSA</comment>
+ <comment xml:lang="ca">subtítols SSA</comment>
+ <comment xml:lang="bg">Субтитри — SSA</comment>
+ <comment xml:lang="be@latin">Subtytry SSA</comment>
+ <comment xml:lang="be">субцітры SSA</comment>
+ <comment xml:lang="ar">ترجمات SSA</comment>
+ <comment xml:lang="af">SSA-onderskrifte</comment>
<acronym>SSA</acronym>
<expanded-acronym>SubStation Alpha</expanded-acronym>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="[Script Info]" type="string" offset="0:256"/>
- <match value="Dialogue: " type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="[Script Info]" offset="0:256"/>
+ <match type="string" value="Dialogue: " offset="0:256"/>
</magic>
<glob pattern="*.ssa"/>
<glob pattern="*.ass"/>
</mime-type>
<mime-type type="text/x-subviewer">
<comment>SubViewer subtitles</comment>
- <comment xml:lang="ar">ترجمات SubViewer</comment>
- <comment xml:lang="be@latin">Subtytry SubViewer</comment>
- <comment xml:lang="bg">Субтитри — SubViewer</comment>
- <comment xml:lang="ca">subtítols SubViewer</comment>
- <comment xml:lang="cs">titulky SubViewer</comment>
- <comment xml:lang="da">SubViewer-undertekster</comment>
- <comment xml:lang="de">SubViewer-Untertitel</comment>
- <comment xml:lang="el">Υπότιτλοι SubViewer</comment>
- <comment xml:lang="en_GB">SubViewer subtitles</comment>
- <comment xml:lang="eo">SubViewer-subtekstoj</comment>
- <comment xml:lang="es">subtítulos SubViewer</comment>
- <comment xml:lang="eu">SubViewer azpitituluak</comment>
- <comment xml:lang="fi">SubViewer-tekstitykset</comment>
- <comment xml:lang="fo">SubViewer undirtekstir</comment>
- <comment xml:lang="fr">sous-titres SubViewer</comment>
- <comment xml:lang="ga">fotheidil SubViewer</comment>
- <comment xml:lang="gl">subtítulos SubViewer</comment>
- <comment xml:lang="he">כתוביות של SubViewer</comment>
- <comment xml:lang="hr">SubViewer podnaslovi</comment>
- <comment xml:lang="hu">SubViewer feliratok</comment>
- <comment xml:lang="ia">Subtitulos SubViewer</comment>
- <comment xml:lang="id">Subjudul SubViewer</comment>
- <comment xml:lang="it">Sottotitoli SubViewer</comment>
- <comment xml:lang="ja">SubViewer 字幕</comment>
- <comment xml:lang="kk">SubViewer субтитрлары</comment>
- <comment xml:lang="ko">SubViewer 자막 파일</comment>
- <comment xml:lang="lt">SubViewer subtitrai</comment>
- <comment xml:lang="lv">SubViewer subtitri</comment>
- <comment xml:lang="nb">SubViewer undertekst</comment>
- <comment xml:lang="nl">SubViewer-ondertitels</comment>
- <comment xml:lang="nn">SubViewer-teksting</comment>
- <comment xml:lang="oc">sostítols SubViewer</comment>
- <comment xml:lang="pl">Napisy SubViewer</comment>
- <comment xml:lang="pt">legendas SubViewer</comment>
- <comment xml:lang="pt_BR">Legendas SubViewer</comment>
- <comment xml:lang="ro">Subtitrare SubViewer</comment>
- <comment xml:lang="ru">Субтитры SubViewer</comment>
- <comment xml:lang="sk">Titulky SubViewer</comment>
- <comment xml:lang="sl">Datoteka podnapisov SubViewer</comment>
- <comment xml:lang="sq">Nëntituj SubViewer</comment>
- <comment xml:lang="sr">Суб Вјивер преводи</comment>
- <comment xml:lang="sv">SubViewer-undertexter</comment>
- <comment xml:lang="tr">SubViewer altyazıları</comment>
- <comment xml:lang="uk">субтитри SubViewer</comment>
- <comment xml:lang="vi">Phụ đề SubViewer</comment>
- <comment xml:lang="zh_CN">SubViewer 字幕</comment>
<comment xml:lang="zh_TW">SubViewer 字幕</comment>
+ <comment xml:lang="zh_CN">SubViewer 字幕</comment>
+ <comment xml:lang="vi">Phụ đề SubViewer</comment>
+ <comment xml:lang="uk">субтитри SubViewer</comment>
+ <comment xml:lang="tr">SubViewer alt yazıları</comment>
+ <comment xml:lang="sv">SubViewer-undertexter</comment>
+ <comment xml:lang="sr">Суб Вјивер преводи</comment>
+ <comment xml:lang="sq">titra SubViewer</comment>
+ <comment xml:lang="sl">Datoteka podnapisov SubViewer</comment>
+ <comment xml:lang="si">SubViewer උපසිරැසි</comment>
+ <comment xml:lang="sk">Titulky SubViewer</comment>
+ <comment xml:lang="ru">Субтитры SubViewer</comment>
+ <comment xml:lang="ro">Subtitrare SubViewer</comment>
+ <comment xml:lang="pt_BR">Legendas SubViewer</comment>
+ <comment xml:lang="pt">legendas SubViewer</comment>
+ <comment xml:lang="pl">Napisy SubViewer</comment>
+ <comment xml:lang="oc">sostítols SubViewer</comment>
+ <comment xml:lang="nn">SubViewer-teksting</comment>
+ <comment xml:lang="nl">SubViewer-ondertitels</comment>
+ <comment xml:lang="nb">SubViewer undertekst</comment>
+ <comment xml:lang="lv">SubViewer subtitri</comment>
+ <comment xml:lang="lt">SubViewer subtitrai</comment>
+ <comment xml:lang="ko">SubViewer 자막 파일</comment>
+ <comment xml:lang="kk">SubViewer субтитрлары</comment>
+ <comment xml:lang="ja">SubViewer 字幕</comment>
+ <comment xml:lang="it">Sottotitoli SubViewer</comment>
+ <comment xml:lang="is">SubViewer skjátextar</comment>
+ <comment xml:lang="id">Subjudul SubViewer</comment>
+ <comment xml:lang="ia">Subtitulos SubViewer</comment>
+ <comment xml:lang="hu">SubViewer feliratok</comment>
+ <comment xml:lang="hr">SubViewer podnaslovi</comment>
+ <comment xml:lang="he">כתוביות של SubViewer</comment>
+ <comment xml:lang="gl">subtítulos SubViewer</comment>
+ <comment xml:lang="ga">fotheidil SubViewer</comment>
+ <comment xml:lang="fur">sottitui SubViewer</comment>
+ <comment xml:lang="fr">sous-titres SubViewer</comment>
+ <comment xml:lang="fo">SubViewer undirtekstir</comment>
+ <comment xml:lang="fi">SubViewer-tekstitykset</comment>
+ <comment xml:lang="eu">SubViewer azpitituluak</comment>
+ <comment xml:lang="es">subtítulos SubViewer</comment>
+ <comment xml:lang="eo">SubViewer-subtekstoj</comment>
+ <comment xml:lang="en_GB">SubViewer subtitles</comment>
+ <comment xml:lang="el">Υπότιτλοι SubViewer</comment>
+ <comment xml:lang="de">SubViewer-Untertitel</comment>
+ <comment xml:lang="da">SubViewer-undertekster</comment>
+ <comment xml:lang="cs">titulky SubViewer</comment>
+ <comment xml:lang="ca">subtítols SubViewer</comment>
+ <comment xml:lang="bg">Субтитри — SubViewer</comment>
+ <comment xml:lang="be@latin">Subtytry SubViewer</comment>
+ <comment xml:lang="be">субцітры SubViewer</comment>
+ <comment xml:lang="ar">ترجمات SubViewer</comment>
+ <comment xml:lang="af">SubViewer-onderskrifte</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="[INFORMATION]" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="[INFORMATION]" offset="0"/>
</magic>
<glob pattern="*.sub"/>
</mime-type>
<mime-type type="text/x-iMelody">
<comment>iMelody ringtone</comment>
- <comment xml:lang="ar">نغمة iMelody</comment>
- <comment xml:lang="be@latin">Rington iMelody</comment>
- <comment xml:lang="bg">Аудио — iMelody</comment>
- <comment xml:lang="ca">to de trucada iMelody</comment>
- <comment xml:lang="cs">vyzváněcí melodie iMelody</comment>
- <comment xml:lang="da">iMelody-ringetone</comment>
- <comment xml:lang="de">iMelody-Klingelton</comment>
- <comment xml:lang="el">ringtone iMelody</comment>
- <comment xml:lang="en_GB">iMelody ringtone</comment>
- <comment xml:lang="es">tono de llamada iMelody</comment>
- <comment xml:lang="eu">iMelody doinua</comment>
- <comment xml:lang="fi">iMelody-soittoääni</comment>
- <comment xml:lang="fo">iMelody ringitóni</comment>
- <comment xml:lang="fr">sonnerie iMelody</comment>
- <comment xml:lang="ga">ton buailte iMelody</comment>
- <comment xml:lang="gl">Melodía de iMelody</comment>
- <comment xml:lang="he">צלצול של iMelody</comment>
- <comment xml:lang="hr">iMelody melodija zvona</comment>
- <comment xml:lang="hu">iMelody csengőhang</comment>
- <comment xml:lang="ia">Tono de appello iMelody</comment>
- <comment xml:lang="id">nada dering iMelody</comment>
- <comment xml:lang="it">Suoneria iMelody</comment>
- <comment xml:lang="ja">iMelody リングトーン</comment>
- <comment xml:lang="kk">iMelody әуені</comment>
- <comment xml:lang="ko">iMelody 벨소리</comment>
- <comment xml:lang="lt">iMelody skambučio melodija</comment>
- <comment xml:lang="lv">iMelody melodija</comment>
- <comment xml:lang="nb">iMelody ringetone</comment>
- <comment xml:lang="nl">iMelody-beltoon</comment>
- <comment xml:lang="nn">iMelody-ringetone</comment>
- <comment xml:lang="oc">sonariá iMelody</comment>
- <comment xml:lang="pl">Dzwonek iMelody</comment>
- <comment xml:lang="pt">toque iMelody</comment>
- <comment xml:lang="pt_BR">Toque de celular do iMelody</comment>
- <comment xml:lang="ro">Sonerie iMelody</comment>
- <comment xml:lang="ru">Мелодия iMelody</comment>
- <comment xml:lang="sk">Vyzváňacie melódie iMelody</comment>
- <comment xml:lang="sl">Zvonjenje iMelody</comment>
- <comment xml:lang="sq">Zile iMelody</comment>
- <comment xml:lang="sr">звоно ајМелодије</comment>
- <comment xml:lang="sv">iMelody-ringsignal</comment>
- <comment xml:lang="tr">iMelody melodisi</comment>
- <comment xml:lang="uk">рінгтон iMelody</comment>
- <comment xml:lang="vi">tiếng réo iMelody</comment>
- <comment xml:lang="zh_CN">iMelody 铃声</comment>
<comment xml:lang="zh_TW">iMelody 鈴聲</comment>
- <magic priority="50">
- <match value="BEGIN:IMELODY" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">iMelody 铃声</comment>
+ <comment xml:lang="vi">tiếng réo iMelody</comment>
+ <comment xml:lang="uk">рінгтон iMelody</comment>
+ <comment xml:lang="tr">iMelody melodisi</comment>
+ <comment xml:lang="sv">iMelody-ringsignal</comment>
+ <comment xml:lang="sr">звоно ајМелодије</comment>
+ <comment xml:lang="sq">zile iMelody</comment>
+ <comment xml:lang="sl">Zvonjenje iMelody</comment>
+ <comment xml:lang="si">iMelody නාද රටා</comment>
+ <comment xml:lang="sk">Vyzváňacie melódie iMelody</comment>
+ <comment xml:lang="ru">Мелодия iMelody</comment>
+ <comment xml:lang="ro">Sonerie iMelody</comment>
+ <comment xml:lang="pt_BR">Toque de celular do iMelody</comment>
+ <comment xml:lang="pt">toque iMelody</comment>
+ <comment xml:lang="pl">Dzwonek iMelody</comment>
+ <comment xml:lang="oc">sonariá iMelody</comment>
+ <comment xml:lang="nn">iMelody-ringetone</comment>
+ <comment xml:lang="nl">iMelody-beltoon</comment>
+ <comment xml:lang="nb">iMelody ringetone</comment>
+ <comment xml:lang="lv">iMelody melodija</comment>
+ <comment xml:lang="lt">iMelody skambučio melodija</comment>
+ <comment xml:lang="ko">iMelody 벨소리</comment>
+ <comment xml:lang="kk">iMelody әуені</comment>
+ <comment xml:lang="ja">iMelody リングトーン</comment>
+ <comment xml:lang="it">Suoneria iMelody</comment>
+ <comment xml:lang="is">iMelody hringitónn</comment>
+ <comment xml:lang="id">nada dering iMelody</comment>
+ <comment xml:lang="ia">Tono de appello iMelody</comment>
+ <comment xml:lang="hu">iMelody csengőhang</comment>
+ <comment xml:lang="hr">iMelody melodija zvona</comment>
+ <comment xml:lang="he">צלצול של iMelody</comment>
+ <comment xml:lang="gl">Melodía de iMelody</comment>
+ <comment xml:lang="ga">ton buailte iMelody</comment>
+ <comment xml:lang="fur">sunarie iMelody</comment>
+ <comment xml:lang="fr">sonnerie iMelody</comment>
+ <comment xml:lang="fo">iMelody ringitóni</comment>
+ <comment xml:lang="fi">iMelody-soittoääni</comment>
+ <comment xml:lang="eu">iMelody doinua</comment>
+ <comment xml:lang="es">tono de llamada iMelody</comment>
+ <comment xml:lang="en_GB">iMelody ringtone</comment>
+ <comment xml:lang="el">ringtone iMelody</comment>
+ <comment xml:lang="de">iMelody-Klingelton</comment>
+ <comment xml:lang="da">iMelody-ringetone</comment>
+ <comment xml:lang="cs">vyzváněcí melodie iMelody</comment>
+ <comment xml:lang="ca">to de trucada iMelody</comment>
+ <comment xml:lang="bg">Аудио — iMelody</comment>
+ <comment xml:lang="be@latin">Rington iMelody</comment>
+ <comment xml:lang="be">мелодыя выкліку iMelody</comment>
+ <comment xml:lang="ar">نغمة iMelody</comment>
+ <comment xml:lang="af">iMelody-luitoon</comment>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="BEGIN:IMELODY" offset="0"/>
</magic>
<glob pattern="*.imy"/>
<glob pattern="*.ime"/>
<alias type="audio/x-iMelody"/>
<alias type="audio/iMelody"/>
</mime-type>
- <mime-type type="application/x-smaf">
+ <mime-type type="application/vnd.smaf">
<comment>SMAF audio</comment>
- <comment xml:lang="ar">SMAF سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo SMAF</comment>
- <comment xml:lang="bg">Аудио — SMAF</comment>
- <comment xml:lang="ca">àudio SMAF</comment>
- <comment xml:lang="cs">zvuk SMAF</comment>
- <comment xml:lang="da">SMAF-lyd</comment>
- <comment xml:lang="de">SMAF-Audio</comment>
- <comment xml:lang="el">Ήχος SMAF</comment>
- <comment xml:lang="en_GB">SMAF audio</comment>
- <comment xml:lang="eo">SMAF-sondosiero</comment>
- <comment xml:lang="es">sonido SMAF</comment>
- <comment xml:lang="eu">SMAF audioa</comment>
- <comment xml:lang="fi">SMAF-ääni</comment>
- <comment xml:lang="fo">SMAF ljóður</comment>
- <comment xml:lang="fr">audio SMAF</comment>
- <comment xml:lang="ga">fuaim SMAF</comment>
- <comment xml:lang="gl">son SMAF</comment>
- <comment xml:lang="he">שמע SMAF</comment>
- <comment xml:lang="hr">SMAF zvučni zapis</comment>
- <comment xml:lang="hu">SMAF hang</comment>
- <comment xml:lang="ia">Audio SMAF</comment>
- <comment xml:lang="id">Audio SMAF</comment>
- <comment xml:lang="it">Audio SMAF</comment>
- <comment xml:lang="ja">SMAF オーディオ</comment>
- <comment xml:lang="kk">SMAF аудиосы</comment>
- <comment xml:lang="ko">SMAF 오디오</comment>
- <comment xml:lang="lt">SMAF garso įrašas</comment>
- <comment xml:lang="lv">SMAF audio</comment>
- <comment xml:lang="nb">SMAF-lyd</comment>
- <comment xml:lang="nl">SMAF-audio</comment>
- <comment xml:lang="nn">SMAF-lyd</comment>
- <comment xml:lang="oc">àudio SMAF</comment>
- <comment xml:lang="pl">Plik dźwiękowy SMAF</comment>
- <comment xml:lang="pt">áudio SMAF</comment>
- <comment xml:lang="pt_BR">Áudio SMAF</comment>
- <comment xml:lang="ro">Audio SMAF</comment>
- <comment xml:lang="ru">Аудио SMAF</comment>
- <comment xml:lang="sk">Zvuk SMAF</comment>
- <comment xml:lang="sl">Zvočna datoteka SMAF</comment>
- <comment xml:lang="sq">Audio SMAF</comment>
- <comment xml:lang="sr">СМАФ звук</comment>
- <comment xml:lang="sv">SMAF-ljud</comment>
- <comment xml:lang="tr">SMAF sesi</comment>
- <comment xml:lang="uk">звук SMAF</comment>
- <comment xml:lang="vi">Âm thanh SMAF</comment>
- <comment xml:lang="zh_CN">SMAF 音频</comment>
<comment xml:lang="zh_TW">SMAF 音訊</comment>
+ <comment xml:lang="zh_CN">SMAF 音频</comment>
+ <comment xml:lang="vi">Âm thanh SMAF</comment>
+ <comment xml:lang="uk">звук SMAF</comment>
+ <comment xml:lang="tr">SMAF sesi</comment>
+ <comment xml:lang="sv">SMAF-ljud</comment>
+ <comment xml:lang="sr">СМАФ звук</comment>
+ <comment xml:lang="sq">audio SMAF</comment>
+ <comment xml:lang="sl">Zvočna datoteka SMAF</comment>
+ <comment xml:lang="si">SMAF ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk SMAF</comment>
+ <comment xml:lang="ru">Аудио SMAF</comment>
+ <comment xml:lang="ro">Audio SMAF</comment>
+ <comment xml:lang="pt_BR">Áudio SMAF</comment>
+ <comment xml:lang="pt">áudio SMAF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy SMAF</comment>
+ <comment xml:lang="oc">àudio SMAF</comment>
+ <comment xml:lang="nn">SMAF-lyd</comment>
+ <comment xml:lang="nl">SMAF-audio</comment>
+ <comment xml:lang="nb">SMAF-lyd</comment>
+ <comment xml:lang="lv">SMAF audio</comment>
+ <comment xml:lang="lt">SMAF garso įrašas</comment>
+ <comment xml:lang="ko">SMAF 오디오</comment>
+ <comment xml:lang="kk">SMAF аудиосы</comment>
+ <comment xml:lang="ja">SMAF オーディオ</comment>
+ <comment xml:lang="it">Audio SMAF</comment>
+ <comment xml:lang="is">SMAF hljóðskrá</comment>
+ <comment xml:lang="id">Audio SMAF</comment>
+ <comment xml:lang="ia">Audio SMAF</comment>
+ <comment xml:lang="hu">SMAF hang</comment>
+ <comment xml:lang="hr">SMAF zvučni zapis</comment>
+ <comment xml:lang="he">שמע SMAF</comment>
+ <comment xml:lang="gl">son SMAF</comment>
+ <comment xml:lang="ga">fuaim SMAF</comment>
+ <comment xml:lang="fur">audio SMAF</comment>
+ <comment xml:lang="fr">audio SMAF</comment>
+ <comment xml:lang="fo">SMAF ljóður</comment>
+ <comment xml:lang="fi">SMAF-ääni</comment>
+ <comment xml:lang="eu">SMAF audioa</comment>
+ <comment xml:lang="es">audio SMAF</comment>
+ <comment xml:lang="eo">SMAF-sondosiero</comment>
+ <comment xml:lang="en_GB">SMAF audio</comment>
+ <comment xml:lang="el">Ήχος SMAF</comment>
+ <comment xml:lang="de">SMAF-Audio</comment>
+ <comment xml:lang="da">SMAF-lyd</comment>
+ <comment xml:lang="cs">zvuk SMAF</comment>
+ <comment xml:lang="ca">àudio SMAF</comment>
+ <comment xml:lang="bg">Аудио — SMAF</comment>
+ <comment xml:lang="be@latin">Aŭdyjo SMAF</comment>
+ <comment xml:lang="be">аўдыя SMAF</comment>
+ <comment xml:lang="ar">صوت SMAF</comment>
+ <comment xml:lang="af">SMAF-oudio</comment>
<acronym>SMAF</acronym>
<expanded-acronym>Synthetic music Mobile Application Format</expanded-acronym>
<generic-icon name="audio-x-generic"/>
- <magic priority="50">
- <match value="MMMD" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="MMMD" offset="0"/>
</magic>
<glob pattern="*.mmf"/>
<glob pattern="*.smaf"/>
- <alias type="application/vnd.smaf"/>
+ <alias type="application/x-smaf"/>
</mime-type>
<mime-type type="text/x-mrml">
<comment>MRML playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل MRML</comment>
- <comment xml:lang="be@latin">Śpis piesień MRML</comment>
- <comment xml:lang="bg">Списък за изпълнение — MRML</comment>
- <comment xml:lang="ca">llista de reproducció MRML</comment>
- <comment xml:lang="cs">seznam k přehrání MRML</comment>
- <comment xml:lang="da">MRML-afspilningsliste</comment>
- <comment xml:lang="de">MRML-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής MRML</comment>
- <comment xml:lang="en_GB">MRML playlist</comment>
- <comment xml:lang="eo">MRML-ludlisto</comment>
- <comment xml:lang="es">lista de reproducción MRML</comment>
- <comment xml:lang="eu">MRML erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">MRML-soittolista</comment>
- <comment xml:lang="fo">MRML avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture MRML</comment>
- <comment xml:lang="ga">seinmliosta MRML</comment>
- <comment xml:lang="gl">lista de reprodución MRML</comment>
- <comment xml:lang="he">רשימת השמעה MRML</comment>
- <comment xml:lang="hr">MRML popis izvođenja</comment>
- <comment xml:lang="hu">MRML-lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection MRML</comment>
- <comment xml:lang="id">Senarai putar MRML</comment>
- <comment xml:lang="it">Playlist MRML</comment>
- <comment xml:lang="ja">MRML 再生リスト</comment>
- <comment xml:lang="ka">MRML რეპერტუარი</comment>
- <comment xml:lang="kk">MRML ойнау тізімі</comment>
- <comment xml:lang="ko">MRML 재생 목록</comment>
- <comment xml:lang="lt">MRML grojaraštis</comment>
- <comment xml:lang="lv">MRML repertuārs</comment>
- <comment xml:lang="nb">MRML-spilleliste</comment>
- <comment xml:lang="nl">MRML-afspeellijst</comment>
- <comment xml:lang="nn">MRML-speleliste</comment>
- <comment xml:lang="oc">lista de lectura MRML</comment>
- <comment xml:lang="pl">Lista odtwarzania MRML</comment>
- <comment xml:lang="pt">lista de reprodução MRML</comment>
- <comment xml:lang="pt_BR">Lista de reprodução do MRML</comment>
- <comment xml:lang="ro">Listă redare MRML</comment>
- <comment xml:lang="ru">Список воспроизведения MRML</comment>
- <comment xml:lang="sk">Zoznam skladieb MRML</comment>
- <comment xml:lang="sl">Seznam predvajanja MRML</comment>
- <comment xml:lang="sq">Listë titujsh MRML</comment>
- <comment xml:lang="sr">МРМЛ списак нумера</comment>
- <comment xml:lang="sv">MRML-spellista</comment>
- <comment xml:lang="tr">MRML oynatma listesi</comment>
- <comment xml:lang="uk">список відтворення MRML</comment>
- <comment xml:lang="vi">Danh mục nhạc MRML</comment>
- <comment xml:lang="zh_CN">MRML 播放列表</comment>
<comment xml:lang="zh_TW">MRML 播放清單</comment>
+ <comment xml:lang="zh_CN">MRML 播放列表</comment>
+ <comment xml:lang="vi">Danh mục nhạc MRML</comment>
+ <comment xml:lang="uk">список відтворення MRML</comment>
+ <comment xml:lang="tr">MRML çalma listesi</comment>
+ <comment xml:lang="sv">MRML-spellista</comment>
+ <comment xml:lang="sr">МРМЛ списак нумера</comment>
+ <comment xml:lang="sq">luajlistë MRML</comment>
+ <comment xml:lang="sl">Seznam predvajanja MRML</comment>
+ <comment xml:lang="si">MRML ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb MRML</comment>
+ <comment xml:lang="ru">Список воспроизведения MRML</comment>
+ <comment xml:lang="ro">Listă redare MRML</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução do MRML</comment>
+ <comment xml:lang="pt">lista de reprodução MRML</comment>
+ <comment xml:lang="pl">Lista odtwarzania MRML</comment>
+ <comment xml:lang="oc">lista de lectura MRML</comment>
+ <comment xml:lang="nn">MRML-speleliste</comment>
+ <comment xml:lang="nl">MRML-afspeellijst</comment>
+ <comment xml:lang="nb">MRML-spilleliste</comment>
+ <comment xml:lang="lv">MRML repertuārs</comment>
+ <comment xml:lang="lt">MRML grojaraštis</comment>
+ <comment xml:lang="ko">MRML 재생 목록</comment>
+ <comment xml:lang="kk">MRML ойнау тізімі</comment>
+ <comment xml:lang="ka">MRML რეპერტუარი</comment>
+ <comment xml:lang="ja">MRML プレイリスト</comment>
+ <comment xml:lang="it">Playlist MRML</comment>
+ <comment xml:lang="is">MRML spilunarlisti</comment>
+ <comment xml:lang="id">Senarai putar MRML</comment>
+ <comment xml:lang="ia">Lista de selection MRML</comment>
+ <comment xml:lang="hu">MRML-lejátszólista</comment>
+ <comment xml:lang="hr">MRML popis izvođenja</comment>
+ <comment xml:lang="he">רשימת השמעה MRML</comment>
+ <comment xml:lang="gl">lista de reprodución MRML</comment>
+ <comment xml:lang="ga">seinmliosta MRML</comment>
+ <comment xml:lang="fur">liste di riproduzion MRML</comment>
+ <comment xml:lang="fr">liste de lecture MRML</comment>
+ <comment xml:lang="fo">MRML avspælingarlisti</comment>
+ <comment xml:lang="fi">MRML-soittolista</comment>
+ <comment xml:lang="eu">MRML erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción MRML</comment>
+ <comment xml:lang="eo">MRML-ludlisto</comment>
+ <comment xml:lang="en_GB">MRML playlist</comment>
+ <comment xml:lang="el">Λίστα αναπαραγωγής MRML</comment>
+ <comment xml:lang="de">MRML-Wiedergabeliste</comment>
+ <comment xml:lang="da">MRML-afspilningsliste</comment>
+ <comment xml:lang="cs">seznam k přehrání MRML</comment>
+ <comment xml:lang="ca">llista de reproducció MRML</comment>
+ <comment xml:lang="bg">Списък за изпълнение — MRML</comment>
+ <comment xml:lang="be@latin">Śpis piesień MRML</comment>
+ <comment xml:lang="be">плэй-ліст MRML</comment>
+ <comment xml:lang="ar">قائمة تشغيل MRML</comment>
+ <comment xml:lang="af">MRML-speellys</comment>
<acronym>MRML</acronym>
<expanded-acronym>Multimedia Retrieval Markup Language</expanded-acronym>
- <magic priority="50">
- <match value="&lt;mrml " type="string" offset="0"/>
+ <sub-class-of type="application/xml"/>
+ <magic>
+ <match type="string" value="&lt;mrml " offset="0"/>
</magic>
<glob pattern="*.mrml"/>
<glob pattern="*.mrl"/>
</mime-type>
<mime-type type="audio/x-xmf">
<comment>XMF audio</comment>
- <comment xml:lang="ar">XMF سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo XMF</comment>
- <comment xml:lang="bg">Аудио — XMF</comment>
- <comment xml:lang="ca">àudio XMF</comment>
- <comment xml:lang="cs">zvuk XMF</comment>
- <comment xml:lang="da">XMF-lyd</comment>
- <comment xml:lang="de">XMF-Audio</comment>
- <comment xml:lang="el">Ήχος XMF</comment>
- <comment xml:lang="en_GB">XMF audio</comment>
- <comment xml:lang="eo">XMF-sondosiero</comment>
- <comment xml:lang="es">sonido XMF</comment>
- <comment xml:lang="eu">XMF audioa</comment>
- <comment xml:lang="fi">XMF-ääni</comment>
- <comment xml:lang="fo">XMF ljóður</comment>
- <comment xml:lang="fr">audio XMF</comment>
- <comment xml:lang="ga">fuaim XMF</comment>
- <comment xml:lang="gl">son XMF</comment>
- <comment xml:lang="he">שמע XMF</comment>
- <comment xml:lang="hr">XMF zvučni zapis</comment>
- <comment xml:lang="hu">XMF hang</comment>
- <comment xml:lang="ia">Audio XMF</comment>
- <comment xml:lang="id">Audio XMF</comment>
- <comment xml:lang="it">Audio XMF</comment>
- <comment xml:lang="ja">XMF オーディオ</comment>
- <comment xml:lang="kk">XMF аудиосы</comment>
- <comment xml:lang="ko">XMF 오디오</comment>
- <comment xml:lang="lt">XMF garso įrašas</comment>
- <comment xml:lang="lv">XMF audio</comment>
- <comment xml:lang="nb">XMF-lyd</comment>
- <comment xml:lang="nl">XMF-audio</comment>
- <comment xml:lang="nn">XMF-lyd</comment>
- <comment xml:lang="oc">àudio XMF</comment>
- <comment xml:lang="pl">Plik dźwiękowy XMF</comment>
- <comment xml:lang="pt">aúdio XMF</comment>
- <comment xml:lang="pt_BR">Áudio XMF</comment>
- <comment xml:lang="ro">Audio XMF</comment>
- <comment xml:lang="ru">Аудио XMF</comment>
- <comment xml:lang="sk">Zvuk XMF</comment>
- <comment xml:lang="sl">Zvočna datoteka XMF</comment>
- <comment xml:lang="sq">Audio XMF</comment>
- <comment xml:lang="sr">ИксМФ звук</comment>
- <comment xml:lang="sv">XMF-ljud</comment>
- <comment xml:lang="tr">XMF sesi</comment>
- <comment xml:lang="uk">звук XMF</comment>
- <comment xml:lang="vi">Âm thanh XMF</comment>
- <comment xml:lang="zh_CN">XMF 音频</comment>
<comment xml:lang="zh_TW">XMF 音訊</comment>
+ <comment xml:lang="zh_CN">XMF 音频</comment>
+ <comment xml:lang="vi">Âm thanh XMF</comment>
+ <comment xml:lang="uk">звук XMF</comment>
+ <comment xml:lang="tr">XMF sesi</comment>
+ <comment xml:lang="sv">XMF-ljud</comment>
+ <comment xml:lang="sr">ИксМФ звук</comment>
+ <comment xml:lang="sq">audio XMF</comment>
+ <comment xml:lang="sl">Zvočna datoteka XMF</comment>
+ <comment xml:lang="si">XMF ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk XMF</comment>
+ <comment xml:lang="ru">Аудио XMF</comment>
+ <comment xml:lang="ro">Audio XMF</comment>
+ <comment xml:lang="pt_BR">Áudio XMF</comment>
+ <comment xml:lang="pt">aúdio XMF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy XMF</comment>
+ <comment xml:lang="oc">àudio XMF</comment>
+ <comment xml:lang="nn">XMF-lyd</comment>
+ <comment xml:lang="nl">XMF-audio</comment>
+ <comment xml:lang="nb">XMF-lyd</comment>
+ <comment xml:lang="lv">XMF audio</comment>
+ <comment xml:lang="lt">XMF garso įrašas</comment>
+ <comment xml:lang="ko">XMF 오디오</comment>
+ <comment xml:lang="kk">XMF аудиосы</comment>
+ <comment xml:lang="ja">XMF オーディオ</comment>
+ <comment xml:lang="it">Audio XMF</comment>
+ <comment xml:lang="is">XMF hljóðskrá</comment>
+ <comment xml:lang="id">Audio XMF</comment>
+ <comment xml:lang="ia">Audio XMF</comment>
+ <comment xml:lang="hu">XMF hang</comment>
+ <comment xml:lang="hr">XMF zvučni zapis</comment>
+ <comment xml:lang="he">שמע XMF</comment>
+ <comment xml:lang="gl">son XMF</comment>
+ <comment xml:lang="ga">fuaim XMF</comment>
+ <comment xml:lang="fur">audio XMF</comment>
+ <comment xml:lang="fr">audio XMF</comment>
+ <comment xml:lang="fo">XMF ljóður</comment>
+ <comment xml:lang="fi">XMF-ääni</comment>
+ <comment xml:lang="eu">XMF audioa</comment>
+ <comment xml:lang="es">sonido XMF</comment>
+ <comment xml:lang="eo">XMF-sondosiero</comment>
+ <comment xml:lang="en_GB">XMF audio</comment>
+ <comment xml:lang="el">Ήχος XMF</comment>
+ <comment xml:lang="de">XMF-Audio</comment>
+ <comment xml:lang="da">XMF-lyd</comment>
+ <comment xml:lang="cs">zvuk XMF</comment>
+ <comment xml:lang="ca">àudio XMF</comment>
+ <comment xml:lang="bg">Аудио — XMF</comment>
+ <comment xml:lang="be@latin">Aŭdyjo XMF</comment>
+ <comment xml:lang="be">аўдыя XMF</comment>
+ <comment xml:lang="ar">صوت XMF</comment>
+ <comment xml:lang="af">XMF-oudio</comment>
<acronym>XMF</acronym>
<expanded-acronym>eXtensible Music Format</expanded-acronym>
- <magic priority="50">
- <match value="XMF_" type="string" offset="0"/>
- <match value="\130\115\106\137\062\056\060\060\000\000\000\002" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="XMF_" offset="0"/>
</magic>
<glob pattern="*.xmf"/>
<alias type="audio/xmf"/>
- <alias type="audio/mobile-xmf"/>
+ </mime-type>
+ <mime-type type="audio/mobile-xmf">
+ <comment>Mobile XMF audio</comment>
+ <comment xml:lang="uk">звукові дані Mobile XMF</comment>
+ <comment xml:lang="tr">Mobile XMF sesi</comment>
+ <comment xml:lang="sv">Mobile XMF-ljud</comment>
+ <comment xml:lang="sl">Zvok Mobile XMF</comment>
+ <comment xml:lang="si">ජංගම XMF ශ්රව්ය</comment>
+ <comment xml:lang="ru">Аудио Mobile XMF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Mobile XMF</comment>
+ <comment xml:lang="nl">Mobile XMF-audio</comment>
+ <comment xml:lang="ko">모바일 XMF 오디오</comment>
+ <comment xml:lang="kk">Mobile XMF аудиосы</comment>
+ <comment xml:lang="ja">Mobile XMF オーディオ</comment>
+ <comment xml:lang="it">Audio XMF mobile</comment>
+ <comment xml:lang="hr">Mobilni XMF zvuk</comment>
+ <comment xml:lang="fi">Mobiili XMF-ääni</comment>
+ <comment xml:lang="eu">Mobile XMF audioa</comment>
+ <comment xml:lang="es">audio Mobile XMF</comment>
+ <comment xml:lang="en_GB">Mobile XMF audio</comment>
+ <comment xml:lang="de">Mobile-XMF-Audio</comment>
+ <comment xml:lang="be">аўдыя MXMF</comment>
+ <comment xml:lang="ar">صوت Mobile XMF</comment>
+ <acronym>XMF</acronym>
+ <expanded-acronym>eXtensible Music Format</expanded-acronym>
+ <magic>
+ <match type="string" value="\130\115\106\137\062\056\060\060\000\000\000\002" offset="0"/>
+ </magic>
+ <glob pattern="*.mxmf"/>
+ <alias type="audio/vnd.nokia.mobile-xmf"/>
</mime-type>
<mime-type type="application/x-sv4cpio">
<comment>SV4 CPIO archive</comment>
- <comment xml:lang="ar">أرشيف SV4 CPIO</comment>
- <comment xml:lang="az">SV4 CPIO arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ SV4 CPIO</comment>
- <comment xml:lang="bg">Архив — SV4 CPIO</comment>
- <comment xml:lang="ca">arxiu CPIO SV4</comment>
- <comment xml:lang="cs">archiv SV4 CPIO</comment>
- <comment xml:lang="cy">Archif CPIO SV4</comment>
- <comment xml:lang="da">SV4 CPIO-arkiv</comment>
- <comment xml:lang="de">SV4-CPIO-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο SV4 CPIO</comment>
- <comment xml:lang="en_GB">SV4 CPIO archive</comment>
- <comment xml:lang="eo">SV4-CPIO-arkivo</comment>
- <comment xml:lang="es">archivador SV4 CPIO</comment>
- <comment xml:lang="eu">SV4 CPIO artxiboa</comment>
- <comment xml:lang="fi">SV4 CPIO -arkisto</comment>
- <comment xml:lang="fo">SV4 CPIO skjalasavn</comment>
- <comment xml:lang="fr">archive SV4 CPIO</comment>
- <comment xml:lang="ga">cartlann SV4 CPIO</comment>
- <comment xml:lang="gl">arquivo SV4 CPIO</comment>
- <comment xml:lang="he">ארכיון של SV4 SPIO</comment>
- <comment xml:lang="hr">SV4 CPIO arhiva</comment>
- <comment xml:lang="hu">SV4 CPIO-archívum</comment>
- <comment xml:lang="ia">Archivo CPIO SV4</comment>
- <comment xml:lang="id">Arsip SV4 CPIO</comment>
- <comment xml:lang="it">Archivio SV4 CPIO</comment>
- <comment xml:lang="ja">SV4 CPIO アーカイブ</comment>
- <comment xml:lang="kk">SV4 CPIO архиві</comment>
- <comment xml:lang="ko">SV4 CPIO 묶음 파일</comment>
- <comment xml:lang="lt">SV4 CPIO archyvas</comment>
- <comment xml:lang="lv">SV4 CPIO arhīvs</comment>
- <comment xml:lang="ms">Arkib CPIO SV4</comment>
- <comment xml:lang="nb">SV4 CPIO-arkiv</comment>
- <comment xml:lang="nl">SV4 CPIO-archief</comment>
- <comment xml:lang="nn">SV4 CPIO-arkiv</comment>
- <comment xml:lang="oc">archiu SV4 CPIO</comment>
- <comment xml:lang="pl">Archiwum SV4 CPIO</comment>
- <comment xml:lang="pt">arquivo SV4 CPIO</comment>
- <comment xml:lang="pt_BR">Pacote SV4 CPIO</comment>
- <comment xml:lang="ro">Arhivă SV4 CPIO</comment>
- <comment xml:lang="ru">Архив SV4 CPIO</comment>
- <comment xml:lang="sk">Archív SV4 CPIO</comment>
- <comment xml:lang="sl">Datoteka arhiva SV4 CPIO</comment>
- <comment xml:lang="sq">Arkiv SV4 CPIO</comment>
- <comment xml:lang="sr">СВ4 ЦПИО архива</comment>
- <comment xml:lang="sv">SV4 CPIO-arkiv</comment>
- <comment xml:lang="tr">SV4 CPIO arşivi</comment>
- <comment xml:lang="uk">архів SV4 CPIO</comment>
- <comment xml:lang="vi">Kho nén CPIO SV4</comment>
- <comment xml:lang="zh_CN">SV4 CPIO 归档文件</comment>
<comment xml:lang="zh_TW">SV4 CPIO 封存檔</comment>
+ <comment xml:lang="zh_CN">SV4 CPIO 归档文件</comment>
+ <comment xml:lang="vi">Kho nén CPIO SV4</comment>
+ <comment xml:lang="uk">архів SV4 CPIO</comment>
+ <comment xml:lang="tr">SV4 CPIO arşivi</comment>
+ <comment xml:lang="sv">SV4 CPIO-arkiv</comment>
+ <comment xml:lang="sr">СВ4 ЦПИО архива</comment>
+ <comment xml:lang="sq">arkiv SV4 CPIO</comment>
+ <comment xml:lang="sl">Datoteka arhiva SV4 CPIO</comment>
+ <comment xml:lang="si">SV4 CPIO සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív SV4 CPIO</comment>
+ <comment xml:lang="ru">Архив SV4 CPIO</comment>
+ <comment xml:lang="ro">Arhivă SV4 CPIO</comment>
+ <comment xml:lang="pt_BR">Pacote SV4 CPIO</comment>
+ <comment xml:lang="pt">arquivo SV4 CPIO</comment>
+ <comment xml:lang="pl">Archiwum SV4 CPIO</comment>
+ <comment xml:lang="oc">archiu SV4 CPIO</comment>
+ <comment xml:lang="nn">SV4 CPIO-arkiv</comment>
+ <comment xml:lang="nl">SV4 CPIO-archief</comment>
+ <comment xml:lang="nb">SV4 CPIO-arkiv</comment>
+ <comment xml:lang="ms">Arkib CPIO SV4</comment>
+ <comment xml:lang="lv">SV4 CPIO arhīvs</comment>
+ <comment xml:lang="lt">SV4 CPIO archyvas</comment>
+ <comment xml:lang="ko">SV4 CPIO 묶음 파일</comment>
+ <comment xml:lang="kk">SV4 CPIO архиві</comment>
+ <comment xml:lang="ja">SV4 CPIO アーカイブ</comment>
+ <comment xml:lang="it">Archivio SV4 CPIO</comment>
+ <comment xml:lang="is">SV4 CPIO safnskrá</comment>
+ <comment xml:lang="id">Arsip SV4 CPIO</comment>
+ <comment xml:lang="ia">Archivo CPIO SV4</comment>
+ <comment xml:lang="hu">SV4 CPIO-archívum</comment>
+ <comment xml:lang="hr">SV4 CPIO arhiva</comment>
+ <comment xml:lang="he">ארכיון של SV4 SPIO</comment>
+ <comment xml:lang="gl">arquivo SV4 CPIO</comment>
+ <comment xml:lang="ga">cartlann SV4 CPIO</comment>
+ <comment xml:lang="fur">archivi SV4 CPIO</comment>
+ <comment xml:lang="fr">archive SV4 CPIO</comment>
+ <comment xml:lang="fo">SV4 CPIO skjalasavn</comment>
+ <comment xml:lang="fi">SV4 CPIO -arkisto</comment>
+ <comment xml:lang="eu">SV4 CPIO artxiboa</comment>
+ <comment xml:lang="es">archivador SV4 CPIO</comment>
+ <comment xml:lang="eo">SV4-CPIO-arkivo</comment>
+ <comment xml:lang="en_GB">SV4 CPIO archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο SV4 CPIO</comment>
+ <comment xml:lang="de">SV4-CPIO-Archiv</comment>
+ <comment xml:lang="da">SV4 CPIO-arkiv</comment>
+ <comment xml:lang="cy">Archif CPIO SV4</comment>
+ <comment xml:lang="cs">archiv SV4 CPIO</comment>
+ <comment xml:lang="ca">arxiu SV4 CPIO</comment>
+ <comment xml:lang="bg">Архив — SV4 CPIO</comment>
+ <comment xml:lang="be@latin">Archiŭ SV4 CPIO</comment>
+ <comment xml:lang="be">архіў SV4 CPIO</comment>
+ <comment xml:lang="az">SV4 CPIO arxivi</comment>
+ <comment xml:lang="ar">أرشيف SV4 CPIO</comment>
+ <comment xml:lang="af">SV4 CPIO-argief</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.sv4cpio"/>
</mime-type>
<mime-type type="application/x-sv4crc">
<comment>SV4 CPIO archive (with CRC)</comment>
- <comment xml:lang="ar">أرشيف SV4 CPIO (مع CRC)</comment>
- <comment xml:lang="be@latin">Archiŭ SV4 CPIO (z CRC)</comment>
- <comment xml:lang="bg">Архив — SV4 CPIO, проверка за грешки CRC</comment>
- <comment xml:lang="ca">arxiu CPIO SV4 (amb CRC)</comment>
- <comment xml:lang="cs">archiv SV4 CPIO (s CRC)</comment>
- <comment xml:lang="da">SV4 CPIO-arkiv (med CRC)</comment>
- <comment xml:lang="de">SV4-CPIO-Archiv (mit CRC)</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο SV4 CPIO (με CRC)</comment>
- <comment xml:lang="en_GB">SV4 CPIO archive (with CRC)</comment>
- <comment xml:lang="eo">SV4-CPIO-arkivo (kun CRC)</comment>
- <comment xml:lang="es">archivador SV4 CPIO (con CRC)</comment>
- <comment xml:lang="eu">SV4 CPIO artxiboa (CRC-rekin)</comment>
- <comment xml:lang="fi">SV4 CPIO -arkisto (CRC:llä)</comment>
- <comment xml:lang="fo">SV4 CPIO skjalasavn (við CRC)</comment>
- <comment xml:lang="fr">archive SV4 CPIO (avec CRC)</comment>
- <comment xml:lang="ga">cartlann SV4 CPIO (le CRC)</comment>
- <comment xml:lang="gl">Arquivador SV4 CPIO (con CRC)</comment>
- <comment xml:lang="he">ארכיון של SV4 SPIO (עם CRC)</comment>
- <comment xml:lang="hr">SV4 CPIO arhiva (s CRC-om)</comment>
- <comment xml:lang="hu">SV4 CPIO-archívum (CRC-vel)</comment>
- <comment xml:lang="ia">Archivo CPIO SV4 (con CRC)</comment>
- <comment xml:lang="id">Arsip SV4 CPIO (dengan CRC)</comment>
- <comment xml:lang="it">Archivio SV4 CPIO (con CRC)</comment>
- <comment xml:lang="ja">SV4 CPIO アーカイブ (CRC 有り)</comment>
- <comment xml:lang="kk">SV4 CPIO архиві (CRC бар)</comment>
- <comment xml:lang="ko">SV4 CPIO 묶음 파일(CRC 포함)</comment>
- <comment xml:lang="lt">SV4 CPII archyvas (su CRC)</comment>
- <comment xml:lang="lv">SV4 CPIO arhīvs (ar CRC)</comment>
- <comment xml:lang="ms">Arkib CPIO SV4 (dengan CRC)</comment>
- <comment xml:lang="nb">SV4 CPIO-arkiv (med CRC)</comment>
- <comment xml:lang="nl">SV4 CPIO-archief (met CRC)</comment>
- <comment xml:lang="nn">SV4 CPIO arkiv (med CRC)</comment>
- <comment xml:lang="oc">archiu SV4 CPIO (avec CRC)</comment>
- <comment xml:lang="pl">Archiwum SV4 CPIO (z sumą kontrolną)</comment>
- <comment xml:lang="pt">arquivo SV4 CPIO (com CRC)</comment>
- <comment xml:lang="pt_BR">Pacote SV4 CPIO (com CRC)</comment>
- <comment xml:lang="ro">Arhivă SV4 CPIO (cu CRC)</comment>
- <comment xml:lang="ru">Архив SV4 CPIO (с CRC)</comment>
- <comment xml:lang="sk">Archív SV4 CPIO (s CRC)</comment>
- <comment xml:lang="sl">Datoteka arhiva SV4 CPIO (z razpršilom CRC)</comment>
- <comment xml:lang="sq">Arkiv SV4 CPIO (me CRC)</comment>
- <comment xml:lang="sr">СВ4 ЦПИО архива (са ЦРЦ-ом)</comment>
- <comment xml:lang="sv">SV4 CPIO-arkiv (med CRC)</comment>
- <comment xml:lang="tr">SV4 CPIO arşivi (CRC ile)</comment>
- <comment xml:lang="uk">архів SV4 CPIO (з CRC)</comment>
- <comment xml:lang="vi">Kho nén CPIO SV4 (với CRC)</comment>
- <comment xml:lang="zh_CN">SV4 CPIP 归档文件(带 CRC)</comment>
<comment xml:lang="zh_TW">SV4 CPIO 封存檔 (具有 CRC)</comment>
+ <comment xml:lang="zh_CN">SV4 CPIP 归档文件(带 CRC)</comment>
+ <comment xml:lang="vi">Kho nén CPIO SV4 (với CRC)</comment>
+ <comment xml:lang="uk">архів SV4 CPIO (з CRC)</comment>
+ <comment xml:lang="tr">SV4 CPIO arşivi (CRC ile)</comment>
+ <comment xml:lang="sv">SV4 CPIO-arkiv (med CRC)</comment>
+ <comment xml:lang="sr">СВ4 ЦПИО архива (са ЦРЦ-ом)</comment>
+ <comment xml:lang="sq">arkiv SV4 CPIO (me CRC)</comment>
+ <comment xml:lang="sl">Datoteka arhiva SV4 CPIO (z razpršilom CRC)</comment>
+ <comment xml:lang="si">SV4 CPIO සංරක්ෂිතය (CRC සමඟ)</comment>
+ <comment xml:lang="sk">Archív SV4 CPIO (s CRC)</comment>
+ <comment xml:lang="ru">Архив SV4 CPIO (с CRC)</comment>
+ <comment xml:lang="ro">Arhivă SV4 CPIO (cu CRC)</comment>
+ <comment xml:lang="pt_BR">Pacote SV4 CPIO (com CRC)</comment>
+ <comment xml:lang="pt">arquivo SV4 CPIO (com CRC)</comment>
+ <comment xml:lang="pl">Archiwum SV4 CPIO (z sumą kontrolną)</comment>
+ <comment xml:lang="oc">archiu SV4 CPIO (avec CRC)</comment>
+ <comment xml:lang="nn">SV4 CPIO arkiv (med CRC)</comment>
+ <comment xml:lang="nl">SV4 CPIO-archief (met CRC)</comment>
+ <comment xml:lang="nb">SV4 CPIO-arkiv (med CRC)</comment>
+ <comment xml:lang="ms">Arkib CPIO SV4 (dengan CRC)</comment>
+ <comment xml:lang="lv">SV4 CPIO arhīvs (ar CRC)</comment>
+ <comment xml:lang="lt">SV4 CPII archyvas (su CRC)</comment>
+ <comment xml:lang="ko">SV4 CPIO 묶음 파일(CRC 포함)</comment>
+ <comment xml:lang="kk">SV4 CPIO архиві (CRC бар)</comment>
+ <comment xml:lang="ja">SV4 CPIO アーカイブ (CRC 有り)</comment>
+ <comment xml:lang="it">Archivio SV4 CPIO (con CRC)</comment>
+ <comment xml:lang="is">SV4 CPIO safnskrá (með CRC)</comment>
+ <comment xml:lang="id">Arsip SV4 CPIO (dengan CRC)</comment>
+ <comment xml:lang="ia">Archivo CPIO SV4 (con CRC)</comment>
+ <comment xml:lang="hu">SV4 CPIO-archívum (CRC-vel)</comment>
+ <comment xml:lang="hr">SV4 CPIO arhiva (s CRC-om)</comment>
+ <comment xml:lang="he">ארכיון של SV4 SPIO (עם CRC)</comment>
+ <comment xml:lang="gl">Arquivador SV4 CPIO (con CRC)</comment>
+ <comment xml:lang="ga">cartlann SV4 CPIO (le CRC)</comment>
+ <comment xml:lang="fur">archivi SV4 CPIO (cun CRC)</comment>
+ <comment xml:lang="fr">archive SV4 CPIO (avec CRC)</comment>
+ <comment xml:lang="fo">SV4 CPIO skjalasavn (við CRC)</comment>
+ <comment xml:lang="fi">SV4 CPIO -arkisto (CRC:llä)</comment>
+ <comment xml:lang="eu">SV4 CPIO artxiboa (CRC-rekin)</comment>
+ <comment xml:lang="es">archivador SV4 CPIO (con CRC)</comment>
+ <comment xml:lang="eo">SV4-CPIO-arkivo (kun CRC)</comment>
+ <comment xml:lang="en_GB">SV4 CPIO archive (with CRC)</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο SV4 CPIO (με CRC)</comment>
+ <comment xml:lang="de">SV4-CPIO-Archiv (mit CRC)</comment>
+ <comment xml:lang="da">SV4 CPIO-arkiv (med CRC)</comment>
+ <comment xml:lang="cs">archiv SV4 CPIO (s CRC)</comment>
+ <comment xml:lang="ca">arxiu SV4 CPIO (amb CRC)</comment>
+ <comment xml:lang="bg">Архив — SV4 CPIO, проверка за грешки CRC</comment>
+ <comment xml:lang="be@latin">Archiŭ SV4 CPIO (z CRC)</comment>
+ <comment xml:lang="be">архіў SV4 CPIO (z CRC)</comment>
+ <comment xml:lang="ar">أرشيف SV4 CPIO (مع CRC)</comment>
+ <comment xml:lang="af">SV4 CPIO-argief (met CRC)</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.sv4crc"/>
</mime-type>
<mime-type type="application/x-tar">
<comment>Tar archive</comment>
- <comment xml:lang="ar">أرشيف Tar</comment>
- <comment xml:lang="az">Tar arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ tar</comment>
- <comment xml:lang="bg">Архив — tar</comment>
- <comment xml:lang="ca">arxiu tar</comment>
- <comment xml:lang="cs">archiv Tar</comment>
- <comment xml:lang="cy">Archif tar</comment>
- <comment xml:lang="da">Tar-arkiv</comment>
- <comment xml:lang="de">Tar-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Tar</comment>
- <comment xml:lang="en_GB">Tar archive</comment>
- <comment xml:lang="es">archivador Tar</comment>
- <comment xml:lang="eu">Tar artxiboa</comment>
- <comment xml:lang="fi">Tar-arkisto</comment>
- <comment xml:lang="fo">Tar skjalasavn</comment>
- <comment xml:lang="fr">archive tar</comment>
- <comment xml:lang="ga">cartlann Tar</comment>
- <comment xml:lang="gl">arquivo Tar</comment>
- <comment xml:lang="he">ארכיון Tar</comment>
- <comment xml:lang="hr">Tar arhiva</comment>
- <comment xml:lang="hu">Tar archívum</comment>
- <comment xml:lang="ia">Archivo Tar</comment>
- <comment xml:lang="id">Arsip Tar</comment>
- <comment xml:lang="it">Archivio tar</comment>
- <comment xml:lang="ja">Tar アーカイブ</comment>
- <comment xml:lang="kk">Tar архиві</comment>
- <comment xml:lang="ko">TAR 묶음 파일</comment>
- <comment xml:lang="lt">Tar archyvas</comment>
- <comment xml:lang="lv">Tar arhīvs</comment>
- <comment xml:lang="ms">Arkib Tar</comment>
- <comment xml:lang="nb">Tar-arkiv</comment>
- <comment xml:lang="nl">Tar-archief</comment>
- <comment xml:lang="nn">Tar-arkiv</comment>
- <comment xml:lang="oc">archiu tar</comment>
- <comment xml:lang="pl">Archiwum tar</comment>
- <comment xml:lang="pt">arquivo Tar</comment>
- <comment xml:lang="pt_BR">Pacote Tar</comment>
- <comment xml:lang="ro">Arhivă Tar</comment>
- <comment xml:lang="ru">Архив TAR</comment>
- <comment xml:lang="sk">Archív tar</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar</comment>
- <comment xml:lang="sq">Arkiv tar</comment>
- <comment xml:lang="sr">Тар архива</comment>
- <comment xml:lang="sv">Tar-arkiv</comment>
- <comment xml:lang="tr">Tar arşivi</comment>
- <comment xml:lang="uk">архів tar</comment>
- <comment xml:lang="vi">Kho nén tar</comment>
- <comment xml:lang="zh_CN">Tar 归档文件</comment>
<comment xml:lang="zh_TW">Tar 封存檔</comment>
+ <comment xml:lang="zh_CN">Tar 归档文件</comment>
+ <comment xml:lang="vi">Kho nén tar</comment>
+ <comment xml:lang="uk">архів tar</comment>
+ <comment xml:lang="tr">Tar arşivi</comment>
+ <comment xml:lang="sv">Tar-arkiv</comment>
+ <comment xml:lang="sr">Тар архива</comment>
+ <comment xml:lang="sq">arkiv tar</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar</comment>
+ <comment xml:lang="si">තාර ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Tar</comment>
+ <comment xml:lang="ru">Архив TAR</comment>
+ <comment xml:lang="ro">Arhivă Tar</comment>
+ <comment xml:lang="pt_BR">Pacote Tar</comment>
+ <comment xml:lang="pt">arquivo Tar</comment>
+ <comment xml:lang="pl">Archiwum tar</comment>
+ <comment xml:lang="oc">archiu tar</comment>
+ <comment xml:lang="nn">Tar-arkiv</comment>
+ <comment xml:lang="nl">Tar-archief</comment>
+ <comment xml:lang="nb">Tar-arkiv</comment>
+ <comment xml:lang="ms">Arkib Tar</comment>
+ <comment xml:lang="lv">Tar arhīvs</comment>
+ <comment xml:lang="lt">Tar archyvas</comment>
+ <comment xml:lang="ko">TAR 묶음 파일</comment>
+ <comment xml:lang="kk">Tar архиві</comment>
+ <comment xml:lang="ja">Tar アーカイブ</comment>
+ <comment xml:lang="it">Archivio tar</comment>
+ <comment xml:lang="is">Tar safnskrá</comment>
+ <comment xml:lang="id">Arsip Tar</comment>
+ <comment xml:lang="ia">Archivo Tar</comment>
+ <comment xml:lang="hu">Tar archívum</comment>
+ <comment xml:lang="hr">Tar arhiva</comment>
+ <comment xml:lang="he">ארכיון Tar</comment>
+ <comment xml:lang="gl">arquivo Tar</comment>
+ <comment xml:lang="ga">cartlann Tar</comment>
+ <comment xml:lang="fur">archivi Tar</comment>
+ <comment xml:lang="fr">archive tar</comment>
+ <comment xml:lang="fo">Tar skjalasavn</comment>
+ <comment xml:lang="fi">Tar-arkisto</comment>
+ <comment xml:lang="eu">Tar artxiboa</comment>
+ <comment xml:lang="es">archivador Tar</comment>
+ <comment xml:lang="en_GB">Tar archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Tar</comment>
+ <comment xml:lang="de">Tar-Archiv</comment>
+ <comment xml:lang="da">Tar-arkiv</comment>
+ <comment xml:lang="cy">Archif tar</comment>
+ <comment xml:lang="cs">archiv Tar</comment>
+ <comment xml:lang="ca">arxiu tar</comment>
+ <comment xml:lang="bg">Архив — tar</comment>
+ <comment xml:lang="be@latin">Archiŭ tar</comment>
+ <comment xml:lang="be">архіў tar</comment>
+ <comment xml:lang="az">Tar arxivi</comment>
+ <comment xml:lang="ar">أرشيف Tar</comment>
+ <comment xml:lang="af">Tar-argief</comment>
<generic-icon name="package-x-generic"/>
<alias type="application/x-gtar"/>
<magic priority="60">
- <match value="ustar\0" type="string" offset="257"/>
- <match value="ustar\040\040\0" type="string" offset="257"/>
+ <match type="string" value="ustar\0" offset="257"/>
+ <match type="string" value="ustar\040\040\0" offset="257"/>
</magic>
<glob pattern="*.tar"/>
<glob pattern="*.gtar"/>
@@ -20828,382 +22664,243 @@
</mime-type>
<mime-type type="application/x-tarz">
<comment>Tar archive (compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط)</comment>
- <comment xml:lang="be@latin">Archiŭ tar (skampresavany)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió)</comment>
- <comment xml:lang="cs">archiv Tar (komprimovaný)</comment>
- <comment xml:lang="da">Tar-arkiv (komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο)</comment>
- <comment xml:lang="en_GB">Tar archive (compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido)</comment>
- <comment xml:lang="eu">Tar artxiboa (konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn (stappað)</comment>
- <comment xml:lang="fr">archive tar (compressée)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ)</comment>
- <comment xml:lang="hr">Tar arhiva (sažeta)</comment>
- <comment xml:lang="hu">Tar archívum (tömörített)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi)</comment>
- <comment xml:lang="it">Archivio tar (compresso)</comment>
- <comment xml:lang="ja">Tar アーカイブ (compress 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(압축) </comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests)</comment>
- <comment xml:lang="nb">Tar-arkiv (komprimert)</comment>
- <comment xml:lang="nl">Tar-archief (ingepakt)</comment>
- <comment xml:lang="nn">Tar-arkiv (pakka)</comment>
- <comment xml:lang="oc">archiu tar (compressat)</comment>
- <comment xml:lang="pl">Archiwum tar (skompresowane)</comment>
- <comment xml:lang="pt">arquivo Tar (comprimido)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen)</comment>
- <comment xml:lang="sq">Arkiv tar (i kompresuar)</comment>
- <comment xml:lang="sr">Тар архива (запакована)</comment>
- <comment xml:lang="sv">Tar-arkiv (komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений)</comment>
- <comment xml:lang="vi">Kho nén tar (đã nén)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (UNIX 格式壓縮)</comment>
+ <comment xml:lang="vi">Kho nén tar (đã nén)</comment>
+ <comment xml:lang="uk">архів tar (стиснений)</comment>
+ <comment xml:lang="tr">Tar arşivi (sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована)</comment>
+ <comment xml:lang="sq">arkiv tar (i kompresuar)</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый)</comment>
+ <comment xml:lang="ro">Arhivă Tar (comprimată)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado)</comment>
+ <comment xml:lang="pt">arquivo Tar (comprimido)</comment>
+ <comment xml:lang="pl">Archiwum tar (skompresowane)</comment>
+ <comment xml:lang="oc">archiu tar (compressat)</comment>
+ <comment xml:lang="nn">Tar-arkiv (pakka)</comment>
+ <comment xml:lang="nl">Tar-archief (ingepakt)</comment>
+ <comment xml:lang="nb">Tar-arkiv (komprimert)</comment>
+ <comment xml:lang="lv">Tar arhīvs (saspiests)</comment>
+ <comment xml:lang="lt">Tar archyvas (suglaudintas)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(압축) </comment>
+ <comment xml:lang="kk">Tar архиві (сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso)</comment>
+ <comment xml:lang="is">Tar safnskrá (þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi)</comment>
+ <comment xml:lang="ia">Archivo Tar (comprimite)</comment>
+ <comment xml:lang="hu">Tar archívum (tömörített)</comment>
+ <comment xml:lang="hr">Tar arhiva (sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ)</comment>
+ <comment xml:lang="gl">arquivo Tar (comprimido)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût)</comment>
+ <comment xml:lang="fr">archive tar (compressée)</comment>
+ <comment xml:lang="fo">Tar skjalasavn (stappað)</comment>
+ <comment xml:lang="fi">Tar-arkisto (pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (konprimitua)</comment>
+ <comment xml:lang="es">archivador Tar (comprimido)</comment>
+ <comment xml:lang="en_GB">Tar archive (compressed)</comment>
+ <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο)</comment>
+ <comment xml:lang="de">Tar-Archiv (komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimovaný)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран</comment>
+ <comment xml:lang="be@latin">Archiŭ tar (skampresavany)</comment>
+ <comment xml:lang="be">архіў tar (сціснуты)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط)</comment>
+ <comment xml:lang="af">Tar-argief (saamgepers)</comment>
<sub-class-of type="application/x-compress"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.tar.Z"/>
<glob pattern="*.taz"/>
</mime-type>
<mime-type type="application/x-tex-gf">
- <comment>generic font file</comment>
- <comment xml:lang="ar">ملف الخط العام</comment>
- <comment xml:lang="be@latin">zvyčajny fajł šryftu</comment>
- <comment xml:lang="bg">Шрифт</comment>
- <comment xml:lang="ca">fitxer de lletra genèrica</comment>
- <comment xml:lang="cs">obecný soubor s fontem</comment>
- <comment xml:lang="da">general skrifttypefil</comment>
- <comment xml:lang="de">Allgemeine Schriftdatei</comment>
- <comment xml:lang="el">Γενικό αρχείο γραμματοσειράς</comment>
- <comment xml:lang="en_GB">generic font file</comment>
- <comment xml:lang="eo">genera tipara dosiero</comment>
- <comment xml:lang="es">tipo de letra genérico</comment>
- <comment xml:lang="eu">letra-tipo orokorra</comment>
- <comment xml:lang="fi">yleinen fonttitiedosto</comment>
- <comment xml:lang="fo">felagsstavasniðsfíla</comment>
- <comment xml:lang="fr">fichier de polices générique</comment>
- <comment xml:lang="ga">comhad cló ginearálta</comment>
- <comment xml:lang="gl">ficheiro de tipo de fonte xenérica</comment>
- <comment xml:lang="he">קובץ גופן גנרי</comment>
- <comment xml:lang="hr">Izvorna datoteka slova</comment>
- <comment xml:lang="hu">általános betűkészletfájl</comment>
- <comment xml:lang="ia">File de typo de litteras generic</comment>
- <comment xml:lang="id">berkas fonta generik</comment>
- <comment xml:lang="it">File tipo carattere generico</comment>
- <comment xml:lang="ja">一般フォントファイル</comment>
- <comment xml:lang="kk">қаріп файлы</comment>
- <comment xml:lang="ko">일반 글꼴 파일</comment>
- <comment xml:lang="lt">bendras šrifto failas</comment>
- <comment xml:lang="lv">vispārēja fonta datne</comment>
- <comment xml:lang="ms">Fail font generik</comment>
- <comment xml:lang="nb">vanlig skriftfil</comment>
- <comment xml:lang="nl">algemeen lettertypebestand</comment>
- <comment xml:lang="nn">vanleg skrifttypefil</comment>
- <comment xml:lang="oc">fichièr de poliças generic</comment>
- <comment xml:lang="pl">Zwykły plik czcionki</comment>
- <comment xml:lang="pt">ficheiro genérico de letra</comment>
- <comment xml:lang="pt_BR">Arquivo de fonte genérico</comment>
- <comment xml:lang="ro">fișier de font generic</comment>
+ <comment>Generic font file</comment>
+ <comment xml:lang="uk">типовий файл шрифту</comment>
+ <comment xml:lang="sv">Allmän typsnittsfil</comment>
<comment xml:lang="ru">Обычный файл шрифта</comment>
- <comment xml:lang="sk">Obyčajný súbor písma</comment>
- <comment xml:lang="sl">izvorna datoteka pisave</comment>
- <comment xml:lang="sq">File lloj gërme i përgjithshëm</comment>
- <comment xml:lang="sr">општа датотека слова</comment>
- <comment xml:lang="sv">allmän typsnittsfil</comment>
- <comment xml:lang="tr">genel yazı tipi dosyası</comment>
- <comment xml:lang="uk">загальний файл шрифту</comment>
- <comment xml:lang="vi">tập tin phông giống loài</comment>
- <comment xml:lang="zh_CN">通用字体文件</comment>
- <comment xml:lang="zh_TW">通用字型檔</comment>
+ <comment xml:lang="pl">Zwykły plik czcionki</comment>
+ <comment xml:lang="ja">汎用フォント</comment>
+ <comment xml:lang="it">File tipo di carattere generico</comment>
+ <comment xml:lang="eu">Letra-tipoen fitxategi orokorra</comment>
+ <comment xml:lang="es">archivo de tipo de letra genérico</comment>
+ <comment xml:lang="de">Allgemeine Schriftdatei</comment>
+ <comment xml:lang="be">файл тыповага шрыфту</comment>
<generic-icon name="font-x-generic"/>
<glob pattern="*.gf"/>
</mime-type>
<mime-type type="application/x-tex-pk">
- <comment>packed font file</comment>
- <comment xml:lang="ar">ملف الخط المرزم</comment>
- <comment xml:lang="be@latin">zapakavany fajł šryftu</comment>
- <comment xml:lang="bg">Шрифт — компресиран</comment>
- <comment xml:lang="ca">fitxer de lletra empaquetada</comment>
- <comment xml:lang="cs">komprimovaný soubor s fontem</comment>
- <comment xml:lang="da">pakket skrifttypefil</comment>
- <comment xml:lang="de">Gepackte Schriftdatei</comment>
- <comment xml:lang="el">Αρχείο συμπιεσμένης γραμματοσειράς</comment>
- <comment xml:lang="en_GB">packed font file</comment>
- <comment xml:lang="eo">pakigita tipara dosiero</comment>
- <comment xml:lang="es">tipo de letra empaquetado</comment>
- <comment xml:lang="eu">Letra-tipo fitxategi paketatua</comment>
- <comment xml:lang="fi">pakattu fonttitiedosto</comment>
- <comment xml:lang="fo">pakkað stavasniðsfíla</comment>
- <comment xml:lang="fr">fichier de polices empaquetées</comment>
- <comment xml:lang="ga">comhad cló pacáilte</comment>
- <comment xml:lang="gl">ficheiro de fonte empaquetada</comment>
- <comment xml:lang="he">קובץ גופן ארוז</comment>
- <comment xml:lang="hr">Zapakirana datoteka slova</comment>
- <comment xml:lang="hu">packed font-fájl</comment>
- <comment xml:lang="ia">File de typos de litteras impacchettate</comment>
- <comment xml:lang="id">berkas fonta terkemas</comment>
- <comment xml:lang="it">File tipo carattere condensato</comment>
- <comment xml:lang="ja">パックされたフォントファイル</comment>
- <comment xml:lang="kk">қаріп файлы (дестеленген)</comment>
- <comment xml:lang="ko">글꼴 묶음 파일</comment>
- <comment xml:lang="lt">supakuotas šrifto failas</comment>
- <comment xml:lang="lv">sapakota fonta datne</comment>
- <comment xml:lang="ms">Fail font dipek</comment>
- <comment xml:lang="nb">pakket skriftfil</comment>
- <comment xml:lang="nl">ingepakt lettertypebestand</comment>
- <comment xml:lang="nn">pakka skrifttypefil</comment>
- <comment xml:lang="oc">fichièr de poliças empaquetadas</comment>
- <comment xml:lang="pl">Plik ze spakowaną czcionką</comment>
- <comment xml:lang="pt">ficheiro de letras empacotadas</comment>
- <comment xml:lang="pt_BR">Arquivo de fonte empacotado</comment>
- <comment xml:lang="ro">fișier font împachetat</comment>
- <comment xml:lang="ru">Сжатый файл шрифта</comment>
- <comment xml:lang="sk">Komprimovaný súbor písma</comment>
- <comment xml:lang="sl">pakirana datoteka pisave</comment>
- <comment xml:lang="sq">File lloj gërmash i kondensuar</comment>
- <comment xml:lang="sr">пакована датотека слова</comment>
- <comment xml:lang="sv">packad typsnittsfil</comment>
- <comment xml:lang="tr">paketlenmiş yazı tipi dosyası</comment>
+ <comment>Packed font file</comment>
<comment xml:lang="uk">запакований файл шрифту</comment>
- <comment xml:lang="vi">tập tin phông chữ đã đóng gói</comment>
- <comment xml:lang="zh_CN">打包的字体文件</comment>
- <comment xml:lang="zh_TW">包裝字型檔</comment>
+ <comment xml:lang="sv">Packad typsnittsfil</comment>
+ <comment xml:lang="ru">Сжатый файл шрифта</comment>
+ <comment xml:lang="pl">Plik ze spakowaną czcionką</comment>
+ <comment xml:lang="it">File tipo di carattere condensato</comment>
+ <comment xml:lang="eu">Letra-tipoen fitxategi paketatua</comment>
+ <comment xml:lang="es">archivo de tipo de letra empaquetado</comment>
+ <comment xml:lang="de">Gepackte Schriftdatei</comment>
+ <comment xml:lang="be">запакаваны файл шрыфту</comment>
<generic-icon name="font-x-generic"/>
<glob pattern="*.pk"/>
</mime-type>
<mime-type type="application/x-tgif">
<comment>TGIF document</comment>
- <comment xml:lang="ar">مستند TGIF</comment>
- <comment xml:lang="ast">Documentu de TGIF</comment>
- <comment xml:lang="be@latin">Dakument TGIF</comment>
- <comment xml:lang="bg">Документ — TGIF</comment>
- <comment xml:lang="ca">document TGIF</comment>
- <comment xml:lang="cs">dokument TGIF</comment>
- <comment xml:lang="da">TGIF-dokument</comment>
- <comment xml:lang="de">TGIF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο TGIF</comment>
- <comment xml:lang="en_GB">TGIF document</comment>
- <comment xml:lang="eo">TGIF-dokumento</comment>
- <comment xml:lang="es">documento TGIF</comment>
- <comment xml:lang="eu">TGIF dokumentua</comment>
- <comment xml:lang="fi">TGIF-asiakirja</comment>
- <comment xml:lang="fo">TGIF skjal</comment>
- <comment xml:lang="fr">document TGIF</comment>
- <comment xml:lang="ga">cáipéis TGIF</comment>
- <comment xml:lang="gl">documento TGIF</comment>
- <comment xml:lang="he">מסמך TGIF</comment>
- <comment xml:lang="hr">TGIF dokument</comment>
- <comment xml:lang="hu">TGIF-dokumentum</comment>
- <comment xml:lang="ia">Documento TGIF</comment>
- <comment xml:lang="id">Dokumen TGIF</comment>
- <comment xml:lang="it">Documento TGIF</comment>
- <comment xml:lang="ja">TGIF ドキュメント</comment>
- <comment xml:lang="kk">TGIF құжаты</comment>
- <comment xml:lang="ko">TGIF 문서</comment>
- <comment xml:lang="lt">TGIF dokumentas</comment>
- <comment xml:lang="lv">TGIF dokuments</comment>
- <comment xml:lang="ms">Dokumen TGIF</comment>
- <comment xml:lang="nb">TGIF-dokument</comment>
- <comment xml:lang="nl">TGIF-document</comment>
- <comment xml:lang="nn">TGIF-dokument</comment>
- <comment xml:lang="oc">document TGIF</comment>
- <comment xml:lang="pl">Dokument TGIF</comment>
- <comment xml:lang="pt">documento TGIF</comment>
- <comment xml:lang="pt_BR">Documento TGIF</comment>
- <comment xml:lang="ro">Document TGIF</comment>
- <comment xml:lang="ru">Документ TGIF</comment>
- <comment xml:lang="sk">Dokument TGIF</comment>
- <comment xml:lang="sl">Dokument TGIF</comment>
- <comment xml:lang="sq">Dokument TGIF</comment>
- <comment xml:lang="sr">ТГИФ документ</comment>
- <comment xml:lang="sv">TGIF-dokument</comment>
- <comment xml:lang="tr">TGIF belgesi</comment>
- <comment xml:lang="uk">документ TGIF</comment>
- <comment xml:lang="vi">Tài liệu TGIF</comment>
- <comment xml:lang="zh_CN">TGIF 文档</comment>
<comment xml:lang="zh_TW">TGIF 文件</comment>
+ <comment xml:lang="zh_CN">TGIF 文档</comment>
+ <comment xml:lang="vi">Tài liệu TGIF</comment>
+ <comment xml:lang="uk">документ TGIF</comment>
+ <comment xml:lang="tr">TGIF belgesi</comment>
+ <comment xml:lang="sv">TGIF-dokument</comment>
+ <comment xml:lang="sr">ТГИФ документ</comment>
+ <comment xml:lang="sq">dokument TGIF</comment>
+ <comment xml:lang="sl">Dokument TGIF</comment>
+ <comment xml:lang="si">TGIF ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument TGIF</comment>
+ <comment xml:lang="ru">Документ TGIF</comment>
+ <comment xml:lang="ro">Document TGIF</comment>
+ <comment xml:lang="pt_BR">Documento TGIF</comment>
+ <comment xml:lang="pt">documento TGIF</comment>
+ <comment xml:lang="pl">Dokument TGIF</comment>
+ <comment xml:lang="oc">document TGIF</comment>
+ <comment xml:lang="nn">TGIF-dokument</comment>
+ <comment xml:lang="nl">TGIF-document</comment>
+ <comment xml:lang="nb">TGIF-dokument</comment>
+ <comment xml:lang="ms">Dokumen TGIF</comment>
+ <comment xml:lang="lv">TGIF dokuments</comment>
+ <comment xml:lang="lt">TGIF dokumentas</comment>
+ <comment xml:lang="ko">TGIF 문서</comment>
+ <comment xml:lang="kk">TGIF құжаты</comment>
+ <comment xml:lang="ja">TGIF ドキュメント</comment>
+ <comment xml:lang="it">Documento TGIF</comment>
+ <comment xml:lang="is">TGIF skjal</comment>
+ <comment xml:lang="id">Dokumen TGIF</comment>
+ <comment xml:lang="ia">Documento TGIF</comment>
+ <comment xml:lang="hu">TGIF-dokumentum</comment>
+ <comment xml:lang="hr">TGIF dokument</comment>
+ <comment xml:lang="he">מסמך TGIF</comment>
+ <comment xml:lang="gl">documento TGIF</comment>
+ <comment xml:lang="ga">cáipéis TGIF</comment>
+ <comment xml:lang="fur">document TGIF</comment>
+ <comment xml:lang="fr">document TGIF</comment>
+ <comment xml:lang="fo">TGIF skjal</comment>
+ <comment xml:lang="fi">TGIF-asiakirja</comment>
+ <comment xml:lang="eu">TGIF dokumentua</comment>
+ <comment xml:lang="es">documento TGIF</comment>
+ <comment xml:lang="eo">TGIF-dokumento</comment>
+ <comment xml:lang="en_GB">TGIF document</comment>
+ <comment xml:lang="el">Έγγραφο TGIF</comment>
+ <comment xml:lang="de">TGIF-Dokument</comment>
+ <comment xml:lang="da">TGIF-dokument</comment>
+ <comment xml:lang="cs">dokument TGIF</comment>
+ <comment xml:lang="ca">document TGIF</comment>
+ <comment xml:lang="bg">Документ — TGIF</comment>
+ <comment xml:lang="be@latin">Dakument TGIF</comment>
+ <comment xml:lang="be">дакумент TGIF</comment>
+ <comment xml:lang="ast">Documentu de TGIF</comment>
+ <comment xml:lang="ar">مستند TGIF</comment>
+ <comment xml:lang="af">TGIF-dokument</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="%TGIF" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="%TGIF" offset="0"/>
</magic>
<glob pattern="*.obj"/>
</mime-type>
<mime-type type="application/x-theme">
- <comment>theme</comment>
- <comment xml:lang="ar">سمة</comment>
- <comment xml:lang="az">örtük</comment>
- <comment xml:lang="be@latin">matyŭ</comment>
- <comment xml:lang="bg">Тема</comment>
- <comment xml:lang="ca">tema</comment>
- <comment xml:lang="cs">motiv</comment>
- <comment xml:lang="cy">thema</comment>
- <comment xml:lang="da">tema</comment>
- <comment xml:lang="de">Thema</comment>
- <comment xml:lang="el">Θέμα</comment>
- <comment xml:lang="en_GB">theme</comment>
- <comment xml:lang="eo">etoso</comment>
- <comment xml:lang="es">tema</comment>
- <comment xml:lang="eu">gaia</comment>
- <comment xml:lang="fi">teema</comment>
- <comment xml:lang="fo">tema</comment>
- <comment xml:lang="fr">thème</comment>
- <comment xml:lang="ga">téama</comment>
- <comment xml:lang="gl">tema</comment>
- <comment xml:lang="he">ערכת נושא</comment>
- <comment xml:lang="hr">Tema</comment>
- <comment xml:lang="hu">téma</comment>
- <comment xml:lang="ia">Thema</comment>
- <comment xml:lang="id">tema</comment>
- <comment xml:lang="it">Tema</comment>
- <comment xml:lang="ja">テーマ</comment>
- <comment xml:lang="ka">თემა</comment>
- <comment xml:lang="kk">тема</comment>
- <comment xml:lang="ko">테마</comment>
- <comment xml:lang="lt">tema</comment>
- <comment xml:lang="lv">motīvs</comment>
- <comment xml:lang="ms">Tema</comment>
- <comment xml:lang="nb">tema</comment>
- <comment xml:lang="nl">thema</comment>
- <comment xml:lang="nn">drakt</comment>
- <comment xml:lang="oc">tèma</comment>
- <comment xml:lang="pl">Motyw</comment>
- <comment xml:lang="pt">tema</comment>
- <comment xml:lang="pt_BR">Tema</comment>
- <comment xml:lang="ro">temă</comment>
- <comment xml:lang="ru">Тема</comment>
- <comment xml:lang="sk">Motív</comment>
- <comment xml:lang="sl">tema</comment>
- <comment xml:lang="sq">Temë</comment>
- <comment xml:lang="sr">тема</comment>
- <comment xml:lang="sv">tema</comment>
- <comment xml:lang="tr">tema</comment>
+ <comment>Theme</comment>
<comment xml:lang="uk">тема</comment>
- <comment xml:lang="vi">sắc thái</comment>
- <comment xml:lang="zh_CN">主题</comment>
- <comment xml:lang="zh_TW">佈景主題</comment>
+ <comment xml:lang="sv">Tema</comment>
+ <comment xml:lang="ru">Тема</comment>
+ <comment xml:lang="pl">Motyw</comment>
+ <comment xml:lang="it">Tema</comment>
+ <comment xml:lang="gl">Tema</comment>
+ <comment xml:lang="eu">Gaia</comment>
+ <comment xml:lang="es">tema</comment>
+ <comment xml:lang="de">Thema</comment>
+ <comment xml:lang="be">тэма</comment>
<sub-class-of type="application/x-desktop"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.theme"/>
</mime-type>
<mime-type type="application/x-toutdoux">
<comment>ToutDoux document</comment>
- <comment xml:lang="ar">مستند ToutDoux</comment>
- <comment xml:lang="ast">Documentu de ToutDoux</comment>
- <comment xml:lang="az">ToutDoux sənədi</comment>
- <comment xml:lang="be@latin">Dakument ToutDoux</comment>
- <comment xml:lang="bg">Документ — ToutDoux</comment>
- <comment xml:lang="ca">document ToutDoux</comment>
- <comment xml:lang="cs">dokument ToutDoux</comment>
- <comment xml:lang="cy">Dogfen ToutDoux</comment>
- <comment xml:lang="da">ToutDoux-dokument</comment>
- <comment xml:lang="de">ToutDoux-Dokument</comment>
- <comment xml:lang="el">Έγγραφο ToutDoux</comment>
- <comment xml:lang="en_GB">ToutDoux document</comment>
- <comment xml:lang="eo">ToutDoux-dokumento</comment>
- <comment xml:lang="es">documento de ToutDoux</comment>
- <comment xml:lang="eu">ToutDoux dokumentua</comment>
- <comment xml:lang="fi">ToutDoux-asiakirja</comment>
- <comment xml:lang="fo">ToutDoux skjal</comment>
- <comment xml:lang="fr">document ToutDoux</comment>
- <comment xml:lang="ga">cáipéis ToutDoux</comment>
- <comment xml:lang="gl">documento de ToutDoux</comment>
- <comment xml:lang="he">מסמך של ToutDoux</comment>
- <comment xml:lang="hr">ToutDoux dokument</comment>
- <comment xml:lang="hu">ToutDoux-dokumentum</comment>
- <comment xml:lang="ia">Documento ToutDoux</comment>
- <comment xml:lang="id">Dokumen ToutDoux</comment>
- <comment xml:lang="it">Documento ToutDoux</comment>
- <comment xml:lang="ja">ToutDoux ドキュメント</comment>
- <comment xml:lang="kk">ToutDoux құжаты</comment>
- <comment xml:lang="ko">ToutDoux 문서</comment>
- <comment xml:lang="lt">ToutDoux dokumentas</comment>
- <comment xml:lang="lv">ToutDoux dokuments</comment>
- <comment xml:lang="ms">Dokumen ToutDoux</comment>
- <comment xml:lang="nb">ToutDoux-dokument</comment>
- <comment xml:lang="nl">ToutDoux-document</comment>
- <comment xml:lang="nn">ToutDoux-dokument</comment>
- <comment xml:lang="oc">document ToutDoux</comment>
- <comment xml:lang="pl">Dokument ToutDoux</comment>
- <comment xml:lang="pt">documento ToutDoux</comment>
- <comment xml:lang="pt_BR">Documento do ToutDoux</comment>
- <comment xml:lang="ro">Document ToutDoux</comment>
- <comment xml:lang="ru">Документ ToutDoux</comment>
- <comment xml:lang="sk">Dokument ToutDoux</comment>
- <comment xml:lang="sl">Dokument ToutDoux</comment>
- <comment xml:lang="sq">Dokument ToutDoux</comment>
- <comment xml:lang="sr">Туду документ</comment>
- <comment xml:lang="sv">ToutDoux-dokument</comment>
- <comment xml:lang="tr">ToutDoux belgesi</comment>
- <comment xml:lang="uk">документ ToutDoux</comment>
- <comment xml:lang="vi">Tài liệu ToutDoux</comment>
- <comment xml:lang="zh_CN">ToutDoux 文档</comment>
<comment xml:lang="zh_TW">ToutDoux 文件</comment>
+ <comment xml:lang="zh_CN">ToutDoux 文档</comment>
+ <comment xml:lang="vi">Tài liệu ToutDoux</comment>
+ <comment xml:lang="uk">документ ToutDoux</comment>
+ <comment xml:lang="tr">ToutDoux belgesi</comment>
+ <comment xml:lang="sv">ToutDoux-dokument</comment>
+ <comment xml:lang="sr">Туду документ</comment>
+ <comment xml:lang="sq">dokument ToutDoux</comment>
+ <comment xml:lang="sl">Dokument ToutDoux</comment>
+ <comment xml:lang="si">ToutDoux ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument ToutDoux</comment>
+ <comment xml:lang="ru">Документ ToutDoux</comment>
+ <comment xml:lang="ro">Document ToutDoux</comment>
+ <comment xml:lang="pt_BR">Documento do ToutDoux</comment>
+ <comment xml:lang="pt">documento ToutDoux</comment>
+ <comment xml:lang="pl">Dokument ToutDoux</comment>
+ <comment xml:lang="oc">document ToutDoux</comment>
+ <comment xml:lang="nn">ToutDoux-dokument</comment>
+ <comment xml:lang="nl">ToutDoux-document</comment>
+ <comment xml:lang="nb">ToutDoux-dokument</comment>
+ <comment xml:lang="ms">Dokumen ToutDoux</comment>
+ <comment xml:lang="lv">ToutDoux dokuments</comment>
+ <comment xml:lang="lt">ToutDoux dokumentas</comment>
+ <comment xml:lang="ko">ToutDoux 문서</comment>
+ <comment xml:lang="kk">ToutDoux құжаты</comment>
+ <comment xml:lang="ja">ToutDoux ドキュメント</comment>
+ <comment xml:lang="it">Documento ToutDoux</comment>
+ <comment xml:lang="is">ToutDoux skjal</comment>
+ <comment xml:lang="id">Dokumen ToutDoux</comment>
+ <comment xml:lang="ia">Documento ToutDoux</comment>
+ <comment xml:lang="hu">ToutDoux-dokumentum</comment>
+ <comment xml:lang="hr">ToutDoux dokument</comment>
+ <comment xml:lang="he">מסמך של ToutDoux</comment>
+ <comment xml:lang="gl">documento de ToutDoux</comment>
+ <comment xml:lang="ga">cáipéis ToutDoux</comment>
+ <comment xml:lang="fur">document ToutDoux</comment>
+ <comment xml:lang="fr">document ToutDoux</comment>
+ <comment xml:lang="fo">ToutDoux skjal</comment>
+ <comment xml:lang="fi">ToutDoux-asiakirja</comment>
+ <comment xml:lang="eu">ToutDoux dokumentua</comment>
+ <comment xml:lang="es">documento de ToutDoux</comment>
+ <comment xml:lang="eo">ToutDoux-dokumento</comment>
+ <comment xml:lang="en_GB">ToutDoux document</comment>
+ <comment xml:lang="el">Έγγραφο ToutDoux</comment>
+ <comment xml:lang="de">ToutDoux-Dokument</comment>
+ <comment xml:lang="da">ToutDoux-dokument</comment>
+ <comment xml:lang="cy">Dogfen ToutDoux</comment>
+ <comment xml:lang="cs">dokument ToutDoux</comment>
+ <comment xml:lang="ca">document ToutDoux</comment>
+ <comment xml:lang="bg">Документ — ToutDoux</comment>
+ <comment xml:lang="be@latin">Dakument ToutDoux</comment>
+ <comment xml:lang="be">дакумент ToutDoux</comment>
+ <comment xml:lang="az">ToutDoux sənədi</comment>
+ <comment xml:lang="ast">Documentu de ToutDoux</comment>
+ <comment xml:lang="ar">مستند ToutDoux</comment>
+ <comment xml:lang="af">ToutDoux-dokument</comment>
<generic-icon name="x-office-document"/>
</mime-type>
<mime-type type="application/x-trash">
- <comment>backup file</comment>
- <comment xml:lang="ar">ملف النسخ الاحتياطي</comment>
- <comment xml:lang="be@latin">zapasny fajł</comment>
- <comment xml:lang="bg">Резервно копие</comment>
- <comment xml:lang="ca">fitxer de còpia de seguretat</comment>
- <comment xml:lang="cs">záložní soubor</comment>
- <comment xml:lang="da">sikkerhedskopi</comment>
- <comment xml:lang="de">Sicherungsdatei</comment>
- <comment xml:lang="el">Αντίγραφο ασφαλείας</comment>
- <comment xml:lang="en_GB">backup file</comment>
- <comment xml:lang="eo">restaŭrkopio</comment>
- <comment xml:lang="es">archivo de respaldo</comment>
- <comment xml:lang="eu">babes-kopiako fitxategia</comment>
- <comment xml:lang="fi">varmuuskopio</comment>
- <comment xml:lang="fo">trygdarritsfíla</comment>
- <comment xml:lang="fr">fichier de sauvegarde</comment>
- <comment xml:lang="ga">comhad cúltaca</comment>
- <comment xml:lang="gl">ficheiro de copia de seguridade</comment>
- <comment xml:lang="he">קובץ גיבוי</comment>
- <comment xml:lang="hr">Datoteka sigurnosne kopije</comment>
- <comment xml:lang="hu">biztonsági mentés</comment>
- <comment xml:lang="ia">Copia de reserva</comment>
- <comment xml:lang="id">berkas cadangan</comment>
- <comment xml:lang="it">File di backup</comment>
- <comment xml:lang="ja">バックアップファイル</comment>
- <comment xml:lang="kk">резервті көшірмесі</comment>
- <comment xml:lang="ko">백업 파일</comment>
- <comment xml:lang="lt">atsarginis failas</comment>
- <comment xml:lang="lv">dublējuma datne</comment>
- <comment xml:lang="ms">Fail backup</comment>
- <comment xml:lang="nb">sikkerhetskopi</comment>
- <comment xml:lang="nl">reservekopiebestand</comment>
- <comment xml:lang="nn">tryggleikskopi</comment>
- <comment xml:lang="oc">fichièr de salvament</comment>
- <comment xml:lang="pl">Plik zapasowy</comment>
- <comment xml:lang="pt">cópia de segurança</comment>
- <comment xml:lang="pt_BR">Arquivo de backup</comment>
- <comment xml:lang="ro">fișier de backup</comment>
+ <comment>Backup file</comment>
+ <comment xml:lang="uk">Файл резервної копії</comment>
+ <comment xml:lang="sv">Säkerhetskopia</comment>
<comment xml:lang="ru">Резервная копия</comment>
- <comment xml:lang="sk">Záložný súbor</comment>
- <comment xml:lang="sl">varnostna kopija datoteke</comment>
- <comment xml:lang="sq">File backup</comment>
- <comment xml:lang="sr">датотека резерве</comment>
- <comment xml:lang="sv">säkerhetskopia</comment>
- <comment xml:lang="tr">yedek dosyası</comment>
- <comment xml:lang="uk">резервна копія</comment>
- <comment xml:lang="vi">tập tin sao lưu</comment>
- <comment xml:lang="zh_CN">备份文件</comment>
- <comment xml:lang="zh_TW">備份檔</comment>
+ <comment xml:lang="pt_BR">Arquivo de backup</comment>
+ <comment xml:lang="pl">Plik zapasowy</comment>
+ <comment xml:lang="ja">控え</comment>
+ <comment xml:lang="it">File di backup</comment>
+ <comment xml:lang="gl">Ficheiro de respaldo</comment>
+ <comment xml:lang="eu">Babeskopia-fitxategia</comment>
+ <comment xml:lang="es">archivo de copia de respaldo</comment>
+ <comment xml:lang="de">Sicherungsdatei</comment>
+ <comment xml:lang="be">рэзервовая копія файла</comment>
<glob pattern="*~"/>
<glob pattern="*%"/>
<glob pattern="*.bak"/>
@@ -21212,208 +22909,183 @@
</mime-type>
<mime-type type="text/troff">
<comment>Troff document</comment>
- <comment xml:lang="ar">مستند Troff</comment>
- <comment xml:lang="ast">Documentu de Troff</comment>
- <comment xml:lang="az">Troff sənədi</comment>
- <comment xml:lang="be@latin">Dakument Troff</comment>
- <comment xml:lang="bg">Документ — Troff</comment>
- <comment xml:lang="ca">document Troff</comment>
- <comment xml:lang="cs">dokument Troff</comment>
- <comment xml:lang="cy">Dogfen troff</comment>
- <comment xml:lang="da">Troffdokument</comment>
- <comment xml:lang="de">Troff-Dokument</comment>
- <comment xml:lang="el">Έγγραφο troff</comment>
- <comment xml:lang="en_GB">Troff document</comment>
- <comment xml:lang="eo">Troff-dokumento</comment>
- <comment xml:lang="es">documento de Troff</comment>
- <comment xml:lang="eu">Troff dokumentua</comment>
- <comment xml:lang="fi">Troff-asiakirja</comment>
- <comment xml:lang="fo">Troff skjal</comment>
- <comment xml:lang="fr">document Troff</comment>
- <comment xml:lang="ga">cáipéis Troff</comment>
- <comment xml:lang="gl">documento Troff</comment>
- <comment xml:lang="he">מסמך Troff</comment>
- <comment xml:lang="hr">Troff dokument</comment>
- <comment xml:lang="hu">Troff-dokumentum</comment>
- <comment xml:lang="ia">Documento Troff</comment>
- <comment xml:lang="id">Dokumen Troff</comment>
- <comment xml:lang="it">Documento Troff</comment>
- <comment xml:lang="ja">Troff 入力ドキュメント</comment>
- <comment xml:lang="kk">Troff құжаты</comment>
- <comment xml:lang="ko">Troff 문서</comment>
- <comment xml:lang="lt">Troff dokumentas</comment>
- <comment xml:lang="lv">Troff dokuments</comment>
- <comment xml:lang="ms">Dokumen Troff</comment>
- <comment xml:lang="nb">Troff-dokument</comment>
- <comment xml:lang="nl">Troff-document</comment>
- <comment xml:lang="nn">Troff-dokument</comment>
- <comment xml:lang="oc">document Troff</comment>
- <comment xml:lang="pl">Dokument Troff</comment>
- <comment xml:lang="pt">documento Troff</comment>
- <comment xml:lang="pt_BR">Documento Troff</comment>
- <comment xml:lang="ro">Document Troff</comment>
- <comment xml:lang="ru">Документ Troff</comment>
- <comment xml:lang="sk">Dokument troff</comment>
- <comment xml:lang="sl">Dokument Troff</comment>
- <comment xml:lang="sq">Dokument Troff</comment>
- <comment xml:lang="sr">Трофф документ</comment>
- <comment xml:lang="sv">Troff-dokument</comment>
- <comment xml:lang="tr">Troff belgesi</comment>
- <comment xml:lang="uk">документ Troff</comment>
- <comment xml:lang="vi">Tài liệu Troff</comment>
- <comment xml:lang="zh_CN">Troff 文档</comment>
<comment xml:lang="zh_TW">Troff 文件</comment>
+ <comment xml:lang="zh_CN">Troff 文档</comment>
+ <comment xml:lang="vi">Tài liệu Troff</comment>
+ <comment xml:lang="uk">документ Troff</comment>
+ <comment xml:lang="tr">Troff belgesi</comment>
+ <comment xml:lang="sv">Troff-dokument</comment>
+ <comment xml:lang="sr">Трофф документ</comment>
+ <comment xml:lang="sq">dokument Troff</comment>
+ <comment xml:lang="sl">Dokument Troff</comment>
+ <comment xml:lang="si">ට්රොෆ් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument troff</comment>
+ <comment xml:lang="ru">Документ Troff</comment>
+ <comment xml:lang="ro">Document Troff</comment>
+ <comment xml:lang="pt_BR">Documento Troff</comment>
+ <comment xml:lang="pt">documento Troff</comment>
+ <comment xml:lang="pl">Dokument Troff</comment>
+ <comment xml:lang="oc">document Troff</comment>
+ <comment xml:lang="nn">Troff-dokument</comment>
+ <comment xml:lang="nl">Troff-document</comment>
+ <comment xml:lang="nb">Troff-dokument</comment>
+ <comment xml:lang="ms">Dokumen Troff</comment>
+ <comment xml:lang="lv">Troff dokuments</comment>
+ <comment xml:lang="lt">Troff dokumentas</comment>
+ <comment xml:lang="ko">Troff 문서</comment>
+ <comment xml:lang="kk">Troff құжаты</comment>
+ <comment xml:lang="ja">Troff 入力ドキュメント</comment>
+ <comment xml:lang="it">Documento Troff</comment>
+ <comment xml:lang="is">Troff skjal</comment>
+ <comment xml:lang="id">Dokumen Troff</comment>
+ <comment xml:lang="ia">Documento Troff</comment>
+ <comment xml:lang="hu">Troff-dokumentum</comment>
+ <comment xml:lang="hr">Troff dokument</comment>
+ <comment xml:lang="he">מסמך Troff</comment>
+ <comment xml:lang="gl">documento Troff</comment>
+ <comment xml:lang="ga">cáipéis Troff</comment>
+ <comment xml:lang="fur">document Troff</comment>
+ <comment xml:lang="fr">document Troff</comment>
+ <comment xml:lang="fo">Troff skjal</comment>
+ <comment xml:lang="fi">Troff-asiakirja</comment>
+ <comment xml:lang="eu">Troff dokumentua</comment>
+ <comment xml:lang="es">documento de Troff</comment>
+ <comment xml:lang="eo">Troff-dokumento</comment>
+ <comment xml:lang="en_GB">Troff document</comment>
+ <comment xml:lang="el">Έγγραφο troff</comment>
+ <comment xml:lang="de">Troff-Dokument</comment>
+ <comment xml:lang="da">Troffdokument</comment>
+ <comment xml:lang="cy">Dogfen troff</comment>
+ <comment xml:lang="cs">dokument Troff</comment>
+ <comment xml:lang="ca">document Troff</comment>
+ <comment xml:lang="bg">Документ — Troff</comment>
+ <comment xml:lang="be@latin">Dakument Troff</comment>
+ <comment xml:lang="be">дакумент Troff</comment>
+ <comment xml:lang="az">Troff sənədi</comment>
+ <comment xml:lang="ast">Documentu de Troff</comment>
+ <comment xml:lang="ar">مستند Troff</comment>
+ <comment xml:lang="af">Troff-dokument</comment>
<sub-class-of type="text/plain"/>
<alias type="application/x-troff"/>
<alias type="text/x-troff"/>
- <magic priority="50">
- <match value='.\\\"' type="string" offset="0"/>
- <match value="'\\\&quot;" type="string" offset="0"/>
- <match value="'.\\\&quot;" type="string" offset="0"/>
- <match value='\\\"' type="string" offset="0"/>
+ <magic>
+ <match type="string" value=".\\\&quot;" offset="0"/>
+ <match type="string" value="'\\\&quot;" offset="0"/>
+ <match type="string" value="'.\\\&quot;" offset="0"/>
+ <match type="string" value="\\\&quot;" offset="0"/>
</magic>
<glob pattern="*.tr"/>
<glob pattern="*.roff"/>
<glob weight="10" pattern="*.t"/>
</mime-type>
<mime-type type="application/x-troff-man">
- <comment>Manpage manual document</comment>
- <comment xml:lang="ca">document de pàgina man</comment>
- <comment xml:lang="cs">manuálová stránka</comment>
- <comment xml:lang="da">Manpage-manualdokument</comment>
- <comment xml:lang="de">Manpage-Handbuchdokument</comment>
- <comment xml:lang="el">Έγγραφο βοήθειας manpage</comment>
- <comment xml:lang="en_GB">Manpage manual document</comment>
- <comment xml:lang="es">documento de manual de Manpage</comment>
- <comment xml:lang="eu">Manpage eskuliburu dokumentua</comment>
- <comment xml:lang="fr">document manuel Manpage</comment>
- <comment xml:lang="ga">cáipéis lámhleabhair Man</comment>
- <comment xml:lang="he">מסמך תיעוד man</comment>
- <comment xml:lang="hr">Manpage dokument priručnika</comment>
- <comment xml:lang="hu">Manpage kézikönyv-dokumentum</comment>
- <comment xml:lang="ia">Pagina de manual "man"</comment>
- <comment xml:lang="id">Dokumen manual manpage</comment>
- <comment xml:lang="it">Documento di manuale manpage</comment>
- <comment xml:lang="kk">Manpage нұсқаулық құжаты</comment>
- <comment xml:lang="ko">맨 페이지 설명서 문서</comment>
- <comment xml:lang="oc">document de manual Manpage</comment>
- <comment xml:lang="pl">Dokument podręcznika stron pomocy</comment>
- <comment xml:lang="pt">documento de ajuda Manpage</comment>
- <comment xml:lang="pt_BR">Documento Manpage</comment>
- <comment xml:lang="ru">Документ справочной системы Manpage</comment>
- <comment xml:lang="sk">Dokument manuálu Manpage</comment>
- <comment xml:lang="sr">документ упутства странице упутства</comment>
- <comment xml:lang="sv">Manpage-manualdokument</comment>
- <comment xml:lang="tr">Man sayfası el kitabı belgesi</comment>
- <comment xml:lang="uk">документ підручника man</comment>
- <comment xml:lang="zh_CN">Manpage 手册文档</comment>
- <comment xml:lang="zh_TW">Manpage 手冊說明文件</comment>
+ <comment>Manual page</comment>
+ <comment xml:lang="zh_CN">手册页</comment>
+ <comment xml:lang="uk">сторінка підручника</comment>
+ <comment xml:lang="tr">Kılavuz sayfası</comment>
+ <comment xml:lang="sv">Manualsida</comment>
+ <comment xml:lang="si">අත්පොත පිටුව</comment>
+ <comment xml:lang="ru">Страница руководства</comment>
+ <comment xml:lang="pt_BR">Página de manual</comment>
+ <comment xml:lang="pl">Strona podręcznika</comment>
+ <comment xml:lang="nl">Handleidingpagina</comment>
+ <comment xml:lang="ko">man 페이지</comment>
+ <comment xml:lang="kk">Нұсқаулық парағы</comment>
+ <comment xml:lang="ja">マニュアルページ</comment>
+ <comment xml:lang="it">Pagina di manuale</comment>
+ <comment xml:lang="hr">Stranica priručnika</comment>
+ <comment xml:lang="gl">Páxina de manual</comment>
+ <comment xml:lang="fi">Manuaalisivu</comment>
+ <comment xml:lang="eu">Eskuliburu-orria</comment>
+ <comment xml:lang="es">página de manual</comment>
+ <comment xml:lang="en_GB">Manual page</comment>
+ <comment xml:lang="de">Handbuchseite</comment>
+ <comment xml:lang="be">старонка даведкі</comment>
+ <comment xml:lang="ar">صفحة دليل</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<glob pattern="*.man"/>
+ <glob pattern="*.[1-9]"/>
</mime-type>
<mime-type type="application/x-troff-man-compressed">
- <comment>manual page (compressed)</comment>
- <comment xml:lang="ar">صفحة المساعدة (مضغوطة)</comment>
- <comment xml:lang="az">man səhifəsi (sıxışdırılmış)</comment>
- <comment xml:lang="be@latin">staronka dapamohi (skampresavanaja)</comment>
- <comment xml:lang="bg">Страница от справочника, компресирана</comment>
- <comment xml:lang="ca">pàgina de manual (amb compressió)</comment>
- <comment xml:lang="cs">manuálová stránka (komprimovaná)</comment>
- <comment xml:lang="cy">tudalen llawlyfr (wedi ei gywasgu)</comment>
- <comment xml:lang="da">manualside (komprimeret)</comment>
- <comment xml:lang="de">Handbuchseite (komprimiert)</comment>
- <comment xml:lang="el">Σελίδα οδηγιών (συμπιεσμένη)</comment>
- <comment xml:lang="en_GB">manual page (compressed)</comment>
- <comment xml:lang="eo">manpaĝo (kunpremita)</comment>
- <comment xml:lang="es">página de manual (comprimida)</comment>
- <comment xml:lang="eu">eskuliburu orria (konprimitua)</comment>
- <comment xml:lang="fi">manuaalisivu (pakattu)</comment>
- <comment xml:lang="fo">handbókasíða (stappað)</comment>
- <comment xml:lang="fr">page de manuel (compressée)</comment>
- <comment xml:lang="ga">leathanach lámhleabhair (comhbhrúite)</comment>
- <comment xml:lang="gl">páxina de manual (comprimida)</comment>
- <comment xml:lang="he">דף עזר (מכווץ)</comment>
- <comment xml:lang="hr">Stranica priručnika (sažeta)</comment>
- <comment xml:lang="hu">kézikönyvoldal (tömörített)</comment>
- <comment xml:lang="ia">Pagina de manual (comprimite)</comment>
- <comment xml:lang="id">halaman manual (terkompresi)</comment>
- <comment xml:lang="it">Pagina di manuale (compressa)</comment>
- <comment xml:lang="ja">(圧縮) man ページ</comment>
- <comment xml:lang="kk">әдістемелік парағы (сығылған)</comment>
- <comment xml:lang="ko">man 페이지(압축)</comment>
- <comment xml:lang="lt">žinyno puslapis (suglaudintas)</comment>
- <comment xml:lang="lv">rokasgrāmatas lapa (saspiesta)</comment>
- <comment xml:lang="ms">Halaman manual (termampat)</comment>
- <comment xml:lang="nb">manualside (komprimert)</comment>
- <comment xml:lang="nl">handleidingspagina (ingepakt)</comment>
- <comment xml:lang="nn">manualside (pakka)</comment>
- <comment xml:lang="oc">pagina de manual (compressat)</comment>
- <comment xml:lang="pl">Strona podręcznika (skompresowana)</comment>
- <comment xml:lang="pt">página de manual (comprimida)</comment>
- <comment xml:lang="pt_BR">Página de manual (compactada)</comment>
- <comment xml:lang="ro">pagină de manual (comprimată)</comment>
- <comment xml:lang="ru">Страница руководства (сжатая)</comment>
- <comment xml:lang="sk">Manuálová stránka (komprimovaná)</comment>
- <comment xml:lang="sl">stran priročnika (stisnjena)</comment>
- <comment xml:lang="sq">Faqe manuali (e kompresuar)</comment>
- <comment xml:lang="sr">страница упутства (запакована)</comment>
- <comment xml:lang="sv">manualsida (komprimerad)</comment>
- <comment xml:lang="tr">kılavuz dosyası (sıkıştırılmış)</comment>
- <comment xml:lang="uk">сторінка посібника (стиснена)</comment>
- <comment xml:lang="vi">trang hướng dẫn (đã nén)</comment>
+ <comment>Manual page (compressed)</comment>
<comment xml:lang="zh_CN">手册页(压缩)</comment>
- <comment xml:lang="zh_TW">手冊頁面 (壓縮版)</comment>
+ <comment xml:lang="uk">сторінка підручника (стиснена)</comment>
+ <comment xml:lang="tr">Kılavuz sayfası (sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Manualsida (komprimerad)</comment>
+ <comment xml:lang="si">අතින් පිටුව (සම්පීඩිත)</comment>
+ <comment xml:lang="ru">Страница руководства (сжатая)</comment>
+ <comment xml:lang="pt_BR">Página de manual (compactada)</comment>
+ <comment xml:lang="pl">Strona podręcznika (skompresowana)</comment>
+ <comment xml:lang="nl">Handleidingpagina (gecomprimeerd)</comment>
+ <comment xml:lang="ko">man 페이지 (압축)</comment>
+ <comment xml:lang="kk">Нұсқаулық парағы (сығылған)</comment>
+ <comment xml:lang="ja">マニュアルページ (圧縮)</comment>
+ <comment xml:lang="it">Pagina di manuale (compressa)</comment>
+ <comment xml:lang="hr">Stranica priručnika (sažeta)</comment>
+ <comment xml:lang="gl">Páxina de manual (comprimida)</comment>
+ <comment xml:lang="fi">Manuaalisivu (pakattu)</comment>
+ <comment xml:lang="eu">Eskuliburu-orria (konprimatua)</comment>
+ <comment xml:lang="es">página de manual (comprimida)</comment>
+ <comment xml:lang="en_GB">Manual page (compressed)</comment>
+ <comment xml:lang="de">Handbuchseite (komprimiert)</comment>
+ <comment xml:lang="be">старонка даведкі (сціснутая)</comment>
+ <comment xml:lang="ar">صفحة دليل (مضغوطة)</comment>
<generic-icon name="text-x-generic"/>
</mime-type>
<mime-type type="application/x-tzo">
<comment>Tar archive (LZO-compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط-LZO)</comment>
- <comment xml:lang="be@latin">Archiŭ tar (LZO-skampresavany)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран с LZO</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió LZO)</comment>
- <comment xml:lang="cs">archiv Tar (komprimovaný pomocí LZO)</comment>
- <comment xml:lang="da">Tar-arkiv (LZO-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (LZO-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με LZO)</comment>
- <comment xml:lang="en_GB">Tar archive (LZO-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con LZO)</comment>
- <comment xml:lang="eu">Tar artxiboa (LZO-rekin konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (LZO-pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn (LZO-stappað)</comment>
- <comment xml:lang="fr">archive tar (compression LZO)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le LZO)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido con LZO)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י LZO)</comment>
- <comment xml:lang="hr">Tar arhiva (LZO sažeta)</comment>
- <comment xml:lang="hu">Tar archívum (LZO-val tömörítve)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite con LZO)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi LZO)</comment>
- <comment xml:lang="it">Archivio tar (compresso con LZO)</comment>
- <comment xml:lang="ja">Tar アーカイブ (LZO 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (LZO-мен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(LZO 압축)</comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas su LZO)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests ar LZO)</comment>
- <comment xml:lang="nb">Tar-arkiv (LZO-komprimert)</comment>
- <comment xml:lang="nl">Tar-archief (ingepakt met LZO)</comment>
- <comment xml:lang="nn">Tar-arkiv (pakka med LZO)</comment>
- <comment xml:lang="oc">archiu tar (compression LZO)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja LZO)</comment>
- <comment xml:lang="pt">arquivo Tar (compressão LZO)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado com LZO)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată LZO)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый lzo)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou LZO)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z LZO)</comment>
- <comment xml:lang="sq">Arkiv tar (i kompresuar me LZO)</comment>
- <comment xml:lang="sr">Тар архива (запакована ЛЗО-ом)</comment>
- <comment xml:lang="sv">Tar-arkiv (LZO-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (LZO ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений LZO)</comment>
- <comment xml:lang="vi">Kho nén tar (đã nén LZO)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (LZO 壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(LZO 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (LZO 格式壓縮)</comment>
+ <comment xml:lang="vi">Kho nén tar (đã nén LZO)</comment>
+ <comment xml:lang="uk">архів tar (стиснений LZO)</comment>
+ <comment xml:lang="tr">Tar arşivi (LZO ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (LZO-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована ЛЗО-ом)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me LZO)</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z LZO)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (LZO-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou LZO)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый lzo)</comment>
+ <comment xml:lang="ro">Arhivă Tar (comprimată LZO)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado com LZO)</comment>
+ <comment xml:lang="pt">arquivo Tar (compressão LZO)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja LZO)</comment>
+ <comment xml:lang="oc">archiu tar (compression LZO)</comment>
+ <comment xml:lang="nn">Tar-arkiv (pakka med LZO)</comment>
+ <comment xml:lang="nl">Tar-archief (ingepakt met LZO)</comment>
+ <comment xml:lang="nb">Tar-arkiv (LZO-komprimert)</comment>
+ <comment xml:lang="lv">Tar arhīvs (saspiests ar LZO)</comment>
+ <comment xml:lang="lt">Tar archyvas (suglaudintas su LZO)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(LZO 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (LZO-мен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (LZO 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con LZO)</comment>
+ <comment xml:lang="is">Tar safnskrá (LZO-þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi LZO)</comment>
+ <comment xml:lang="ia">Archivo Tar (comprimite con LZO)</comment>
+ <comment xml:lang="hu">Tar archívum (LZO tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (LZO sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י LZO)</comment>
+ <comment xml:lang="gl">arquivo Tar (comprimido con LZO)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le LZO)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun LZO)</comment>
+ <comment xml:lang="fr">archive tar (compression LZO)</comment>
+ <comment xml:lang="fo">Tar skjalasavn (LZO-stappað)</comment>
+ <comment xml:lang="fi">Tar-arkisto (LZO-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (LZO-rekin konprimitua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con LZO)</comment>
+ <comment xml:lang="en_GB">Tar archive (LZO-compressed)</comment>
+ <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με LZO)</comment>
+ <comment xml:lang="de">Tar-Archiv (LZO-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (LZO-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimovaný pomocí LZO)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió LZO)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с LZO</comment>
+ <comment xml:lang="be@latin">Archiŭ tar (LZO-skampresavany)</comment>
+ <comment xml:lang="be">архіў tar (сцісканне LZO)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-LZO)</comment>
+ <comment xml:lang="af">Tar-argief (LZO-saamgepers)</comment>
<sub-class-of type="application/x-lzop"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.tar.lzo"/>
@@ -21421,1193 +23093,1402 @@
</mime-type>
<mime-type type="application/x-xz">
<comment>XZ archive</comment>
- <comment xml:lang="ar">أرشيف XZ</comment>
- <comment xml:lang="bg">Архив — XZ</comment>
- <comment xml:lang="ca">arxiu XZ</comment>
- <comment xml:lang="cs">archiv XZ</comment>
- <comment xml:lang="da">XZ-arkiv</comment>
- <comment xml:lang="de">XZ-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο XZ</comment>
- <comment xml:lang="en_GB">XZ archive</comment>
- <comment xml:lang="eo">XZ-arkivo</comment>
- <comment xml:lang="es">archivador XZ</comment>
- <comment xml:lang="eu">XZ artxiboa</comment>
- <comment xml:lang="fi">XZ-arkisto</comment>
- <comment xml:lang="fo">XZ skjalasavn</comment>
- <comment xml:lang="fr">archive XZ</comment>
- <comment xml:lang="ga">cartlann XZ</comment>
- <comment xml:lang="gl">ficheiro XZ</comment>
- <comment xml:lang="he">ארכיון XZ</comment>
- <comment xml:lang="hr">XZ arhiva</comment>
- <comment xml:lang="hu">XZ-archívum</comment>
- <comment xml:lang="ia">Archivo XZ</comment>
- <comment xml:lang="id">Arsip XZ</comment>
- <comment xml:lang="it">Archivio xz</comment>
- <comment xml:lang="ja">XZ アーカイブ</comment>
- <comment xml:lang="kk">XZ архиві</comment>
- <comment xml:lang="ko">XZ 압축 파일</comment>
- <comment xml:lang="lt">XZ archyvas</comment>
- <comment xml:lang="lv">XZ arhīvs</comment>
- <comment xml:lang="nl">XZ archief</comment>
- <comment xml:lang="oc">archiu XZ</comment>
- <comment xml:lang="pl">Archiwum XZ</comment>
- <comment xml:lang="pt">arquivo XZ</comment>
- <comment xml:lang="pt_BR">Pacote XZ</comment>
- <comment xml:lang="ro">Arhivă XZ</comment>
- <comment xml:lang="ru">Архив XZ</comment>
- <comment xml:lang="sk">Archív XZ</comment>
- <comment xml:lang="sl">Datoteka arhiva XZ</comment>
- <comment xml:lang="sr">ИксЗ архива</comment>
- <comment xml:lang="sv">XZ-arkiv</comment>
- <comment xml:lang="tr">XZ arşivi</comment>
- <comment xml:lang="uk">архів XZ</comment>
- <comment xml:lang="zh_CN">XZ 归档文件</comment>
<comment xml:lang="zh_TW">XZ 封存檔</comment>
+ <comment xml:lang="zh_CN">XZ 归档文件</comment>
+ <comment xml:lang="uk">архів XZ</comment>
+ <comment xml:lang="tr">XZ arşivi</comment>
+ <comment xml:lang="sv">XZ-arkiv</comment>
+ <comment xml:lang="sr">ИксЗ архива</comment>
+ <comment xml:lang="sq">arkiv XZ</comment>
+ <comment xml:lang="sl">Datoteka arhiva XZ</comment>
+ <comment xml:lang="si">XZ ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív XZ</comment>
+ <comment xml:lang="ru">Архив XZ</comment>
+ <comment xml:lang="ro">Arhivă XZ</comment>
+ <comment xml:lang="pt_BR">Pacote XZ</comment>
+ <comment xml:lang="pt">arquivo XZ</comment>
+ <comment xml:lang="pl">Archiwum XZ</comment>
+ <comment xml:lang="oc">archiu XZ</comment>
+ <comment xml:lang="nl">XZ archief</comment>
+ <comment xml:lang="lv">XZ arhīvs</comment>
+ <comment xml:lang="lt">XZ archyvas</comment>
+ <comment xml:lang="ko">XZ 압축 파일</comment>
+ <comment xml:lang="kk">XZ архиві</comment>
+ <comment xml:lang="ja">XZ アーカイブ</comment>
+ <comment xml:lang="it">Archivio xz</comment>
+ <comment xml:lang="is">XZ safnskrá</comment>
+ <comment xml:lang="id">Arsip XZ</comment>
+ <comment xml:lang="ia">Archivo XZ</comment>
+ <comment xml:lang="hu">XZ-archívum</comment>
+ <comment xml:lang="hr">XZ arhiva</comment>
+ <comment xml:lang="he">ארכיון XZ</comment>
+ <comment xml:lang="gl">ficheiro XZ</comment>
+ <comment xml:lang="ga">cartlann XZ</comment>
+ <comment xml:lang="fur">archivi XZ</comment>
+ <comment xml:lang="fr">archive XZ</comment>
+ <comment xml:lang="fo">XZ skjalasavn</comment>
+ <comment xml:lang="fi">XZ-arkisto</comment>
+ <comment xml:lang="eu">XZ artxiboa</comment>
+ <comment xml:lang="es">archivador XZ</comment>
+ <comment xml:lang="eo">XZ-arkivo</comment>
+ <comment xml:lang="en_GB">XZ archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο XZ</comment>
+ <comment xml:lang="de">XZ-Archiv</comment>
+ <comment xml:lang="da">XZ-arkiv</comment>
+ <comment xml:lang="cs">archiv XZ</comment>
+ <comment xml:lang="ca">arxiu XZ</comment>
+ <comment xml:lang="bg">Архив — XZ</comment>
+ <comment xml:lang="be">архіў XZ</comment>
+ <comment xml:lang="ar">أرشيف XZ</comment>
+ <comment xml:lang="af">XZ-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="\xfd\x37\x7a\x58\x5a\x00" type="string" offset="0"/>
+ <match type="string" value="\xfd\x37\x7a\x58\x5a\x00" offset="0"/>
</magic>
<glob pattern="*.xz"/>
</mime-type>
<mime-type type="application/x-xz-compressed-tar">
<comment>Tar archive (XZ-compressed)</comment>
- <comment xml:lang="ar">أرشيف Tar (مضغوط-XZ)</comment>
- <comment xml:lang="bg">Архив — tar, компресиран с XZ</comment>
- <comment xml:lang="ca">arxiu tar (amb compressió XZ)</comment>
- <comment xml:lang="cs">archiv Tar (komprimovaný pomocí XZ)</comment>
- <comment xml:lang="da">Tar-arkiv (XZ-komprimeret)</comment>
- <comment xml:lang="de">Tar-Archiv (XZ-komprimiert)</comment>
- <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με XZ)</comment>
- <comment xml:lang="en_GB">Tar archive (XZ-compressed)</comment>
- <comment xml:lang="es">archivador Tar (comprimido con XZ)</comment>
- <comment xml:lang="eu">Tar artxiboa (XZ-rekin konprimitua)</comment>
- <comment xml:lang="fi">Tar-arkisto (XZ-pakattu)</comment>
- <comment xml:lang="fo">Tar skjalasavn(XZ-stappað)</comment>
- <comment xml:lang="fr">archive tar (compression XZ)</comment>
- <comment xml:lang="ga">cartlann Tar (comhbhrúite le XZ)</comment>
- <comment xml:lang="gl">arquivo Tar (comprimido con XZ)</comment>
- <comment xml:lang="he">ארכיון Tar (מכווץ ע״י XZ)</comment>
- <comment xml:lang="hr">Tar arhiva ( XZ sažeta)</comment>
- <comment xml:lang="hu">Tar archívum (XZ-vel tömörítve)</comment>
- <comment xml:lang="ia">Archivo Tar (comprimite con XZ)</comment>
- <comment xml:lang="id">Arsip Tar (terkompresi XZ)</comment>
- <comment xml:lang="it">Archivio tar (compresso con XZ)</comment>
- <comment xml:lang="ja">Tar アーカイブ (XZ 圧縮)</comment>
- <comment xml:lang="kk">Tar архиві (XZ-мен сығылған)</comment>
- <comment xml:lang="ko">TAR 묶음 파일(XZ 압축)</comment>
- <comment xml:lang="lt">Tar archyvas (suglaudintas su XZ)</comment>
- <comment xml:lang="lv">Tar arhīvs (saspiests ar XZ)</comment>
- <comment xml:lang="nl">Tar archief (XZ-compressed)</comment>
- <comment xml:lang="oc">archiu tar (compression XZ)</comment>
- <comment xml:lang="pl">Archiwum tar (kompresja XZ)</comment>
- <comment xml:lang="pt">arquivo Tar (compressão XZ)</comment>
- <comment xml:lang="pt_BR">Pacote Tar (compactado com XZ)</comment>
- <comment xml:lang="ro">Arhivă Tar (comprimată XZ)</comment>
- <comment xml:lang="ru">Архив TAR (сжатый xz)</comment>
- <comment xml:lang="sk">Archív tar (komprimovaný pomocou XZ)</comment>
- <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z XZ)</comment>
- <comment xml:lang="sr">Тар архива (запакована ИксЗ-ом)</comment>
- <comment xml:lang="sv">Tar-arkiv (XZ-komprimerat)</comment>
- <comment xml:lang="tr">Tar arşivi (XZ ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">архів tar (стиснений XZ)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (XZ 壓縮)</comment>
<comment xml:lang="zh_CN">Tar 归档文件(XZ 压缩)</comment>
- <comment xml:lang="zh_TW">Tar 封存檔 (XZ 格式壓縮)</comment>
+ <comment xml:lang="uk">архів tar (стиснений XZ)</comment>
+ <comment xml:lang="tr">Tar arşivi (XZ ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (XZ-komprimerat)</comment>
+ <comment xml:lang="sr">Тар архива (запакована ИксЗ-ом)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me XZ)</comment>
+ <comment xml:lang="sl">Datoteka arhiva Tar (stisnjen z XZ)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (XZ-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Archív Tar (komprimovaný pomocou XZ)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый xz)</comment>
+ <comment xml:lang="ro">Arhivă Tar (comprimată XZ)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado com XZ)</comment>
+ <comment xml:lang="pt">arquivo Tar (compressão XZ)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja XZ)</comment>
+ <comment xml:lang="oc">archiu tar (compression XZ)</comment>
+ <comment xml:lang="nl">Tar archief (XZ-compressed)</comment>
+ <comment xml:lang="lv">Tar arhīvs (saspiests ar XZ)</comment>
+ <comment xml:lang="lt">Tar archyvas (suglaudintas su XZ)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(XZ 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (XZ-мен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (XZ 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con XZ)</comment>
+ <comment xml:lang="is">Tar safnskrá (XZ-þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi XZ)</comment>
+ <comment xml:lang="ia">Archivo Tar (comprimite con XZ)</comment>
+ <comment xml:lang="hu">Tar archívum (XZ tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva ( XZ sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י XZ)</comment>
+ <comment xml:lang="gl">arquivo Tar (comprimido con XZ)</comment>
+ <comment xml:lang="ga">cartlann Tar (comhbhrúite le XZ)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun XZ)</comment>
+ <comment xml:lang="fr">archive tar (compression XZ)</comment>
+ <comment xml:lang="fo">Tar skjalasavn(XZ-stappað)</comment>
+ <comment xml:lang="fi">Tar-arkisto (XZ-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (XZ-rekin konprimitua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con XZ)</comment>
+ <comment xml:lang="en_GB">Tar archive (XZ-compressed)</comment>
+ <comment xml:lang="el">Αρχείο Tar (συμπιεσμένο με XZ)</comment>
+ <comment xml:lang="de">Tar-Archiv (XZ-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (XZ-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimovaný pomocí XZ)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió XZ)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран с XZ</comment>
+ <comment xml:lang="be">архіў tar (сцісканне XZ)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-XZ)</comment>
+ <comment xml:lang="af">Tar-argief (XZ-saamgepers)</comment>
<sub-class-of type="application/x-xz"/>
<generic-icon name="package-x-generic"/>
<glob pattern="*.tar.xz"/>
<glob pattern="*.txz"/>
</mime-type>
+ <mime-type type="application/x-zpaq">
+ <comment>Zpaq Archive</comment>
+ <comment xml:lang="uk">архів zpaq</comment>
+ <comment xml:lang="sv">Zpaq-arkiv</comment>
+ <comment xml:lang="ru">Архив zpaq</comment>
+ <comment xml:lang="pl">Archiwum ZPAQ</comment>
+ <comment xml:lang="it">Archivio zpaq</comment>
+ <comment xml:lang="gl">Arquivo Zpaq</comment>
+ <comment xml:lang="eu">Zpaq artxiboa</comment>
+ <comment xml:lang="es">archivador Zpaq</comment>
+ <comment xml:lang="de">Zpaq-Archiv</comment>
+ <comment xml:lang="be">архіў Zpaq</comment>
+ <generic-icon name="package-x-generic"/>
+ <magic>
+ <match type="string" value="7kSt" offset="0"/>
+ </magic>
+ <glob pattern="*.zpaq"/>
+ </mime-type>
+ <mime-type type="application/zstd">
+ <comment>Zstandard archive</comment>
+ <comment xml:lang="zh_TW">Zstandard 封存檔</comment>
+ <comment xml:lang="zh_CN">Zstandard 归档文件</comment>
+ <comment xml:lang="uk">архів Zstandard</comment>
+ <comment xml:lang="tr">Zstandard arşivi</comment>
+ <comment xml:lang="sv">Zstandard-arkiv</comment>
+ <comment xml:lang="sq">arkiv Zstandard</comment>
+ <comment xml:lang="sl">Arhiv Zstandard</comment>
+ <comment xml:lang="si">Zstandard ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Zstandard</comment>
+ <comment xml:lang="ru">Архив Zstandard</comment>
+ <comment xml:lang="pt_BR">Pacote Zstandard</comment>
+ <comment xml:lang="pl">Archiwum Zstandard</comment>
+ <comment xml:lang="oc">archiu Zstandard</comment>
+ <comment xml:lang="nl">Zstandard-archief</comment>
+ <comment xml:lang="ko">Zstandard 압축 파일</comment>
+ <comment xml:lang="kk">Zstandard архиві</comment>
+ <comment xml:lang="ja">Zstandard アーカイブ</comment>
+ <comment xml:lang="it">Archivio Zstandard</comment>
+ <comment xml:lang="is">Zstandard safnskrá</comment>
+ <comment xml:lang="id">Arsip Zstandard</comment>
+ <comment xml:lang="hu">Zstandard archívum</comment>
+ <comment xml:lang="hr">Zstandard arhiva</comment>
+ <comment xml:lang="he">ארכיון Zstandard</comment>
+ <comment xml:lang="gl">Arquivo de Zstandard</comment>
+ <comment xml:lang="fur">archivi Zstandard</comment>
+ <comment xml:lang="fr">archive Zstandard</comment>
+ <comment xml:lang="fi">Zstandard-arkisto</comment>
+ <comment xml:lang="eu">Zstandard archive</comment>
+ <comment xml:lang="es">archivador Zstandard</comment>
+ <comment xml:lang="en_GB">Zstandard archive</comment>
+ <comment xml:lang="de">Zstandard-Archiv</comment>
+ <comment xml:lang="da">Zstandard-arkiv</comment>
+ <comment xml:lang="cs">archiv Zstandard</comment>
+ <comment xml:lang="ca">arxiu Zstandard</comment>
+ <comment xml:lang="bg">Архив — Zstandard</comment>
+ <comment xml:lang="be">архіў Zstandard</comment>
+ <comment xml:lang="ar">أرشيف Zstandard</comment>
+ <generic-icon name="package-x-generic"/>
+ <magic priority="60">
+ <match type="little32" value="0xFD2FB528" offset="0"/>
+ </magic>
+ <glob pattern="*.zst"/>
+ </mime-type>
+ <mime-type type="application/x-zstd-compressed-tar">
+ <comment>Tar archive (Zstandard-compressed)</comment>
+ <comment xml:lang="zh_TW">Tar 封存檔 (Zstandard 壓縮)</comment>
+ <comment xml:lang="zh_CN">Tar 归档文件(Zstandard 压缩)</comment>
+ <comment xml:lang="uk">архів tar archive (стиснений Zstandard)</comment>
+ <comment xml:lang="tr">Tar arşivi (Zstandard ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">Tar-arkiv (Zstandard-komprimerat)</comment>
+ <comment xml:lang="sq">arkiv tar (ngjeshur me Zstandard)</comment>
+ <comment xml:lang="sl">Arhiv tar (stisnjen, Zstandard)</comment>
+ <comment xml:lang="si">තාර සංරක්ෂිතය (Zstandard-compressed)</comment>
+ <comment xml:lang="ru">Архив TAR (сжатый zstandard)</comment>
+ <comment xml:lang="pt_BR">Pacote Tar (compactado com Zstandard)</comment>
+ <comment xml:lang="pl">Archiwum tar (kompresja Zstandard)</comment>
+ <comment xml:lang="oc">archiu Tar (compressat amb Zstandard)</comment>
+ <comment xml:lang="nl">Tar-archief (gecomprimeerd met Zstandard)</comment>
+ <comment xml:lang="ko">TAR 묶음 파일(Zstandard 압축)</comment>
+ <comment xml:lang="kk">Tar архиві (Zstandard-пен сығылған)</comment>
+ <comment xml:lang="ja">Tar アーカイブ (ZStandard 圧縮)</comment>
+ <comment xml:lang="it">Archivio tar (compresso con Zstandard)</comment>
+ <comment xml:lang="is">Tar safnskrá (Zstandard þjappað)</comment>
+ <comment xml:lang="id">Arsip Tar (terkompresi Zstandard)</comment>
+ <comment xml:lang="hu">Tar archívum (Zstandard tömörítésű)</comment>
+ <comment xml:lang="hr">Tar arhiva (Zstandard-sažeta)</comment>
+ <comment xml:lang="he">ארכיון Tar (מכווץ ע״י Zstandard)</comment>
+ <comment xml:lang="gl">Arquivo Tar (comprimido Zstandard)</comment>
+ <comment xml:lang="fur">archivi Tar (comprimût cun Zstandard)</comment>
+ <comment xml:lang="fr">archive tar (compression Zstandard)</comment>
+ <comment xml:lang="fi">Tar-arkisto (Zstandard-pakattu)</comment>
+ <comment xml:lang="eu">Tar artxiboa (Zstandard-rekin konprimitua)</comment>
+ <comment xml:lang="es">archivador TAR (comprimido con Zstandard)</comment>
+ <comment xml:lang="en_GB">Tar archive (Zstandard-compressed)</comment>
+ <comment xml:lang="de">Tar-Archiv (Zstandard-komprimiert)</comment>
+ <comment xml:lang="da">Tar-arkiv (Zstandard-komprimeret)</comment>
+ <comment xml:lang="cs">archiv Tar (komprimovaný pomocí Zstandard)</comment>
+ <comment xml:lang="ca">arxiu tar (amb compressió Zstandard)</comment>
+ <comment xml:lang="bg">Архив — tar, компресиран със Zstandard</comment>
+ <comment xml:lang="be">архіў tar (сцісканне Zstandard)</comment>
+ <comment xml:lang="ar">أرشيف Tar (مضغوط-Zstandard)</comment>
+ <generic-icon name="package-x-generic"/>
+ <sub-class-of type="application/zstd"/>
+ <glob pattern="*.tar.zst"/>
+ <glob pattern="*.tzst"/>
+ </mime-type>
<mime-type type="application/x-xzpdf">
<comment>PDF document (XZ-compressed)</comment>
- <comment xml:lang="ast">Documentu PDF (comprimíu en XZ)</comment>
- <comment xml:lang="bg">Документ — PDF, компресиран с XZ</comment>
- <comment xml:lang="ca">document PDF (amb compressió XZ)</comment>
- <comment xml:lang="cs">dokument PDF (komprimovaný pomocí XZ)</comment>
- <comment xml:lang="da">PDF-dokument (XZ-komprimeret)</comment>
- <comment xml:lang="de">PDF-Dokument (XZ-komprimiert)</comment>
- <comment xml:lang="el">Έγγραφο PDF (συμπιεσμένο με XZ)</comment>
- <comment xml:lang="en_GB">PDF document (XZ-compressed)</comment>
- <comment xml:lang="es">documento PDF (comprimido con XZ)</comment>
- <comment xml:lang="eu">PDF dokumentua (XZ-rekin konprimitua)</comment>
- <comment xml:lang="fi">PDF-asiakirja (XZ-pakattu)</comment>
- <comment xml:lang="fr">document PDF (compressé XZ)</comment>
- <comment xml:lang="ga">cáipéis PDF (comhbhrúite le XZ)</comment>
- <comment xml:lang="gl">documento PDF (comprimido en XZ)</comment>
- <comment xml:lang="he">מסמך PDF (מכווץ ע״י XZ)</comment>
- <comment xml:lang="hr">PDF dokument ( XZ sažet)</comment>
- <comment xml:lang="hu">PDF dokumentum (XZ-vel tömörített)</comment>
- <comment xml:lang="ia">Documento PDF (comprimite con XZ)</comment>
- <comment xml:lang="id">Dokumen PDF (terkompresi XZ)</comment>
- <comment xml:lang="it">Documento PDF (compresso con XZ)</comment>
- <comment xml:lang="ja">PDF 文書(XZ 圧縮)</comment>
- <comment xml:lang="ka">PDF დოკუმენტი (XZ-ით შეკუმშული)</comment>
- <comment xml:lang="kk">PDF құжаты (XZ-мен сығылған)</comment>
- <comment xml:lang="ko">PDF 문서(XZ 압축)</comment>
- <comment xml:lang="lv">PDF dokuments (saspiests ar XZ)</comment>
- <comment xml:lang="nl">PDF document (XZ-compressed)</comment>
- <comment xml:lang="oc">document PDF (compressat XZ)</comment>
- <comment xml:lang="pl">Dokument PDF (kompresja XZ)</comment>
- <comment xml:lang="pt">documento PDF (compressão XZ)</comment>
- <comment xml:lang="pt_BR">Documento PDF (compactado com XZ)</comment>
- <comment xml:lang="ru">Документ PDF (сжатый xz)</comment>
- <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou XZ)</comment>
- <comment xml:lang="sl">Dokument PDF (XZ-stisnjen)</comment>
- <comment xml:lang="sr">ПДФ документ (запакован ИксЗ-ом)</comment>
- <comment xml:lang="sv">PDF-dokument (XZ-komprimerat)</comment>
- <comment xml:lang="tr">PDF belgesi (XZ ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">документ PDF (стиснений xz)</comment>
+ <comment xml:lang="zh_TW">PDF 文件 (XZ 壓縮)</comment>
<comment xml:lang="zh_CN">PDF 文档(XZ)</comment>
- <comment xml:lang="zh_TW">PDF 文件 (XZ 格式壓縮)</comment>
+ <comment xml:lang="uk">документ PDF (стиснений xz)</comment>
+ <comment xml:lang="tr">PDF belgesi (XZ ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">PDF-dokument (XZ-komprimerat)</comment>
+ <comment xml:lang="sr">ПДФ документ (запакован ИксЗ-ом)</comment>
+ <comment xml:lang="sq">dokument PDF (ngjeshur me XZ)</comment>
+ <comment xml:lang="sl">Dokument PDF (XZ-stisnjen)</comment>
+ <comment xml:lang="si">PDF ලේඛනය (XZ-සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Dokument PDF (komprimovaný pomocou XZ)</comment>
+ <comment xml:lang="ru">Документ PDF (сжатый xz)</comment>
+ <comment xml:lang="pt_BR">Documento PDF (compactado com XZ)</comment>
+ <comment xml:lang="pt">documento PDF (compressão XZ)</comment>
+ <comment xml:lang="pl">Dokument PDF (kompresja XZ)</comment>
+ <comment xml:lang="oc">document PDF (compressat XZ)</comment>
+ <comment xml:lang="nl">PDF document (XZ-compressed)</comment>
+ <comment xml:lang="lv">PDF dokuments (saspiests ar XZ)</comment>
+ <comment xml:lang="ko">PDF 문서(XZ 압축)</comment>
+ <comment xml:lang="kk">PDF құжаты (XZ-мен сығылған)</comment>
+ <comment xml:lang="ka">PDF დოკუმენტი (XZ-ით შეკუმშული)</comment>
+ <comment xml:lang="ja">PDF 文書(XZ 圧縮)</comment>
+ <comment xml:lang="it">Documento PDF (compresso con XZ)</comment>
+ <comment xml:lang="is">PDF skjal (XZ-þjappað)</comment>
+ <comment xml:lang="id">Dokumen PDF (terkompresi XZ)</comment>
+ <comment xml:lang="ia">Documento PDF (comprimite con XZ)</comment>
+ <comment xml:lang="hu">PDF dokumentum (XZ tömörítésű)</comment>
+ <comment xml:lang="hr">PDF dokument ( XZ sažet)</comment>
+ <comment xml:lang="he">מסמך PDF (מכווץ ע״י XZ)</comment>
+ <comment xml:lang="gl">documento PDF (comprimido en XZ)</comment>
+ <comment xml:lang="ga">cáipéis PDF (comhbhrúite le XZ)</comment>
+ <comment xml:lang="fur">document PDF (comprimût cun XZ)</comment>
+ <comment xml:lang="fr">document PDF (compressé XZ)</comment>
+ <comment xml:lang="fi">PDF-asiakirja (XZ-pakattu)</comment>
+ <comment xml:lang="eu">PDF dokumentua (XZ-rekin konprimitua)</comment>
+ <comment xml:lang="es">documento PDF (comprimido con XZ)</comment>
+ <comment xml:lang="en_GB">PDF document (XZ-compressed)</comment>
+ <comment xml:lang="el">Έγγραφο PDF (συμπιεσμένο με XZ)</comment>
+ <comment xml:lang="de">PDF-Dokument (XZ-komprimiert)</comment>
+ <comment xml:lang="da">PDF-dokument (XZ-komprimeret)</comment>
+ <comment xml:lang="cs">dokument PDF (komprimovaný pomocí XZ)</comment>
+ <comment xml:lang="ca">document PDF (amb compressió XZ)</comment>
+ <comment xml:lang="bg">Документ — PDF, компресиран с XZ</comment>
+ <comment xml:lang="be">дакумент PDF (сцісканне XZ)</comment>
+ <comment xml:lang="ast">Documentu PDF (comprimíu en XZ)</comment>
+ <comment xml:lang="ar">مستند PDF (مضغوط-XZ)</comment>
+ <comment xml:lang="af">PDF-dokument (XZ-saamgepers)</comment>
<sub-class-of type="application/x-xz"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.pdf.xz"/>
</mime-type>
<mime-type type="application/x-ustar">
<comment>Ustar archive</comment>
- <comment xml:lang="ar">أرشيف Ustar</comment>
- <comment xml:lang="be@latin">Archiŭ ustar</comment>
- <comment xml:lang="bg">Архив — ustar</comment>
- <comment xml:lang="ca">arxiu ustar</comment>
- <comment xml:lang="cs">archiv Ustar</comment>
- <comment xml:lang="da">Ustararkiv</comment>
- <comment xml:lang="de">Ustar-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Ustar</comment>
- <comment xml:lang="en_GB">Ustar archive</comment>
- <comment xml:lang="eo">Ustar-arkivo</comment>
- <comment xml:lang="es">archivador de Ustar</comment>
- <comment xml:lang="eu">Ustar artxiboa</comment>
- <comment xml:lang="fi">Ustar-arkisto</comment>
- <comment xml:lang="fo">Ustar skjalasavn</comment>
- <comment xml:lang="fr">archive Ustar</comment>
- <comment xml:lang="ga">cartlann Ustar</comment>
- <comment xml:lang="gl">arquivo Ustar</comment>
- <comment xml:lang="he">ארכיון Ustar</comment>
- <comment xml:lang="hr">Ustar arhiva</comment>
- <comment xml:lang="hu">Ustar archívum</comment>
- <comment xml:lang="ia">Archivo Ustar</comment>
- <comment xml:lang="id">Arsip Ustar</comment>
- <comment xml:lang="it">Archivio ustar</comment>
- <comment xml:lang="ja">Ustar アーカイブ</comment>
- <comment xml:lang="kk">Ustar архиві</comment>
- <comment xml:lang="ko">Ustar 압축 파일</comment>
- <comment xml:lang="lt">Ustar archyvas</comment>
- <comment xml:lang="lv">Ustar arhīvs</comment>
- <comment xml:lang="nb">Ustar-arkiv</comment>
- <comment xml:lang="nl">Ustar-archief</comment>
- <comment xml:lang="nn">Ustar-arkiv</comment>
- <comment xml:lang="oc">archiu Ustar</comment>
- <comment xml:lang="pl">Archiwum ustar</comment>
- <comment xml:lang="pt">arquivo Ustar</comment>
- <comment xml:lang="pt_BR">Pacote Ustar</comment>
- <comment xml:lang="ro">Arhivă Ustar</comment>
- <comment xml:lang="ru">Архив Ustar</comment>
- <comment xml:lang="sk">Archív ustar</comment>
- <comment xml:lang="sl">Datoteka arhiva Ustar</comment>
- <comment xml:lang="sq">Arkiv Ustar</comment>
- <comment xml:lang="sr">Устар архива</comment>
- <comment xml:lang="sv">Ustar-arkiv</comment>
- <comment xml:lang="tr">Ustar arşivi</comment>
- <comment xml:lang="uk">архів ustar</comment>
- <comment xml:lang="vi">Kho nén ustar</comment>
- <comment xml:lang="zh_CN">Ustar 归档文件</comment>
<comment xml:lang="zh_TW">Ustar 封存檔</comment>
+ <comment xml:lang="zh_CN">Ustar 归档文件</comment>
+ <comment xml:lang="vi">Kho nén ustar</comment>
+ <comment xml:lang="uk">архів ustar</comment>
+ <comment xml:lang="tr">Ustar arşivi</comment>
+ <comment xml:lang="sv">Ustar-arkiv</comment>
+ <comment xml:lang="sr">Устар архива</comment>
+ <comment xml:lang="sq">arkiv Ustar</comment>
+ <comment xml:lang="sl">Datoteka arhiva Ustar</comment>
+ <comment xml:lang="si">Ustar ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Ustar</comment>
+ <comment xml:lang="ru">Архив Ustar</comment>
+ <comment xml:lang="ro">Arhivă Ustar</comment>
+ <comment xml:lang="pt_BR">Pacote Ustar</comment>
+ <comment xml:lang="pt">arquivo Ustar</comment>
+ <comment xml:lang="pl">Archiwum ustar</comment>
+ <comment xml:lang="oc">archiu Ustar</comment>
+ <comment xml:lang="nn">Ustar-arkiv</comment>
+ <comment xml:lang="nl">Ustar-archief</comment>
+ <comment xml:lang="nb">Ustar-arkiv</comment>
+ <comment xml:lang="lv">Ustar arhīvs</comment>
+ <comment xml:lang="lt">Ustar archyvas</comment>
+ <comment xml:lang="ko">Ustar 압축 파일</comment>
+ <comment xml:lang="kk">Ustar архиві</comment>
+ <comment xml:lang="ja">Ustar アーカイブ</comment>
+ <comment xml:lang="it">Archivio ustar</comment>
+ <comment xml:lang="is">Ustar safnskrá</comment>
+ <comment xml:lang="id">Arsip Ustar</comment>
+ <comment xml:lang="ia">Archivo Ustar</comment>
+ <comment xml:lang="hu">Ustar archívum</comment>
+ <comment xml:lang="hr">Ustar arhiva</comment>
+ <comment xml:lang="he">ארכיון Ustar</comment>
+ <comment xml:lang="gl">arquivo Ustar</comment>
+ <comment xml:lang="ga">cartlann Ustar</comment>
+ <comment xml:lang="fur">archivi Ustar</comment>
+ <comment xml:lang="fr">archive Ustar</comment>
+ <comment xml:lang="fo">Ustar skjalasavn</comment>
+ <comment xml:lang="fi">Ustar-arkisto</comment>
+ <comment xml:lang="eu">Ustar artxiboa</comment>
+ <comment xml:lang="es">archivador de Ustar</comment>
+ <comment xml:lang="eo">Ustar-arkivo</comment>
+ <comment xml:lang="en_GB">Ustar archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Ustar</comment>
+ <comment xml:lang="de">Ustar-Archiv</comment>
+ <comment xml:lang="da">Ustar-arkiv</comment>
+ <comment xml:lang="cs">archiv Ustar</comment>
+ <comment xml:lang="ca">arxiu ustar</comment>
+ <comment xml:lang="bg">Архив — ustar</comment>
+ <comment xml:lang="be@latin">Archiŭ ustar</comment>
+ <comment xml:lang="be">архіў ustar</comment>
+ <comment xml:lang="ar">أرشيف Ustar</comment>
+ <comment xml:lang="af">Ustar-argief</comment>
<generic-icon name="package-x-generic"/>
<glob pattern="*.ustar"/>
</mime-type>
<mime-type type="application/x-wais-source">
<comment>WAIS source code</comment>
- <comment xml:lang="ar">شفرة مصدر WAIS</comment>
- <comment xml:lang="az">WAIS mənbə faylı</comment>
- <comment xml:lang="be@latin">Kryničny kod WAIS</comment>
- <comment xml:lang="bg">Изходен код — WAIS</comment>
- <comment xml:lang="ca">codi font en WAIS</comment>
- <comment xml:lang="cs">zdrojový kód WAIS</comment>
- <comment xml:lang="cy">Ffynhonnell Rhaglen WAIS</comment>
- <comment xml:lang="da">WAIS-kildekode</comment>
- <comment xml:lang="de">WAIS-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας WAIS</comment>
- <comment xml:lang="en_GB">WAIS source code</comment>
- <comment xml:lang="eo">WAIS-fontkodo</comment>
- <comment xml:lang="es">código fuente en WAIS</comment>
- <comment xml:lang="eu">WAIS iturburu-kodea</comment>
- <comment xml:lang="fi">WAIS-lähdekoodi</comment>
- <comment xml:lang="fo">WAIS keldukota</comment>
- <comment xml:lang="fr">code source WAIS</comment>
- <comment xml:lang="ga">cód foinseach WAIS</comment>
- <comment xml:lang="gl">código fonte WAIS</comment>
- <comment xml:lang="he">קוד מקור של WAIS</comment>
- <comment xml:lang="hr">WAIS izvorni kôd</comment>
- <comment xml:lang="hu">WAIS-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte WAIS</comment>
- <comment xml:lang="id">Kode program WAIS</comment>
- <comment xml:lang="it">Codice sorgente WAIS</comment>
- <comment xml:lang="ja">WAIS ソースコード</comment>
- <comment xml:lang="kk">WAIS бастапқы коды</comment>
- <comment xml:lang="ko">WAIS 소스 코드</comment>
- <comment xml:lang="lt">WAIS pradinis kodas</comment>
- <comment xml:lang="lv">WAIS pirmkods</comment>
- <comment xml:lang="ms">Kod sumber WAIS</comment>
- <comment xml:lang="nb">WAIS-kildekode</comment>
- <comment xml:lang="nl">WAIS-broncode</comment>
- <comment xml:lang="nn">WAIS-kjeldekode</comment>
- <comment xml:lang="oc">còde font WAIS</comment>
- <comment xml:lang="pl">Plik źródłowy WAIS</comment>
- <comment xml:lang="pt">código origem WAIS</comment>
- <comment xml:lang="pt_BR">Código-fonte WAIS</comment>
- <comment xml:lang="ro">Cod sursă WAIS</comment>
- <comment xml:lang="ru">Исходный код WAIS</comment>
- <comment xml:lang="sk">Zdrojový kód WAIS</comment>
- <comment xml:lang="sl">Datoteka izvorne kode WAIS</comment>
- <comment xml:lang="sq">Kod burues WAIS</comment>
- <comment xml:lang="sr">ВАИС изворни ко̂д</comment>
- <comment xml:lang="sv">WAIS-källkod</comment>
- <comment xml:lang="tr">WAIS kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою WAIS</comment>
- <comment xml:lang="vi">Mã nguồn WAIS</comment>
- <comment xml:lang="zh_CN">WAIS 源代码</comment>
<comment xml:lang="zh_TW">WAIS 源碼</comment>
+ <comment xml:lang="zh_CN">WAIS 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn WAIS</comment>
+ <comment xml:lang="uk">початковий код мовою WAIS</comment>
+ <comment xml:lang="tr">WAIS kaynak kodu</comment>
+ <comment xml:lang="sv">WAIS-källkod</comment>
+ <comment xml:lang="sr">ВАИС изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim WAIS</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode WAIS</comment>
+ <comment xml:lang="si">WAIS මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód WAIS</comment>
+ <comment xml:lang="ru">Исходный код WAIS</comment>
+ <comment xml:lang="ro">Cod sursă WAIS</comment>
+ <comment xml:lang="pt_BR">Código-fonte WAIS</comment>
+ <comment xml:lang="pt">código origem WAIS</comment>
+ <comment xml:lang="pl">Kod źródłowy WAIS</comment>
+ <comment xml:lang="oc">còde font WAIS</comment>
+ <comment xml:lang="nn">WAIS-kjeldekode</comment>
+ <comment xml:lang="nl">WAIS-broncode</comment>
+ <comment xml:lang="nb">WAIS-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber WAIS</comment>
+ <comment xml:lang="lv">WAIS pirmkods</comment>
+ <comment xml:lang="lt">WAIS pradinis kodas</comment>
+ <comment xml:lang="ko">WAIS 소스 코드</comment>
+ <comment xml:lang="kk">WAIS бастапқы коды</comment>
+ <comment xml:lang="ja">WAIS ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente WAIS</comment>
+ <comment xml:lang="is">WAIS frumkóði</comment>
+ <comment xml:lang="id">Kode program WAIS</comment>
+ <comment xml:lang="ia">Codice-fonte WAIS</comment>
+ <comment xml:lang="hu">WAIS-forráskód</comment>
+ <comment xml:lang="hr">WAIS izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של WAIS</comment>
+ <comment xml:lang="gl">código fonte WAIS</comment>
+ <comment xml:lang="ga">cód foinseach WAIS</comment>
+ <comment xml:lang="fur">codiç sorzint WAIS</comment>
+ <comment xml:lang="fr">code source WAIS</comment>
+ <comment xml:lang="fo">WAIS keldukota</comment>
+ <comment xml:lang="fi">WAIS-lähdekoodi</comment>
+ <comment xml:lang="eu">WAIS iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en WAIS</comment>
+ <comment xml:lang="eo">WAIS-fontkodo</comment>
+ <comment xml:lang="en_GB">WAIS source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας WAIS</comment>
+ <comment xml:lang="de">WAIS-Quelltext</comment>
+ <comment xml:lang="da">WAIS-kildekode</comment>
+ <comment xml:lang="cy">Ffynhonnell Rhaglen WAIS</comment>
+ <comment xml:lang="cs">zdrojový kód WAIS</comment>
+ <comment xml:lang="ca">codi font en WAIS</comment>
+ <comment xml:lang="bg">Изходен код — WAIS</comment>
+ <comment xml:lang="be@latin">Kryničny kod WAIS</comment>
+ <comment xml:lang="be">зыходны код WAIS</comment>
+ <comment xml:lang="az">WAIS mənbə faylı</comment>
+ <comment xml:lang="ar">شفرة مصدر WAIS</comment>
+ <comment xml:lang="af">WAIS-bronkode</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<glob pattern="*.src"/>
</mime-type>
<mime-type type="application/x-wpg">
<comment>WordPerfect/Drawperfect image</comment>
- <comment xml:lang="ar">صورة WordPerfect/Drawperfect</comment>
- <comment xml:lang="be@latin">Vyjava WordPerfect/Drawperfect</comment>
- <comment xml:lang="bg">Изображение — WordPerfect/Drawperfect</comment>
- <comment xml:lang="ca">imatge de WordPerfect/Drawperfect</comment>
- <comment xml:lang="cs">obrázek WordPerfect/Drawperfect</comment>
- <comment xml:lang="da">WordPerfect/Drawperfect-billede</comment>
- <comment xml:lang="de">WordPerfect/DrawPerfect-Bild</comment>
- <comment xml:lang="el">Εικόνα WordPerfect/Drawperfect</comment>
- <comment xml:lang="en_GB">WordPerfect/Drawperfect image</comment>
- <comment xml:lang="eo">WordPerfect/Drawperfect-bildo</comment>
- <comment xml:lang="es">imagen de WordPerfect/Drawperfect</comment>
- <comment xml:lang="eu">WordPerfect/Drawperfect irudia</comment>
- <comment xml:lang="fi">WordPerfect/Drawperfect-kuva</comment>
- <comment xml:lang="fo">WordPerfect/Drawperfect mynd</comment>
- <comment xml:lang="fr">image WordPerfect/DrawPerfect</comment>
- <comment xml:lang="ga">íomhá WordPerfect/Drawperfect</comment>
- <comment xml:lang="gl">imaxe de WordPerfect/DrawPerfect</comment>
- <comment xml:lang="he">תמונה של WordPerfect/Drawperfect</comment>
- <comment xml:lang="hr">WordPerfect/Drawperfect slika</comment>
- <comment xml:lang="hu">WordPerfect/Drawperfect-kép</comment>
- <comment xml:lang="ia">Imagine WordPerfect/DrawPerfect</comment>
- <comment xml:lang="id">Gambar WordPerfect/Drawperfect</comment>
- <comment xml:lang="it">Immagine WordPerfect/Drawperfect</comment>
- <comment xml:lang="ja">WordPerfect/Drawperfect 画像</comment>
- <comment xml:lang="kk">WordPerfect/Drawperfect суреті</comment>
- <comment xml:lang="ko">WordPerfect/Drawperfect 그림</comment>
- <comment xml:lang="lt">WordPerfect/Drawperfect paveikslėlis</comment>
- <comment xml:lang="lv">WordPerfect/Drawperfect attēls</comment>
- <comment xml:lang="ms">Imej WordPerfect/Drawperfect</comment>
- <comment xml:lang="nb">WordPerfect-/Drawperfect-bilde</comment>
- <comment xml:lang="nl">WordPerfect/Drawperfect-afbeelding</comment>
- <comment xml:lang="nn">WordPerfect/DrawPerfect-bilete</comment>
- <comment xml:lang="oc">imatge WordPerfect/DrawPerfect</comment>
- <comment xml:lang="pl">Obraz WordPerfect/DrawPerfect</comment>
- <comment xml:lang="pt">imagem do WordPerfect/Drawperfect</comment>
- <comment xml:lang="pt_BR">Imagem do WordPerfect/Drawperfect</comment>
- <comment xml:lang="ro">Imagine WordPerfect/Drawperfect</comment>
- <comment xml:lang="ru">Изображение WordPerfect/Drawperfect</comment>
- <comment xml:lang="sk">Obrázok WordPerfect/Drawperfect</comment>
- <comment xml:lang="sl">Slikovna datoteka Drawperfect</comment>
- <comment xml:lang="sq">Figurë WordPerfect/Drawperfect</comment>
- <comment xml:lang="sr">Ворд Перфект/Дров Перфект слика</comment>
- <comment xml:lang="sv">WordPerfect/Drawperfect-bild</comment>
- <comment xml:lang="tr">WordPerfect/DrawPerfect görüntüsü</comment>
- <comment xml:lang="uk">зображення WordPerfect/Drawperfect</comment>
- <comment xml:lang="vi">Ảnh WordPerfect/Drawperfect</comment>
- <comment xml:lang="zh_CN">WordPerfect/Drawperfect 图像</comment>
<comment xml:lang="zh_TW">WordPerfect/Drawperfect 影像</comment>
+ <comment xml:lang="zh_CN">WordPerfect/Drawperfect 图像</comment>
+ <comment xml:lang="vi">Ảnh WordPerfect/Drawperfect</comment>
+ <comment xml:lang="uk">зображення WordPerfect/Drawperfect</comment>
+ <comment xml:lang="tr">WordPerfect/DrawPerfect görüntüsü</comment>
+ <comment xml:lang="sv">WordPerfect/Drawperfect-bild</comment>
+ <comment xml:lang="sr">Ворд Перфект/Дров Перфект слика</comment>
+ <comment xml:lang="sq">figurë WordPerfect/Drawperfect</comment>
+ <comment xml:lang="sl">Slikovna datoteka Drawperfect</comment>
+ <comment xml:lang="si">WordPerfect/Drawperfect රූපය</comment>
+ <comment xml:lang="sk">Obrázok WordPerfect/Drawperfect</comment>
+ <comment xml:lang="ru">Изображение WordPerfect/Drawperfect</comment>
+ <comment xml:lang="ro">Imagine WordPerfect/Drawperfect</comment>
+ <comment xml:lang="pt_BR">Imagem do WordPerfect/Drawperfect</comment>
+ <comment xml:lang="pt">imagem do WordPerfect/Drawperfect</comment>
+ <comment xml:lang="pl">Obraz WordPerfect/DrawPerfect</comment>
+ <comment xml:lang="oc">imatge WordPerfect/DrawPerfect</comment>
+ <comment xml:lang="nn">WordPerfect/DrawPerfect-bilete</comment>
+ <comment xml:lang="nl">WordPerfect/Drawperfect-afbeelding</comment>
+ <comment xml:lang="nb">WordPerfect-/Drawperfect-bilde</comment>
+ <comment xml:lang="ms">Imej WordPerfect/Drawperfect</comment>
+ <comment xml:lang="lv">WordPerfect/Drawperfect attēls</comment>
+ <comment xml:lang="lt">WordPerfect/Drawperfect paveikslėlis</comment>
+ <comment xml:lang="ko">WordPerfect/Drawperfect 그림</comment>
+ <comment xml:lang="kk">WordPerfect/Drawperfect суреті</comment>
+ <comment xml:lang="ja">WordPerfect/Drawperfect 画像</comment>
+ <comment xml:lang="it">Immagine WordPerfect/Drawperfect</comment>
+ <comment xml:lang="is">WordPerfect/Drawperfect mynd</comment>
+ <comment xml:lang="id">Gambar WordPerfect/Drawperfect</comment>
+ <comment xml:lang="ia">Imagine WordPerfect/DrawPerfect</comment>
+ <comment xml:lang="hu">WordPerfect/Drawperfect-kép</comment>
+ <comment xml:lang="hr">WordPerfect/Drawperfect slika</comment>
+ <comment xml:lang="he">תמונה של WordPerfect/Drawperfect</comment>
+ <comment xml:lang="gl">imaxe de WordPerfect/DrawPerfect</comment>
+ <comment xml:lang="ga">íomhá WordPerfect/Drawperfect</comment>
+ <comment xml:lang="fur">imagjin WordPerfect/Drawperfect</comment>
+ <comment xml:lang="fr">image WordPerfect/DrawPerfect</comment>
+ <comment xml:lang="fo">WordPerfect/Drawperfect mynd</comment>
+ <comment xml:lang="fi">WordPerfect/Drawperfect-kuva</comment>
+ <comment xml:lang="eu">WordPerfect/Drawperfect irudia</comment>
+ <comment xml:lang="es">imagen de WordPerfect/Drawperfect</comment>
+ <comment xml:lang="eo">WordPerfect/Drawperfect-bildo</comment>
+ <comment xml:lang="en_GB">WordPerfect/Drawperfect image</comment>
+ <comment xml:lang="el">Εικόνα WordPerfect/Drawperfect</comment>
+ <comment xml:lang="de">WordPerfect/DrawPerfect-Bild</comment>
+ <comment xml:lang="da">WordPerfect/Drawperfect-billede</comment>
+ <comment xml:lang="cs">obrázek WordPerfect/Drawperfect</comment>
+ <comment xml:lang="ca">imatge de WordPerfect/Drawperfect</comment>
+ <comment xml:lang="bg">Изображение — WordPerfect/Drawperfect</comment>
+ <comment xml:lang="be@latin">Vyjava WordPerfect/Drawperfect</comment>
+ <comment xml:lang="be">выява WordPerfect/Drawperfect</comment>
+ <comment xml:lang="ar">صورة WordPerfect/Drawperfect</comment>
+ <comment xml:lang="af">WordPerfect/Drawperfect-beeld</comment>
<generic-icon name="image-x-generic"/>
<glob pattern="*.wpg"/>
</mime-type>
<mime-type type="application/x-wonderswan-rom">
<comment>Bandai WonderSwan ROM</comment>
- <comment xml:lang="ca">ROM de Bandai WonderSwan</comment>
- <comment xml:lang="cs">ROM pro Bandai WonderSwan</comment>
- <comment xml:lang="de">Bandai WonderSwan ROM</comment>
- <comment xml:lang="en_GB">Bandai WonderSwan ROM</comment>
- <comment xml:lang="es">ROM de Bandai WonderSwan</comment>
- <comment xml:lang="hr">Bandai WonderSwan ROM</comment>
- <comment xml:lang="hu">Bandai WonderSwan ROM</comment>
- <comment xml:lang="id">ROM Bandai WonderSwan</comment>
- <comment xml:lang="it">ROM Bandai WonderSwan</comment>
- <comment xml:lang="kk">Bandai WonderSwan ROM</comment>
- <comment xml:lang="ko">반다이 원더스완 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Bandai WonderSwan</comment>
- <comment xml:lang="pt_BR">ROM de WonderSwan da Bandai</comment>
- <comment xml:lang="ru">Bandai WonderSwan ROM</comment>
- <comment xml:lang="sk">ROM pre Bandai WonderSwan</comment>
- <comment xml:lang="sv">Bandai WonderSwan-rom</comment>
- <comment xml:lang="uk">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="zh_TW">萬代 WonderSwan ROM</comment>
<comment xml:lang="zh_CN">万代 WonderSwan ROM</comment>
- <comment xml:lang="zh_TW">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="uk">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="tr">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="sv">Bandai WonderSwan-rom</comment>
+ <comment xml:lang="sq">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="si">බන්ඩායි WonderSwan ROM</comment>
+ <comment xml:lang="sk">ROM pre Bandai WonderSwan</comment>
+ <comment xml:lang="ru">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="pt_BR">ROM de WonderSwan da Bandai</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Bandai WonderSwan</comment>
+ <comment xml:lang="nl">Bandai WonderSwan-ROM</comment>
+ <comment xml:lang="ko">반다이 원더스완 롬</comment>
+ <comment xml:lang="kk">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="ja">バンダイワンダースワン ROM</comment>
+ <comment xml:lang="it">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="is">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="id">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="hu">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="hr">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="he">ROM של Bandai WonderSwan</comment>
+ <comment xml:lang="ga">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="fur">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="fr">ROM Bandai WonderSwan</comment>
+ <comment xml:lang="fi">Bandai WonderSwan -ROM</comment>
+ <comment xml:lang="eu">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="es">ROM de Bandai WonderSwan</comment>
+ <comment xml:lang="en_GB">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="de">Bandai-WonderSwan-ROM</comment>
+ <comment xml:lang="da">Bandai WonderSwan-ROM</comment>
+ <comment xml:lang="cs">ROM pro Bandai WonderSwan</comment>
+ <comment xml:lang="ca">ROM de Bandai WonderSwan</comment>
+ <comment xml:lang="bg">ROM — Bandai WonderSwan</comment>
+ <comment xml:lang="be">Bandai WonderSwan ROM</comment>
+ <comment xml:lang="ar">روم Bandai WonderSwan</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.ws"/>
</mime-type>
<mime-type type="application/x-wonderswan-color-rom">
<comment>Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="ca">ROM de Bandai WonderSwan Color</comment>
- <comment xml:lang="cs">ROM pro Bandai WonderSwan Color</comment>
- <comment xml:lang="de">Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="en_GB">Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="es">ROM de Bandai WonderSwan Color</comment>
- <comment xml:lang="hr">Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="hu">Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="id">ROM Bandai WonderSwan Color</comment>
- <comment xml:lang="it">ROM Bandai WonderSwan Color</comment>
- <comment xml:lang="kk">Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="ko">반다이 원더스완 컬러 롬</comment>
- <comment xml:lang="pl">Plik ROM konsoli Bandai WonderSwan Color</comment>
- <comment xml:lang="pt_BR">ROM de WonderSwan Color da Bandai</comment>
- <comment xml:lang="ru">Bandai WonderSwan Color ROM</comment>
- <comment xml:lang="sk">ROM pre Bandai WonderSwan Color</comment>
- <comment xml:lang="sv">Bandai WonderSwan Color-rom</comment>
- <comment xml:lang="uk">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="zh_TW">萬代 WonderSwan Color ROM</comment>
<comment xml:lang="zh_CN">万代 WonderSwan Color ROM</comment>
- <comment xml:lang="zh_TW">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="uk">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="tr">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="sv">Bandai WonderSwan Color-rom</comment>
+ <comment xml:lang="sq">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="si">Bandai WonderSwan වර්ණ ROM</comment>
+ <comment xml:lang="sk">ROM pre Bandai WonderSwan Color</comment>
+ <comment xml:lang="ru">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="pt_BR">ROM de WonderSwan Color da Bandai</comment>
+ <comment xml:lang="pl">Plik ROM konsoli Bandai WonderSwan Color</comment>
+ <comment xml:lang="nl">Bandai WonderSwan Color-ROM</comment>
+ <comment xml:lang="ko">반다이 원더스완 컬러 롬</comment>
+ <comment xml:lang="kk">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="ja">バンダイワンダースワンカラー ROM</comment>
+ <comment xml:lang="it">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="is">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="id">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="hu">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="hr">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="he">ROM של Bandai WonderSwan Color</comment>
+ <comment xml:lang="ga">ROM datha Bandai WonderSwan</comment>
+ <comment xml:lang="fur">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="fr">ROM Bandai WonderSwan Color</comment>
+ <comment xml:lang="fi">Bandai WonderSwan Color -ROM</comment>
+ <comment xml:lang="eu">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="es">ROM de Bandai WonderSwan Color</comment>
+ <comment xml:lang="en_GB">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="de">Bandai-WonderSwan-Color-ROM</comment>
+ <comment xml:lang="da">Bandai WonderSwan Color-ROM</comment>
+ <comment xml:lang="cs">ROM pro Bandai WonderSwan Color</comment>
+ <comment xml:lang="ca">ROM de Bandai WonderSwan Color</comment>
+ <comment xml:lang="bg">ROM — Bandai WonderSwan Color</comment>
+ <comment xml:lang="be">Bandai WonderSwan Color ROM</comment>
+ <comment xml:lang="ar">روم لون Bandai WonderSwan</comment>
<generic-icon name="application-x-executable"/>
<glob pattern="*.wsc"/>
</mime-type>
<mime-type type="application/x-x509-ca-cert">
<comment>DER/PEM/Netscape-encoded X.509 certificate</comment>
- <comment xml:lang="ar">شهادة DER/PEM/Netscape-encoded X.509</comment>
- <comment xml:lang="be@latin">Sertyfikat X.509, zakadavany ŭ DER/PEM/Netscape</comment>
- <comment xml:lang="bg">Сертификат — DER/PEM/Netscape X.509</comment>
- <comment xml:lang="ca">certificat X.509 codificat com DER/PEM/Netscape</comment>
- <comment xml:lang="cs">certifikát X.509 kódovaný jako DER/PEM/Netscape</comment>
- <comment xml:lang="da">DER-/PEM-/Netscapekodet X.509-certifikat</comment>
- <comment xml:lang="de">DER/PEM/Netscape-kodiertes X.509-Zertifikat</comment>
- <comment xml:lang="el">Ψηφιακό πιστοποιητικό X.509 κωδικοποιημένο κατά DER/PEM/Netscape</comment>
- <comment xml:lang="en_GB">DER/PEM/Netscape-encoded X.509 certificate</comment>
- <comment xml:lang="eo">DER/PEM/Netscape-kodigita X.509-atestilo</comment>
- <comment xml:lang="es">certificado X.509 codificado con DER/PEM/Netscape</comment>
- <comment xml:lang="eu">X.509rekin kodetutako DER, PEM edo Netscape zertifikatua</comment>
- <comment xml:lang="fi">DER/PEM/Netscape-koodattu X.509-varmenne</comment>
- <comment xml:lang="fo">DER/PEM/Netscape-encoded X.509 váttan</comment>
- <comment xml:lang="fr">certificat X.509 codé DER/PEM/Netscape</comment>
- <comment xml:lang="ga">teastas X.509 ionchódaithe le DER/PEM/Netscape</comment>
- <comment xml:lang="gl">certificado X.509 codificado con DER/PEM/Netscape</comment>
- <comment xml:lang="he">אישור מסוג X.509 של DER/PEM/Netscape-encoded</comment>
- <comment xml:lang="hr">DER/PEM/Netscape-kodiran X.509 vjerodajnica</comment>
- <comment xml:lang="hu">DER/PEM/Netscape formátumú X.509-tanúsítvány</comment>
- <comment xml:lang="ia">Certificato X.509 codificate in DER/PEM/Netscape</comment>
- <comment xml:lang="id">Sertifikat DER/PEM/Netscape-tersandi X.509</comment>
- <comment xml:lang="it">Certificato X.509 DER/PEM/Netscape</comment>
- <comment xml:lang="ja">DER/PEM/Netscape エンコード X.509 証明書</comment>
- <comment xml:lang="ka">DER/PEM/Netscape კოდირებული X.509 სერტიფიკატი</comment>
- <comment xml:lang="kk">X.509 сертификаты (DER/PEM/Netscape кодталған)</comment>
- <comment xml:lang="ko">DER/PEM/넷스케이프로 인코딩된 X.509 인증서</comment>
- <comment xml:lang="lt">DER/PEM/Netscape-encoded X.509 liudijimas</comment>
- <comment xml:lang="lv">DER/PEM/Netscape-encoded X.509 sertifikāts</comment>
- <comment xml:lang="ms">Sijil X.509 dienkod /DER/PEM/Netscape</comment>
- <comment xml:lang="nb">DER/PEM/Netscape-kodet X.509-sertifikat</comment>
- <comment xml:lang="nl">DER/PEM/Netscape-gecodeerd X.509-certificaat</comment>
- <comment xml:lang="nn">DER/PEM/Netscape-koda X.509-sertifikat</comment>
- <comment xml:lang="oc">certificat X.509 encodat DER/PEM/Netscape</comment>
- <comment xml:lang="pl">Zakodowany w DER/PEM/Netscape certyfikat X.509</comment>
- <comment xml:lang="pt">certificado X.509 codificado com DER/PEM/Netscape</comment>
- <comment xml:lang="pt_BR">Certificado X.509 codificado com DER/PEM/Netscape</comment>
- <comment xml:lang="ro">Certificat DER/PEM/Netscape-codat X.509</comment>
- <comment xml:lang="ru">Сертификат X.509 (DER/PEM/Netscape-закодированный)</comment>
- <comment xml:lang="sk">Certifikát X.509 kódovaný ako DER/PEM/Netscape</comment>
- <comment xml:lang="sl">Datoteka potrdila DER/PEM/Netscape X.509</comment>
- <comment xml:lang="sq">Çertifikatë DER/PEM/Netscape-encoded X.509</comment>
- <comment xml:lang="sr">ДЕР/ПЕМ/Нетскејп кодирано уверење Икс.509</comment>
- <comment xml:lang="sv">DER/PEM/Netscape-kodat X.509-certifikat</comment>
- <comment xml:lang="tr">DER/PEM/Netscape-kodlanmış X.509 sertfikası</comment>
- <comment xml:lang="uk">сертифікат X.509 у форматі DER/PEM/Netscape</comment>
- <comment xml:lang="vi">Chứng nhận X.509 mã hoá bằng Netscape/PEM/DER</comment>
- <comment xml:lang="zh_CN">DER/PEM/Netscape-encoded X.509 证书</comment>
<comment xml:lang="zh_TW">DER/PEM/Netscape 編碼的 X.509 憑證</comment>
+ <comment xml:lang="zh_CN">DER/PEM/Netscape-encoded X.509 证书</comment>
+ <comment xml:lang="vi">Chứng nhận X.509 mã hoá bằng Netscape/PEM/DER</comment>
+ <comment xml:lang="uk">сертифікат X.509 у форматі DER/PEM/Netscape</comment>
+ <comment xml:lang="tr">DER/PEM/Netscape-kodlanmış X.509 sertfikası</comment>
+ <comment xml:lang="sv">DER/PEM/Netscape-kodat X.509-certifikat</comment>
+ <comment xml:lang="sr">ДЕР/ПЕМ/Нетскејп кодирано уверење Икс.509</comment>
+ <comment xml:lang="sq">dëshmi X.509 koduar për DER/PEM/Netscape</comment>
+ <comment xml:lang="sl">Datoteka potrdila DER/PEM/Netscape X.509</comment>
+ <comment xml:lang="si">DER/PEM/Netscape-කේතනය කළ X.509 සහතිකය</comment>
+ <comment xml:lang="sk">Certifikát X.509 kódovaný ako DER/PEM/Netscape</comment>
+ <comment xml:lang="ru">Сертификат X.509 в формате DER/PEM/Netscape</comment>
+ <comment xml:lang="ro">Certificat DER/PEM/Netscape-codat X.509</comment>
+ <comment xml:lang="pt_BR">Certificado X.509 codificado com DER/PEM/Netscape</comment>
+ <comment xml:lang="pt">certificado X.509 codificado com DER/PEM/Netscape</comment>
+ <comment xml:lang="pl">Zakodowany w DER/PEM/Netscape certyfikat X.509</comment>
+ <comment xml:lang="oc">certificat X.509 encodat DER/PEM/Netscape</comment>
+ <comment xml:lang="nn">DER/PEM/Netscape-koda X.509-sertifikat</comment>
+ <comment xml:lang="nl">DER/PEM/Netscape-gecodeerd X.509-certificaat</comment>
+ <comment xml:lang="nb">DER/PEM/Netscape-kodet X.509-sertifikat</comment>
+ <comment xml:lang="ms">Sijil X.509 dienkod /DER/PEM/Netscape</comment>
+ <comment xml:lang="lv">DER/PEM/Netscape-encoded X.509 sertifikāts</comment>
+ <comment xml:lang="lt">DER/PEM/Netscape-encoded X.509 liudijimas</comment>
+ <comment xml:lang="ko">DER/PEM/넷스케이프로 인코딩된 X.509 인증서</comment>
+ <comment xml:lang="kk">X.509 сертификаты (DER/PEM/Netscape кодталған)</comment>
+ <comment xml:lang="ka">DER/PEM/Netscape კოდირებული X.509 სერტიფიკატი</comment>
+ <comment xml:lang="ja">DER/PEM/Netscape エンコード X.509 証明書</comment>
+ <comment xml:lang="it">Certificato X.509 DER/PEM/Netscape</comment>
+ <comment xml:lang="is">DER/PEM/Netscape-kóðað X.509 skilríki</comment>
+ <comment xml:lang="id">Sertifikat DER/PEM/Netscape-tersandi X.509</comment>
+ <comment xml:lang="ia">Certificato X.509 codificate in DER/PEM/Netscape</comment>
+ <comment xml:lang="hu">DER/PEM/Netscape formátumú X.509-tanúsítvány</comment>
+ <comment xml:lang="hr">DER/PEM/Netscape-kodiran X.509 vjerodajnica</comment>
+ <comment xml:lang="he">אישור מסוג X.509 של DER/PEM/Netscape-encoded</comment>
+ <comment xml:lang="gl">certificado X.509 codificado con DER/PEM/Netscape</comment>
+ <comment xml:lang="ga">teastas X.509 ionchódaithe le DER/PEM/Netscape</comment>
+ <comment xml:lang="fur">certificât X.509 codificât cun DER/PEM/Netscape</comment>
+ <comment xml:lang="fr">certificat X.509 codé DER/PEM/Netscape</comment>
+ <comment xml:lang="fo">DER/PEM/Netscape-encoded X.509 váttan</comment>
+ <comment xml:lang="fi">DER/PEM/Netscape-koodattu X.509-varmenne</comment>
+ <comment xml:lang="eu">X.509rekin kodetutako DER, PEM edo Netscape zertifikatua</comment>
+ <comment xml:lang="es">certificado X.509 codificado con DER/PEM/Netscape</comment>
+ <comment xml:lang="eo">DER/PEM/Netscape-kodigita X.509-atestilo</comment>
+ <comment xml:lang="en_GB">DER/PEM/Netscape-encoded X.509 certificate</comment>
+ <comment xml:lang="el">Ψηφιακό πιστοποιητικό X.509 κωδικοποιημένο κατά DER/PEM/Netscape</comment>
+ <comment xml:lang="de">DER/PEM/Netscape-verschlüsseltes X.509-Zertifikat</comment>
+ <comment xml:lang="da">DER-/PEM-/Netscape-kodet X.509-certifikat</comment>
+ <comment xml:lang="cs">certifikát X.509 kódovaný jako DER/PEM/Netscape</comment>
+ <comment xml:lang="ca">certificat X.509 codificat com DER/PEM/Netscape</comment>
+ <comment xml:lang="bg">Сертификат — DER/PEM/Netscape X.509</comment>
+ <comment xml:lang="be@latin">Sertyfikat X.509, zakadavany ŭ DER/PEM/Netscape</comment>
+ <comment xml:lang="be">сертыфікат X.509, закадаваны праз DER/PEM/Netscape</comment>
+ <comment xml:lang="ar">شهادة DER/PEM/Netscape-encoded X.509</comment>
+ <comment xml:lang="af">DER/PEM/Netscape-geënkodeerde X.509-sertifikaat</comment>
<generic-icon name="text-x-generic"/>
+ <magic>
+ <match type="string" value="-----BEGIN CA CERTIFICATE-----" offset="0"/>
+ <match type="string" value="-----BEGIN TRUSTED CERTIFICATE-----" offset="0"/>
+ </magic>
<glob pattern="*.der"/>
<glob pattern="*.crt"/>
<glob pattern="*.cert"/>
<glob pattern="*.pem"/>
</mime-type>
<mime-type type="application/x-zerosize">
- <comment>empty document</comment>
- <comment xml:lang="ar">مستند فارغ</comment>
- <comment xml:lang="ast">documentu baleru</comment>
- <comment xml:lang="be@latin">pusty dakument</comment>
- <comment xml:lang="bg">Празен документ</comment>
- <comment xml:lang="ca">document buit</comment>
- <comment xml:lang="cs">prázdný dokument</comment>
- <comment xml:lang="da">tomt dokument</comment>
- <comment xml:lang="de">Leeres Dokument</comment>
- <comment xml:lang="el">Κενό έγγραφο</comment>
- <comment xml:lang="en_GB">empty document</comment>
- <comment xml:lang="eo">malplena dokumento</comment>
- <comment xml:lang="es">documento vacío</comment>
- <comment xml:lang="eu">dokumentu hutsa</comment>
- <comment xml:lang="fi">tyhjä asiakirja</comment>
- <comment xml:lang="fo">tómt skjal</comment>
- <comment xml:lang="fr">document vide</comment>
- <comment xml:lang="ga">cáipéis fholamh</comment>
- <comment xml:lang="gl">documeto baleiro</comment>
- <comment xml:lang="he">מסמך ריק</comment>
- <comment xml:lang="hr">Prazan dokument</comment>
- <comment xml:lang="hu">üres dokumentum</comment>
- <comment xml:lang="ia">Documento vacue</comment>
- <comment xml:lang="id">dokumen kosong</comment>
- <comment xml:lang="it">Documento vuoto</comment>
- <comment xml:lang="ja">空のドキュメント</comment>
- <comment xml:lang="kk">бос құжат</comment>
- <comment xml:lang="ko">빈 문서</comment>
- <comment xml:lang="lt">tuščias dokumentas</comment>
- <comment xml:lang="lv">tukšs dokuments</comment>
- <comment xml:lang="ms">Dokumen kosong</comment>
- <comment xml:lang="nb">tomt dokument</comment>
- <comment xml:lang="nl">leeg document</comment>
- <comment xml:lang="nn">tomt dokument</comment>
- <comment xml:lang="oc">document void</comment>
- <comment xml:lang="pl">Pusty dokument</comment>
- <comment xml:lang="pt">documento vazio</comment>
- <comment xml:lang="pt_BR">Documento vazio</comment>
- <comment xml:lang="ro">document gol</comment>
- <comment xml:lang="ru">Пустой документ</comment>
- <comment xml:lang="sk">Prázdny dokument</comment>
- <comment xml:lang="sl">prazen dokument</comment>
- <comment xml:lang="sq">Dokument bosh</comment>
- <comment xml:lang="sr">празан документ</comment>
- <comment xml:lang="sv">tomt dokument</comment>
- <comment xml:lang="tr">boş belge</comment>
+ <comment>Empty document</comment>
<comment xml:lang="uk">порожній документ</comment>
- <comment xml:lang="vi">tài liệu rỗng</comment>
- <comment xml:lang="zh_CN">空文档</comment>
- <comment xml:lang="zh_TW">空白文件</comment>
+ <comment xml:lang="sv">Tomt dokument</comment>
+ <comment xml:lang="ru">Пустой документ</comment>
+ <comment xml:lang="pt_BR">Documento em branco</comment>
+ <comment xml:lang="pl">Pusty dokument</comment>
+ <comment xml:lang="ja">空の文書</comment>
+ <comment xml:lang="it">Documento vuoto</comment>
+ <comment xml:lang="eu">Dokumentu hutsa</comment>
+ <comment xml:lang="es">documento vacío</comment>
+ <comment xml:lang="de">Leeres Dokument</comment>
+ <comment xml:lang="be">пусты дакумент</comment>
</mime-type>
<mime-type type="application/x-zoo">
<comment>Zoo archive</comment>
- <comment xml:lang="ar">أرشيف Zoo</comment>
- <comment xml:lang="az">Zoo arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ zoo</comment>
- <comment xml:lang="bg">Архив — zoo</comment>
- <comment xml:lang="ca">arxiu zoo</comment>
- <comment xml:lang="cs">archiv Zoo</comment>
- <comment xml:lang="cy">Archif zoo</comment>
- <comment xml:lang="da">Zooarkiv</comment>
- <comment xml:lang="de">Zoo-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Zoo</comment>
- <comment xml:lang="en_GB">Zoo archive</comment>
- <comment xml:lang="eo">Zoo-arkivo</comment>
- <comment xml:lang="es">archivador Zoo</comment>
- <comment xml:lang="eu">Zoo artxiboa</comment>
- <comment xml:lang="fi">Zoo-arkisto</comment>
- <comment xml:lang="fo">Zoo skjalasavn</comment>
- <comment xml:lang="fr">archive zoo</comment>
- <comment xml:lang="ga">cartlann Zoo</comment>
- <comment xml:lang="gl">ficheiro Zoo</comment>
- <comment xml:lang="he">ארכיון Zoo</comment>
- <comment xml:lang="hr">Zoo arhiva</comment>
- <comment xml:lang="hu">Zoo archívum</comment>
- <comment xml:lang="ia">Archivo Zoo</comment>
- <comment xml:lang="id">Arsip Zoo</comment>
- <comment xml:lang="it">Archivio zoo</comment>
- <comment xml:lang="ja">Zoo アーカイブ</comment>
- <comment xml:lang="kk">Zoo архиві</comment>
- <comment xml:lang="ko">ZOO 압축 파일</comment>
- <comment xml:lang="lt">Zoo archyvas</comment>
- <comment xml:lang="lv">Zoo arhīvs</comment>
- <comment xml:lang="nb">Zoo-arkiv</comment>
- <comment xml:lang="nl">Zoo-archief</comment>
- <comment xml:lang="nn">Zoo-arkiv</comment>
- <comment xml:lang="oc">archiu zoo</comment>
- <comment xml:lang="pl">Archiwum zoo</comment>
- <comment xml:lang="pt">arquivo Zoo</comment>
- <comment xml:lang="pt_BR">Pacote Zoo</comment>
- <comment xml:lang="ro">Arhivă Zoo</comment>
- <comment xml:lang="ru">Архив ZOO</comment>
- <comment xml:lang="sk">Archív zoo</comment>
- <comment xml:lang="sl">Datoteka arhiva ZOO</comment>
- <comment xml:lang="sq">Arkiv zoo</comment>
- <comment xml:lang="sr">Зoo архива</comment>
- <comment xml:lang="sv">Zoo-arkiv</comment>
- <comment xml:lang="tr">Zoo arşivi</comment>
- <comment xml:lang="uk">архів zoo</comment>
- <comment xml:lang="vi">Kho nén zoo</comment>
- <comment xml:lang="zh_CN">Zoo 归档文件</comment>
<comment xml:lang="zh_TW">Zoo 封存檔</comment>
+ <comment xml:lang="zh_CN">Zoo 归档文件</comment>
+ <comment xml:lang="vi">Kho nén zoo</comment>
+ <comment xml:lang="uk">архів zoo</comment>
+ <comment xml:lang="tr">Zoo arşivi</comment>
+ <comment xml:lang="sv">Zoo-arkiv</comment>
+ <comment xml:lang="sr">Зoo архива</comment>
+ <comment xml:lang="sq">arkiv zoo</comment>
+ <comment xml:lang="sl">Datoteka arhiva ZOO</comment>
+ <comment xml:lang="si">සත්වෝද්යාන ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív Zoo</comment>
+ <comment xml:lang="ru">Архив ZOO</comment>
+ <comment xml:lang="ro">Arhivă Zoo</comment>
+ <comment xml:lang="pt_BR">Pacote Zoo</comment>
+ <comment xml:lang="pt">arquivo Zoo</comment>
+ <comment xml:lang="pl">Archiwum zoo</comment>
+ <comment xml:lang="oc">archiu zoo</comment>
+ <comment xml:lang="nn">Zoo-arkiv</comment>
+ <comment xml:lang="nl">Zoo-archief</comment>
+ <comment xml:lang="nb">Zoo-arkiv</comment>
+ <comment xml:lang="lv">Zoo arhīvs</comment>
+ <comment xml:lang="lt">Zoo archyvas</comment>
+ <comment xml:lang="ko">ZOO 압축 파일</comment>
+ <comment xml:lang="kk">Zoo архиві</comment>
+ <comment xml:lang="ja">Zoo アーカイブ</comment>
+ <comment xml:lang="it">Archivio zoo</comment>
+ <comment xml:lang="is">Zoo safnskrá</comment>
+ <comment xml:lang="id">Arsip Zoo</comment>
+ <comment xml:lang="ia">Archivo Zoo</comment>
+ <comment xml:lang="hu">Zoo archívum</comment>
+ <comment xml:lang="hr">Zoo arhiva</comment>
+ <comment xml:lang="he">ארכיון Zoo</comment>
+ <comment xml:lang="gl">ficheiro Zoo</comment>
+ <comment xml:lang="ga">cartlann Zoo</comment>
+ <comment xml:lang="fur">archivi Zoo</comment>
+ <comment xml:lang="fr">archive zoo</comment>
+ <comment xml:lang="fo">Zoo skjalasavn</comment>
+ <comment xml:lang="fi">Zoo-arkisto</comment>
+ <comment xml:lang="eu">Zoo artxiboa</comment>
+ <comment xml:lang="es">archivador Zoo</comment>
+ <comment xml:lang="eo">Zoo-arkivo</comment>
+ <comment xml:lang="en_GB">Zoo archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Zoo</comment>
+ <comment xml:lang="de">Zoo-Archiv</comment>
+ <comment xml:lang="da">Zoo-arkiv</comment>
+ <comment xml:lang="cy">Archif zoo</comment>
+ <comment xml:lang="cs">archiv Zoo</comment>
+ <comment xml:lang="ca">arxiu zoo</comment>
+ <comment xml:lang="bg">Архив — zoo</comment>
+ <comment xml:lang="be@latin">Archiŭ zoo</comment>
+ <comment xml:lang="be">архіў zoo</comment>
+ <comment xml:lang="az">Zoo arxivi</comment>
+ <comment xml:lang="ar">أرشيف Zoo</comment>
+ <comment xml:lang="af">Zoo-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="0xfdc4a7dc" type="little32" offset="20"/>
+ <match type="little32" value="0xfdc4a7dc" offset="20"/>
</magic>
<glob pattern="*.zoo"/>
</mime-type>
<mime-type type="application/xhtml+xml">
<comment>XHTML page</comment>
- <comment xml:lang="ar">صفحة XHTML</comment>
- <comment xml:lang="be@latin">Staronka XHTML</comment>
- <comment xml:lang="bg">Страница — XHTML</comment>
- <comment xml:lang="ca">pàgina XHTML</comment>
- <comment xml:lang="cs">stránka XHTML</comment>
- <comment xml:lang="da">XHTML-side</comment>
- <comment xml:lang="de">XHTML-Seite</comment>
- <comment xml:lang="el">Σελίδα XHTML</comment>
- <comment xml:lang="en_GB">XHTML page</comment>
- <comment xml:lang="eo">XHTML-paĝo</comment>
- <comment xml:lang="es">página XHTML</comment>
- <comment xml:lang="eu">XHTML orria</comment>
- <comment xml:lang="fi">XHTML-sivu</comment>
- <comment xml:lang="fo">XHTML síða</comment>
- <comment xml:lang="fr">page XHTML</comment>
- <comment xml:lang="ga">leathanach XHTML</comment>
- <comment xml:lang="gl">Páxina XHTML</comment>
- <comment xml:lang="he">דף XHTML</comment>
- <comment xml:lang="hr">XHTML stranica</comment>
- <comment xml:lang="hu">XHTML-oldal</comment>
- <comment xml:lang="ia">Pagina XHTML</comment>
- <comment xml:lang="id">Halaman XHTML</comment>
- <comment xml:lang="it">Pagina XHTML</comment>
- <comment xml:lang="ja">XHTML ページ</comment>
- <comment xml:lang="kk">XHTML парағы</comment>
- <comment xml:lang="ko">XHTML 페이지</comment>
- <comment xml:lang="lt">XHTML puslapis</comment>
- <comment xml:lang="lv">XHTML lapa</comment>
- <comment xml:lang="ms">Laman XHTML</comment>
- <comment xml:lang="nb">XHTML-side</comment>
- <comment xml:lang="nl">XHTML-pagina</comment>
- <comment xml:lang="nn">XHTML-side</comment>
- <comment xml:lang="oc">pagina XHTML</comment>
- <comment xml:lang="pl">Strona XHTML</comment>
- <comment xml:lang="pt">página XHTML</comment>
- <comment xml:lang="pt_BR">Página XHTML</comment>
- <comment xml:lang="ro">Pagină XHTML</comment>
- <comment xml:lang="ru">Страница XHTML</comment>
- <comment xml:lang="sk">Stránka XHTML</comment>
- <comment xml:lang="sl">Datoteka spletne strani XHTML</comment>
- <comment xml:lang="sq">Faqe XHTML</comment>
- <comment xml:lang="sr">ИксХТМЛ страница</comment>
- <comment xml:lang="sv">XHTML-sida</comment>
- <comment xml:lang="tr">XHTML sayfası</comment>
- <comment xml:lang="uk">сторінка XHTML</comment>
- <comment xml:lang="vi">Trang XHTML</comment>
- <comment xml:lang="zh_CN">XHTML 页面</comment>
<comment xml:lang="zh_TW">XHTML 網頁</comment>
+ <comment xml:lang="zh_CN">XHTML 页面</comment>
+ <comment xml:lang="vi">Trang XHTML</comment>
+ <comment xml:lang="uk">сторінка XHTML</comment>
+ <comment xml:lang="tr">XHTML sayfası</comment>
+ <comment xml:lang="sv">XHTML-sida</comment>
+ <comment xml:lang="sr">ИксХТМЛ страница</comment>
+ <comment xml:lang="sq">faqe XHTML</comment>
+ <comment xml:lang="sl">Datoteka spletne strani XHTML</comment>
+ <comment xml:lang="si">XHTML පිටුව</comment>
+ <comment xml:lang="sk">Stránka XHTML</comment>
+ <comment xml:lang="ru">Страница XHTML</comment>
+ <comment xml:lang="ro">Pagină XHTML</comment>
+ <comment xml:lang="pt_BR">Página XHTML</comment>
+ <comment xml:lang="pt">página XHTML</comment>
+ <comment xml:lang="pl">Strona XHTML</comment>
+ <comment xml:lang="oc">pagina XHTML</comment>
+ <comment xml:lang="nn">XHTML-side</comment>
+ <comment xml:lang="nl">XHTML-pagina</comment>
+ <comment xml:lang="nb">XHTML-side</comment>
+ <comment xml:lang="ms">Laman XHTML</comment>
+ <comment xml:lang="lv">XHTML lapa</comment>
+ <comment xml:lang="lt">XHTML puslapis</comment>
+ <comment xml:lang="ko">XHTML 페이지</comment>
+ <comment xml:lang="kk">XHTML парағы</comment>
+ <comment xml:lang="ja">XHTML ページ</comment>
+ <comment xml:lang="it">Pagina XHTML</comment>
+ <comment xml:lang="is">XHTML síða</comment>
+ <comment xml:lang="id">Halaman XHTML</comment>
+ <comment xml:lang="ia">Pagina XHTML</comment>
+ <comment xml:lang="hu">XHTML-oldal</comment>
+ <comment xml:lang="hr">XHTML stranica</comment>
+ <comment xml:lang="he">דף XHTML</comment>
+ <comment xml:lang="gl">Páxina XHTML</comment>
+ <comment xml:lang="ga">leathanach XHTML</comment>
+ <comment xml:lang="fur">pagjine XHTML</comment>
+ <comment xml:lang="fr">page XHTML</comment>
+ <comment xml:lang="fo">XHTML síða</comment>
+ <comment xml:lang="fi">XHTML-sivu</comment>
+ <comment xml:lang="eu">XHTML orria</comment>
+ <comment xml:lang="es">página XHTML</comment>
+ <comment xml:lang="eo">XHTML-paĝo</comment>
+ <comment xml:lang="en_GB">XHTML page</comment>
+ <comment xml:lang="el">Σελίδα XHTML</comment>
+ <comment xml:lang="de">XHTML-Seite</comment>
+ <comment xml:lang="da">XHTML-side</comment>
+ <comment xml:lang="cs">stránka XHTML</comment>
+ <comment xml:lang="ca">pàgina XHTML</comment>
+ <comment xml:lang="bg">Страница — XHTML</comment>
+ <comment xml:lang="be@latin">Staronka XHTML</comment>
+ <comment xml:lang="be">старонка XHTML</comment>
+ <comment xml:lang="ar">صفحة XHTML</comment>
+ <comment xml:lang="af">XHTML-bladsy</comment>
<acronym>XHTML</acronym>
<expanded-acronym>Extensible HyperText Markup Language</expanded-acronym>
<sub-class-of type="application/xml"/>
<generic-icon name="text-html"/>
<glob pattern="*.xhtml"/>
<glob pattern="*.xht"/>
+ <glob pattern="*.html"/>
+ <glob pattern="*.htm"/>
<magic priority="60">
- <match value="//W3C//DTD XHTML " type="string" offset="0:256"/>
- <match value="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" type="string" offset="0:256"/>
- <match value="&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml" type="string" offset="0:256"/>
- <match value="&lt;HTML xmlns=&quot;http://www.w3.org/1999/xhtml" type="string" offset="0:256"/>
+ <match type="string" value="//W3C//DTD XHTML " offset="0:256"/>
+ <match type="string" value="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" offset="0:256"/>
+ <match type="string" value="&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml" offset="0:256"/>
+ <match type="string" value="&lt;HTML xmlns=&quot;http://www.w3.org/1999/xhtml" offset="0:256"/>
</magic>
- <root-XML namespaceURI='http://www.w3.org/1999/xhtml' localName='html'/>
+ <root-XML namespaceURI="http://www.w3.org/1999/xhtml" localName="html"/>
</mime-type>
<mime-type type="application/zip">
<comment>Zip archive</comment>
- <comment xml:lang="ar">أرشيف Zip</comment>
- <comment xml:lang="az">Zip arxivi</comment>
- <comment xml:lang="be@latin">Archiŭ zip</comment>
- <comment xml:lang="bg">Архив — zip</comment>
- <comment xml:lang="ca">arxiu zip</comment>
- <comment xml:lang="cs">archiv ZIP</comment>
- <comment xml:lang="cy">Archif ZIP</comment>
- <comment xml:lang="da">Ziparkiv</comment>
- <comment xml:lang="de">Zip-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο Zip</comment>
- <comment xml:lang="en_GB">Zip archive</comment>
- <comment xml:lang="eo">Zip-arkivo</comment>
- <comment xml:lang="es">archivador Zip</comment>
- <comment xml:lang="eu">Zip artxiboa</comment>
- <comment xml:lang="fi">Zip-arkisto</comment>
- <comment xml:lang="fo">Zip skjalasavn</comment>
- <comment xml:lang="fr">archive zip</comment>
- <comment xml:lang="ga">cartlann Zip</comment>
- <comment xml:lang="gl">ficheiro Zip</comment>
- <comment xml:lang="he">ארכיון Zip</comment>
- <comment xml:lang="hr">Zip arhiva</comment>
- <comment xml:lang="hu">Zip archívum</comment>
- <comment xml:lang="ia">Archivo Zip</comment>
- <comment xml:lang="id">Arsip Zip</comment>
- <comment xml:lang="it">Archivio zip</comment>
- <comment xml:lang="ja">Zip アーカイブ</comment>
- <comment xml:lang="kk">Zip архиві</comment>
- <comment xml:lang="ko">ZIP 압축 파일</comment>
- <comment xml:lang="lt">Zip archyvas</comment>
- <comment xml:lang="lv">Zip arhīvs</comment>
- <comment xml:lang="nb">Zip-arkiv</comment>
- <comment xml:lang="nl">Zip-archief</comment>
- <comment xml:lang="nn">Zip-arkiv</comment>
- <comment xml:lang="oc">archiu zip</comment>
- <comment xml:lang="pl">Archiwum ZIP</comment>
- <comment xml:lang="pt">arquivo Zip</comment>
- <comment xml:lang="pt_BR">Pacote Zip</comment>
- <comment xml:lang="ro">Arhivă zip</comment>
- <comment xml:lang="ru">Архив ZIP</comment>
- <comment xml:lang="sk">Archív ZIP</comment>
- <comment xml:lang="sl">Datoteka arhiva ZIP</comment>
- <comment xml:lang="sq">Arkiv zip</comment>
- <comment xml:lang="sr">Зип архива</comment>
- <comment xml:lang="sv">Zip-arkiv</comment>
- <comment xml:lang="tr">Zip arşivi</comment>
- <comment xml:lang="uk">архів zip</comment>
- <comment xml:lang="vi">Kho nén zip</comment>
- <comment xml:lang="zh_CN">Zip 归档文件</comment>
<comment xml:lang="zh_TW">Zip 封存檔</comment>
+ <comment xml:lang="zh_CN">Zip 归档文件</comment>
+ <comment xml:lang="vi">Kho nén zip</comment>
+ <comment xml:lang="uk">архів zip</comment>
+ <comment xml:lang="tr">Zip arşivi</comment>
+ <comment xml:lang="sv">Zip-arkiv</comment>
+ <comment xml:lang="sr">Зип архива</comment>
+ <comment xml:lang="sq">arkiv zip</comment>
+ <comment xml:lang="sl">Datoteka arhiva ZIP</comment>
+ <comment xml:lang="si">Zip සංරක්ෂිතය</comment>
+ <comment xml:lang="sk">Archív ZIP</comment>
+ <comment xml:lang="ru">Архив ZIP</comment>
+ <comment xml:lang="ro">Arhivă zip</comment>
+ <comment xml:lang="pt_BR">Pacote Zip</comment>
+ <comment xml:lang="pt">arquivo Zip</comment>
+ <comment xml:lang="pl">Archiwum ZIP</comment>
+ <comment xml:lang="oc">archiu zip</comment>
+ <comment xml:lang="nn">Zip-arkiv</comment>
+ <comment xml:lang="nl">Zip-archief</comment>
+ <comment xml:lang="nb">Zip-arkiv</comment>
+ <comment xml:lang="lv">Zip arhīvs</comment>
+ <comment xml:lang="lt">Zip archyvas</comment>
+ <comment xml:lang="ko">ZIP 압축 파일</comment>
+ <comment xml:lang="kk">Zip архиві</comment>
+ <comment xml:lang="ja">Zip アーカイブ</comment>
+ <comment xml:lang="it">Archivio zip</comment>
+ <comment xml:lang="is">Zip safnskrá</comment>
+ <comment xml:lang="id">Arsip Zip</comment>
+ <comment xml:lang="ia">Archivo Zip</comment>
+ <comment xml:lang="hu">Zip archívum</comment>
+ <comment xml:lang="hr">Zip arhiva</comment>
+ <comment xml:lang="he">ארכיון Zip</comment>
+ <comment xml:lang="gl">ficheiro Zip</comment>
+ <comment xml:lang="ga">cartlann Zip</comment>
+ <comment xml:lang="fur">archivi Zip</comment>
+ <comment xml:lang="fr">archive zip</comment>
+ <comment xml:lang="fo">Zip skjalasavn</comment>
+ <comment xml:lang="fi">Zip-arkisto</comment>
+ <comment xml:lang="eu">Zip artxiboa</comment>
+ <comment xml:lang="es">archivador Zip</comment>
+ <comment xml:lang="eo">Zip-arkivo</comment>
+ <comment xml:lang="en_GB">Zip archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο Zip</comment>
+ <comment xml:lang="de">Zip-Archiv</comment>
+ <comment xml:lang="da">Zip-arkiv</comment>
+ <comment xml:lang="cy">Archif ZIP</comment>
+ <comment xml:lang="cs">archiv ZIP</comment>
+ <comment xml:lang="ca">arxiu zip</comment>
+ <comment xml:lang="bg">Архив — zip</comment>
+ <comment xml:lang="be@latin">Archiŭ zip</comment>
+ <comment xml:lang="be">архіў zip</comment>
+ <comment xml:lang="az">Zip arxivi</comment>
+ <comment xml:lang="ar">أرشيف Zip</comment>
+ <comment xml:lang="af">Zip-argief</comment>
<alias type="application/x-zip-compressed"/>
<alias type="application/x-zip"/>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="PK\003\004" type="string" offset="0"/>
+ <match type="string" value="PK\003\004" offset="0"/>
</magic>
<glob pattern="*.zip"/>
+ <glob pattern="*.zipx"/>
</mime-type>
<mime-type type="application/x-ms-wim">
- <comment>WIM disk Image</comment>
- <comment xml:lang="ca">imatge de disc WIM</comment>
- <comment xml:lang="cs">obraz disku WIM</comment>
- <comment xml:lang="da">WIM-diskaftryk</comment>
- <comment xml:lang="de">WIM-Datenträgerabbild</comment>
- <comment xml:lang="el">Εικόνα δίσκου WIM</comment>
- <comment xml:lang="en_GB">WIM disk Image</comment>
- <comment xml:lang="es">imagen de disco WIM</comment>
- <comment xml:lang="eu">WIM disko irudia</comment>
- <comment xml:lang="fi">WIM-levytiedosto</comment>
- <comment xml:lang="fr">image disque WIM</comment>
- <comment xml:lang="ga">íomhá diosca WIM</comment>
- <comment xml:lang="he">דמות דיסק WIM</comment>
- <comment xml:lang="hr">WIM slika diska</comment>
- <comment xml:lang="hu">WIM lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco WIM</comment>
- <comment xml:lang="id">Image disk WIM</comment>
- <comment xml:lang="it">Immagine disco WIM</comment>
- <comment xml:lang="kk">WIM диск бейнесі</comment>
- <comment xml:lang="ko">WIM 디스크 이미지</comment>
- <comment xml:lang="oc">imatge disc WIM</comment>
- <comment xml:lang="pl">Obraz dysku WIM</comment>
- <comment xml:lang="pt">imagem de disco WIM</comment>
- <comment xml:lang="pt_BR">Imagem de disco WIM</comment>
- <comment xml:lang="ru">Образ диска WIM</comment>
- <comment xml:lang="sk">Obraz disku WIM</comment>
- <comment xml:lang="sr">слика диска ВИМ-а</comment>
- <comment xml:lang="sv">WIM-diskavbild</comment>
- <comment xml:lang="tr">WIM disk kalıbı</comment>
- <comment xml:lang="uk">образ диска WIM</comment>
- <comment xml:lang="zh_CN">WIM 磁盘映像</comment>
+ <comment>WIM disk image</comment>
<comment xml:lang="zh_TW">WIM 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">WIM 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска WIM</comment>
+ <comment xml:lang="tr">WIM disk görüntüsü</comment>
+ <comment xml:lang="sv">WIM-diskavbildning</comment>
+ <comment xml:lang="sq">pamje disku WIM</comment>
+ <comment xml:lang="sl">Slika diska WIM</comment>
+ <comment xml:lang="si">WIM තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku WIM</comment>
+ <comment xml:lang="ru">Образ диска WIM</comment>
+ <comment xml:lang="pt_BR">Imagem de disco WIM</comment>
+ <comment xml:lang="pl">Obraz dysku WIM</comment>
+ <comment xml:lang="nl">WIM-schijfkopiebestand</comment>
+ <comment xml:lang="ko">WIM 디스크 이미지</comment>
+ <comment xml:lang="kk">WIM диск бейнесі</comment>
+ <comment xml:lang="ja">WIM ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco WIM</comment>
+ <comment xml:lang="is">WIM diskmynd</comment>
+ <comment xml:lang="id">Image disk WIM</comment>
+ <comment xml:lang="hu">WIM lemezkép</comment>
+ <comment xml:lang="hr">WIM slika diska</comment>
+ <comment xml:lang="he">דמות כונן WIM</comment>
+ <comment xml:lang="fr">image disque WIM</comment>
+ <comment xml:lang="fi">WIM-levykuva</comment>
+ <comment xml:lang="eu">WIM disko irudia</comment>
+ <comment xml:lang="es">imagen de disco WIM</comment>
+ <comment xml:lang="en_GB">WIM disk image</comment>
+ <comment xml:lang="de">WIM-Datenträgerabbild</comment>
+ <comment xml:lang="da">WIM-diskaftryk</comment>
+ <comment xml:lang="ca">imatge de disc WIM</comment>
+ <comment xml:lang="bg">Диск — WIM</comment>
+ <comment xml:lang="be">вобраз дыска WIM</comment>
+ <comment xml:lang="ar">صورة قرص WIM</comment>
<acronym>WIM</acronym>
<expanded-acronym>Windows Imaging Format</expanded-acronym>
<magic>
- <match value="MSWIM\000\000\000" type="string" offset="0"/>
+ <match type="string" value="MSWIM\000\000\000" offset="0"/>
</magic>
<glob pattern="*.wim"/>
<glob pattern="*.swm"/>
</mime-type>
<mime-type type="audio/ac3">
<comment>Dolby Digital audio</comment>
- <comment xml:lang="ar">Dolby Digital سمعي</comment>
- <comment xml:lang="az">Dolby Digital audio</comment>
- <comment xml:lang="be@latin">Aŭdyjo Dolby Digital</comment>
- <comment xml:lang="bg">Аудио — Dolby Digital</comment>
- <comment xml:lang="ca">àudio de Dolby Digital</comment>
- <comment xml:lang="cs">zvuk Dolby Digital</comment>
- <comment xml:lang="cy">Sain Dolby Digital</comment>
- <comment xml:lang="da">Dolby Ditital-lyd</comment>
- <comment xml:lang="de">Dolby-Digital-Audio</comment>
- <comment xml:lang="el">Ψηφιακός Ήχος Dolby</comment>
- <comment xml:lang="en_GB">Dolby Digital audio</comment>
- <comment xml:lang="eo">Sondosiero en Dolby Digital</comment>
- <comment xml:lang="es">sonido Dolby Digital</comment>
- <comment xml:lang="eu">Dolby audio digitala</comment>
- <comment xml:lang="fi">Dolby Digital -ääni</comment>
- <comment xml:lang="fo">Dolby Digital ljóður</comment>
- <comment xml:lang="fr">audio Dolby Digital</comment>
- <comment xml:lang="ga">fuaim Dolby Digital</comment>
- <comment xml:lang="gl">son Dolby Digital</comment>
- <comment xml:lang="he">שמע Dolby Digital</comment>
- <comment xml:lang="hr">Dolby Digital zvučni zapis</comment>
- <comment xml:lang="hu">Dolby Digital hang</comment>
- <comment xml:lang="ia">Audio Dolby Digital</comment>
- <comment xml:lang="id">Audio Dolby Digital</comment>
- <comment xml:lang="it">Audio Dolby Digital</comment>
- <comment xml:lang="ja">ドルビーデジタルオーディオ</comment>
- <comment xml:lang="ka">Dolby Digital-ის აუდიო</comment>
- <comment xml:lang="kk">Dolby Digital аудиосы</comment>
- <comment xml:lang="ko">돌비 디지털 오디오</comment>
- <comment xml:lang="lt">Dolby Digital garso įrašas</comment>
- <comment xml:lang="lv">Dolby Digital audio</comment>
- <comment xml:lang="ms">Audio Digital Dolby</comment>
- <comment xml:lang="nb">Dolby digital lyd</comment>
- <comment xml:lang="nl">Dolby Digital-audio</comment>
- <comment xml:lang="nn">Dolby Digital lyd</comment>
- <comment xml:lang="oc">àudio Dolby Digital</comment>
- <comment xml:lang="pl">Plik dźwiękowy Dolby Digital</comment>
- <comment xml:lang="pt">áudio Dolby Digital</comment>
- <comment xml:lang="pt_BR">Áudio Dolby Digital</comment>
- <comment xml:lang="ro">Audio Dolby Digital</comment>
- <comment xml:lang="ru">Аудио Dolby Digital</comment>
- <comment xml:lang="sk">Zvuk Dolby Digital</comment>
- <comment xml:lang="sl">Zvočna datoteka Dolby Digital</comment>
- <comment xml:lang="sq">Audio Dolby Digital</comment>
- <comment xml:lang="sr">Дигитални Долби звук</comment>
- <comment xml:lang="sv">Dolby Digital-ljud</comment>
- <comment xml:lang="tr">Dolby Digital sesi</comment>
- <comment xml:lang="uk">звук Dolby Digital</comment>
- <comment xml:lang="vi">Âm thanh Dolby Digital</comment>
- <comment xml:lang="zh_CN">杜比数字音频</comment>
<comment xml:lang="zh_TW">杜比數位音訊</comment>
- <magic priority="50">
- <match value="0x0b77" type="big16" offset="0"/>
+ <comment xml:lang="zh_CN">杜比数字音频</comment>
+ <comment xml:lang="vi">Âm thanh Dolby Digital</comment>
+ <comment xml:lang="uk">звук Dolby Digital</comment>
+ <comment xml:lang="tr">Dolby Digital sesi</comment>
+ <comment xml:lang="sv">Dolby Digital-ljud</comment>
+ <comment xml:lang="sr">Дигитални Долби звук</comment>
+ <comment xml:lang="sq">audio Dolby Digital</comment>
+ <comment xml:lang="sl">Zvočna datoteka Dolby Digital</comment>
+ <comment xml:lang="si">ඩොල්බි ඩිජිටල් ඕඩියෝ</comment>
+ <comment xml:lang="sk">Zvuk Dolby Digital</comment>
+ <comment xml:lang="ru">Аудио Dolby Digital</comment>
+ <comment xml:lang="ro">Audio Dolby Digital</comment>
+ <comment xml:lang="pt_BR">Áudio Dolby Digital</comment>
+ <comment xml:lang="pt">áudio Dolby Digital</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Dolby Digital</comment>
+ <comment xml:lang="oc">àudio Dolby Digital</comment>
+ <comment xml:lang="nn">Dolby Digital lyd</comment>
+ <comment xml:lang="nl">Dolby Digital-audio</comment>
+ <comment xml:lang="nb">Dolby digital lyd</comment>
+ <comment xml:lang="ms">Audio Digital Dolby</comment>
+ <comment xml:lang="lv">Dolby Digital audio</comment>
+ <comment xml:lang="lt">Dolby Digital garso įrašas</comment>
+ <comment xml:lang="ko">돌비 디지털 오디오</comment>
+ <comment xml:lang="kk">Dolby Digital аудиосы</comment>
+ <comment xml:lang="ka">Dolby Digital-ის აუდიო</comment>
+ <comment xml:lang="ja">ドルビーデジタルオーディオ</comment>
+ <comment xml:lang="it">Audio Dolby Digital</comment>
+ <comment xml:lang="is">Dolby Digital hljóðskrá</comment>
+ <comment xml:lang="id">Audio Dolby Digital</comment>
+ <comment xml:lang="ia">Audio Dolby Digital</comment>
+ <comment xml:lang="hu">Dolby Digital hang</comment>
+ <comment xml:lang="hr">Dolby Digital zvučni zapis</comment>
+ <comment xml:lang="he">שמע Dolby Digital</comment>
+ <comment xml:lang="gl">son Dolby Digital</comment>
+ <comment xml:lang="ga">fuaim Dolby Digital</comment>
+ <comment xml:lang="fur">audio Dolby Digital</comment>
+ <comment xml:lang="fr">audio Dolby Digital</comment>
+ <comment xml:lang="fo">Dolby Digital ljóður</comment>
+ <comment xml:lang="fi">Dolby Digital -ääni</comment>
+ <comment xml:lang="eu">Dolby audio digitala</comment>
+ <comment xml:lang="es">sonido Dolby Digital</comment>
+ <comment xml:lang="eo">Sondosiero en Dolby Digital</comment>
+ <comment xml:lang="en_GB">Dolby Digital audio</comment>
+ <comment xml:lang="el">Ψηφιακός Ήχος Dolby</comment>
+ <comment xml:lang="de">Dolby-Digital-Audio</comment>
+ <comment xml:lang="da">Dolby Ditital-lyd</comment>
+ <comment xml:lang="cy">Sain Dolby Digital</comment>
+ <comment xml:lang="cs">zvuk Dolby Digital</comment>
+ <comment xml:lang="ca">àudio Dolby Digital</comment>
+ <comment xml:lang="bg">Аудио — Dolby Digital</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Dolby Digital</comment>
+ <comment xml:lang="be">аўдыя Dolby Digital</comment>
+ <comment xml:lang="az">Dolby Digital audio</comment>
+ <comment xml:lang="ar">صوت Dolby Digital</comment>
+ <comment xml:lang="af">Dolby Digital-oudio</comment>
+ <magic>
+ <match type="big16" value="0x0b77" offset="0"/>
</magic>
<glob pattern="*.ac3"/>
</mime-type>
<mime-type type="audio/vnd.dts">
<comment>DTS audio</comment>
- <comment xml:lang="ca">àudio DTS</comment>
- <comment xml:lang="cs">zvuk DTS</comment>
- <comment xml:lang="da">DTS-lyd</comment>
- <comment xml:lang="de">DTS-Audio</comment>
- <comment xml:lang="el">Ήχος DTS</comment>
- <comment xml:lang="en_GB">DTS audio</comment>
- <comment xml:lang="es">sonido DTS</comment>
- <comment xml:lang="eu">DTS audioa</comment>
- <comment xml:lang="fi">DTS-ääni</comment>
- <comment xml:lang="fr">audio DTS</comment>
- <comment xml:lang="ga">fuaim DTS</comment>
- <comment xml:lang="gl">Son DTS</comment>
- <comment xml:lang="he">שמע DTS</comment>
- <comment xml:lang="hr">DTS zvučni zapis</comment>
- <comment xml:lang="hu">DTS hang</comment>
- <comment xml:lang="ia">Audio DTS</comment>
- <comment xml:lang="id">Audio DTS</comment>
- <comment xml:lang="it">Audio DTS</comment>
- <comment xml:lang="ja">DTS オーディオ</comment>
- <comment xml:lang="kk">DTS аудиосы</comment>
- <comment xml:lang="ko">DTS 오디오</comment>
- <comment xml:lang="lv">DTS audio</comment>
- <comment xml:lang="oc">àudio DTS</comment>
- <comment xml:lang="pl">Plik dźwiękowy DTS</comment>
- <comment xml:lang="pt">aúdio DTS</comment>
- <comment xml:lang="pt_BR">Áudio DTS</comment>
- <comment xml:lang="ru">Аудио DTS</comment>
- <comment xml:lang="sk">Zvuk DTS</comment>
- <comment xml:lang="sl">Zvok DTS</comment>
- <comment xml:lang="sr">ДТС звук</comment>
- <comment xml:lang="sv">DTS-ljud</comment>
- <comment xml:lang="tr">DTS sesi</comment>
- <comment xml:lang="uk">звукові дані DTS</comment>
- <comment xml:lang="zh_CN">DTS 音频</comment>
<comment xml:lang="zh_TW">DTS 音訊</comment>
- <magic priority="50">
- <match value="0x7FFE8001" type="big32" offset="0"/>
- <match value="0xFE7F0180" type="little32" offset="0"/>
- <match value="0x1FFFE800" type="big32" offset="0"/>
- <match value="0xFF1F00E8" type="little32" offset="0"/>
+ <comment xml:lang="zh_CN">DTS 音频</comment>
+ <comment xml:lang="uk">звукові дані DTS</comment>
+ <comment xml:lang="tr">DTS sesi</comment>
+ <comment xml:lang="sv">DTS-ljud</comment>
+ <comment xml:lang="sr">ДТС звук</comment>
+ <comment xml:lang="sq">audio DTS</comment>
+ <comment xml:lang="sl">Zvok DTS</comment>
+ <comment xml:lang="si">DTS ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk DTS</comment>
+ <comment xml:lang="ru">Аудио DTS</comment>
+ <comment xml:lang="pt_BR">Áudio DTS</comment>
+ <comment xml:lang="pt">aúdio DTS</comment>
+ <comment xml:lang="pl">Plik dźwiękowy DTS</comment>
+ <comment xml:lang="oc">àudio DTS</comment>
+ <comment xml:lang="nl">DTS-audio</comment>
+ <comment xml:lang="lv">DTS audio</comment>
+ <comment xml:lang="ko">DTS 오디오</comment>
+ <comment xml:lang="kk">DTS аудиосы</comment>
+ <comment xml:lang="ja">DTS オーディオ</comment>
+ <comment xml:lang="it">Audio DTS</comment>
+ <comment xml:lang="is">DTS hljóðskrá</comment>
+ <comment xml:lang="id">Audio DTS</comment>
+ <comment xml:lang="ia">Audio DTS</comment>
+ <comment xml:lang="hu">DTS hang</comment>
+ <comment xml:lang="hr">DTS zvučni zapis</comment>
+ <comment xml:lang="he">שמע DTS</comment>
+ <comment xml:lang="gl">Son DTS</comment>
+ <comment xml:lang="ga">fuaim DTS</comment>
+ <comment xml:lang="fur">audio DTS</comment>
+ <comment xml:lang="fr">audio DTS</comment>
+ <comment xml:lang="fi">DTS-ääni</comment>
+ <comment xml:lang="eu">DTS audioa</comment>
+ <comment xml:lang="es">sonido DTS</comment>
+ <comment xml:lang="en_GB">DTS audio</comment>
+ <comment xml:lang="el">Ήχος DTS</comment>
+ <comment xml:lang="de">DTS-Audio</comment>
+ <comment xml:lang="da">DTS-lyd</comment>
+ <comment xml:lang="cs">zvuk DTS</comment>
+ <comment xml:lang="ca">àudio DTS</comment>
+ <comment xml:lang="bg">Аудио — DTS</comment>
+ <comment xml:lang="be">аўдыя DTS</comment>
+ <comment xml:lang="ar">صوت DTS</comment>
+ <comment xml:lang="af">DTS-oudio</comment>
+ <acronym>DTS</acronym>
+ <expanded-acronym>Digital Theater Systems</expanded-acronym>
+ <magic>
+ <match type="big32" value="0x7FFE8001" offset="0"/>
+ <!-- 16bits core be -->
+ <match type="little32" value="0xFE7F0180" offset="0"/>
+ <!-- 16bits core le -->
+ <match type="big32" value="0x1FFFE800" offset="0"/>
+ <!-- 14bits core be -->
+ <match type="little32" value="0xFF1F00E8" offset="0"/>
+ <!-- 14bits core le -->
</magic>
<alias type="audio/x-dts"/>
<glob pattern="*.dts"/>
</mime-type>
<mime-type type="audio/vnd.dts.hd">
- <comment>DTSHD audio</comment>
- <comment xml:lang="ca">àudio DTSHD</comment>
- <comment xml:lang="cs">zvuk DTSHD</comment>
- <comment xml:lang="da">DTSDH-lyd</comment>
- <comment xml:lang="de">DTSHD-Audio</comment>
- <comment xml:lang="el">Ήχος DTSHD</comment>
- <comment xml:lang="en_GB">DTSHD audio</comment>
- <comment xml:lang="es">sonido DTSHD</comment>
- <comment xml:lang="eu">DTSHD audioa</comment>
+ <comment>DTS-HD audio</comment>
+ <comment xml:lang="zh_TW">DTS-HD 音訊</comment>
+ <comment xml:lang="zh_CN">DTS-HD 音频</comment>
+ <comment xml:lang="uk">звукові дані DTS-HD</comment>
+ <comment xml:lang="tr">DTS-HD sesi</comment>
+ <comment xml:lang="sv">DTS-HD-ljud</comment>
+ <comment xml:lang="sl">Zvok DTS-HD</comment>
+ <comment xml:lang="si">DTS-HD ශ්රව්ය</comment>
+ <comment xml:lang="ru">Аудио DTS-HD</comment>
+ <comment xml:lang="pt_BR">Áudio DTS-HD</comment>
+ <comment xml:lang="pl">Plik dźwiękowy DTS-HD</comment>
+ <comment xml:lang="nl">DTS-HD-audio</comment>
+ <comment xml:lang="ko">DTS-HD 오디오</comment>
+ <comment xml:lang="kk">DTS-HD аудиосы</comment>
+ <comment xml:lang="ja">DTS-HD オーディオ</comment>
+ <comment xml:lang="it">Audio DTS-HD</comment>
+ <comment xml:lang="hr">DTS-HD zvučni zapis</comment>
<comment xml:lang="fi">DTS-HD-ääni</comment>
- <comment xml:lang="fr">audio DTSHD</comment>
- <comment xml:lang="ga">fuaim DTSHD</comment>
- <comment xml:lang="gl">Son DTSHD</comment>
- <comment xml:lang="he">שמע DTSHD</comment>
- <comment xml:lang="hr">DTSHD zvučni zapis</comment>
- <comment xml:lang="hu">DTSHD hang</comment>
- <comment xml:lang="ia">Audio DTSHD</comment>
- <comment xml:lang="id">Audio DTSHD</comment>
- <comment xml:lang="it">Audio DTSHD</comment>
- <comment xml:lang="ja">DTSHD オーディオ</comment>
- <comment xml:lang="kk">DTSHD аудиосы</comment>
- <comment xml:lang="ko">DTSHD 오디오</comment>
- <comment xml:lang="lv">DTSHD audio</comment>
- <comment xml:lang="oc">àudio DTSHD</comment>
- <comment xml:lang="pl">Plik dźwiękowy DTSHD</comment>
- <comment xml:lang="pt">áudio DTSHD</comment>
- <comment xml:lang="pt_BR">Áudio DTSHD</comment>
- <comment xml:lang="ru">Аудио DTSHD</comment>
- <comment xml:lang="sk">Zvuk DTSHD</comment>
- <comment xml:lang="sl">Zvok DTSHD</comment>
- <comment xml:lang="sr">ДТСХД звук</comment>
- <comment xml:lang="sv">DTSHD-ljud</comment>
- <comment xml:lang="tr">DTSHD sesi</comment>
- <comment xml:lang="uk">звукові дані DTSHD</comment>
- <comment xml:lang="zh_CN">DTSHD 音频</comment>
- <comment xml:lang="zh_TW">DTSHD 音訊</comment>
+ <comment xml:lang="eu">DTS-HD audioa</comment>
+ <comment xml:lang="es">sonido DTS-HD</comment>
+ <comment xml:lang="en_GB">DTS-HD audio</comment>
+ <comment xml:lang="de">DTS-HD-Audio</comment>
+ <comment xml:lang="be">аўдыя DTS-HD</comment>
+ <comment xml:lang="ar">صوت DTS-HD</comment>
+ <acronym>DTS-HD</acronym>
+ <expanded-acronym>Digital Theater Systems High Definition</expanded-acronym>
<sub-class-of type="audio/vnd.dts"/>
<magic priority="60">
- <match value="0x64582025" type="big32" offset="0:18725"/>
+ <match type="big32" value="0x7FFE8001" offset="0">
+ <!-- 16bits core be -->
+ <match type="big32" value="0x64582025" offset="4:18725"/>
+ <!-- 16bits HD be -->
+ </match>
</magic>
<alias type="audio/x-dtshd"/>
<glob pattern="*.dtshd"/>
</mime-type>
<mime-type type="audio/AMR">
<comment>AMR audio</comment>
- <comment xml:lang="ar">AMR سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo AMR</comment>
- <comment xml:lang="bg">Аудио — AMR</comment>
- <comment xml:lang="ca">àudio AMR</comment>
- <comment xml:lang="cs">zvuk AMR</comment>
- <comment xml:lang="da">AMR-lyd</comment>
- <comment xml:lang="de">AMR-Audio</comment>
- <comment xml:lang="el">Ήχος AMR</comment>
- <comment xml:lang="en_GB">AMR audio</comment>
- <comment xml:lang="eo">AMR-sondosiero</comment>
- <comment xml:lang="es">sonido AMR</comment>
- <comment xml:lang="eu">AMR audioa</comment>
- <comment xml:lang="fi">AMR-ääni</comment>
- <comment xml:lang="fo">AMR ljóður</comment>
- <comment xml:lang="fr">audio AMR</comment>
- <comment xml:lang="ga">fuaim AMR</comment>
- <comment xml:lang="gl">son AMR</comment>
- <comment xml:lang="he">שמע AMR</comment>
- <comment xml:lang="hr">AMR zvučni zapis</comment>
- <comment xml:lang="hu">AMR hang</comment>
- <comment xml:lang="ia">Audio AMR</comment>
- <comment xml:lang="id">Audio AMR</comment>
- <comment xml:lang="it">Audio AMR</comment>
- <comment xml:lang="ja">AMR オーディオ</comment>
- <comment xml:lang="ka">AMR აუდიო</comment>
- <comment xml:lang="kk">AMR аудиосы</comment>
- <comment xml:lang="ko">AMR 오디오</comment>
- <comment xml:lang="lt">AMR garso įrašas</comment>
- <comment xml:lang="lv">AMR audio</comment>
- <comment xml:lang="nb">AMR-lyd</comment>
- <comment xml:lang="nl">AMR-audio</comment>
- <comment xml:lang="nn">AMR-lyd</comment>
- <comment xml:lang="oc">àudio AMR</comment>
- <comment xml:lang="pl">Plik dźwiękowy AMR</comment>
- <comment xml:lang="pt">áudio AMR</comment>
- <comment xml:lang="pt_BR">Áudio AMR</comment>
- <comment xml:lang="ro">Audio AMR</comment>
- <comment xml:lang="ru">Аудио AMR</comment>
- <comment xml:lang="sk">Zvuk AMR</comment>
- <comment xml:lang="sl">Zvočna datoteka AMR</comment>
- <comment xml:lang="sq">Audio AMR</comment>
- <comment xml:lang="sr">АМР звук</comment>
- <comment xml:lang="sv">AMR-ljud</comment>
- <comment xml:lang="tr">AMR sesi</comment>
- <comment xml:lang="uk">звук AMR</comment>
- <comment xml:lang="vi">Âm thanh AMR</comment>
- <comment xml:lang="zh_CN">AMR 音频</comment>
<comment xml:lang="zh_TW">AMR 音訊</comment>
+ <comment xml:lang="zh_CN">AMR 音频</comment>
+ <comment xml:lang="vi">Âm thanh AMR</comment>
+ <comment xml:lang="uk">звук AMR</comment>
+ <comment xml:lang="tr">AMR sesi</comment>
+ <comment xml:lang="sv">AMR-ljud</comment>
+ <comment xml:lang="sr">АМР звук</comment>
+ <comment xml:lang="sq">audio AMR</comment>
+ <comment xml:lang="sl">Zvočna datoteka AMR</comment>
+ <comment xml:lang="si">AMR ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk AMR</comment>
+ <comment xml:lang="ru">Аудио AMR</comment>
+ <comment xml:lang="ro">Audio AMR</comment>
+ <comment xml:lang="pt_BR">Áudio AMR</comment>
+ <comment xml:lang="pt">áudio AMR</comment>
+ <comment xml:lang="pl">Plik dźwiękowy AMR</comment>
+ <comment xml:lang="oc">àudio AMR</comment>
+ <comment xml:lang="nn">AMR-lyd</comment>
+ <comment xml:lang="nl">AMR-audio</comment>
+ <comment xml:lang="nb">AMR-lyd</comment>
+ <comment xml:lang="lv">AMR audio</comment>
+ <comment xml:lang="lt">AMR garso įrašas</comment>
+ <comment xml:lang="ko">AMR 오디오</comment>
+ <comment xml:lang="kk">AMR аудиосы</comment>
+ <comment xml:lang="ka">AMR აუდიო</comment>
+ <comment xml:lang="ja">AMR オーディオ</comment>
+ <comment xml:lang="it">Audio AMR</comment>
+ <comment xml:lang="is">AMR hljóðskrá</comment>
+ <comment xml:lang="id">Audio AMR</comment>
+ <comment xml:lang="ia">Audio AMR</comment>
+ <comment xml:lang="hu">AMR hang</comment>
+ <comment xml:lang="hr">AMR zvučni zapis</comment>
+ <comment xml:lang="he">שמע AMR</comment>
+ <comment xml:lang="gl">son AMR</comment>
+ <comment xml:lang="ga">fuaim AMR</comment>
+ <comment xml:lang="fur">audio AMR</comment>
+ <comment xml:lang="fr">audio AMR</comment>
+ <comment xml:lang="fo">AMR ljóður</comment>
+ <comment xml:lang="fi">AMR-ääni</comment>
+ <comment xml:lang="eu">AMR audioa</comment>
+ <comment xml:lang="es">sonido AMR</comment>
+ <comment xml:lang="eo">AMR-sondosiero</comment>
+ <comment xml:lang="en_GB">AMR audio</comment>
+ <comment xml:lang="el">Ήχος AMR</comment>
+ <comment xml:lang="de">AMR-Audio</comment>
+ <comment xml:lang="da">AMR-lyd</comment>
+ <comment xml:lang="cs">zvuk AMR</comment>
+ <comment xml:lang="ca">àudio AMR</comment>
+ <comment xml:lang="bg">Аудио — AMR</comment>
+ <comment xml:lang="be@latin">Aŭdyjo AMR</comment>
+ <comment xml:lang="be">аўдыя AMR</comment>
+ <comment xml:lang="ar">صوت AMR</comment>
+ <comment xml:lang="af">AMR-oudio</comment>
<acronym>AMR</acronym>
<expanded-acronym>Adaptive Multi-Rate</expanded-acronym>
- <magic priority="50">
- <match value="#!AMR\n" type="string" offset="0"/>
- <match value="#!AMR_MC1.0\n" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#!AMR\n" offset="0"/>
+ <match type="string" value="#!AMR_MC1.0\n" offset="0"/>
</magic>
<glob pattern="*.amr"/>
<alias type="audio/amr-encrypted"/>
</mime-type>
<mime-type type="audio/AMR-WB">
<comment>AMR-WB audio</comment>
- <comment xml:lang="ar">AMR-WB سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo AMR-WB</comment>
- <comment xml:lang="bg">Аудио — AMR-WB</comment>
- <comment xml:lang="ca">àudio AMR-WB</comment>
- <comment xml:lang="cs">zvuk AMR-WB</comment>
- <comment xml:lang="da">AMR-WB-lyd</comment>
- <comment xml:lang="de">AMR-WB-Audio</comment>
- <comment xml:lang="el">Ήχος AMR-WB</comment>
- <comment xml:lang="en_GB">AMR-WB audio</comment>
- <comment xml:lang="eo">AMR-WB-sondosiero</comment>
- <comment xml:lang="es">sonido AMR-WB</comment>
- <comment xml:lang="eu">AMR-WB audioa</comment>
- <comment xml:lang="fi">AMR-WB-ääni</comment>
- <comment xml:lang="fo">AMR-WB ljóður</comment>
- <comment xml:lang="fr">audio AMR-WB</comment>
- <comment xml:lang="ga">fuaim AMR-WB</comment>
- <comment xml:lang="gl">son AMR-WB</comment>
- <comment xml:lang="he">שמע AMR-WN</comment>
- <comment xml:lang="hr">AMR-WB zvučni zapis</comment>
- <comment xml:lang="hu">AMR-WB hang</comment>
- <comment xml:lang="ia">Audio AMR-WB</comment>
- <comment xml:lang="id">Audio AMR-WB</comment>
- <comment xml:lang="it">Audio AMR-WB</comment>
- <comment xml:lang="ja">AMR-WB オーディオ</comment>
- <comment xml:lang="ka">AMR-WB აუდიო</comment>
- <comment xml:lang="kk">AMR-WB аудиосы</comment>
- <comment xml:lang="ko">AMR-WB 오디오</comment>
- <comment xml:lang="lt">AMR-WB garso įrašas</comment>
- <comment xml:lang="lv">AMR-WB audio</comment>
- <comment xml:lang="nb">AMR-WB-lyd</comment>
- <comment xml:lang="nl">AMR-WB-audio</comment>
- <comment xml:lang="nn">AMR-WB-lyd</comment>
- <comment xml:lang="oc">àudio AMR-WB</comment>
- <comment xml:lang="pl">Plik dźwiękowy AMR-WB</comment>
- <comment xml:lang="pt">áudio AMR-WB</comment>
- <comment xml:lang="pt_BR">Áudio AMR-WB</comment>
- <comment xml:lang="ro">Audio AMR-WB</comment>
- <comment xml:lang="ru">Аудио AMR-WB</comment>
- <comment xml:lang="sk">Zvuk AMR-WB</comment>
- <comment xml:lang="sl">Zvočna datoteka AMR-WB</comment>
- <comment xml:lang="sq">Audio AMR-WB</comment>
- <comment xml:lang="sr">АМР-ВБ звук</comment>
- <comment xml:lang="sv">AMR-WB-ljud</comment>
- <comment xml:lang="tr">AMR-WB sesi</comment>
- <comment xml:lang="uk">звук AMR-WB</comment>
- <comment xml:lang="vi">Âm thanh AMR-WB</comment>
- <comment xml:lang="zh_CN">AMR-WB 音频</comment>
<comment xml:lang="zh_TW">AMR-WB 音訊</comment>
+ <comment xml:lang="zh_CN">AMR-WB 音频</comment>
+ <comment xml:lang="vi">Âm thanh AMR-WB</comment>
+ <comment xml:lang="uk">звук AMR-WB</comment>
+ <comment xml:lang="tr">AMR-WB sesi</comment>
+ <comment xml:lang="sv">AMR-WB-ljud</comment>
+ <comment xml:lang="sr">АМР-ВБ звук</comment>
+ <comment xml:lang="sq">audio AMR-WB</comment>
+ <comment xml:lang="sl">Zvočna datoteka AMR-WB</comment>
+ <comment xml:lang="si">AMR-WB ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk AMR-WB</comment>
+ <comment xml:lang="ru">Аудио AMR-WB</comment>
+ <comment xml:lang="ro">Audio AMR-WB</comment>
+ <comment xml:lang="pt_BR">Áudio AMR-WB</comment>
+ <comment xml:lang="pt">áudio AMR-WB</comment>
+ <comment xml:lang="pl">Plik dźwiękowy AMR-WB</comment>
+ <comment xml:lang="oc">àudio AMR-WB</comment>
+ <comment xml:lang="nn">AMR-WB-lyd</comment>
+ <comment xml:lang="nl">AMR-WB-audio</comment>
+ <comment xml:lang="nb">AMR-WB-lyd</comment>
+ <comment xml:lang="lv">AMR-WB audio</comment>
+ <comment xml:lang="lt">AMR-WB garso įrašas</comment>
+ <comment xml:lang="ko">AMR-WB 오디오</comment>
+ <comment xml:lang="kk">AMR-WB аудиосы</comment>
+ <comment xml:lang="ka">AMR-WB აუდიო</comment>
+ <comment xml:lang="ja">AMR-WB オーディオ</comment>
+ <comment xml:lang="it">Audio AMR-WB</comment>
+ <comment xml:lang="is">AMR-WB hljóðskrá</comment>
+ <comment xml:lang="id">Audio AMR-WB</comment>
+ <comment xml:lang="ia">Audio AMR-WB</comment>
+ <comment xml:lang="hu">AMR-WB hang</comment>
+ <comment xml:lang="hr">AMR-WB zvučni zapis</comment>
+ <comment xml:lang="he">שמע AMR-WN</comment>
+ <comment xml:lang="gl">son AMR-WB</comment>
+ <comment xml:lang="ga">fuaim AMR-WB</comment>
+ <comment xml:lang="fur">audio AMR-WB</comment>
+ <comment xml:lang="fr">audio AMR-WB</comment>
+ <comment xml:lang="fo">AMR-WB ljóður</comment>
+ <comment xml:lang="fi">AMR-WB-ääni</comment>
+ <comment xml:lang="eu">AMR-WB audioa</comment>
+ <comment xml:lang="es">sonido AMR-WB</comment>
+ <comment xml:lang="eo">AMR-WB-sondosiero</comment>
+ <comment xml:lang="en_GB">AMR-WB audio</comment>
+ <comment xml:lang="el">Ήχος AMR-WB</comment>
+ <comment xml:lang="de">AMR-WB-Audio</comment>
+ <comment xml:lang="da">AMR-WB-lyd</comment>
+ <comment xml:lang="cs">zvuk AMR-WB</comment>
+ <comment xml:lang="ca">àudio AMR-WB</comment>
+ <comment xml:lang="bg">Аудио — AMR-WB</comment>
+ <comment xml:lang="be@latin">Aŭdyjo AMR-WB</comment>
+ <comment xml:lang="be">аўдыя AMR-WB</comment>
+ <comment xml:lang="ar">صوت AMR-WB</comment>
+ <comment xml:lang="af">AMR-WB-oudio</comment>
<acronym>AMR-WB</acronym>
<expanded-acronym>Adaptive Multi-Rate Wideband</expanded-acronym>
- <magic priority="50">
- <match value="#!AMR-WB\n" type="string" offset="0"/>
- <match value="#!AMR-WB_MC1.0\n" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#!AMR-WB\n" offset="0"/>
+ <match type="string" value="#!AMR-WB_MC1.0\n" offset="0"/>
</magic>
<glob pattern="*.awb"/>
<alias type="audio/amr-wb-encrypted"/>
</mime-type>
<mime-type type="audio/basic">
<comment>ULAW (Sun) audio</comment>
- <comment xml:lang="ar">ULAW (صن) سمعي</comment>
- <comment xml:lang="az">ULAW (Sun) audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo ULAW (Sun)</comment>
- <comment xml:lang="bg">Аудио — ULAW, Sun</comment>
- <comment xml:lang="ca">àudio ULAW (Sun)</comment>
- <comment xml:lang="cs">zvuk ULAW (Sun)</comment>
- <comment xml:lang="cy">Sain ULAW (Sun)</comment>
- <comment xml:lang="da">ULAW-lyd (Sun)</comment>
- <comment xml:lang="de">ULAW-Audio (Sun)</comment>
- <comment xml:lang="el">Ήχος ULAW (Sun)</comment>
- <comment xml:lang="en_GB">ULAW (Sun) audio</comment>
- <comment xml:lang="eo">ULAW-sondosiero (Sun)</comment>
- <comment xml:lang="es">sonido ULAW (Sun)</comment>
- <comment xml:lang="eu">ULAW (sun) audioa</comment>
- <comment xml:lang="fi">ULAW (Sun) -ääni</comment>
- <comment xml:lang="fo">ULAW (Sun) ljóður</comment>
- <comment xml:lang="fr">audio ULAW (Sun)</comment>
- <comment xml:lang="ga">fuaim ULAW (Sun)</comment>
- <comment xml:lang="gl">son ULAW (Sun)</comment>
- <comment xml:lang="he">שמע ULAW (של Sun)</comment>
- <comment xml:lang="hr">ULAW (Sun) zvučni zapis</comment>
- <comment xml:lang="hu">ULAW (Sun) hang</comment>
- <comment xml:lang="ia">Audio ULAW (sun)</comment>
- <comment xml:lang="id">Audio ULAW (Sun)</comment>
- <comment xml:lang="it">Audio ULAW (Sun)</comment>
- <comment xml:lang="ja">ULAW (Sun) オーディオ</comment>
- <comment xml:lang="kk">ULAW (Sun) аудиосы</comment>
- <comment xml:lang="ko">ULAW(Sun) 오디오</comment>
- <comment xml:lang="lt">ULAW (Sun) garso įrašas</comment>
- <comment xml:lang="lv">ULAW (Sun) audio</comment>
- <comment xml:lang="ms">Audio ULAW (Sun)</comment>
- <comment xml:lang="nb">ULAW-lyd (Sun)</comment>
- <comment xml:lang="nl">(Sun) ULAW-audio</comment>
- <comment xml:lang="nn">ULAW (Sun)-lyd</comment>
- <comment xml:lang="oc">àudio ULAW (Sun)</comment>
- <comment xml:lang="pl">Plik dźwiękowy ULAW (Sun)</comment>
- <comment xml:lang="pt">áudio ULAW (Sun)</comment>
- <comment xml:lang="pt_BR">Áudio ULAW (Sun)</comment>
- <comment xml:lang="ro">Fișier audio ULAW (Sun)</comment>
- <comment xml:lang="ru">Аудио ULAW (Sun)</comment>
- <comment xml:lang="sk">Zvuk ULAW (Sun)</comment>
- <comment xml:lang="sl">Zvočna datoteka ULAW (Sun)</comment>
- <comment xml:lang="sq">Audio ULAW (Sun)</comment>
- <comment xml:lang="sr">УЛАВ (Сан) звук</comment>
- <comment xml:lang="sv">ULAW-ljud (Sun)</comment>
- <comment xml:lang="tr">ULAW (Sun) sesi</comment>
- <comment xml:lang="uk">звук ULAW (Sun)</comment>
- <comment xml:lang="vi">Âm thanh ULAW (Sun)</comment>
- <comment xml:lang="zh_CN">ULAW (Sun) 音频</comment>
<comment xml:lang="zh_TW">ULAW (Sun) 音訊</comment>
+ <comment xml:lang="zh_CN">ULAW (Sun) 音频</comment>
+ <comment xml:lang="vi">Âm thanh ULAW (Sun)</comment>
+ <comment xml:lang="uk">звук ULAW (Sun)</comment>
+ <comment xml:lang="tr">ULAW (Sun) sesi</comment>
+ <comment xml:lang="sv">ULAW-ljud (Sun)</comment>
+ <comment xml:lang="sr">УЛАВ (Сан) звук</comment>
+ <comment xml:lang="sq">audio ULAW (Sun)</comment>
+ <comment xml:lang="sl">Zvočna datoteka ULAW (Sun)</comment>
+ <comment xml:lang="si">ULAW (හිරු) ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk ULAW (Sun)</comment>
+ <comment xml:lang="ru">Аудио ULAW (Sun)</comment>
+ <comment xml:lang="ro">Fișier audio ULAW (Sun)</comment>
+ <comment xml:lang="pt_BR">Áudio ULAW (Sun)</comment>
+ <comment xml:lang="pt">áudio ULAW (Sun)</comment>
+ <comment xml:lang="pl">Plik dźwiękowy ULAW (Sun)</comment>
+ <comment xml:lang="oc">àudio ULAW (Sun)</comment>
+ <comment xml:lang="nn">ULAW (Sun)-lyd</comment>
+ <comment xml:lang="nl">(Sun) ULAW-audio</comment>
+ <comment xml:lang="nb">ULAW-lyd (Sun)</comment>
+ <comment xml:lang="ms">Audio ULAW (Sun)</comment>
+ <comment xml:lang="lv">ULAW (Sun) audio</comment>
+ <comment xml:lang="lt">ULAW (Sun) garso įrašas</comment>
+ <comment xml:lang="ko">ULAW(Sun) 오디오</comment>
+ <comment xml:lang="kk">ULAW (Sun) аудиосы</comment>
+ <comment xml:lang="ja">ULAW (Sun) オーディオ</comment>
+ <comment xml:lang="it">Audio ULAW (Sun)</comment>
+ <comment xml:lang="is">ULAW (Sun) hljóðskrá</comment>
+ <comment xml:lang="id">Audio ULAW (Sun)</comment>
+ <comment xml:lang="ia">Audio ULAW (sun)</comment>
+ <comment xml:lang="hu">ULAW (Sun) hang</comment>
+ <comment xml:lang="hr">ULAW (Sun) zvučni zapis</comment>
+ <comment xml:lang="he">שמע ULAW (של Sun)</comment>
+ <comment xml:lang="gl">son ULAW (Sun)</comment>
+ <comment xml:lang="ga">fuaim ULAW (Sun)</comment>
+ <comment xml:lang="fur">audio ULAW (Sun)</comment>
+ <comment xml:lang="fr">audio ULAW (Sun)</comment>
+ <comment xml:lang="fo">ULAW (Sun) ljóður</comment>
+ <comment xml:lang="fi">ULAW (Sun) -ääni</comment>
+ <comment xml:lang="eu">ULAW (sun) audioa</comment>
+ <comment xml:lang="es">sonido ULAW (Sun)</comment>
+ <comment xml:lang="eo">ULAW-sondosiero (Sun)</comment>
+ <comment xml:lang="en_GB">ULAW (Sun) audio</comment>
+ <comment xml:lang="el">Ήχος ULAW (Sun)</comment>
+ <comment xml:lang="de">ULAW-Audio (Sun)</comment>
+ <comment xml:lang="da">ULAW-lyd (Sun)</comment>
+ <comment xml:lang="cy">Sain ULAW (Sun)</comment>
+ <comment xml:lang="cs">zvuk ULAW (Sun)</comment>
+ <comment xml:lang="ca">àudio ULAW (Sun)</comment>
+ <comment xml:lang="bg">Аудио — ULAW, Sun</comment>
+ <comment xml:lang="be@latin">Aŭdyjo ULAW (Sun)</comment>
+ <comment xml:lang="be">аўдыя ULAW (Sun)</comment>
+ <comment xml:lang="az">ULAW (Sun) audio faylı</comment>
+ <comment xml:lang="ar">صوت ULAW (صن)</comment>
+ <comment xml:lang="af">ULAW- (Sun) oudio</comment>
<magic priority="40">
- <match value=".snd" type="string" offset="0"/>
+ <match type="string" value=".snd" offset="0"/>
</magic>
<glob pattern="*.au"/>
<glob pattern="*.snd"/>
</mime-type>
<mime-type type="audio/prs.sid">
<comment>Commodore 64 audio</comment>
- <comment xml:lang="ar">Commodore 64 سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Commodore 64</comment>
- <comment xml:lang="bg">Аудио — Commodore 64</comment>
- <comment xml:lang="ca">àudio de Commodore 64</comment>
- <comment xml:lang="cs">zvuk Commodore 64</comment>
- <comment xml:lang="da">Commodore 64-lyd</comment>
- <comment xml:lang="de">Commodore-64-Audio</comment>
- <comment xml:lang="el">Ήχος Commodore 64</comment>
- <comment xml:lang="en_GB">Commodore 64 audio</comment>
- <comment xml:lang="eo">Sondosiero de Commodore 64</comment>
- <comment xml:lang="es">sonido de Commodore 64</comment>
- <comment xml:lang="eu">Commodore 64 Audioa</comment>
- <comment xml:lang="fi">Commodore 64 -ääni</comment>
- <comment xml:lang="fo">Commodore 64 ljóð</comment>
- <comment xml:lang="fr">audio Commodore 64</comment>
- <comment xml:lang="ga">fuaim Commodore 64</comment>
- <comment xml:lang="gl">son de Commodore 64</comment>
- <comment xml:lang="he">שמע של Commodore 64</comment>
- <comment xml:lang="hr">Commodore 64 zvučni zapis</comment>
- <comment xml:lang="hu">Commodore 64 hang</comment>
- <comment xml:lang="ia">Audio Commodore 64</comment>
- <comment xml:lang="id">Audio Commodore 64</comment>
- <comment xml:lang="it">Audio Commodore 64</comment>
- <comment xml:lang="ja">Commodore 64 オーディオ</comment>
- <comment xml:lang="ka">Commodore 64-ის აუდიო</comment>
- <comment xml:lang="kk">Commodore 64 аудиосы</comment>
- <comment xml:lang="ko">Commodore 64 오디오</comment>
- <comment xml:lang="lt">Commodore 64 garso įrašas</comment>
- <comment xml:lang="lv">Commodore 64 audio</comment>
- <comment xml:lang="ms">Audio Commodore 64</comment>
- <comment xml:lang="nb">Commodore 64-lyd</comment>
- <comment xml:lang="nl">Commodore 64-audio</comment>
- <comment xml:lang="nn">Commodore 64-lyd</comment>
- <comment xml:lang="oc">àudio Commodore 64</comment>
- <comment xml:lang="pl">Plik dźwiękowy Commodore 64</comment>
- <comment xml:lang="pt">áudio Commodore 64</comment>
- <comment xml:lang="pt_BR">Áudio Commodore 64</comment>
- <comment xml:lang="ro">Audio Commodore 64</comment>
- <comment xml:lang="ru">Аудио Commodore 64</comment>
- <comment xml:lang="sk">Zvuk Commodore 64</comment>
- <comment xml:lang="sl">Zvočna datoteka Commodore 64</comment>
- <comment xml:lang="sq">Audio Commodore 64</comment>
- <comment xml:lang="sr">звук Комодора 64</comment>
- <comment xml:lang="sv">Commodore 64-ljud</comment>
- <comment xml:lang="tr">Commodore 64 sesi</comment>
- <comment xml:lang="uk">звук Commodore 64</comment>
- <comment xml:lang="vi">Âm thanh Commodore 64</comment>
- <comment xml:lang="zh_CN">Commodore 64 音频</comment>
<comment xml:lang="zh_TW">Commodore 64 音訊</comment>
- <magic priority="50">
- <match value="PSID" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">Commodore 64 音频</comment>
+ <comment xml:lang="vi">Âm thanh Commodore 64</comment>
+ <comment xml:lang="uk">звук Commodore 64</comment>
+ <comment xml:lang="tr">Commodore 64 sesi</comment>
+ <comment xml:lang="sv">Commodore 64-ljud</comment>
+ <comment xml:lang="sr">звук Комодора 64</comment>
+ <comment xml:lang="sq">audio Commodore 64</comment>
+ <comment xml:lang="sl">Zvočna datoteka Commodore 64</comment>
+ <comment xml:lang="si">කොමදෝරු 64 ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk Commodore 64</comment>
+ <comment xml:lang="ru">Аудио Commodore 64</comment>
+ <comment xml:lang="ro">Audio Commodore 64</comment>
+ <comment xml:lang="pt_BR">Áudio Commodore 64</comment>
+ <comment xml:lang="pt">áudio Commodore 64</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Commodore 64</comment>
+ <comment xml:lang="oc">àudio Commodore 64</comment>
+ <comment xml:lang="nn">Commodore 64-lyd</comment>
+ <comment xml:lang="nl">Commodore 64-audio</comment>
+ <comment xml:lang="nb">Commodore 64-lyd</comment>
+ <comment xml:lang="ms">Audio Commodore 64</comment>
+ <comment xml:lang="lv">Commodore 64 audio</comment>
+ <comment xml:lang="lt">Commodore 64 garso įrašas</comment>
+ <comment xml:lang="ko">Commodore 64 오디오</comment>
+ <comment xml:lang="kk">Commodore 64 аудиосы</comment>
+ <comment xml:lang="ka">Commodore 64-ის აუდიო</comment>
+ <comment xml:lang="ja">Commodore 64 オーディオ</comment>
+ <comment xml:lang="it">Audio Commodore 64</comment>
+ <comment xml:lang="is">Commodore 64 hljóðskrá</comment>
+ <comment xml:lang="id">Audio Commodore 64</comment>
+ <comment xml:lang="ia">Audio Commodore 64</comment>
+ <comment xml:lang="hu">Commodore 64 hang</comment>
+ <comment xml:lang="hr">Commodore 64 zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Commodore 64</comment>
+ <comment xml:lang="gl">son de Commodore 64</comment>
+ <comment xml:lang="ga">fuaim Commodore 64</comment>
+ <comment xml:lang="fur">audio Commodore 64</comment>
+ <comment xml:lang="fr">audio Commodore 64</comment>
+ <comment xml:lang="fo">Commodore 64 ljóð</comment>
+ <comment xml:lang="fi">Commodore 64 -ääni</comment>
+ <comment xml:lang="eu">Commodore 64 Audioa</comment>
+ <comment xml:lang="es">sonido de Commodore 64</comment>
+ <comment xml:lang="eo">Sondosiero de Commodore 64</comment>
+ <comment xml:lang="en_GB">Commodore 64 audio</comment>
+ <comment xml:lang="el">Ήχος Commodore 64</comment>
+ <comment xml:lang="de">Commodore-64-Audio</comment>
+ <comment xml:lang="da">Commodore 64-lyd</comment>
+ <comment xml:lang="cs">zvuk Commodore 64</comment>
+ <comment xml:lang="ca">àudio de Commodore 64</comment>
+ <comment xml:lang="bg">Аудио — Commodore 64</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Commodore 64</comment>
+ <comment xml:lang="be">аўдыя Commodore 64</comment>
+ <comment xml:lang="ar">صوت Commodore 64</comment>
+ <comment xml:lang="af">Commodore 64-oudio</comment>
+ <magic>
+ <match type="string" value="PSID" offset="0"/>
</magic>
<glob pattern="*.sid"/>
<glob pattern="*.psid"/>
</mime-type>
<mime-type type="audio/x-adpcm">
<comment>PCM audio</comment>
- <comment xml:lang="ar">سمعي PCM</comment>
- <comment xml:lang="az">PCM audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo PCM</comment>
- <comment xml:lang="bg">Аудио — PCM</comment>
- <comment xml:lang="ca">àudio PCM</comment>
- <comment xml:lang="cs">zvuk PCM</comment>
- <comment xml:lang="cy">Sain PCM</comment>
- <comment xml:lang="da">PCM-lyd</comment>
- <comment xml:lang="de">PCM-Audio</comment>
- <comment xml:lang="el">Ήχος PCM</comment>
- <comment xml:lang="en_GB">PCM audio</comment>
- <comment xml:lang="eo">PCM-sondosiero</comment>
- <comment xml:lang="es">sonido PCM</comment>
- <comment xml:lang="eu">PCM audioa</comment>
- <comment xml:lang="fi">PCM-ääni</comment>
- <comment xml:lang="fo">PCM ljóður</comment>
- <comment xml:lang="fr">audio PCM</comment>
- <comment xml:lang="ga">fuaim PCM</comment>
- <comment xml:lang="gl">son PCM</comment>
- <comment xml:lang="he">שמע PCM</comment>
- <comment xml:lang="hr">PCM zvučni zapis</comment>
- <comment xml:lang="hu">PCM hang</comment>
- <comment xml:lang="ia">Audio PCM</comment>
- <comment xml:lang="id">Audio PCM</comment>
- <comment xml:lang="it">Audio PCM</comment>
- <comment xml:lang="ja">PCM オーディオ</comment>
- <comment xml:lang="kk">PCM аудиосы</comment>
- <comment xml:lang="ko">PCM 오디오</comment>
- <comment xml:lang="lt">PCM garso įrašas</comment>
- <comment xml:lang="lv">PCM audio</comment>
- <comment xml:lang="ms">Audio PCM</comment>
- <comment xml:lang="nb">PCM-lyd</comment>
- <comment xml:lang="nl">PCM-audio</comment>
- <comment xml:lang="nn">PCM-lyd</comment>
- <comment xml:lang="oc">àudio PCM</comment>
- <comment xml:lang="pl">Plik dźwiękowy PCM</comment>
- <comment xml:lang="pt">áudio PCM</comment>
- <comment xml:lang="pt_BR">Áudio PCM</comment>
- <comment xml:lang="ro">Audio PCM</comment>
- <comment xml:lang="ru">Аудио PCM</comment>
- <comment xml:lang="sk">Zvuk PCM</comment>
- <comment xml:lang="sl">Zvočna datoteka PCM</comment>
- <comment xml:lang="sq">Audio PCM</comment>
- <comment xml:lang="sr">ПЦМ звук</comment>
- <comment xml:lang="sv">PCM-ljud</comment>
- <comment xml:lang="tr">PCM sesi</comment>
- <comment xml:lang="uk">звук PCM</comment>
- <comment xml:lang="vi">Âm thanh PCM</comment>
- <comment xml:lang="zh_CN">PCM 音频</comment>
<comment xml:lang="zh_TW">PCM 音訊</comment>
- <magic priority="50">
- <match value=".snd" type="string" offset="0">
- <match value="23" type="big32" offset="12"/>
+ <comment xml:lang="zh_CN">PCM 音频</comment>
+ <comment xml:lang="vi">Âm thanh PCM</comment>
+ <comment xml:lang="uk">звук PCM</comment>
+ <comment xml:lang="tr">PCM sesi</comment>
+ <comment xml:lang="sv">PCM-ljud</comment>
+ <comment xml:lang="sr">ПЦМ звук</comment>
+ <comment xml:lang="sq">audio PCM</comment>
+ <comment xml:lang="sl">Zvočna datoteka PCM</comment>
+ <comment xml:lang="si">PCM ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk PCM</comment>
+ <comment xml:lang="ru">Аудио PCM</comment>
+ <comment xml:lang="ro">Audio PCM</comment>
+ <comment xml:lang="pt_BR">Áudio PCM</comment>
+ <comment xml:lang="pt">áudio PCM</comment>
+ <comment xml:lang="pl">Plik dźwiękowy PCM</comment>
+ <comment xml:lang="oc">àudio PCM</comment>
+ <comment xml:lang="nn">PCM-lyd</comment>
+ <comment xml:lang="nl">PCM-audio</comment>
+ <comment xml:lang="nb">PCM-lyd</comment>
+ <comment xml:lang="ms">Audio PCM</comment>
+ <comment xml:lang="lv">PCM audio</comment>
+ <comment xml:lang="lt">PCM garso įrašas</comment>
+ <comment xml:lang="ko">PCM 오디오</comment>
+ <comment xml:lang="kk">PCM аудиосы</comment>
+ <comment xml:lang="ja">PCM オーディオ</comment>
+ <comment xml:lang="it">Audio PCM</comment>
+ <comment xml:lang="is">PCM hljóðskrá</comment>
+ <comment xml:lang="id">Audio PCM</comment>
+ <comment xml:lang="ia">Audio PCM</comment>
+ <comment xml:lang="hu">PCM hang</comment>
+ <comment xml:lang="hr">PCM zvučni zapis</comment>
+ <comment xml:lang="he">שמע PCM</comment>
+ <comment xml:lang="gl">son PCM</comment>
+ <comment xml:lang="ga">fuaim PCM</comment>
+ <comment xml:lang="fur">audio PCM</comment>
+ <comment xml:lang="fr">audio PCM</comment>
+ <comment xml:lang="fo">PCM ljóður</comment>
+ <comment xml:lang="fi">PCM-ääni</comment>
+ <comment xml:lang="eu">PCM audioa</comment>
+ <comment xml:lang="es">sonido PCM</comment>
+ <comment xml:lang="eo">PCM-sondosiero</comment>
+ <comment xml:lang="en_GB">PCM audio</comment>
+ <comment xml:lang="el">Ήχος PCM</comment>
+ <comment xml:lang="de">PCM-Audio</comment>
+ <comment xml:lang="da">PCM-lyd</comment>
+ <comment xml:lang="cy">Sain PCM</comment>
+ <comment xml:lang="cs">zvuk PCM</comment>
+ <comment xml:lang="ca">àudio PCM</comment>
+ <comment xml:lang="bg">Аудио — PCM</comment>
+ <comment xml:lang="be@latin">Aŭdyjo PCM</comment>
+ <comment xml:lang="be">аўдыя PCM</comment>
+ <comment xml:lang="az">PCM audio faylı</comment>
+ <comment xml:lang="ar">صوت PCM</comment>
+ <comment xml:lang="af">PCM-oudio</comment>
+ <acronym>PCM</acronym>
+ <expanded-acronym>Pulse-code Modulation</expanded-acronym>
+ <magic>
+ <match type="string" value=".snd" offset="0">
+ <match type="big32" value="23" offset="12"/>
</match>
- <match value="0x0064732E" type="little32" offset="0">
- <match value="1" type="little32" offset="12"/>
- <match value="2" type="little32" offset="12"/>
- <match value="3" type="little32" offset="12"/>
- <match value="4" type="little32" offset="12"/>
- <match value="5" type="little32" offset="12"/>
- <match value="6" type="little32" offset="12"/>
- <match value="7" type="little32" offset="12"/>
- <match value="23" type="little32" offset="12"/>
+ <match type="little32" value="0x0064732E" offset="0">
+ <match type="little32" value="1" offset="12"/>
+ <match type="little32" value="2" offset="12"/>
+ <match type="little32" value="3" offset="12"/>
+ <match type="little32" value="4" offset="12"/>
+ <match type="little32" value="5" offset="12"/>
+ <match type="little32" value="6" offset="12"/>
+ <match type="little32" value="7" offset="12"/>
+ <match type="little32" value="23" offset="12"/>
</match>
</magic>
</mime-type>
<mime-type type="audio/x-aifc">
<comment>AIFC audio</comment>
- <comment xml:lang="ar">AIFC سمعي</comment>
- <comment xml:lang="az">AIFC audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo AIFC</comment>
- <comment xml:lang="bg">Аудио — AIFC</comment>
- <comment xml:lang="ca">àudio AIFC</comment>
- <comment xml:lang="cs">zvuk AIFC</comment>
- <comment xml:lang="cy">Sain AIFC</comment>
- <comment xml:lang="da">AIFC-lyd</comment>
- <comment xml:lang="de">AIFC-Audio</comment>
- <comment xml:lang="el">Ήχος AIFC</comment>
- <comment xml:lang="en_GB">AIFC audio</comment>
- <comment xml:lang="eo">AIFC-sondosiero</comment>
- <comment xml:lang="es">sonido AIFC</comment>
- <comment xml:lang="eu">AIFC audioa</comment>
- <comment xml:lang="fi">AIFC-ääni</comment>
- <comment xml:lang="fo">AIFC ljóður</comment>
- <comment xml:lang="fr">audio AIFC</comment>
- <comment xml:lang="ga">fuaim AIFC</comment>
- <comment xml:lang="gl">son AIFC</comment>
- <comment xml:lang="he">שמע AIFC</comment>
- <comment xml:lang="hr">AIFC zvučni zapis</comment>
- <comment xml:lang="hu">AIFC hang</comment>
- <comment xml:lang="ia">Audio AIFC</comment>
- <comment xml:lang="id">Audio AIFC</comment>
- <comment xml:lang="it">Audio AIFC</comment>
- <comment xml:lang="ja">AIFC オーディオ</comment>
- <comment xml:lang="ka">AIFC აუდიო</comment>
- <comment xml:lang="kk">AIFC аудиосы</comment>
- <comment xml:lang="ko">AIFC 오디오</comment>
- <comment xml:lang="lt">AIFC garso įrašas</comment>
- <comment xml:lang="lv">AIFC audio</comment>
- <comment xml:lang="ms">Audio AIFC</comment>
- <comment xml:lang="nb">AIFC-lyd</comment>
- <comment xml:lang="nl">AIFC-audio</comment>
- <comment xml:lang="nn">AIFC-lyd</comment>
- <comment xml:lang="oc">àudio AIFC</comment>
- <comment xml:lang="pl">Plik dźwiękowy AIFC</comment>
- <comment xml:lang="pt">áudio AIFC</comment>
- <comment xml:lang="pt_BR">Áudio AIFC</comment>
- <comment xml:lang="ro">Fișier audio AIFC</comment>
- <comment xml:lang="ru">Аудио AIFC</comment>
- <comment xml:lang="sk">Zvuk AIFC</comment>
- <comment xml:lang="sl">Zvočna datoteka AIFC</comment>
- <comment xml:lang="sq">Audio AIFC</comment>
- <comment xml:lang="sr">АИФЦ звук</comment>
- <comment xml:lang="sv">AIFC-ljud</comment>
- <comment xml:lang="tr">AIFC sesi</comment>
- <comment xml:lang="uk">звук AIFC</comment>
- <comment xml:lang="vi">Âm thanh AIFC</comment>
- <comment xml:lang="zh_CN">AIFC 音频</comment>
<comment xml:lang="zh_TW">AIFC 音訊</comment>
+ <comment xml:lang="zh_CN">AIFC 音频</comment>
+ <comment xml:lang="vi">Âm thanh AIFC</comment>
+ <comment xml:lang="uk">звук AIFC</comment>
+ <comment xml:lang="tr">AIFC sesi</comment>
+ <comment xml:lang="sv">AIFC-ljud</comment>
+ <comment xml:lang="sr">АИФЦ звук</comment>
+ <comment xml:lang="sq">audio AIFC</comment>
+ <comment xml:lang="sl">Zvočna datoteka AIFC</comment>
+ <comment xml:lang="si">AIFC ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk AIFC</comment>
+ <comment xml:lang="ru">Аудио AIFC</comment>
+ <comment xml:lang="ro">Fișier audio AIFC</comment>
+ <comment xml:lang="pt_BR">Áudio AIFC</comment>
+ <comment xml:lang="pt">áudio AIFC</comment>
+ <comment xml:lang="pl">Plik dźwiękowy AIFC</comment>
+ <comment xml:lang="oc">àudio AIFC</comment>
+ <comment xml:lang="nn">AIFC-lyd</comment>
+ <comment xml:lang="nl">AIFC-audio</comment>
+ <comment xml:lang="nb">AIFC-lyd</comment>
+ <comment xml:lang="ms">Audio AIFC</comment>
+ <comment xml:lang="lv">AIFC audio</comment>
+ <comment xml:lang="lt">AIFC garso įrašas</comment>
+ <comment xml:lang="ko">AIFC 오디오</comment>
+ <comment xml:lang="kk">AIFC аудиосы</comment>
+ <comment xml:lang="ka">AIFC აუდიო</comment>
+ <comment xml:lang="ja">AIFC オーディオ</comment>
+ <comment xml:lang="it">Audio AIFC</comment>
+ <comment xml:lang="is">AIFC hljóðskrá</comment>
+ <comment xml:lang="id">Audio AIFC</comment>
+ <comment xml:lang="ia">Audio AIFC</comment>
+ <comment xml:lang="hu">AIFC hang</comment>
+ <comment xml:lang="hr">AIFC zvučni zapis</comment>
+ <comment xml:lang="he">שמע AIFC</comment>
+ <comment xml:lang="gl">son AIFC</comment>
+ <comment xml:lang="ga">fuaim AIFC</comment>
+ <comment xml:lang="fur">audio AIFC</comment>
+ <comment xml:lang="fr">audio AIFC</comment>
+ <comment xml:lang="fo">AIFC ljóður</comment>
+ <comment xml:lang="fi">AIFC-ääni</comment>
+ <comment xml:lang="eu">AIFC audioa</comment>
+ <comment xml:lang="es">sonido AIFC</comment>
+ <comment xml:lang="eo">AIFC-sondosiero</comment>
+ <comment xml:lang="en_GB">AIFC audio</comment>
+ <comment xml:lang="el">Ήχος AIFC</comment>
+ <comment xml:lang="de">AIFC-Audio</comment>
+ <comment xml:lang="da">AIFC-lyd</comment>
+ <comment xml:lang="cy">Sain AIFC</comment>
+ <comment xml:lang="cs">zvuk AIFC</comment>
+ <comment xml:lang="ca">àudio AIFC</comment>
+ <comment xml:lang="bg">Аудио — AIFC</comment>
+ <comment xml:lang="be@latin">Aŭdyjo AIFC</comment>
+ <comment xml:lang="be">аўдыя AIFC</comment>
+ <comment xml:lang="az">AIFC audio faylı</comment>
+ <comment xml:lang="ar">صوت AIFC</comment>
+ <comment xml:lang="af">AIFC-oudio</comment>
<acronym>AIFC</acronym>
<expanded-acronym>Audio Interchange File format Compressed</expanded-acronym>
<sub-class-of type="application/x-iff"/>
- <magic priority="50">
- <match value="AIFC" type="string" offset="8"/>
+ <magic>
+ <match type="string" value="AIFC" offset="8"/>
</magic>
<glob pattern="*.aifc"/>
<glob pattern="*.aiffc"/>
@@ -22615,535 +24496,762 @@
</mime-type>
<mime-type type="audio/x-aiff">
<comment>AIFF/Amiga/Mac audio</comment>
- <comment xml:lang="ar">AIFF/Amiga/Mac سمعي</comment>
- <comment xml:lang="az">AIFF/Amiga/Mac audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo AIFF/Amiga/Mac</comment>
- <comment xml:lang="bg">Аудио — AIFF/Amiga/Mac</comment>
- <comment xml:lang="ca">àudio AIFF/Amiga/Mac</comment>
- <comment xml:lang="cs">zvuk AIFF/Amiga/Mac</comment>
- <comment xml:lang="cy">Sain AIFF/Amiga/Mac</comment>
- <comment xml:lang="da">AIFF-/Amiga-/Maclyd</comment>
- <comment xml:lang="de">AIFF/Amiga/Mac-Audio</comment>
- <comment xml:lang="el">Ήχος AIFF/Amiga/Mac</comment>
- <comment xml:lang="en_GB">AIFF/Amiga/Mac audio</comment>
- <comment xml:lang="eo">AIFF/Amiga/Mac-sondosiero</comment>
- <comment xml:lang="es">sonido AIFF/Amiga/Mac</comment>
- <comment xml:lang="eu">AIFF/Amiga/Mac audioa</comment>
- <comment xml:lang="fi">AIFF/Amiga/Mac-ääni</comment>
- <comment xml:lang="fo">AIFF/Amiga/Mac ljóður</comment>
- <comment xml:lang="fr">audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="ga">fuaim AIFF/Amiga/Mac</comment>
- <comment xml:lang="gl">son AIFF/Amiga/Mac</comment>
- <comment xml:lang="he">שמע AIFF/Amiga/Mac</comment>
- <comment xml:lang="hr">AIFF/Amiga/Mac zvučni zapis</comment>
- <comment xml:lang="hu">AIFF/Amiga/Mac hang</comment>
- <comment xml:lang="ia">Audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="id">Audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="it">Audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="ja">AIFF/Amiga/Mac オーディオ</comment>
- <comment xml:lang="ka">AIFF/Amiga/Mac აუდიო</comment>
- <comment xml:lang="kk">AIFF/Amiga/Mac аудиосы</comment>
- <comment xml:lang="ko">AIFF/Amiga/Mac 오디오</comment>
- <comment xml:lang="lt">AIFF/Amiga/Mac garso įrašas</comment>
- <comment xml:lang="lv">AIFF/Amiga/Mac audio</comment>
- <comment xml:lang="ms">Audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="nb">AIFF/Amiga/Mac-lyd</comment>
- <comment xml:lang="nl">AIFF/Amiga/Mac-audio</comment>
- <comment xml:lang="nn">AIFF/Amiga/Mac-lyd</comment>
- <comment xml:lang="oc">àudio AIFF/Amiga/Mac</comment>
- <comment xml:lang="pl">Plik dźwiękowy AIFF/Amiga/Mac</comment>
- <comment xml:lang="pt">áudio AIFF/Amiga/Mac</comment>
- <comment xml:lang="pt_BR">Áudio AIFF/Amiga/Mac</comment>
- <comment xml:lang="ro">Audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="ru">Аудио AIFF/Amiga/Mac</comment>
- <comment xml:lang="sk">Zvuk AIFF/Amiga/Mac</comment>
- <comment xml:lang="sl">Zvočna datoteka AIFF/Amiga/Mac</comment>
- <comment xml:lang="sq">Audio AIFF/Amiga/Mac</comment>
- <comment xml:lang="sr">АИФФ/Амига/Мекинтош звук</comment>
- <comment xml:lang="sv">AIFF/Amiga/Mac-ljud</comment>
- <comment xml:lang="tr">AIFF/Amiga/Mac sesi</comment>
- <comment xml:lang="uk">звук AIFF/Amiga/Mac</comment>
- <comment xml:lang="vi">Âm thanh AIFF/Amiga/Mac</comment>
- <comment xml:lang="zh_CN">AIFF/Amiga/Mac 音频</comment>
<comment xml:lang="zh_TW">AIFF/Amiga/Mac 音訊</comment>
+ <comment xml:lang="zh_CN">AIFF/Amiga/Mac 音频</comment>
+ <comment xml:lang="vi">Âm thanh AIFF/Amiga/Mac</comment>
+ <comment xml:lang="uk">звук AIFF/Amiga/Mac</comment>
+ <comment xml:lang="tr">AIFF/Amiga/Mac sesi</comment>
+ <comment xml:lang="sv">AIFF/Amiga/Mac-ljud</comment>
+ <comment xml:lang="sr">АИФФ/Амига/Мекинтош звук</comment>
+ <comment xml:lang="sq">audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="sl">Zvočna datoteka AIFF/Amiga/Mac</comment>
+ <comment xml:lang="si">AIFF/Amiga/Mac ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk AIFF/Amiga/Mac</comment>
+ <comment xml:lang="ru">Аудио AIFF/Amiga/Mac</comment>
+ <comment xml:lang="ro">Audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="pt_BR">Áudio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="pt">áudio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="pl">Plik dźwiękowy AIFF/Amiga/Mac</comment>
+ <comment xml:lang="oc">àudio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="nn">AIFF/Amiga/Mac-lyd</comment>
+ <comment xml:lang="nl">AIFF/Amiga/Mac-audio</comment>
+ <comment xml:lang="nb">AIFF/Amiga/Mac-lyd</comment>
+ <comment xml:lang="ms">Audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="lv">AIFF/Amiga/Mac audio</comment>
+ <comment xml:lang="lt">AIFF/Amiga/Mac garso įrašas</comment>
+ <comment xml:lang="ko">AIFF/Amiga/Mac 오디오</comment>
+ <comment xml:lang="kk">AIFF/Amiga/Mac аудиосы</comment>
+ <comment xml:lang="ka">AIFF/Amiga/Mac აუდიო</comment>
+ <comment xml:lang="ja">AIFF/Amiga/Mac オーディオ</comment>
+ <comment xml:lang="it">Audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="is">AIFF/Amiga/Mac hljóðskrá</comment>
+ <comment xml:lang="id">Audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="ia">Audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="hu">AIFF/Amiga/Mac hang</comment>
+ <comment xml:lang="hr">AIFF/Amiga/Mac zvučni zapis</comment>
+ <comment xml:lang="he">שמע AIFF/Amiga/Mac</comment>
+ <comment xml:lang="gl">son AIFF/Amiga/Mac</comment>
+ <comment xml:lang="ga">fuaim AIFF/Amiga/Mac</comment>
+ <comment xml:lang="fur">audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="fr">audio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="fo">AIFF/Amiga/Mac ljóður</comment>
+ <comment xml:lang="fi">AIFF/Amiga/Mac-ääni</comment>
+ <comment xml:lang="eu">AIFF/Amiga/Mac audioa</comment>
+ <comment xml:lang="es">sonido AIFF/Amiga/Mac</comment>
+ <comment xml:lang="eo">AIFF/Amiga/Mac-sondosiero</comment>
+ <comment xml:lang="en_GB">AIFF/Amiga/Mac audio</comment>
+ <comment xml:lang="el">Ήχος AIFF/Amiga/Mac</comment>
+ <comment xml:lang="de">AIFF/Amiga/Mac-Audio</comment>
+ <comment xml:lang="da">AIFF-/Amiga-/Mac-lyd</comment>
+ <comment xml:lang="cy">Sain AIFF/Amiga/Mac</comment>
+ <comment xml:lang="cs">zvuk AIFF/Amiga/Mac</comment>
+ <comment xml:lang="ca">àudio AIFF/Amiga/Mac</comment>
+ <comment xml:lang="bg">Аудио — AIFF/Amiga/Mac</comment>
+ <comment xml:lang="be@latin">Aŭdyjo AIFF/Amiga/Mac</comment>
+ <comment xml:lang="be">аўдыя AIFF/Amiga/Mac</comment>
+ <comment xml:lang="az">AIFF/Amiga/Mac audio faylı</comment>
+ <comment xml:lang="ar">صوت AIFF/Amiga/Mac</comment>
+ <comment xml:lang="af">AIFF/Amiga/Mac-oudio</comment>
<acronym>AIFF</acronym>
<expanded-acronym>Audio Interchange File Format</expanded-acronym>
<sub-class-of type="application/x-iff"/>
- <magic priority="50">
- <match value="AIFF" type="string" offset="8"/>
- <match value="8SVX" type="string" offset="8"/>
+ <magic>
+ <match type="string" value="AIFF" offset="8"/>
+ <match type="string" value="8SVX" offset="8"/>
</magic>
<glob pattern="*.aiff"/>
<glob pattern="*.aif"/>
</mime-type>
<mime-type type="audio/x-ape">
<comment>Monkey's audio</comment>
- <comment xml:lang="ar">Monkey سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Monkey's</comment>
- <comment xml:lang="bg">Аудио — Monkey</comment>
- <comment xml:lang="ca">àudio de Monkey</comment>
- <comment xml:lang="cs">zvuk Monkey's</comment>
- <comment xml:lang="da">Monkeys lyd</comment>
- <comment xml:lang="de">Monkey's-Audio</comment>
- <comment xml:lang="el">Ήχος Monkey's</comment>
- <comment xml:lang="en_GB">Monkey's audio</comment>
- <comment xml:lang="es">sonido de Monkey</comment>
- <comment xml:lang="eu">Monkey audioa</comment>
- <comment xml:lang="fi">Monkey's Audio -ääni</comment>
- <comment xml:lang="fo">Monkey's ljóður</comment>
- <comment xml:lang="fr">audio Monkey</comment>
- <comment xml:lang="ga">fuaim Monkey's</comment>
- <comment xml:lang="gl">son de Monkey</comment>
- <comment xml:lang="he">שמע של Monkey's</comment>
- <comment xml:lang="hr">Monkey zvučni zapis</comment>
- <comment xml:lang="hu">Monkey hang</comment>
- <comment xml:lang="ia">Audio Monkey's</comment>
- <comment xml:lang="id">Audio Monkey</comment>
- <comment xml:lang="it">Audio Monkey's</comment>
- <comment xml:lang="ja">Monkey's オーディオ</comment>
- <comment xml:lang="kk">Monkey аудиосы</comment>
- <comment xml:lang="ko">Monkey's 오디오</comment>
- <comment xml:lang="lt">Monkey garso įrašas</comment>
- <comment xml:lang="lv">Monkey's audio</comment>
- <comment xml:lang="nb">Monkey's-lyd</comment>
- <comment xml:lang="nl">Monkey's-audio</comment>
- <comment xml:lang="nn">Monkey's Audio-lyd</comment>
- <comment xml:lang="oc">àudio Monkey</comment>
- <comment xml:lang="pl">Plik dźwiękowy Monkey's Audio</comment>
- <comment xml:lang="pt">áudio Monkey</comment>
- <comment xml:lang="pt_BR">Áudio Monkey's</comment>
- <comment xml:lang="ro">Audio Monkey's</comment>
- <comment xml:lang="ru">Аудио Monkey's</comment>
- <comment xml:lang="sk">Zvuk Monkey's</comment>
- <comment xml:lang="sl">Zvočna datoteka Monkey</comment>
- <comment xml:lang="sq">Audio Monkey's</comment>
- <comment xml:lang="sr">Монкијев звук</comment>
- <comment xml:lang="sv">Monkey's audio</comment>
- <comment xml:lang="tr">Monkey's sesi</comment>
- <comment xml:lang="uk">звук Monkey's</comment>
- <comment xml:lang="vi">Âm thanh cua Monkey</comment>
- <comment xml:lang="zh_CN">Monkey's Audio 音频</comment>
<comment xml:lang="zh_TW">Monkey's 音訊</comment>
- <magic priority="50">
- <match value="MAC " type="string" offset="0"/>
+ <comment xml:lang="zh_CN">Monkey's Audio 音频</comment>
+ <comment xml:lang="vi">Âm thanh cua Monkey</comment>
+ <comment xml:lang="uk">звук Monkey's</comment>
+ <comment xml:lang="tr">Monkey's sesi</comment>
+ <comment xml:lang="sv">Monkey's audio</comment>
+ <comment xml:lang="sr">Монкијев звук</comment>
+ <comment xml:lang="sq">audio Monkey's</comment>
+ <comment xml:lang="sl">Zvočna datoteka Monkey</comment>
+ <comment xml:lang="si">වඳුරාගේ හඬ පටය</comment>
+ <comment xml:lang="sk">Zvuk Monkey's</comment>
+ <comment xml:lang="ru">Аудио Monkey's</comment>
+ <comment xml:lang="ro">Audio Monkey's</comment>
+ <comment xml:lang="pt_BR">Áudio Monkey's</comment>
+ <comment xml:lang="pt">áudio Monkey</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Monkey's Audio</comment>
+ <comment xml:lang="oc">àudio Monkey</comment>
+ <comment xml:lang="nn">Monkey's Audio-lyd</comment>
+ <comment xml:lang="nl">Monkey's-audio</comment>
+ <comment xml:lang="nb">Monkey's-lyd</comment>
+ <comment xml:lang="lv">Monkey's audio</comment>
+ <comment xml:lang="lt">Monkey garso įrašas</comment>
+ <comment xml:lang="ko">Monkey's 오디오</comment>
+ <comment xml:lang="kk">Monkey аудиосы</comment>
+ <comment xml:lang="ja">Monkey's オーディオ</comment>
+ <comment xml:lang="it">Audio Monkey's</comment>
+ <comment xml:lang="is">Monkey's hljóðskrá</comment>
+ <comment xml:lang="id">Audio Monkey</comment>
+ <comment xml:lang="ia">Audio Monkey's</comment>
+ <comment xml:lang="hu">Monkey hang</comment>
+ <comment xml:lang="hr">Monkey zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Monkey's</comment>
+ <comment xml:lang="gl">son de Monkey</comment>
+ <comment xml:lang="ga">fuaim Monkey's</comment>
+ <comment xml:lang="fur">audio Monkey's</comment>
+ <comment xml:lang="fr">audio Monkey</comment>
+ <comment xml:lang="fo">Monkey's ljóður</comment>
+ <comment xml:lang="fi">Monkey's Audio -ääni</comment>
+ <comment xml:lang="eu">Monkey audioa</comment>
+ <comment xml:lang="es">sonido de Monkey</comment>
+ <comment xml:lang="en_GB">Monkey's audio</comment>
+ <comment xml:lang="el">Ήχος Monkey's</comment>
+ <comment xml:lang="de">Monkey's-Audio</comment>
+ <comment xml:lang="da">Monkey's-lyd</comment>
+ <comment xml:lang="cs">zvuk Monkey's</comment>
+ <comment xml:lang="ca">àudio de Monkey</comment>
+ <comment xml:lang="bg">Аудио — Monkey</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Monkey's</comment>
+ <comment xml:lang="be">аўдыя Monkey's</comment>
+ <comment xml:lang="ar">صوت Monkey</comment>
+ <magic>
+ <match type="string" value="MAC " offset="0"/>
</magic>
<glob pattern="*.ape"/>
</mime-type>
<mime-type type="audio/x-pn-audibleaudio">
<comment>Audible.Com audio</comment>
- <comment xml:lang="ca">àudio Audible.Com</comment>
- <comment xml:lang="cs">zvuk Audible.Com</comment>
- <comment xml:lang="de">Audible.Com-Audio</comment>
- <comment xml:lang="en_GB">Audible.Com audio</comment>
- <comment xml:lang="es">sonido de Audible.com</comment>
- <comment xml:lang="hr">Audible.Com zvučni zapis</comment>
- <comment xml:lang="hu">Audible.Com hang</comment>
- <comment xml:lang="id">Audio Audible.Com</comment>
- <comment xml:lang="it">Audio Audible.Com</comment>
- <comment xml:lang="kk">Audible.Com аудиосы</comment>
- <comment xml:lang="ko">Audible.Com 오디오</comment>
- <comment xml:lang="pl">Plik dźwiękowy Audible.com</comment>
- <comment xml:lang="pt_BR">Áudio de audible.com</comment>
- <comment xml:lang="ru">Аудио Audible.Com</comment>
- <comment xml:lang="sk">Audio Audible.Com</comment>
- <comment xml:lang="sv">Audible.Com-ljud</comment>
- <comment xml:lang="uk">звук Audible.Com</comment>
- <comment xml:lang="zh_CN">Audible.Com 音频</comment>
<comment xml:lang="zh_TW">Audible.Com 音訊</comment>
- <magic priority="50">
-
- <match value="1469084982" type="big32" offset="4"/>
- <match value="aax " type="string" offset="8"/>
+ <comment xml:lang="zh_CN">Audible.Com 音频</comment>
+ <comment xml:lang="uk">звук Audible.Com</comment>
+ <comment xml:lang="tr">Audible.Com sesi</comment>
+ <comment xml:lang="sv">Audible.Com-ljud</comment>
+ <comment xml:lang="sq">audio Audible.Com</comment>
+ <comment xml:lang="sl">Zvok Audible.Com</comment>
+ <comment xml:lang="si">Audible.Com ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Audio Audible.Com</comment>
+ <comment xml:lang="ru">Аудио Audible.Com</comment>
+ <comment xml:lang="pt_BR">Áudio de audible.com</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Audible.com</comment>
+ <comment xml:lang="nl">Audible.com-audio</comment>
+ <comment xml:lang="ko">Audible.Com 오디오</comment>
+ <comment xml:lang="kk">Audible.Com аудиосы</comment>
+ <comment xml:lang="ja">Audible.Com オーディオ</comment>
+ <comment xml:lang="it">Audio Audible.Com</comment>
+ <comment xml:lang="is">Audible.Com hljóðskrá</comment>
+ <comment xml:lang="id">Audio Audible.Com</comment>
+ <comment xml:lang="hu">Audible.Com hang</comment>
+ <comment xml:lang="hr">Audible.Com zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Audible.Com</comment>
+ <comment xml:lang="ga">fuaim Audible.Com</comment>
+ <comment xml:lang="fur">audio Audible.Com</comment>
+ <comment xml:lang="fr">audio Audible.Com</comment>
+ <comment xml:lang="fi">Audible.Com-ääni</comment>
+ <comment xml:lang="eu">Audible.Com audioa</comment>
+ <comment xml:lang="es">sonido de Audible.com</comment>
+ <comment xml:lang="en_GB">Audible.Com audio</comment>
+ <comment xml:lang="de">Audible.com-Audio</comment>
+ <comment xml:lang="da">Audible.Com-lyd</comment>
+ <comment xml:lang="cs">zvuk Audible.Com</comment>
+ <comment xml:lang="ca">àudio d'Audible.Com</comment>
+ <comment xml:lang="bg">Аудио — Audible.Com</comment>
+ <comment xml:lang="be">аўдыя Audible.Com</comment>
+ <comment xml:lang="ar">صوت Audible.Com</comment>
+ <magic>
+ <!-- https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/aadec.c#L33 -->
+ <match type="big32" value="1469084982" offset="4"/>
</magic>
<glob pattern="*.aa"/>
- <glob pattern="*.aax"/>
<alias type="audio/vnd.audible"/>
- <alias type="audio/vnd.audible.aax"/>
+ </mime-type>
+ <mime-type type="audio/vnd.audible.aax">
+ <comment>Audible Enhanced audio</comment>
+ <comment xml:lang="zh_CN">Audible 增强音频</comment>
+ <comment xml:lang="uk">звук Audible Enhanced</comment>
+ <comment xml:lang="tr">Audible Enhanced sesi</comment>
+ <comment xml:lang="sv">Audible förbättrat ljud</comment>
+ <comment xml:lang="si">ශ්‍රවණය කළ හැකි වැඩිදියුණු කළ ශ්‍රව්‍ය</comment>
+ <comment xml:lang="ru">Аудио Audible Enhanced</comment>
+ <comment xml:lang="pt_BR">Áudio Audible Enhanced</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Audible Enhanced</comment>
+ <comment xml:lang="nl">Audible verbeterde-audio</comment>
+ <comment xml:lang="ko">Audible 확장된 오디오</comment>
+ <comment xml:lang="kk">Audible Enhanced аудиосы</comment>
+ <comment xml:lang="ja">Audible エンハンスオーディオ</comment>
+ <comment xml:lang="it">Audio Audible Enhanced</comment>
+ <comment xml:lang="is">Audible Enhanced hljóðskrá</comment>
+ <comment xml:lang="id">audio Audible Enhanced</comment>
+ <comment xml:lang="hu">Audible Enhanced hang</comment>
+ <comment xml:lang="hr">Audible poboljšani zvučni zapis</comment>
+ <comment xml:lang="he">שמע Audible Enhanced</comment>
+ <comment xml:lang="fr">Audio amélioré Audible</comment>
+ <comment xml:lang="fi">Audible Enhanced -ääni</comment>
+ <comment xml:lang="es">sonido mejorado de Audible</comment>
+ <comment xml:lang="en_GB">Audible Enhanced audio</comment>
+ <comment xml:lang="de">Audible verbessertes Audio</comment>
+ <comment xml:lang="da">Audible Enhanced-lyd</comment>
+ <comment xml:lang="ca">àudio d'Audible Enhanced</comment>
+ <comment xml:lang="be">аўдыя Audible Enhanced</comment>
+ <comment xml:lang="ar">صوت محسن مسموع</comment>
+ <magic>
+ <match type="string" value="ftypaax " offset="4"/>
+ </magic>
+ <glob pattern="*.aax"/>
+ </mime-type>
+ <mime-type type="audio/vnd.audible.aaxc">
+ <comment>Audible Enhanced audio</comment>
+ <comment xml:lang="zh_CN">Audible 增强音频</comment>
+ <comment xml:lang="uk">звук Audible Enhanced</comment>
+ <comment xml:lang="tr">Audible Enhanced sesi</comment>
+ <comment xml:lang="sv">Audible förbättrat ljud</comment>
+ <comment xml:lang="si">ශ්‍රවණය කළ හැකි වැඩිදියුණු කළ ශ්‍රව්‍ය</comment>
+ <comment xml:lang="ru">Аудио Audible Enhanced</comment>
+ <comment xml:lang="pt_BR">Áudio Audible Enhanced</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Audible Enhanced</comment>
+ <comment xml:lang="nl">Audible verbeterde-audio</comment>
+ <comment xml:lang="ko">Audible 확장된 오디오</comment>
+ <comment xml:lang="kk">Audible Enhanced аудиосы</comment>
+ <comment xml:lang="ja">Audible エンハンスオーディオ</comment>
+ <comment xml:lang="it">Audio Audible Enhanced</comment>
+ <comment xml:lang="is">Audible Enhanced hljóðskrá</comment>
+ <comment xml:lang="id">audio Audible Enhanced</comment>
+ <comment xml:lang="hu">Audible Enhanced hang</comment>
+ <comment xml:lang="hr">Audible poboljšani zvučni zapis</comment>
+ <comment xml:lang="he">שמע Audible Enhanced</comment>
+ <comment xml:lang="fr">Audio amélioré Audible</comment>
+ <comment xml:lang="fi">Audible Enhanced -ääni</comment>
+ <comment xml:lang="es">sonido mejorado de Audible</comment>
+ <comment xml:lang="en_GB">Audible Enhanced audio</comment>
+ <comment xml:lang="de">Audible verbessertes Audio</comment>
+ <comment xml:lang="da">Audible Enhanced-lyd</comment>
+ <comment xml:lang="ca">àudio d'Audible Enhanced</comment>
+ <comment xml:lang="be">аўдыя Audible Enhanced</comment>
+ <comment xml:lang="ar">صوت محسن مسموع</comment>
+ <magic priority="50">
+ <match type="string" value="ftypaaxc" offset="4"/>
+ </magic>
+ <glob pattern="*.aaxc"/>
+ </mime-type>
+ <mime-type type="audio/x-dff">
+ <comment>DSDIFF audio</comment>
+ <comment xml:lang="zh_TW">DSDIFF 音訊</comment>
+ <comment xml:lang="zh_CN">DSDIFF 音频</comment>
+ <comment xml:lang="uk">звукові дані DSDIFF</comment>
+ <comment xml:lang="tr">DSDIFF sesi</comment>
+ <comment xml:lang="sv">DSDIFF-ljud</comment>
+ <comment xml:lang="sl">Zvok DSDIFF</comment>
+ <comment xml:lang="si">DSDIFF ශ්රව්ය</comment>
+ <comment xml:lang="ru">Аудио DSDIFF</comment>
+ <comment xml:lang="pt_BR">Áudio DSDIFF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy DSDIFF</comment>
+ <comment xml:lang="nl">DSDIFF-audio</comment>
+ <comment xml:lang="ko">DSDIFF 오디오</comment>
+ <comment xml:lang="kk">DSDIFF аудиосы</comment>
+ <comment xml:lang="ja">DSDIFF オーディオ</comment>
+ <comment xml:lang="it">Audio DSDIFF</comment>
+ <comment xml:lang="hr">DSDIFF zvučni zapis</comment>
+ <comment xml:lang="fi">DSDIFF-ääni</comment>
+ <comment xml:lang="eu">DSDIFF audioa</comment>
+ <comment xml:lang="es">sonido DSDIFF</comment>
+ <comment xml:lang="en_GB">DSDIFF audio</comment>
+ <comment xml:lang="de">DSDIFF-Audio</comment>
+ <comment xml:lang="be">аўдыя DSDIFF</comment>
+ <comment xml:lang="ar">صوت DSDIFF</comment>
+ <acronym>DSDIFF</acronym>
+ <expanded-acronym>Direct Stream Digital Interchange File Format</expanded-acronym>
+ <magic>
+ <!-- from https://www.sonicstudio.com/pdf/dsd/DSDIFF_1.5_Spec.pdf -->
+ <match value="FRM8" type="string" offset="0">
+ <match value="DSD " type="string" offset="12"/>
+ </match>
+ </magic>
+ <glob pattern="*.dff"/>
+ <alias type="audio/dff"/>
+ </mime-type>
+ <mime-type type="audio/x-dsf">
+ <comment>DSF audio</comment>
+ <comment xml:lang="zh_TW">DSF 音訊</comment>
+ <comment xml:lang="zh_CN">DSF 音频</comment>
+ <comment xml:lang="uk">звукові дані DSF</comment>
+ <comment xml:lang="tr">DSF sesi</comment>
+ <comment xml:lang="sv">DSF-ljud</comment>
+ <comment xml:lang="sl">Zvok DSF</comment>
+ <comment xml:lang="si">DSF ශ්‍රව්‍ය</comment>
+ <comment xml:lang="ru">Аудио DSF</comment>
+ <comment xml:lang="pt_BR">Áudio DSF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy DSF</comment>
+ <comment xml:lang="nl">DSF-audio</comment>
+ <comment xml:lang="ko">DSF 오디오</comment>
+ <comment xml:lang="kk">DSF аудиосы</comment>
+ <comment xml:lang="ja">DSF オーディオ</comment>
+ <comment xml:lang="it">Audio DSF</comment>
+ <comment xml:lang="hr">DSF zvučni zapis</comment>
+ <comment xml:lang="gl">Son DSF</comment>
+ <comment xml:lang="fi">DSF-ääni</comment>
+ <comment xml:lang="eu">DSF audioa</comment>
+ <comment xml:lang="es">sonido DSF</comment>
+ <comment xml:lang="en_GB">DSF audio</comment>
+ <comment xml:lang="de">DSF-Audio</comment>
+ <comment xml:lang="be">аўдыя DSF</comment>
+ <comment xml:lang="ar">صوت DSF</comment>
+ <acronym>DSF</acronym>
+ <expanded-acronym>Direct stream digital Stream File</expanded-acronym>
+ <magic>
+ <!-- from https://dsd-guide.com/sites/default/files/white-papers/DSFFileFormatSpec_E.pdf -->
+ <match value="DSD " type="string" offset="0">
+ <match value="fmt " type="string" offset="28">
+ <match value="data" type="string" offset="80"/>
+ </match>
+ </match>
+ </magic>
+ <glob pattern="*.dsf"/>
+ <alias type="audio/dsf"/>
+ <!-- Problematic because some clients expect these mime types to be DSDIFF files -->
+ <alias type="audio/x-dsd"/>
+ <alias type="audio/dsd"/>
</mime-type>
<mime-type type="audio/x-it">
<comment>Impulse Tracker audio</comment>
- <comment xml:lang="ar">Impulse Tracker سمعي</comment>
- <comment xml:lang="az">Impulse Tracker audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo Impulse Tracker</comment>
- <comment xml:lang="bg">Аудио — Impulse Tracker</comment>
- <comment xml:lang="ca">àudio d'Impulse Tracker</comment>
- <comment xml:lang="cs">zvuk Impulse Tracker</comment>
- <comment xml:lang="cy">Sain Impulse Tracker</comment>
- <comment xml:lang="da">Impulse Tracker-lyd</comment>
- <comment xml:lang="de">Impulse-Tracker-Audio</comment>
- <comment xml:lang="el">Ήχος Impulse Tracker</comment>
- <comment xml:lang="en_GB">Impulse Tracker audio</comment>
- <comment xml:lang="eo">Sondosiero de Impulse Tracker</comment>
- <comment xml:lang="es">sonido de Impulse Tracker</comment>
- <comment xml:lang="eu">Impulse Tracker audioa</comment>
- <comment xml:lang="fi">Impulse Tracker -ääni</comment>
- <comment xml:lang="fo">Impulse Tracker ljóður</comment>
- <comment xml:lang="fr">audio Impulse Tracker</comment>
- <comment xml:lang="ga">fuaim Impulse Tracker</comment>
- <comment xml:lang="gl">son de Impulse Tracker</comment>
- <comment xml:lang="he">שמע של Impulse Tracker</comment>
- <comment xml:lang="hr">Impulse Tracker zvučni zapis</comment>
- <comment xml:lang="hu">Impulse Tracker hang</comment>
- <comment xml:lang="ia">Audio Impulse Tracker</comment>
- <comment xml:lang="id">Audio Impulse Tracker</comment>
- <comment xml:lang="it">Audio Impulse Tracker</comment>
- <comment xml:lang="ja">Impulse Tracker オーディオ</comment>
- <comment xml:lang="kk">Impulse Tracker аудиосы</comment>
- <comment xml:lang="ko">Impulse Tracker 오디오</comment>
- <comment xml:lang="lt">Impulse Tracker garso įrašas</comment>
- <comment xml:lang="lv">Impulse Tracker audio</comment>
- <comment xml:lang="ms">Audio Impulse Tracker</comment>
- <comment xml:lang="nb">Impulse Tracker-lyd</comment>
- <comment xml:lang="nl">Impulse Tracker-audio</comment>
- <comment xml:lang="nn">Impulse Tracker lyd</comment>
- <comment xml:lang="oc">àudio Impulse Tracker</comment>
- <comment xml:lang="pl">Plik dźwiękowy Impulse Tracker</comment>
- <comment xml:lang="pt">áudio Impulse Tracker</comment>
- <comment xml:lang="pt_BR">Áudio Impulse Tracker</comment>
- <comment xml:lang="ro">Audio Impulse Tracker</comment>
- <comment xml:lang="ru">Аудио Impulse Tracker</comment>
- <comment xml:lang="sk">Zvuk Impulse Tracker</comment>
- <comment xml:lang="sl">Zvočna datoteka Impulse Tracker</comment>
- <comment xml:lang="sq">Audio Impulse Tracker</comment>
- <comment xml:lang="sr">звук Пратиоца Импулса</comment>
- <comment xml:lang="sv">Impulse Tracker-ljud</comment>
- <comment xml:lang="tr">Impulse Tracker sesi</comment>
- <comment xml:lang="uk">звук Impulse Tracker</comment>
- <comment xml:lang="vi">Âm thanh Impulse Tracker</comment>
- <comment xml:lang="zh_CN">Impulse Tracker 音频</comment>
<comment xml:lang="zh_TW">Impulse Tracker 音訊</comment>
- <magic priority="50">
- <match value="IMPM" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">Impulse Tracker 音频</comment>
+ <comment xml:lang="vi">Âm thanh Impulse Tracker</comment>
+ <comment xml:lang="uk">звук Impulse Tracker</comment>
+ <comment xml:lang="tr">Impulse Tracker sesi</comment>
+ <comment xml:lang="sv">Impulse Tracker-ljud</comment>
+ <comment xml:lang="sr">звук Пратиоца Импулса</comment>
+ <comment xml:lang="sq">audio Impulse Tracker</comment>
+ <comment xml:lang="sl">Zvočna datoteka Impulse Tracker</comment>
+ <comment xml:lang="si">Impulse Tracker ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk Impulse Tracker</comment>
+ <comment xml:lang="ru">Аудио Impulse Tracker</comment>
+ <comment xml:lang="ro">Audio Impulse Tracker</comment>
+ <comment xml:lang="pt_BR">Áudio Impulse Tracker</comment>
+ <comment xml:lang="pt">áudio Impulse Tracker</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Impulse Tracker</comment>
+ <comment xml:lang="oc">àudio Impulse Tracker</comment>
+ <comment xml:lang="nn">Impulse Tracker lyd</comment>
+ <comment xml:lang="nl">Impulse Tracker-audio</comment>
+ <comment xml:lang="nb">Impulse Tracker-lyd</comment>
+ <comment xml:lang="ms">Audio Impulse Tracker</comment>
+ <comment xml:lang="lv">Impulse Tracker audio</comment>
+ <comment xml:lang="lt">Impulse Tracker garso įrašas</comment>
+ <comment xml:lang="ko">Impulse Tracker 오디오</comment>
+ <comment xml:lang="kk">Impulse Tracker аудиосы</comment>
+ <comment xml:lang="ja">Impulse Tracker オーディオ</comment>
+ <comment xml:lang="it">Audio Impulse Tracker</comment>
+ <comment xml:lang="is">Impulse Tracker hljóðskrá</comment>
+ <comment xml:lang="id">Audio Impulse Tracker</comment>
+ <comment xml:lang="ia">Audio Impulse Tracker</comment>
+ <comment xml:lang="hu">Impulse Tracker hang</comment>
+ <comment xml:lang="hr">Impulse Tracker zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Impulse Tracker</comment>
+ <comment xml:lang="gl">son de Impulse Tracker</comment>
+ <comment xml:lang="ga">fuaim Impulse Tracker</comment>
+ <comment xml:lang="fur">audio Impulse Tracker</comment>
+ <comment xml:lang="fr">audio Impulse Tracker</comment>
+ <comment xml:lang="fo">Impulse Tracker ljóður</comment>
+ <comment xml:lang="fi">Impulse Tracker -ääni</comment>
+ <comment xml:lang="eu">Impulse Tracker audioa</comment>
+ <comment xml:lang="es">sonido de Impulse Tracker</comment>
+ <comment xml:lang="eo">Sondosiero de Impulse Tracker</comment>
+ <comment xml:lang="en_GB">Impulse Tracker audio</comment>
+ <comment xml:lang="el">Ήχος Impulse Tracker</comment>
+ <comment xml:lang="de">Impulse-Tracker-Audio</comment>
+ <comment xml:lang="da">Impulse Tracker-lyd</comment>
+ <comment xml:lang="cy">Sain Impulse Tracker</comment>
+ <comment xml:lang="cs">zvuk Impulse Tracker</comment>
+ <comment xml:lang="ca">àudio d'Impulse Tracker</comment>
+ <comment xml:lang="bg">Аудио — Impulse Tracker</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Impulse Tracker</comment>
+ <comment xml:lang="be">аўдыя Impulse Tracker</comment>
+ <comment xml:lang="az">Impulse Tracker audio faylı</comment>
+ <comment xml:lang="ar">صوت Impulse Tracker</comment>
+ <magic>
+ <match type="string" value="IMPM" offset="0"/>
</magic>
<glob pattern="*.it"/>
</mime-type>
<mime-type type="audio/flac">
<comment>FLAC audio</comment>
- <comment xml:lang="ar">FLAC سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo FLAC</comment>
- <comment xml:lang="bg">Аудио — FLAC</comment>
- <comment xml:lang="ca">àudio FLAC</comment>
- <comment xml:lang="cs">zvuk FLAC</comment>
- <comment xml:lang="da">FLAC-lyd</comment>
- <comment xml:lang="de">FLAC-Audio</comment>
- <comment xml:lang="el">Ήχος FLAC</comment>
- <comment xml:lang="en_GB">FLAC audio</comment>
- <comment xml:lang="eo">FLAC-sondosiero</comment>
- <comment xml:lang="es">sonido FLAC</comment>
- <comment xml:lang="eu">FLAC audioa</comment>
- <comment xml:lang="fi">FLAC-ääni</comment>
- <comment xml:lang="fo">FLAC ljóður</comment>
- <comment xml:lang="fr">audio FLAC</comment>
- <comment xml:lang="ga">fuaim FLAC</comment>
- <comment xml:lang="gl">son FLAC</comment>
- <comment xml:lang="he">קובץ שמע מסוג FLAC</comment>
- <comment xml:lang="hr">FLAC zvučni zapis</comment>
- <comment xml:lang="hu">FLAC hang</comment>
- <comment xml:lang="ia">Audio FLAC</comment>
- <comment xml:lang="id">Audio FLAC</comment>
- <comment xml:lang="it">Audio FLAC</comment>
- <comment xml:lang="ja">FLAC オーディオ</comment>
- <comment xml:lang="ka">FLAC აუდიო</comment>
- <comment xml:lang="kk">FLAC аудиосы</comment>
- <comment xml:lang="ko">FLAC 오디오</comment>
- <comment xml:lang="lt">FLAC garso įrašas</comment>
- <comment xml:lang="lv">FLAC audio</comment>
- <comment xml:lang="ms">Audio FLAC</comment>
- <comment xml:lang="nb">FLAC-lyd</comment>
- <comment xml:lang="nl">FLAC-audio</comment>
- <comment xml:lang="nn">FLAC-lyd</comment>
- <comment xml:lang="oc">àudio FLAC</comment>
- <comment xml:lang="pl">Plik dźwiękowy FLAC</comment>
- <comment xml:lang="pt">áudio FLAC</comment>
- <comment xml:lang="pt_BR">Áudio FLAC</comment>
- <comment xml:lang="ro">Audio FLAC</comment>
- <comment xml:lang="ru">Аудио FLAC</comment>
- <comment xml:lang="sk">Zvuk FLAC</comment>
- <comment xml:lang="sl">Zvočna datoteka Flac</comment>
- <comment xml:lang="sq">Audio FLAC</comment>
- <comment xml:lang="sr">ФЛАЦ звук</comment>
- <comment xml:lang="sv">FLAC-ljud</comment>
- <comment xml:lang="tr">FLAC sesi</comment>
- <comment xml:lang="uk">звук FLAC</comment>
- <comment xml:lang="vi">Âm thanh FLAC</comment>
- <comment xml:lang="zh_CN">FLAC 音频</comment>
<comment xml:lang="zh_TW">FLAC 音訊</comment>
- <magic priority="50">
+ <comment xml:lang="zh_CN">FLAC 音频</comment>
+ <comment xml:lang="vi">Âm thanh FLAC</comment>
+ <comment xml:lang="uk">звук FLAC</comment>
+ <comment xml:lang="tr">FLAC sesi</comment>
+ <comment xml:lang="sv">FLAC-ljud</comment>
+ <comment xml:lang="sr">ФЛАЦ звук</comment>
+ <comment xml:lang="sq">audio FLAC</comment>
+ <comment xml:lang="sl">Zvočna datoteka Flac</comment>
+ <comment xml:lang="si">FLAC ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk FLAC</comment>
+ <comment xml:lang="ru">Аудио FLAC</comment>
+ <comment xml:lang="ro">Audio FLAC</comment>
+ <comment xml:lang="pt_BR">Áudio FLAC</comment>
+ <comment xml:lang="pt">áudio FLAC</comment>
+ <comment xml:lang="pl">Plik dźwiękowy FLAC</comment>
+ <comment xml:lang="oc">àudio FLAC</comment>
+ <comment xml:lang="nn">FLAC-lyd</comment>
+ <comment xml:lang="nl">FLAC-audio</comment>
+ <comment xml:lang="nb">FLAC-lyd</comment>
+ <comment xml:lang="ms">Audio FLAC</comment>
+ <comment xml:lang="lv">FLAC audio</comment>
+ <comment xml:lang="lt">FLAC garso įrašas</comment>
+ <comment xml:lang="ko">FLAC 오디오</comment>
+ <comment xml:lang="kk">FLAC аудиосы</comment>
+ <comment xml:lang="ka">FLAC აუდიო</comment>
+ <comment xml:lang="ja">FLAC オーディオ</comment>
+ <comment xml:lang="it">Audio FLAC</comment>
+ <comment xml:lang="is">FLAC hljóðskrá</comment>
+ <comment xml:lang="id">Audio FLAC</comment>
+ <comment xml:lang="ia">Audio FLAC</comment>
+ <comment xml:lang="hu">FLAC hang</comment>
+ <comment xml:lang="hr">FLAC zvučni zapis</comment>
+ <comment xml:lang="he">קובץ שמע מסוג FLAC</comment>
+ <comment xml:lang="gl">son FLAC</comment>
+ <comment xml:lang="ga">fuaim FLAC</comment>
+ <comment xml:lang="fur">audio FLAC</comment>
+ <comment xml:lang="fr">audio FLAC</comment>
+ <comment xml:lang="fo">FLAC ljóður</comment>
+ <comment xml:lang="fi">FLAC-ääni</comment>
+ <comment xml:lang="eu">FLAC audioa</comment>
+ <comment xml:lang="es">sonido FLAC</comment>
+ <comment xml:lang="eo">FLAC-sondosiero</comment>
+ <comment xml:lang="en_GB">FLAC audio</comment>
+ <comment xml:lang="el">Ήχος FLAC</comment>
+ <comment xml:lang="de">FLAC-Audio</comment>
+ <comment xml:lang="da">FLAC-lyd</comment>
+ <comment xml:lang="cs">zvuk FLAC</comment>
+ <comment xml:lang="ca">àudio FLAC</comment>
+ <comment xml:lang="bg">Аудио — FLAC</comment>
+ <comment xml:lang="be@latin">Aŭdyjo FLAC</comment>
+ <comment xml:lang="be">аўдыя FLAC</comment>
+ <comment xml:lang="ar">صوت FLAC</comment>
+ <comment xml:lang="af">FLAC-oudio</comment>
+ <acronym>FLAC</acronym>
+ <expanded-acronym>Free Lossless Audio Codec</expanded-acronym>
+ <magic>
<match value="fLaC" type="string" offset="0"/>
</magic>
<glob pattern="*.flac"/>
<alias type="audio/x-flac"/>
</mime-type>
+ <mime-type type="audio/x-tak">
+ <comment>TAK audio</comment>
+ <comment xml:lang="uk">звук TAK</comment>
+ <comment xml:lang="sv">TAK-ljud</comment>
+ <comment xml:lang="ru">Аудио TAK</comment>
+ <comment xml:lang="pt_BR">Áudio TAK</comment>
+ <comment xml:lang="pl">Plik dźwiękowy TAK</comment>
+ <comment xml:lang="it">Audio Tak</comment>
+ <comment xml:lang="gl">Son TAK</comment>
+ <comment xml:lang="eu">TAK audioa</comment>
+ <comment xml:lang="es">audio TAK</comment>
+ <comment xml:lang="de">TAK-Audio</comment>
+ <comment xml:lang="be">аўдыя TAK</comment>
+ <acronym>TAK</acronym>
+ <expanded-acronym>Tom's lossless Audio Kompressor</expanded-acronym>
+ <magic>
+ <match type="string" value="tBaK" offset="0"/>
+ </magic>
+ <glob pattern="*.tak"/>
+ </mime-type>
<mime-type type="audio/x-wavpack">
<comment>WavPack audio</comment>
- <comment xml:lang="ar">WavPack سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo WavPack</comment>
- <comment xml:lang="bg">Аудио — WavPack</comment>
- <comment xml:lang="ca">àudio de WavPack</comment>
- <comment xml:lang="cs">zvuk WavPack</comment>
- <comment xml:lang="da">WavPack-lyd</comment>
- <comment xml:lang="de">WavPack-Audio</comment>
- <comment xml:lang="el">Ήχος WavePack</comment>
- <comment xml:lang="en_GB">WavPack audio</comment>
- <comment xml:lang="eo">WavPack-sondosiero</comment>
- <comment xml:lang="es">sonido WavPack</comment>
- <comment xml:lang="eu">WavPack audioa</comment>
- <comment xml:lang="fi">WavPack-ääni</comment>
- <comment xml:lang="fo">WavPack ljóður</comment>
- <comment xml:lang="fr">audio WavPack</comment>
- <comment xml:lang="ga">fuaim WavPack</comment>
- <comment xml:lang="gl">son WavPack</comment>
- <comment xml:lang="he">שמע WavPack</comment>
- <comment xml:lang="hr">WavPack zvučni zapis</comment>
- <comment xml:lang="hu">WavPack hang</comment>
- <comment xml:lang="ia">Audio WavPack</comment>
- <comment xml:lang="id">Audio WavPack</comment>
- <comment xml:lang="it">Audio WavPack</comment>
- <comment xml:lang="ja">WavPack オーディオ</comment>
- <comment xml:lang="kk">WavPack аудиосы</comment>
- <comment xml:lang="ko">WavPack 오디오</comment>
- <comment xml:lang="lt">WavPack garso įrašas</comment>
- <comment xml:lang="lv">WavPack audio</comment>
- <comment xml:lang="nb">WavPack-lyd</comment>
- <comment xml:lang="nl">WavPack-audio</comment>
- <comment xml:lang="nn">WavPack-lyd</comment>
- <comment xml:lang="oc">àudio WavPack</comment>
- <comment xml:lang="pl">Plik dźwiękowy WavPack</comment>
- <comment xml:lang="pt">áudio WavPack</comment>
- <comment xml:lang="pt_BR">Áudio WavPack</comment>
- <comment xml:lang="ro">Audio WavPack</comment>
- <comment xml:lang="ru">Аудио WavPack</comment>
- <comment xml:lang="sk">Zvuk WavPack</comment>
- <comment xml:lang="sl">Zvočna datoteka WavPack</comment>
- <comment xml:lang="sq">Audio WavPack</comment>
- <comment xml:lang="sr">Вејвпак звук</comment>
- <comment xml:lang="sv">WavPack-ljud</comment>
- <comment xml:lang="tr">WavPack sesi</comment>
- <comment xml:lang="uk">звук WavPack</comment>
- <comment xml:lang="vi">Âm thanh WavPack</comment>
- <comment xml:lang="zh_CN">WavPack 音频</comment>
<comment xml:lang="zh_TW">WavPack 音訊</comment>
- <magic priority="50">
- <match value="wvpk" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">WavPack 音频</comment>
+ <comment xml:lang="vi">Âm thanh WavPack</comment>
+ <comment xml:lang="uk">звук WavPack</comment>
+ <comment xml:lang="tr">WavPack sesi</comment>
+ <comment xml:lang="sv">WavPack-ljud</comment>
+ <comment xml:lang="sr">Вејвпак звук</comment>
+ <comment xml:lang="sq">audio WavPack</comment>
+ <comment xml:lang="sl">Zvočna datoteka WavPack</comment>
+ <comment xml:lang="si">WavPack ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk WavPack</comment>
+ <comment xml:lang="ru">Аудио WavPack</comment>
+ <comment xml:lang="ro">Audio WavPack</comment>
+ <comment xml:lang="pt_BR">Áudio WavPack</comment>
+ <comment xml:lang="pt">áudio WavPack</comment>
+ <comment xml:lang="pl">Plik dźwiękowy WavPack</comment>
+ <comment xml:lang="oc">àudio WavPack</comment>
+ <comment xml:lang="nn">WavPack-lyd</comment>
+ <comment xml:lang="nl">WavPack-audio</comment>
+ <comment xml:lang="nb">WavPack-lyd</comment>
+ <comment xml:lang="lv">WavPack audio</comment>
+ <comment xml:lang="lt">WavPack garso įrašas</comment>
+ <comment xml:lang="ko">WavPack 오디오</comment>
+ <comment xml:lang="kk">WavPack аудиосы</comment>
+ <comment xml:lang="ja">WavPack オーディオ</comment>
+ <comment xml:lang="it">Audio WavPack</comment>
+ <comment xml:lang="is">WavPack hljóðskrá</comment>
+ <comment xml:lang="id">Audio WavPack</comment>
+ <comment xml:lang="ia">Audio WavPack</comment>
+ <comment xml:lang="hu">WavPack hang</comment>
+ <comment xml:lang="hr">WavPack zvučni zapis</comment>
+ <comment xml:lang="he">שמע WavPack</comment>
+ <comment xml:lang="gl">son WavPack</comment>
+ <comment xml:lang="ga">fuaim WavPack</comment>
+ <comment xml:lang="fur">audio WavPack</comment>
+ <comment xml:lang="fr">audio WavPack</comment>
+ <comment xml:lang="fo">WavPack ljóður</comment>
+ <comment xml:lang="fi">WavPack-ääni</comment>
+ <comment xml:lang="eu">WavPack audioa</comment>
+ <comment xml:lang="es">sonido WavPack</comment>
+ <comment xml:lang="eo">WavPack-sondosiero</comment>
+ <comment xml:lang="en_GB">WavPack audio</comment>
+ <comment xml:lang="el">Ήχος WavePack</comment>
+ <comment xml:lang="de">WavPack-Audio</comment>
+ <comment xml:lang="da">WavPack-lyd</comment>
+ <comment xml:lang="cs">zvuk WavPack</comment>
+ <comment xml:lang="ca">àudio de WavPack</comment>
+ <comment xml:lang="bg">Аудио — WavPack</comment>
+ <comment xml:lang="be@latin">Aŭdyjo WavPack</comment>
+ <comment xml:lang="be">аўдыя WavPack</comment>
+ <comment xml:lang="ar">صوت WavPack</comment>
+ <comment xml:lang="af">WavPack-oudio</comment>
+ <magic>
+ <match type="string" value="wvpk" offset="0"/>
</magic>
<glob pattern="*.wv"/>
<glob pattern="*.wvp"/>
</mime-type>
<mime-type type="audio/x-wavpack-correction">
<comment>WavPack audio correction file</comment>
- <comment xml:lang="ar">ملف تصحيح WavPack السمعي</comment>
- <comment xml:lang="be@latin">Fajł aŭdyjokarekcyi WavPack</comment>
- <comment xml:lang="bg">Файл за корекции на аудио — WavPack</comment>
- <comment xml:lang="ca">fitxer de correcció d'àudio de WavPack</comment>
- <comment xml:lang="cs">opravný zvukový soubor WavPack</comment>
- <comment xml:lang="da">WavPack-lydkorrektionsfil</comment>
- <comment xml:lang="de">WavPack-Audiokorrekturdatei</comment>
- <comment xml:lang="el">Αρχείο διόρθωσης ήχου WavePack</comment>
- <comment xml:lang="en_GB">WavPack audio correction file</comment>
- <comment xml:lang="es">archivo de corrección de sonido WavPack</comment>
- <comment xml:lang="eu">WavPack audio-zuzenketaren fitxategia</comment>
- <comment xml:lang="fi">WavPack-äänikorjaustiedosto</comment>
- <comment xml:lang="fo">WavPack ljóðrættingarfíla</comment>
- <comment xml:lang="fr">fichier de correction audio WavPack</comment>
- <comment xml:lang="ga">comhad ceartúchán fuaime WavPack</comment>
- <comment xml:lang="gl">ficheiro de corrección de son WavPack</comment>
- <comment xml:lang="he">קובץ תיקון שמע של WavPack</comment>
- <comment xml:lang="hr">WavPack datoteka ispravke zvuka</comment>
- <comment xml:lang="hu">WavPack hangjavítási fájl</comment>
- <comment xml:lang="ia">File de correction audio WavPack</comment>
- <comment xml:lang="id">Berkas koreksi audio WavPack</comment>
- <comment xml:lang="it">File correzione audio WavPack</comment>
- <comment xml:lang="ja">WavPack オーディオコレクションファイル</comment>
- <comment xml:lang="kk">WavPack аудио түзету файлы</comment>
- <comment xml:lang="ko">WavPack 오디오 교정 파일</comment>
- <comment xml:lang="lt">WavPack garso korekcijos failas</comment>
- <comment xml:lang="lv">WavPack audio korekciju datne</comment>
- <comment xml:lang="nb">WavPack lydkorrigeringsfil</comment>
- <comment xml:lang="nl">WavPack-audio-correctiebestand</comment>
- <comment xml:lang="nn">WawPack lydopprettingsfil</comment>
- <comment xml:lang="oc">fichièr de correccion àudio WavPack</comment>
- <comment xml:lang="pl">Plik korekcji dźwięku WavPack</comment>
- <comment xml:lang="pt">ficheiro de correção áudio WavPack</comment>
- <comment xml:lang="pt_BR">Arquivo de correção de áudio WavPack</comment>
- <comment xml:lang="ro">Fișier audio de corecție WavPack</comment>
- <comment xml:lang="ru">Файл коррекции аудио WavPack</comment>
- <comment xml:lang="sk">Opravný zvukový súbor WavPack</comment>
- <comment xml:lang="sl">popravljalna zvočna datoteka WavPack</comment>
- <comment xml:lang="sq">File korrigjgimi audio WavPack</comment>
- <comment xml:lang="sr">датотека поправке Вејвпак звука</comment>
- <comment xml:lang="sv">WavPack-ljudkorrigeringsfil</comment>
- <comment xml:lang="tr">WavPack ses düzeltme dosyası</comment>
- <comment xml:lang="uk">файл корекції звуку WavPack</comment>
- <comment xml:lang="vi">Tập tin sửa chữa âm thanh WavPack</comment>
- <comment xml:lang="zh_CN">WavPack 音频校正文件</comment>
<comment xml:lang="zh_TW">WavPack 音訊校正檔</comment>
- <magic priority="50">
- <match value="wvpk" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">WavPack 音频校正文件</comment>
+ <comment xml:lang="vi">Tập tin sửa chữa âm thanh WavPack</comment>
+ <comment xml:lang="uk">файл корекції звуку WavPack</comment>
+ <comment xml:lang="tr">WavPack ses düzeltme dosyası</comment>
+ <comment xml:lang="sv">WavPack-ljudkorrigeringsfil</comment>
+ <comment xml:lang="sr">датотека поправке Вејвпак звука</comment>
+ <comment xml:lang="sq">kartelë saktësimi audio WavPack</comment>
+ <comment xml:lang="sl">popravljalna zvočna datoteka WavPack</comment>
+ <comment xml:lang="si">WavPack ශ්‍රව්‍ය නිවැරදි කිරීමේ ගොනුව</comment>
+ <comment xml:lang="sk">Opravný zvukový súbor WavPack</comment>
+ <comment xml:lang="ru">Файл коррекции аудио WavPack</comment>
+ <comment xml:lang="ro">Fișier audio de corecție WavPack</comment>
+ <comment xml:lang="pt_BR">Arquivo de correção de áudio WavPack</comment>
+ <comment xml:lang="pt">ficheiro de correção áudio WavPack</comment>
+ <comment xml:lang="pl">Plik korekcji dźwięku WavPack</comment>
+ <comment xml:lang="oc">fichièr de correccion àudio WavPack</comment>
+ <comment xml:lang="nn">WawPack lydopprettingsfil</comment>
+ <comment xml:lang="nl">WavPack-audio-correctiebestand</comment>
+ <comment xml:lang="nb">WavPack lydkorrigeringsfil</comment>
+ <comment xml:lang="lv">WavPack audio korekciju datne</comment>
+ <comment xml:lang="lt">WavPack garso korekcijos failas</comment>
+ <comment xml:lang="ko">WavPack 오디오 교정 파일</comment>
+ <comment xml:lang="kk">WavPack аудио түзету файлы</comment>
+ <comment xml:lang="ja">WavPack オーディオコレクションファイル</comment>
+ <comment xml:lang="it">File correzione audio WavPack</comment>
+ <comment xml:lang="is">WavPack hljóðleiðréttingaskrá</comment>
+ <comment xml:lang="id">Berkas koreksi audio WavPack</comment>
+ <comment xml:lang="ia">File de correction audio WavPack</comment>
+ <comment xml:lang="hu">WavPack hangjavítási fájl</comment>
+ <comment xml:lang="hr">WavPack datoteka ispravke zvuka</comment>
+ <comment xml:lang="he">קובץ תיקון שמע של WavPack</comment>
+ <comment xml:lang="gl">ficheiro de corrección de son WavPack</comment>
+ <comment xml:lang="ga">comhad ceartúchán fuaime WavPack</comment>
+ <comment xml:lang="fur">file di corezion audio WavPack</comment>
+ <comment xml:lang="fr">fichier de correction audio WavPack</comment>
+ <comment xml:lang="fo">WavPack ljóðrættingarfíla</comment>
+ <comment xml:lang="fi">WavPack-äänikorjaustiedosto</comment>
+ <comment xml:lang="eu">WavPack audio-zuzenketaren fitxategia</comment>
+ <comment xml:lang="es">archivo de corrección de sonido WavPack</comment>
+ <comment xml:lang="en_GB">WavPack audio correction file</comment>
+ <comment xml:lang="el">Αρχείο διόρθωσης ήχου WavePack</comment>
+ <comment xml:lang="de">WavPack-Audiokorrekturdatei</comment>
+ <comment xml:lang="da">WavPack-lydkorrektionsfil</comment>
+ <comment xml:lang="cs">opravný zvukový soubor WavPack</comment>
+ <comment xml:lang="ca">fitxer de correcció d'àudio de WavPack</comment>
+ <comment xml:lang="bg">Файл за корекции на аудио — WavPack</comment>
+ <comment xml:lang="be@latin">Fajł aŭdyjokarekcyi WavPack</comment>
+ <comment xml:lang="be">файл аўдыякарэкцыі WavPack</comment>
+ <comment xml:lang="ar">ملف تصحيح صوت WavPack</comment>
+ <magic>
+ <match type="string" value="wvpk" offset="0"/>
</magic>
<glob pattern="*.wvc"/>
</mime-type>
<mime-type type="audio/midi">
<comment>MIDI audio</comment>
- <comment xml:lang="ar">MIDI سمعي</comment>
- <comment xml:lang="az">MIDI audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo MIDI</comment>
- <comment xml:lang="bg">Аудио — MIDI</comment>
- <comment xml:lang="ca">àudio MIDI</comment>
- <comment xml:lang="cs">zvuk MIDI</comment>
- <comment xml:lang="cy">Sain MIDI</comment>
- <comment xml:lang="da">MIDI-lyd</comment>
- <comment xml:lang="de">MIDI-Audio</comment>
- <comment xml:lang="el">Ήχος MIDI</comment>
- <comment xml:lang="en_GB">MIDI audio</comment>
- <comment xml:lang="eo">MIDI-sondosiero</comment>
- <comment xml:lang="es">sonido MIDI</comment>
- <comment xml:lang="eu">MIDI audioa</comment>
- <comment xml:lang="fi">MIDI-ääni</comment>
- <comment xml:lang="fo">MIDI ljóður</comment>
- <comment xml:lang="fr">audio MIDI</comment>
- <comment xml:lang="ga">fuaim MIDI</comment>
- <comment xml:lang="gl">son MIDI</comment>
- <comment xml:lang="he">שמע MIDI</comment>
- <comment xml:lang="hr">MIDI zvučni zapis</comment>
- <comment xml:lang="hu">MIDI hang</comment>
- <comment xml:lang="ia">Audio MIDI</comment>
- <comment xml:lang="id">Audio MIDI</comment>
- <comment xml:lang="it">Audio MIDI</comment>
- <comment xml:lang="ja">MIDI オーディオ</comment>
- <comment xml:lang="kk">MIDI аудиосы</comment>
- <comment xml:lang="ko">미디 오디오</comment>
- <comment xml:lang="lt">MIDI garso įrašas</comment>
- <comment xml:lang="lv">MIDI audio</comment>
- <comment xml:lang="ms">Audio MIDI</comment>
- <comment xml:lang="nb">MIDI-lyd</comment>
- <comment xml:lang="nl">MIDI-audio</comment>
- <comment xml:lang="nn">MIDI-lyd</comment>
- <comment xml:lang="oc">àudio MIDI</comment>
- <comment xml:lang="pl">Plik dźwiękowy MIDI</comment>
- <comment xml:lang="pt">áudio MIDI</comment>
- <comment xml:lang="pt_BR">Áudio MIDI</comment>
- <comment xml:lang="ro">Audio MIDI</comment>
- <comment xml:lang="ru">Аудио MIDI</comment>
- <comment xml:lang="sk">Zvuk MIDI</comment>
- <comment xml:lang="sl">Zvočna datoteka MIDI</comment>
- <comment xml:lang="sq">Audio MIDI</comment>
- <comment xml:lang="sr">МИДИ звук</comment>
- <comment xml:lang="sv">MIDI-ljud</comment>
- <comment xml:lang="tr">MIDI sesi</comment>
- <comment xml:lang="uk">звук MIDI</comment>
- <comment xml:lang="vi">Âm thanh MIDI</comment>
- <comment xml:lang="zh_CN">MIDI 音频</comment>
<comment xml:lang="zh_TW">MIDI 音訊</comment>
+ <comment xml:lang="zh_CN">MIDI 音频</comment>
+ <comment xml:lang="vi">Âm thanh MIDI</comment>
+ <comment xml:lang="uk">звук MIDI</comment>
+ <comment xml:lang="tr">MIDI sesi</comment>
+ <comment xml:lang="sv">MIDI-ljud</comment>
+ <comment xml:lang="sr">МИДИ звук</comment>
+ <comment xml:lang="sq">audio MIDI</comment>
+ <comment xml:lang="sl">Zvočna datoteka MIDI</comment>
+ <comment xml:lang="si">MIDI ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk MIDI</comment>
+ <comment xml:lang="ru">Аудио MIDI</comment>
+ <comment xml:lang="ro">Audio MIDI</comment>
+ <comment xml:lang="pt_BR">Áudio MIDI</comment>
+ <comment xml:lang="pt">áudio MIDI</comment>
+ <comment xml:lang="pl">Plik dźwiękowy MIDI</comment>
+ <comment xml:lang="oc">àudio MIDI</comment>
+ <comment xml:lang="nn">MIDI-lyd</comment>
+ <comment xml:lang="nl">MIDI-audio</comment>
+ <comment xml:lang="nb">MIDI-lyd</comment>
+ <comment xml:lang="ms">Audio MIDI</comment>
+ <comment xml:lang="lv">MIDI audio</comment>
+ <comment xml:lang="lt">MIDI garso įrašas</comment>
+ <comment xml:lang="ko">미디 오디오</comment>
+ <comment xml:lang="kk">MIDI аудиосы</comment>
+ <comment xml:lang="ja">MIDI オーディオ</comment>
+ <comment xml:lang="it">Audio MIDI</comment>
+ <comment xml:lang="is">MIDI hljóðskrá</comment>
+ <comment xml:lang="id">Audio MIDI</comment>
+ <comment xml:lang="ia">Audio MIDI</comment>
+ <comment xml:lang="hu">MIDI hang</comment>
+ <comment xml:lang="hr">MIDI zvučni zapis</comment>
+ <comment xml:lang="he">שמע MIDI</comment>
+ <comment xml:lang="gl">son MIDI</comment>
+ <comment xml:lang="ga">fuaim MIDI</comment>
+ <comment xml:lang="fur">audio MIDI</comment>
+ <comment xml:lang="fr">audio MIDI</comment>
+ <comment xml:lang="fo">MIDI ljóður</comment>
+ <comment xml:lang="fi">MIDI-ääni</comment>
+ <comment xml:lang="eu">MIDI audioa</comment>
+ <comment xml:lang="es">sonido MIDI</comment>
+ <comment xml:lang="eo">MIDI-sondosiero</comment>
+ <comment xml:lang="en_GB">MIDI audio</comment>
+ <comment xml:lang="el">Ήχος MIDI</comment>
+ <comment xml:lang="de">MIDI-Audio</comment>
+ <comment xml:lang="da">MIDI-lyd</comment>
+ <comment xml:lang="cy">Sain MIDI</comment>
+ <comment xml:lang="cs">zvuk MIDI</comment>
+ <comment xml:lang="ca">àudio MIDI</comment>
+ <comment xml:lang="bg">Аудио — MIDI</comment>
+ <comment xml:lang="be@latin">Aŭdyjo MIDI</comment>
+ <comment xml:lang="be">аўдыя MIDI</comment>
+ <comment xml:lang="az">MIDI audio faylı</comment>
+ <comment xml:lang="ar">صوت MIDI</comment>
+ <comment xml:lang="af">MIDI-oudio</comment>
+ <acronym>MIDI</acronym>
+ <expanded-acronym>Musical Instrument Digital Interface</expanded-acronym>
<alias type="audio/x-midi"/>
- <magic priority="50">
- <match value="MThd" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="MThd" offset="0"/>
</magic>
<glob pattern="*.mid"/>
<glob pattern="*.midi"/>
<glob pattern="*.kar"/>
</mime-type>
<mime-type type="audio/x-mo3">
- <comment>compressed Tracker audio</comment>
- <comment xml:lang="ar">Tracker سمعي مضغوط</comment>
- <comment xml:lang="be@latin">aŭdyjo skampresavanaha Trackera</comment>
- <comment xml:lang="bg">Аудио — Tracker, компресирано</comment>
- <comment xml:lang="ca">àudio Tracker amb compressió</comment>
- <comment xml:lang="cs">komprimovaný zvuk Tracker</comment>
- <comment xml:lang="da">Trackerkomprimeret lyd</comment>
- <comment xml:lang="de">Komprimiertes Tracker-Audio</comment>
- <comment xml:lang="el">Συμπιεσμένος ήχος Tracker</comment>
- <comment xml:lang="en_GB">compressed Tracker audio</comment>
- <comment xml:lang="es">sonido de Tracker comprimido</comment>
- <comment xml:lang="eu">konprimitutako Tracker audioa</comment>
- <comment xml:lang="fi">pakattu Tracker-ääni</comment>
- <comment xml:lang="fo">stappað Tracker ljóður</comment>
- <comment xml:lang="fr">audio Tracker compressé</comment>
- <comment xml:lang="ga">fuaim chomhbhrúite Tracker</comment>
- <comment xml:lang="gl">son comprimido de Tracker</comment>
- <comment xml:lang="he">שמע גשש מכווץ</comment>
- <comment xml:lang="hr">Sažeti Tracker zvučni zapis</comment>
- <comment xml:lang="hu">tömörített Tracker hang</comment>
- <comment xml:lang="ia">Audio Tracker comprimite</comment>
- <comment xml:lang="id">audio Tracker terkompresi</comment>
- <comment xml:lang="it">Audio compresso Tracker</comment>
- <comment xml:lang="ja">圧縮 Tracker オーディオ</comment>
- <comment xml:lang="kk">сығылған Tracker аудиосы</comment>
- <comment xml:lang="ko">압축된 Tracker 오디오</comment>
- <comment xml:lang="lt">suglaudintas Tracker garso įrašas</comment>
- <comment xml:lang="lv">saspiests Tracker audio</comment>
- <comment xml:lang="nl">ingepakte Tracker-audio</comment>
- <comment xml:lang="nn">komprimert Tracker-lyd</comment>
- <comment xml:lang="oc">àudio Tracker compressat</comment>
- <comment xml:lang="pl">Skompresowany plik dźwiękowy Tracker</comment>
- <comment xml:lang="pt">áudio comprimido Tracker</comment>
- <comment xml:lang="pt_BR">Áudio Tracker compactado</comment>
- <comment xml:lang="ro">Tracker audio comprimat</comment>
+ <comment>Compressed Tracker audio</comment>
+ <comment xml:lang="uk">стиснутий звук tracker</comment>
+ <comment xml:lang="sv">Komprimerat Tracker-ljud</comment>
<comment xml:lang="ru">Сжатое аудио Tracker</comment>
- <comment xml:lang="sk">Komprimovaný zvuk Tracker</comment>
- <comment xml:lang="sl">Skrčena zvočna datoteka Tracker</comment>
- <comment xml:lang="sq">Audio Tracker e kompresuar</comment>
- <comment xml:lang="sr">запаковани звук Пратиоца</comment>
- <comment xml:lang="sv">komprimerat Tracker-ljud</comment>
- <comment xml:lang="tr">sıkıştırılmış Tracker sesi</comment>
- <comment xml:lang="uk">стиснутий звук Tracker</comment>
- <comment xml:lang="vi">âm thanh Tracker đã nén</comment>
- <comment xml:lang="zh_CN">压缩的 Tracker 音频</comment>
- <comment xml:lang="zh_TW">壓縮版 Tracker 音訊</comment>
- <magic priority="50">
- <match value="MO3" type="string" offset="0"/>
+ <comment xml:lang="pl">Skompresowany plik dźwiękowy Tracker</comment>
+ <comment xml:lang="it">Audio compresso Tracker</comment>
+ <comment xml:lang="gl">Son de Tracker comprimido</comment>
+ <comment xml:lang="es">audio de Tracker comprimido</comment>
+ <comment xml:lang="de">Komprimiertes Tracker-Audio</comment>
+ <comment xml:lang="be">сціснутае аўдыя Tracker</comment>
+ <magic>
+ <match type="string" value="MO3" offset="0"/>
</magic>
<glob pattern="*.mo3"/>
</mime-type>
<mime-type type="audio/aac">
<comment>AAC audio</comment>
- <comment xml:lang="ca">àudio AAC</comment>
- <comment xml:lang="cs">zvuk AAC</comment>
- <comment xml:lang="da">AAC-lyd</comment>
- <comment xml:lang="de">AAC-Audio</comment>
- <comment xml:lang="el">Ήχος AAC</comment>
- <comment xml:lang="en_GB">AAC audio</comment>
- <comment xml:lang="es">sonido AAC</comment>
- <comment xml:lang="eu">AAC audioa</comment>
- <comment xml:lang="fi">AAC-ääni</comment>
- <comment xml:lang="fr">audio AAC</comment>
- <comment xml:lang="ga">fuaim AAC</comment>
- <comment xml:lang="gl">Son AAC</comment>
- <comment xml:lang="he">שמע AAC</comment>
- <comment xml:lang="hr">AAC zvučni zapis</comment>
- <comment xml:lang="hu">AAC hang</comment>
- <comment xml:lang="ia">Audio ACC</comment>
- <comment xml:lang="id">Audio AAC</comment>
- <comment xml:lang="it">Audio AAC</comment>
- <comment xml:lang="ja">AAC オーディオ</comment>
- <comment xml:lang="kk">AAC аудиосы</comment>
- <comment xml:lang="ko">AAC 오디오</comment>
- <comment xml:lang="lv">AAC audio</comment>
- <comment xml:lang="oc">àudio AAC</comment>
- <comment xml:lang="pl">Plik dźwiękowy AAC</comment>
- <comment xml:lang="pt">áudio AAC</comment>
- <comment xml:lang="pt_BR">Áudio AAC</comment>
- <comment xml:lang="ru">Аудио AAC</comment>
- <comment xml:lang="sk">Zvuk AAC</comment>
- <comment xml:lang="sl">Zvok AAC</comment>
- <comment xml:lang="sr">ААЦ звук</comment>
- <comment xml:lang="sv">AAC-ljud</comment>
- <comment xml:lang="tr">AAC sesi</comment>
- <comment xml:lang="uk">звукові дані AAC</comment>
- <comment xml:lang="zh_CN">AAC 音频</comment>
<comment xml:lang="zh_TW">AAC 音訊</comment>
+ <comment xml:lang="zh_CN">AAC 音频</comment>
+ <comment xml:lang="uk">звукові дані AAC</comment>
+ <comment xml:lang="tr">AAC sesi</comment>
+ <comment xml:lang="sv">AAC-ljud</comment>
+ <comment xml:lang="sr">ААЦ звук</comment>
+ <comment xml:lang="sq">audio AAC</comment>
+ <comment xml:lang="sl">Zvok AAC</comment>
+ <comment xml:lang="si">AAC ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk AAC</comment>
+ <comment xml:lang="ru">Аудио AAC</comment>
+ <comment xml:lang="pt_BR">Áudio AAC</comment>
+ <comment xml:lang="pt">áudio AAC</comment>
+ <comment xml:lang="pl">Plik dźwiękowy AAC</comment>
+ <comment xml:lang="oc">àudio AAC</comment>
+ <comment xml:lang="nl">AAC-audio</comment>
+ <comment xml:lang="lv">AAC audio</comment>
+ <comment xml:lang="ko">AAC 오디오</comment>
+ <comment xml:lang="kk">AAC аудиосы</comment>
+ <comment xml:lang="ja">AAC オーディオ</comment>
+ <comment xml:lang="it">Audio AAC</comment>
+ <comment xml:lang="is">AAC hljóðskrá</comment>
+ <comment xml:lang="id">Audio AAC</comment>
+ <comment xml:lang="ia">Audio ACC</comment>
+ <comment xml:lang="hu">AAC hang</comment>
+ <comment xml:lang="hr">AAC zvučni zapis</comment>
+ <comment xml:lang="he">שמע AAC</comment>
+ <comment xml:lang="gl">Son AAC</comment>
+ <comment xml:lang="ga">fuaim AAC</comment>
+ <comment xml:lang="fur">audio AAC</comment>
+ <comment xml:lang="fr">audio AAC</comment>
+ <comment xml:lang="fi">AAC-ääni</comment>
+ <comment xml:lang="eu">AAC audioa</comment>
+ <comment xml:lang="es">sonido AAC</comment>
+ <comment xml:lang="en_GB">AAC audio</comment>
+ <comment xml:lang="el">Ήχος AAC</comment>
+ <comment xml:lang="de">AAC-Audio</comment>
+ <comment xml:lang="da">AAC-lyd</comment>
+ <comment xml:lang="cs">zvuk AAC</comment>
+ <comment xml:lang="ca">àudio AAC</comment>
+ <comment xml:lang="bg">Аудио — AAC</comment>
+ <comment xml:lang="be">аўдыя AAC</comment>
+ <comment xml:lang="ar">صوت AAC</comment>
+ <comment xml:lang="af">AAC-oudio</comment>
<acronym>AAC</acronym>
<expanded-acronym>Advanced Audio Coding</expanded-acronym>
- <magic priority="50">
- <match value="ADIF" type="string" offset="0"/>
- <match value="0xFFF0" type="big16" offset="0" mask="0xFFF6"/>
+ <magic>
+ <match type="string" value="ADIF" offset="0"/>
+ <match type="big16" value="0xFFF0" mask="0xFFF6" offset="0"/>
</magic>
<glob pattern="*.aac"/>
<glob pattern="*.adts"/>
- <glob weight="10" pattern="*.ass"/>
+ <glob pattern="*.ass" weight="10"/>
<alias type="audio/x-aac"/>
</mime-type>
<mime-type type="audio/usac">
<comment>USAC audio</comment>
+ <comment xml:lang="zh_TW">USAC 音訊</comment>
+ <comment xml:lang="zh_CN">USAC 音频</comment>
+ <comment xml:lang="uk">звукові дані USAC</comment>
+ <comment xml:lang="tr">USAC sesi</comment>
+ <comment xml:lang="sv">USAC-ljud</comment>
+ <comment xml:lang="sq">audio USAC</comment>
+ <comment xml:lang="sl">Zvok USAC</comment>
+ <comment xml:lang="si">USAC ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk USAC</comment>
+ <comment xml:lang="ru">Аудио USAC</comment>
+ <comment xml:lang="pt_BR">Áudio USAC</comment>
+ <comment xml:lang="pl">Plik dźwiękowy USAC</comment>
+ <comment xml:lang="nl">USAC-audio</comment>
+ <comment xml:lang="ko">USAC 오디오</comment>
+ <comment xml:lang="kk">USAC аудиосы</comment>
+ <comment xml:lang="ja">USAC オーディオ</comment>
+ <comment xml:lang="it">Audio USAC</comment>
+ <comment xml:lang="is">USAC hljóðskrá</comment>
+ <comment xml:lang="id">Audio USAC</comment>
+ <comment xml:lang="hu">USAC hang</comment>
+ <comment xml:lang="hr">USAC zvučni zapis</comment>
+ <comment xml:lang="he">שמע USAC</comment>
+ <comment xml:lang="gl">Son USAC</comment>
+ <comment xml:lang="ga">fuaim USAC</comment>
+ <comment xml:lang="fur">audio USAC</comment>
+ <comment xml:lang="fr">audio USAC</comment>
+ <comment xml:lang="fi">USAC-ääni</comment>
+ <comment xml:lang="eu">USAC audioa</comment>
+ <comment xml:lang="es">sonido USAC</comment>
+ <comment xml:lang="en_GB">USAC audio</comment>
+ <comment xml:lang="de">USAC-Audio</comment>
+ <comment xml:lang="da">USAC-lyd</comment>
+ <comment xml:lang="cs">zvuk USAC</comment>
+ <comment xml:lang="ca">àudio USAC</comment>
+ <comment xml:lang="bg">Аудио — USAC</comment>
+ <comment xml:lang="be">аўдыя USAC</comment>
+ <comment xml:lang="ar">صوت USAC</comment>
+ <comment xml:lang="af">USAC-oudio</comment>
<acronym>USAC</acronym>
<expanded-acronym>Unified Speech and Audio Coding</expanded-acronym>
<glob pattern="*.loas"/>
@@ -23151,125 +25259,170 @@
</mime-type>
<mime-type type="audio/mp4">
<comment>MPEG-4 audio</comment>
- <comment xml:lang="ar">MPEG-4 سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo MPEG-4</comment>
- <comment xml:lang="bg">Аудио — MPEG-4</comment>
- <comment xml:lang="ca">àudio MPEG-4</comment>
- <comment xml:lang="cs">zvuk MPEG-4</comment>
- <comment xml:lang="da">MPEG4-lyd</comment>
- <comment xml:lang="de">MPEG-4-Audio</comment>
- <comment xml:lang="el">Ήχος MPEG-4</comment>
- <comment xml:lang="en_GB">MPEG-4 audio</comment>
- <comment xml:lang="eo">MPEG4-sondosiero</comment>
- <comment xml:lang="es">sonido MPEG-4</comment>
- <comment xml:lang="eu">MPEG-4 audioa</comment>
- <comment xml:lang="fi">MPEG-4-ääni</comment>
- <comment xml:lang="fo">MPEG-4 ljóður</comment>
- <comment xml:lang="fr">audio MPEG-4</comment>
- <comment xml:lang="ga">fuaim MPEG-4</comment>
- <comment xml:lang="gl">son MPEG-4</comment>
- <comment xml:lang="he">שמע MPEG-4</comment>
- <comment xml:lang="hr">MPEG-4 zvučni zapis</comment>
- <comment xml:lang="hu">MPEG-4 hang</comment>
- <comment xml:lang="ia">Audio MPEG-4</comment>
- <comment xml:lang="id">Audio MPEG-4</comment>
- <comment xml:lang="it">Audio MPEG-4</comment>
- <comment xml:lang="ja">MPEG-4 オーディオ</comment>
- <comment xml:lang="ka">MPEG-4 აუდიო</comment>
- <comment xml:lang="kk">MPEG-4 аудиосы</comment>
- <comment xml:lang="ko">MPEG-4 오디오</comment>
- <comment xml:lang="lt">MPEG-4 garso įrašas</comment>
- <comment xml:lang="lv">MPEG-4 audio</comment>
- <comment xml:lang="nb">MPEG-4-lyd</comment>
- <comment xml:lang="nl">MPEG4-audio</comment>
- <comment xml:lang="nn">MPEG-4-lyd</comment>
- <comment xml:lang="oc">àudio MPEG-4</comment>
- <comment xml:lang="pl">Plik dźwiękowy MPEG-4</comment>
- <comment xml:lang="pt">áudio MPEG-4</comment>
- <comment xml:lang="pt_BR">Áudio MPEG-4</comment>
- <comment xml:lang="ro">Audio MPEG-4</comment>
- <comment xml:lang="ru">Аудио MPEG-4</comment>
- <comment xml:lang="sk">Zvuk MPEG-4</comment>
- <comment xml:lang="sl">Zvočna datoteka MPEG-4</comment>
- <comment xml:lang="sq">Audio MPEG-4</comment>
- <comment xml:lang="sr">МПЕГ-4 звук</comment>
- <comment xml:lang="sv">MPEG-4-ljud</comment>
- <comment xml:lang="tr">MPEG-4 sesi</comment>
- <comment xml:lang="uk">звук MPEG-4</comment>
- <comment xml:lang="vi">Âm thanh MPEG-4</comment>
- <comment xml:lang="zh_CN">MPEG-4 音频</comment>
<comment xml:lang="zh_TW">MPEG-4 音訊</comment>
+ <comment xml:lang="zh_CN">MPEG-4 音频</comment>
+ <comment xml:lang="vi">Âm thanh MPEG-4</comment>
+ <comment xml:lang="uk">звук MPEG-4</comment>
+ <comment xml:lang="tr">MPEG-4 sesi</comment>
+ <comment xml:lang="sv">MPEG-4-ljud</comment>
+ <comment xml:lang="sr">МПЕГ-4 звук</comment>
+ <comment xml:lang="sq">audio MPEG-4</comment>
+ <comment xml:lang="sl">Zvočna datoteka MPEG-4</comment>
+ <comment xml:lang="si">MPEG-4 ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk MPEG-4</comment>
+ <comment xml:lang="ru">Аудио MPEG-4</comment>
+ <comment xml:lang="ro">Audio MPEG-4</comment>
+ <comment xml:lang="pt_BR">Áudio MPEG-4</comment>
+ <comment xml:lang="pt">áudio MPEG-4</comment>
+ <comment xml:lang="pl">Plik dźwiękowy MPEG-4</comment>
+ <comment xml:lang="oc">àudio MPEG-4</comment>
+ <comment xml:lang="nn">MPEG-4-lyd</comment>
+ <comment xml:lang="nl">MPEG4-audio</comment>
+ <comment xml:lang="nb">MPEG-4-lyd</comment>
+ <comment xml:lang="lv">MPEG-4 audio</comment>
+ <comment xml:lang="lt">MPEG-4 garso įrašas</comment>
+ <comment xml:lang="ko">MPEG-4 오디오</comment>
+ <comment xml:lang="kk">MPEG-4 аудиосы</comment>
+ <comment xml:lang="ka">MPEG-4 აუდიო</comment>
+ <comment xml:lang="ja">MPEG-4 オーディオ</comment>
+ <comment xml:lang="it">Audio MPEG-4</comment>
+ <comment xml:lang="is">MPEG-4 hljóð</comment>
+ <comment xml:lang="id">Audio MPEG-4</comment>
+ <comment xml:lang="ia">Audio MPEG-4</comment>
+ <comment xml:lang="hu">MPEG-4 hang</comment>
+ <comment xml:lang="hr">MPEG-4 zvučni zapis</comment>
+ <comment xml:lang="he">שמע MPEG-4</comment>
+ <comment xml:lang="gl">son MPEG-4</comment>
+ <comment xml:lang="ga">fuaim MPEG-4</comment>
+ <comment xml:lang="fur">audio MPEG-4</comment>
+ <comment xml:lang="fr">audio MPEG-4</comment>
+ <comment xml:lang="fo">MPEG-4 ljóður</comment>
+ <comment xml:lang="fi">MPEG-4-ääni</comment>
+ <comment xml:lang="eu">MPEG-4 audioa</comment>
+ <comment xml:lang="es">sonido MPEG-4</comment>
+ <comment xml:lang="eo">MPEG4-sondosiero</comment>
+ <comment xml:lang="en_GB">MPEG-4 audio</comment>
+ <comment xml:lang="el">Ήχος MPEG-4</comment>
+ <comment xml:lang="de">MPEG-4-Audio</comment>
+ <comment xml:lang="da">MPEG4-lyd</comment>
+ <comment xml:lang="cs">zvuk MPEG-4</comment>
+ <comment xml:lang="ca">àudio MPEG-4</comment>
+ <comment xml:lang="bg">Аудио — MPEG-4</comment>
+ <comment xml:lang="be@latin">Aŭdyjo MPEG-4</comment>
+ <comment xml:lang="be">аўдыя MPEG-4</comment>
+ <comment xml:lang="ar">صوت MPEG-4</comment>
+ <comment xml:lang="af">MPEG-4-oudio</comment>
<alias type="audio/x-m4a"/>
<alias type="audio/m4a"/>
- <magic priority="50">
- <match value="ftypM4A" type="string" offset="4"/>
+ <magic>
+ <match type="string" value="ftypM4A" offset="4"/>
</magic>
<glob pattern="*.m4a"/>
<glob pattern="*.f4a"/>
</mime-type>
<mime-type type="audio/x-m4r">
- <comment>MPEG-4 Ringtone</comment>
+ <comment>MPEG-4 ringtone</comment>
+ <comment xml:lang="zh_TW">MPEG-4 鈴聲</comment>
+ <comment xml:lang="zh_CN">MPEG-4 铃声</comment>
+ <comment xml:lang="uk">рингтон MPEG-4</comment>
+ <comment xml:lang="tr">MPEG-4 zil sesi</comment>
+ <comment xml:lang="sv">MPEG-4-ringsignal</comment>
+ <comment xml:lang="sq">zile MPEG-4</comment>
+ <comment xml:lang="sl">Zvonjenje MPEG-4</comment>
+ <comment xml:lang="si">MPEG-4 නාද රටාව</comment>
+ <comment xml:lang="sk">Zvonenie MPEG-4</comment>
+ <comment xml:lang="ru">Мелодия MPEG-4</comment>
+ <comment xml:lang="pt_BR">Toque MPEG-4</comment>
+ <comment xml:lang="pl">Dzwonek MPEG-4</comment>
+ <comment xml:lang="nl">MPEG-4-ringtone</comment>
+ <comment xml:lang="ko">MPEG-4 벨소리</comment>
+ <comment xml:lang="kk">MPEG-4 рингтоны</comment>
+ <comment xml:lang="ja">MPEG-4 着信音</comment>
+ <comment xml:lang="it">Suoneria MPEG-4</comment>
+ <comment xml:lang="is">MPEG-4 hringitónn</comment>
+ <comment xml:lang="id">Nada panggil MPEG-4</comment>
+ <comment xml:lang="hu">MPEG-4 csengőhang</comment>
+ <comment xml:lang="hr">MPEG-4 melodija zvona</comment>
+ <comment xml:lang="he">נעימון MPEG-4</comment>
+ <comment xml:lang="gl">Ton de chamada MPEG-4</comment>
+ <comment xml:lang="fr">sonnerie MPEG-4</comment>
+ <comment xml:lang="fi">MPEG-4-soittoääni</comment>
+ <comment xml:lang="eu">MPEG-4 dei-tonua</comment>
+ <comment xml:lang="es">tono de llamada MPEG-4</comment>
+ <comment xml:lang="en_GB">MPEG-4 ringtone</comment>
+ <comment xml:lang="de">MPEG-4-Klingelton</comment>
+ <comment xml:lang="da">MPEG-4-ringetone</comment>
+ <comment xml:lang="ca">to de trucada MPEG-4</comment>
+ <comment xml:lang="bg">Аудио — MPEG-4, звънене</comment>
+ <comment xml:lang="be">мелодыя выкліку MPEG-4</comment>
+ <comment xml:lang="ar">نغمة MPEG-4</comment>
<glob pattern="*.m4r"/>
<sub-class-of type="video/mp4"/>
</mime-type>
<mime-type type="video/mp4">
<comment>MPEG-4 video</comment>
- <comment xml:lang="ar">MPEG-4 مرئي</comment>
- <comment xml:lang="ast">Videu en MPEG-4</comment>
- <comment xml:lang="be@latin">Videa MPEG-4</comment>
- <comment xml:lang="bg">Видео — MPEG-4</comment>
- <comment xml:lang="ca">vídeo MPEG-4</comment>
- <comment xml:lang="cs">video MPEG-4</comment>
- <comment xml:lang="da">MPEG4-video</comment>
- <comment xml:lang="de">MPEG-4-Video</comment>
- <comment xml:lang="el">Βίντεο MPEG-4</comment>
- <comment xml:lang="en_GB">MPEG-4 video</comment>
- <comment xml:lang="eo">MPEG-4-video</comment>
- <comment xml:lang="es">vídeo MPEG-4</comment>
- <comment xml:lang="eu">MPEG-4 bideoa</comment>
- <comment xml:lang="fi">MPEG-4-video</comment>
- <comment xml:lang="fo">MPEG-4 video</comment>
- <comment xml:lang="fr">vidéo MPEG-4</comment>
- <comment xml:lang="ga">físeán MPEG-4</comment>
- <comment xml:lang="gl">vídeo MPEG-4</comment>
- <comment xml:lang="he">וידאו MPEG-4</comment>
- <comment xml:lang="hr">MPEG-4 video snimka</comment>
- <comment xml:lang="hu">MPEG-4 videó</comment>
- <comment xml:lang="ia">Video MPEG-4</comment>
- <comment xml:lang="id">Video MPEG-4</comment>
- <comment xml:lang="it">Video MPEG-4</comment>
- <comment xml:lang="ja">MPEG-4 動画</comment>
- <comment xml:lang="ka">MPEG-4 ვიდეო</comment>
- <comment xml:lang="kk">MPEG-4 видеосы</comment>
- <comment xml:lang="ko">MPEG-4 동영상</comment>
- <comment xml:lang="lt">MPEG-4 vaizdo įrašas</comment>
- <comment xml:lang="lv">MPEG-4 video</comment>
- <comment xml:lang="nb">MPEG-4-film</comment>
- <comment xml:lang="nl">MPEG4-video</comment>
- <comment xml:lang="nn">MPEG-4-video</comment>
- <comment xml:lang="oc">vidèo MPEG-4</comment>
- <comment xml:lang="pl">Plik wideo MPEG-4</comment>
- <comment xml:lang="pt">vídeo MPEG-4</comment>
- <comment xml:lang="pt_BR">Vídeo MPEG-4</comment>
- <comment xml:lang="ro">Video MPEG-4</comment>
- <comment xml:lang="ru">Видео MPEG-4</comment>
- <comment xml:lang="sk">Video MPEG-4</comment>
- <comment xml:lang="sl">Video datoteka MPEG-4</comment>
- <comment xml:lang="sq">Video MPEG-4</comment>
- <comment xml:lang="sr">МПЕГ-4 видео</comment>
- <comment xml:lang="sv">MPEG-4-video</comment>
- <comment xml:lang="tr">MPEG-4 video</comment>
- <comment xml:lang="uk">відеокліп MPEG-4</comment>
- <comment xml:lang="vi">Ảnh động MPEG-4</comment>
- <comment xml:lang="zh_CN">MPEG-4 视频</comment>
<comment xml:lang="zh_TW">MPEG-4 視訊</comment>
+ <comment xml:lang="zh_CN">MPEG-4 视频</comment>
+ <comment xml:lang="vi">Ảnh động MPEG-4</comment>
+ <comment xml:lang="uk">відеокліп MPEG-4</comment>
+ <comment xml:lang="tr">MPEG-4 video</comment>
+ <comment xml:lang="sv">MPEG-4-video</comment>
+ <comment xml:lang="sr">МПЕГ-4 видео</comment>
+ <comment xml:lang="sq">video MPEG-4</comment>
+ <comment xml:lang="sl">Video datoteka MPEG-4</comment>
+ <comment xml:lang="si">MPEG-4 වීඩියෝව</comment>
+ <comment xml:lang="sk">Video MPEG-4</comment>
+ <comment xml:lang="ru">Видео MPEG-4</comment>
+ <comment xml:lang="ro">Video MPEG-4</comment>
+ <comment xml:lang="pt_BR">Vídeo MPEG-4</comment>
+ <comment xml:lang="pt">vídeo MPEG-4</comment>
+ <comment xml:lang="pl">Plik wideo MPEG-4</comment>
+ <comment xml:lang="oc">vidèo MPEG-4</comment>
+ <comment xml:lang="nn">MPEG-4-video</comment>
+ <comment xml:lang="nl">MPEG4-video</comment>
+ <comment xml:lang="nb">MPEG-4-film</comment>
+ <comment xml:lang="lv">MPEG-4 video</comment>
+ <comment xml:lang="lt">MPEG-4 vaizdo įrašas</comment>
+ <comment xml:lang="ko">MPEG-4 동영상</comment>
+ <comment xml:lang="kk">MPEG-4 видеосы</comment>
+ <comment xml:lang="ka">MPEG-4 ვიდეო</comment>
+ <comment xml:lang="ja">MPEG-4 動画</comment>
+ <comment xml:lang="it">Video MPEG-4</comment>
+ <comment xml:lang="is">MPEG-4 myndskeið</comment>
+ <comment xml:lang="id">Video MPEG-4</comment>
+ <comment xml:lang="ia">Video MPEG-4</comment>
+ <comment xml:lang="hu">MPEG-4 videó</comment>
+ <comment xml:lang="hr">MPEG-4 video snimka</comment>
+ <comment xml:lang="he">וידאו MPEG-4</comment>
+ <comment xml:lang="gl">vídeo MPEG-4</comment>
+ <comment xml:lang="ga">físeán MPEG-4</comment>
+ <comment xml:lang="fur">video MPEG-4</comment>
+ <comment xml:lang="fr">vidéo MPEG-4</comment>
+ <comment xml:lang="fo">MPEG-4 video</comment>
+ <comment xml:lang="fi">MPEG-4-video</comment>
+ <comment xml:lang="eu">MPEG-4 bideoa</comment>
+ <comment xml:lang="es">vídeo MPEG-4</comment>
+ <comment xml:lang="eo">MPEG-4-video</comment>
+ <comment xml:lang="en_GB">MPEG-4 video</comment>
+ <comment xml:lang="el">Βίντεο MPEG-4</comment>
+ <comment xml:lang="de">MPEG-4-Video</comment>
+ <comment xml:lang="da">MPEG4-video</comment>
+ <comment xml:lang="cs">video MPEG-4</comment>
+ <comment xml:lang="ca">vídeo MPEG-4</comment>
+ <comment xml:lang="bg">Видео — MPEG-4</comment>
+ <comment xml:lang="be@latin">Videa MPEG-4</comment>
+ <comment xml:lang="be">відэа MPEG-4</comment>
+ <comment xml:lang="ast">Videu en MPEG-4</comment>
+ <comment xml:lang="ar">فيديو MPEG-4</comment>
+ <comment xml:lang="af">MPEG-4-video</comment>
<alias type="video/mp4v-es"/>
- <magic priority="50">
- <match value="ftypisom" type="string" offset="4"/>
- <match value="ftypmp42" type="string" offset="4"/>
- <match value="ftypMSNV" type="string" offset="4"/>
- <match value="ftypM4V " type="string" offset="4"/>
- <match value="ftypf4v " type="string" offset="4"/>
+ <magic>
+ <match type="string" value="ftypisom" offset="4"/>
+ <match type="string" value="ftypmp41" offset="4"/>
+ <match type="string" value="ftypmp42" offset="4"/>
+ <match type="string" value="ftypMSNV" offset="4"/>
+ <match type="string" value="ftypM4V " offset="4"/>
+ <match type="string" value="ftypf4v " offset="4"/>
</magic>
<glob pattern="*.mp4"/>
<glob pattern="*.m4v"/>
@@ -23279,118 +25432,128 @@
</mime-type>
<mime-type type="audio/x-m4b">
<comment>MPEG-4 audio book</comment>
- <comment xml:lang="ar">كتاب MPEG-4 السمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjokniha MPEG-4</comment>
- <comment xml:lang="bg">Аудио книга — MPEG-4</comment>
- <comment xml:lang="ca">llibre d'àudio MPEG-4</comment>
- <comment xml:lang="cs">zvuková kniha MPEG-4</comment>
- <comment xml:lang="da">MPEG4-lydbog</comment>
- <comment xml:lang="de">MPEG-4-Hörbuch</comment>
- <comment xml:lang="el">Ηχητικό βιβλίο MPEG-4</comment>
- <comment xml:lang="en_GB">MPEG-4 audio book</comment>
- <comment xml:lang="eo">MPEG-4-sonlibro</comment>
- <comment xml:lang="es">audiolibro MPEG-4</comment>
- <comment xml:lang="eu">MPEG-4 audio-liburua</comment>
- <comment xml:lang="fi">MPEG-4-äänikirja</comment>
- <comment xml:lang="fo">MPEG-4 ljóðbók</comment>
- <comment xml:lang="fr">livre audio MPEG-4</comment>
- <comment xml:lang="ga">closleabhar MPEG-4</comment>
- <comment xml:lang="gl">sonlibro de MPEG-4</comment>
- <comment xml:lang="he">ספר דיגיטלי MPEG-4</comment>
- <comment xml:lang="hr">MPEG-4 zvučna knjiga</comment>
- <comment xml:lang="hu">MPEG-4 hangoskönyv</comment>
- <comment xml:lang="ia">Libro audio MPEG-4</comment>
- <comment xml:lang="id">Buku audio MPEG-4</comment>
- <comment xml:lang="it">Audiolibro MPEG-4</comment>
- <comment xml:lang="ja">MPEG-4 オーディオブック</comment>
- <comment xml:lang="ka">MPEG-4 აუდიოწიგნი</comment>
- <comment xml:lang="kk">MPEG-4 аудио кітабы</comment>
- <comment xml:lang="ko">MPEG-4 오디오북</comment>
- <comment xml:lang="lt">MPEG-4 garso knyga</comment>
- <comment xml:lang="lv">MPEG-4 audio grāmata</comment>
- <comment xml:lang="nb">MPEG-4-lydbok</comment>
- <comment xml:lang="nl">MPEG4-audioboek</comment>
- <comment xml:lang="nn">MPEG-4-lydbok</comment>
- <comment xml:lang="oc">libre àudio MPEG-4</comment>
- <comment xml:lang="pl">Książka dźwiękowa MPEG-4</comment>
- <comment xml:lang="pt">livro áudio MPEG-4</comment>
- <comment xml:lang="pt_BR">Áudio livro MPEG-4</comment>
- <comment xml:lang="ro">Carte audio MPEG-4</comment>
- <comment xml:lang="ru">Аудиокнига MPEG-4</comment>
- <comment xml:lang="sk">Zvuková kniha MPEG-4</comment>
- <comment xml:lang="sl">Zvočna knjiga MPEG-4</comment>
- <comment xml:lang="sq">Audiolibër MPEG-4</comment>
- <comment xml:lang="sr">МПЕГ-4 звукотека</comment>
- <comment xml:lang="sv">MPEG-4-ljudbok</comment>
- <comment xml:lang="tr">MPEG-4 sesli kitabı</comment>
- <comment xml:lang="uk">аудіокнига MPEG-4</comment>
- <comment xml:lang="vi">Sách âm thanh MPEG-4</comment>
- <comment xml:lang="zh_CN">MPEG-4 有声书</comment>
<comment xml:lang="zh_TW">MPEG-4 音訊書</comment>
+ <comment xml:lang="zh_CN">MPEG-4 有声书</comment>
+ <comment xml:lang="vi">Sách âm thanh MPEG-4</comment>
+ <comment xml:lang="uk">аудіокнига MPEG-4</comment>
+ <comment xml:lang="tr">MPEG-4 sesli kitabı</comment>
+ <comment xml:lang="sv">MPEG-4-ljudbok</comment>
+ <comment xml:lang="sr">МПЕГ-4 звукотека</comment>
+ <comment xml:lang="sq">audiolibër MPEG-4</comment>
+ <comment xml:lang="sl">Zvočna knjiga MPEG-4</comment>
+ <comment xml:lang="si">MPEG-4 ශ්රව්ය පොත</comment>
+ <comment xml:lang="sk">Zvuková kniha MPEG-4</comment>
+ <comment xml:lang="ru">Аудиокнига MPEG-4</comment>
+ <comment xml:lang="ro">Carte audio MPEG-4</comment>
+ <comment xml:lang="pt_BR">Áudio livro MPEG-4</comment>
+ <comment xml:lang="pt">livro áudio MPEG-4</comment>
+ <comment xml:lang="pl">Książka dźwiękowa MPEG-4</comment>
+ <comment xml:lang="oc">libre àudio MPEG-4</comment>
+ <comment xml:lang="nn">MPEG-4-lydbok</comment>
+ <comment xml:lang="nl">MPEG4-audioboek</comment>
+ <comment xml:lang="nb">MPEG-4-lydbok</comment>
+ <comment xml:lang="lv">MPEG-4 audio grāmata</comment>
+ <comment xml:lang="lt">MPEG-4 garso knyga</comment>
+ <comment xml:lang="ko">MPEG-4 오디오북</comment>
+ <comment xml:lang="kk">MPEG-4 аудио кітабы</comment>
+ <comment xml:lang="ka">MPEG-4 აუდიოწიგნი</comment>
+ <comment xml:lang="ja">MPEG-4 オーディオブック</comment>
+ <comment xml:lang="it">Audiolibro MPEG-4</comment>
+ <comment xml:lang="is">MPEG-4 hljóðbók</comment>
+ <comment xml:lang="id">Buku audio MPEG-4</comment>
+ <comment xml:lang="ia">Libro audio MPEG-4</comment>
+ <comment xml:lang="hu">MPEG-4 hangoskönyv</comment>
+ <comment xml:lang="hr">MPEG-4 zvučna knjiga</comment>
+ <comment xml:lang="he">ספר דיגיטלי MPEG-4</comment>
+ <comment xml:lang="gl">sonlibro de MPEG-4</comment>
+ <comment xml:lang="ga">closleabhar MPEG-4</comment>
+ <comment xml:lang="fur">audio-libri MPEG-4</comment>
+ <comment xml:lang="fr">livre audio MPEG-4</comment>
+ <comment xml:lang="fo">MPEG-4 ljóðbók</comment>
+ <comment xml:lang="fi">MPEG-4-äänikirja</comment>
+ <comment xml:lang="eu">MPEG-4 audio-liburua</comment>
+ <comment xml:lang="es">audiolibro MPEG-4</comment>
+ <comment xml:lang="eo">MPEG-4-sonlibro</comment>
+ <comment xml:lang="en_GB">MPEG-4 audio book</comment>
+ <comment xml:lang="el">Ηχητικό βιβλίο MPEG-4</comment>
+ <comment xml:lang="de">MPEG-4-Hörbuch</comment>
+ <comment xml:lang="da">MPEG4-lydbog</comment>
+ <comment xml:lang="cs">zvuková kniha MPEG-4</comment>
+ <comment xml:lang="ca">llibre d'àudio MPEG-4</comment>
+ <comment xml:lang="bg">Аудио книга — MPEG-4</comment>
+ <comment xml:lang="be@latin">Aŭdyjokniha MPEG-4</comment>
+ <comment xml:lang="be">аўдыякніга MPEG-4</comment>
+ <comment xml:lang="ar">كتاب MPEG-4 صوتي</comment>
+ <comment xml:lang="af">MPEG-4-oudioboek</comment>
<sub-class-of type="audio/mp4"/>
- <magic priority="50">
- <match value="ftypM4B" type="string" offset="4"/>
+ <magic>
+ <match type="string" value="ftypM4B" offset="4"/>
</magic>
<glob pattern="*.m4b"/>
<glob pattern="*.f4b"/>
</mime-type>
<mime-type type="video/3gpp">
<comment>3GPP multimedia file</comment>
- <comment xml:lang="ar">ملف وسائط متعددة 3GPP</comment>
- <comment xml:lang="be@latin">Multymedyjny fajł 3GPP</comment>
- <comment xml:lang="bg">Мултимедия — 3GPP</comment>
- <comment xml:lang="ca">fitxer multimèdia 3GPP</comment>
- <comment xml:lang="cs">multimediální soubor 3GPP</comment>
- <comment xml:lang="da">3GPP multimedie-fil</comment>
- <comment xml:lang="de">3GPP-Multimediadatei</comment>
- <comment xml:lang="el">Αρχείο πολυμέσων 3GPP</comment>
- <comment xml:lang="en_GB">3GPP multimedia file</comment>
- <comment xml:lang="es">archivo multimedia 3GPP</comment>
- <comment xml:lang="eu">3GPP multimediako fitxategia</comment>
- <comment xml:lang="fi">3GPP-multimediatiedosto</comment>
- <comment xml:lang="fo">3GGP margmiðlafíla</comment>
- <comment xml:lang="fr">fichier multimédia 3GPP</comment>
- <comment xml:lang="ga">comhad ilmheán 3GPP</comment>
- <comment xml:lang="gl">ficheiro multimedia 3GPP</comment>
- <comment xml:lang="he">קובץ מולטימדיה מסוג 3GPP</comment>
- <comment xml:lang="hr">3GPP multimedijska datoteka</comment>
- <comment xml:lang="hu">3GPP multimédiafájl</comment>
- <comment xml:lang="ia">File multimedial 3GPP</comment>
- <comment xml:lang="id">Berkas multimedia 3GPP</comment>
- <comment xml:lang="it">File multimediale 3GPP</comment>
- <comment xml:lang="ja">3GPP マルチメディアファイル</comment>
- <comment xml:lang="ka">3GPP მულტიმედიური ფაილი</comment>
- <comment xml:lang="kk">3GPP мультимедиялық файлы</comment>
- <comment xml:lang="ko">3GPP 멀티미디어 파일</comment>
- <comment xml:lang="lt">3GPP multimedijos failas</comment>
- <comment xml:lang="lv">3GPP multimediju datne</comment>
- <comment xml:lang="nb">3GPP-multimediafil</comment>
- <comment xml:lang="nl">3GPP-multimediabestand</comment>
- <comment xml:lang="nn">3GPP-multimediafil</comment>
- <comment xml:lang="oc">fichièr multimèdia 3GPP</comment>
- <comment xml:lang="pl">Plik multimedialny 3GPP</comment>
- <comment xml:lang="pt">ficheiro multimédia 3GPP</comment>
- <comment xml:lang="pt_BR">Arquivo multimídia 3GPP</comment>
- <comment xml:lang="ro">Fișier multimedia 3GPP</comment>
- <comment xml:lang="ru">Мультимедийный файл 3GPP</comment>
- <comment xml:lang="sk">Súbor multimédií 3GPP</comment>
- <comment xml:lang="sl">Večpredstavnostna datoteka 3GPP</comment>
- <comment xml:lang="sq">File multimedial 3GPP</comment>
- <comment xml:lang="sr">3ГПП мултимедијална датотека</comment>
- <comment xml:lang="sv">3GPP-multimediafil</comment>
- <comment xml:lang="tr">3GPP multimedya dosyası</comment>
- <comment xml:lang="uk">файл мультимедійних даних 3GPP</comment>
- <comment xml:lang="vi">Tập tin đa phương tiện 3GPP</comment>
- <comment xml:lang="zh_CN">3GPP 多媒体文件</comment>
<comment xml:lang="zh_TW">3GPP 多媒體檔案</comment>
+ <comment xml:lang="zh_CN">3GPP 多媒体文件</comment>
+ <comment xml:lang="vi">Tập tin đa phương tiện 3GPP</comment>
+ <comment xml:lang="uk">файл мультимедійних даних 3GPP</comment>
+ <comment xml:lang="tr">3GPP çoklu ortam dosyası</comment>
+ <comment xml:lang="sv">3GPP-multimediafil</comment>
+ <comment xml:lang="sr">3ГПП мултимедијална датотека</comment>
+ <comment xml:lang="sq">kartelë multimedia 3GPP</comment>
+ <comment xml:lang="sl">Večpredstavnostna datoteka 3GPP</comment>
+ <comment xml:lang="si">3GPP බහුමාධ්‍ය ගොනුව</comment>
+ <comment xml:lang="sk">Súbor multimédií 3GPP</comment>
+ <comment xml:lang="ru">Мультимедийный файл 3GPP</comment>
+ <comment xml:lang="ro">Fișier multimedia 3GPP</comment>
+ <comment xml:lang="pt_BR">Arquivo multimídia 3GPP</comment>
+ <comment xml:lang="pt">ficheiro multimédia 3GPP</comment>
+ <comment xml:lang="pl">Plik multimedialny 3GPP</comment>
+ <comment xml:lang="oc">fichièr multimèdia 3GPP</comment>
+ <comment xml:lang="nn">3GPP-multimediafil</comment>
+ <comment xml:lang="nl">3GPP-multimediabestand</comment>
+ <comment xml:lang="nb">3GPP-multimediafil</comment>
+ <comment xml:lang="lv">3GPP multimediju datne</comment>
+ <comment xml:lang="lt">3GPP multimedijos failas</comment>
+ <comment xml:lang="ko">3GPP 멀티미디어 파일</comment>
+ <comment xml:lang="kk">3GPP мультимедиялық файлы</comment>
+ <comment xml:lang="ka">3GPP მულტიმედიური ფაილი</comment>
+ <comment xml:lang="ja">3GPP マルチメディアファイル</comment>
+ <comment xml:lang="it">File multimediale 3GPP</comment>
+ <comment xml:lang="is">3GPP margmiðlunarskrá</comment>
+ <comment xml:lang="id">Berkas multimedia 3GPP</comment>
+ <comment xml:lang="ia">File multimedial 3GPP</comment>
+ <comment xml:lang="hu">3GPP multimédiafájl</comment>
+ <comment xml:lang="hr">3GPP multimedijska datoteka</comment>
+ <comment xml:lang="he">קובץ מולטימדיה מסוג 3GPP</comment>
+ <comment xml:lang="gl">ficheiro multimedia 3GPP</comment>
+ <comment xml:lang="ga">comhad ilmheán 3GPP</comment>
+ <comment xml:lang="fur">file multimediâl 3GPP</comment>
+ <comment xml:lang="fr">fichier multimédia 3GPP</comment>
+ <comment xml:lang="fo">3GGP margmiðlafíla</comment>
+ <comment xml:lang="fi">3GPP-multimediatiedosto</comment>
+ <comment xml:lang="eu">3GPP multimediako fitxategia</comment>
+ <comment xml:lang="es">archivo multimedia 3GPP</comment>
+ <comment xml:lang="en_GB">3GPP multimedia file</comment>
+ <comment xml:lang="el">Αρχείο πολυμέσων 3GPP</comment>
+ <comment xml:lang="de">3GPP-Multimediadatei</comment>
+ <comment xml:lang="da">3GPP multimedie-fil</comment>
+ <comment xml:lang="cs">multimediální soubor 3GPP</comment>
+ <comment xml:lang="ca">fitxer multimèdia 3GPP</comment>
+ <comment xml:lang="bg">Мултимедия — 3GPP</comment>
+ <comment xml:lang="be@latin">Multymedyjny fajł 3GPP</comment>
+ <comment xml:lang="be">мультымедыйны файл 3GPP</comment>
+ <comment xml:lang="ar">ملف وسائط متعددة 3GPP</comment>
+ <comment xml:lang="af">3GPP-multimedialêer</comment>
<acronym>3GPP</acronym>
<expanded-acronym>3rd Generation Partnership Project</expanded-acronym>
<sub-class-of type="video/mp4"/>
- <magic priority="50">
- <match value="ftyp3ge" type="string" offset="4"/>
- <match value="ftyp3gg" type="string" offset="4"/>
- <match value="ftyp3gp" type="string" offset="4"/>
- <match value="ftyp3gs" type="string" offset="4"/>
+ <magic>
+ <match type="string" value="ftyp3ge" offset="4"/>
+ <match type="string" value="ftyp3gg" offset="4"/>
+ <match type="string" value="ftyp3gp" offset="4"/>
+ <match type="string" value="ftyp3gs" offset="4"/>
</magic>
<glob pattern="*.3gp"/>
<glob pattern="*.3gpp"/>
@@ -23406,52 +25569,58 @@
</mime-type>
<mime-type type="video/3gpp2">
<comment>3GPP2 multimedia file</comment>
- <comment xml:lang="ar">ملف وسائط متعددة 3GPP2</comment>
- <comment xml:lang="bg">Мултимедия — 3GPP2</comment>
- <comment xml:lang="ca">fitxer multimèdia 3GPP2</comment>
- <comment xml:lang="cs">multimediální soubor 3GPP2</comment>
- <comment xml:lang="da">3GPP2 multimedie-fil</comment>
- <comment xml:lang="de">3GPP2-Multimediadatei</comment>
- <comment xml:lang="el">Αρχείο πολυμέσων 3GPP2</comment>
- <comment xml:lang="en_GB">3GPP2 multimedia file</comment>
- <comment xml:lang="es">archivo multimedia 3GPP2</comment>
- <comment xml:lang="eu">3GPP2 multimediako fitxategia</comment>
- <comment xml:lang="fi">3GPP2-multimediatiedosto</comment>
- <comment xml:lang="fo">3GGP2 margmiðlafíla</comment>
- <comment xml:lang="fr">fichier multimédia 3GPP2</comment>
- <comment xml:lang="ga">comhad ilmheán 3GPP2</comment>
- <comment xml:lang="gl">ficheiro multimedia 3GPP2</comment>
- <comment xml:lang="he">קובץ מולטימדיה 3GPP2</comment>
- <comment xml:lang="hr">3GPP2 multimedijska datoteka</comment>
- <comment xml:lang="hu">3GPP2 multimédiafájl</comment>
- <comment xml:lang="ia">File multimedial 3GPP2</comment>
- <comment xml:lang="id">Berkas multimedia 3GPP2</comment>
- <comment xml:lang="it">File multimediale 3GPP2</comment>
- <comment xml:lang="ja">3GPP2 マルチメディアファイル</comment>
- <comment xml:lang="ka">3GPP2 მულტიმედიური ფაილი</comment>
- <comment xml:lang="kk">3GPP2 мультимедиялық файлы</comment>
- <comment xml:lang="ko">3GPP2 멀티미디어 파일</comment>
- <comment xml:lang="lv">3GPP2 multimediju datne</comment>
- <comment xml:lang="nl">3GPP2 multimedia bestand</comment>
- <comment xml:lang="oc">fichièr multimèdia 3GPP2</comment>
- <comment xml:lang="pl">Plik multimedialny 3GPP2</comment>
- <comment xml:lang="pt">ficheiro multimédia 3GPP2</comment>
- <comment xml:lang="pt_BR">Arquivo multimídia 3GPP2</comment>
- <comment xml:lang="ro">Fișier multimedia 3GPP2</comment>
- <comment xml:lang="ru">Мультимедийный файл 3GPP2</comment>
- <comment xml:lang="sk">Súbor multimédií 3GPP2</comment>
- <comment xml:lang="sl">Večpredstavnostna datoteka 3GPP2</comment>
- <comment xml:lang="sr">3ГПП2 мултимедијална датотека</comment>
- <comment xml:lang="sv">3GPP2-multimediafil</comment>
- <comment xml:lang="tr">3GPP2 multimedya dosyası</comment>
- <comment xml:lang="uk">файл мультимедійних даних 3GPP2</comment>
- <comment xml:lang="zh_CN">3GPP2 多媒体文件</comment>
<comment xml:lang="zh_TW">3GPP2 多媒體檔案</comment>
+ <comment xml:lang="zh_CN">3GPP2 多媒体文件</comment>
+ <comment xml:lang="uk">файл мультимедійних даних 3GPP2</comment>
+ <comment xml:lang="tr">3GPP2 çoklu ortam dosyası</comment>
+ <comment xml:lang="sv">3GPP2-multimediafil</comment>
+ <comment xml:lang="sr">3ГПП2 мултимедијална датотека</comment>
+ <comment xml:lang="sq">kartelë multimedia 3GPP2</comment>
+ <comment xml:lang="sl">Večpredstavnostna datoteka 3GPP2</comment>
+ <comment xml:lang="si">3GPP2 බහුමාධ්‍ය ගොනුව</comment>
+ <comment xml:lang="sk">Súbor multimédií 3GPP2</comment>
+ <comment xml:lang="ru">Мультимедийный файл 3GPP2</comment>
+ <comment xml:lang="ro">Fișier multimedia 3GPP2</comment>
+ <comment xml:lang="pt_BR">Arquivo multimídia 3GPP2</comment>
+ <comment xml:lang="pt">ficheiro multimédia 3GPP2</comment>
+ <comment xml:lang="pl">Plik multimedialny 3GPP2</comment>
+ <comment xml:lang="oc">fichièr multimèdia 3GPP2</comment>
+ <comment xml:lang="nl">3GPP2-multimediabestand</comment>
+ <comment xml:lang="lv">3GPP2 multimediju datne</comment>
+ <comment xml:lang="lt">3GPP2 multimedijos failas</comment>
+ <comment xml:lang="ko">3GPP2 멀티미디어 파일</comment>
+ <comment xml:lang="kk">3GPP2 мультимедиялық файлы</comment>
+ <comment xml:lang="ka">3GPP2 მულტიმედიური ფაილი</comment>
+ <comment xml:lang="ja">3GPP2 マルチメディアファイル</comment>
+ <comment xml:lang="it">File multimediale 3GPP2</comment>
+ <comment xml:lang="is">3GPP2 margmiðlunarskrá</comment>
+ <comment xml:lang="id">Berkas multimedia 3GPP2</comment>
+ <comment xml:lang="ia">File multimedial 3GPP2</comment>
+ <comment xml:lang="hu">3GPP2 multimédiafájl</comment>
+ <comment xml:lang="hr">3GPP2 multimedijska datoteka</comment>
+ <comment xml:lang="he">קובץ מולטימדיה 3GPP2</comment>
+ <comment xml:lang="gl">ficheiro multimedia 3GPP2</comment>
+ <comment xml:lang="ga">comhad ilmheán 3GPP2</comment>
+ <comment xml:lang="fur">file multimediâl 3GPP2</comment>
+ <comment xml:lang="fr">fichier multimédia 3GPP2</comment>
+ <comment xml:lang="fo">3GGP2 margmiðlafíla</comment>
+ <comment xml:lang="fi">3GPP2-multimediatiedosto</comment>
+ <comment xml:lang="eu">3GPP2 multimediako fitxategia</comment>
+ <comment xml:lang="es">archivo multimedia 3GPP2</comment>
+ <comment xml:lang="en_GB">3GPP2 multimedia file</comment>
+ <comment xml:lang="el">Αρχείο πολυμέσων 3GPP2</comment>
+ <comment xml:lang="de">3GPP2-Multimediadatei</comment>
+ <comment xml:lang="da">3GPP2 multimedie-fil</comment>
+ <comment xml:lang="cs">multimediální soubor 3GPP2</comment>
+ <comment xml:lang="ca">fitxer multimèdia 3GPP2</comment>
+ <comment xml:lang="bg">Мултимедия — 3GPP2</comment>
+ <comment xml:lang="be">мультымедыйны файл 3GPP2</comment>
+ <comment xml:lang="ar">ملف وسائط متعددة 3GPP2</comment>
+ <comment xml:lang="af">3GPP2-multimedialêer</comment>
<acronym>3GPP2</acronym>
<expanded-acronym>3rd Generation Partnership Project 2</expanded-acronym>
- <sub-class-of type="video/mp4"/>
- <magic priority="50">
- <match value="ftyp3g2" type="string" offset="4"/>
+ <magic>
+ <match type="string" value="ftyp3g2" offset="4"/>
</magic>
<glob pattern="*.3g2"/>
<glob pattern="*.3gp2"/>
@@ -23460,88 +25629,113 @@
</mime-type>
<mime-type type="audio/x-mod">
<comment>Amiga SoundTracker audio</comment>
- <comment xml:lang="ar">مقتفي صوت Amiga السمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Amiga SoundTracker</comment>
- <comment xml:lang="bg">Аудио — Amiga SoundTracker</comment>
- <comment xml:lang="ca">àudio SoundTracker d'Amiga</comment>
- <comment xml:lang="cs">zvuk Amiga SoundTracker</comment>
- <comment xml:lang="da">Amiga SoundTracker-lyd</comment>
- <comment xml:lang="de">Amiga-SoundTracker-Audio</comment>
- <comment xml:lang="el">Ήχος Amiga SoundTracker</comment>
- <comment xml:lang="en_GB">Amiga SoundTracker audio</comment>
- <comment xml:lang="eo">Sondosiero de Amiga SoundTracker</comment>
- <comment xml:lang="es">sonido de Amiga SoundTracker</comment>
- <comment xml:lang="eu">Amiga soundtracker audioa</comment>
- <comment xml:lang="fi">Amiga SoundTracker -ääni</comment>
- <comment xml:lang="fo">Amiga SoundTracker ljóður</comment>
- <comment xml:lang="fr">audio SoundTracker Amiga</comment>
- <comment xml:lang="ga">fuaim Amiga SoundTracker</comment>
- <comment xml:lang="gl">son de Amiga SoundTracker</comment>
- <comment xml:lang="he">קובץ שמע של Amiga SoundTracker</comment>
- <comment xml:lang="hr">Amiga SoundTracker zvučni zapis</comment>
- <comment xml:lang="hu">Amiga SoundTracker hang</comment>
- <comment xml:lang="ia">Audio Amiga SoundTracker</comment>
- <comment xml:lang="id">Audio Amida SoundTracker</comment>
- <comment xml:lang="it">Audio Amiga SoundTracker</comment>
- <comment xml:lang="ja">Amiga SoundTracker オーディオ</comment>
- <comment xml:lang="ka">Amiga SoundTracker-ის აუდიო</comment>
- <comment xml:lang="kk">Amiga SoundTracker аудиосы</comment>
- <comment xml:lang="ko">Amiga SoundTracker 오디오</comment>
- <comment xml:lang="lt">Amiga SoundTracker garso įrašas</comment>
- <comment xml:lang="lv">Amiga SoundTracker audio</comment>
- <comment xml:lang="ms">Audio Amiga Soundtracker</comment>
- <comment xml:lang="nb">Amiga SoundTracker-lyd</comment>
- <comment xml:lang="nl">Amiga SoundTracker-audio</comment>
- <comment xml:lang="nn">Amiga soundtracker-lyd</comment>
- <comment xml:lang="oc">àudio SoundTracker Amiga</comment>
- <comment xml:lang="pl">Plik dźwiękowy Amiga SoundTracker</comment>
- <comment xml:lang="pt">áudio SoundTracker do Amiga</comment>
- <comment xml:lang="pt_BR">Áudio Amiga SoundTracker</comment>
- <comment xml:lang="ro">Audio Amiga SoundTracker</comment>
- <comment xml:lang="ru">Аудио Amiga SoundTracker</comment>
- <comment xml:lang="sk">Zvuk Amiga SoundTracker</comment>
- <comment xml:lang="sl">Zvočna datoteka Amiga SoundTracker</comment>
- <comment xml:lang="sq">Audio Amiga SoundTracker</comment>
- <comment xml:lang="sr">звук Амигиног Пратиоца Звука</comment>
- <comment xml:lang="sv">Amiga SoundTracker-ljud</comment>
- <comment xml:lang="tr">Amiga SoundTracker sesi</comment>
- <comment xml:lang="uk">звук Amiga SoundTracker</comment>
- <comment xml:lang="vi">Âm thanh Amiga SoundTracker</comment>
- <comment xml:lang="zh_CN">Amiga SoundTracker 音频</comment>
<comment xml:lang="zh_TW">Amiga SoundTracker 音訊</comment>
+ <comment xml:lang="zh_CN">Amiga SoundTracker 音频</comment>
+ <comment xml:lang="vi">Âm thanh Amiga SoundTracker</comment>
+ <comment xml:lang="uk">звук Amiga SoundTracker</comment>
+ <comment xml:lang="tr">Amiga SoundTracker sesi</comment>
+ <comment xml:lang="sv">Amiga SoundTracker-ljud</comment>
+ <comment xml:lang="sr">звук Амигиног Пратиоца Звука</comment>
+ <comment xml:lang="sq">audio Amiga SoundTracker</comment>
+ <comment xml:lang="sl">Zvočna datoteka Amiga SoundTracker</comment>
+ <comment xml:lang="si">Amiga SoundTracker ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk Amiga SoundTracker</comment>
+ <comment xml:lang="ru">Аудио Amiga SoundTracker</comment>
+ <comment xml:lang="ro">Audio Amiga SoundTracker</comment>
+ <comment xml:lang="pt_BR">Áudio Amiga SoundTracker</comment>
+ <comment xml:lang="pt">áudio SoundTracker do Amiga</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Amiga SoundTracker</comment>
+ <comment xml:lang="oc">àudio SoundTracker Amiga</comment>
+ <comment xml:lang="nn">Amiga soundtracker-lyd</comment>
+ <comment xml:lang="nl">Amiga SoundTracker-audio</comment>
+ <comment xml:lang="nb">Amiga SoundTracker-lyd</comment>
+ <comment xml:lang="ms">Audio Amiga Soundtracker</comment>
+ <comment xml:lang="lv">Amiga SoundTracker audio</comment>
+ <comment xml:lang="lt">Amiga SoundTracker garso įrašas</comment>
+ <comment xml:lang="ko">Amiga SoundTracker 오디오</comment>
+ <comment xml:lang="kk">Amiga SoundTracker аудиосы</comment>
+ <comment xml:lang="ka">Amiga SoundTracker-ის აუდიო</comment>
+ <comment xml:lang="ja">Amiga SoundTracker オーディオ</comment>
+ <comment xml:lang="it">Audio Amiga SoundTracker</comment>
+ <comment xml:lang="is">Amiga SoundTracker hljóðskrá</comment>
+ <comment xml:lang="id">Audio Amida SoundTracker</comment>
+ <comment xml:lang="ia">Audio Amiga SoundTracker</comment>
+ <comment xml:lang="hu">Amiga SoundTracker hang</comment>
+ <comment xml:lang="hr">Amiga SoundTracker zvučni zapis</comment>
+ <comment xml:lang="he">קובץ שמע של Amiga SoundTracker</comment>
+ <comment xml:lang="gl">son de Amiga SoundTracker</comment>
+ <comment xml:lang="ga">fuaim Amiga SoundTracker</comment>
+ <comment xml:lang="fur">audio Amiga SoundTracker</comment>
+ <comment xml:lang="fr">audio SoundTracker Amiga</comment>
+ <comment xml:lang="fo">Amiga SoundTracker ljóður</comment>
+ <comment xml:lang="fi">Amiga SoundTracker -ääni</comment>
+ <comment xml:lang="eu">Amiga soundtracker audioa</comment>
+ <comment xml:lang="es">sonido de Amiga SoundTracker</comment>
+ <comment xml:lang="eo">Sondosiero de Amiga SoundTracker</comment>
+ <comment xml:lang="en_GB">Amiga SoundTracker audio</comment>
+ <comment xml:lang="el">Ήχος Amiga SoundTracker</comment>
+ <comment xml:lang="de">Amiga-SoundTracker-Audio</comment>
+ <comment xml:lang="da">Amiga SoundTracker-lyd</comment>
+ <comment xml:lang="cs">zvuk Amiga SoundTracker</comment>
+ <comment xml:lang="ca">àudio SoundTracker d'Amiga</comment>
+ <comment xml:lang="bg">Аудио — Amiga SoundTracker</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Amiga SoundTracker</comment>
+ <comment xml:lang="be">аўдыя Amiga SoundTracker</comment>
+ <comment xml:lang="ar">مقتفي صوت Amiga السمعي</comment>
<magic priority="40">
- <match value="MTM" type="string" offset="0"/>
- <match value="MMD0" type="string" offset="0"/>
- <match value="MMD1" type="string" offset="0"/>
- <match value="if" type="string" offset="0">
-
- <match value="0x0" type="byte" offset="110" mask="0xc0">
-
- <match value="0x0" type="byte" offset="111" mask="0x80"/>
- <match value="0x80" type="byte" offset="111"/>
- </match>
-
- <match value="0x40" type="byte" offset="110">
-
- <match value="0x0" type="byte" offset="111" mask="0x80"/>
- <match value="0x80" type="byte" offset="111"/>
- </match>
- </match>
- <match value="JN" type="string" offset="0">
-
- <match value="0x0" type="byte" offset="110" mask="0xc0">
-
- <match value="0x0" type="byte" offset="111" mask="0x80"/>
- <match value="0x80" type="byte" offset="111"/>
+ <match type="string" value="MTM" offset="0"/>
+ <match type="string" value="MMD0" offset="0"/>
+ <match type="string" value="MMD1" offset="0"/>
+ <!-- 669 composer files: "if" and "JN" -->
+ <match type="byte" value="0x0" mask="0x80" offset="112">
+ <match type="string" value="if" offset="0">
+ <!-- tempo list last byte: 0-31 (0 = known false positive) -->
+ <match type="byte" value="0x0" mask="0xe0" offset="368">
+ <!-- number of samples: 0-63 -->
+ <match type="byte" value="0x0" mask="0xc0" offset="110">
+ <!-- number of patterns: 0-128 -->
+ <match type="byte" value="0x0" mask="0x80" offset="111"/>
+ <match type="byte" value="0x80" offset="111"/>
+ </match>
+ <!-- number of samples: 64 -->
+ <match type="byte" value="0x40" offset="110">
+ <match type="byte" value="0x0" mask="0x80" offset="111"/>
+ <match type="byte" value="0x80" offset="111"/>
+ </match>
+ </match>
+ <!-- tempo list last byte: 32 -->
+ <match type="byte" value="0x20" offset="368">
+ <!-- number of samples: 0-63 -->
+ <match type="byte" value="0x0" mask="0xc0" offset="110">
+ <!-- number of patterns: 0-128 -->
+ <match type="byte" value="0x0" mask="0x80" offset="111"/>
+ <match type="byte" value="0x80" offset="111"/>
+ </match>
+ <!-- number of samples: 64 -->
+ <match type="byte" value="0x40" offset="110">
+ <match type="byte" value="0x0" mask="0x80" offset="111"/>
+ <match type="byte" value="0x80" offset="111"/>
+ </match>
+ </match>
</match>
-
- <match value="0x40" type="byte" offset="110">
-
- <match value="0x0" type="byte" offset="111" mask="0x80"/>
- <match value="0x80" type="byte" offset="111"/>
+ <match type="string" value="JN" offset="0">
+ <match type="byte" value="0x0" mask="0xe0" offset="368">
+ <match type="byte" value="0x0" mask="0xc0" offset="110">
+ <match type="byte" value="0x0" mask="0x80" offset="111"/>
+ <match type="byte" value="0x80" offset="111"/>
+ </match>
+ </match>
+ <match type="byte" value="0x20" offset="368">
+ <match type="byte" value="0x40" offset="110">
+ <match type="byte" value="0x0" mask="0x80" offset="111"/>
+ <match type="byte" value="0x80" offset="111"/>
+ </match>
+ </match>
</match>
</match>
- <match value="MAS_UTrack_V00" type="string" offset="0"/>
+ <match type="string" value="MAS_UTrack_V00" offset="0"/>
+ <match type="string" value="M.K." offset="1080"/>
+ <match type="string" value="M!K!" offset="1080"/>
</magic>
<glob pattern="*.mod"/>
<glob pattern="*.ult"/>
@@ -23553,171 +25747,159 @@
</mime-type>
<mime-type type="audio/mp2">
<comment>MP2 audio</comment>
- <comment xml:lang="ar">MP2 سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo MP2</comment>
- <comment xml:lang="bg">Аудио — MP2</comment>
- <comment xml:lang="ca">àudio MP2</comment>
- <comment xml:lang="cs">zvuk MP2</comment>
- <comment xml:lang="da">MP2-lyd</comment>
- <comment xml:lang="de">MP2-Audio</comment>
- <comment xml:lang="el">Ήχος MP2</comment>
- <comment xml:lang="en_GB">MP2 audio</comment>
- <comment xml:lang="eo">MP2-sondosiero</comment>
- <comment xml:lang="es">sonido MP2</comment>
- <comment xml:lang="eu">MP2 audioa</comment>
- <comment xml:lang="fi">MP2-ääni</comment>
- <comment xml:lang="fo">MP2 ljóður</comment>
- <comment xml:lang="fr">audio MP2</comment>
- <comment xml:lang="ga">fuaim MP2</comment>
- <comment xml:lang="gl">son MP2</comment>
- <comment xml:lang="he">שמע MP2</comment>
- <comment xml:lang="hr">MP2 zvučni zapis</comment>
- <comment xml:lang="hu">MP2 hang</comment>
- <comment xml:lang="ia">Audio MP2</comment>
- <comment xml:lang="id">Audio MP2</comment>
- <comment xml:lang="it">Audio MP2</comment>
- <comment xml:lang="ja">MP2 オーディオ</comment>
- <comment xml:lang="kk">MP2 аудиосы</comment>
- <comment xml:lang="ko">MP2 오디오</comment>
- <comment xml:lang="lt">MP2 garso įrašas</comment>
- <comment xml:lang="lv">MP2 audio</comment>
- <comment xml:lang="nb">MP2-lyd</comment>
- <comment xml:lang="nl">MP2-audio</comment>
- <comment xml:lang="nn">MP2-lyd</comment>
- <comment xml:lang="oc">àudio MP2</comment>
- <comment xml:lang="pl">Plik dźwiękowy MP2</comment>
- <comment xml:lang="pt">áudio MP2</comment>
- <comment xml:lang="pt_BR">Áudio MP2</comment>
- <comment xml:lang="ro">Audio MP2</comment>
- <comment xml:lang="ru">Аудио MP2</comment>
- <comment xml:lang="sk">Zvuk MP2</comment>
- <comment xml:lang="sl">Zvočna datoteka MP2</comment>
- <comment xml:lang="sq">Audio MP2</comment>
- <comment xml:lang="sr">МП2 звук</comment>
- <comment xml:lang="sv">MP2-ljud</comment>
- <comment xml:lang="tr">MP2 sesi</comment>
- <comment xml:lang="uk">звук MP2</comment>
- <comment xml:lang="vi">Âm thanh MP2</comment>
- <comment xml:lang="zh_CN">MP2 音频</comment>
<comment xml:lang="zh_TW">MP2 音訊</comment>
+ <comment xml:lang="zh_CN">MP2 音频</comment>
+ <comment xml:lang="vi">Âm thanh MP2</comment>
+ <comment xml:lang="uk">звук MP2</comment>
+ <comment xml:lang="tr">MP2 sesi</comment>
+ <comment xml:lang="sv">MP2-ljud</comment>
+ <comment xml:lang="sr">МП2 звук</comment>
+ <comment xml:lang="sq">audio MP2</comment>
+ <comment xml:lang="sl">Zvočna datoteka MP2</comment>
+ <comment xml:lang="si">MP2 ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk MP2</comment>
+ <comment xml:lang="ru">Аудио MP2</comment>
+ <comment xml:lang="ro">Audio MP2</comment>
+ <comment xml:lang="pt_BR">Áudio MP2</comment>
+ <comment xml:lang="pt">áudio MP2</comment>
+ <comment xml:lang="pl">Plik dźwiękowy MP2</comment>
+ <comment xml:lang="oc">àudio MP2</comment>
+ <comment xml:lang="nn">MP2-lyd</comment>
+ <comment xml:lang="nl">MP2-audio</comment>
+ <comment xml:lang="nb">MP2-lyd</comment>
+ <comment xml:lang="lv">MP2 audio</comment>
+ <comment xml:lang="lt">MP2 garso įrašas</comment>
+ <comment xml:lang="ko">MP2 오디오</comment>
+ <comment xml:lang="kk">MP2 аудиосы</comment>
+ <comment xml:lang="ja">MP2 オーディオ</comment>
+ <comment xml:lang="it">Audio MP2</comment>
+ <comment xml:lang="is">MP2 hljóðskrá</comment>
+ <comment xml:lang="id">Audio MP2</comment>
+ <comment xml:lang="ia">Audio MP2</comment>
+ <comment xml:lang="hu">MP2 hang</comment>
+ <comment xml:lang="hr">MP2 zvučni zapis</comment>
+ <comment xml:lang="he">שמע MP2</comment>
+ <comment xml:lang="gl">son MP2</comment>
+ <comment xml:lang="ga">fuaim MP2</comment>
+ <comment xml:lang="fur">audio MP2</comment>
+ <comment xml:lang="fr">audio MP2</comment>
+ <comment xml:lang="fo">MP2 ljóður</comment>
+ <comment xml:lang="fi">MP2-ääni</comment>
+ <comment xml:lang="eu">MP2 audioa</comment>
+ <comment xml:lang="es">sonido MP2</comment>
+ <comment xml:lang="eo">MP2-sondosiero</comment>
+ <comment xml:lang="en_GB">MP2 audio</comment>
+ <comment xml:lang="el">Ήχος MP2</comment>
+ <comment xml:lang="de">MP2-Audio</comment>
+ <comment xml:lang="da">MP2-lyd</comment>
+ <comment xml:lang="cs">zvuk MP2</comment>
+ <comment xml:lang="ca">àudio MP2</comment>
+ <comment xml:lang="bg">Аудио — MP2</comment>
+ <comment xml:lang="be@latin">Aŭdyjo MP2</comment>
+ <comment xml:lang="be">аўдыя MP2</comment>
+ <comment xml:lang="ar">صوت MP2</comment>
+ <comment xml:lang="af">MP2-oudio</comment>
<alias type="audio/x-mp2"/>
<glob pattern="*.mp2"/>
</mime-type>
<mime-type type="audio/mpeg">
<comment>MP3 audio</comment>
- <comment xml:lang="ar">MP3 سمعي</comment>
- <comment xml:lang="az">MP3 audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo MP3</comment>
- <comment xml:lang="bg">Аудио — MP3</comment>
- <comment xml:lang="ca">àudio MP3</comment>
- <comment xml:lang="cs">zvuk MP3</comment>
- <comment xml:lang="cy">Sain MP3</comment>
- <comment xml:lang="da">MP3-lyd</comment>
- <comment xml:lang="de">MP3-Audio</comment>
- <comment xml:lang="el">Ήχος MP3</comment>
- <comment xml:lang="en_GB">MP3 audio</comment>
- <comment xml:lang="eo">MP3-sondosiero</comment>
- <comment xml:lang="es">sonido MP3</comment>
- <comment xml:lang="eu">MP3 audioa</comment>
- <comment xml:lang="fi">MP3-ääni</comment>
- <comment xml:lang="fo">MP3 ljóður</comment>
- <comment xml:lang="fr">audio MP3</comment>
- <comment xml:lang="ga">fuaim MP3</comment>
- <comment xml:lang="gl">son MP3</comment>
- <comment xml:lang="he">שמע MP3</comment>
- <comment xml:lang="hr">MP3 zvučni zapis</comment>
- <comment xml:lang="hu">MP3 hang</comment>
- <comment xml:lang="ia">Audio MP3</comment>
- <comment xml:lang="id">Audio MP3</comment>
- <comment xml:lang="it">Audio MP3</comment>
- <comment xml:lang="ja">MP3 オーディオ</comment>
- <comment xml:lang="ka">MP3 აუდიო</comment>
- <comment xml:lang="kk">MP3 аудиосы</comment>
- <comment xml:lang="ko">MP3 오디오</comment>
- <comment xml:lang="lt">MP3 garso įrašas</comment>
- <comment xml:lang="lv">MP3 audio</comment>
- <comment xml:lang="ms">Audio MP3</comment>
- <comment xml:lang="nb">MP3-lyd</comment>
- <comment xml:lang="nl">MP3-audio</comment>
- <comment xml:lang="nn">MP3-lyd</comment>
- <comment xml:lang="oc">àudio MP3</comment>
- <comment xml:lang="pl">Plik dźwiękowy MP3</comment>
- <comment xml:lang="pt">áudio MP3</comment>
- <comment xml:lang="pt_BR">Áudio MP3</comment>
- <comment xml:lang="ro">Audio MP3</comment>
- <comment xml:lang="ru">Аудио MP3</comment>
- <comment xml:lang="sk">Zvuk MP3</comment>
- <comment xml:lang="sl">Zvočna datoteka MP3</comment>
- <comment xml:lang="sq">Audio MP3</comment>
- <comment xml:lang="sr">МП3 звук</comment>
- <comment xml:lang="sv">MP3-ljud</comment>
- <comment xml:lang="tr">MP3 sesi</comment>
- <comment xml:lang="uk">звук MP3</comment>
- <comment xml:lang="vi">Âm thanh MP3</comment>
- <comment xml:lang="zh_CN">MP3 音频</comment>
<comment xml:lang="zh_TW">MP3 音訊</comment>
+ <comment xml:lang="zh_CN">MP3 音频</comment>
+ <comment xml:lang="vi">Âm thanh MP3</comment>
+ <comment xml:lang="uk">звук MP3</comment>
+ <comment xml:lang="tr">MP3 sesi</comment>
+ <comment xml:lang="sv">MP3-ljud</comment>
+ <comment xml:lang="sr">МП3 звук</comment>
+ <comment xml:lang="sq">audio MP3</comment>
+ <comment xml:lang="sl">Zvočna datoteka MP3</comment>
+ <comment xml:lang="si">MP3 ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk MP3</comment>
+ <comment xml:lang="ru">Аудио MP3</comment>
+ <comment xml:lang="ro">Audio MP3</comment>
+ <comment xml:lang="pt_BR">Áudio MP3</comment>
+ <comment xml:lang="pt">áudio MP3</comment>
+ <comment xml:lang="pl">Plik dźwiękowy MP3</comment>
+ <comment xml:lang="oc">àudio MP3</comment>
+ <comment xml:lang="nn">MP3-lyd</comment>
+ <comment xml:lang="nl">MP3-audio</comment>
+ <comment xml:lang="nb">MP3-lyd</comment>
+ <comment xml:lang="ms">Audio MP3</comment>
+ <comment xml:lang="lv">MP3 audio</comment>
+ <comment xml:lang="lt">MP3 garso įrašas</comment>
+ <comment xml:lang="ko">MP3 오디오</comment>
+ <comment xml:lang="kk">MP3 аудиосы</comment>
+ <comment xml:lang="ka">MP3 აუდიო</comment>
+ <comment xml:lang="ja">MP3 オーディオ</comment>
+ <comment xml:lang="it">Audio MP3</comment>
+ <comment xml:lang="is">MP3 hljóðskrá</comment>
+ <comment xml:lang="id">Audio MP3</comment>
+ <comment xml:lang="ia">Audio MP3</comment>
+ <comment xml:lang="hu">MP3 hang</comment>
+ <comment xml:lang="hr">MP3 zvučni zapis</comment>
+ <comment xml:lang="he">שמע MP3</comment>
+ <comment xml:lang="gl">son MP3</comment>
+ <comment xml:lang="ga">fuaim MP3</comment>
+ <comment xml:lang="fur">audio MP3</comment>
+ <comment xml:lang="fr">audio MP3</comment>
+ <comment xml:lang="fo">MP3 ljóður</comment>
+ <comment xml:lang="fi">MP3-ääni</comment>
+ <comment xml:lang="eu">MP3 audioa</comment>
+ <comment xml:lang="es">sonido MP3</comment>
+ <comment xml:lang="eo">MP3-sondosiero</comment>
+ <comment xml:lang="en_GB">MP3 audio</comment>
+ <comment xml:lang="el">Ήχος MP3</comment>
+ <comment xml:lang="de">MP3-Audio</comment>
+ <comment xml:lang="da">MP3-lyd</comment>
+ <comment xml:lang="cy">Sain MP3</comment>
+ <comment xml:lang="cs">zvuk MP3</comment>
+ <comment xml:lang="ca">àudio MP3</comment>
+ <comment xml:lang="bg">Аудио — MP3</comment>
+ <comment xml:lang="be@latin">Aŭdyjo MP3</comment>
+ <comment xml:lang="be">аўдыя MP3</comment>
+ <comment xml:lang="az">MP3 audio faylı</comment>
+ <comment xml:lang="ar">صوت MP3</comment>
+ <comment xml:lang="af">MP3-oudio</comment>
<alias type="audio/x-mp3"/>
<alias type="audio/x-mpg"/>
<alias type="audio/x-mpeg"/>
<alias type="audio/mp3"/>
- <magic priority="50">
- <match value="0xfffb" type="big16" offset="0"/>
- <match value="ID3" type="string" offset="0"/>
+ <magic>
+ <match type="big16" value="0xfffa" offset="0"/>
+ <match type="big16" value="0xfffb" offset="0"/>
+ <match type="big16" value="0xfff3" offset="0"/>
+ <match type="big16" value="0xfff2" offset="0"/>
+ <match type="big16" value="0xffe3" offset="0"/>
+ <match type="big16" value="0xffe2" offset="0"/>
+ <match type="string" value="ID3" offset="0"/>
</magic>
<glob pattern="*.mp3"/>
<glob pattern="*.mpga"/>
</mime-type>
<mime-type type="audio/x-mpegurl">
- <comment>MP3 audio (streamed)</comment>
- <comment xml:lang="ar">MP3 سمعي (تدفق)</comment>
- <comment xml:lang="be@latin">Aŭdyjo MP3 (płyń)</comment>
- <comment xml:lang="bg">Аудио — MP3, поточно</comment>
- <comment xml:lang="ca">àudio MP3 (flux)</comment>
- <comment xml:lang="cs">zvuk MP3 (proud)</comment>
- <comment xml:lang="da">MP3-lyd (strøm)</comment>
- <comment xml:lang="de">MP3-Audio (Stream)</comment>
- <comment xml:lang="el">Ήχος MP3 (εκπεμπόμενος)</comment>
- <comment xml:lang="en_GB">MP3 audio (streamed)</comment>
- <comment xml:lang="eo">MP3-sondosiero (fluigate)</comment>
- <comment xml:lang="es">sonido MP3 (en transmisión)</comment>
- <comment xml:lang="eu">MP3 audioa (korrontea)</comment>
- <comment xml:lang="fi">MP3-ääni (virtaus)</comment>
- <comment xml:lang="fo">MP3 ljóður (streymað)</comment>
- <comment xml:lang="fr">audio MP3 (flux)</comment>
- <comment xml:lang="ga">fuaim MP3 (sruthaithe)</comment>
- <comment xml:lang="gl">son MP3 (en stream)</comment>
- <comment xml:lang="he">שמע MP3 (מוזרם)</comment>
- <comment xml:lang="hr">MP3 zvučni zapis (strujanje)</comment>
- <comment xml:lang="hu">MP3 hang (sugárzott)</comment>
- <comment xml:lang="ia">Audio MP3 (fluxo)</comment>
- <comment xml:lang="id">Audio MP3 (stream)</comment>
- <comment xml:lang="it">Audio MP3 (in streaming)</comment>
- <comment xml:lang="ja">MP3 オーディオ (ストリーム)</comment>
- <comment xml:lang="ka">MP3 აუდიო (ნაკადი)</comment>
- <comment xml:lang="kk">MP3 аудиосы (ағымдық)</comment>
- <comment xml:lang="ko">MP3 오디오(스트림)</comment>
- <comment xml:lang="lt">MP3 garso įrašas (transliuojamas)</comment>
- <comment xml:lang="lv">MP3 audio (straumēts)</comment>
- <comment xml:lang="ms">Audio MP3 (aliran)</comment>
- <comment xml:lang="nb">MP3-lyd (streaming)</comment>
- <comment xml:lang="nl">MP3-audio (gestreamd)</comment>
- <comment xml:lang="nn">Strauma MP3-lyd</comment>
- <comment xml:lang="oc">àudio MP3 (flux)</comment>
- <comment xml:lang="pl">Plik dźwiękowy MP3 (strumień)</comment>
- <comment xml:lang="pt">áudio MP3 (em fluxo)</comment>
- <comment xml:lang="pt_BR">Áudio MP3 (em fluxo)</comment>
- <comment xml:lang="ro">Audio MP3 (flux)</comment>
- <comment xml:lang="ru">Аудио MP3 (потоковое)</comment>
- <comment xml:lang="sk">Zvuk MP3 (streamovaný)</comment>
- <comment xml:lang="sl">Zvočna datoteka MP3 (pretočna)</comment>
- <comment xml:lang="sq">Audio MP3 (streamed)</comment>
- <comment xml:lang="sr">МП3 звук (проточан)</comment>
- <comment xml:lang="sv">MP3-ljud (flöde)</comment>
- <comment xml:lang="tr">MP3 sesi (akış)</comment>
- <comment xml:lang="uk">звук MP3 (потоковий)</comment>
- <comment xml:lang="vi">Âm thanh MP3 (chạy luồng)</comment>
- <comment xml:lang="zh_CN">MP3 音频流媒体</comment>
- <comment xml:lang="zh_TW">MP3 音訊 (串流)</comment>
+ <comment>Media playlist</comment>
+ <comment xml:lang="zh_CN">媒体播放列表</comment>
+ <comment xml:lang="uk">мультимедійний список відтворення</comment>
+ <comment xml:lang="tr">Ortam çalma listesi</comment>
+ <comment xml:lang="sv">Mediaspellista</comment>
+ <comment xml:lang="si">මාධ්‍ය ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="ru">Список воспроизведения медиа-данных</comment>
+ <comment xml:lang="pl">Lista odtwarzania multimediów</comment>
+ <comment xml:lang="nl">Media-afspeellijst</comment>
+ <comment xml:lang="ko">Media 재생 목록</comment>
+ <comment xml:lang="kk">Медиа ойнату тізімі</comment>
+ <comment xml:lang="ka">მედიის დასაკრავი სია</comment>
+ <comment xml:lang="ja">メディアプレイリスト</comment>
+ <comment xml:lang="it">Playlist multimediale</comment>
+ <comment xml:lang="hr">Media popis izvođenja</comment>
+ <comment xml:lang="gl">Lista de reprodución multimedia</comment>
+ <comment xml:lang="fi">Media-soittolista</comment>
+ <comment xml:lang="eu">Multimediako erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción de medios</comment>
+ <comment xml:lang="en_GB">Media playlist</comment>
+ <comment xml:lang="de">Medien-Wiedergabeliste</comment>
+ <comment xml:lang="be">плэй-ліст мультымедыя</comment>
+ <comment xml:lang="ar">قائمة تشغيل وسائط</comment>
<sub-class-of type="text/plain"/>
<alias type="audio/mpegurl"/>
<alias type="application/m3u"/>
@@ -23727,111 +25909,97 @@
<glob pattern="*.m3u"/>
<glob pattern="*.m3u8"/>
<glob pattern="*.vlc"/>
- <magic priority="50">
- <match value="#EXTM3U" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#EXTM3U" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/vnd.apple.mpegurl">
- <comment>HTTP Live Streaming playlist</comment>
- <comment xml:lang="ar">قائمة بث HTTP حية</comment>
- <comment xml:lang="bg">Списък за изпълнение — поток по HTTP</comment>
- <comment xml:lang="ca">llista de reproducció en temps real HTTP</comment>
- <comment xml:lang="cs">seznam k přehrání HTTP Live Streaming</comment>
- <comment xml:lang="da">Afspilningsliste til HTTP-livestrøm</comment>
- <comment xml:lang="de">HTTP Live-Streaming-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής ζωντανής μετάδοσης σε HTTP</comment>
- <comment xml:lang="en_GB">HTTP Live Streaming playlist</comment>
- <comment xml:lang="es">lista de reproducción de flujo en directo HTTP</comment>
- <comment xml:lang="eu">HTTP zuzeneko korrontearen erreprodukzio-zerrenda</comment>
- <comment xml:lang="fo">HTTP beinleiðis streymaður avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture de flux HTTP Live</comment>
- <comment xml:lang="ga">seinmliosta sruthaithe bheo HTTP</comment>
- <comment xml:lang="gl">lista de reprodución de fluxo HTTP</comment>
- <comment xml:lang="he">רשימת השמעה הזרימה של HTTP</comment>
- <comment xml:lang="hr">HTTP popis izvođenja emitiranja uživo</comment>
- <comment xml:lang="hu">HTTP élő lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection HTTP Live Streaming</comment>
- <comment xml:lang="id">Daftar putar HTTP Live Streaming</comment>
- <comment xml:lang="it">Playlist Live Steaming HTTP</comment>
- <comment xml:lang="ja">HTTP ライブストリーミング再生リスト</comment>
- <comment xml:lang="kk">HTTP тірі ағым ойнау тізімі</comment>
- <comment xml:lang="ko">HTTP 라이브 스트리밍 재생 목록</comment>
- <comment xml:lang="lt">HTTP tiesioginio transliavimo grojaraštis</comment>
- <comment xml:lang="lv">HTTP dzīvās straumēšanas repertuārs</comment>
- <comment xml:lang="nl">HTTP Live Streaming afspeellijst</comment>
- <comment xml:lang="oc">lista de lectura de flux HTTP Live</comment>
- <comment xml:lang="pl">Lista odtwarzania strumieniowego na żywo HTTP</comment>
- <comment xml:lang="pt">lista de reprodução HTTP Live Streaming</comment>
- <comment xml:lang="pt_BR">Lista de Reprodução Streaming ao Vivo de HTTP</comment>
- <comment xml:lang="ro">Listă de redare difuzată ca flux HTTP</comment>
- <comment xml:lang="ru">Список воспроизведения HTTP-потока</comment>
- <comment xml:lang="sk">Zoznam stôp HTTP Live Streaming</comment>
- <comment xml:lang="sl">Seznam predvajanja živega pretoka HTTP</comment>
- <comment xml:lang="sr">ХТТП списак нумера Живог Протока</comment>
- <comment xml:lang="sv">HTTP Live Streaming-spellista</comment>
- <comment xml:lang="tr">HTTP Canlı Akış çalma listesi</comment>
- <comment xml:lang="uk">список відтворення HTTP Live Streaming</comment>
- <comment xml:lang="zh_CN">HTTP 实时流播放列表</comment>
- <comment xml:lang="zh_TW">HTTP 即時串流播放清單</comment>
+ <comment>Media playlist</comment>
+ <comment xml:lang="zh_CN">媒体播放列表</comment>
+ <comment xml:lang="uk">мультимедійний список відтворення</comment>
+ <comment xml:lang="tr">Ortam çalma listesi</comment>
+ <comment xml:lang="sv">Mediaspellista</comment>
+ <comment xml:lang="si">මාධ්‍ය ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="ru">Список воспроизведения медиа-данных</comment>
+ <comment xml:lang="pl">Lista odtwarzania multimediów</comment>
+ <comment xml:lang="nl">Media-afspeellijst</comment>
+ <comment xml:lang="ko">Media 재생 목록</comment>
+ <comment xml:lang="kk">Медиа ойнату тізімі</comment>
+ <comment xml:lang="ka">მედიის დასაკრავი სია</comment>
+ <comment xml:lang="ja">メディアプレイリスト</comment>
+ <comment xml:lang="it">Playlist multimediale</comment>
+ <comment xml:lang="hr">Media popis izvođenja</comment>
+ <comment xml:lang="gl">Lista de reprodución multimedia</comment>
+ <comment xml:lang="fi">Media-soittolista</comment>
+ <comment xml:lang="eu">Multimediako erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción de medios</comment>
+ <comment xml:lang="en_GB">Media playlist</comment>
+ <comment xml:lang="de">Medien-Wiedergabeliste</comment>
+ <comment xml:lang="be">плэй-ліст мультымедыя</comment>
+ <comment xml:lang="ar">قائمة تشغيل وسائط</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.m3u"/>
<glob pattern="*.m3u8"/>
<magic priority="70">
- <match value="#EXTM3U" type="string" offset="0">
- <match value="#EXT-X-TARGETDURATION" type="string" offset="0:128"/>
- <match value="#EXT-X-STREAM-INF" type="string" offset="0:128"/>
+ <match type="string" value="#EXTM3U" offset="0">
+ <match type="string" value="#EXT-X-TARGETDURATION" offset="0:128"/>
+ <match type="string" value="#EXT-X-STREAM-INF" offset="0:128"/>
</match>
</magic>
</mime-type>
<mime-type type="audio/x-ms-asx">
<comment>Microsoft ASX playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل مايكروسوفت ASX</comment>
- <comment xml:lang="be@latin">Śpis Microsoft ASX</comment>
- <comment xml:lang="bg">Списък за изпълнение — Microsoft ASX</comment>
- <comment xml:lang="ca">llista de reproducció de Microsoft ASX</comment>
- <comment xml:lang="cs">seznam k přehrání Microsoft ASX</comment>
- <comment xml:lang="da">Microsoft ASX-afspilningsliste</comment>
- <comment xml:lang="de">Microsoft-ASX-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής Microsoft ASX</comment>
- <comment xml:lang="en_GB">Microsoft ASX playlist</comment>
- <comment xml:lang="es">lista de reproducción ASX de Microsoft</comment>
- <comment xml:lang="eu">Microsoft ASX erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">Microsoft ASX -soittolista</comment>
- <comment xml:lang="fo">Microsoft ASX avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture Microsoft ASX</comment>
- <comment xml:lang="ga">seinmliosta Microsoft ASX</comment>
- <comment xml:lang="gl">lista de reprodución Microsoft ASX</comment>
- <comment xml:lang="he">רשימת השמעה ASX (מיקרוסופט)</comment>
- <comment xml:lang="hr">Microsoft ASX popis izvođenja</comment>
- <comment xml:lang="hu">Microsoft ASX lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection Microsoft ASX</comment>
- <comment xml:lang="id">Senarai putar Microsoft ASX</comment>
- <comment xml:lang="it">Playlist Microsoft ASX</comment>
- <comment xml:lang="ja">Microsoft ASX 再生リスト</comment>
- <comment xml:lang="ka">Microsoft-ის ASX რეპერტუარი</comment>
- <comment xml:lang="kk">Microsoft ASX ойнау тізімі</comment>
- <comment xml:lang="ko">Microsoft ASX 재생 목록</comment>
- <comment xml:lang="lt">Microsoft ASX grojaraštis</comment>
- <comment xml:lang="lv">Microsoft ASX repertuārs</comment>
- <comment xml:lang="nb">Microsoft ASX-spilleliste</comment>
- <comment xml:lang="nl">Microsoft ASX-afspeellijst</comment>
- <comment xml:lang="nn">Microsoft ASX-speleliste</comment>
- <comment xml:lang="oc">lista de lectura Microsoft ASX</comment>
- <comment xml:lang="pl">Lista odtwarzania Microsoft ASX</comment>
- <comment xml:lang="pt">lista de reprodução Microsoft ASX</comment>
- <comment xml:lang="pt_BR">Lista de reprodução do Microsoft ASX</comment>
- <comment xml:lang="ro">Listă redare Microsoft ASX</comment>
- <comment xml:lang="ru">Список воспроизведения Microsoft ASX</comment>
- <comment xml:lang="sk">Zoznam skladieb Microsoft ASX</comment>
- <comment xml:lang="sl">Seznam predvajanja Microsoft ASX</comment>
- <comment xml:lang="sq">Listë titujsh Microsoft ASF</comment>
- <comment xml:lang="sr">Мајкрософтов АСИкс списак нумера</comment>
- <comment xml:lang="sv">Microsoft ASX-spellista</comment>
- <comment xml:lang="tr">Microsoft ASX çalma listesi</comment>
- <comment xml:lang="uk">список відтворення ASX Microsoft</comment>
- <comment xml:lang="vi">Danh mục nhạc Microsoft ASX</comment>
- <comment xml:lang="zh_CN">Microsoft ASX 播放列表</comment>
<comment xml:lang="zh_TW">微軟 ASX 播放清單</comment>
+ <comment xml:lang="zh_CN">Microsoft ASX 播放列表</comment>
+ <comment xml:lang="vi">Danh mục nhạc Microsoft ASX</comment>
+ <comment xml:lang="uk">список відтворення ASX Microsoft</comment>
+ <comment xml:lang="tr">Microsoft ASX çalma listesi</comment>
+ <comment xml:lang="sv">Microsoft ASX-spellista</comment>
+ <comment xml:lang="sr">Мајкрософтов АСИкс списак нумера</comment>
+ <comment xml:lang="sq">luajlistë Microsoft ASF</comment>
+ <comment xml:lang="sl">Seznam predvajanja Microsoft ASX</comment>
+ <comment xml:lang="si">Microsoft ASX ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb Microsoft ASX</comment>
+ <comment xml:lang="ru">Список воспроизведения Microsoft ASX</comment>
+ <comment xml:lang="ro">Listă redare Microsoft ASX</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução do Microsoft ASX</comment>
+ <comment xml:lang="pt">lista de reprodução Microsoft ASX</comment>
+ <comment xml:lang="pl">Lista odtwarzania Microsoft ASX</comment>
+ <comment xml:lang="oc">lista de lectura Microsoft ASX</comment>
+ <comment xml:lang="nn">Microsoft ASX-speleliste</comment>
+ <comment xml:lang="nl">Microsoft ASX-afspeellijst</comment>
+ <comment xml:lang="nb">Microsoft ASX-spilleliste</comment>
+ <comment xml:lang="lv">Microsoft ASX repertuārs</comment>
+ <comment xml:lang="lt">Microsoft ASX grojaraštis</comment>
+ <comment xml:lang="ko">Microsoft ASX 재생 목록</comment>
+ <comment xml:lang="kk">Microsoft ASX ойнау тізімі</comment>
+ <comment xml:lang="ka">Microsoft-ის ASX რეპერტუარი</comment>
+ <comment xml:lang="ja">Microsoft ASX プレイリスト</comment>
+ <comment xml:lang="it">Playlist Microsoft ASX</comment>
+ <comment xml:lang="is">Microsoft ASX spilunarlisti</comment>
+ <comment xml:lang="id">Senarai putar Microsoft ASX</comment>
+ <comment xml:lang="ia">Lista de selection Microsoft ASX</comment>
+ <comment xml:lang="hu">Microsoft ASX lejátszólista</comment>
+ <comment xml:lang="hr">Microsoft ASX popis izvođenja</comment>
+ <comment xml:lang="he">רשימת השמעה ASX (מיקרוסופט)</comment>
+ <comment xml:lang="gl">lista de reprodución Microsoft ASX</comment>
+ <comment xml:lang="ga">seinmliosta Microsoft ASX</comment>
+ <comment xml:lang="fur">liste di riproduzion Microsoft ASX</comment>
+ <comment xml:lang="fr">liste de lecture Microsoft ASX</comment>
+ <comment xml:lang="fo">Microsoft ASX avspælingarlisti</comment>
+ <comment xml:lang="fi">Microsoft ASX -soittolista</comment>
+ <comment xml:lang="eu">Microsoft ASX erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción ASX de Microsoft</comment>
+ <comment xml:lang="en_GB">Microsoft ASX playlist</comment>
+ <comment xml:lang="el">Λίστα αναπαραγωγής Microsoft ASX</comment>
+ <comment xml:lang="de">Microsoft-ASX-Wiedergabeliste</comment>
+ <comment xml:lang="da">Microsoft ASX-afspilningsliste</comment>
+ <comment xml:lang="cs">seznam k přehrání Microsoft ASX</comment>
+ <comment xml:lang="ca">llista de reproducció de Microsoft ASX</comment>
+ <comment xml:lang="bg">Списък за изпълнение — Microsoft ASX</comment>
+ <comment xml:lang="be@latin">Śpis Microsoft ASX</comment>
+ <comment xml:lang="be">плэй-ліст Microsoft ASX</comment>
+ <comment xml:lang="ar">قائمة تشغيل مايكروسوفت ASX</comment>
<alias type="video/x-ms-wvx"/>
<alias type="video/x-ms-wax"/>
<alias type="video/x-ms-wmx"/>
@@ -23841,118 +26009,128 @@
<glob pattern="*.wvx"/>
<glob pattern="*.wmx"/>
<magic priority="51">
- <match value="ASF " type="string" offset="0"/>
- <match value="&lt;ASX" type="string" offset="0:64"/>
- <match value="&lt;asx" type="string" offset="0:64"/>
- <match value="&lt;Asx" type="string" offset="0:64"/>
+ <match type="string" value="ASF " offset="0"/>
+ <match type="string" value="&lt;ASX" offset="0:64"/>
+ <match type="string" value="&lt;asx" offset="0:64"/>
+ <match type="string" value="&lt;Asx" offset="0:64"/>
</magic>
</mime-type>
<mime-type type="audio/x-psf">
<comment>PSF audio</comment>
- <comment xml:lang="ar">PSF سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo PSF</comment>
- <comment xml:lang="bg">Аудио — PSF</comment>
- <comment xml:lang="ca">àudio PSF</comment>
- <comment xml:lang="cs">zvuk PSF</comment>
- <comment xml:lang="da">PSF-lyd</comment>
- <comment xml:lang="de">PSF-Audio</comment>
- <comment xml:lang="el">Ήχος PSF</comment>
- <comment xml:lang="en_GB">PSF audio</comment>
- <comment xml:lang="eo">PSF-sondosiero</comment>
- <comment xml:lang="es">sonido PSF</comment>
- <comment xml:lang="eu">PSF audioa</comment>
- <comment xml:lang="fi">PSF-ääni</comment>
- <comment xml:lang="fo">PSF ljóður</comment>
- <comment xml:lang="fr">audio PSF</comment>
- <comment xml:lang="ga">fuaim PSF</comment>
- <comment xml:lang="gl">son PSF</comment>
- <comment xml:lang="he">שמע PSF</comment>
- <comment xml:lang="hr">PSF zvučni zapis</comment>
- <comment xml:lang="hu">PSF hang</comment>
- <comment xml:lang="ia">Audio PSF</comment>
- <comment xml:lang="id">Audio PSF</comment>
- <comment xml:lang="it">Audio PSF</comment>
- <comment xml:lang="ja">PSF オーディオ</comment>
- <comment xml:lang="kk">PSF аудиосы</comment>
- <comment xml:lang="ko">PSF 오디오</comment>
- <comment xml:lang="lt">PSF garso įrašas</comment>
- <comment xml:lang="lv">PSF audio</comment>
- <comment xml:lang="nb">PSF-lyd</comment>
- <comment xml:lang="nl">PSF-audio</comment>
- <comment xml:lang="nn">PSF-lyd</comment>
- <comment xml:lang="oc">àudio PSF</comment>
- <comment xml:lang="pl">Plik dźwiękowy PSF</comment>
- <comment xml:lang="pt">áudio PSF</comment>
- <comment xml:lang="pt_BR">Áudio PSF</comment>
- <comment xml:lang="ro">Audio PSF</comment>
- <comment xml:lang="ru">Аудио PSF</comment>
- <comment xml:lang="sk">Zvuk PSF</comment>
- <comment xml:lang="sl">Zvočna datoteka PSF</comment>
- <comment xml:lang="sq">Audio PSF</comment>
- <comment xml:lang="sr">ПСФ звук</comment>
- <comment xml:lang="sv">PSF-ljud</comment>
- <comment xml:lang="tr">PSF sesi</comment>
- <comment xml:lang="uk">звук PSF</comment>
- <comment xml:lang="vi">Âm thanh PSF</comment>
- <comment xml:lang="zh_CN">PSF 音频</comment>
<comment xml:lang="zh_TW">PSF 音訊</comment>
+ <comment xml:lang="zh_CN">PSF 音频</comment>
+ <comment xml:lang="vi">Âm thanh PSF</comment>
+ <comment xml:lang="uk">звук PSF</comment>
+ <comment xml:lang="tr">PSF sesi</comment>
+ <comment xml:lang="sv">PSF-ljud</comment>
+ <comment xml:lang="sr">ПСФ звук</comment>
+ <comment xml:lang="sq">audio PSF</comment>
+ <comment xml:lang="sl">Zvočna datoteka PSF</comment>
+ <comment xml:lang="si">PSF ශ්රව්ය උපකරණ</comment>
+ <comment xml:lang="sk">Zvuk PSF</comment>
+ <comment xml:lang="ru">Аудио PSF</comment>
+ <comment xml:lang="ro">Audio PSF</comment>
+ <comment xml:lang="pt_BR">Áudio PSF</comment>
+ <comment xml:lang="pt">áudio PSF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy PSF</comment>
+ <comment xml:lang="oc">àudio PSF</comment>
+ <comment xml:lang="nn">PSF-lyd</comment>
+ <comment xml:lang="nl">PSF-audio</comment>
+ <comment xml:lang="nb">PSF-lyd</comment>
+ <comment xml:lang="lv">PSF audio</comment>
+ <comment xml:lang="lt">PSF garso įrašas</comment>
+ <comment xml:lang="ko">PSF 오디오</comment>
+ <comment xml:lang="kk">PSF аудиосы</comment>
+ <comment xml:lang="ja">PSF オーディオ</comment>
+ <comment xml:lang="it">Audio PSF</comment>
+ <comment xml:lang="is">PSF hljóðskrá</comment>
+ <comment xml:lang="id">Audio PSF</comment>
+ <comment xml:lang="ia">Audio PSF</comment>
+ <comment xml:lang="hu">PSF hang</comment>
+ <comment xml:lang="hr">PSF zvučni zapis</comment>
+ <comment xml:lang="he">שמע PSF</comment>
+ <comment xml:lang="gl">son PSF</comment>
+ <comment xml:lang="ga">fuaim PSF</comment>
+ <comment xml:lang="fur">audio PSF</comment>
+ <comment xml:lang="fr">audio PSF</comment>
+ <comment xml:lang="fo">PSF ljóður</comment>
+ <comment xml:lang="fi">PSF-ääni</comment>
+ <comment xml:lang="eu">PSF audioa</comment>
+ <comment xml:lang="es">sonido PSF</comment>
+ <comment xml:lang="eo">PSF-sondosiero</comment>
+ <comment xml:lang="en_GB">PSF audio</comment>
+ <comment xml:lang="el">Ήχος PSF</comment>
+ <comment xml:lang="de">PSF-Audio</comment>
+ <comment xml:lang="da">PSF-lyd</comment>
+ <comment xml:lang="cs">zvuk PSF</comment>
+ <comment xml:lang="ca">àudio PSF</comment>
+ <comment xml:lang="bg">Аудио — PSF</comment>
+ <comment xml:lang="be@latin">Aŭdyjo PSF</comment>
+ <comment xml:lang="be">аўдыя PSF</comment>
+ <comment xml:lang="ar">صوت PSF</comment>
+ <comment xml:lang="af">PSF-oudio</comment>
<acronym>PSF</acronym>
<expanded-acronym>Portable Sound Format</expanded-acronym>
- <magic priority="50">
- <match value="PSF" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="PSF" offset="0"/>
</magic>
<glob pattern="*.psf"/>
</mime-type>
<mime-type type="audio/x-minipsf">
<comment>MiniPSF audio</comment>
- <comment xml:lang="ar">MiniPSF سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo MiniPSF</comment>
- <comment xml:lang="bg">Аудио — MiniPSF</comment>
- <comment xml:lang="ca">àudio MiniPSF</comment>
- <comment xml:lang="cs">zvuk MiniPSF</comment>
- <comment xml:lang="da">MiniPSF-lyd</comment>
- <comment xml:lang="de">MiniPSF-Audio</comment>
- <comment xml:lang="el">Ήχος MiniPSF</comment>
- <comment xml:lang="en_GB">MiniPSF audio</comment>
- <comment xml:lang="eo">MiniPSF-sondosiero</comment>
- <comment xml:lang="es">sonido MiniPSF</comment>
- <comment xml:lang="eu">MiniPSF audioa</comment>
- <comment xml:lang="fi">MiniPSF-ääni</comment>
- <comment xml:lang="fo">MiniPSF ljóður</comment>
- <comment xml:lang="fr">audio MiniPSF</comment>
- <comment xml:lang="ga">fuaim MiniPSF</comment>
- <comment xml:lang="gl">son MiniPSF</comment>
- <comment xml:lang="he">שמע של MiniPSP</comment>
- <comment xml:lang="hr">MiniPSF zvučni zapis</comment>
- <comment xml:lang="hu">MiniPSF hang</comment>
- <comment xml:lang="ia">Audio MiniPSF</comment>
- <comment xml:lang="id">Audio MiniPSF</comment>
- <comment xml:lang="it">Audio MiniPSF</comment>
- <comment xml:lang="ja">MiniPSF オーディオ</comment>
- <comment xml:lang="ka">MiniPSF-ის აუდიო</comment>
- <comment xml:lang="kk">MiniPSF аудиосы</comment>
- <comment xml:lang="ko">MiniPSF 오디오</comment>
- <comment xml:lang="lt">MiniPSF garso įrašas</comment>
- <comment xml:lang="lv">MiniPSF audio</comment>
- <comment xml:lang="nb">MiniPSF-lyd</comment>
- <comment xml:lang="nl">MiniPSF-audio</comment>
- <comment xml:lang="nn">MiniPSF-lyd</comment>
- <comment xml:lang="oc">àudio MiniPSF</comment>
- <comment xml:lang="pl">Plik dźwiękowy MiniPSF</comment>
- <comment xml:lang="pt">áudio MiniPSF</comment>
- <comment xml:lang="pt_BR">Áudio MiniPSF</comment>
- <comment xml:lang="ro">Audio MiniPSF</comment>
- <comment xml:lang="ru">Аудио MiniPSF</comment>
- <comment xml:lang="sk">Zvuk MiniPSF</comment>
- <comment xml:lang="sl">Zvočna datoteka MiniPSF</comment>
- <comment xml:lang="sq">Audio MiniPSF</comment>
- <comment xml:lang="sr">Мини ПСФ звук</comment>
- <comment xml:lang="sv">MiniPSF-ljud</comment>
- <comment xml:lang="tr">MiniPSF sesi</comment>
- <comment xml:lang="uk">звук MiniPSF</comment>
- <comment xml:lang="vi">Âm thanh MiniPSF</comment>
- <comment xml:lang="zh_CN">MiniPSF 音频</comment>
<comment xml:lang="zh_TW">MiniPSF 音訊</comment>
+ <comment xml:lang="zh_CN">MiniPSF 音频</comment>
+ <comment xml:lang="vi">Âm thanh MiniPSF</comment>
+ <comment xml:lang="uk">звук MiniPSF</comment>
+ <comment xml:lang="tr">MiniPSF sesi</comment>
+ <comment xml:lang="sv">MiniPSF-ljud</comment>
+ <comment xml:lang="sr">Мини ПСФ звук</comment>
+ <comment xml:lang="sq">audio MiniPSF</comment>
+ <comment xml:lang="sl">Zvočna datoteka MiniPSF</comment>
+ <comment xml:lang="si">MiniPSF ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk MiniPSF</comment>
+ <comment xml:lang="ru">Аудио MiniPSF</comment>
+ <comment xml:lang="ro">Audio MiniPSF</comment>
+ <comment xml:lang="pt_BR">Áudio MiniPSF</comment>
+ <comment xml:lang="pt">áudio MiniPSF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy MiniPSF</comment>
+ <comment xml:lang="oc">àudio MiniPSF</comment>
+ <comment xml:lang="nn">MiniPSF-lyd</comment>
+ <comment xml:lang="nl">MiniPSF-audio</comment>
+ <comment xml:lang="nb">MiniPSF-lyd</comment>
+ <comment xml:lang="lv">MiniPSF audio</comment>
+ <comment xml:lang="lt">MiniPSF garso įrašas</comment>
+ <comment xml:lang="ko">MiniPSF 오디오</comment>
+ <comment xml:lang="kk">MiniPSF аудиосы</comment>
+ <comment xml:lang="ka">MiniPSF-ის აუდიო</comment>
+ <comment xml:lang="ja">MiniPSF オーディオ</comment>
+ <comment xml:lang="it">Audio MiniPSF</comment>
+ <comment xml:lang="is">MiniPSF hljóðskrá</comment>
+ <comment xml:lang="id">Audio MiniPSF</comment>
+ <comment xml:lang="ia">Audio MiniPSF</comment>
+ <comment xml:lang="hu">MiniPSF hang</comment>
+ <comment xml:lang="hr">MiniPSF zvučni zapis</comment>
+ <comment xml:lang="he">שמע של MiniPSP</comment>
+ <comment xml:lang="gl">son MiniPSF</comment>
+ <comment xml:lang="ga">fuaim MiniPSF</comment>
+ <comment xml:lang="fur">audio MiniPSF</comment>
+ <comment xml:lang="fr">audio MiniPSF</comment>
+ <comment xml:lang="fo">MiniPSF ljóður</comment>
+ <comment xml:lang="fi">MiniPSF-ääni</comment>
+ <comment xml:lang="eu">MiniPSF audioa</comment>
+ <comment xml:lang="es">sonido MiniPSF</comment>
+ <comment xml:lang="eo">MiniPSF-sondosiero</comment>
+ <comment xml:lang="en_GB">MiniPSF audio</comment>
+ <comment xml:lang="el">Ήχος MiniPSF</comment>
+ <comment xml:lang="de">MiniPSF-Audio</comment>
+ <comment xml:lang="da">MiniPSF-lyd</comment>
+ <comment xml:lang="cs">zvuk MiniPSF</comment>
+ <comment xml:lang="ca">àudio MiniPSF</comment>
+ <comment xml:lang="bg">Аудио — MiniPSF</comment>
+ <comment xml:lang="be@latin">Aŭdyjo MiniPSF</comment>
+ <comment xml:lang="be">аўдыя MiniPSF</comment>
+ <comment xml:lang="ar">صوت MiniPSF</comment>
+ <comment xml:lang="af">MiniPSF-oudio</comment>
<acronym>MiniPSF</acronym>
<expanded-acronym>Miniature Portable Sound Format</expanded-acronym>
<sub-class-of type="audio/x-psf"/>
@@ -23960,52 +26138,57 @@
</mime-type>
<mime-type type="audio/x-psflib">
<comment>PSFlib audio library</comment>
- <comment xml:lang="ar">مكتبة PSFlib السمعية</comment>
- <comment xml:lang="be@latin">Aŭdyjobiblijateka PSFlib</comment>
- <comment xml:lang="bg">Аудио библиотека — PSFlib</comment>
- <comment xml:lang="ca">biblioteca d'àudio PSFlib</comment>
- <comment xml:lang="cs">zvuková knihovna PSFlib</comment>
- <comment xml:lang="da">PSFlib-lydbibliotek</comment>
- <comment xml:lang="de">PSFlib-Audiobibliothek</comment>
- <comment xml:lang="el">Βιβλιοθήκη ήχου PSFlib</comment>
- <comment xml:lang="en_GB">PSFlib audio library</comment>
- <comment xml:lang="es">biblioteca de sonido PSFlib</comment>
- <comment xml:lang="eu">PSFlib audioaren liburutegia</comment>
- <comment xml:lang="fi">PSFlib-äänikirjasto</comment>
- <comment xml:lang="fo">PSFlib ljóðsavn</comment>
- <comment xml:lang="fr">bibliothèque audio PSFlib</comment>
- <comment xml:lang="ga">leabharlann fhuaime PSFlib</comment>
- <comment xml:lang="gl">Biblioteca de son PSFlib</comment>
- <comment xml:lang="he">ספריית שמע PSFlib</comment>
- <comment xml:lang="hr">PSFlib zvučna biblioteka</comment>
- <comment xml:lang="hu">PSFlib hanggyűjtemény</comment>
- <comment xml:lang="ia">Bibliotheca audio PSFlib</comment>
- <comment xml:lang="id">Pustaka audio PSFlib</comment>
- <comment xml:lang="it">Libreria audio PSFlib</comment>
- <comment xml:lang="ja">PSFlib オーディオライブラリ</comment>
- <comment xml:lang="kk">PSFlib аудио жинағы</comment>
- <comment xml:lang="ko">PSFlib 오디오 라이브러리</comment>
- <comment xml:lang="lt">PSFlib garso biblioteka</comment>
- <comment xml:lang="lv">PSFlib fonotēka</comment>
- <comment xml:lang="nb">PSFlib-lydbibliotek</comment>
- <comment xml:lang="nl">PSFlib-audiobibliotheek</comment>
- <comment xml:lang="nn">PSFlib lydbibliotek</comment>
- <comment xml:lang="oc">bibliotèca àudio PSFlib</comment>
- <comment xml:lang="pl">Biblioteka dźwiękowa PSFlib</comment>
- <comment xml:lang="pt">biblioteca áudio PSFlib</comment>
- <comment xml:lang="pt_BR">Biblioteca de áudio PSFlib</comment>
- <comment xml:lang="ro">Bibliotecă audio PSFlib</comment>
- <comment xml:lang="ru">Фонотека PSFlib</comment>
- <comment xml:lang="sk">Zvuková knižnica PSFlib</comment>
- <comment xml:lang="sl">Zvočna knjižnica PSFlib</comment>
- <comment xml:lang="sq">Librari audio PSFlib</comment>
- <comment xml:lang="sr">библиотека звука ПСФ библиотеке</comment>
- <comment xml:lang="sv">PSFlib-ljudbibliotek</comment>
- <comment xml:lang="tr">PSFlib ses kitaplığı</comment>
- <comment xml:lang="uk">аудіобібліотека PSFlib</comment>
- <comment xml:lang="vi">Thư viện âm thanh PSFlib</comment>
- <comment xml:lang="zh_CN">PSFlib 音频库</comment>
<comment xml:lang="zh_TW">PSFlib 音訊庫</comment>
+ <comment xml:lang="zh_CN">PSFlib 音频库</comment>
+ <comment xml:lang="vi">Thư viện âm thanh PSFlib</comment>
+ <comment xml:lang="uk">аудіобібліотека PSFlib</comment>
+ <comment xml:lang="tr">PSFlib ses kitaplığı</comment>
+ <comment xml:lang="sv">PSFlib-ljudbibliotek</comment>
+ <comment xml:lang="sr">библиотека звука ПСФ библиотеке</comment>
+ <comment xml:lang="sq">bibliotekë audio PSFlib</comment>
+ <comment xml:lang="sl">Zvočna knjižnica PSFlib</comment>
+ <comment xml:lang="si">PSFlib ශ්‍රව්‍ය පුස්තකාලය</comment>
+ <comment xml:lang="sk">Zvuková knižnica PSFlib</comment>
+ <comment xml:lang="ru">Фонотека PSFlib</comment>
+ <comment xml:lang="ro">Bibliotecă audio PSFlib</comment>
+ <comment xml:lang="pt_BR">Biblioteca de áudio PSFlib</comment>
+ <comment xml:lang="pt">biblioteca áudio PSFlib</comment>
+ <comment xml:lang="pl">Biblioteka dźwiękowa PSFlib</comment>
+ <comment xml:lang="oc">bibliotèca àudio PSFlib</comment>
+ <comment xml:lang="nn">PSFlib lydbibliotek</comment>
+ <comment xml:lang="nl">PSFlib-audiobibliotheek</comment>
+ <comment xml:lang="nb">PSFlib-lydbibliotek</comment>
+ <comment xml:lang="lv">PSFlib fonotēka</comment>
+ <comment xml:lang="lt">PSFlib garso biblioteka</comment>
+ <comment xml:lang="ko">PSFlib 오디오 라이브러리</comment>
+ <comment xml:lang="kk">PSFlib аудио жинағы</comment>
+ <comment xml:lang="ja">PSFlib オーディオライブラリ</comment>
+ <comment xml:lang="it">Libreria audio PSFlib</comment>
+ <comment xml:lang="is">PSFlib hljóðaðgerðasafn</comment>
+ <comment xml:lang="id">Pustaka audio PSFlib</comment>
+ <comment xml:lang="ia">Bibliotheca audio PSFlib</comment>
+ <comment xml:lang="hu">PSFlib hanggyűjtemény</comment>
+ <comment xml:lang="hr">PSFlib zvučna biblioteka</comment>
+ <comment xml:lang="he">ספריית שמע PSFlib</comment>
+ <comment xml:lang="gl">Biblioteca de son PSFlib</comment>
+ <comment xml:lang="ga">leabharlann fhuaime PSFlib</comment>
+ <comment xml:lang="fur">librarie audio PSFlib</comment>
+ <comment xml:lang="fr">bibliothèque audio PSFlib</comment>
+ <comment xml:lang="fo">PSFlib ljóðsavn</comment>
+ <comment xml:lang="fi">PSFlib-äänikirjasto</comment>
+ <comment xml:lang="eu">PSFlib audioaren liburutegia</comment>
+ <comment xml:lang="es">biblioteca de sonido PSFlib</comment>
+ <comment xml:lang="en_GB">PSFlib audio library</comment>
+ <comment xml:lang="el">Βιβλιοθήκη ήχου PSFlib</comment>
+ <comment xml:lang="de">PSFlib-Audiobibliothek</comment>
+ <comment xml:lang="da">PSFlib-lydbibliotek</comment>
+ <comment xml:lang="cs">zvuková knihovna PSFlib</comment>
+ <comment xml:lang="ca">biblioteca d'àudio PSFlib</comment>
+ <comment xml:lang="bg">Аудио библиотека — PSFlib</comment>
+ <comment xml:lang="be@latin">Aŭdyjobiblijateka PSFlib</comment>
+ <comment xml:lang="be">аўдыябібліятэка PSFlib</comment>
+ <comment xml:lang="ar">مكتبة صوت PSFlib</comment>
+ <comment xml:lang="af">PSFlib-oudiobiblioteek</comment>
<acronym>PSFlib</acronym>
<expanded-acronym>Portable Sound Format Library</expanded-acronym>
<sub-class-of type="audio/x-psf"/>
@@ -24013,106 +26196,117 @@
</mime-type>
<mime-type type="audio/x-ms-wma">
<comment>Windows Media audio</comment>
- <comment xml:lang="ar">Windows Media سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Windows Media</comment>
- <comment xml:lang="bg">Аудио — Windows Media</comment>
- <comment xml:lang="ca">àudio de Windows Media</comment>
- <comment xml:lang="cs">zvuk Windows Media</comment>
- <comment xml:lang="da">Windows Media-lyd</comment>
- <comment xml:lang="de">Windows-Media-Audio</comment>
- <comment xml:lang="el">Ήχος Windows Media</comment>
- <comment xml:lang="en_GB">Windows Media audio</comment>
- <comment xml:lang="es">sonido de Windows Media</comment>
- <comment xml:lang="eu">Windows Media audioa</comment>
- <comment xml:lang="fi">Windows Media -ääni</comment>
- <comment xml:lang="fo">Windows Media ljóður</comment>
- <comment xml:lang="fr">audio Windows Media</comment>
- <comment xml:lang="ga">fuaim Windows Media</comment>
- <comment xml:lang="gl">son de Windows Media</comment>
- <comment xml:lang="he">שמע של Windows Media</comment>
- <comment xml:lang="hr">Windows Media zvučni zapis</comment>
- <comment xml:lang="hu">Windows Media hang</comment>
- <comment xml:lang="ia">Audio Windows Media</comment>
- <comment xml:lang="id">Audio Windows Media</comment>
- <comment xml:lang="it">Audio Windows Media</comment>
- <comment xml:lang="ja">Windows Media オーディオ</comment>
- <comment xml:lang="kk">Windows Media аудиосы</comment>
- <comment xml:lang="ko">Windows 미디어 오디오</comment>
- <comment xml:lang="lt">Windows Media garso įrašas</comment>
- <comment xml:lang="lv">Windows Media audio</comment>
- <comment xml:lang="nb">Windows Media lyd</comment>
- <comment xml:lang="nl">Windows Media-audio</comment>
- <comment xml:lang="nn">Windows Media-lyd</comment>
- <comment xml:lang="oc">àudio Windows Media</comment>
- <comment xml:lang="pl">Plik dźwiękowy Windows Media</comment>
- <comment xml:lang="pt">áudio Windows Media</comment>
- <comment xml:lang="pt_BR">Áudio do Windows Media</comment>
- <comment xml:lang="ro">Audio Windows Media</comment>
- <comment xml:lang="ru">Аудио Windows Media</comment>
- <comment xml:lang="sk">Zvuk Windows Media</comment>
- <comment xml:lang="sl">Zvočna datoteka Windows Media</comment>
- <comment xml:lang="sq">Audio Windows Media</comment>
- <comment xml:lang="sr">Виндоуз Медија звук</comment>
- <comment xml:lang="sv">Windows Media-ljud</comment>
- <comment xml:lang="tr">Windows Media sesi</comment>
- <comment xml:lang="uk">звук Windows Media</comment>
- <comment xml:lang="vi">Âm thanh Windows Media</comment>
- <comment xml:lang="zh_CN">Windows Media 音频</comment>
<comment xml:lang="zh_TW">Windows Media 音訊</comment>
+ <comment xml:lang="zh_CN">Windows Media 音频</comment>
+ <comment xml:lang="vi">Âm thanh Windows Media</comment>
+ <comment xml:lang="uk">звук Windows Media</comment>
+ <comment xml:lang="tr">Windows Media sesi</comment>
+ <comment xml:lang="sv">Windows Media-ljud</comment>
+ <comment xml:lang="sr">Виндоуз Медија звук</comment>
+ <comment xml:lang="sq">audio Windows Media</comment>
+ <comment xml:lang="sl">Zvočna datoteka Windows Media</comment>
+ <comment xml:lang="si">වින්ඩෝස් මීඩියා ඕඩියෝ</comment>
+ <comment xml:lang="sk">Zvuk Windows Media</comment>
+ <comment xml:lang="ru">Аудио Windows Media</comment>
+ <comment xml:lang="ro">Audio Windows Media</comment>
+ <comment xml:lang="pt_BR">Áudio do Windows Media</comment>
+ <comment xml:lang="pt">áudio Windows Media</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Windows Media</comment>
+ <comment xml:lang="oc">àudio Windows Media</comment>
+ <comment xml:lang="nn">Windows Media-lyd</comment>
+ <comment xml:lang="nl">Windows Media-audio</comment>
+ <comment xml:lang="nb">Windows Media lyd</comment>
+ <comment xml:lang="lv">Windows Media audio</comment>
+ <comment xml:lang="lt">Windows Media garso įrašas</comment>
+ <comment xml:lang="ko">Windows 미디어 오디오</comment>
+ <comment xml:lang="kk">Windows Media аудиосы</comment>
+ <comment xml:lang="ja">Windows Media オーディオ</comment>
+ <comment xml:lang="it">Audio Windows Media</comment>
+ <comment xml:lang="is">Windows Media hljóðskrá</comment>
+ <comment xml:lang="id">Audio Windows Media</comment>
+ <comment xml:lang="ia">Audio Windows Media</comment>
+ <comment xml:lang="hu">Windows Media hang</comment>
+ <comment xml:lang="hr">Windows Media zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Windows Media</comment>
+ <comment xml:lang="gl">son de Windows Media</comment>
+ <comment xml:lang="ga">fuaim Windows Media</comment>
+ <comment xml:lang="fur">audio Windows Media</comment>
+ <comment xml:lang="fr">audio Windows Media</comment>
+ <comment xml:lang="fo">Windows Media ljóður</comment>
+ <comment xml:lang="fi">Windows Media -ääni</comment>
+ <comment xml:lang="eu">Windows Media audioa</comment>
+ <comment xml:lang="es">sonido de Windows Media</comment>
+ <comment xml:lang="en_GB">Windows Media audio</comment>
+ <comment xml:lang="el">Ήχος Windows Media</comment>
+ <comment xml:lang="de">Windows-Media-Audio</comment>
+ <comment xml:lang="da">Windows Media-lyd</comment>
+ <comment xml:lang="cs">zvuk Windows Media</comment>
+ <comment xml:lang="ca">àudio de Windows Media</comment>
+ <comment xml:lang="bg">Аудио — Windows Media</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Windows Media</comment>
+ <comment xml:lang="be">аўдыя Windows Media</comment>
+ <comment xml:lang="ar">فيديو ويندوز ميديا</comment>
+ <comment xml:lang="af">Windows Media-oudio</comment>
<sub-class-of type="application/vnd.ms-asf"/>
<glob pattern="*.wma"/>
<alias type="audio/wma"/>
</mime-type>
<mime-type type="audio/x-musepack">
<comment>Musepack audio</comment>
- <comment xml:lang="ar">Musepack سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo Musepack</comment>
- <comment xml:lang="bg">Аудио — Musepack</comment>
- <comment xml:lang="ca">àudio de Musepack</comment>
- <comment xml:lang="cs">zvuk Musepack</comment>
- <comment xml:lang="da">Musepacklyd</comment>
- <comment xml:lang="de">Musepack-Audio</comment>
- <comment xml:lang="el">Ήχος Musepack</comment>
- <comment xml:lang="en_GB">Musepack audio</comment>
- <comment xml:lang="es">sonido Musepack</comment>
- <comment xml:lang="eu">Musepack audioa</comment>
- <comment xml:lang="fi">Musepack-ääni</comment>
- <comment xml:lang="fo">Musepack ljóður</comment>
- <comment xml:lang="fr">audio Musepack</comment>
- <comment xml:lang="ga">fuaim Musepack</comment>
- <comment xml:lang="gl">son de Musepack</comment>
- <comment xml:lang="he">שמע של Musepack</comment>
- <comment xml:lang="hr">Musepack zvučni zapis</comment>
- <comment xml:lang="hu">Musepack hang</comment>
- <comment xml:lang="ia">Audio Musepack</comment>
- <comment xml:lang="id">Audio Musepack</comment>
- <comment xml:lang="it">Audio Musepack</comment>
- <comment xml:lang="ja">Musepack オーディオ</comment>
- <comment xml:lang="kk">Musepack аудиосы</comment>
- <comment xml:lang="ko">Musepack 오디오</comment>
- <comment xml:lang="lt">Musepack garso įrašas</comment>
- <comment xml:lang="lv">Musepack audio</comment>
- <comment xml:lang="nb">Musepack-lyd</comment>
- <comment xml:lang="nl">Musepack-audio</comment>
- <comment xml:lang="nn">Musepack-lyd</comment>
- <comment xml:lang="oc">àudio Musepack</comment>
- <comment xml:lang="pl">Plik dźwiękowy Musepack</comment>
- <comment xml:lang="pt">áudio Musepack</comment>
- <comment xml:lang="pt_BR">Áudio Musepack</comment>
- <comment xml:lang="ro">Audio Musepack</comment>
- <comment xml:lang="ru">Аудио Musepack</comment>
- <comment xml:lang="sk">Zvuk Musepack</comment>
- <comment xml:lang="sl">Zvočna datoteka Musepack</comment>
- <comment xml:lang="sq">Audio Musepack</comment>
- <comment xml:lang="sr">звук Мјузпака</comment>
- <comment xml:lang="sv">Musepack-ljud</comment>
- <comment xml:lang="tr">Musepack sesi</comment>
- <comment xml:lang="uk">звук Musepack</comment>
- <comment xml:lang="vi">Âm thanh Musepack</comment>
- <comment xml:lang="zh_CN">Musepack 音频</comment>
<comment xml:lang="zh_TW">Musepack 音訊</comment>
- <magic priority="50">
- <match value="MP+" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">Musepack 音频</comment>
+ <comment xml:lang="vi">Âm thanh Musepack</comment>
+ <comment xml:lang="uk">звук Musepack</comment>
+ <comment xml:lang="tr">Musepack sesi</comment>
+ <comment xml:lang="sv">Musepack-ljud</comment>
+ <comment xml:lang="sr">звук Мјузпака</comment>
+ <comment xml:lang="sq">audio Musepack</comment>
+ <comment xml:lang="sl">Zvočna datoteka Musepack</comment>
+ <comment xml:lang="si">Musepack ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk Musepack</comment>
+ <comment xml:lang="ru">Аудио Musepack</comment>
+ <comment xml:lang="ro">Audio Musepack</comment>
+ <comment xml:lang="pt_BR">Áudio Musepack</comment>
+ <comment xml:lang="pt">áudio Musepack</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Musepack</comment>
+ <comment xml:lang="oc">àudio Musepack</comment>
+ <comment xml:lang="nn">Musepack-lyd</comment>
+ <comment xml:lang="nl">Musepack-audio</comment>
+ <comment xml:lang="nb">Musepack-lyd</comment>
+ <comment xml:lang="lv">Musepack audio</comment>
+ <comment xml:lang="lt">Musepack garso įrašas</comment>
+ <comment xml:lang="ko">Musepack 오디오</comment>
+ <comment xml:lang="kk">Musepack аудиосы</comment>
+ <comment xml:lang="ja">Musepack オーディオ</comment>
+ <comment xml:lang="it">Audio Musepack</comment>
+ <comment xml:lang="is">Musepack hljóðskrá</comment>
+ <comment xml:lang="id">Audio Musepack</comment>
+ <comment xml:lang="ia">Audio Musepack</comment>
+ <comment xml:lang="hu">Musepack hang</comment>
+ <comment xml:lang="hr">Musepack zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Musepack</comment>
+ <comment xml:lang="gl">son de Musepack</comment>
+ <comment xml:lang="ga">fuaim Musepack</comment>
+ <comment xml:lang="fur">audio Musepack</comment>
+ <comment xml:lang="fr">audio Musepack</comment>
+ <comment xml:lang="fo">Musepack ljóður</comment>
+ <comment xml:lang="fi">Musepack-ääni</comment>
+ <comment xml:lang="eu">Musepack audioa</comment>
+ <comment xml:lang="es">sonido Musepack</comment>
+ <comment xml:lang="en_GB">Musepack audio</comment>
+ <comment xml:lang="el">Ήχος Musepack</comment>
+ <comment xml:lang="de">Musepack-Audio</comment>
+ <comment xml:lang="da">Musepack-lyd</comment>
+ <comment xml:lang="cs">zvuk Musepack</comment>
+ <comment xml:lang="ca">àudio de Musepack</comment>
+ <comment xml:lang="bg">Аудио — Musepack</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Musepack</comment>
+ <comment xml:lang="be">аўдыя Musepack</comment>
+ <comment xml:lang="ar">صوت Musepack</comment>
+ <comment xml:lang="af">Musepack-oudio</comment>
+ <magic>
+ <match type="string" value="MP+" offset="0"/>
+ <match type="string" value="MPCK" offset="0"/>
</magic>
<glob pattern="*.mpc"/>
<glob pattern="*.mpp"/>
@@ -24120,216 +26314,222 @@
</mime-type>
<mime-type type="audio/vnd.rn-realaudio">
<comment>RealAudio document</comment>
- <comment xml:lang="ar">مستند RealAudio</comment>
- <comment xml:lang="ast">Documentu RealAudio</comment>
- <comment xml:lang="be@latin">Dakument RealAudio</comment>
- <comment xml:lang="bg">Документ — RealAudio</comment>
- <comment xml:lang="ca">document RealAudio</comment>
- <comment xml:lang="cs">dokument RealAudio</comment>
- <comment xml:lang="da">RealAudio-dokument</comment>
- <comment xml:lang="de">RealAudio-Dokument</comment>
- <comment xml:lang="el">Έγγραφο RealAudio</comment>
- <comment xml:lang="en_GB">RealAudio document</comment>
- <comment xml:lang="eo">RealAudio-dokumento</comment>
- <comment xml:lang="es">documento RealAudio</comment>
- <comment xml:lang="eu">RealAudio dokumentua</comment>
- <comment xml:lang="fi">RealAudio-asiakirja</comment>
- <comment xml:lang="fo">RealAudio skjal</comment>
- <comment xml:lang="fr">document RealAudio</comment>
- <comment xml:lang="ga">cáipéis RealAudio</comment>
- <comment xml:lang="gl">documento Realson</comment>
- <comment xml:lang="he">מסמך של RealAudio</comment>
- <comment xml:lang="hr">RealAudio dokument</comment>
- <comment xml:lang="hu">RealAudio dokumentum</comment>
- <comment xml:lang="ia">Documento RealAudio</comment>
- <comment xml:lang="id">Dokumen RealAudio</comment>
- <comment xml:lang="it">Documento RealAudio</comment>
- <comment xml:lang="ja">RealAudio ドキュメント</comment>
- <comment xml:lang="kk">RealAudio құжаты</comment>
- <comment xml:lang="ko">RealAudio 문서</comment>
- <comment xml:lang="lt">RealAudio dokumentas</comment>
- <comment xml:lang="lv">RealAudio dokuments</comment>
- <comment xml:lang="nb">RealAudio-dokument</comment>
- <comment xml:lang="nl">RealAudio-document</comment>
- <comment xml:lang="nn">RealAudio-dokument</comment>
- <comment xml:lang="oc">document RealAudio</comment>
- <comment xml:lang="pl">Dokument RealAudio</comment>
- <comment xml:lang="pt">documento RealAudio</comment>
- <comment xml:lang="pt_BR">Documento RealAudio</comment>
- <comment xml:lang="ro">Document RealAudio</comment>
- <comment xml:lang="ru">Документ RealAudio</comment>
- <comment xml:lang="sk">Dokument RealAudio</comment>
- <comment xml:lang="sl">Dokument RealAudio</comment>
- <comment xml:lang="sq">Dokument RealAudio</comment>
- <comment xml:lang="sr">документ Рил Аудиа</comment>
- <comment xml:lang="sv">RealAudio-dokument</comment>
- <comment xml:lang="tr">RealAudio belgesi</comment>
- <comment xml:lang="uk">документ RealAudio</comment>
- <comment xml:lang="vi">Tài liệu âm thanh RealAudio</comment>
- <comment xml:lang="zh_CN">RealAudio 文档</comment>
<comment xml:lang="zh_TW">RealAudio 文件</comment>
+ <comment xml:lang="zh_CN">RealAudio 文档</comment>
+ <comment xml:lang="vi">Tài liệu âm thanh RealAudio</comment>
+ <comment xml:lang="uk">документ RealAudio</comment>
+ <comment xml:lang="tr">RealAudio belgesi</comment>
+ <comment xml:lang="sv">RealAudio-dokument</comment>
+ <comment xml:lang="sr">документ Рил Аудиа</comment>
+ <comment xml:lang="sq">dokument RealAudio</comment>
+ <comment xml:lang="sl">Dokument RealAudio</comment>
+ <comment xml:lang="si">රියල් ඕඩියෝ ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RealAudio</comment>
+ <comment xml:lang="ru">Документ RealAudio</comment>
+ <comment xml:lang="ro">Document RealAudio</comment>
+ <comment xml:lang="pt_BR">Documento RealAudio</comment>
+ <comment xml:lang="pt">documento RealAudio</comment>
+ <comment xml:lang="pl">Dokument RealAudio</comment>
+ <comment xml:lang="oc">document RealAudio</comment>
+ <comment xml:lang="nn">RealAudio-dokument</comment>
+ <comment xml:lang="nl">RealAudio-document</comment>
+ <comment xml:lang="nb">RealAudio-dokument</comment>
+ <comment xml:lang="lv">RealAudio dokuments</comment>
+ <comment xml:lang="lt">RealAudio dokumentas</comment>
+ <comment xml:lang="ko">RealAudio 문서</comment>
+ <comment xml:lang="kk">RealAudio құжаты</comment>
+ <comment xml:lang="ja">RealAudio ドキュメント</comment>
+ <comment xml:lang="it">Documento RealAudio</comment>
+ <comment xml:lang="is">RealAudio skjal</comment>
+ <comment xml:lang="id">Dokumen RealAudio</comment>
+ <comment xml:lang="ia">Documento RealAudio</comment>
+ <comment xml:lang="hu">RealAudio dokumentum</comment>
+ <comment xml:lang="hr">RealAudio dokument</comment>
+ <comment xml:lang="he">מסמך של RealAudio</comment>
+ <comment xml:lang="gl">documento Realson</comment>
+ <comment xml:lang="ga">cáipéis RealAudio</comment>
+ <comment xml:lang="fur">document RealAudio</comment>
+ <comment xml:lang="fr">document RealAudio</comment>
+ <comment xml:lang="fo">RealAudio skjal</comment>
+ <comment xml:lang="fi">RealAudio-asiakirja</comment>
+ <comment xml:lang="eu">RealAudio dokumentua</comment>
+ <comment xml:lang="es">documento RealAudio</comment>
+ <comment xml:lang="eo">RealAudio-dokumento</comment>
+ <comment xml:lang="en_GB">RealAudio document</comment>
+ <comment xml:lang="el">Έγγραφο RealAudio</comment>
+ <comment xml:lang="de">RealAudio-Dokument</comment>
+ <comment xml:lang="da">RealAudio-dokument</comment>
+ <comment xml:lang="cs">dokument RealAudio</comment>
+ <comment xml:lang="ca">document RealAudio</comment>
+ <comment xml:lang="bg">Документ — RealAudio</comment>
+ <comment xml:lang="be@latin">Dakument RealAudio</comment>
+ <comment xml:lang="be">дакумент RealAudio</comment>
+ <comment xml:lang="ast">Documentu RealAudio</comment>
+ <comment xml:lang="ar">مستند RealAudio</comment>
+ <comment xml:lang="af">RealAudio-dokument</comment>
<glob pattern="*.ra"/>
<glob pattern="*.rax"/>
<alias type="audio/x-pn-realaudio"/>
<alias type="audio/vnd.m-realaudio"/>
</mime-type>
<mime-type type="application/ram">
- <comment>RealMedia Metafile</comment>
- <comment xml:lang="ar">ملف تعريف RealMedia</comment>
- <comment xml:lang="be@latin">Metafajł RealMedia</comment>
- <comment xml:lang="bg">Метафайл — RealMedia</comment>
- <comment xml:lang="ca">metafitxer RealMedia</comment>
- <comment xml:lang="cs">RealMedia Metafile</comment>
- <comment xml:lang="da">RealMedia-metafil</comment>
- <comment xml:lang="de">RealMedia-Metadatei</comment>
- <comment xml:lang="el">Metafile RealMedia</comment>
- <comment xml:lang="en_GB">RealMedia Metafile</comment>
- <comment xml:lang="es">metaarchivo RealMedia</comment>
- <comment xml:lang="eu">RealMedia metafitxategia</comment>
- <comment xml:lang="fi">RealMedia-metatiedosto</comment>
- <comment xml:lang="fo">RealMedia metafíla</comment>
- <comment xml:lang="fr">métafichier RealMedia</comment>
- <comment xml:lang="ga">Meiteachomhad RealMedia</comment>
- <comment xml:lang="gl">Metaficheiro RealMedia</comment>
- <comment xml:lang="he">קובץ מטא של RealMedia</comment>
- <comment xml:lang="hr">RealMedia meta datoteka</comment>
- <comment xml:lang="hu">RealMedia metafájl</comment>
- <comment xml:lang="ia">Metafile RealMedia</comment>
- <comment xml:lang="id">RealMedia Metafile</comment>
- <comment xml:lang="it">Metafile RealMedia</comment>
- <comment xml:lang="ja">RealMedia メタファイル</comment>
- <comment xml:lang="kk">RealMedia метафайлы</comment>
- <comment xml:lang="ko">RealMedia 메타 파일</comment>
- <comment xml:lang="lt">RealMedia metafailas</comment>
- <comment xml:lang="lv">RealMedia metadatne</comment>
- <comment xml:lang="nb">RealMedia-metafil</comment>
- <comment xml:lang="nl">RealMedia-metabestand</comment>
- <comment xml:lang="nn">RealMedia-metafil</comment>
- <comment xml:lang="oc">metafichièr RealMedia</comment>
- <comment xml:lang="pl">Metaplik RealMedia</comment>
- <comment xml:lang="pt">metaficheiro RealMedia</comment>
- <comment xml:lang="pt_BR">Meta arquivo do RealMedia</comment>
- <comment xml:lang="ro">Metafișier RealMedia</comment>
- <comment xml:lang="ru">Мета-файл RealMedia</comment>
- <comment xml:lang="sk">RealMedia Metafile</comment>
- <comment xml:lang="sl">Metadatoteka RealMedia</comment>
- <comment xml:lang="sq">Metafile RealMedia</comment>
- <comment xml:lang="sr">метадатотека Рил Медија</comment>
- <comment xml:lang="sv">RealMedia-metafil</comment>
- <comment xml:lang="tr">RealMedia Meta Dosyası</comment>
- <comment xml:lang="uk">метафайл RealMedia</comment>
- <comment xml:lang="vi">Siêu tập tin RealMedia</comment>
- <comment xml:lang="zh_CN">RealMedia 元文件</comment>
- <comment xml:lang="zh_TW">RealMedia 中介檔</comment>
+ <comment>RealMedia playlist</comment>
+ <comment xml:lang="zh_TW">RealMedia 播放清單</comment>
+ <comment xml:lang="zh_CN">RealMedia 播放列表</comment>
+ <comment xml:lang="uk">список відтворення RealMedia</comment>
+ <comment xml:lang="tr">RealMedia çalma listesi</comment>
+ <comment xml:lang="sv">RealMedia-spellista</comment>
+ <comment xml:lang="sq">luajlistë RealMedia</comment>
+ <comment xml:lang="sl">Seznam predvajanja RealMedia</comment>
+ <comment xml:lang="si">RealMedia ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb RealMedia</comment>
+ <comment xml:lang="ru">Список воспроизведения RealMedia</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução do RealMedia</comment>
+ <comment xml:lang="pl">Lista odtwarzania RealMedia</comment>
+ <comment xml:lang="oc">lista de lectura RealMedia</comment>
+ <comment xml:lang="nl">RealMedia-afspeellijst</comment>
+ <comment xml:lang="lt">RealMedia grojaraštis</comment>
+ <comment xml:lang="ko">RealMedia 재생 목록</comment>
+ <comment xml:lang="kk">RealMedia ойнау тізімі</comment>
+ <comment xml:lang="ka">RealMedia დასაკრავი სია</comment>
+ <comment xml:lang="ja">RealMedia プレイリスト</comment>
+ <comment xml:lang="it">Playlist RealMedia</comment>
+ <comment xml:lang="is">RealMedia spilunarlisti</comment>
+ <comment xml:lang="id">Daftar putar RealMedia</comment>
+ <comment xml:lang="hu">RealMedia lejátszólista</comment>
+ <comment xml:lang="hr">RealMedia popis izvođenja</comment>
+ <comment xml:lang="he">רשימת השמעה של RealMedia</comment>
+ <comment xml:lang="gl">Lista de reprodución RealMedia</comment>
+ <comment xml:lang="fr">liste de lecture RealMedia</comment>
+ <comment xml:lang="fi">RealMedia-soittolista</comment>
+ <comment xml:lang="eu">RealMedia erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción de RealMedia</comment>
+ <comment xml:lang="en_GB">RealMedia playlist</comment>
+ <comment xml:lang="de">RealMedia-Wiedergabeliste</comment>
+ <comment xml:lang="da">RealMedia-afspilningsliste</comment>
+ <comment xml:lang="ca">llista de reproducció RealMedia</comment>
+ <comment xml:lang="bg">Списък за изпълнение — RealMedia</comment>
+ <comment xml:lang="be">плэй-ліст RealMedia</comment>
+ <comment xml:lang="ar">قائمة تشغيل RealMedia</comment>
<glob pattern="*.ram"/>
</mime-type>
<mime-type type="video/vnd.rn-realvideo">
<comment>RealVideo document</comment>
- <comment xml:lang="ar">مستند RealVideo</comment>
- <comment xml:lang="ast">Documentu RealVideo</comment>
- <comment xml:lang="be@latin">Dakument RealVideo</comment>
- <comment xml:lang="bg">Документ — RealVideo</comment>
- <comment xml:lang="ca">document RealVideo</comment>
- <comment xml:lang="cs">dokument RealVideo</comment>
- <comment xml:lang="da">RealAudio-dokument</comment>
- <comment xml:lang="de">RealVideo-Dokument</comment>
- <comment xml:lang="el">Έγγραφο RealVideo</comment>
- <comment xml:lang="en_GB">RealVideo document</comment>
- <comment xml:lang="eo">RealVideo-dokumento</comment>
- <comment xml:lang="es">documento RealVideo</comment>
- <comment xml:lang="eu">RealVideo dokumentua</comment>
- <comment xml:lang="fi">RealVideo-asiakirja</comment>
- <comment xml:lang="fo">RealVideo skjal</comment>
- <comment xml:lang="fr">document RealVideo</comment>
- <comment xml:lang="ga">cáipéis RealVideo</comment>
- <comment xml:lang="gl">documento RealVideo</comment>
- <comment xml:lang="he">מסמך של RealVideo</comment>
- <comment xml:lang="hr">RealVideo dokument</comment>
- <comment xml:lang="hu">RealVideo dokumentum</comment>
- <comment xml:lang="ia">Documento RealVideo</comment>
- <comment xml:lang="id">Dokumen RealVideo</comment>
- <comment xml:lang="it">Documento RealVideo</comment>
- <comment xml:lang="ja">RealVideo ドキュメント</comment>
- <comment xml:lang="kk">RealVideo құжаты</comment>
- <comment xml:lang="ko">RealVideo 문서</comment>
- <comment xml:lang="lt">RealVideo dokumentas</comment>
- <comment xml:lang="lv">RealVideo dokuments</comment>
- <comment xml:lang="nb">RealAudio-dokument</comment>
- <comment xml:lang="nl">RealVideo-document</comment>
- <comment xml:lang="nn">RealVideo-dokument</comment>
- <comment xml:lang="oc">document RealVideo</comment>
- <comment xml:lang="pl">Dokument RealVideo</comment>
- <comment xml:lang="pt">documento RealVideo</comment>
- <comment xml:lang="pt_BR">Documento RealVideo</comment>
- <comment xml:lang="ro">Document RealVideo</comment>
- <comment xml:lang="ru">Документ RealVideo</comment>
- <comment xml:lang="sk">Dokument RealVideo</comment>
- <comment xml:lang="sl">Video datoteka RealVideo</comment>
- <comment xml:lang="sq">Dokument RealVideo</comment>
- <comment xml:lang="sr">документ Рил Видеа</comment>
- <comment xml:lang="sv">RealVideo-dokument</comment>
- <comment xml:lang="tr">RealAudio belgesi</comment>
- <comment xml:lang="uk">документ RealVideo</comment>
- <comment xml:lang="vi">Tài liệu ảnh động RealVideo</comment>
- <comment xml:lang="zh_CN">RealAudio 文档</comment>
<comment xml:lang="zh_TW">RealVideo 文件</comment>
+ <comment xml:lang="zh_CN">RealAudio 文档</comment>
+ <comment xml:lang="vi">Tài liệu ảnh động RealVideo</comment>
+ <comment xml:lang="uk">документ RealVideo</comment>
+ <comment xml:lang="tr">RealVideo belgesi</comment>
+ <comment xml:lang="sv">RealVideo-dokument</comment>
+ <comment xml:lang="sr">документ Рил Видеа</comment>
+ <comment xml:lang="sq">dokument RealVideo</comment>
+ <comment xml:lang="sl">Video datoteka RealVideo</comment>
+ <comment xml:lang="si">RealVideo ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RealVideo</comment>
+ <comment xml:lang="ru">Документ RealVideo</comment>
+ <comment xml:lang="ro">Document RealVideo</comment>
+ <comment xml:lang="pt_BR">Documento RealVideo</comment>
+ <comment xml:lang="pt">documento RealVideo</comment>
+ <comment xml:lang="pl">Dokument RealVideo</comment>
+ <comment xml:lang="oc">document RealVideo</comment>
+ <comment xml:lang="nn">RealVideo-dokument</comment>
+ <comment xml:lang="nl">RealVideo-document</comment>
+ <comment xml:lang="nb">RealAudio-dokument</comment>
+ <comment xml:lang="lv">RealVideo dokuments</comment>
+ <comment xml:lang="lt">RealVideo dokumentas</comment>
+ <comment xml:lang="ko">RealVideo 문서</comment>
+ <comment xml:lang="kk">RealVideo құжаты</comment>
+ <comment xml:lang="ja">RealVideo ドキュメント</comment>
+ <comment xml:lang="it">Documento RealVideo</comment>
+ <comment xml:lang="is">RealVideo skjal</comment>
+ <comment xml:lang="id">Dokumen RealVideo</comment>
+ <comment xml:lang="ia">Documento RealVideo</comment>
+ <comment xml:lang="hu">RealVideo dokumentum</comment>
+ <comment xml:lang="hr">RealVideo dokument</comment>
+ <comment xml:lang="he">מסמך של RealVideo</comment>
+ <comment xml:lang="gl">documento RealVideo</comment>
+ <comment xml:lang="ga">cáipéis RealVideo</comment>
+ <comment xml:lang="fur">document RealVideo</comment>
+ <comment xml:lang="fr">document RealVideo</comment>
+ <comment xml:lang="fo">RealVideo skjal</comment>
+ <comment xml:lang="fi">RealVideo-asiakirja</comment>
+ <comment xml:lang="eu">RealVideo dokumentua</comment>
+ <comment xml:lang="es">documento RealVideo</comment>
+ <comment xml:lang="eo">RealVideo-dokumento</comment>
+ <comment xml:lang="en_GB">RealVideo document</comment>
+ <comment xml:lang="el">Έγγραφο RealVideo</comment>
+ <comment xml:lang="de">RealVideo-Dokument</comment>
+ <comment xml:lang="da">RealAudio-dokument</comment>
+ <comment xml:lang="cs">dokument RealVideo</comment>
+ <comment xml:lang="ca">document RealVideo</comment>
+ <comment xml:lang="bg">Документ — RealVideo</comment>
+ <comment xml:lang="be@latin">Dakument RealVideo</comment>
+ <comment xml:lang="be">дакумент RealVideo</comment>
+ <comment xml:lang="ast">Documentu RealVideo</comment>
+ <comment xml:lang="ar">مستند RealVideo</comment>
+ <comment xml:lang="af">RealVideo-dokument</comment>
<glob pattern="*.rv"/>
<glob pattern="*.rvx"/>
<alias type="video/x-real-video"/>
</mime-type>
<mime-type type="application/vnd.rn-realmedia">
<comment>RealMedia document</comment>
- <comment xml:lang="ar">مستند RealMedia</comment>
- <comment xml:lang="ast">Documentu RealMedia</comment>
- <comment xml:lang="be@latin">Dakument RealMedia</comment>
- <comment xml:lang="bg">Документ — RealMedia</comment>
- <comment xml:lang="ca">document RealMedia</comment>
- <comment xml:lang="cs">dokument RealMedia</comment>
- <comment xml:lang="da">RealMedia-dokument</comment>
- <comment xml:lang="de">RealMedia-Dokument</comment>
- <comment xml:lang="el">Έγγραφο RealMedia</comment>
- <comment xml:lang="en_GB">RealMedia document</comment>
- <comment xml:lang="eo">RealMedia-dokumento</comment>
- <comment xml:lang="es">documento RealMedia</comment>
- <comment xml:lang="eu">RealMedia dokumentua</comment>
- <comment xml:lang="fi">RealMedia-asiakirja</comment>
- <comment xml:lang="fo">RealMedia skjal</comment>
- <comment xml:lang="fr">document RealMedia</comment>
- <comment xml:lang="ga">cáipéis RealMedia</comment>
- <comment xml:lang="gl">documento RealMedia</comment>
- <comment xml:lang="he">מסמך של RealMedia</comment>
- <comment xml:lang="hr">RealMedia dokument</comment>
- <comment xml:lang="hu">RealMedia dokumentum</comment>
- <comment xml:lang="ia">Documento RealMedia</comment>
- <comment xml:lang="id">Dokumen RealMedia</comment>
- <comment xml:lang="it">Documento RealMedia</comment>
- <comment xml:lang="ja">RealMedia ドキュメント</comment>
- <comment xml:lang="kk">RealMedia құжаты</comment>
- <comment xml:lang="ko">RealMedia 문서</comment>
- <comment xml:lang="lt">RealMedia dokumentas</comment>
- <comment xml:lang="lv">RealMedia dokuments</comment>
- <comment xml:lang="nb">RealMedia-dokument</comment>
- <comment xml:lang="nl">RealMedia-document</comment>
- <comment xml:lang="nn">RealMedia-dokument</comment>
- <comment xml:lang="oc">document RealMedia</comment>
- <comment xml:lang="pl">Dokument RealMedia</comment>
- <comment xml:lang="pt">documento RealMedia</comment>
- <comment xml:lang="pt_BR">Documento RealMedia</comment>
- <comment xml:lang="ro">Document RealMedia</comment>
- <comment xml:lang="ru">Документ RealMedia</comment>
- <comment xml:lang="sk">Dokument RealMedia</comment>
- <comment xml:lang="sl">Dokument RealMedia</comment>
- <comment xml:lang="sq">Dokument RealMedia</comment>
- <comment xml:lang="sr">документ Рил Медија</comment>
- <comment xml:lang="sv">RealMedia-dokument</comment>
- <comment xml:lang="tr">RealMedia belgesi</comment>
- <comment xml:lang="uk">документ RealMedia</comment>
- <comment xml:lang="vi">Tài liệu RealMedia</comment>
- <comment xml:lang="zh_CN">RealMedia 文档</comment>
<comment xml:lang="zh_TW">RealMedia 文件</comment>
+ <comment xml:lang="zh_CN">RealMedia 文档</comment>
+ <comment xml:lang="vi">Tài liệu RealMedia</comment>
+ <comment xml:lang="uk">документ RealMedia</comment>
+ <comment xml:lang="tr">RealMedia belgesi</comment>
+ <comment xml:lang="sv">RealMedia-dokument</comment>
+ <comment xml:lang="sr">документ Рил Медија</comment>
+ <comment xml:lang="sq">dokument RealMedia</comment>
+ <comment xml:lang="sl">Dokument RealMedia</comment>
+ <comment xml:lang="si">රියල් මීඩියා ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RealMedia</comment>
+ <comment xml:lang="ru">Документ RealMedia</comment>
+ <comment xml:lang="ro">Document RealMedia</comment>
+ <comment xml:lang="pt_BR">Documento RealMedia</comment>
+ <comment xml:lang="pt">documento RealMedia</comment>
+ <comment xml:lang="pl">Dokument RealMedia</comment>
+ <comment xml:lang="oc">document RealMedia</comment>
+ <comment xml:lang="nn">RealMedia-dokument</comment>
+ <comment xml:lang="nl">RealMedia-document</comment>
+ <comment xml:lang="nb">RealMedia-dokument</comment>
+ <comment xml:lang="lv">RealMedia dokuments</comment>
+ <comment xml:lang="lt">RealMedia dokumentas</comment>
+ <comment xml:lang="ko">RealMedia 문서</comment>
+ <comment xml:lang="kk">RealMedia құжаты</comment>
+ <comment xml:lang="ja">RealMedia ドキュメント</comment>
+ <comment xml:lang="it">Documento RealMedia</comment>
+ <comment xml:lang="is">RealMedia skjal</comment>
+ <comment xml:lang="id">Dokumen RealMedia</comment>
+ <comment xml:lang="ia">Documento RealMedia</comment>
+ <comment xml:lang="hu">RealMedia dokumentum</comment>
+ <comment xml:lang="hr">RealMedia dokument</comment>
+ <comment xml:lang="he">מסמך של RealMedia</comment>
+ <comment xml:lang="gl">documento RealMedia</comment>
+ <comment xml:lang="ga">cáipéis RealMedia</comment>
+ <comment xml:lang="fur">document RealMedia</comment>
+ <comment xml:lang="fr">document RealMedia</comment>
+ <comment xml:lang="fo">RealMedia skjal</comment>
+ <comment xml:lang="fi">RealMedia-asiakirja</comment>
+ <comment xml:lang="eu">RealMedia dokumentua</comment>
+ <comment xml:lang="es">documento RealMedia</comment>
+ <comment xml:lang="eo">RealMedia-dokumento</comment>
+ <comment xml:lang="en_GB">RealMedia document</comment>
+ <comment xml:lang="el">Έγγραφο RealMedia</comment>
+ <comment xml:lang="de">RealMedia-Dokument</comment>
+ <comment xml:lang="da">RealMedia-dokument</comment>
+ <comment xml:lang="cs">dokument RealMedia</comment>
+ <comment xml:lang="ca">document RealMedia</comment>
+ <comment xml:lang="bg">Документ — RealMedia</comment>
+ <comment xml:lang="be@latin">Dakument RealMedia</comment>
+ <comment xml:lang="be">дакумент RealMedia</comment>
+ <comment xml:lang="ast">Documentu RealMedia</comment>
+ <comment xml:lang="ar">مستند RealMedia</comment>
+ <comment xml:lang="af">RealMedia-dokument</comment>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
- <match value=".RMF" type="string" offset="0"/>
+ <magic>
+ <match type="string" value=".RMF" offset="0"/>
</magic>
<glob pattern="*.rm"/>
<glob pattern="*.rmj"/>
@@ -24341,717 +26541,742 @@
</mime-type>
<mime-type type="image/vnd.rn-realpix">
<comment>RealPix document</comment>
- <comment xml:lang="ar">مستند RealPix</comment>
- <comment xml:lang="ast">Documentu RealPix</comment>
- <comment xml:lang="be@latin">Dakument RealPix</comment>
- <comment xml:lang="bg">Документ — RealPix</comment>
- <comment xml:lang="ca">document RealPix</comment>
- <comment xml:lang="cs">dokument RealPix</comment>
- <comment xml:lang="da">RealPix-dokument</comment>
- <comment xml:lang="de">RealPix-Dokument</comment>
- <comment xml:lang="el">Έγγραφο RealPix</comment>
- <comment xml:lang="en_GB">RealPix document</comment>
- <comment xml:lang="eo">RealPix-dokumento</comment>
- <comment xml:lang="es">documento RealPix</comment>
- <comment xml:lang="eu">RealPix dokumentua</comment>
- <comment xml:lang="fi">RealPix-asiakirja</comment>
- <comment xml:lang="fo">RealPix skjal</comment>
- <comment xml:lang="fr">document RealPix</comment>
- <comment xml:lang="ga">cáipéis RealPix</comment>
- <comment xml:lang="gl">documento RealPix</comment>
- <comment xml:lang="he">מסמך של RealPix</comment>
- <comment xml:lang="hr">RealPix dokument</comment>
- <comment xml:lang="hu">RealPix dokumentum</comment>
- <comment xml:lang="ia">Documento RealPix</comment>
- <comment xml:lang="id">Dokumen RealPix</comment>
- <comment xml:lang="it">Documento RealPix</comment>
- <comment xml:lang="ja">RealPix ドキュメント</comment>
- <comment xml:lang="kk">RealPix құжаты</comment>
- <comment xml:lang="ko">RealPix 문서</comment>
- <comment xml:lang="lt">RealPix dokumentas</comment>
- <comment xml:lang="lv">RealPix dokuments</comment>
- <comment xml:lang="nb">RealPix-dokument</comment>
- <comment xml:lang="nl">RealPix-document</comment>
- <comment xml:lang="nn">RealPix-dokument</comment>
- <comment xml:lang="oc">document RealPix</comment>
- <comment xml:lang="pl">Dokument RealPix</comment>
- <comment xml:lang="pt">documento RealPix</comment>
- <comment xml:lang="pt_BR">Documento RealPix</comment>
- <comment xml:lang="ro">Document RealPix</comment>
- <comment xml:lang="ru">Документ RealPix</comment>
- <comment xml:lang="sk">Dokument RealPix</comment>
- <comment xml:lang="sl">Dokument RealPix</comment>
- <comment xml:lang="sq">Dokument RealPix</comment>
- <comment xml:lang="sr">документ Рил Пикса</comment>
- <comment xml:lang="sv">RealPix-dokument</comment>
- <comment xml:lang="tr">RealPix belgesi</comment>
- <comment xml:lang="uk">документ RealPix</comment>
- <comment xml:lang="vi">Tài liệu ảnh RealPix</comment>
- <comment xml:lang="zh_CN">RealPix 文档</comment>
<comment xml:lang="zh_TW">RealPix 文件</comment>
+ <comment xml:lang="zh_CN">RealPix 文档</comment>
+ <comment xml:lang="vi">Tài liệu ảnh RealPix</comment>
+ <comment xml:lang="uk">документ RealPix</comment>
+ <comment xml:lang="tr">RealPix belgesi</comment>
+ <comment xml:lang="sv">RealPix-dokument</comment>
+ <comment xml:lang="sr">документ Рил Пикса</comment>
+ <comment xml:lang="sq">dokument RealPix</comment>
+ <comment xml:lang="sl">Dokument RealPix</comment>
+ <comment xml:lang="si">RealPix ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RealPix</comment>
+ <comment xml:lang="ru">Документ RealPix</comment>
+ <comment xml:lang="ro">Document RealPix</comment>
+ <comment xml:lang="pt_BR">Documento RealPix</comment>
+ <comment xml:lang="pt">documento RealPix</comment>
+ <comment xml:lang="pl">Dokument RealPix</comment>
+ <comment xml:lang="oc">document RealPix</comment>
+ <comment xml:lang="nn">RealPix-dokument</comment>
+ <comment xml:lang="nl">RealPix-document</comment>
+ <comment xml:lang="nb">RealPix-dokument</comment>
+ <comment xml:lang="lv">RealPix dokuments</comment>
+ <comment xml:lang="lt">RealPix dokumentas</comment>
+ <comment xml:lang="ko">RealPix 문서</comment>
+ <comment xml:lang="kk">RealPix құжаты</comment>
+ <comment xml:lang="ja">RealPix ドキュメント</comment>
+ <comment xml:lang="it">Documento RealPix</comment>
+ <comment xml:lang="is">RealPix skjal</comment>
+ <comment xml:lang="id">Dokumen RealPix</comment>
+ <comment xml:lang="ia">Documento RealPix</comment>
+ <comment xml:lang="hu">RealPix dokumentum</comment>
+ <comment xml:lang="hr">RealPix dokument</comment>
+ <comment xml:lang="he">מסמך של RealPix</comment>
+ <comment xml:lang="gl">documento RealPix</comment>
+ <comment xml:lang="ga">cáipéis RealPix</comment>
+ <comment xml:lang="fur">document RealPix</comment>
+ <comment xml:lang="fr">document RealPix</comment>
+ <comment xml:lang="fo">RealPix skjal</comment>
+ <comment xml:lang="fi">RealPix-asiakirja</comment>
+ <comment xml:lang="eu">RealPix dokumentua</comment>
+ <comment xml:lang="es">documento RealPix</comment>
+ <comment xml:lang="eo">RealPix-dokumento</comment>
+ <comment xml:lang="en_GB">RealPix document</comment>
+ <comment xml:lang="el">Έγγραφο RealPix</comment>
+ <comment xml:lang="de">RealPix-Dokument</comment>
+ <comment xml:lang="da">RealPix-dokument</comment>
+ <comment xml:lang="cs">dokument RealPix</comment>
+ <comment xml:lang="ca">document RealPix</comment>
+ <comment xml:lang="bg">Документ — RealPix</comment>
+ <comment xml:lang="be@latin">Dakument RealPix</comment>
+ <comment xml:lang="be">дакумент RealPix</comment>
+ <comment xml:lang="ast">Documentu RealPix</comment>
+ <comment xml:lang="ar">مستند RealPix</comment>
+ <comment xml:lang="af">RealPix-dokument</comment>
<glob pattern="*.rp"/>
</mime-type>
<mime-type type="text/vnd.rn-realtext">
<comment>RealText document</comment>
- <comment xml:lang="ar">مستند RealText</comment>
- <comment xml:lang="ast">Documentu RealText</comment>
- <comment xml:lang="be@latin">Dakument RealText</comment>
- <comment xml:lang="bg">Документ — RealText</comment>
- <comment xml:lang="ca">document RealText</comment>
- <comment xml:lang="cs">dokument RealText</comment>
- <comment xml:lang="da">RealText-dokument</comment>
- <comment xml:lang="de">RealText-Dokument</comment>
- <comment xml:lang="el">Έγγραφο RealText</comment>
- <comment xml:lang="en_GB">RealText document</comment>
- <comment xml:lang="eo">RealText-dokumento</comment>
- <comment xml:lang="es">documento RealText</comment>
- <comment xml:lang="eu">RealText dokumentua</comment>
- <comment xml:lang="fi">RealText-asiakirja</comment>
- <comment xml:lang="fo">RealText skjal</comment>
- <comment xml:lang="fr">document RealText</comment>
- <comment xml:lang="ga">cáipéis RealText</comment>
- <comment xml:lang="gl">documento RealText</comment>
- <comment xml:lang="he">מסמך של RealText</comment>
- <comment xml:lang="hr">RealText dokument</comment>
- <comment xml:lang="hu">RealText dokumentum</comment>
- <comment xml:lang="ia">Documento RealText</comment>
- <comment xml:lang="id">Dokumen RealText</comment>
- <comment xml:lang="it">Documento RealText</comment>
- <comment xml:lang="ja">RealText ドキュメント</comment>
- <comment xml:lang="kk">RealText құжаты</comment>
- <comment xml:lang="ko">RealText 문서</comment>
- <comment xml:lang="lt">RealText dokumentas</comment>
- <comment xml:lang="lv">RealText dokuments</comment>
- <comment xml:lang="nb">RealText-dokument</comment>
- <comment xml:lang="nl">RealText-document</comment>
- <comment xml:lang="nn">RealText-dokument</comment>
- <comment xml:lang="oc">document RealText</comment>
- <comment xml:lang="pl">Dokument RealText</comment>
- <comment xml:lang="pt">documento RealText</comment>
- <comment xml:lang="pt_BR">Documento RealText</comment>
- <comment xml:lang="ro">Document RealText</comment>
- <comment xml:lang="ru">Документ RealText</comment>
- <comment xml:lang="sk">Dokument RealText</comment>
- <comment xml:lang="sl">Dokument RealText</comment>
- <comment xml:lang="sq">Dokument RealText</comment>
- <comment xml:lang="sr">документ Рил Текста</comment>
- <comment xml:lang="sv">RealText-dokument</comment>
- <comment xml:lang="tr">RealText belgesi</comment>
- <comment xml:lang="uk">документ RealText</comment>
- <comment xml:lang="vi">Tài liệu văn bản RealText</comment>
- <comment xml:lang="zh_CN">RealText 文档</comment>
<comment xml:lang="zh_TW">RealText 文件</comment>
+ <comment xml:lang="zh_CN">RealText 文档</comment>
+ <comment xml:lang="vi">Tài liệu văn bản RealText</comment>
+ <comment xml:lang="uk">документ RealText</comment>
+ <comment xml:lang="tr">RealText belgesi</comment>
+ <comment xml:lang="sv">RealText-dokument</comment>
+ <comment xml:lang="sr">документ Рил Текста</comment>
+ <comment xml:lang="sq">dokument RealText</comment>
+ <comment xml:lang="sl">Dokument RealText</comment>
+ <comment xml:lang="si">RealText ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument RealText</comment>
+ <comment xml:lang="ru">Документ RealText</comment>
+ <comment xml:lang="ro">Document RealText</comment>
+ <comment xml:lang="pt_BR">Documento RealText</comment>
+ <comment xml:lang="pt">documento RealText</comment>
+ <comment xml:lang="pl">Dokument RealText</comment>
+ <comment xml:lang="oc">document RealText</comment>
+ <comment xml:lang="nn">RealText-dokument</comment>
+ <comment xml:lang="nl">RealText-document</comment>
+ <comment xml:lang="nb">RealText-dokument</comment>
+ <comment xml:lang="lv">RealText dokuments</comment>
+ <comment xml:lang="lt">RealText dokumentas</comment>
+ <comment xml:lang="ko">RealText 문서</comment>
+ <comment xml:lang="kk">RealText құжаты</comment>
+ <comment xml:lang="ja">RealText ドキュメント</comment>
+ <comment xml:lang="it">Documento RealText</comment>
+ <comment xml:lang="is">RealText skjal</comment>
+ <comment xml:lang="id">Dokumen RealText</comment>
+ <comment xml:lang="ia">Documento RealText</comment>
+ <comment xml:lang="hu">RealText dokumentum</comment>
+ <comment xml:lang="hr">RealText dokument</comment>
+ <comment xml:lang="he">מסמך של RealText</comment>
+ <comment xml:lang="gl">documento RealText</comment>
+ <comment xml:lang="ga">cáipéis RealText</comment>
+ <comment xml:lang="fur">document RealText</comment>
+ <comment xml:lang="fr">document RealText</comment>
+ <comment xml:lang="fo">RealText skjal</comment>
+ <comment xml:lang="fi">RealText-asiakirja</comment>
+ <comment xml:lang="eu">RealText dokumentua</comment>
+ <comment xml:lang="es">documento RealText</comment>
+ <comment xml:lang="eo">RealText-dokumento</comment>
+ <comment xml:lang="en_GB">RealText document</comment>
+ <comment xml:lang="el">Έγγραφο RealText</comment>
+ <comment xml:lang="de">RealText-Dokument</comment>
+ <comment xml:lang="da">RealText-dokument</comment>
+ <comment xml:lang="cs">dokument RealText</comment>
+ <comment xml:lang="ca">document RealText</comment>
+ <comment xml:lang="bg">Документ — RealText</comment>
+ <comment xml:lang="be@latin">Dakument RealText</comment>
+ <comment xml:lang="be">дакумент RealText</comment>
+ <comment xml:lang="ast">Documentu RealText</comment>
+ <comment xml:lang="ar">مستند RealText</comment>
+ <comment xml:lang="af">RealText-dokument</comment>
+ <sub-class-of type="text/plain"/>
<glob pattern="*.rt"/>
</mime-type>
<mime-type type="audio/x-riff">
<comment>RIFF audio</comment>
- <comment xml:lang="ar">RIFF سمعي</comment>
- <comment xml:lang="az">RIFF audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo RIFF</comment>
- <comment xml:lang="bg">Аудио — RIFF</comment>
- <comment xml:lang="ca">àudio RIFF</comment>
- <comment xml:lang="cs">zvuk RIFF</comment>
- <comment xml:lang="cy">Sain RIFF</comment>
- <comment xml:lang="da">RIFF-lyd</comment>
- <comment xml:lang="de">RIFF-Audio</comment>
- <comment xml:lang="el">Ήχος RIFF</comment>
- <comment xml:lang="en_GB">RIFF audio</comment>
- <comment xml:lang="eo">RIFF-sondosiero</comment>
- <comment xml:lang="es">sonido RIFF</comment>
- <comment xml:lang="eu">RIFF audioa</comment>
- <comment xml:lang="fi">RIFF-ääni</comment>
- <comment xml:lang="fo">RIFF ljóð</comment>
- <comment xml:lang="fr">audio RIFF</comment>
- <comment xml:lang="ga">fuaim RIFF</comment>
- <comment xml:lang="gl">son RIFF</comment>
- <comment xml:lang="he">שמע RIFF</comment>
- <comment xml:lang="hr">RIFF zvučni zapis</comment>
- <comment xml:lang="hu">RIFF-kép</comment>
- <comment xml:lang="ia">Audio RIFF</comment>
- <comment xml:lang="id">Audio RIFF</comment>
- <comment xml:lang="it">Audio RIFF</comment>
- <comment xml:lang="ja">RIFF オーディオ</comment>
- <comment xml:lang="kk">RIFF аудиосы</comment>
- <comment xml:lang="ko">RIFF 오디오</comment>
- <comment xml:lang="lt">RIFF garso įrašas</comment>
- <comment xml:lang="lv">RIFF audio</comment>
- <comment xml:lang="ms">Audio RIFF</comment>
- <comment xml:lang="nb">RIFF-lyd</comment>
- <comment xml:lang="nl">RIFF-audio</comment>
- <comment xml:lang="nn">RIFF-lyd</comment>
- <comment xml:lang="oc">àudio RIFF</comment>
- <comment xml:lang="pl">Plik dźwiękowy RIFF</comment>
- <comment xml:lang="pt">áudio RIFF</comment>
- <comment xml:lang="pt_BR">Áudio RIFF</comment>
- <comment xml:lang="ro">Audio RIFF</comment>
- <comment xml:lang="ru">Аудио RIFF</comment>
- <comment xml:lang="sk">Zvuk RIFF</comment>
- <comment xml:lang="sl">Zvočna datoteka RIFF</comment>
- <comment xml:lang="sq">Audio RIFF</comment>
- <comment xml:lang="sr">РИФФ звук</comment>
- <comment xml:lang="sv">RIFF-ljud</comment>
- <comment xml:lang="tr">RIFF sesi</comment>
- <comment xml:lang="uk">звук RIFF</comment>
- <comment xml:lang="vi">Âm thanh RIFF</comment>
- <comment xml:lang="zh_CN">RIFF 音频</comment>
<comment xml:lang="zh_TW">RIFF 音訊</comment>
+ <comment xml:lang="zh_CN">RIFF 音频</comment>
+ <comment xml:lang="vi">Âm thanh RIFF</comment>
+ <comment xml:lang="uk">звук RIFF</comment>
+ <comment xml:lang="tr">RIFF sesi</comment>
+ <comment xml:lang="sv">RIFF-ljud</comment>
+ <comment xml:lang="sr">РИФФ звук</comment>
+ <comment xml:lang="sq">audio RIFF</comment>
+ <comment xml:lang="sl">Zvočna datoteka RIFF</comment>
+ <comment xml:lang="si">RIFF ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk RIFF</comment>
+ <comment xml:lang="ru">Аудио RIFF</comment>
+ <comment xml:lang="ro">Audio RIFF</comment>
+ <comment xml:lang="pt_BR">Áudio RIFF</comment>
+ <comment xml:lang="pt">áudio RIFF</comment>
+ <comment xml:lang="pl">Plik dźwiękowy RIFF</comment>
+ <comment xml:lang="oc">àudio RIFF</comment>
+ <comment xml:lang="nn">RIFF-lyd</comment>
+ <comment xml:lang="nl">RIFF-audio</comment>
+ <comment xml:lang="nb">RIFF-lyd</comment>
+ <comment xml:lang="ms">Audio RIFF</comment>
+ <comment xml:lang="lv">RIFF audio</comment>
+ <comment xml:lang="lt">RIFF garso įrašas</comment>
+ <comment xml:lang="ko">RIFF 오디오</comment>
+ <comment xml:lang="kk">RIFF аудиосы</comment>
+ <comment xml:lang="ja">RIFF オーディオ</comment>
+ <comment xml:lang="it">Audio RIFF</comment>
+ <comment xml:lang="is">RIFF hljóðskrá</comment>
+ <comment xml:lang="id">Audio RIFF</comment>
+ <comment xml:lang="ia">Audio RIFF</comment>
+ <comment xml:lang="hu">RIFF-kép</comment>
+ <comment xml:lang="hr">RIFF zvučni zapis</comment>
+ <comment xml:lang="he">שמע RIFF</comment>
+ <comment xml:lang="gl">son RIFF</comment>
+ <comment xml:lang="ga">fuaim RIFF</comment>
+ <comment xml:lang="fur">audio RIFF</comment>
+ <comment xml:lang="fr">audio RIFF</comment>
+ <comment xml:lang="fo">RIFF ljóð</comment>
+ <comment xml:lang="fi">RIFF-ääni</comment>
+ <comment xml:lang="eu">RIFF audioa</comment>
+ <comment xml:lang="es">sonido RIFF</comment>
+ <comment xml:lang="eo">RIFF-sondosiero</comment>
+ <comment xml:lang="en_GB">RIFF audio</comment>
+ <comment xml:lang="el">Ήχος RIFF</comment>
+ <comment xml:lang="de">RIFF-Audio</comment>
+ <comment xml:lang="da">RIFF-lyd</comment>
+ <comment xml:lang="cy">Sain RIFF</comment>
+ <comment xml:lang="cs">zvuk RIFF</comment>
+ <comment xml:lang="ca">àudio RIFF</comment>
+ <comment xml:lang="bg">Аудио — RIFF</comment>
+ <comment xml:lang="be@latin">Aŭdyjo RIFF</comment>
+ <comment xml:lang="be">аўдыя RIFF</comment>
+ <comment xml:lang="az">RIFF audio faylı</comment>
+ <comment xml:lang="ar">صوت RIFF</comment>
+ <comment xml:lang="af">RIFF-oudio</comment>
</mime-type>
<mime-type type="application/x-riff">
<comment>RIFF container</comment>
- <comment xml:lang="ca">contenidor RIFF</comment>
- <comment xml:lang="cs">kontejner RIFF</comment>
- <comment xml:lang="da">RIFF-container</comment>
- <comment xml:lang="de">RIFF-Container</comment>
- <comment xml:lang="el">Περιέκτης RIFF</comment>
- <comment xml:lang="en_GB">RIFF container</comment>
- <comment xml:lang="es">contenedor RIFF</comment>
- <comment xml:lang="eu">RIFF edukitzailea</comment>
- <comment xml:lang="fr">conteneur RIFF</comment>
- <comment xml:lang="ga">coimeádán RIFF</comment>
- <comment xml:lang="gl">Contenedor RIFF</comment>
- <comment xml:lang="he">מכולת RIFF</comment>
- <comment xml:lang="hr">RIFF spremnik</comment>
- <comment xml:lang="hu">RIFF konténer</comment>
- <comment xml:lang="ia">Receptaculo RIFF</comment>
- <comment xml:lang="id">Wadah RIFF</comment>
- <comment xml:lang="it">Container RIFF</comment>
- <comment xml:lang="kk">RIFF контейнері</comment>
- <comment xml:lang="ko">RIFF 컨테이너</comment>
- <comment xml:lang="oc">contenidor RIFF</comment>
- <comment xml:lang="pl">Kontener RIFF</comment>
- <comment xml:lang="pt">contentor RIFF</comment>
- <comment xml:lang="pt_BR">Contêiner RIFF</comment>
- <comment xml:lang="ru">Контейнер RIFF</comment>
- <comment xml:lang="sk">Kontajner RIFF</comment>
- <comment xml:lang="sl">Vsebnik RIFF</comment>
- <comment xml:lang="sr">РИФФ садржалац</comment>
- <comment xml:lang="sv">RIFF-behållare</comment>
- <comment xml:lang="tr">RIFF deposu</comment>
- <comment xml:lang="uk">контейнер RIFF</comment>
- <comment xml:lang="zh_CN">RIFF 容器</comment>
<comment xml:lang="zh_TW">RIFF 容器</comment>
-
+ <comment xml:lang="zh_CN">RIFF 容器</comment>
+ <comment xml:lang="uk">контейнер RIFF</comment>
+ <comment xml:lang="tr">RIFF deposu</comment>
+ <comment xml:lang="sv">RIFF-behållare</comment>
+ <comment xml:lang="sr">РИФФ садржалац</comment>
+ <comment xml:lang="sq">kontejner RIFF</comment>
+ <comment xml:lang="sl">Vsebnik RIFF</comment>
+ <comment xml:lang="si">RIFF කන්ටේනරය</comment>
+ <comment xml:lang="sk">Kontajner RIFF</comment>
+ <comment xml:lang="ru">Контейнер RIFF</comment>
+ <comment xml:lang="pt_BR">Contêiner RIFF</comment>
+ <comment xml:lang="pt">contentor RIFF</comment>
+ <comment xml:lang="pl">Kontener RIFF</comment>
+ <comment xml:lang="oc">contenidor RIFF</comment>
+ <comment xml:lang="nl">RIFF-container</comment>
+ <comment xml:lang="lt">RIFF konteineris</comment>
+ <comment xml:lang="ko">RIFF 컨테이너</comment>
+ <comment xml:lang="kk">RIFF контейнері</comment>
+ <comment xml:lang="ja">RIFF コンテナ</comment>
+ <comment xml:lang="it">Container RIFF</comment>
+ <comment xml:lang="is">RIFF gagnagámur</comment>
+ <comment xml:lang="id">Wadah RIFF</comment>
+ <comment xml:lang="ia">Receptaculo RIFF</comment>
+ <comment xml:lang="hu">RIFF konténer</comment>
+ <comment xml:lang="hr">RIFF spremnik</comment>
+ <comment xml:lang="he">מכולת RIFF</comment>
+ <comment xml:lang="gl">Contenedor RIFF</comment>
+ <comment xml:lang="ga">coimeádán RIFF</comment>
+ <comment xml:lang="fur">contignidôr RIFF</comment>
+ <comment xml:lang="fr">conteneur RIFF</comment>
+ <comment xml:lang="fi">RIFF-kontti</comment>
+ <comment xml:lang="eu">RIFF edukitzailea</comment>
+ <comment xml:lang="es">contenedor RIFF</comment>
+ <comment xml:lang="en_GB">RIFF container</comment>
+ <comment xml:lang="el">Περιέκτης RIFF</comment>
+ <comment xml:lang="de">RIFF-Container</comment>
+ <comment xml:lang="da">RIFF-container</comment>
+ <comment xml:lang="cs">kontejner RIFF</comment>
+ <comment xml:lang="ca">contenidor RIFF</comment>
+ <comment xml:lang="bg">Контейнер — RIFF</comment>
+ <comment xml:lang="be">кантэйнер RIFF</comment>
+ <comment xml:lang="ar">حاوية RIFF</comment>
+ <comment xml:lang="af">RIFF-houer</comment>
+ <!-- need to be lower prio than avi -->
<magic priority="45">
- <match value="RIFF" type="string" offset="0"/>
+ <match type="string" value="RIFF" offset="0"/>
</magic>
</mime-type>
<mime-type type="audio/x-s3m">
<comment>Scream Tracker 3 audio</comment>
- <comment xml:lang="ar">Scream Tracker 3 سمعي</comment>
- <comment xml:lang="az">Scream Tracker 3 audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo Scream Tracker 3</comment>
- <comment xml:lang="bg">Аудио — Scream Tracker 3</comment>
- <comment xml:lang="ca">àudio de Scream Tracker 3</comment>
- <comment xml:lang="cs">skladba Scream Tracker 3</comment>
- <comment xml:lang="cy">Sain Scream Tracker 3</comment>
- <comment xml:lang="da">Scream Tracker 3-lyd</comment>
- <comment xml:lang="de">Scream-Tracker-3-Audio</comment>
- <comment xml:lang="el">Ήχος Scream Tracker 3</comment>
- <comment xml:lang="en_GB">Scream Tracker 3 audio</comment>
- <comment xml:lang="eo">Sondosiero de Scream Tracker 3</comment>
- <comment xml:lang="es">sonido Scream Tracker 3</comment>
- <comment xml:lang="eu">Scream Tracker 3 audioa</comment>
- <comment xml:lang="fi">Scream Tracker 3 -ääni</comment>
- <comment xml:lang="fo">Scream Tracker 3 ljóður</comment>
- <comment xml:lang="fr">audio Scream Tracker 3</comment>
- <comment xml:lang="ga">fuaim Scream Tracker 3</comment>
- <comment xml:lang="gl">son Scream Tracker 3</comment>
- <comment xml:lang="he">שמע של Scream Tracker 3</comment>
- <comment xml:lang="hr">Scream Tracker 3 zvučni zapis</comment>
- <comment xml:lang="hu">Scream Tracker 3 hang</comment>
- <comment xml:lang="ia">Audio Scream Tracker 3</comment>
- <comment xml:lang="id">Audio Scream Tracker 3</comment>
- <comment xml:lang="it">Audio Scream Tracker 3</comment>
- <comment xml:lang="ja">Scream Tracker 3 オーディオ</comment>
- <comment xml:lang="kk">Scream Tracker 3 аудиосы</comment>
- <comment xml:lang="ko">Scream Tracker 3 오디오</comment>
- <comment xml:lang="lt">Scream Tracker 3 garso įrašas</comment>
- <comment xml:lang="lv">Scream Tracker 3 audio</comment>
- <comment xml:lang="ms">Audio Scream Tracker 3</comment>
- <comment xml:lang="nb">Scream Tracker 3-lyd</comment>
- <comment xml:lang="nl">Scream Tracker 3-audio</comment>
- <comment xml:lang="nn">Sream Tracker 3 lyd</comment>
- <comment xml:lang="oc">àudio Scream Tracker 3</comment>
- <comment xml:lang="pl">Plik dźwiękowy Scream Tracker 3</comment>
- <comment xml:lang="pt">áudio Scream Tracker 3</comment>
- <comment xml:lang="pt_BR">Áudio Scream Tracker 3</comment>
- <comment xml:lang="ro">Audio Scream Tracker 3</comment>
- <comment xml:lang="ru">Аудио Scream Tracker 3</comment>
- <comment xml:lang="sk">Skladba Scream Tracker 3</comment>
- <comment xml:lang="sl">Zvočna datoteka Scream Tracker 3</comment>
- <comment xml:lang="sq">Audio Scream Tracker 3</comment>
- <comment xml:lang="sr">звук Скрим Тракера 3</comment>
- <comment xml:lang="sv">Scream Tracker 3-ljud</comment>
- <comment xml:lang="tr">Scream Tracker 3 sesi</comment>
- <comment xml:lang="uk">звук Scream Tracker 3</comment>
- <comment xml:lang="vi">Âm thanh Scream Tracker 3</comment>
- <comment xml:lang="zh_CN">Scheme Tracker 3 音频</comment>
<comment xml:lang="zh_TW">Scream Tracker 3 音訊</comment>
- <magic priority="50">
+ <comment xml:lang="zh_CN">Scheme Tracker 3 音频</comment>
+ <comment xml:lang="vi">Âm thanh Scream Tracker 3</comment>
+ <comment xml:lang="uk">звук Scream Tracker 3</comment>
+ <comment xml:lang="tr">Scream Tracker 3 sesi</comment>
+ <comment xml:lang="sv">Scream Tracker 3-ljud</comment>
+ <comment xml:lang="sr">звук Скрим Тракера 3</comment>
+ <comment xml:lang="sq">audio Scream Tracker 3</comment>
+ <comment xml:lang="sl">Zvočna datoteka Scream Tracker 3</comment>
+ <comment xml:lang="si">Scream Tracker 3 ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Skladba Scream Tracker 3</comment>
+ <comment xml:lang="ru">Аудио Scream Tracker 3</comment>
+ <comment xml:lang="ro">Audio Scream Tracker 3</comment>
+ <comment xml:lang="pt_BR">Áudio Scream Tracker 3</comment>
+ <comment xml:lang="pt">áudio Scream Tracker 3</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Scream Tracker 3</comment>
+ <comment xml:lang="oc">àudio Scream Tracker 3</comment>
+ <comment xml:lang="nn">Sream Tracker 3 lyd</comment>
+ <comment xml:lang="nl">Scream Tracker 3-audio</comment>
+ <comment xml:lang="nb">Scream Tracker 3-lyd</comment>
+ <comment xml:lang="ms">Audio Scream Tracker 3</comment>
+ <comment xml:lang="lv">Scream Tracker 3 audio</comment>
+ <comment xml:lang="lt">Scream Tracker 3 garso įrašas</comment>
+ <comment xml:lang="ko">Scream Tracker 3 오디오</comment>
+ <comment xml:lang="kk">Scream Tracker 3 аудиосы</comment>
+ <comment xml:lang="ja">Scream Tracker 3 オーディオ</comment>
+ <comment xml:lang="it">Audio Scream Tracker 3</comment>
+ <comment xml:lang="is">Scream Tracker 3 hljóðskrá</comment>
+ <comment xml:lang="id">Audio Scream Tracker 3</comment>
+ <comment xml:lang="ia">Audio Scream Tracker 3</comment>
+ <comment xml:lang="hu">Scream Tracker 3 hang</comment>
+ <comment xml:lang="hr">Scream Tracker 3 zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Scream Tracker 3</comment>
+ <comment xml:lang="gl">son Scream Tracker 3</comment>
+ <comment xml:lang="ga">fuaim Scream Tracker 3</comment>
+ <comment xml:lang="fur">audio Scream Tracker 3</comment>
+ <comment xml:lang="fr">audio Scream Tracker 3</comment>
+ <comment xml:lang="fo">Scream Tracker 3 ljóður</comment>
+ <comment xml:lang="fi">Scream Tracker 3 -ääni</comment>
+ <comment xml:lang="eu">Scream Tracker 3 audioa</comment>
+ <comment xml:lang="es">sonido Scream Tracker 3</comment>
+ <comment xml:lang="eo">Sondosiero de Scream Tracker 3</comment>
+ <comment xml:lang="en_GB">Scream Tracker 3 audio</comment>
+ <comment xml:lang="el">Ήχος Scream Tracker 3</comment>
+ <comment xml:lang="de">Scream-Tracker-3-Audio</comment>
+ <comment xml:lang="da">Scream Tracker 3-lyd</comment>
+ <comment xml:lang="cy">Sain Scream Tracker 3</comment>
+ <comment xml:lang="cs">skladba Scream Tracker 3</comment>
+ <comment xml:lang="ca">àudio de Scream Tracker 3</comment>
+ <comment xml:lang="bg">Аудио — Scream Tracker 3</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Scream Tracker 3</comment>
+ <comment xml:lang="be">аўдыя Scream Tracker 3</comment>
+ <comment xml:lang="az">Scream Tracker 3 audio faylı</comment>
+ <comment xml:lang="ar">صوت Scream Tracker 3</comment>
+ <magic>
<match value="SCRM" type="string" offset="44"/>
</magic>
<glob pattern="*.s3m"/>
</mime-type>
<mime-type type="audio/x-scpls">
<comment>MP3 ShoutCast playlist</comment>
- <comment xml:lang="ar">قائمة تشغيل MP3 ShoutCast</comment>
- <comment xml:lang="be@latin">Śpis piesień dla tranślacyi MP3</comment>
- <comment xml:lang="bg">Списък за изпълнение — MP3 ShoutCast</comment>
- <comment xml:lang="ca">llista de reproducció MP3 ShoutCast</comment>
- <comment xml:lang="cs">seznam k přehrání MP3 ShoutCast</comment>
- <comment xml:lang="da">MP3 ShoutCast-afspilningsliste</comment>
- <comment xml:lang="de">MP3-ShoutCast-Wiedergabeliste</comment>
- <comment xml:lang="el">Λίστα αναπαραγωγής MP3 ShoutCast</comment>
- <comment xml:lang="en_GB">MP3 ShoutCast playlist</comment>
- <comment xml:lang="eo">MP3-ludlisto de ShoutCast</comment>
- <comment xml:lang="es">lista de reproducción MP3 ShoutCast</comment>
- <comment xml:lang="eu">MP3 ShoutCast erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">MP3 ShoutCast -soittolista</comment>
- <comment xml:lang="fo">MP3 ShoutCast avspælingarlisti</comment>
- <comment xml:lang="fr">liste de lecture MP3 ShoutCast</comment>
- <comment xml:lang="ga">seinmliosta MP3 ShoutCast</comment>
- <comment xml:lang="gl">lista de reprodución MP3 de ShoutCast</comment>
- <comment xml:lang="he">רשימת השמעה MP3 של ShoutCast</comment>
- <comment xml:lang="hr">MP3 ShoutCast popis izvođenja</comment>
- <comment xml:lang="hu">MP3 ShoutCast-lejátszólista</comment>
- <comment xml:lang="ia">Lista de selection MP3 ShoutCast</comment>
- <comment xml:lang="id">Senarai putar MP3 ShoutCast</comment>
- <comment xml:lang="it">Playlist MP3 ShoutCast</comment>
- <comment xml:lang="ja">MP3 ShoutCast 再生リスト</comment>
- <comment xml:lang="kk">MP3 ShoutCast ойнау тізімі</comment>
- <comment xml:lang="ko">MP3 ShoutCast 재생 목록</comment>
- <comment xml:lang="lt">MP3 ShoutCast grojaraštis</comment>
- <comment xml:lang="lv">MP3 ShoutCast repertuārs</comment>
- <comment xml:lang="ms">Senaraimain ShoutCast MP3</comment>
- <comment xml:lang="nb">MP3 ShoutCast-spilleliste</comment>
- <comment xml:lang="nl">MP3 ShoutCast-afspeellijst</comment>
- <comment xml:lang="nn">MP3 ShoutCast-speleliste</comment>
- <comment xml:lang="oc">lista de lectura MP3 ShoutCast</comment>
- <comment xml:lang="pl">Lista odtwarzania MP3 ShoutCast</comment>
- <comment xml:lang="pt">lista de reprodução MP3 ShoutCast</comment>
- <comment xml:lang="pt_BR">Lista de reprodução MP3 ShoutCast</comment>
- <comment xml:lang="ro">Listă MP3 ShoutCast</comment>
- <comment xml:lang="ru">Список воспроизведения MP3 ShoutCast</comment>
- <comment xml:lang="sk">Zoznam skladieb MP3 ShoutCast</comment>
- <comment xml:lang="sl">Seznam predvajanja MP3 ShoutCast</comment>
- <comment xml:lang="sq">Listë titujsh MP3 ShoutCast</comment>
- <comment xml:lang="sr">списак МП3 песама Шаут Каста</comment>
- <comment xml:lang="sv">MP3 ShoutCast-spellista</comment>
- <comment xml:lang="tr">MP3 ShoutCast çalma listesi</comment>
- <comment xml:lang="uk">список програвання MP3 ShoutCast</comment>
- <comment xml:lang="vi">Danh mục nhạc MP3 ShoutCast</comment>
- <comment xml:lang="zh_CN">MP3 ShoutCast 播放列表</comment>
<comment xml:lang="zh_TW">MP3 ShoutCast 播放清單</comment>
+ <comment xml:lang="zh_CN">MP3 ShoutCast 播放列表</comment>
+ <comment xml:lang="vi">Danh mục nhạc MP3 ShoutCast</comment>
+ <comment xml:lang="uk">список програвання MP3 ShoutCast</comment>
+ <comment xml:lang="tr">MP3 ShoutCast çalma listesi</comment>
+ <comment xml:lang="sv">MP3 ShoutCast-spellista</comment>
+ <comment xml:lang="sr">списак МП3 песама Шаут Каста</comment>
+ <comment xml:lang="sq">luajlistë MP3 ShoutCast</comment>
+ <comment xml:lang="sl">Seznam predvajanja MP3 ShoutCast</comment>
+ <comment xml:lang="si">MP3 ShoutCast ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="sk">Zoznam skladieb MP3 ShoutCast</comment>
+ <comment xml:lang="ru">Список воспроизведения MP3 ShoutCast</comment>
+ <comment xml:lang="ro">Listă MP3 ShoutCast</comment>
+ <comment xml:lang="pt_BR">Lista de reprodução MP3 ShoutCast</comment>
+ <comment xml:lang="pt">lista de reprodução MP3 ShoutCast</comment>
+ <comment xml:lang="pl">Lista odtwarzania MP3 ShoutCast</comment>
+ <comment xml:lang="oc">lista de lectura MP3 ShoutCast</comment>
+ <comment xml:lang="nn">MP3 ShoutCast-speleliste</comment>
+ <comment xml:lang="nl">MP3 ShoutCast-afspeellijst</comment>
+ <comment xml:lang="nb">MP3 ShoutCast-spilleliste</comment>
+ <comment xml:lang="ms">Senaraimain ShoutCast MP3</comment>
+ <comment xml:lang="lv">MP3 ShoutCast repertuārs</comment>
+ <comment xml:lang="lt">MP3 ShoutCast grojaraštis</comment>
+ <comment xml:lang="ko">MP3 ShoutCast 재생 목록</comment>
+ <comment xml:lang="kk">MP3 ShoutCast ойнау тізімі</comment>
+ <comment xml:lang="ka">MP3 ShoutCast დასაკრავი სია</comment>
+ <comment xml:lang="ja">MP3 ShoutCast プレイリスト</comment>
+ <comment xml:lang="it">Playlist MP3 ShoutCast</comment>
+ <comment xml:lang="is">MP3 ShoutCast spilunarlisti</comment>
+ <comment xml:lang="id">Senarai putar MP3 ShoutCast</comment>
+ <comment xml:lang="ia">Lista de selection MP3 ShoutCast</comment>
+ <comment xml:lang="hu">MP3 ShoutCast-lejátszólista</comment>
+ <comment xml:lang="hr">MP3 ShoutCast popis izvođenja</comment>
+ <comment xml:lang="he">רשימת השמעה MP3 של ShoutCast</comment>
+ <comment xml:lang="gl">lista de reprodución MP3 de ShoutCast</comment>
+ <comment xml:lang="ga">seinmliosta MP3 ShoutCast</comment>
+ <comment xml:lang="fur">liste di riproduzion MP3 ShoutCast</comment>
+ <comment xml:lang="fr">liste de lecture MP3 ShoutCast</comment>
+ <comment xml:lang="fo">MP3 ShoutCast avspælingarlisti</comment>
+ <comment xml:lang="fi">MP3 ShoutCast -soittolista</comment>
+ <comment xml:lang="eu">MP3 ShoutCast erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción MP3 ShoutCast</comment>
+ <comment xml:lang="eo">MP3-ludlisto de ShoutCast</comment>
+ <comment xml:lang="en_GB">MP3 ShoutCast playlist</comment>
+ <comment xml:lang="el">Λίστα αναπαραγωγής MP3 ShoutCast</comment>
+ <comment xml:lang="de">MP3-ShoutCast-Wiedergabeliste</comment>
+ <comment xml:lang="da">MP3 ShoutCast-afspilningsliste</comment>
+ <comment xml:lang="cs">seznam k přehrání MP3 ShoutCast</comment>
+ <comment xml:lang="ca">llista de reproducció MP3 ShoutCast</comment>
+ <comment xml:lang="bg">Списък за изпълнение — MP3 ShoutCast</comment>
+ <comment xml:lang="be@latin">Śpis piesień dla tranślacyi MP3</comment>
+ <comment xml:lang="be">плэй-ліст MP3 ShoutCast</comment>
+ <comment xml:lang="ar">قائمة تشغيل MP3 ShoutCast</comment>
<alias type="application/pls"/>
<alias type="audio/scpls"/>
- <magic priority="50">
- <match value="[playlist]" type="string" offset="0"/>
- <match value="[Playlist]" type="string" offset="0"/>
- <match value="[PLAYLIST]" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="[playlist]" offset="0"/>
+ <match type="string" value="[Playlist]" offset="0"/>
+ <match type="string" value="[PLAYLIST]" offset="0"/>
</magic>
<glob pattern="*.pls"/>
</mime-type>
<mime-type type="audio/x-stm">
<comment>Scream Tracker audio</comment>
- <comment xml:lang="ar">Scream Tracker سمعي</comment>
- <comment xml:lang="az">Scream Tracker audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo Scream Tracker</comment>
- <comment xml:lang="bg">Аудио — Scream Tracker</comment>
- <comment xml:lang="ca">àudio de Scream Tracker</comment>
- <comment xml:lang="cs">skladba Scream Tracker</comment>
- <comment xml:lang="cy">Sain Scream Tracker</comment>
- <comment xml:lang="da">Scream Tracker-lyd</comment>
- <comment xml:lang="de">Scream-Tracker-Audio</comment>
- <comment xml:lang="el">Ήχος Scream Tracker</comment>
- <comment xml:lang="en_GB">Scream Tracker audio</comment>
- <comment xml:lang="eo">Sondosiero de Scream Tracker</comment>
- <comment xml:lang="es">sonido Scream Tracker</comment>
- <comment xml:lang="eu">Scream Tracker audioa</comment>
- <comment xml:lang="fi">Scream Tracker -ääni</comment>
- <comment xml:lang="fo">Scream Tracker ljóður</comment>
- <comment xml:lang="fr">audio Scream Tracker</comment>
- <comment xml:lang="ga">fuaim Scream Tracker</comment>
- <comment xml:lang="gl">son Scream Tracker</comment>
- <comment xml:lang="he">שמע של Scream Tracker</comment>
- <comment xml:lang="hr">Scream Tracker zvučni zapis</comment>
- <comment xml:lang="hu">Scream Tracker hang</comment>
- <comment xml:lang="ia">Audio Scream Tracker</comment>
- <comment xml:lang="id">Audio Scream Tracker</comment>
- <comment xml:lang="it">Audio Scream Tracker</comment>
- <comment xml:lang="ja">Scream Tracker オーディオ</comment>
- <comment xml:lang="kk">Scream Tracker аудиосы</comment>
- <comment xml:lang="ko">Scream Tracker 오디오</comment>
- <comment xml:lang="lt">Scream Tracker garso įrašas</comment>
- <comment xml:lang="lv">Scream Tracker audio</comment>
- <comment xml:lang="ms">Audio Scream Tracker</comment>
- <comment xml:lang="nb">Scream Tracker-lyd</comment>
- <comment xml:lang="nl">Scream Tracker-audio</comment>
- <comment xml:lang="nn">Scream Tracker lyd</comment>
- <comment xml:lang="oc">àudio Scream Tracker</comment>
- <comment xml:lang="pl">Plik dźwiękowy Scream Tracker</comment>
- <comment xml:lang="pt">áudio Scream Tracker</comment>
- <comment xml:lang="pt_BR">Áudio Scream Tracker</comment>
- <comment xml:lang="ro">Audio Scream Tracker</comment>
- <comment xml:lang="ru">Аудио Scream Tracker</comment>
- <comment xml:lang="sk">Skladba Scream Tracker</comment>
- <comment xml:lang="sl">Zvočna datoteka Scream Tracker</comment>
- <comment xml:lang="sq">Audio Scream Tracker</comment>
- <comment xml:lang="sr">звук Скрим Тракера</comment>
- <comment xml:lang="sv">Scream Tracker-ljud</comment>
- <comment xml:lang="tr">Scream Tracker sesi</comment>
- <comment xml:lang="uk">звук Scream Tracker</comment>
- <comment xml:lang="vi">Âm thanh Scream Tracker</comment>
- <comment xml:lang="zh_CN">Scream Tracker 音频</comment>
<comment xml:lang="zh_TW">Scream Tracker 音訊</comment>
+ <comment xml:lang="zh_CN">Scream Tracker 音频</comment>
+ <comment xml:lang="vi">Âm thanh Scream Tracker</comment>
+ <comment xml:lang="uk">звук Scream Tracker</comment>
+ <comment xml:lang="tr">Scream Tracker sesi</comment>
+ <comment xml:lang="sv">Scream Tracker-ljud</comment>
+ <comment xml:lang="sr">звук Скрим Тракера</comment>
+ <comment xml:lang="sq">audio Scream Tracker</comment>
+ <comment xml:lang="sl">Zvočna datoteka Scream Tracker</comment>
+ <comment xml:lang="si">Scream Tracker ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Skladba Scream Tracker</comment>
+ <comment xml:lang="ru">Аудио Scream Tracker</comment>
+ <comment xml:lang="ro">Audio Scream Tracker</comment>
+ <comment xml:lang="pt_BR">Áudio Scream Tracker</comment>
+ <comment xml:lang="pt">áudio Scream Tracker</comment>
+ <comment xml:lang="pl">Plik dźwiękowy Scream Tracker</comment>
+ <comment xml:lang="oc">àudio Scream Tracker</comment>
+ <comment xml:lang="nn">Scream Tracker lyd</comment>
+ <comment xml:lang="nl">Scream Tracker-audio</comment>
+ <comment xml:lang="nb">Scream Tracker-lyd</comment>
+ <comment xml:lang="ms">Audio Scream Tracker</comment>
+ <comment xml:lang="lv">Scream Tracker audio</comment>
+ <comment xml:lang="lt">Scream Tracker garso įrašas</comment>
+ <comment xml:lang="ko">Scream Tracker 오디오</comment>
+ <comment xml:lang="kk">Scream Tracker аудиосы</comment>
+ <comment xml:lang="ja">Scream Tracker オーディオ</comment>
+ <comment xml:lang="it">Audio Scream Tracker</comment>
+ <comment xml:lang="is">Scream Tracker hljóðskrá</comment>
+ <comment xml:lang="id">Audio Scream Tracker</comment>
+ <comment xml:lang="ia">Audio Scream Tracker</comment>
+ <comment xml:lang="hu">Scream Tracker hang</comment>
+ <comment xml:lang="hr">Scream Tracker zvučni zapis</comment>
+ <comment xml:lang="he">שמע של Scream Tracker</comment>
+ <comment xml:lang="gl">son Scream Tracker</comment>
+ <comment xml:lang="ga">fuaim Scream Tracker</comment>
+ <comment xml:lang="fur">audio Scream Tracker</comment>
+ <comment xml:lang="fr">audio Scream Tracker</comment>
+ <comment xml:lang="fo">Scream Tracker ljóður</comment>
+ <comment xml:lang="fi">Scream Tracker -ääni</comment>
+ <comment xml:lang="eu">Scream Tracker audioa</comment>
+ <comment xml:lang="es">sonido Scream Tracker</comment>
+ <comment xml:lang="eo">Sondosiero de Scream Tracker</comment>
+ <comment xml:lang="en_GB">Scream Tracker audio</comment>
+ <comment xml:lang="el">Ήχος Scream Tracker</comment>
+ <comment xml:lang="de">Scream-Tracker-Audio</comment>
+ <comment xml:lang="da">Scream Tracker-lyd</comment>
+ <comment xml:lang="cy">Sain Scream Tracker</comment>
+ <comment xml:lang="cs">skladba Scream Tracker</comment>
+ <comment xml:lang="ca">àudio de Scream Tracker</comment>
+ <comment xml:lang="bg">Аудио — Scream Tracker</comment>
+ <comment xml:lang="be@latin">Aŭdyjo Scream Tracker</comment>
+ <comment xml:lang="be">аўдыя Scream Tracker</comment>
+ <comment xml:lang="az">Scream Tracker audio faylı</comment>
+ <comment xml:lang="ar">صوت Scream Tracker</comment>
<magic>
- <match value="!Scream!\x1A" type="string" offset="20"/>
- <match value="!SCREAM!\x1A" type="string" offset="20"/>
- <match value="BMOD2STM\x1A" type="string" offset="20"/>
+ <match type="string" value="!Scream!\x1A" offset="20"/>
+ <match type="string" value="!SCREAM!\x1A" offset="20"/>
+ <match type="string" value="BMOD2STM\x1A" offset="20"/>
</magic>
<glob pattern="*.stm"/>
</mime-type>
<mime-type type="audio/x-voc">
<comment>VOC audio</comment>
- <comment xml:lang="ar">VOC سمعي</comment>
- <comment xml:lang="az">VOC audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo VOC</comment>
- <comment xml:lang="bg">Аудио — VOC</comment>
- <comment xml:lang="ca">àudio VOC</comment>
- <comment xml:lang="cs">zvuk VOC</comment>
- <comment xml:lang="cy">Sain VOC</comment>
- <comment xml:lang="da">VOC-lyd</comment>
- <comment xml:lang="de">VOC-Audio</comment>
- <comment xml:lang="el">Ήχος VOC</comment>
- <comment xml:lang="en_GB">VOC audio</comment>
- <comment xml:lang="eo">VOC-sondosiero</comment>
- <comment xml:lang="es">sonido VOC</comment>
- <comment xml:lang="eu">VOC audioa</comment>
- <comment xml:lang="fi">VOC-ääni</comment>
- <comment xml:lang="fo">VOC ljóður</comment>
- <comment xml:lang="fr">audio VOC</comment>
- <comment xml:lang="ga">fuaim VOC</comment>
- <comment xml:lang="gl">son VOC</comment>
- <comment xml:lang="he">שמע VOC</comment>
- <comment xml:lang="hr">VOC zvučni zapis</comment>
- <comment xml:lang="hu">VOC hang</comment>
- <comment xml:lang="ia">Audio VOC</comment>
- <comment xml:lang="id">Audio VOC</comment>
- <comment xml:lang="it">Audio VOC</comment>
- <comment xml:lang="ja">VOC オーディオ</comment>
- <comment xml:lang="kk">VOC аудиосы</comment>
- <comment xml:lang="ko">VOC 오디오</comment>
- <comment xml:lang="lt">VOC garso įrašas</comment>
- <comment xml:lang="lv">VOC audio</comment>
- <comment xml:lang="ms">Audio VOC</comment>
- <comment xml:lang="nb">VOC-lyd</comment>
- <comment xml:lang="nl">VOC-audio</comment>
- <comment xml:lang="nn">VOC-lyd</comment>
- <comment xml:lang="oc">àudio VOC</comment>
- <comment xml:lang="pl">Plik dźwiękowy VOC</comment>
- <comment xml:lang="pt">áudio VOC</comment>
- <comment xml:lang="pt_BR">Áudio VOC</comment>
- <comment xml:lang="ro">Audio VOC</comment>
- <comment xml:lang="ru">Аудио VOC</comment>
- <comment xml:lang="sk">Zvuk VOC</comment>
- <comment xml:lang="sl">Zvočna datoteka VOC</comment>
- <comment xml:lang="sq">Audio VOC</comment>
- <comment xml:lang="sr">ВОЦ звук</comment>
- <comment xml:lang="sv">VOC-ljud</comment>
- <comment xml:lang="tr">VOC sesi</comment>
- <comment xml:lang="uk">звук VOC</comment>
- <comment xml:lang="vi">Âm thanh VOC</comment>
- <comment xml:lang="zh_CN">VOC 音频</comment>
<comment xml:lang="zh_TW">VOC 音訊</comment>
+ <comment xml:lang="zh_CN">VOC 音频</comment>
+ <comment xml:lang="vi">Âm thanh VOC</comment>
+ <comment xml:lang="uk">звук VOC</comment>
+ <comment xml:lang="tr">VOC sesi</comment>
+ <comment xml:lang="sv">VOC-ljud</comment>
+ <comment xml:lang="sr">ВОЦ звук</comment>
+ <comment xml:lang="sq">audio VOC</comment>
+ <comment xml:lang="sl">Zvočna datoteka VOC</comment>
+ <comment xml:lang="si">VOC ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk VOC</comment>
+ <comment xml:lang="ru">Аудио VOC</comment>
+ <comment xml:lang="ro">Audio VOC</comment>
+ <comment xml:lang="pt_BR">Áudio VOC</comment>
+ <comment xml:lang="pt">áudio VOC</comment>
+ <comment xml:lang="pl">Plik dźwiękowy VOC</comment>
+ <comment xml:lang="oc">àudio VOC</comment>
+ <comment xml:lang="nn">VOC-lyd</comment>
+ <comment xml:lang="nl">VOC-audio</comment>
+ <comment xml:lang="nb">VOC-lyd</comment>
+ <comment xml:lang="ms">Audio VOC</comment>
+ <comment xml:lang="lv">VOC audio</comment>
+ <comment xml:lang="lt">VOC garso įrašas</comment>
+ <comment xml:lang="ko">VOC 오디오</comment>
+ <comment xml:lang="kk">VOC аудиосы</comment>
+ <comment xml:lang="ja">VOC オーディオ</comment>
+ <comment xml:lang="it">Audio VOC</comment>
+ <comment xml:lang="is">VOC hljóðskrá</comment>
+ <comment xml:lang="id">Audio VOC</comment>
+ <comment xml:lang="ia">Audio VOC</comment>
+ <comment xml:lang="hu">VOC hang</comment>
+ <comment xml:lang="hr">VOC zvučni zapis</comment>
+ <comment xml:lang="he">שמע VOC</comment>
+ <comment xml:lang="gl">son VOC</comment>
+ <comment xml:lang="ga">fuaim VOC</comment>
+ <comment xml:lang="fur">audio VOC</comment>
+ <comment xml:lang="fr">audio VOC</comment>
+ <comment xml:lang="fo">VOC ljóður</comment>
+ <comment xml:lang="fi">VOC-ääni</comment>
+ <comment xml:lang="eu">VOC audioa</comment>
+ <comment xml:lang="es">sonido VOC</comment>
+ <comment xml:lang="eo">VOC-sondosiero</comment>
+ <comment xml:lang="en_GB">VOC audio</comment>
+ <comment xml:lang="el">Ήχος VOC</comment>
+ <comment xml:lang="de">VOC-Audio</comment>
+ <comment xml:lang="da">VOC-lyd</comment>
+ <comment xml:lang="cy">Sain VOC</comment>
+ <comment xml:lang="cs">zvuk VOC</comment>
+ <comment xml:lang="ca">àudio VOC</comment>
+ <comment xml:lang="bg">Аудио — VOC</comment>
+ <comment xml:lang="be@latin">Aŭdyjo VOC</comment>
+ <comment xml:lang="be">аўдыя VOC</comment>
+ <comment xml:lang="az">VOC audio faylı</comment>
+ <comment xml:lang="ar">صوت VOC</comment>
+ <comment xml:lang="af">VOC-oudio</comment>
<glob pattern="*.voc"/>
</mime-type>
- <mime-type type="audio/x-wav">
+ <mime-type type="audio/vnd.wave">
<comment>WAV audio</comment>
- <comment xml:lang="ar">WAV سمعي</comment>
- <comment xml:lang="az">WAV audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo WAV</comment>
- <comment xml:lang="bg">Аудио — WAV</comment>
- <comment xml:lang="ca">àudio WAV</comment>
- <comment xml:lang="cs">zvuk WAV</comment>
- <comment xml:lang="cy">Sain WAV</comment>
- <comment xml:lang="da">WAV-lyd</comment>
- <comment xml:lang="de">WAV-Audio</comment>
- <comment xml:lang="el">Ήχος WAV</comment>
- <comment xml:lang="en_GB">WAV audio</comment>
- <comment xml:lang="eo">WAV-sonkodo</comment>
- <comment xml:lang="es">sonido WAV</comment>
- <comment xml:lang="eu">WAV audioa</comment>
- <comment xml:lang="fi">WAV-ääni</comment>
- <comment xml:lang="fo">WAV ljóður</comment>
- <comment xml:lang="fr">audio WAV</comment>
- <comment xml:lang="ga">fuaim WAV</comment>
- <comment xml:lang="gl">son WAV</comment>
- <comment xml:lang="he">שמע WAV</comment>
- <comment xml:lang="hr">WAV zvučni zapis</comment>
- <comment xml:lang="hu">WAV hang</comment>
- <comment xml:lang="ia">Audio WAV</comment>
- <comment xml:lang="id">Audio WAV</comment>
- <comment xml:lang="it">Audio WAV</comment>
- <comment xml:lang="ja">WAV オーディオ</comment>
- <comment xml:lang="kk">WAV аудиосы</comment>
- <comment xml:lang="ko">WAV 오디오</comment>
- <comment xml:lang="lt">WAV garso įrašas</comment>
- <comment xml:lang="lv">WAV audio</comment>
- <comment xml:lang="ms">Audio VOC</comment>
- <comment xml:lang="nb">WAV-lyd</comment>
- <comment xml:lang="nl">WAV-audio</comment>
- <comment xml:lang="nn">WAV-lyd</comment>
- <comment xml:lang="oc">àudio WAV</comment>
- <comment xml:lang="pl">Plik dźwiękowy WAV</comment>
- <comment xml:lang="pt">áudio WAV</comment>
- <comment xml:lang="pt_BR">Áudio WAV</comment>
- <comment xml:lang="ro">Audio WAV</comment>
- <comment xml:lang="ru">Аудио WAV</comment>
- <comment xml:lang="sk">Zvuk WAV</comment>
- <comment xml:lang="sl">Zvočna datoteka WAV</comment>
- <comment xml:lang="sq">Audio WAV</comment>
- <comment xml:lang="sr">ВАВ звук</comment>
- <comment xml:lang="sv">WAV-ljud</comment>
- <comment xml:lang="tr">WAV sesi</comment>
- <comment xml:lang="uk">звук WAV</comment>
- <comment xml:lang="vi">Âm thanh WAV</comment>
- <comment xml:lang="zh_CN">WAV 音频</comment>
<comment xml:lang="zh_TW">WAV 音訊</comment>
+ <comment xml:lang="zh_CN">WAV 音频</comment>
+ <comment xml:lang="vi">Âm thanh WAV</comment>
+ <comment xml:lang="uk">звук WAV</comment>
+ <comment xml:lang="tr">WAV sesi</comment>
+ <comment xml:lang="sv">WAV-ljud</comment>
+ <comment xml:lang="sr">ВАВ звук</comment>
+ <comment xml:lang="sq">audio WAV</comment>
+ <comment xml:lang="sl">Zvočna datoteka WAV</comment>
+ <comment xml:lang="si">WAV ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk WAV</comment>
+ <comment xml:lang="ru">Аудио WAV</comment>
+ <comment xml:lang="ro">Audio WAV</comment>
+ <comment xml:lang="pt_BR">Áudio WAV</comment>
+ <comment xml:lang="pt">áudio WAV</comment>
+ <comment xml:lang="pl">Plik dźwiękowy WAV</comment>
+ <comment xml:lang="oc">àudio WAV</comment>
+ <comment xml:lang="nn">WAV-lyd</comment>
+ <comment xml:lang="nl">WAV-audio</comment>
+ <comment xml:lang="nb">WAV-lyd</comment>
+ <comment xml:lang="ms">Audio VOC</comment>
+ <comment xml:lang="lv">WAV audio</comment>
+ <comment xml:lang="lt">WAV garso įrašas</comment>
+ <comment xml:lang="ko">WAV 오디오</comment>
+ <comment xml:lang="kk">WAV аудиосы</comment>
+ <comment xml:lang="ja">WAV オーディオ</comment>
+ <comment xml:lang="it">Audio WAV</comment>
+ <comment xml:lang="is">WAV hljóðskrá</comment>
+ <comment xml:lang="id">Audio WAV</comment>
+ <comment xml:lang="ia">Audio WAV</comment>
+ <comment xml:lang="hu">WAV hang</comment>
+ <comment xml:lang="hr">WAV zvučni zapis</comment>
+ <comment xml:lang="he">שמע WAV</comment>
+ <comment xml:lang="gl">son WAV</comment>
+ <comment xml:lang="ga">fuaim WAV</comment>
+ <comment xml:lang="fur">audio WAV</comment>
+ <comment xml:lang="fr">audio WAV</comment>
+ <comment xml:lang="fo">WAV ljóður</comment>
+ <comment xml:lang="fi">WAV-ääni</comment>
+ <comment xml:lang="eu">WAV audioa</comment>
+ <comment xml:lang="es">sonido WAV</comment>
+ <comment xml:lang="eo">WAV-sonkodo</comment>
+ <comment xml:lang="en_GB">WAV audio</comment>
+ <comment xml:lang="el">Ήχος WAV</comment>
+ <comment xml:lang="de">WAV-Audio</comment>
+ <comment xml:lang="da">WAV-lyd</comment>
+ <comment xml:lang="cy">Sain WAV</comment>
+ <comment xml:lang="cs">zvuk WAV</comment>
+ <comment xml:lang="ca">àudio WAV</comment>
+ <comment xml:lang="bg">Аудио — WAV</comment>
+ <comment xml:lang="be@latin">Aŭdyjo WAV</comment>
+ <comment xml:lang="be">аўдыя WAV</comment>
+ <comment xml:lang="az">WAV audio faylı</comment>
+ <comment xml:lang="ar">صوت WAV</comment>
+ <comment xml:lang="af">WAV-oudio</comment>
<alias type="audio/wav"/>
- <alias type="audio/vnd.wave"/>
- <magic priority="50">
- <match value="WAVE" type="string" offset="8"/>
- <match value="WAV " type="string" offset="8"/>
+ <alias type="audio/x-wav"/>
+ <sub-class-of type="application/x-riff"/>
+ <magic>
+ <match type="string" value="WAVE" offset="8"/>
+ <match type="string" value="WAV " offset="8"/>
</magic>
<glob pattern="*.wav"/>
</mime-type>
<mime-type type="audio/x-xi">
- <comment>Scream Tracker instrument</comment>
- <comment xml:lang="ar">آلة Scream Tracker</comment>
- <comment xml:lang="az">Scream Tracker instrumenti</comment>
- <comment xml:lang="be@latin">Instrument Scream Tracker</comment>
- <comment xml:lang="bg">Инструмент — Scream Tracker</comment>
- <comment xml:lang="ca">instrument de Scream Tracker</comment>
- <comment xml:lang="cs">nástroj pro Scream Tracker</comment>
- <comment xml:lang="cy">Offeryn Scream Tracker</comment>
- <comment xml:lang="da">Scream Tracker-instrument</comment>
- <comment xml:lang="de">Scream-Tracker-Instrument</comment>
- <comment xml:lang="el">Μουσικό όργανο Scream Tracker</comment>
- <comment xml:lang="en_GB">Scream Tracker instrument</comment>
- <comment xml:lang="eo">instrumento de Scream Tracker</comment>
- <comment xml:lang="es">instrumento Scream Tracker</comment>
- <comment xml:lang="eu">Scream Tracker instrumentua</comment>
- <comment xml:lang="fi">Scream Tracker -soitin</comment>
- <comment xml:lang="fo">Scream Tracker ljóðføri</comment>
- <comment xml:lang="fr">instrument Scream Tracker</comment>
- <comment xml:lang="ga">ionstraim Scream Tracker</comment>
- <comment xml:lang="gl">Instrumento Scream Tracker</comment>
- <comment xml:lang="he">כלי של Scream Tracker</comment>
- <comment xml:lang="hr">Scream Tracker instrument</comment>
- <comment xml:lang="hu">Scream Tracker hangszer</comment>
- <comment xml:lang="ia">Instrumento Scream Tracker</comment>
- <comment xml:lang="id">Instrumen Scream Tracker</comment>
- <comment xml:lang="it">Strumento Scream Tracker</comment>
- <comment xml:lang="ja">Scream Tracker インストゥルメント</comment>
- <comment xml:lang="kk">Scream Tracker сайманы</comment>
- <comment xml:lang="ko">Scream Tracker 악기</comment>
- <comment xml:lang="lt">Scream Tracker instrumentas</comment>
- <comment xml:lang="lv">Scream Tracker instrumenti</comment>
- <comment xml:lang="ms">Instrumen Scream Tracker</comment>
- <comment xml:lang="nb">Scream Tracker-instrument</comment>
- <comment xml:lang="nl">Scream Tracker-instrument</comment>
- <comment xml:lang="nn">Scream Tracker instrument</comment>
- <comment xml:lang="oc">instrument Scream Tracker</comment>
- <comment xml:lang="pl">Instrument Scream Tracker</comment>
- <comment xml:lang="pt">instrumento Scream Tracker</comment>
- <comment xml:lang="pt_BR">Instrumento Scream Tracker</comment>
- <comment xml:lang="ro">Instrument Scream Tracker</comment>
- <comment xml:lang="ru">Инструмент Scream Tracker</comment>
- <comment xml:lang="sk">Nástroj pre Scream Tracker</comment>
- <comment xml:lang="sl">Datoteka zvoka glasbila Scream Tracker</comment>
- <comment xml:lang="sq">Instrument Scream Tracker</comment>
- <comment xml:lang="sr">инструмент Скрим Тракера</comment>
- <comment xml:lang="sv">Scream Tracker-instrument</comment>
- <comment xml:lang="tr">Scream Tracker çalgısı</comment>
- <comment xml:lang="uk">інструмент Scream Tracker</comment>
- <comment xml:lang="vi">Nhạc khí Scream Tracker</comment>
- <comment xml:lang="zh_CN">Scream Tracker 乐器</comment>
- <comment xml:lang="zh_TW">Scream Tracker 樂器檔</comment>
- <magic priority="50">
+ <comment>FastTracker II instrument</comment>
+ <comment xml:lang="uk">інструмент FastTracker II</comment>
+ <comment xml:lang="sv">FastTracker II-instrument</comment>
+ <comment xml:lang="ru">Инструмент FastTracker II</comment>
+ <comment xml:lang="pl">Instrument FastTracker II</comment>
+ <comment xml:lang="it">Strumento FastTracker II</comment>
+ <comment xml:lang="eu">FastTracker II tresna</comment>
+ <comment xml:lang="es">instrumento de FastTracker II</comment>
+ <comment xml:lang="de">FastTracker-II-Instrument</comment>
+ <comment xml:lang="be">інструмент FastTracker II</comment>
+ <magic>
<match value="Extended Instrument:" type="string" offset="0"/>
</magic>
<glob pattern="*.xi"/>
</mime-type>
<mime-type type="audio/x-xm">
<comment>FastTracker II audio</comment>
- <comment xml:lang="ar">FastTracker II سمعي</comment>
- <comment xml:lang="az">FastTracker II audio faylı</comment>
- <comment xml:lang="be@latin">Aŭdyjo FastTracker II</comment>
- <comment xml:lang="bg">Аудио — FastTracker II</comment>
- <comment xml:lang="ca">àudio de FastTracker II</comment>
- <comment xml:lang="cs">zvuk FastTracker II</comment>
- <comment xml:lang="cy">Sain FastTracker II</comment>
- <comment xml:lang="da">FastTracker II-lyd</comment>
- <comment xml:lang="de">FastTracker-II-Audio</comment>
- <comment xml:lang="el">Ήχος FastTracker II</comment>
- <comment xml:lang="en_GB">FastTracker II audio</comment>
- <comment xml:lang="eo">Sondosiero de FastTracker II</comment>
- <comment xml:lang="es">sonido FastTracker II</comment>
- <comment xml:lang="eu">FastTracker II.ren audioa</comment>
- <comment xml:lang="fi">FastTracker II -ääni</comment>
- <comment xml:lang="fo">FastTracker II ljóður</comment>
- <comment xml:lang="fr">audio FastTracker II</comment>
- <comment xml:lang="ga">fuaim FastTracker II</comment>
- <comment xml:lang="gl">son de FastTracker II</comment>
- <comment xml:lang="he">שמע FastTracker II</comment>
- <comment xml:lang="hr">FastTracker II zvučni zapis</comment>
- <comment xml:lang="hu">FastTracker II hang</comment>
- <comment xml:lang="ia">Audio FastTracker II</comment>
- <comment xml:lang="id">Audio FastTracker II</comment>
- <comment xml:lang="it">Audio FastTracker II</comment>
- <comment xml:lang="ja">FastTracker II オーディオ</comment>
- <comment xml:lang="ka">FastTracker II-ის აუდიო</comment>
- <comment xml:lang="kk">FastTracker II аудиосы</comment>
- <comment xml:lang="ko">FastTracker II 오디오</comment>
- <comment xml:lang="lt">FastTracker II garso įrašas</comment>
- <comment xml:lang="lv">FastTracker II audio</comment>
- <comment xml:lang="ms">Audio FastTracker II</comment>
- <comment xml:lang="nb">FastTracker II-lyd</comment>
- <comment xml:lang="nl">FastTracker II-audio</comment>
- <comment xml:lang="nn">FastTracker II lyd</comment>
- <comment xml:lang="oc">àudio FastTracker II</comment>
- <comment xml:lang="pl">Plik dźwiękowy FastTracker II</comment>
- <comment xml:lang="pt">áudio FastTracker II</comment>
- <comment xml:lang="pt_BR">Áudio FastTracker II</comment>
- <comment xml:lang="ro">Audio FastTracker II</comment>
- <comment xml:lang="ru">Аудио FastTracker II</comment>
- <comment xml:lang="sk">Zvuk FastTracker II</comment>
- <comment xml:lang="sl">Zvočna datoteka FastTracker II</comment>
- <comment xml:lang="sq">Audio FastTracker II</comment>
- <comment xml:lang="sr">звук Фаст Тракера ИИ</comment>
- <comment xml:lang="sv">FastTracker II-ljud</comment>
- <comment xml:lang="tr">FastTracker II sesi</comment>
- <comment xml:lang="uk">звук FastTracker II</comment>
- <comment xml:lang="vi">Âm thanh FastTracker II</comment>
- <comment xml:lang="zh_CN">FastTracker II 音频</comment>
<comment xml:lang="zh_TW">FastTracker II 音訊</comment>
- <magic priority="50">
+ <comment xml:lang="zh_CN">FastTracker II 音频</comment>
+ <comment xml:lang="vi">Âm thanh FastTracker II</comment>
+ <comment xml:lang="uk">звук FastTracker II</comment>
+ <comment xml:lang="tr">FastTracker II sesi</comment>
+ <comment xml:lang="sv">FastTracker II-ljud</comment>
+ <comment xml:lang="sr">звук Фаст Тракера ИИ</comment>
+ <comment xml:lang="sq">audio FastTracker II</comment>
+ <comment xml:lang="sl">Zvočna datoteka FastTracker II</comment>
+ <comment xml:lang="si">FastTracker II ශ්‍රව්‍ය</comment>
+ <comment xml:lang="sk">Zvuk FastTracker II</comment>
+ <comment xml:lang="ru">Аудио FastTracker II</comment>
+ <comment xml:lang="ro">Audio FastTracker II</comment>
+ <comment xml:lang="pt_BR">Áudio FastTracker II</comment>
+ <comment xml:lang="pt">áudio FastTracker II</comment>
+ <comment xml:lang="pl">Plik dźwiękowy FastTracker II</comment>
+ <comment xml:lang="oc">àudio FastTracker II</comment>
+ <comment xml:lang="nn">FastTracker II lyd</comment>
+ <comment xml:lang="nl">FastTracker II-audio</comment>
+ <comment xml:lang="nb">FastTracker II-lyd</comment>
+ <comment xml:lang="ms">Audio FastTracker II</comment>
+ <comment xml:lang="lv">FastTracker II audio</comment>
+ <comment xml:lang="lt">FastTracker II garso įrašas</comment>
+ <comment xml:lang="ko">FastTracker II 오디오</comment>
+ <comment xml:lang="kk">FastTracker II аудиосы</comment>
+ <comment xml:lang="ka">FastTracker II-ის აუდიო</comment>
+ <comment xml:lang="ja">FastTracker II オーディオ</comment>
+ <comment xml:lang="it">Audio FastTracker II</comment>
+ <comment xml:lang="is">FastTracker II hljóðskrá</comment>
+ <comment xml:lang="id">Audio FastTracker II</comment>
+ <comment xml:lang="ia">Audio FastTracker II</comment>
+ <comment xml:lang="hu">FastTracker II hang</comment>
+ <comment xml:lang="hr">FastTracker II zvučni zapis</comment>
+ <comment xml:lang="he">שמע FastTracker II</comment>
+ <comment xml:lang="gl">son de FastTracker II</comment>
+ <comment xml:lang="ga">fuaim FastTracker II</comment>
+ <comment xml:lang="fur">audio FastTracker II</comment>
+ <comment xml:lang="fr">audio FastTracker II</comment>
+ <comment xml:lang="fo">FastTracker II ljóður</comment>
+ <comment xml:lang="fi">FastTracker II -ääni</comment>
+ <comment xml:lang="eu">FastTracker II.ren audioa</comment>
+ <comment xml:lang="es">sonido FastTracker II</comment>
+ <comment xml:lang="eo">Sondosiero de FastTracker II</comment>
+ <comment xml:lang="en_GB">FastTracker II audio</comment>
+ <comment xml:lang="el">Ήχος FastTracker II</comment>
+ <comment xml:lang="de">FastTracker-II-Audio</comment>
+ <comment xml:lang="da">FastTracker II-lyd</comment>
+ <comment xml:lang="cy">Sain FastTracker II</comment>
+ <comment xml:lang="cs">zvuk FastTracker II</comment>
+ <comment xml:lang="ca">àudio de FastTracker II</comment>
+ <comment xml:lang="bg">Аудио — FastTracker II</comment>
+ <comment xml:lang="be@latin">Aŭdyjo FastTracker II</comment>
+ <comment xml:lang="be">аўдыя FastTracker II</comment>
+ <comment xml:lang="az">FastTracker II audio faylı</comment>
+ <comment xml:lang="ar">صوت FastTracker II</comment>
+ <magic>
<match value="Extended Module:" type="string" offset="0"/>
</magic>
<glob pattern="*.xm"/>
</mime-type>
<mime-type type="audio/x-tta">
<comment>TrueAudio audio</comment>
- <comment xml:lang="ar">TrueAudio سمعي</comment>
- <comment xml:lang="be@latin">Aŭdyjo TrueAudio</comment>
- <comment xml:lang="bg">Аудио — TrueAudio</comment>
- <comment xml:lang="ca">àudio de TrueAudio</comment>
- <comment xml:lang="cs">zvuk TrueAudio</comment>
- <comment xml:lang="da">TrueAudio-lyd</comment>
- <comment xml:lang="de">TrueAudio-Audio</comment>
- <comment xml:lang="el">Ήχος TrueAudio</comment>
- <comment xml:lang="en_GB">TrueAudio audio</comment>
- <comment xml:lang="eo">TrueAudio-sondosiero</comment>
- <comment xml:lang="es">sonido TrueAudio</comment>
- <comment xml:lang="eu">TrueAudio audioa</comment>
- <comment xml:lang="fi">TrueAudio-ääni</comment>
- <comment xml:lang="fo">TrueAudio ljóður</comment>
- <comment xml:lang="fr">audio TrueAudio</comment>
- <comment xml:lang="ga">fuaim TrueAudio</comment>
- <comment xml:lang="gl">son Trueson</comment>
- <comment xml:lang="he">שמע TrueAudio</comment>
- <comment xml:lang="hr">TrueAudio zvučni zapis</comment>
- <comment xml:lang="hu">TrueAudio hang</comment>
- <comment xml:lang="ia">Audio TrueAudio</comment>
- <comment xml:lang="id">Audio TrueAudio</comment>
- <comment xml:lang="it">Audio TrueAudio</comment>
- <comment xml:lang="ja">TrueAudio オーディオ</comment>
- <comment xml:lang="kk">TrueAudio аудиосы</comment>
- <comment xml:lang="ko">TrueAudio 오디오</comment>
- <comment xml:lang="lt">TrueAudio garso įrašas</comment>
- <comment xml:lang="lv">TrueAudio audio</comment>
- <comment xml:lang="nb">TrueAudio-lyd</comment>
- <comment xml:lang="nl">TrueAudio-audio</comment>
- <comment xml:lang="nn">TrueAudio-lyd</comment>
- <comment xml:lang="oc">àudio TrueAudio</comment>
- <comment xml:lang="pl">Plik dźwiękowy TrueAudio</comment>
- <comment xml:lang="pt">áudio TrueAudio</comment>
- <comment xml:lang="pt_BR">Áudio TrueAudio</comment>
- <comment xml:lang="ro">Audio TrueAudio</comment>
- <comment xml:lang="ru">Аудио TrueAudio</comment>
- <comment xml:lang="sk">Zvuk TrueAudio</comment>
- <comment xml:lang="sl">Zvočna datoteka TrueAudio</comment>
- <comment xml:lang="sq">Audio TrueAudio</comment>
- <comment xml:lang="sr">Тру Аудио звук</comment>
- <comment xml:lang="sv">TrueAudio-ljud</comment>
- <comment xml:lang="tr">TrueAudio sesi</comment>
- <comment xml:lang="uk">звук TrueAudio</comment>
- <comment xml:lang="vi">Âm thanh TrueAudio</comment>
- <comment xml:lang="zh_CN">TrueAudio 音频</comment>
<comment xml:lang="zh_TW">TrueAudio 音訊</comment>
+ <comment xml:lang="zh_CN">TrueAudio 音频</comment>
+ <comment xml:lang="vi">Âm thanh TrueAudio</comment>
+ <comment xml:lang="uk">звук TrueAudio</comment>
+ <comment xml:lang="tr">TrueAudio sesi</comment>
+ <comment xml:lang="sv">TrueAudio-ljud</comment>
+ <comment xml:lang="sr">Тру Аудио звук</comment>
+ <comment xml:lang="sq">audio TrueAudio</comment>
+ <comment xml:lang="sl">Zvočna datoteka TrueAudio</comment>
+ <comment xml:lang="si">TrueAudio ශ්රව්ය</comment>
+ <comment xml:lang="sk">Zvuk TrueAudio</comment>
+ <comment xml:lang="ru">Аудио TrueAudio</comment>
+ <comment xml:lang="ro">Audio TrueAudio</comment>
+ <comment xml:lang="pt_BR">Áudio TrueAudio</comment>
+ <comment xml:lang="pt">áudio TrueAudio</comment>
+ <comment xml:lang="pl">Plik dźwiękowy TrueAudio</comment>
+ <comment xml:lang="oc">àudio TrueAudio</comment>
+ <comment xml:lang="nn">TrueAudio-lyd</comment>
+ <comment xml:lang="nl">TrueAudio-audio</comment>
+ <comment xml:lang="nb">TrueAudio-lyd</comment>
+ <comment xml:lang="lv">TrueAudio audio</comment>
+ <comment xml:lang="lt">TrueAudio garso įrašas</comment>
+ <comment xml:lang="ko">TrueAudio 오디오</comment>
+ <comment xml:lang="kk">TrueAudio аудиосы</comment>
+ <comment xml:lang="ja">TrueAudio オーディオ</comment>
+ <comment xml:lang="it">Audio TrueAudio</comment>
+ <comment xml:lang="is">TrueAudio hljóðskrá</comment>
+ <comment xml:lang="id">Audio TrueAudio</comment>
+ <comment xml:lang="ia">Audio TrueAudio</comment>
+ <comment xml:lang="hu">TrueAudio hang</comment>
+ <comment xml:lang="hr">TrueAudio zvučni zapis</comment>
+ <comment xml:lang="he">שמע TrueAudio</comment>
+ <comment xml:lang="gl">son Trueson</comment>
+ <comment xml:lang="ga">fuaim TrueAudio</comment>
+ <comment xml:lang="fur">audio TrueAudio</comment>
+ <comment xml:lang="fr">audio TrueAudio</comment>
+ <comment xml:lang="fo">TrueAudio ljóður</comment>
+ <comment xml:lang="fi">TrueAudio-ääni</comment>
+ <comment xml:lang="eu">TrueAudio audioa</comment>
+ <comment xml:lang="es">sonido TrueAudio</comment>
+ <comment xml:lang="eo">TrueAudio-sondosiero</comment>
+ <comment xml:lang="en_GB">TrueAudio audio</comment>
+ <comment xml:lang="el">Ήχος TrueAudio</comment>
+ <comment xml:lang="de">TrueAudio-Audio</comment>
+ <comment xml:lang="da">TrueAudio-lyd</comment>
+ <comment xml:lang="cs">zvuk TrueAudio</comment>
+ <comment xml:lang="ca">àudio TrueAudio</comment>
+ <comment xml:lang="bg">Аудио — TrueAudio</comment>
+ <comment xml:lang="be@latin">Aŭdyjo TrueAudio</comment>
+ <comment xml:lang="be">аўдыя TrueAudio</comment>
+ <comment xml:lang="ar">صوت TrueAudio</comment>
+ <comment xml:lang="af">TrueAudio-oudio</comment>
<alias type="audio/tta"/>
- <magic priority="50">
+ <magic>
<match value="TTA1" type="string" offset="0"/>
</magic>
<glob pattern="*.tta"/>
</mime-type>
<mime-type type="image/bmp">
<comment>Windows BMP image</comment>
- <comment xml:lang="ar">صورة Windows BMP</comment>
- <comment xml:lang="az">Windows BMP rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava Windows BMP</comment>
- <comment xml:lang="bg">Изображение — Windows BMP</comment>
- <comment xml:lang="ca">imatge BMP de Windows</comment>
- <comment xml:lang="cs">obrázek Windows BMP</comment>
- <comment xml:lang="cy">Delwedd BMP Windows</comment>
- <comment xml:lang="da">Windows BMP-billede</comment>
- <comment xml:lang="de">Windows-BMP-Bild</comment>
- <comment xml:lang="el">Εικόνα Windows BMP</comment>
- <comment xml:lang="en_GB">Windows BMP image</comment>
- <comment xml:lang="eo">BMP-bildo de Vindozo</comment>
- <comment xml:lang="es">imagen BMP de Windows</comment>
- <comment xml:lang="eu">Windows BMP irudia</comment>
- <comment xml:lang="fi">Windows BMP -kuva</comment>
- <comment xml:lang="fo">Windows BMP mynd</comment>
- <comment xml:lang="fr">image Windows BMP</comment>
- <comment xml:lang="ga">íomhá BMP Windows</comment>
- <comment xml:lang="gl">imaxe BMP de Windows</comment>
- <comment xml:lang="he">תמונת BMP של Windows</comment>
- <comment xml:lang="hr">Windows BMP slika</comment>
- <comment xml:lang="hu">Windows BMP-kép</comment>
- <comment xml:lang="ia">Imagine BMP de Windows</comment>
- <comment xml:lang="id">Citra Windows BMP</comment>
- <comment xml:lang="it">Immagine Windows BMP</comment>
- <comment xml:lang="ja">Windows BMP 画像</comment>
- <comment xml:lang="kk">Windows BMP суреті</comment>
- <comment xml:lang="ko">Windows BMP 그림</comment>
- <comment xml:lang="lt">Windows BMP paveikslėlis</comment>
- <comment xml:lang="lv">Windows BMP attēls</comment>
- <comment xml:lang="ms">Imej BMP Windows</comment>
- <comment xml:lang="nb">Windows BMP-bilde</comment>
- <comment xml:lang="nl">Windows BMP-afbeelding</comment>
- <comment xml:lang="nn">Windows BMP-bilete</comment>
- <comment xml:lang="oc">imatge Windows BMP</comment>
- <comment xml:lang="pl">Obraz BMP Windows</comment>
- <comment xml:lang="pt">imagem BMP Windows</comment>
- <comment xml:lang="pt_BR">Imagem BMP do Windows</comment>
- <comment xml:lang="ro">Imagine Windows BMP</comment>
- <comment xml:lang="ru">Изображение Windows BMP</comment>
- <comment xml:lang="sk">Obrázok Windows BMP</comment>
- <comment xml:lang="sl">Slikovna datoteka Windows BMP</comment>
- <comment xml:lang="sq">Figurë Windows BMP</comment>
- <comment xml:lang="sr">Виндоузова БМП слика</comment>
- <comment xml:lang="sv">Windows BMP-bild</comment>
- <comment xml:lang="tr">Windows BMP görüntüsü</comment>
- <comment xml:lang="uk">зображення Windows BMP</comment>
- <comment xml:lang="vi">Ảnh BMP Windows</comment>
- <comment xml:lang="zh_CN">Windows BMP 图像</comment>
<comment xml:lang="zh_TW">Windows BMP 影像</comment>
- <magic priority="50">
- <match value="BMxxxx\000\000" type="string" offset="0" mask="0xffff00000000ffff"/>
- <match value="BM" type="string" offset="0">
- <match value="12" type="byte" offset="14"/>
- <match value="64" type="byte" offset="14"/>
- <match value="40" type="byte" offset="14"/>
+ <comment xml:lang="zh_CN">Windows BMP 图像</comment>
+ <comment xml:lang="vi">Ảnh BMP Windows</comment>
+ <comment xml:lang="uk">зображення Windows BMP</comment>
+ <comment xml:lang="tr">Windows BMP görüntüsü</comment>
+ <comment xml:lang="sv">Windows BMP-bild</comment>
+ <comment xml:lang="sr">Виндоузова БМП слика</comment>
+ <comment xml:lang="sq">figurë Windows BMP</comment>
+ <comment xml:lang="sl">Slikovna datoteka Windows BMP</comment>
+ <comment xml:lang="si">වින්ඩෝස් BMP රූපය</comment>
+ <comment xml:lang="sk">Obrázok Windows BMP</comment>
+ <comment xml:lang="ru">Изображение Windows BMP</comment>
+ <comment xml:lang="ro">Imagine Windows BMP</comment>
+ <comment xml:lang="pt_BR">Imagem BMP do Windows</comment>
+ <comment xml:lang="pt">imagem BMP Windows</comment>
+ <comment xml:lang="pl">Obraz BMP Windows</comment>
+ <comment xml:lang="oc">imatge Windows BMP</comment>
+ <comment xml:lang="nn">Windows BMP-bilete</comment>
+ <comment xml:lang="nl">Windows BMP-afbeelding</comment>
+ <comment xml:lang="nb">Windows BMP-bilde</comment>
+ <comment xml:lang="ms">Imej BMP Windows</comment>
+ <comment xml:lang="lv">Windows BMP attēls</comment>
+ <comment xml:lang="lt">Windows BMP paveikslėlis</comment>
+ <comment xml:lang="ko">Windows BMP 그림</comment>
+ <comment xml:lang="kk">Windows BMP суреті</comment>
+ <comment xml:lang="ja">Windows BMP 画像</comment>
+ <comment xml:lang="it">Immagine Windows BMP</comment>
+ <comment xml:lang="is">Windows BMP mynd</comment>
+ <comment xml:lang="id">Citra Windows BMP</comment>
+ <comment xml:lang="ia">Imagine BMP de Windows</comment>
+ <comment xml:lang="hu">Windows BMP-kép</comment>
+ <comment xml:lang="hr">Windows BMP slika</comment>
+ <comment xml:lang="he">תמונת BMP של Windows</comment>
+ <comment xml:lang="gl">imaxe BMP de Windows</comment>
+ <comment xml:lang="ga">íomhá BMP Windows</comment>
+ <comment xml:lang="fur">imagjin Windows BMP</comment>
+ <comment xml:lang="fr">image Windows BMP</comment>
+ <comment xml:lang="fo">Windows BMP mynd</comment>
+ <comment xml:lang="fi">Windows BMP -kuva</comment>
+ <comment xml:lang="eu">Windows BMP irudia</comment>
+ <comment xml:lang="es">imagen BMP de Windows</comment>
+ <comment xml:lang="eo">BMP-bildo de Vindozo</comment>
+ <comment xml:lang="en_GB">Windows BMP image</comment>
+ <comment xml:lang="el">Εικόνα Windows BMP</comment>
+ <comment xml:lang="de">Windows BMP-Bild</comment>
+ <comment xml:lang="da">Windows BMP-billede</comment>
+ <comment xml:lang="cy">Delwedd BMP Windows</comment>
+ <comment xml:lang="cs">obrázek Windows BMP</comment>
+ <comment xml:lang="ca">imatge BMP de Windows</comment>
+ <comment xml:lang="bg">Изображение — Windows BMP</comment>
+ <comment xml:lang="be@latin">Vyjava Windows BMP</comment>
+ <comment xml:lang="be">выява Windows BMP</comment>
+ <comment xml:lang="az">Windows BMP rəsmi</comment>
+ <comment xml:lang="ar">صورة Windows BMP</comment>
+ <comment xml:lang="af">Windows BMP-beeld</comment>
+ <magic>
+ <match type="string" mask="0xffff00000000ffff" value="BMxxxx\000\000" offset="0"/>
+ <match type="string" value="BM" offset="0">
+ <match type="byte" value="12" offset="14"/>
+ <match type="byte" value="64" offset="14"/>
+ <match type="byte" value="40" offset="14"/>
</match>
</magic>
<glob pattern="*.bmp"/>
@@ -25061,402 +27286,431 @@
</mime-type>
<mime-type type="image/vnd.wap.wbmp">
<comment>WBMP image</comment>
- <comment xml:lang="ar">صورة WBMP</comment>
- <comment xml:lang="be@latin">Vyjava WBMP</comment>
- <comment xml:lang="bg">Изображение — WBMP</comment>
- <comment xml:lang="ca">imatge WBMP</comment>
- <comment xml:lang="cs">obrázek WBMP</comment>
- <comment xml:lang="da">WBMP-billede</comment>
- <comment xml:lang="de">WBMP-Bild</comment>
- <comment xml:lang="el">Εικόνα WBMP</comment>
- <comment xml:lang="en_GB">WBMP image</comment>
- <comment xml:lang="eo">WBMP-bildo</comment>
- <comment xml:lang="es">imagen WBMP</comment>
- <comment xml:lang="eu">WBMP irudia</comment>
- <comment xml:lang="fi">WBMP-kuva</comment>
- <comment xml:lang="fo">WBMP mynd</comment>
- <comment xml:lang="fr">image WBMP</comment>
- <comment xml:lang="ga">íomhá WBMP</comment>
- <comment xml:lang="gl">imaxe WBMP</comment>
- <comment xml:lang="he">תמונת WBMP</comment>
- <comment xml:lang="hr">WBMP slika</comment>
- <comment xml:lang="hu">WBMP kép</comment>
- <comment xml:lang="ia">Imagine WBMP</comment>
- <comment xml:lang="id">Citra WBMP</comment>
- <comment xml:lang="it">Immagine WBMP</comment>
- <comment xml:lang="ja">WBMP 画像</comment>
- <comment xml:lang="kk">WBMP суреті</comment>
- <comment xml:lang="ko">WBMP 그림</comment>
- <comment xml:lang="lt">WBMP paveikslėlis</comment>
- <comment xml:lang="lv">WBMP attēls</comment>
- <comment xml:lang="nb">WBMP-bilde</comment>
- <comment xml:lang="nl">WBMP-afbeelding</comment>
- <comment xml:lang="nn">WBMP-bilete</comment>
- <comment xml:lang="oc">imatge WBMP</comment>
- <comment xml:lang="pl">Obraz WBMP</comment>
- <comment xml:lang="pt">imagem WBMP</comment>
- <comment xml:lang="pt_BR">Imagem WBMP</comment>
- <comment xml:lang="ro">Imagine WBMP</comment>
- <comment xml:lang="ru">Изображение WBMP</comment>
- <comment xml:lang="sk">Obrázok WBMP</comment>
- <comment xml:lang="sl">Slikovna datoteka WBMP</comment>
- <comment xml:lang="sq">Figurë WBMP</comment>
- <comment xml:lang="sr">ВБМП слика</comment>
- <comment xml:lang="sv">WBMP-bild</comment>
- <comment xml:lang="tr">WBMP görüntüsü</comment>
- <comment xml:lang="uk">зображення WBMP</comment>
- <comment xml:lang="vi">Ảnh WBMP</comment>
- <comment xml:lang="zh_CN">WBMP 图像</comment>
<comment xml:lang="zh_TW">WBMP 影像</comment>
+ <comment xml:lang="zh_CN">WBMP 图像</comment>
+ <comment xml:lang="vi">Ảnh WBMP</comment>
+ <comment xml:lang="uk">зображення WBMP</comment>
+ <comment xml:lang="tr">WBMP görüntüsü</comment>
+ <comment xml:lang="sv">WBMP-bild</comment>
+ <comment xml:lang="sr">ВБМП слика</comment>
+ <comment xml:lang="sq">figurë WBMP</comment>
+ <comment xml:lang="sl">Slikovna datoteka WBMP</comment>
+ <comment xml:lang="si">WBMP රූපය</comment>
+ <comment xml:lang="sk">Obrázok WBMP</comment>
+ <comment xml:lang="ru">Изображение WBMP</comment>
+ <comment xml:lang="ro">Imagine WBMP</comment>
+ <comment xml:lang="pt_BR">Imagem WBMP</comment>
+ <comment xml:lang="pt">imagem WBMP</comment>
+ <comment xml:lang="pl">Obraz WBMP</comment>
+ <comment xml:lang="oc">imatge WBMP</comment>
+ <comment xml:lang="nn">WBMP-bilete</comment>
+ <comment xml:lang="nl">WBMP-afbeelding</comment>
+ <comment xml:lang="nb">WBMP-bilde</comment>
+ <comment xml:lang="lv">WBMP attēls</comment>
+ <comment xml:lang="lt">WBMP paveikslėlis</comment>
+ <comment xml:lang="ko">WBMP 그림</comment>
+ <comment xml:lang="kk">WBMP суреті</comment>
+ <comment xml:lang="ja">WBMP 画像</comment>
+ <comment xml:lang="it">Immagine WBMP</comment>
+ <comment xml:lang="is">WBMP mynd</comment>
+ <comment xml:lang="id">Citra WBMP</comment>
+ <comment xml:lang="ia">Imagine WBMP</comment>
+ <comment xml:lang="hu">WBMP kép</comment>
+ <comment xml:lang="hr">WBMP slika</comment>
+ <comment xml:lang="he">תמונת WBMP</comment>
+ <comment xml:lang="gl">imaxe WBMP</comment>
+ <comment xml:lang="ga">íomhá WBMP</comment>
+ <comment xml:lang="fur">imagjin WBMP</comment>
+ <comment xml:lang="fr">image WBMP</comment>
+ <comment xml:lang="fo">WBMP mynd</comment>
+ <comment xml:lang="fi">WBMP-kuva</comment>
+ <comment xml:lang="eu">WBMP irudia</comment>
+ <comment xml:lang="es">imagen WBMP</comment>
+ <comment xml:lang="eo">WBMP-bildo</comment>
+ <comment xml:lang="en_GB">WBMP image</comment>
+ <comment xml:lang="el">Εικόνα WBMP</comment>
+ <comment xml:lang="de">WBMP-Bild</comment>
+ <comment xml:lang="da">WBMP-billede</comment>
+ <comment xml:lang="cs">obrázek WBMP</comment>
+ <comment xml:lang="ca">imatge WBMP</comment>
+ <comment xml:lang="bg">Изображение — WBMP</comment>
+ <comment xml:lang="be@latin">Vyjava WBMP</comment>
+ <comment xml:lang="be">выява WBMP</comment>
+ <comment xml:lang="ar">صورة WBMP</comment>
+ <comment xml:lang="af">WBMP-beeld</comment>
<acronym>WBMP</acronym>
<expanded-acronym>WAP bitmap</expanded-acronym>
<glob pattern="*.wbmp"/>
</mime-type>
<mime-type type="image/cgm">
- <comment>Computer Graphics Metafile</comment>
- <comment xml:lang="ar">ملف تعريف رسوميات الحاسوب</comment>
- <comment xml:lang="az">Kompüter Qrafikası Meta Faylı</comment>
- <comment xml:lang="be@latin">Metafajł Computer Graphics</comment>
- <comment xml:lang="bg">Метафайл — Computer Graphics</comment>
- <comment xml:lang="ca">metafitxer de Computer Graphics</comment>
- <comment xml:lang="cs">Computer Graphics Metafile</comment>
- <comment xml:lang="cy">Delwedd ffurf CGM</comment>
- <comment xml:lang="da">Computer Graphics-metafil</comment>
- <comment xml:lang="de">CGM-Datei</comment>
- <comment xml:lang="el">Αρχείο Computer Graphics Metafile</comment>
- <comment xml:lang="en_GB">Computer Graphics Metafile</comment>
- <comment xml:lang="es">metaarchivo de Computer Graphics</comment>
- <comment xml:lang="eu">Ordenagailuko grafikoen meta-fitxategia</comment>
- <comment xml:lang="fi">Computer Graphics -metatiedosto</comment>
- <comment xml:lang="fo">Teldugrafikk metafíla</comment>
- <comment xml:lang="fr">métafichier Computer Graphics</comment>
- <comment xml:lang="ga">Meiteachomhad Grafaicí Ríomhaire</comment>
- <comment xml:lang="gl">metaficheiro de Computer Graphics</comment>
- <comment xml:lang="he">קובץ-מטה מסוג Computer Graphics</comment>
- <comment xml:lang="hr">Computer Graphics meta datoteka</comment>
- <comment xml:lang="hu">Computer Graphics-metafájl</comment>
- <comment xml:lang="ia">Metafile Computer Graphics</comment>
- <comment xml:lang="id">Computer Graphics Metafile</comment>
- <comment xml:lang="it">Computer Graphics Metafile</comment>
- <comment xml:lang="ja">コンピューターグラフィックメタファイル</comment>
- <comment xml:lang="kk">компьютерлік графика метафайлы</comment>
- <comment xml:lang="ko">컴퓨터 그래픽스 메타 파일</comment>
- <comment xml:lang="lt">Computer Graphics metafailas</comment>
- <comment xml:lang="lv">Datorgrafikas metadatne</comment>
- <comment xml:lang="ms">Failmeta Grafik Komputer</comment>
- <comment xml:lang="nb">Computer Graphics Metafile</comment>
- <comment xml:lang="nl">Computer Graphics-metabestand</comment>
- <comment xml:lang="nn">Computer Graphics Metafile</comment>
- <comment xml:lang="oc">metafichièr Computer Graphics</comment>
- <comment xml:lang="pl">Metaplik grafiki komputerowej (CGM)</comment>
- <comment xml:lang="pt">metaficheiro Computer Graphics</comment>
- <comment xml:lang="pt_BR">Meta-arquivo do Computer Graphics</comment>
- <comment xml:lang="ro">Metafișier Computer Graphics</comment>
- <comment xml:lang="ru">Метафайл компьютерной графики</comment>
- <comment xml:lang="sk">Computer Graphics Metafile</comment>
- <comment xml:lang="sl">Metadatoteka računalniške grafike (CGM)</comment>
- <comment xml:lang="sq">Metafile Computer Graphics</comment>
- <comment xml:lang="sr">Метадатотека рачунарске графике</comment>
- <comment xml:lang="sv">Computer Graphics Metafil</comment>
- <comment xml:lang="tr">Computer Graphics Meta dosyası</comment>
- <comment xml:lang="uk">метафайл комп'ютерної графіки</comment>
- <comment xml:lang="vi">Siêu tập tin đồ họa máy tính (CMF)</comment>
- <comment xml:lang="zh_CN">计算机图形图元文件 (CGM)</comment>
+ <comment>CGM image</comment>
<comment xml:lang="zh_TW">CGM 影像</comment>
+ <comment xml:lang="zh_CN">CGM 图像</comment>
+ <comment xml:lang="uk">зображення CGM</comment>
+ <comment xml:lang="tr">CGM görüntüsü</comment>
+ <comment xml:lang="sv">CGM-bild</comment>
+ <comment xml:lang="sq">figurë CGM</comment>
+ <comment xml:lang="sl">Slika CGM</comment>
+ <comment xml:lang="si">CGM රූපය</comment>
+ <comment xml:lang="sk">Obrázok CGM</comment>
+ <comment xml:lang="ru">Изображение CGM</comment>
+ <comment xml:lang="pt_BR">Imagem CGM</comment>
+ <comment xml:lang="pl">Obraz CGM</comment>
+ <comment xml:lang="oc">imatge CGM</comment>
+ <comment xml:lang="nl">CGM-afbeelding</comment>
+ <comment xml:lang="ko">CGM 이미지</comment>
+ <comment xml:lang="kk">CGM суреті</comment>
+ <comment xml:lang="ja">CGM 画像</comment>
+ <comment xml:lang="it">Immagine CGM</comment>
+ <comment xml:lang="is">CGM mynd</comment>
+ <comment xml:lang="id">Citra CGM</comment>
+ <comment xml:lang="hu">CGM-kép</comment>
+ <comment xml:lang="hr">CGM slika</comment>
+ <comment xml:lang="he">תמונת CGM</comment>
+ <comment xml:lang="fr">image CGM</comment>
+ <comment xml:lang="fi">CGM-kuva</comment>
+ <comment xml:lang="eu">CGM irudia</comment>
+ <comment xml:lang="es">imagen CGM</comment>
+ <comment xml:lang="en_GB">CGM image</comment>
+ <comment xml:lang="de">CGM-Bild</comment>
+ <comment xml:lang="da">CGM-billede</comment>
+ <comment xml:lang="ca">imatge CGM</comment>
+ <comment xml:lang="bg">Изображение — CGM</comment>
+ <comment xml:lang="be">выява CGM</comment>
+ <comment xml:lang="ar">صورة CGM</comment>
+ <acronym>CGM</acronym>
+ <expanded-acronym>Computer Graphics Metafile</expanded-acronym>
<glob pattern="*.cgm"/>
</mime-type>
- <mime-type type="image/fax-g3">
- <comment>CCITT G3 fax</comment>
- <comment xml:lang="ar">فاكس CCITT G3</comment>
- <comment xml:lang="be@latin">Faks CCITT G3</comment>
- <comment xml:lang="bg">Факс — CCITT G3</comment>
- <comment xml:lang="ca">fax CCITT G3</comment>
- <comment xml:lang="cs">fax CCITT G3</comment>
- <comment xml:lang="da">CCITT G3-fax</comment>
+ <mime-type type="image/g3fax">
+ <comment>CCITT G3 fax image</comment>
+ <comment xml:lang="zh_TW">CCITT G3 傳真影像</comment>
+ <comment xml:lang="zh_CN">CCITT G3 传真图像</comment>
+ <comment xml:lang="uk">зображення факсу G3 CCITT</comment>
+ <comment xml:lang="tr">CCITT G3 faks görüntüsü</comment>
+ <comment xml:lang="sv">CCITT G3 faxbild</comment>
+ <comment xml:lang="sq">figurë faks CCITT G3</comment>
+ <comment xml:lang="sl">Slikovna datoteka faksimila CCITT G3</comment>
+ <comment xml:lang="si">CCITT G3 ෆැක්ස් රූපය</comment>
+ <comment xml:lang="ru">Факсовое изображение CCITT G3</comment>
+ <comment xml:lang="pt_BR">Imagem de fax CCITT G3</comment>
+ <comment xml:lang="pl">Obraz faksowy G3 CCITT</comment>
+ <comment xml:lang="nl">CCITT G3-faxafbeelding</comment>
+ <comment xml:lang="ko">CCITT G3 팩스 이미지</comment>
+ <comment xml:lang="kk">CCITT G3 факс суреті</comment>
+ <comment xml:lang="ja">CCITT G3 ファックス画像</comment>
+ <comment xml:lang="it">Immagine fax CCIT G3</comment>
+ <comment xml:lang="is">CCITT G3 faxmynd</comment>
+ <comment xml:lang="id">Citra faks CCITT G3</comment>
+ <comment xml:lang="hu">CCITT G3-faxkép</comment>
+ <comment xml:lang="hr">CCITT G3 slika faksa</comment>
+ <comment xml:lang="he">תמונת פקס של CCITT G3</comment>
+ <comment xml:lang="fr">image de télécopie CCITT G3</comment>
+ <comment xml:lang="fi">CCITT G3 -faksikuva</comment>
+ <comment xml:lang="eu">CCITT G3 fax irudia</comment>
+ <comment xml:lang="es">imagen de fax CCITT G3</comment>
+ <comment xml:lang="en_GB">CCITT G3 fax image</comment>
<comment xml:lang="de">CCITT-G3-Fax</comment>
- <comment xml:lang="el">φαξ σε μορφή CCITT G3</comment>
- <comment xml:lang="en_GB">CCITT G3 fax</comment>
- <comment xml:lang="eo">G3-fakso de CCITT</comment>
- <comment xml:lang="es">fax de CCITT G3</comment>
- <comment xml:lang="eu">CCITT G3 faxa</comment>
- <comment xml:lang="fi">CCITT G3 -faksi</comment>
- <comment xml:lang="fo">CCITT G3 telefaks</comment>
- <comment xml:lang="fr">télécopie G3 CCITT</comment>
- <comment xml:lang="ga">facs CCITT G3</comment>
- <comment xml:lang="gl">fax de CCITT G3</comment>
- <comment xml:lang="he">פקס של CCITT G3</comment>
- <comment xml:lang="hr">CCITT G3 faks</comment>
- <comment xml:lang="hu">CCITT G3-fax</comment>
- <comment xml:lang="ia">Fax CCITT G3</comment>
- <comment xml:lang="id">Faks CCITT G3</comment>
- <comment xml:lang="it">Fax CCITT G3</comment>
- <comment xml:lang="ja">CCITT G3 FAX</comment>
- <comment xml:lang="ka">CCITT G3 ფაქსი</comment>
- <comment xml:lang="kk">CCITT G3 факсі</comment>
- <comment xml:lang="ko">CCITT G3 팩스</comment>
- <comment xml:lang="lt">CCITT G3 faksas</comment>
- <comment xml:lang="lv">CCITT G3 fakss</comment>
- <comment xml:lang="ms">Faks g3 CCITT</comment>
- <comment xml:lang="nb">CCITT G3-faks</comment>
- <comment xml:lang="nl">CCITT G3-fax</comment>
- <comment xml:lang="nn">CCITT G3-fax</comment>
- <comment xml:lang="oc">telecòpia G3 CCITT</comment>
- <comment xml:lang="pl">Faks CCITT G3</comment>
- <comment xml:lang="pt">fax CCITT G3</comment>
- <comment xml:lang="pt_BR">Fax do CCITT G3</comment>
- <comment xml:lang="ro">Fax CCITT G3</comment>
- <comment xml:lang="ru">Факс CCITT G3</comment>
- <comment xml:lang="sk">Fax CCITT G3</comment>
- <comment xml:lang="sl">Datoteka faksimila CCITT G3</comment>
- <comment xml:lang="sq">Fax CCITT G3</comment>
- <comment xml:lang="sr">ЦЦИТТ Г3 факс</comment>
- <comment xml:lang="sv">CCITT G3-fax</comment>
- <comment xml:lang="tr">CCITT G3 faksı</comment>
- <comment xml:lang="uk">факс CCITT G3</comment>
- <comment xml:lang="vi">Điện thư G3 CCITT</comment>
- <comment xml:lang="zh_CN">CCITT G3 传真</comment>
- <comment xml:lang="zh_TW">CCITT G3 傳真檔</comment>
+ <comment xml:lang="da">CCITT G3-faxbillede</comment>
+ <comment xml:lang="ca">imatge de fax CCITT G3</comment>
+ <comment xml:lang="bg">Изображение — CCITT G3, факс</comment>
+ <comment xml:lang="be">выява факса CCITT G3</comment>
+ <comment xml:lang="ar">صورة فاكس CCITT G3</comment>
+ <acronym>CCITT</acronym>
+ <expanded-acronym>Comité Consultatif International Téléphonique et Télégraphique</expanded-acronym>
<glob pattern="*.g3"/>
- </mime-type>
- <mime-type type="image/g3fax">
- <comment>G3 fax image</comment>
- <comment xml:lang="ar">صورة فاكس G3</comment>
- <comment xml:lang="az">G3 faks rəsmi</comment>
- <comment xml:lang="be@latin">Faksavaja vyjava G3</comment>
- <comment xml:lang="bg">Изображение — факс G3</comment>
- <comment xml:lang="ca">imatge de fax G3</comment>
- <comment xml:lang="cs">faxový obrázek G3</comment>
- <comment xml:lang="cy">Delwedd Ffacs G3</comment>
- <comment xml:lang="da">G3-faxbillede</comment>
- <comment xml:lang="de">G3-Faxbild</comment>
- <comment xml:lang="el">Εικόνα φαξ G3</comment>
- <comment xml:lang="en_GB">G3 fax image</comment>
- <comment xml:lang="eo">G3-faksbildo</comment>
- <comment xml:lang="es">imagen de fax G3</comment>
- <comment xml:lang="eu">G3 fax-irudia</comment>
- <comment xml:lang="fi">G3-faksikuva</comment>
- <comment xml:lang="fo">G3 fax mynd</comment>
- <comment xml:lang="fr">image de télécopie G3</comment>
- <comment xml:lang="ga">íomhá fhacs G3</comment>
- <comment xml:lang="gl">imaxe de fax G3</comment>
- <comment xml:lang="he">תמונת פקס של G3</comment>
- <comment xml:lang="hr">G3 slika faksa</comment>
- <comment xml:lang="hu">G3-faxkép</comment>
- <comment xml:lang="ia">Imagine de fax G3</comment>
- <comment xml:lang="id">Citra faks G3</comment>
- <comment xml:lang="it">Immagine fax G3</comment>
- <comment xml:lang="ja">G3 FAX 画像</comment>
- <comment xml:lang="ka">G3 fax გამოსახულება</comment>
- <comment xml:lang="kk">G3 факс суреті</comment>
- <comment xml:lang="ko">G3 팩스 그림</comment>
- <comment xml:lang="lt">G3 fax paveikslėlis</comment>
- <comment xml:lang="lv">G3 faksa attēls</comment>
- <comment xml:lang="ms">Imej fax G3</comment>
- <comment xml:lang="nb">G3-faksbilde</comment>
- <comment xml:lang="nl">G3 faxafbeelding</comment>
- <comment xml:lang="nn">G3 faksbilete</comment>
- <comment xml:lang="oc">imatge de telecòpia G3</comment>
- <comment xml:lang="pl">Obraz faksowy G3</comment>
- <comment xml:lang="pt">imagem de fax G3</comment>
- <comment xml:lang="pt_BR">Imagem de fax G3</comment>
- <comment xml:lang="ro">Imagine fax G3</comment>
- <comment xml:lang="ru">Факсовое изображение G3</comment>
- <comment xml:lang="sk">Obrázok fax G3</comment>
- <comment xml:lang="sl">Slikovna datoteka G3 fax</comment>
- <comment xml:lang="sq">Figurë Fax G3</comment>
- <comment xml:lang="sr">слика Г3 факса</comment>
- <comment xml:lang="sv">G3-faxbild</comment>
- <comment xml:lang="tr">G3 fax görüntüsü</comment>
- <comment xml:lang="uk">факс G3</comment>
- <comment xml:lang="vi">Ảnh điện thư G3</comment>
- <comment xml:lang="zh_CN">G3 传真图像</comment>
- <comment xml:lang="zh_TW">G3 傳真圖</comment>
+ <alias type="image/fax-g3"/>
</mime-type>
<mime-type type="image/gif">
<comment>GIF image</comment>
- <comment xml:lang="ar">صورة GIF</comment>
- <comment xml:lang="az">GIF rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava GIF</comment>
- <comment xml:lang="bg">Изображение — GIF</comment>
- <comment xml:lang="ca">imatge GIF</comment>
- <comment xml:lang="cs">obrázek GIF</comment>
- <comment xml:lang="cy">Delwedd GIF</comment>
- <comment xml:lang="da">GIF-billede</comment>
- <comment xml:lang="de">GIF-Bild</comment>
- <comment xml:lang="el">Εικόνα GIF</comment>
- <comment xml:lang="en_GB">GIF image</comment>
- <comment xml:lang="eo">GIF-bildo</comment>
- <comment xml:lang="es">imagen GIF</comment>
- <comment xml:lang="eu">GIF irudia</comment>
- <comment xml:lang="fi">GIF-kuva</comment>
- <comment xml:lang="fo">GIF mynd</comment>
- <comment xml:lang="fr">image GIF</comment>
- <comment xml:lang="ga">íomhá GIF</comment>
- <comment xml:lang="gl">imaxe GIF</comment>
- <comment xml:lang="he">תמונת GIF</comment>
- <comment xml:lang="hr">GIF slika</comment>
- <comment xml:lang="hu">GIF-kép</comment>
- <comment xml:lang="ia">Imagine GIF</comment>
- <comment xml:lang="id">Citra GIF</comment>
- <comment xml:lang="it">Immagine GIF</comment>
- <comment xml:lang="ja">GIF 画像</comment>
- <comment xml:lang="ka">GIF გამოსახულება</comment>
- <comment xml:lang="kk">GIF суреті</comment>
- <comment xml:lang="ko">GIF 그림</comment>
- <comment xml:lang="lt">GIF paveikslėlis</comment>
- <comment xml:lang="lv">GIF attēls</comment>
- <comment xml:lang="ms">Imej GIF</comment>
- <comment xml:lang="nb">GIF-bilde</comment>
- <comment xml:lang="nl">GIF-afbeelding</comment>
- <comment xml:lang="nn">GIF-bilete</comment>
- <comment xml:lang="oc">imatge GIF</comment>
- <comment xml:lang="pl">Obraz GIF</comment>
- <comment xml:lang="pt">imagem GIF</comment>
- <comment xml:lang="pt_BR">Imagem GIF</comment>
- <comment xml:lang="ro">Imagine GIF</comment>
- <comment xml:lang="ru">Изображение GIF</comment>
- <comment xml:lang="sk">Obrázok GIF</comment>
- <comment xml:lang="sl">Slikovna datoteka GIF</comment>
- <comment xml:lang="sq">Figurë GIF</comment>
- <comment xml:lang="sr">ГИФ слика</comment>
- <comment xml:lang="sv">GIF-bild</comment>
- <comment xml:lang="tr">GIF görüntüsü</comment>
- <comment xml:lang="uk">зображення GIF</comment>
- <comment xml:lang="vi">Ảnh GIF</comment>
- <comment xml:lang="zh_CN">GIF 图像</comment>
<comment xml:lang="zh_TW">GIF 影像</comment>
- <magic priority="50">
- <match value="GIF8" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">GIF 图像</comment>
+ <comment xml:lang="vi">Ảnh GIF</comment>
+ <comment xml:lang="uk">зображення GIF</comment>
+ <comment xml:lang="tr">GIF görüntüsü</comment>
+ <comment xml:lang="sv">GIF-bild</comment>
+ <comment xml:lang="sr">ГИФ слика</comment>
+ <comment xml:lang="sq">figurë GIF</comment>
+ <comment xml:lang="sl">Slikovna datoteka GIF</comment>
+ <comment xml:lang="si">GIF රූපය</comment>
+ <comment xml:lang="sk">Obrázok GIF</comment>
+ <comment xml:lang="ru">Изображение GIF</comment>
+ <comment xml:lang="ro">Imagine GIF</comment>
+ <comment xml:lang="pt_BR">Imagem GIF</comment>
+ <comment xml:lang="pt">imagem GIF</comment>
+ <comment xml:lang="pl">Obraz GIF</comment>
+ <comment xml:lang="oc">imatge GIF</comment>
+ <comment xml:lang="nn">GIF-bilete</comment>
+ <comment xml:lang="nl">GIF-afbeelding</comment>
+ <comment xml:lang="nb">GIF-bilde</comment>
+ <comment xml:lang="ms">Imej GIF</comment>
+ <comment xml:lang="lv">GIF attēls</comment>
+ <comment xml:lang="lt">GIF paveikslėlis</comment>
+ <comment xml:lang="ko">GIF 그림</comment>
+ <comment xml:lang="kk">GIF суреті</comment>
+ <comment xml:lang="ka">GIF გამოსახულება</comment>
+ <comment xml:lang="ja">GIF 画像</comment>
+ <comment xml:lang="it">Immagine GIF</comment>
+ <comment xml:lang="is">GIF mynd</comment>
+ <comment xml:lang="id">Citra GIF</comment>
+ <comment xml:lang="ia">Imagine GIF</comment>
+ <comment xml:lang="hu">GIF-kép</comment>
+ <comment xml:lang="hr">GIF slika</comment>
+ <comment xml:lang="he">תמונת GIF</comment>
+ <comment xml:lang="gl">imaxe GIF</comment>
+ <comment xml:lang="ga">íomhá GIF</comment>
+ <comment xml:lang="fur">imagjin GIF</comment>
+ <comment xml:lang="fr">image GIF</comment>
+ <comment xml:lang="fo">GIF mynd</comment>
+ <comment xml:lang="fi">GIF-kuva</comment>
+ <comment xml:lang="eu">GIF irudia</comment>
+ <comment xml:lang="es">imagen GIF</comment>
+ <comment xml:lang="eo">GIF-bildo</comment>
+ <comment xml:lang="en_GB">GIF image</comment>
+ <comment xml:lang="el">Εικόνα GIF</comment>
+ <comment xml:lang="de">GIF-Bild</comment>
+ <comment xml:lang="da">GIF-billede</comment>
+ <comment xml:lang="cy">Delwedd GIF</comment>
+ <comment xml:lang="cs">obrázek GIF</comment>
+ <comment xml:lang="ca">imatge GIF</comment>
+ <comment xml:lang="bg">Изображение — GIF</comment>
+ <comment xml:lang="be@latin">Vyjava GIF</comment>
+ <comment xml:lang="be">выява GIF</comment>
+ <comment xml:lang="az">GIF rəsmi</comment>
+ <comment xml:lang="ar">صورة GIF</comment>
+ <comment xml:lang="af">GIF-beeld</comment>
+ <acronym>GIF</acronym>
+ <expanded-acronym>Graphics Interchange Format</expanded-acronym>
+ <magic>
+ <match type="string" value="GIF8" offset="0"/>
</magic>
<glob pattern="*.gif"/>
</mime-type>
<mime-type type="image/heif">
<comment>HEIF image</comment>
+ <comment xml:lang="zh_TW">HEIF 影像</comment>
+ <comment xml:lang="zh_CN">HEIF 图像</comment>
+ <comment xml:lang="uk">зображення HEIF</comment>
+ <comment xml:lang="tr">HEIF görüntüsü</comment>
+ <comment xml:lang="sv">HEIF-bild</comment>
+ <comment xml:lang="sq">figurë HEIF</comment>
+ <comment xml:lang="sl">Slika HEIF</comment>
+ <comment xml:lang="si">HEIF රූපය</comment>
+ <comment xml:lang="sk">Obrázok HEIF</comment>
+ <comment xml:lang="ru">Изображение HEIF</comment>
+ <comment xml:lang="pt_BR">Imagem HEIF</comment>
+ <comment xml:lang="pl">Obraz HEIF</comment>
+ <comment xml:lang="nl">HEIF-afbeelding</comment>
+ <comment xml:lang="ko">HEIF 그림</comment>
+ <comment xml:lang="kk">HEIF суреті</comment>
+ <comment xml:lang="ja">HEIF 画像</comment>
+ <comment xml:lang="it">Immagine HEIF</comment>
+ <comment xml:lang="is">HEIF mynd</comment>
+ <comment xml:lang="id">Citra HEIF</comment>
+ <comment xml:lang="hu">HEIF kép</comment>
+ <comment xml:lang="hr">HEIF slika</comment>
+ <comment xml:lang="he">תמונת HEIF</comment>
+ <comment xml:lang="ga">íomhá HEIF</comment>
+ <comment xml:lang="fur">imagjin HEIF</comment>
+ <comment xml:lang="fr">image HEIF</comment>
+ <comment xml:lang="fi">HEIF-kuva</comment>
+ <comment xml:lang="eu">HEIF irudia</comment>
+ <comment xml:lang="es">imagen HEIF</comment>
+ <comment xml:lang="en_GB">HEIF image</comment>
+ <comment xml:lang="de">HEIF-Bild</comment>
+ <comment xml:lang="da">HEIF-billede</comment>
+ <comment xml:lang="cs">obrázek HEIF</comment>
+ <comment xml:lang="ca">imatge HEIF</comment>
+ <comment xml:lang="bg">Изображение — HEIF</comment>
+ <comment xml:lang="be">выява HEIF</comment>
+ <comment xml:lang="ar">صورة HEIF</comment>
+ <comment xml:lang="af">HEIF-beeld</comment>
<acronym>HEIF</acronym>
<expanded-acronym>High Efficiency Image File</expanded-acronym>
+ <magic priority="40">
+ <!-- less than AVIF due to ftypmif1 -->
+ <match type="string" value="ftypmif1" offset="4"/>
+ <match type="string" value="ftypmsf1" offset="4"/>
+ <match type="string" value="ftypheic" offset="4"/>
+ <match type="string" value="ftypheix" offset="4"/>
+ <match type="string" value="ftyphevc" offset="4"/>
+ <match type="string" value="ftyphevx" offset="4"/>
+ </magic>
<glob pattern="*.heic"/>
<glob pattern="*.heif"/>
+ <glob pattern="*.hif"/>
<alias type="image/heic"/>
<alias type="image/heic-sequence"/>
<alias type="image/heif-sequence"/>
</mime-type>
<mime-type type="image/ief">
<comment>IEF image</comment>
- <comment xml:lang="ar">صورة IEF</comment>
- <comment xml:lang="az">IEF rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava IEF</comment>
- <comment xml:lang="bg">Изображение — IEF</comment>
- <comment xml:lang="ca">imatge IEF</comment>
- <comment xml:lang="cs">obrázek IEF</comment>
- <comment xml:lang="cy">Delwedd IEF</comment>
- <comment xml:lang="da">IEF-billede</comment>
- <comment xml:lang="de">IEF-Bild</comment>
- <comment xml:lang="el">Εικόνα IEF</comment>
- <comment xml:lang="en_GB">IEF image</comment>
- <comment xml:lang="eo">IEF-bildo</comment>
- <comment xml:lang="es">imagen IEF</comment>
- <comment xml:lang="eu">IEF irudia</comment>
- <comment xml:lang="fi">IEF-kuva</comment>
- <comment xml:lang="fo">IEF mynd</comment>
- <comment xml:lang="fr">image IEF</comment>
- <comment xml:lang="ga">íomhá IEF</comment>
- <comment xml:lang="gl">imaxe IEF</comment>
- <comment xml:lang="he">תמונת IEF</comment>
- <comment xml:lang="hr">IEF slika</comment>
- <comment xml:lang="hu">IEF-kép</comment>
- <comment xml:lang="ia">Imagine IEF</comment>
- <comment xml:lang="id">Citra IEF</comment>
- <comment xml:lang="it">Immagine IEF</comment>
- <comment xml:lang="ja">IEF 画像</comment>
- <comment xml:lang="kk">IEF суреті</comment>
- <comment xml:lang="ko">IEF 그림</comment>
- <comment xml:lang="lt">IEF paveikslėlis</comment>
- <comment xml:lang="lv">IEF attēls</comment>
- <comment xml:lang="ms">Imej IEF</comment>
- <comment xml:lang="nb">IEF-bilde</comment>
- <comment xml:lang="nl">IEF-afbeelding</comment>
- <comment xml:lang="nn">IEF-bilete</comment>
- <comment xml:lang="oc">imatge IEF</comment>
- <comment xml:lang="pl">Obraz IEF</comment>
- <comment xml:lang="pt">imagem IEF</comment>
- <comment xml:lang="pt_BR">Imagem IEF</comment>
- <comment xml:lang="ro">Imagine IEF</comment>
- <comment xml:lang="ru">Изображение IEF</comment>
- <comment xml:lang="sk">Obrázok IEF</comment>
- <comment xml:lang="sl">Slikovna datoteka IEF</comment>
- <comment xml:lang="sq">Figurë IEF</comment>
- <comment xml:lang="sr">ИЕФ слика</comment>
- <comment xml:lang="sv">IEF-bild</comment>
- <comment xml:lang="tr">IEF görüntüsü</comment>
- <comment xml:lang="uk">зображення IEF</comment>
- <comment xml:lang="vi">Ảnh IEF</comment>
- <comment xml:lang="zh_CN">IEF 图像</comment>
<comment xml:lang="zh_TW">IEF 影像</comment>
+ <comment xml:lang="zh_CN">IEF 图像</comment>
+ <comment xml:lang="vi">Ảnh IEF</comment>
+ <comment xml:lang="uk">зображення IEF</comment>
+ <comment xml:lang="tr">IEF görüntüsü</comment>
+ <comment xml:lang="sv">IEF-bild</comment>
+ <comment xml:lang="sr">ИЕФ слика</comment>
+ <comment xml:lang="sq">figurë IEF</comment>
+ <comment xml:lang="sl">Slikovna datoteka IEF</comment>
+ <comment xml:lang="si">IEF රූපය</comment>
+ <comment xml:lang="sk">Obrázok IEF</comment>
+ <comment xml:lang="ru">Изображение IEF</comment>
+ <comment xml:lang="ro">Imagine IEF</comment>
+ <comment xml:lang="pt_BR">Imagem IEF</comment>
+ <comment xml:lang="pt">imagem IEF</comment>
+ <comment xml:lang="pl">Obraz IEF</comment>
+ <comment xml:lang="oc">imatge IEF</comment>
+ <comment xml:lang="nn">IEF-bilete</comment>
+ <comment xml:lang="nl">IEF-afbeelding</comment>
+ <comment xml:lang="nb">IEF-bilde</comment>
+ <comment xml:lang="ms">Imej IEF</comment>
+ <comment xml:lang="lv">IEF attēls</comment>
+ <comment xml:lang="lt">IEF paveikslėlis</comment>
+ <comment xml:lang="ko">IEF 그림</comment>
+ <comment xml:lang="kk">IEF суреті</comment>
+ <comment xml:lang="ja">IEF 画像</comment>
+ <comment xml:lang="it">Immagine IEF</comment>
+ <comment xml:lang="is">IEF mynd</comment>
+ <comment xml:lang="id">Citra IEF</comment>
+ <comment xml:lang="ia">Imagine IEF</comment>
+ <comment xml:lang="hu">IEF-kép</comment>
+ <comment xml:lang="hr">IEF slika</comment>
+ <comment xml:lang="he">תמונת IEF</comment>
+ <comment xml:lang="gl">imaxe IEF</comment>
+ <comment xml:lang="ga">íomhá IEF</comment>
+ <comment xml:lang="fur">imagjin IEF</comment>
+ <comment xml:lang="fr">image IEF</comment>
+ <comment xml:lang="fo">IEF mynd</comment>
+ <comment xml:lang="fi">IEF-kuva</comment>
+ <comment xml:lang="eu">IEF irudia</comment>
+ <comment xml:lang="es">imagen IEF</comment>
+ <comment xml:lang="eo">IEF-bildo</comment>
+ <comment xml:lang="en_GB">IEF image</comment>
+ <comment xml:lang="el">Εικόνα IEF</comment>
+ <comment xml:lang="de">IEF-Bild</comment>
+ <comment xml:lang="da">IEF-billede</comment>
+ <comment xml:lang="cy">Delwedd IEF</comment>
+ <comment xml:lang="cs">obrázek IEF</comment>
+ <comment xml:lang="ca">imatge IEF</comment>
+ <comment xml:lang="bg">Изображение — IEF</comment>
+ <comment xml:lang="be@latin">Vyjava IEF</comment>
+ <comment xml:lang="be">выява IEF</comment>
+ <comment xml:lang="az">IEF rəsmi</comment>
+ <comment xml:lang="ar">صورة IEF</comment>
+ <comment xml:lang="af">IEF-beeld</comment>
<glob pattern="*.ief"/>
</mime-type>
<mime-type type="image/jpeg">
<comment>JPEG image</comment>
- <comment xml:lang="ar">صورة JPEG</comment>
- <comment xml:lang="az">JPEG rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava JPEG</comment>
- <comment xml:lang="bg">Изображение — JPEG</comment>
- <comment xml:lang="ca">imatge JPEG</comment>
- <comment xml:lang="cs">obrázek JPEG</comment>
- <comment xml:lang="cy">Delwedd JPEG</comment>
- <comment xml:lang="da">JPEG-billede</comment>
- <comment xml:lang="de">JPEG-Bild</comment>
- <comment xml:lang="el">Εικόνα JPEG</comment>
- <comment xml:lang="en_GB">JPEG image</comment>
- <comment xml:lang="eo">JPEG-bildo</comment>
- <comment xml:lang="es">imagen JPEG</comment>
- <comment xml:lang="eu">JPEG irudia</comment>
- <comment xml:lang="fi">JPEG-kuva</comment>
- <comment xml:lang="fo">JPEG mynd</comment>
- <comment xml:lang="fr">image JPEG</comment>
- <comment xml:lang="ga">íomhá JPEG</comment>
- <comment xml:lang="gl">imaxe JPEG</comment>
- <comment xml:lang="he">תמונת JPEG</comment>
- <comment xml:lang="hr">JPEG slika</comment>
- <comment xml:lang="hu">JPEG-kép</comment>
- <comment xml:lang="ia">Imagine JPEG</comment>
- <comment xml:lang="id">Citra JPEG</comment>
- <comment xml:lang="it">Immagine JPEG</comment>
- <comment xml:lang="ja">JPEG 画像 </comment>
- <comment xml:lang="kk">JPEG суреті</comment>
- <comment xml:lang="ko">JPEG 그림</comment>
- <comment xml:lang="lt">JPEG paveikslėlis</comment>
- <comment xml:lang="lv">JPEG attēls</comment>
- <comment xml:lang="ms">Imej JPEG</comment>
- <comment xml:lang="nb">JPEG-bilde</comment>
- <comment xml:lang="nl">JPEG-afbeelding</comment>
- <comment xml:lang="nn">JPEG-bilete</comment>
- <comment xml:lang="oc">imatge JPEG</comment>
- <comment xml:lang="pl">Obraz JPEG</comment>
- <comment xml:lang="pt">imagem JPEG</comment>
- <comment xml:lang="pt_BR">Imagem JPEG</comment>
- <comment xml:lang="ro">Imagine JPEG</comment>
- <comment xml:lang="ru">Изображение JPEG</comment>
- <comment xml:lang="sk">Obrázok JPEG</comment>
- <comment xml:lang="sl">Slikovna datoteka JPEG</comment>
- <comment xml:lang="sq">Figurë JPEG</comment>
- <comment xml:lang="sr">ЈПЕГ слика</comment>
- <comment xml:lang="sv">JPEG-bild</comment>
- <comment xml:lang="tr">JPEG görüntüsü</comment>
- <comment xml:lang="uk">зображення JPEG</comment>
- <comment xml:lang="vi">Ảnh JPEG</comment>
- <comment xml:lang="zh_CN">JPEG 图像</comment>
<comment xml:lang="zh_TW">JPEG 影像</comment>
- <magic priority="50">
- <match value="\377\330\377" type="string" offset="0"/>
- <match value="0xffd8" type="big16" offset="0"/>
+ <comment xml:lang="zh_CN">JPEG 图像</comment>
+ <comment xml:lang="vi">Ảnh JPEG</comment>
+ <comment xml:lang="uk">зображення JPEG</comment>
+ <comment xml:lang="tr">JPEG görüntüsü</comment>
+ <comment xml:lang="sv">JPEG-bild</comment>
+ <comment xml:lang="sr">ЈПЕГ слика</comment>
+ <comment xml:lang="sq">figurë JPEG</comment>
+ <comment xml:lang="sl">Slikovna datoteka JPEG</comment>
+ <comment xml:lang="si">JPEG රූපය</comment>
+ <comment xml:lang="sk">Obrázok JPEG</comment>
+ <comment xml:lang="ru">Изображение JPEG</comment>
+ <comment xml:lang="ro">Imagine JPEG</comment>
+ <comment xml:lang="pt_BR">Imagem JPEG</comment>
+ <comment xml:lang="pt">imagem JPEG</comment>
+ <comment xml:lang="pl">Obraz JPEG</comment>
+ <comment xml:lang="oc">imatge JPEG</comment>
+ <comment xml:lang="nn">JPEG-bilete</comment>
+ <comment xml:lang="nl">JPEG-afbeelding</comment>
+ <comment xml:lang="nb">JPEG-bilde</comment>
+ <comment xml:lang="ms">Imej JPEG</comment>
+ <comment xml:lang="lv">JPEG attēls</comment>
+ <comment xml:lang="lt">JPEG paveikslėlis</comment>
+ <comment xml:lang="ko">JPEG 그림</comment>
+ <comment xml:lang="kk">JPEG суреті</comment>
+ <comment xml:lang="ka">JPEG გამოსახულება</comment>
+ <comment xml:lang="ja">JPEG 画像 </comment>
+ <comment xml:lang="it">Immagine JPEG</comment>
+ <comment xml:lang="is">JPEG mynd</comment>
+ <comment xml:lang="id">Citra JPEG</comment>
+ <comment xml:lang="ia">Imagine JPEG</comment>
+ <comment xml:lang="hu">JPEG-kép</comment>
+ <comment xml:lang="hr">JPEG slika</comment>
+ <comment xml:lang="he">תמונת JPEG</comment>
+ <comment xml:lang="gl">imaxe JPEG</comment>
+ <comment xml:lang="ga">íomhá JPEG</comment>
+ <comment xml:lang="fur">imagjin JPEG</comment>
+ <comment xml:lang="fr">image JPEG</comment>
+ <comment xml:lang="fo">JPEG mynd</comment>
+ <comment xml:lang="fi">JPEG-kuva</comment>
+ <comment xml:lang="eu">JPEG irudia</comment>
+ <comment xml:lang="es">imagen JPEG</comment>
+ <comment xml:lang="eo">JPEG-bildo</comment>
+ <comment xml:lang="en_GB">JPEG image</comment>
+ <comment xml:lang="el">Εικόνα JPEG</comment>
+ <comment xml:lang="de">JPEG-Bild</comment>
+ <comment xml:lang="da">JPEG-billede</comment>
+ <comment xml:lang="cy">Delwedd JPEG</comment>
+ <comment xml:lang="cs">obrázek JPEG</comment>
+ <comment xml:lang="ca">imatge JPEG</comment>
+ <comment xml:lang="bg">Изображение — JPEG</comment>
+ <comment xml:lang="be@latin">Vyjava JPEG</comment>
+ <comment xml:lang="be">выява JPEG</comment>
+ <comment xml:lang="az">JPEG rəsmi</comment>
+ <comment xml:lang="ar">صورة JPEG</comment>
+ <comment xml:lang="af">JPEG-beeld</comment>
+ <acronym>JPEG</acronym>
+ <expanded-acronym>Joint Photographic Experts Group</expanded-acronym>
+ <magic>
+ <match type="string" value="\377\330\377" offset="0"/>
+ <match type="big16" value="0xffd8" offset="0"/>
</magic>
- <glob pattern="*.jpeg"/>
<glob pattern="*.jpg"/>
+ <glob pattern="*.jpeg"/>
<glob pattern="*.jpe"/>
+ <glob pattern="*.jfif"/>
<alias type="image/pjpeg"/>
</mime-type>
<mime-type type="video/x-mjpeg">
<comment>MJPEG video stream</comment>
+ <comment xml:lang="zh_TW">MJPEG 視訊串流</comment>
+ <comment xml:lang="zh_CN">MJPEG 视频流</comment>
+ <comment xml:lang="uk">відеопотік MJPEG</comment>
+ <comment xml:lang="tr">MJPEG video akışı</comment>
+ <comment xml:lang="sv">MJPEG-videoström</comment>
+ <comment xml:lang="sq">transmetim video MJEPG</comment>
+ <comment xml:lang="si">MJPEG වීඩියෝ ප්‍රවාහය</comment>
+ <comment xml:lang="sk">Stream videa MJPEG</comment>
+ <comment xml:lang="ru">Видеопоток MJPEG</comment>
+ <comment xml:lang="pt_BR">Fluxo de vídeo MPEG</comment>
+ <comment xml:lang="pl">Strumień wideo MJPEG</comment>
+ <comment xml:lang="nl">MJPEG-video-stream</comment>
+ <comment xml:lang="lt">MJPEG vaizdo srautas</comment>
+ <comment xml:lang="ko">MJPEG 동영상 스트림</comment>
+ <comment xml:lang="kk">MJPEG видео ағыны</comment>
+ <comment xml:lang="ja">MJPEG 動画ストリーム</comment>
+ <comment xml:lang="it">Stream video MJPEG</comment>
+ <comment xml:lang="is">MJPEG myndmerkisstreymi</comment>
+ <comment xml:lang="id">Stream video MJPEG</comment>
+ <comment xml:lang="hu">MJPEG videofolyam</comment>
+ <comment xml:lang="hr">Prijenos MJPEG videa</comment>
+ <comment xml:lang="he">תזרים וידאו MJPEG</comment>
+ <comment xml:lang="ga">sruth físe MJPEG</comment>
+ <comment xml:lang="fur">trasmission video MJPEG</comment>
+ <comment xml:lang="fr">flux vidéo MJPEG</comment>
+ <comment xml:lang="fi">MJPEG-videon suoratoisto</comment>
+ <comment xml:lang="eu">MJPEG bideo korrontea</comment>
+ <comment xml:lang="es">videotransmisión MJPEG</comment>
+ <comment xml:lang="en_GB">MJPEG video stream</comment>
+ <comment xml:lang="de">MJPEG-Videodatenstrom</comment>
+ <comment xml:lang="da">MJPEG-videostrøm</comment>
+ <comment xml:lang="cs">datový tok videa MJPEG</comment>
+ <comment xml:lang="ca">flux de vídeo MJPEG</comment>
+ <comment xml:lang="bg">Поток — MJPEG, видео</comment>
+ <comment xml:lang="be">плынь відэа MJPEG</comment>
+ <comment xml:lang="ar">دفق فيديو MJPEG</comment>
+ <comment xml:lang="af">MJPEG-videostroom</comment>
<acronym>MJPEG</acronym>
<expanded-acronym>Motion JPEG</expanded-acronym>
<sub-class-of type="image/jpeg"/>
@@ -25465,27 +27719,42 @@
</mime-type>
<mime-type type="image/x-jp2-codestream">
<comment>JPEG-2000 codestream</comment>
- <comment xml:lang="ca">flux de codis JPEG-2000</comment>
- <comment xml:lang="cs">datový tok JPEG-2000</comment>
- <comment xml:lang="de">JPEG-2000 Codestream</comment>
- <comment xml:lang="en_GB">JPEG-2000 codestream</comment>
- <comment xml:lang="es">secuencia de código JPEG-2000</comment>
- <comment xml:lang="hr">JPEG-2000 kôd strujanja</comment>
- <comment xml:lang="hu">JPEG-2000 kódfolyam</comment>
- <comment xml:lang="id">codestream JPEG-2000</comment>
- <comment xml:lang="it">Codestream JPEG-2000</comment>
- <comment xml:lang="kk">JPEG-2000 код ағыны</comment>
- <comment xml:lang="ko">JPEG-2000 코드스트림</comment>
- <comment xml:lang="pl">Strumień kodu JPEG-2000</comment>
- <comment xml:lang="pt_BR">Imagem JPEG-2000</comment>
- <comment xml:lang="ru">Кодовый поток JPEG-2000</comment>
- <comment xml:lang="sk">JPEG-2000 codestream</comment>
- <comment xml:lang="sv">JPEG-2000-kodström</comment>
- <comment xml:lang="uk">потік коду JPEG-2000</comment>
- <comment xml:lang="zh_CN">JPEG-2000 码流</comment>
<comment xml:lang="zh_TW">JPEG-2000 代碼串流</comment>
- <magic priority="50">
- <match value="0xff4fff51" type="big32" offset="0"/>
+ <comment xml:lang="zh_CN">JPEG-2000 码流</comment>
+ <comment xml:lang="uk">потік коду JPEG-2000</comment>
+ <comment xml:lang="tr">JPEG-2000 codestream</comment>
+ <comment xml:lang="sv">JPEG-2000-kodström</comment>
+ <comment xml:lang="si">JPEG-2000 කේත ප්‍රවාහය</comment>
+ <comment xml:lang="sk">JPEG-2000 codestream</comment>
+ <comment xml:lang="ru">Кодовый поток JPEG-2000</comment>
+ <comment xml:lang="pt_BR">Imagem JPEG-2000</comment>
+ <comment xml:lang="pl">Strumień kodu JPEG-2000</comment>
+ <comment xml:lang="nl">JPEG-2000-codestream</comment>
+ <comment xml:lang="ko">JPEG-2000 코드스트림</comment>
+ <comment xml:lang="kk">JPEG-2000 код ағыны</comment>
+ <comment xml:lang="ja">JPEG-2000 コードストリーム</comment>
+ <comment xml:lang="it">Codestream JPEG-2000</comment>
+ <comment xml:lang="is">JPEG-2000 kóðastreymi</comment>
+ <comment xml:lang="id">Codestream JPEG-2000</comment>
+ <comment xml:lang="hu">JPEG-2000 kódfolyam</comment>
+ <comment xml:lang="hr">JPEG-2000 kôd strujanja</comment>
+ <comment xml:lang="he">תזרים קוד JPEG-2000</comment>
+ <comment xml:lang="ga">códsruth JPEG-2000</comment>
+ <comment xml:lang="fur">trasmission codiç JPEG-2000</comment>
+ <comment xml:lang="fr">flux de code JPEG-2000</comment>
+ <comment xml:lang="fi">JPEG-2000-koodivirta</comment>
+ <comment xml:lang="eu">JPEG-2000 kodekorrontea</comment>
+ <comment xml:lang="es">secuencia de código JPEG-2000</comment>
+ <comment xml:lang="en_GB">JPEG-2000 codestream</comment>
+ <comment xml:lang="de">JPEG-2000 Codestream</comment>
+ <comment xml:lang="da">JPEG-2000-kodestrøm</comment>
+ <comment xml:lang="cs">datový tok JPEG-2000</comment>
+ <comment xml:lang="ca">flux de codis JPEG-2000</comment>
+ <comment xml:lang="bg">Поток — JPEG-2000, кодирано</comment>
+ <comment xml:lang="be">плынь кода JPEG-2000</comment>
+ <comment xml:lang="ar">تيار شفرة JPEG-2000</comment>
+ <magic>
+ <match type="big32" value="0xff4fff51" offset="0"/>
</magic>
<glob pattern="*.j2c"/>
<glob pattern="*.j2k"/>
@@ -25493,176 +27762,274 @@
</mime-type>
<mime-type type="image/jp2">
<comment>JPEG-2000 JP2 image</comment>
- <comment xml:lang="ca">imatge JPEG-2000 JP2</comment>
- <comment xml:lang="cs">obrázek JPEG-2000 JP2</comment>
- <comment xml:lang="de">JPEG-2000 JP2-Bild</comment>
- <comment xml:lang="en_GB">JPEG-2000 JP2 image</comment>
- <comment xml:lang="es">imagen JPEG-2000 JP2</comment>
- <comment xml:lang="fi">JPEG-2000 JP2 -kuva</comment>
- <comment xml:lang="hr">JPEG-2000 JP2 slika</comment>
- <comment xml:lang="hu">JPEG-2000 JP2 kép</comment>
- <comment xml:lang="id">Citra JPEG-2000 JP2</comment>
- <comment xml:lang="it">Immagine JPEG-2000 JP2</comment>
- <comment xml:lang="kk">JPEG-2000 JP2 суреті</comment>
- <comment xml:lang="ko">JPEG-2000 JP2 그림</comment>
- <comment xml:lang="pl">Obraz JP2 JPEG-2000</comment>
- <comment xml:lang="pt_BR">Imagem JP2 de JPEG-2000</comment>
- <comment xml:lang="ru">Изоражение JPEG-2000 JP2</comment>
- <comment xml:lang="sk">Obrázok JPEG-2000 JP2</comment>
- <comment xml:lang="sv">JPEG-2000 JP2-bild</comment>
- <comment xml:lang="uk">зображення JP2 JPEG-2000</comment>
- <comment xml:lang="zh_CN">JPEG-2000 JP2 图像</comment>
<comment xml:lang="zh_TW">JPEG-2000 JP2 影像</comment>
+ <comment xml:lang="zh_CN">JPEG-2000 JP2 图像</comment>
+ <comment xml:lang="uk">зображення JP2 JPEG-2000</comment>
+ <comment xml:lang="tr">JPEG-2000 JP2 görüntüsü</comment>
+ <comment xml:lang="sv">JPEG-2000 JP2-bild</comment>
+ <comment xml:lang="sq">figurë JPEG-2000 JP2</comment>
+ <comment xml:lang="sl">Slika JPEG-2000 JP2</comment>
+ <comment xml:lang="si">JPEG-2000 JP2 රූපය</comment>
+ <comment xml:lang="sk">Obrázok JPEG-2000 JP2</comment>
+ <comment xml:lang="ru">Изображение JPEG-2000 JP2</comment>
+ <comment xml:lang="pt_BR">Imagem JP2 de JPEG-2000</comment>
+ <comment xml:lang="pl">Obraz JP2 JPEG-2000</comment>
+ <comment xml:lang="oc">imatge JPEG-2000 JP2</comment>
+ <comment xml:lang="nl">JPEG-2000 JP2-afbeelding</comment>
+ <comment xml:lang="ko">JPEG-2000 JP2 그림</comment>
+ <comment xml:lang="kk">JPEG-2000 JP2 суреті</comment>
+ <comment xml:lang="ja">JPEG-2000 JP2 画像</comment>
+ <comment xml:lang="it">Immagine JPEG-2000 JP2</comment>
+ <comment xml:lang="is">JPEG-2000 JP2 mynd</comment>
+ <comment xml:lang="id">Citra JPEG-2000 JP2</comment>
+ <comment xml:lang="hu">JPEG-2000 JP2 kép</comment>
+ <comment xml:lang="hr">JPEG-2000 JP2 slika</comment>
+ <comment xml:lang="he">תמונת JP2 של JPEG-2000</comment>
+ <comment xml:lang="ga">íomhá JPEG-2000 JP2</comment>
+ <comment xml:lang="fur">imagjin JPEG-2000 JP2</comment>
+ <comment xml:lang="fr">image JPEG-2000 JP2</comment>
+ <comment xml:lang="fi">JPEG-2000 JP2 -kuva</comment>
+ <comment xml:lang="eu">JPEG-2000 JP2 irudia</comment>
+ <comment xml:lang="es">imagen JPEG-2000 JP2</comment>
+ <comment xml:lang="en_GB">JPEG-2000 JP2 image</comment>
+ <comment xml:lang="de">JPEG-2000 JP2-Bild</comment>
+ <comment xml:lang="da">JPEG-2000 JP2-billede</comment>
+ <comment xml:lang="cs">obrázek JPEG-2000 JP2</comment>
+ <comment xml:lang="ca">imatge JPEG-2000 JP2</comment>
+ <comment xml:lang="bg">Изображение — JPEG-2000 JP2</comment>
+ <comment xml:lang="be">выява JPEG-2000 JP2</comment>
+ <comment xml:lang="ar">صورة JPEG-2000 JP2</comment>
+ <comment xml:lang="af">JPEG-2000 JP2-beeld</comment>
<acronym>JP2</acronym>
<expanded-acronym>JPEG-2000</expanded-acronym>
<alias type="image/jpeg2000"/>
<alias type="image/jpeg2000-image"/>
<alias type="image/x-jpeg2000-image"/>
- <magic priority="50">
- <match value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a jp2\x20" type="string" offset="0" mask="0xffffffffffffffffffffffff0000000000000000ffffffff"/>
+ <magic>
+ <match type="string" mask="0xffffffffffffffffffffffff0000000000000000ffffffff" value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a jp2\x20" offset="0"/>
</magic>
<glob pattern="*.jp2"/>
<glob pattern="*.jpg2"/>
</mime-type>
<mime-type type="image/jpx">
<comment>JPEG-2000 JPX image</comment>
- <comment xml:lang="ca">imatge JPEG-2000 JPX</comment>
- <comment xml:lang="cs">obrázek JPEG-2000 JPX</comment>
- <comment xml:lang="de">JPEG-2000 JPX-Bild</comment>
- <comment xml:lang="en_GB">JPEG-2000 JPX image</comment>
- <comment xml:lang="es">imagen JPEG-2000 JPX</comment>
- <comment xml:lang="fi">JPEG-2000 JPX -kuva</comment>
- <comment xml:lang="hr">JPEG-2000 JPX slika</comment>
- <comment xml:lang="hu">JPEG-2000 JPX kép</comment>
- <comment xml:lang="id">Citra JPEG-2000 JPX</comment>
- <comment xml:lang="it">Immagine JPEG-2000 JPX</comment>
- <comment xml:lang="kk">JPEG-2000 JPX суреті</comment>
- <comment xml:lang="ko">JPEG-2000 JPX 그림</comment>
- <comment xml:lang="pl">Obraz JPX JPEG-2000</comment>
- <comment xml:lang="pt_BR">Imagem JPX de JPEG-2000</comment>
- <comment xml:lang="ru">Изображение JPEG-2000 JPX</comment>
- <comment xml:lang="sk">Obrázok JPEG-2000 JPX</comment>
- <comment xml:lang="sv">JPEG-2000 JPX-bild</comment>
- <comment xml:lang="uk">зображення JPX JPEG-2000</comment>
- <comment xml:lang="zh_CN">JPEG-2000 JPX 图像</comment>
<comment xml:lang="zh_TW">JPEG-2000 JPX 影像</comment>
+ <comment xml:lang="zh_CN">JPEG-2000 JPX 图像</comment>
+ <comment xml:lang="uk">зображення JPX JPEG-2000</comment>
+ <comment xml:lang="tr">JPEG-2000 JPX görüntüsü</comment>
+ <comment xml:lang="sv">JPEG-2000 JPX-bild</comment>
+ <comment xml:lang="sq"> image JPEG-2000 JPX</comment>
+ <comment xml:lang="sl">Slika JPEG-2000 JPX</comment>
+ <comment xml:lang="si">JPEG-2000 JPX රූපය</comment>
+ <comment xml:lang="sk">Obrázok JPEG-2000 JPX</comment>
+ <comment xml:lang="ru">Изображение JPEG-2000 JPX</comment>
+ <comment xml:lang="pt_BR">Imagem JPX de JPEG-2000</comment>
+ <comment xml:lang="pl">Obraz JPX JPEG-2000</comment>
+ <comment xml:lang="oc">imatge JPEG-2000 JPX</comment>
+ <comment xml:lang="nl">JPEG-2000 JPX-afbeelding</comment>
+ <comment xml:lang="ko">JPEG-2000 JPX 그림</comment>
+ <comment xml:lang="kk">JPEG-2000 JPX суреті</comment>
+ <comment xml:lang="ja">JPEG-2000 JPX 画像</comment>
+ <comment xml:lang="it">Immagine JPEG-2000 JPX</comment>
+ <comment xml:lang="is">JPEG-2000 JPX mynd</comment>
+ <comment xml:lang="id">Citra JPEG-2000 JPX</comment>
+ <comment xml:lang="hu">JPEG-2000 JPX kép</comment>
+ <comment xml:lang="hr">JPEG-2000 JPX slika</comment>
+ <comment xml:lang="he">תמונת JPX של JPEG-2000</comment>
+ <comment xml:lang="ga">íomhá JPEG-2000 JPX</comment>
+ <comment xml:lang="fur">imagjinJPEG-2000 JPX</comment>
+ <comment xml:lang="fr">image JPEG-2000 JPX</comment>
+ <comment xml:lang="fi">JPEG-2000 JPX -kuva</comment>
+ <comment xml:lang="eu">JPEG-2000 JPX irudia</comment>
+ <comment xml:lang="es">imagen JPEG-2000 JPX</comment>
+ <comment xml:lang="en_GB">JPEG-2000 JPX image</comment>
+ <comment xml:lang="de">JPEG-2000 JPX-Bild</comment>
+ <comment xml:lang="da">JPEG-2000 JPX-billede</comment>
+ <comment xml:lang="cs">obrázek JPEG-2000 JPX</comment>
+ <comment xml:lang="ca">imatge JPEG-2000 JPX</comment>
+ <comment xml:lang="bg">Изображение — JPEG-2000 JPX</comment>
+ <comment xml:lang="be">выява JPEG-2000 JPX</comment>
+ <comment xml:lang="ar">صورة JPEG-2000 JPX</comment>
+ <comment xml:lang="af">JPEG-2000 JPX-beeld</comment>
<acronym>JPX</acronym>
<expanded-acronym>JPEG-2000 eXtended</expanded-acronym>
- <magic priority="50">
- <match value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a jpx\x20" type="string" offset="0" mask="0xffffffffffffffffffffffff0000000000000000ffffffff"/>
+ <magic>
+ <match type="string" mask="0xffffffffffffffffffffffff0000000000000000ffffffff" value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a jpx\x20" offset="0"/>
</magic>
<glob pattern="*.jpf"/>
<glob pattern="*.jpx"/>
</mime-type>
<mime-type type="image/jpm">
<comment>JPEG-2000 JPM image</comment>
- <comment xml:lang="ca">imatge JPEG-2000 JPM</comment>
- <comment xml:lang="cs">obrázek JPEG-2000 JPM</comment>
- <comment xml:lang="de">JPEG-2000 JPM-Bild</comment>
- <comment xml:lang="en_GB">JPEG-2000 JPM image</comment>
- <comment xml:lang="es">imagen JPEG-2000 JPM</comment>
- <comment xml:lang="fi">JPEG-2000 JPM -kuva</comment>
- <comment xml:lang="hr">JPEG-2000 JPM slika</comment>
- <comment xml:lang="hu">JPEG-2000 JPM kép</comment>
- <comment xml:lang="id">Citra JPEG-2000 JPM</comment>
- <comment xml:lang="it">Immagine JPEG-2000 JPM</comment>
- <comment xml:lang="kk">JPEG-2000 JPM суреті</comment>
- <comment xml:lang="ko">JPEG-2000 JPM 그림</comment>
- <comment xml:lang="pl">Obraz JPM JPEG-2000</comment>
- <comment xml:lang="pt_BR">Imagem JPM de JPEG-2000</comment>
- <comment xml:lang="ru">Изображение JPEG-2000 JPM</comment>
- <comment xml:lang="sk">Obrázok JPEG-2000 JPM</comment>
- <comment xml:lang="sv">JPEG-2000 JPM-bild</comment>
- <comment xml:lang="uk">зображення JPM JPEG-2000</comment>
- <comment xml:lang="zh_CN">JPEG-2000 JPM 图像</comment>
<comment xml:lang="zh_TW">JPEG-2000 JPM 影像</comment>
+ <comment xml:lang="zh_CN">JPEG-2000 JPM 图像</comment>
+ <comment xml:lang="uk">зображення JPM JPEG-2000</comment>
+ <comment xml:lang="tr">JPEG-2000 JPM görüntüsü</comment>
+ <comment xml:lang="sv">JPEG-2000 JPM-bild</comment>
+ <comment xml:lang="sq">figurë JPEG-2000 JPM</comment>
+ <comment xml:lang="sl">Slika JPEG-2000 JPM</comment>
+ <comment xml:lang="si">JPEG-2000 JPM රූපය</comment>
+ <comment xml:lang="sk">Obrázok JPEG-2000 JPM</comment>
+ <comment xml:lang="ru">Изображение JPEG-2000 JPM</comment>
+ <comment xml:lang="pt_BR">Imagem JPM de JPEG-2000</comment>
+ <comment xml:lang="pl">Obraz JPM JPEG-2000</comment>
+ <comment xml:lang="oc">imatge JPEG-2000 JPM</comment>
+ <comment xml:lang="nl">JPEG-2000 JPM-afbeelding</comment>
+ <comment xml:lang="ko">JPEG-2000 JPM 그림</comment>
+ <comment xml:lang="kk">JPEG-2000 JPM суреті</comment>
+ <comment xml:lang="ja">JPEG-2000 JPM 画像</comment>
+ <comment xml:lang="it">Immagine JPEG-2000 JPM</comment>
+ <comment xml:lang="is">JPEG-2000 JPM mynd</comment>
+ <comment xml:lang="id">Citra JPEG-2000 JPM</comment>
+ <comment xml:lang="hu">JPEG-2000 JPM kép</comment>
+ <comment xml:lang="hr">JPEG-2000 JPM slika</comment>
+ <comment xml:lang="he">תמונת JPM של JPEG-2000</comment>
+ <comment xml:lang="ga">íomhá JPEG-2000 JPM</comment>
+ <comment xml:lang="fur">imagjin JPEG-2000 JPM</comment>
+ <comment xml:lang="fr">image JPEG-2000 JPM</comment>
+ <comment xml:lang="fi">JPEG-2000 JPM -kuva</comment>
+ <comment xml:lang="eu">JPEG-2000 JPM irudia</comment>
+ <comment xml:lang="es">imagen JPEG-2000 JPM</comment>
+ <comment xml:lang="en_GB">JPEG-2000 JPM image</comment>
+ <comment xml:lang="de">JPEG-2000 JPM-Bild</comment>
+ <comment xml:lang="da">JPEG-2000 JPM-billede</comment>
+ <comment xml:lang="cs">obrázek JPEG-2000 JPM</comment>
+ <comment xml:lang="ca">imatge JPEG-2000 JPM</comment>
+ <comment xml:lang="bg">Изображение — JPEG-2000 JPM</comment>
+ <comment xml:lang="be">выява JPEG-2000 JPM</comment>
+ <comment xml:lang="ar">صورة JPEG-2000 JPM</comment>
+ <comment xml:lang="af">JPEG-2000 JPM-beeld</comment>
<acronym>JPM</acronym>
<expanded-acronym>JPEG-2000 Mixed</expanded-acronym>
- <magic priority="50">
- <match value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a jpm\x20" type="string" offset="0" mask="0xffffffffffffffffffffffff0000000000000000ffffffff"/>
+ <magic>
+ <match type="string" mask="0xffffffffffffffffffffffff0000000000000000ffffffff" value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a jpm\x20" offset="0"/>
</magic>
<glob pattern="*.jpm"/>
<glob pattern="*.jpgm"/>
</mime-type>
<mime-type type="video/mj2">
<comment>JPEG-2000 MJ2 video</comment>
- <comment xml:lang="ca">vídeo JPEG-2000 MJ2</comment>
- <comment xml:lang="cs">video JPEG-2000 MJ2</comment>
- <comment xml:lang="de">JPEG-2000 MJ2-Video</comment>
- <comment xml:lang="en_GB">JPEG-2000 MJ2 video</comment>
- <comment xml:lang="es">vídeo JPEG-2000 MJ2</comment>
- <comment xml:lang="fi">JPEG-2000 MJ2 -video</comment>
- <comment xml:lang="hr">JPEG-2000 MJ2 video snimka</comment>
- <comment xml:lang="hu">JPEG-2000 MJ2 videó</comment>
- <comment xml:lang="id">Video JPEG-2000 MJ2</comment>
- <comment xml:lang="it">Video JPEG-2000 MJ2</comment>
- <comment xml:lang="kk">JPEG-2000 MJ2 видеосы</comment>
- <comment xml:lang="ko">JPEG-2000 MJ2 동영상</comment>
- <comment xml:lang="pl">Plik wideo MJ2 JPEG-2000</comment>
- <comment xml:lang="pt_BR">Imagem MJ2 de JPEG-2000</comment>
- <comment xml:lang="ru">Видео JPEG-2000 MJ2</comment>
- <comment xml:lang="sk">Video JPEG-2000 MJ2</comment>
- <comment xml:lang="sv">JPEG-2000 MJ2-bild</comment>
- <comment xml:lang="uk">зображення MJ2 JPEG-2000</comment>
- <comment xml:lang="zh_CN">JPEG-2000 MJ2 视频</comment>
<comment xml:lang="zh_TW">JPEG-2000 MJ2 視訊</comment>
+ <comment xml:lang="zh_CN">JPEG-2000 MJ2 视频</comment>
+ <comment xml:lang="uk">зображення MJ2 JPEG-2000</comment>
+ <comment xml:lang="tr">JPEG-2000 MJ2 videosu</comment>
+ <comment xml:lang="sv">JPEG-2000 MJ2-bild</comment>
+ <comment xml:lang="sq">video JPEG-2000 MJ2</comment>
+ <comment xml:lang="sl">Video JPEG-2000 MJ2</comment>
+ <comment xml:lang="si">JPEG-2000 MJ2 වීඩියෝව</comment>
+ <comment xml:lang="sk">Video JPEG-2000 MJ2</comment>
+ <comment xml:lang="ru">Видео JPEG-2000 MJ2</comment>
+ <comment xml:lang="pt_BR">Imagem MJ2 de JPEG-2000</comment>
+ <comment xml:lang="pl">Plik wideo MJ2 JPEG-2000</comment>
+ <comment xml:lang="oc">vidèo JPEG-2000 MJ2</comment>
+ <comment xml:lang="nl">JPEG-2000 MJ2-video</comment>
+ <comment xml:lang="ko">JPEG-2000 MJ2 동영상</comment>
+ <comment xml:lang="kk">JPEG-2000 MJ2 видеосы</comment>
+ <comment xml:lang="ja">JPEG-2000 MJ2 動画</comment>
+ <comment xml:lang="it">Video JPEG-2000 MJ2</comment>
+ <comment xml:lang="is">JPEG-2000 MJ2 myndskeið</comment>
+ <comment xml:lang="id">Video JPEG-2000 MJ2</comment>
+ <comment xml:lang="hu">JPEG-2000 MJ2 videó</comment>
+ <comment xml:lang="hr">JPEG-2000 MJ2 video snimka</comment>
+ <comment xml:lang="he">סרטון MJ2 של JPEG-2000</comment>
+ <comment xml:lang="ga">íomhá JPEG-2000 MJ2</comment>
+ <comment xml:lang="fur">video JPEG-2000 MJ2</comment>
+ <comment xml:lang="fr">vidéo JPEG-2000 MJ2</comment>
+ <comment xml:lang="fi">JPEG-2000 MJ2 -video</comment>
+ <comment xml:lang="eu">JPEG-2000 MJ2 bideoa</comment>
+ <comment xml:lang="es">vídeo JPEG-2000 MJ2</comment>
+ <comment xml:lang="en_GB">JPEG-2000 MJ2 video</comment>
+ <comment xml:lang="de">JPEG-2000 MJ2-Video</comment>
+ <comment xml:lang="da">JPEG-2000 MJ2-video</comment>
+ <comment xml:lang="cs">video JPEG-2000 MJ2</comment>
+ <comment xml:lang="ca">vídeo JPEG-2000 MJ2</comment>
+ <comment xml:lang="bg">Видео — JPEG-2000 MJ2</comment>
+ <comment xml:lang="be">відэа JPEG-2000 MJ2</comment>
+ <comment xml:lang="ar">فيديو JPEG-2000 MJ2</comment>
+ <comment xml:lang="af">JPEG-2000 MJ2-video</comment>
<acronym>MJ2</acronym>
<expanded-acronym>Motion JPEG-2000</expanded-acronym>
- <magic priority="50">
- <match value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a mjp2" type="string" offset="0" mask="0xffffffffffffffffffffffff0000000000000000ffffffff"/>
+ <magic>
+ <match type="string" mask="0xffffffffffffffffffffffff0000000000000000ffffffff" value="\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a mjp2" offset="0"/>
</magic>
<glob pattern="*.mj2"/>
<glob pattern="*.mjp2"/>
</mime-type>
+ <mime-type type="image/jxl">
+ <comment>JPEG XL image</comment>
+ <comment xml:lang="zh_TW">JPEG XL 影像</comment>
+ <comment xml:lang="zh_CN">JPEG XL 图像</comment>
+ <comment xml:lang="uk">зображення JPEG XL</comment>
+ <comment xml:lang="tr">JPEG XL görüntüsü</comment>
+ <comment xml:lang="sv">JPEG XL-bild</comment>
+ <comment xml:lang="sl">Slika JPEG XL</comment>
+ <comment xml:lang="si">JPEG XL රූපය</comment>
+ <comment xml:lang="ru">Изображение JPEG XL</comment>
+ <comment xml:lang="pt_BR">Imagem JPEG XL</comment>
+ <comment xml:lang="pl">Obraz JPEG XL</comment>
+ <comment xml:lang="oc">imatge JPEG XL</comment>
+ <comment xml:lang="nl">JPEG XL-afbeelding</comment>
+ <comment xml:lang="ko">JPEG XL 그림</comment>
+ <comment xml:lang="kk">JPEG XL суреті</comment>
+ <comment xml:lang="ja">JPEG XL 画像 </comment>
+ <comment xml:lang="it">Immagine JPEG XL</comment>
+ <comment xml:lang="hr">JPEG XL slika</comment>
+ <comment xml:lang="gl">Imaxe JPEG XL</comment>
+ <comment xml:lang="fi">JPEG XL-kuva</comment>
+ <comment xml:lang="eu">JPEG XL irudia</comment>
+ <comment xml:lang="es">imagen JPEG XL</comment>
+ <comment xml:lang="en_GB">JPEG XL image</comment>
+ <comment xml:lang="de">JPEG-XL-Bild</comment>
+ <comment xml:lang="be">выява JPEG XL</comment>
+ <comment xml:lang="ar">صورة JPEG XL</comment>
+ <magic>
+ <match type="string" offset="0" value="\xFF\x0A"/>
+ <match type="string" offset="0" value="\0\0\0\x0CJXL \x0D\x0A\x87\x0A"/>
+ </magic>
+ <glob pattern="*.jxl"/>
+ </mime-type>
<mime-type type="image/openraster">
- <comment>OpenRaster archiving image</comment>
- <comment xml:lang="ar">صورة أرشيف OpenRaster</comment>
+ <comment>OpenRaster image</comment>
+ <comment xml:lang="zh_TW">OpenRaster 影像</comment>
+ <comment xml:lang="zh_CN">OpenRaster 图像</comment>
+ <comment xml:lang="uk">зображення OpenRaster</comment>
+ <comment xml:lang="tr">OpenRaster görüntüsü</comment>
+ <comment xml:lang="sv">OpenRaster-bild</comment>
+ <comment xml:lang="sq">figurë OpenRaster</comment>
+ <comment xml:lang="sl">Slika OpenRaster</comment>
+ <comment xml:lang="si">OpenRaster රූපය</comment>
+ <comment xml:lang="sk">Obrázok OpenRaster</comment>
+ <comment xml:lang="ru">Изображение OpenRaster</comment>
+ <comment xml:lang="pt_BR">Imagem OpenRaster</comment>
+ <comment xml:lang="pl">Obraz OpenRaster</comment>
+ <comment xml:lang="oc">imatge OpenRaster</comment>
+ <comment xml:lang="nl">OpenRaster-afbeelding</comment>
+ <comment xml:lang="ko">OpenRaster 그림</comment>
+ <comment xml:lang="kk">OpenRaster суреті</comment>
+ <comment xml:lang="ja">OpenRaster 画像</comment>
+ <comment xml:lang="it">Immagine OpenRaster</comment>
+ <comment xml:lang="is">OpenRaster-mynd</comment>
+ <comment xml:lang="id">Citra OpenRaster</comment>
+ <comment xml:lang="hu">OpenRaster kép</comment>
+ <comment xml:lang="hr">OpenRaster slika</comment>
+ <comment xml:lang="he">תמונת OpenRaster</comment>
+ <comment xml:lang="gl">Imaxe OpenRaster</comment>
+ <comment xml:lang="fr">image OpenRaster</comment>
+ <comment xml:lang="fi">OpenRaster-kuva</comment>
+ <comment xml:lang="eu">OpenRaster irudia</comment>
+ <comment xml:lang="es">imagen OpenRaster</comment>
+ <comment xml:lang="en_GB">OpenRaster image</comment>
+ <comment xml:lang="de">OpenRaster-Bild</comment>
+ <comment xml:lang="da">OpenRaster-billede</comment>
+ <comment xml:lang="ca">imatge OpenRaster</comment>
<comment xml:lang="bg">Изображение — OpenRaster</comment>
- <comment xml:lang="ca">imatge d'arxivat OpenRaster</comment>
- <comment xml:lang="cs">archivační obraz OpenRaster</comment>
- <comment xml:lang="da">OpenRaster-arkivaftryk</comment>
- <comment xml:lang="de">OpenRaster-Archivierungsbild</comment>
- <comment xml:lang="el">Εικόνα αρχειοθέτησης OpenRaster</comment>
- <comment xml:lang="en_GB">OpenRaster archiving image</comment>
- <comment xml:lang="es">imagen de archivado de OpenRaster</comment>
- <comment xml:lang="eu">OpenRaster artxiboaren irudia</comment>
- <comment xml:lang="fi">OpenRaster-arkistokuva</comment>
- <comment xml:lang="fo">OpenRaster goymslumynd</comment>
- <comment xml:lang="fr">image d'archive OpenRaster</comment>
- <comment xml:lang="ga">íomhá chartlannaithe OpenRaster</comment>
- <comment xml:lang="gl">imaxe arquivada de OpenRaster</comment>
- <comment xml:lang="he">תמונת ארכיון של OpenRaster</comment>
- <comment xml:lang="hr">OpenRaster slika arhive</comment>
- <comment xml:lang="hu">OpenRaster archiválási kép</comment>
- <comment xml:lang="ia">Imagine de archivo OpenRaster</comment>
- <comment xml:lang="id">Gambar pengarsipan OpenRaster</comment>
- <comment xml:lang="it">Immagine archiviazione OpenRaster</comment>
- <comment xml:lang="ja">OpenRaster アーカイブイメージ</comment>
- <comment xml:lang="ka">OpenRaster-ის საარქივო გამოსახულება</comment>
- <comment xml:lang="kk">OpenRaster архивтеу суреті</comment>
- <comment xml:lang="ko">OpenRaster 압축 이미지</comment>
- <comment xml:lang="lt">OpenRaster archyvavimo paveikslėlis</comment>
- <comment xml:lang="lv">OpenRaster arhivēšanas attēls</comment>
- <comment xml:lang="nl">OpenRaster archiverings-image</comment>
- <comment xml:lang="oc">imatge d'archiu OpenRaster</comment>
- <comment xml:lang="pl">Archiwalny obraz OpenRaster</comment>
- <comment xml:lang="pt">imagem arquivo OpenRaster</comment>
- <comment xml:lang="pt_BR">Imagem de arquivamento OpenRaster</comment>
- <comment xml:lang="ro">Arhivă imagine OpenRaster</comment>
- <comment xml:lang="ru">Архивное изображение OpenRaster</comment>
- <comment xml:lang="sk">Archivačný obrázok OpenRaster</comment>
- <comment xml:lang="sl">Odtis arhiva OpenRaster</comment>
- <comment xml:lang="sr">слика Опен Растер архивирања</comment>
- <comment xml:lang="sv">OpenRaster-arkivbild</comment>
- <comment xml:lang="tr">OpenRaster arşivleme görüntüsü</comment>
- <comment xml:lang="uk">архівоване зображення OpenRaster</comment>
- <comment xml:lang="zh_CN">OpenRaster 归档图像</comment>
- <comment xml:lang="zh_TW">OpenRaster 封存影像</comment>
+ <comment xml:lang="be">выява OpenRaster</comment>
+ <comment xml:lang="ar">صورة OpenRaster</comment>
<sub-class-of type="application/zip"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="mimetype" type="string" offset="30">
- <match value="image/openraster" type="string" offset="38"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="mimetype" offset="30">
+ <match type="string" value="image/openraster" offset="38"/>
</match>
</match>
</magic>
@@ -25670,229 +28037,248 @@
</mime-type>
<mime-type type="image/x-dds">
<comment>DirectDraw surface</comment>
- <comment xml:lang="ar">مساحة DirectDraw</comment>
- <comment xml:lang="be@latin">Pavierchnia DirectDraw</comment>
- <comment xml:lang="bg">Изображение — повърхност на DirectDraw</comment>
- <comment xml:lang="ca">superfície DirectDraw</comment>
- <comment xml:lang="cs">povrch DirectDraw</comment>
- <comment xml:lang="da">DirectDraw-overflade</comment>
- <comment xml:lang="de">DirectDraw-Oberfläche</comment>
- <comment xml:lang="el">Επιφάνεια DirectDraw</comment>
- <comment xml:lang="en_GB">DirectDraw surface</comment>
- <comment xml:lang="es">superficie de DirectDraw</comment>
- <comment xml:lang="eu">DirectDraw gainazala</comment>
- <comment xml:lang="fi">DirectDraw-piirtoalue</comment>
- <comment xml:lang="fo">DirectDraw yvirflata</comment>
- <comment xml:lang="fr">surface DirectDraw</comment>
- <comment xml:lang="ga">dromchla DirectDraw</comment>
- <comment xml:lang="gl">superficie de DirectDraw</comment>
- <comment xml:lang="he">משטח של DirectDraw</comment>
- <comment xml:lang="hr">DirectDraw ploha</comment>
- <comment xml:lang="hu">DirectDraw felület</comment>
- <comment xml:lang="ia">Superficie DirectDraw</comment>
- <comment xml:lang="id">Permukaan DirectDraw</comment>
- <comment xml:lang="it">Superficie DirectDraw</comment>
- <comment xml:lang="ja">DirectDraw サーフェイス</comment>
- <comment xml:lang="ka">DirectDraw-ის ზედაპირი</comment>
- <comment xml:lang="kk">DirectDraw жазықтығы</comment>
- <comment xml:lang="ko">DirectDraw 서피스</comment>
- <comment xml:lang="lt">DirectDraw paviršius</comment>
- <comment xml:lang="lv">DirectDraw virsma</comment>
- <comment xml:lang="nb">DirectDraw-overflate</comment>
- <comment xml:lang="nl">DirectDraw-oppervlak</comment>
- <comment xml:lang="nn">DirectDraw-overflate</comment>
- <comment xml:lang="oc">surfàcia DirectDraw</comment>
- <comment xml:lang="pl">Powierzchnia DirectDraw</comment>
- <comment xml:lang="pt">superfície DirectDraw</comment>
- <comment xml:lang="pt_BR">Superfície do DirectDraw</comment>
- <comment xml:lang="ro">Suprafață DirectDraw</comment>
- <comment xml:lang="ru">Плоскость DirectDraw</comment>
- <comment xml:lang="sk">Plocha DirectDraw</comment>
- <comment xml:lang="sl">Datoteka predmeta DirectDraw</comment>
- <comment xml:lang="sq">Superfaqe DirectDraw</comment>
- <comment xml:lang="sr">Директ Дров површина</comment>
- <comment xml:lang="sv">DirectDraw-yta</comment>
- <comment xml:lang="tr">DirectDraw yüzeyi</comment>
- <comment xml:lang="uk">поверхня DirectDraw</comment>
- <comment xml:lang="vi">Mặt DirectDraw</comment>
- <comment xml:lang="zh_CN">DirectDraw 表面</comment>
<comment xml:lang="zh_TW">DirectDraw 表面</comment>
- <magic priority="50">
+ <comment xml:lang="zh_CN">DirectDraw 表面</comment>
+ <comment xml:lang="vi">Mặt DirectDraw</comment>
+ <comment xml:lang="uk">поверхня DirectDraw</comment>
+ <comment xml:lang="tr">DirectDraw yüzeyi</comment>
+ <comment xml:lang="sv">DirectDraw-yta</comment>
+ <comment xml:lang="sr">Директ Дров површина</comment>
+ <comment xml:lang="sq">sipërfaqe DirectDraw</comment>
+ <comment xml:lang="sl">Datoteka predmeta DirectDraw</comment>
+ <comment xml:lang="si">DirectDraw මතුපිට</comment>
+ <comment xml:lang="sk">Plocha DirectDraw</comment>
+ <comment xml:lang="ru">Плоскость DirectDraw</comment>
+ <comment xml:lang="ro">Suprafață DirectDraw</comment>
+ <comment xml:lang="pt_BR">Superfície do DirectDraw</comment>
+ <comment xml:lang="pt">superfície DirectDraw</comment>
+ <comment xml:lang="pl">Powierzchnia DirectDraw</comment>
+ <comment xml:lang="oc">surfàcia DirectDraw</comment>
+ <comment xml:lang="nn">DirectDraw-overflate</comment>
+ <comment xml:lang="nl">DirectDraw-oppervlak</comment>
+ <comment xml:lang="nb">DirectDraw-overflate</comment>
+ <comment xml:lang="lv">DirectDraw virsma</comment>
+ <comment xml:lang="lt">DirectDraw paviršius</comment>
+ <comment xml:lang="ko">DirectDraw 서피스</comment>
+ <comment xml:lang="kk">DirectDraw жазықтығы</comment>
+ <comment xml:lang="ka">DirectDraw-ის ზედაპირი</comment>
+ <comment xml:lang="ja">DirectDraw サーフェイス</comment>
+ <comment xml:lang="it">Superficie DirectDraw</comment>
+ <comment xml:lang="is">DirectDraw yfirborðsupplýsingar</comment>
+ <comment xml:lang="id">Permukaan DirectDraw</comment>
+ <comment xml:lang="ia">Superficie DirectDraw</comment>
+ <comment xml:lang="hu">DirectDraw felület</comment>
+ <comment xml:lang="hr">DirectDraw ploha</comment>
+ <comment xml:lang="he">משטח של DirectDraw</comment>
+ <comment xml:lang="gl">superficie de DirectDraw</comment>
+ <comment xml:lang="ga">dromchla DirectDraw</comment>
+ <comment xml:lang="fur">superficie DirectDraw</comment>
+ <comment xml:lang="fr">surface DirectDraw</comment>
+ <comment xml:lang="fo">DirectDraw yvirflata</comment>
+ <comment xml:lang="fi">DirectDraw-piirtoalue</comment>
+ <comment xml:lang="eu">DirectDraw gainazala</comment>
+ <comment xml:lang="es">superficie de DirectDraw</comment>
+ <comment xml:lang="en_GB">DirectDraw surface</comment>
+ <comment xml:lang="el">Επιφάνεια DirectDraw</comment>
+ <comment xml:lang="de">DirectDraw-Oberfläche</comment>
+ <comment xml:lang="da">DirectDraw-overflade</comment>
+ <comment xml:lang="cs">povrch DirectDraw</comment>
+ <comment xml:lang="ca">superfície DirectDraw</comment>
+ <comment xml:lang="bg">Изображение — повърхност на DirectDraw</comment>
+ <comment xml:lang="be@latin">Pavierchnia DirectDraw</comment>
+ <comment xml:lang="be">паверхня DirectDraw</comment>
+ <comment xml:lang="ar">سطح DirectDraw</comment>
+ <magic>
<match value="DDS" type="string" offset="0"/>
</magic>
<glob pattern="*.dds"/>
</mime-type>
<mime-type type="image/x-xcursor">
<comment>X11 cursor</comment>
- <comment xml:lang="ar">مؤشر X11</comment>
- <comment xml:lang="be@latin">Kursor X11</comment>
- <comment xml:lang="bg">Курсор — X11</comment>
- <comment xml:lang="ca">cursor X11</comment>
- <comment xml:lang="cs">kurzor X11</comment>
- <comment xml:lang="da">X11-markør</comment>
- <comment xml:lang="de">X11-Zeiger</comment>
- <comment xml:lang="el">Δρομέας X11</comment>
- <comment xml:lang="en_GB">X11 cursor</comment>
- <comment xml:lang="es">cursor de X11</comment>
- <comment xml:lang="eu">X11 kurtsorea</comment>
- <comment xml:lang="fi">X11-osoitin</comment>
- <comment xml:lang="fo">X11 vísi</comment>
- <comment xml:lang="fr">curseur X11</comment>
- <comment xml:lang="ga">cúrsóir X11</comment>
- <comment xml:lang="gl">Cursor X11</comment>
- <comment xml:lang="he">סמן של X11</comment>
- <comment xml:lang="hr">X11 pokazivač</comment>
- <comment xml:lang="hu">X11 kurzor</comment>
- <comment xml:lang="ia">Cursor X11</comment>
- <comment xml:lang="id">Kursor X11</comment>
- <comment xml:lang="it">Cursore X11</comment>
- <comment xml:lang="ja">X11 カーソル</comment>
- <comment xml:lang="kk">X11 курсоры</comment>
- <comment xml:lang="ko">X11 커서</comment>
- <comment xml:lang="lt">X11 žymiklis</comment>
- <comment xml:lang="lv">X11 kursors</comment>
- <comment xml:lang="nb">X11-markør</comment>
- <comment xml:lang="nl">X11-muisaanwijzer</comment>
- <comment xml:lang="nn">X11-peikar</comment>
- <comment xml:lang="oc">cursor X11</comment>
- <comment xml:lang="pl">Kursor X11</comment>
- <comment xml:lang="pt">cursor X11</comment>
- <comment xml:lang="pt_BR">Cursor do X11</comment>
- <comment xml:lang="ro">Cursor X11</comment>
- <comment xml:lang="ru">Курсор X11</comment>
- <comment xml:lang="sk">Kurzor X11</comment>
- <comment xml:lang="sl">Datoteka kazalke X11</comment>
- <comment xml:lang="sq">Kursor X11</comment>
- <comment xml:lang="sr">Икс11 курсор</comment>
- <comment xml:lang="sv">X11-muspekare</comment>
- <comment xml:lang="tr">X11 imleci</comment>
- <comment xml:lang="uk">курсор X11</comment>
- <comment xml:lang="vi">Con chạy X11</comment>
- <comment xml:lang="zh_CN">X11 指针</comment>
<comment xml:lang="zh_TW">X11 滑鼠游標</comment>
- <magic priority="50">
- <match value="Xcur" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">X11 指针</comment>
+ <comment xml:lang="vi">Con chạy X11</comment>
+ <comment xml:lang="uk">курсор X11</comment>
+ <comment xml:lang="tr">X11 imleci</comment>
+ <comment xml:lang="sv">X11-muspekare</comment>
+ <comment xml:lang="sr">Икс11 курсор</comment>
+ <comment xml:lang="sq">kursor X11</comment>
+ <comment xml:lang="sl">Datoteka kazalke X11</comment>
+ <comment xml:lang="si">X11 කර්සරය</comment>
+ <comment xml:lang="sk">Kurzor X11</comment>
+ <comment xml:lang="ru">Курсор X11</comment>
+ <comment xml:lang="ro">Cursor X11</comment>
+ <comment xml:lang="pt_BR">Cursor do X11</comment>
+ <comment xml:lang="pt">cursor X11</comment>
+ <comment xml:lang="pl">Kursor X11</comment>
+ <comment xml:lang="oc">cursor X11</comment>
+ <comment xml:lang="nn">X11-peikar</comment>
+ <comment xml:lang="nl">X11-muisaanwijzer</comment>
+ <comment xml:lang="nb">X11-markør</comment>
+ <comment xml:lang="lv">X11 kursors</comment>
+ <comment xml:lang="lt">X11 žymeklis</comment>
+ <comment xml:lang="ko">X11 커서</comment>
+ <comment xml:lang="kk">X11 курсоры</comment>
+ <comment xml:lang="ja">X11 カーソル</comment>
+ <comment xml:lang="it">Cursore X11</comment>
+ <comment xml:lang="is">X11 bendill</comment>
+ <comment xml:lang="id">Kursor X11</comment>
+ <comment xml:lang="ia">Cursor X11</comment>
+ <comment xml:lang="hu">X11 kurzor</comment>
+ <comment xml:lang="hr">X11 pokazivač</comment>
+ <comment xml:lang="he">סמן של X11</comment>
+ <comment xml:lang="gl">Cursor X11</comment>
+ <comment xml:lang="ga">cúrsóir X11</comment>
+ <comment xml:lang="fur">cursôr X11</comment>
+ <comment xml:lang="fr">curseur X11</comment>
+ <comment xml:lang="fo">X11 vísi</comment>
+ <comment xml:lang="fi">X11-osoitin</comment>
+ <comment xml:lang="eu">X11 kurtsorea</comment>
+ <comment xml:lang="es">cursor de X11</comment>
+ <comment xml:lang="en_GB">X11 cursor</comment>
+ <comment xml:lang="el">Δρομέας X11</comment>
+ <comment xml:lang="de">X11-Mauszeiger</comment>
+ <comment xml:lang="da">X11-markør</comment>
+ <comment xml:lang="cs">kurzor X11</comment>
+ <comment xml:lang="ca">cursor de X11</comment>
+ <comment xml:lang="bg">Курсор — X11</comment>
+ <comment xml:lang="be@latin">Kursor X11</comment>
+ <comment xml:lang="be">курсор X11</comment>
+ <comment xml:lang="ar">مؤشر X11</comment>
+ <comment xml:lang="af">X11-wyser</comment>
+ <magic>
+ <match type="string" value="Xcur" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/x-exr">
<comment>EXR image</comment>
- <comment xml:lang="ar">صورة EXR</comment>
- <comment xml:lang="be@latin">Vyjava EXR</comment>
- <comment xml:lang="bg">Изображение — EXR</comment>
- <comment xml:lang="ca">imatge EXR</comment>
- <comment xml:lang="cs">obrázek EXR</comment>
- <comment xml:lang="da">EXR-billede</comment>
- <comment xml:lang="de">EXR-Bild</comment>
- <comment xml:lang="el">Εικόνα EXR</comment>
- <comment xml:lang="en_GB">EXR image</comment>
- <comment xml:lang="eo">EXR-bildo</comment>
- <comment xml:lang="es">imagen EXR</comment>
- <comment xml:lang="eu">EXR irudia</comment>
- <comment xml:lang="fi">EXR-kuva</comment>
- <comment xml:lang="fo">EXR mynd</comment>
- <comment xml:lang="fr">image EXR</comment>
- <comment xml:lang="ga">íomhá EXR</comment>
- <comment xml:lang="gl">imaxe EXR</comment>
- <comment xml:lang="he">תמונת EXR</comment>
- <comment xml:lang="hr">EXR slika</comment>
- <comment xml:lang="hu">EXR kép</comment>
- <comment xml:lang="ia">Imagine EXR</comment>
- <comment xml:lang="id">Citra EXR</comment>
- <comment xml:lang="it">Immagine EXR</comment>
- <comment xml:lang="ja">EXR 画像</comment>
- <comment xml:lang="ka">EXR გამოსახულება</comment>
- <comment xml:lang="kk">EXR суреті</comment>
- <comment xml:lang="ko">EXR 그림</comment>
- <comment xml:lang="lt">EXR paveikslėlis</comment>
- <comment xml:lang="lv">EXR attēls</comment>
- <comment xml:lang="nb">EXR-bilde</comment>
- <comment xml:lang="nl">EXR-afbeelding</comment>
- <comment xml:lang="nn">EXR-bilete</comment>
- <comment xml:lang="oc">imatge EXR</comment>
- <comment xml:lang="pl">Obraz EXR</comment>
- <comment xml:lang="pt">imagem EXR</comment>
- <comment xml:lang="pt_BR">Imagem EXR</comment>
- <comment xml:lang="ro">Imagine EXR</comment>
- <comment xml:lang="ru">Изображение EXR</comment>
- <comment xml:lang="sk">Obrázok EXR</comment>
- <comment xml:lang="sl">Slikovna datoteka EXR</comment>
- <comment xml:lang="sq">Figurë EXR</comment>
- <comment xml:lang="sr">ЕИксР слика</comment>
- <comment xml:lang="sv">EXR-bild</comment>
- <comment xml:lang="tr">EXR görüntüsü</comment>
- <comment xml:lang="uk">зображення EXR</comment>
- <comment xml:lang="vi">Ảnh EXR</comment>
- <comment xml:lang="zh_CN">EXR 图像</comment>
<comment xml:lang="zh_TW">EXR 影像</comment>
- <magic priority="50">
- <match value="20000630" type="little32" offset="0"/>
+ <comment xml:lang="zh_CN">EXR 图像</comment>
+ <comment xml:lang="vi">Ảnh EXR</comment>
+ <comment xml:lang="uk">зображення EXR</comment>
+ <comment xml:lang="tr">EXR görüntüsü</comment>
+ <comment xml:lang="sv">EXR-bild</comment>
+ <comment xml:lang="sr">ЕИксР слика</comment>
+ <comment xml:lang="sq">figurë EXR</comment>
+ <comment xml:lang="sl">Slikovna datoteka EXR</comment>
+ <comment xml:lang="si">EXR රූපය</comment>
+ <comment xml:lang="sk">Obrázok EXR</comment>
+ <comment xml:lang="ru">Изображение EXR</comment>
+ <comment xml:lang="ro">Imagine EXR</comment>
+ <comment xml:lang="pt_BR">Imagem EXR</comment>
+ <comment xml:lang="pt">imagem EXR</comment>
+ <comment xml:lang="pl">Obraz EXR</comment>
+ <comment xml:lang="oc">imatge EXR</comment>
+ <comment xml:lang="nn">EXR-bilete</comment>
+ <comment xml:lang="nl">EXR-afbeelding</comment>
+ <comment xml:lang="nb">EXR-bilde</comment>
+ <comment xml:lang="lv">EXR attēls</comment>
+ <comment xml:lang="lt">EXR paveikslėlis</comment>
+ <comment xml:lang="ko">EXR 그림</comment>
+ <comment xml:lang="kk">EXR суреті</comment>
+ <comment xml:lang="ka">EXR გამოსახულება</comment>
+ <comment xml:lang="ja">EXR 画像</comment>
+ <comment xml:lang="it">Immagine EXR</comment>
+ <comment xml:lang="is">EXR mynd</comment>
+ <comment xml:lang="id">Citra EXR</comment>
+ <comment xml:lang="ia">Imagine EXR</comment>
+ <comment xml:lang="hu">EXR kép</comment>
+ <comment xml:lang="hr">EXR slika</comment>
+ <comment xml:lang="he">תמונת EXR</comment>
+ <comment xml:lang="gl">imaxe EXR</comment>
+ <comment xml:lang="ga">íomhá EXR</comment>
+ <comment xml:lang="fur">imagjin EXR</comment>
+ <comment xml:lang="fr">image EXR</comment>
+ <comment xml:lang="fo">EXR mynd</comment>
+ <comment xml:lang="fi">EXR-kuva</comment>
+ <comment xml:lang="eu">EXR irudia</comment>
+ <comment xml:lang="es">imagen EXR</comment>
+ <comment xml:lang="eo">EXR-bildo</comment>
+ <comment xml:lang="en_GB">EXR image</comment>
+ <comment xml:lang="el">Εικόνα EXR</comment>
+ <comment xml:lang="de">EXR-Bild</comment>
+ <comment xml:lang="da">EXR-billede</comment>
+ <comment xml:lang="cs">obrázek EXR</comment>
+ <comment xml:lang="ca">imatge EXR</comment>
+ <comment xml:lang="bg">Изображение — EXR</comment>
+ <comment xml:lang="be@latin">Vyjava EXR</comment>
+ <comment xml:lang="be">выява EXR</comment>
+ <comment xml:lang="ar">صورة EXR</comment>
+ <comment xml:lang="af">EXR-beeld</comment>
+ <magic>
+ <match type="little32" value="20000630" offset="0"/>
</magic>
<glob pattern="*.exr"/>
</mime-type>
<mime-type type="image/x-pict">
<comment>Macintosh Quickdraw/PICT drawing</comment>
- <comment xml:lang="ar">رسمة ماكنتوش Quickdraw/PICT</comment>
- <comment xml:lang="be@latin">Rysunak Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="bg">Чертеж — Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="ca">dibuix Quickdraw/PICT de Macintosh</comment>
- <comment xml:lang="cs">kresba Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="da">Macintosh Quickdraw/PICT-tegning</comment>
- <comment xml:lang="de">Macintosh-Quickdraw/PICT-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="en_GB">Macintosh Quickdraw/PICT drawing</comment>
- <comment xml:lang="eo">Quickdraw/PICT-grafikaĵo de Macintosh</comment>
- <comment xml:lang="es">dibujo de Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="eu">Macintosh Quickdraw/PICT marrazkia</comment>
- <comment xml:lang="fi">Macintosh Quickdraw/PICT -piirros</comment>
- <comment xml:lang="fo">Macintosh Quickdraw/PICT tekning</comment>
- <comment xml:lang="fr">dessin Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="ga">líníocht Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="gl">debuxo de Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="he">ציור של Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="hr">Macintosh Quickdraw/PICT crtež</comment>
- <comment xml:lang="hu">Macintosh Quickdraw/PICT-rajz</comment>
- <comment xml:lang="ia">Designo QuickDraw/PICT de Macintosh</comment>
- <comment xml:lang="id">Gambar Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="it">Disegno Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="ja">Macintosh Quickdraw/PICT ドロー</comment>
- <comment xml:lang="kk">Macintosh Quickdraw/PICT суреті</comment>
- <comment xml:lang="ko">매킨토시 Quickdraw/PICT 그림</comment>
- <comment xml:lang="lt">Macintosh Quickdraw/PICT piešinys</comment>
- <comment xml:lang="lv">Macintosh Quickdraw/PICT zīmējums</comment>
- <comment xml:lang="ms">Lukisan Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="nb">Macintosh Quickdraw/PICT-tegning</comment>
- <comment xml:lang="nl">Macintosh Quickdraw/PICT-tekening</comment>
- <comment xml:lang="nn">Macintosh Quickdraw/PICT-teikning</comment>
- <comment xml:lang="oc">dessenh Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="pl">Rysunek QuickDraw/PICT Macintosh</comment>
- <comment xml:lang="pt">desenho Quickdraw/PICT de Macintosh</comment>
- <comment xml:lang="pt_BR">Desenho do Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="ro">Desen Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="ru">Рисунок Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="sk">Kresba Macintosh QuickDraw/PICT</comment>
- <comment xml:lang="sl">Datoteka risbe Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="sq">Vizatim Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="sr">Мекинтошов Квикдров/ПИЦТ цртеж</comment>
- <comment xml:lang="sv">Macintosh Quickdraw/PICT-teckning</comment>
- <comment xml:lang="tr">Macintosh Quickdraw/PICT çizimi</comment>
- <comment xml:lang="uk">малюнок Macintosh Quickdraw/PICT</comment>
- <comment xml:lang="vi">Bản vẽ Quickdraw/PICT của Macintosh</comment>
- <comment xml:lang="zh_CN">Macintosh Quickdraw/PICT 绘图</comment>
<comment xml:lang="zh_TW">Macintosh Quickdraw/PICT 繪圖</comment>
- <magic priority="50">
- <match value="0x0011" type="big16" offset="10">
- <match value="0x02FF" type="big16" offset="12">
- <match value="0x0C00" type="big16" offset="14">
- <match value="0xFFFE" type="big16" offset="16"/>
+ <comment xml:lang="zh_CN">Macintosh Quickdraw/PICT 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ Quickdraw/PICT của Macintosh</comment>
+ <comment xml:lang="uk">малюнок Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="tr">Macintosh Quickdraw/PICT çizimi</comment>
+ <comment xml:lang="sv">Macintosh Quickdraw/PICT-teckning</comment>
+ <comment xml:lang="sr">Мекинтошов Квикдров/ПИЦТ цртеж</comment>
+ <comment xml:lang="sq">vizatim Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="sl">Datoteka risbe Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="si">Macintosh Quickdraw/PICT ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba Macintosh QuickDraw/PICT</comment>
+ <comment xml:lang="ru">Рисунок Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="ro">Desen Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="pt_BR">Desenho do Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="pt">desenho Quickdraw/PICT de Macintosh</comment>
+ <comment xml:lang="pl">Rysunek QuickDraw/PICT Macintosh</comment>
+ <comment xml:lang="oc">dessenh Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="nn">Macintosh Quickdraw/PICT-teikning</comment>
+ <comment xml:lang="nl">Macintosh Quickdraw/PICT-tekening</comment>
+ <comment xml:lang="nb">Macintosh Quickdraw/PICT-tegning</comment>
+ <comment xml:lang="ms">Lukisan Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="lv">Macintosh Quickdraw/PICT zīmējums</comment>
+ <comment xml:lang="lt">Macintosh Quickdraw/PICT piešinys</comment>
+ <comment xml:lang="ko">매킨토시 Quickdraw/PICT 그림</comment>
+ <comment xml:lang="kk">Macintosh Quickdraw/PICT суреті</comment>
+ <comment xml:lang="ja">Macintosh Quickdraw/PICT ドロー</comment>
+ <comment xml:lang="it">Disegno Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="is">Macintosh Quickdraw/PICT teikning</comment>
+ <comment xml:lang="id">Gambar Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="ia">Designo QuickDraw/PICT de Macintosh</comment>
+ <comment xml:lang="hu">Macintosh Quickdraw/PICT-rajz</comment>
+ <comment xml:lang="hr">Macintosh Quickdraw/PICT crtež</comment>
+ <comment xml:lang="he">ציור של Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="gl">debuxo de Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="ga">líníocht Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="fur">dissen Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="fr">dessin Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="fo">Macintosh Quickdraw/PICT tekning</comment>
+ <comment xml:lang="fi">Macintosh Quickdraw/PICT -piirros</comment>
+ <comment xml:lang="eu">Macintosh Quickdraw/PICT marrazkia</comment>
+ <comment xml:lang="es">dibujo de Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="eo">Quickdraw/PICT-grafikaĵo de Macintosh</comment>
+ <comment xml:lang="en_GB">Macintosh Quickdraw/PICT drawing</comment>
+ <comment xml:lang="el">Σχέδιο Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="de">Macintosh-Quickdraw/PICT-Zeichnung</comment>
+ <comment xml:lang="da">Macintosh Quickdraw/PICT-tegning</comment>
+ <comment xml:lang="cs">kresba Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="ca">dibuix Quickdraw/PICT de Macintosh</comment>
+ <comment xml:lang="bg">Чертеж — Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="be@latin">Rysunak Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="be">рысунак Macintosh Quickdraw/PICT</comment>
+ <comment xml:lang="ar">رسمة ماكنتوش Quickdraw/PICT</comment>
+ <comment xml:lang="af">Macintosh Quickdraw/PICT-tekening</comment>
+ <magic>
+ <match type="big16" value="0x0011" offset="10">
+ <match type="big16" value="0x02FF" offset="12">
+ <match type="big16" value="0x0C00" offset="14">
+ <match type="big16" value="0xFFFE" offset="16"/>
</match>
</match>
</match>
</magic>
- <magic priority="50">
- <match value="0x0011" type="big16" offset="522">
- <match value="0x02FF" type="big16" offset="524">
- <match value="0x0C00" type="big16" offset="526">
- <match value="0xFFFE" type="big16" offset="528"/>
+ <magic>
+ <match type="big16" value="0x0011" offset="522">
+ <match type="big16" value="0x02FF" offset="524">
+ <match type="big16" value="0x0C00" offset="526">
+ <match type="big16" value="0xFFFE" offset="528"/>
</match>
</match>
</match>
@@ -25904,52 +28290,57 @@
</mime-type>
<mime-type type="application/x-ufraw">
<comment>UFRaw ID image</comment>
- <comment xml:lang="ar">صورة UFRaw ID</comment>
- <comment xml:lang="be@latin">Vyjava UFRaw ID</comment>
- <comment xml:lang="bg">Изображение — UFRaw ID</comment>
- <comment xml:lang="ca">imatge ID UFRaw</comment>
- <comment xml:lang="cs">obrázek ID UFRaw</comment>
- <comment xml:lang="da">UFRaw ID-billede</comment>
- <comment xml:lang="de">UFRaw-Bildbeschreibungsdatei</comment>
- <comment xml:lang="el">Εικόνα UFRaw</comment>
- <comment xml:lang="en_GB">UFRaw ID image</comment>
- <comment xml:lang="es">imagen de identificación UFRaw</comment>
- <comment xml:lang="eu">UFRaw ID irudia</comment>
- <comment xml:lang="fi">UFRaw ID -kuva</comment>
- <comment xml:lang="fo">UFRaw ID mynd</comment>
- <comment xml:lang="fr">image ID UFRaw</comment>
- <comment xml:lang="ga">íomhá aitheantais UFRaw</comment>
- <comment xml:lang="gl">imaxe de identificación UFRaw</comment>
- <comment xml:lang="he">תמונה של UFRaw ID</comment>
- <comment xml:lang="hr">UFRaw ID slika</comment>
- <comment xml:lang="hu">UFRaw azonosítófájl</comment>
- <comment xml:lang="ia">Imagine UFRaw ID</comment>
- <comment xml:lang="id">Citra UFRaw ID</comment>
- <comment xml:lang="it">Immagine UFRaw ID</comment>
- <comment xml:lang="ja">UFRaw ID イメージ</comment>
- <comment xml:lang="kk">UFRaw ID суреті</comment>
- <comment xml:lang="ko">UFRaw ID 그림</comment>
- <comment xml:lang="lt">UFRaw ID paveikslėlis</comment>
- <comment xml:lang="lv">UFRaw ID attēls</comment>
- <comment xml:lang="nb">UFRaw ID-bilde</comment>
- <comment xml:lang="nl">UFRaw ID-afbeelding</comment>
- <comment xml:lang="nn">UFRaw ID-bilete</comment>
- <comment xml:lang="oc">imatge ID UFRaw</comment>
- <comment xml:lang="pl">Obraz UFRaw ID</comment>
- <comment xml:lang="pt">imagem UFRaw ID</comment>
- <comment xml:lang="pt_BR">Imagem ID do UFRaw</comment>
- <comment xml:lang="ro">ID imagine UFRaw</comment>
- <comment xml:lang="ru">Изображение UFRaw ID</comment>
- <comment xml:lang="sk">Obrázok ID UFRaw</comment>
- <comment xml:lang="sl">Slikovna datoteka UFRaw ID</comment>
- <comment xml:lang="sq">Figurë UFRaw ID</comment>
- <comment xml:lang="sr">УФ сирова ИД слика</comment>
- <comment xml:lang="sv">UFRaw ID-bild</comment>
- <comment xml:lang="tr">UFRaw ID görüntüsü</comment>
- <comment xml:lang="uk">зображення UFRaw ID</comment>
- <comment xml:lang="vi">Ảnh ID UFRaw</comment>
- <comment xml:lang="zh_CN">UFRaw ID 图像</comment>
<comment xml:lang="zh_TW">UFRaw ID 影像</comment>
+ <comment xml:lang="zh_CN">UFRaw ID 图像</comment>
+ <comment xml:lang="vi">Ảnh ID UFRaw</comment>
+ <comment xml:lang="uk">зображення UFRaw ID</comment>
+ <comment xml:lang="tr">UFRaw ID görüntüsü</comment>
+ <comment xml:lang="sv">UFRaw ID-bild</comment>
+ <comment xml:lang="sr">УФ сирова ИД слика</comment>
+ <comment xml:lang="sq">figurë UFRaw ID</comment>
+ <comment xml:lang="sl">Slikovna datoteka UFRaw ID</comment>
+ <comment xml:lang="si">UFRaw ID රූපය</comment>
+ <comment xml:lang="sk">Obrázok ID UFRaw</comment>
+ <comment xml:lang="ru">Изображение UFRaw ID</comment>
+ <comment xml:lang="ro">ID imagine UFRaw</comment>
+ <comment xml:lang="pt_BR">Imagem ID do UFRaw</comment>
+ <comment xml:lang="pt">imagem UFRaw ID</comment>
+ <comment xml:lang="pl">Obraz UFRaw ID</comment>
+ <comment xml:lang="oc">imatge ID UFRaw</comment>
+ <comment xml:lang="nn">UFRaw ID-bilete</comment>
+ <comment xml:lang="nl">UFRaw ID-afbeelding</comment>
+ <comment xml:lang="nb">UFRaw ID-bilde</comment>
+ <comment xml:lang="lv">UFRaw ID attēls</comment>
+ <comment xml:lang="lt">UFRaw ID paveikslėlis</comment>
+ <comment xml:lang="ko">UFRaw ID 그림</comment>
+ <comment xml:lang="kk">UFRaw ID суреті</comment>
+ <comment xml:lang="ja">UFRaw ID イメージ</comment>
+ <comment xml:lang="it">Immagine UFRaw ID</comment>
+ <comment xml:lang="is">UFRaw ID mynd</comment>
+ <comment xml:lang="id">Citra UFRaw ID</comment>
+ <comment xml:lang="ia">Imagine UFRaw ID</comment>
+ <comment xml:lang="hu">UFRaw azonosítófájl</comment>
+ <comment xml:lang="hr">UFRaw ID slika</comment>
+ <comment xml:lang="he">תמונה של UFRaw ID</comment>
+ <comment xml:lang="gl">imaxe de identificación UFRaw</comment>
+ <comment xml:lang="ga">íomhá aitheantais UFRaw</comment>
+ <comment xml:lang="fur">imagjin UFRaw ID</comment>
+ <comment xml:lang="fr">image ID UFRaw</comment>
+ <comment xml:lang="fo">UFRaw ID mynd</comment>
+ <comment xml:lang="fi">UFRaw ID -kuva</comment>
+ <comment xml:lang="eu">UFRaw ID irudia</comment>
+ <comment xml:lang="es">imagen de identificación UFRaw</comment>
+ <comment xml:lang="en_GB">UFRaw ID image</comment>
+ <comment xml:lang="el">Εικόνα UFRaw</comment>
+ <comment xml:lang="de">UFRaw-Bildbeschreibungsdatei</comment>
+ <comment xml:lang="da">UFRaw ID-billede</comment>
+ <comment xml:lang="cs">obrázek ID UFRaw</comment>
+ <comment xml:lang="ca">imatge ID UFRaw</comment>
+ <comment xml:lang="bg">Изображение — UFRaw ID</comment>
+ <comment xml:lang="be@latin">Vyjava UFRaw ID</comment>
+ <comment xml:lang="be">выява UFRaw ID</comment>
+ <comment xml:lang="ar">صورة UFRaw ID</comment>
+ <comment xml:lang="af">UFRaw ID-beeld</comment>
<acronym>UFRaw</acronym>
<expanded-acronym>Unidentified Flying Raw</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -25957,329 +28348,351 @@
<glob pattern="*.ufraw"/>
</mime-type>
<mime-type type="image/x-dcraw">
- <comment>digital raw image</comment>
- <comment xml:lang="ar">صورة رقمية خامة</comment>
- <comment xml:lang="be@latin">suvoraja ličbavaja vyjava</comment>
- <comment xml:lang="bg">Изображение — digital raw</comment>
- <comment xml:lang="ca">imatge digital en cru</comment>
- <comment xml:lang="cs">digitální surový obrázek</comment>
- <comment xml:lang="da">digitalt råbillede</comment>
- <comment xml:lang="de">Digitales Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη ψηφιακή εικόνα</comment>
- <comment xml:lang="en_GB">digital raw image</comment>
- <comment xml:lang="es">imagen digital en bruto</comment>
- <comment xml:lang="eu">irudi gordin digitala</comment>
- <comment xml:lang="fi">digitaalinen raakakuva</comment>
- <comment xml:lang="fo">talgild rámynd</comment>
- <comment xml:lang="fr">image brute numérique</comment>
- <comment xml:lang="ga">amhíomhá dhigiteach</comment>
- <comment xml:lang="gl">imaxe en bruto dixital</comment>
- <comment xml:lang="he">תמונה דיגטלית גולמית</comment>
- <comment xml:lang="hr">Digitalna osnovna slika</comment>
- <comment xml:lang="hu">digitális nyers kép</comment>
- <comment xml:lang="ia">Imagine brute digital</comment>
- <comment xml:lang="id">citra mentah digital</comment>
- <comment xml:lang="it">Immagine raw digitale</comment>
- <comment xml:lang="ja">デジタル raw 画像</comment>
- <comment xml:lang="kk">өңделмеген сандық суреттер</comment>
- <comment xml:lang="ko">디지털 원본 사진</comment>
- <comment xml:lang="lt">skaitmeninis neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">digitāls jēlattēls</comment>
- <comment xml:lang="nb">digitalt raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt digitaal beeld</comment>
- <comment xml:lang="nn">digitalt råbilete</comment>
- <comment xml:lang="oc">imatge brut numeric</comment>
- <comment xml:lang="pl">Surowy obraz cyfrowy</comment>
- <comment xml:lang="pt">imagem digital em bruto</comment>
- <comment xml:lang="pt_BR">Imagem digital bruta</comment>
- <comment xml:lang="ro">imagine digitală brută</comment>
+ <comment>Digital raw image</comment>
+ <comment xml:lang="uk">простий цифровий негатив</comment>
+ <comment xml:lang="sv">Digital råbild</comment>
<comment xml:lang="ru">Необработанное цифровое изображение</comment>
- <comment xml:lang="sk">Digitálny surový obrázok</comment>
- <comment xml:lang="sl">surova digitalna slika</comment>
- <comment xml:lang="sq">Figurë raw dixhitale</comment>
- <comment xml:lang="sr">дигитална сирова слика</comment>
- <comment xml:lang="sv">digital råbild</comment>
- <comment xml:lang="tr">sayısal ham görüntü</comment>
- <comment xml:lang="uk">зображення цифрового негатива</comment>
- <comment xml:lang="vi">ảnh thô số</comment>
- <comment xml:lang="zh_CN">数字化原始图像</comment>
- <comment xml:lang="zh_TW">數位原生影像</comment>
+ <comment xml:lang="pl">Surowy obraz cyfrowy</comment>
+ <comment xml:lang="ja">生写真</comment>
+ <comment xml:lang="it">Immagine raw digitale</comment>
+ <comment xml:lang="gl">Imaxe RAW dixital</comment>
+ <comment xml:lang="eu">Irudi digital gordina</comment>
+ <comment xml:lang="es">imagen digital en bruto</comment>
+ <comment xml:lang="de">Digitales Rohbild</comment>
+ <comment xml:lang="be">неапрацаваная лічбавая выява</comment>
</mime-type>
<mime-type type="image/x-adobe-dng">
<comment>Adobe DNG negative</comment>
- <comment xml:lang="ar">Adobe DNG negative</comment>
- <comment xml:lang="be@latin">Adobe DNG Negative</comment>
- <comment xml:lang="bg">Изображение — Adobe DNG negative</comment>
- <comment xml:lang="ca">negatiu DNG d'Adobe</comment>
- <comment xml:lang="cs">negativ Adobe (DNG)</comment>
- <comment xml:lang="da">Adobe DNG-negativ</comment>
- <comment xml:lang="de">Adobe Digitales Negativ</comment>
- <comment xml:lang="el">Αρνητικό Adobe DNG</comment>
- <comment xml:lang="en_GB">Adobe DNG negative</comment>
- <comment xml:lang="es">negativo DNG de Adobe</comment>
- <comment xml:lang="eu">Adobe DNG negatiboa</comment>
- <comment xml:lang="fi">Adobe-DNG-negatiivi</comment>
- <comment xml:lang="fo">Adobe DNG negativ</comment>
- <comment xml:lang="fr">négatif DNG Adobe</comment>
- <comment xml:lang="ga">claonchló DNG Adobe</comment>
- <comment xml:lang="gl">negativo DNG de Adobe</comment>
- <comment xml:lang="he">תשליל Adobe DNG</comment>
- <comment xml:lang="hr">Adobe DNG negativ</comment>
- <comment xml:lang="hu">Adobe DNG negatív</comment>
- <comment xml:lang="ia">Negativo Adobe DNG</comment>
- <comment xml:lang="id">Negatif Adobe DNG</comment>
- <comment xml:lang="it">Negativo Adobe DNG</comment>
- <comment xml:lang="ja">Adobe DNG ネガ</comment>
- <comment xml:lang="ka">Adobe DNG-ის ნეგატივი</comment>
- <comment xml:lang="kk">Adobe DNG негативі</comment>
- <comment xml:lang="ko">Adobe DNG 네거티브</comment>
- <comment xml:lang="lt">Adobe DNG negatyvas</comment>
- <comment xml:lang="lv">Adobe DNG negatīvs</comment>
- <comment xml:lang="nb">Adobe DNG-negativ</comment>
- <comment xml:lang="nl">Adobe DNG-negatief</comment>
- <comment xml:lang="nn">Adobe DNG-negativ</comment>
- <comment xml:lang="oc">négatif DNG Adobe</comment>
- <comment xml:lang="pl">Negatyw DNG Adobe</comment>
- <comment xml:lang="pt">negativo Adobe DNG</comment>
- <comment xml:lang="pt_BR">Negativo DNG da Adobe</comment>
- <comment xml:lang="ro">Negativ Adobe DNG</comment>
- <comment xml:lang="ru">Негатив Adobe DNG</comment>
- <comment xml:lang="sk">Adobe Digital Negative (DNG)</comment>
- <comment xml:lang="sl">Datoteka negativa Adobe DNG</comment>
- <comment xml:lang="sq">Negativ Adobe DNG</comment>
- <comment xml:lang="sr">Адобов ДНГ негатив</comment>
- <comment xml:lang="sv">Adobe DNG-negativ</comment>
- <comment xml:lang="tr">Adobe DNG negatifi</comment>
- <comment xml:lang="uk">цифровий негатив DNG Adobe</comment>
- <comment xml:lang="vi">Âm bản Adobe DNG</comment>
- <comment xml:lang="zh_CN">Adobe DNG 负片</comment>
<comment xml:lang="zh_TW">Adobe DNG 負片</comment>
+ <comment xml:lang="zh_CN">Adobe DNG 负片</comment>
+ <comment xml:lang="vi">Âm bản Adobe DNG</comment>
+ <comment xml:lang="uk">цифровий негатив DNG Adobe</comment>
+ <comment xml:lang="tr">Adobe DNG negatifi</comment>
+ <comment xml:lang="sv">Adobe DNG-negativ</comment>
+ <comment xml:lang="sr">Адобов ДНГ негатив</comment>
+ <comment xml:lang="sq">negativ Adobe DNG</comment>
+ <comment xml:lang="sl">Datoteka negativa Adobe DNG</comment>
+ <comment xml:lang="si">Adobe DNG සෘණ</comment>
+ <comment xml:lang="sk">Adobe Digital Negative (DNG)</comment>
+ <comment xml:lang="ru">Негатив Adobe DNG</comment>
+ <comment xml:lang="ro">Negativ Adobe DNG</comment>
+ <comment xml:lang="pt_BR">Negativo DNG da Adobe</comment>
+ <comment xml:lang="pt">negativo Adobe DNG</comment>
+ <comment xml:lang="pl">Negatyw DNG Adobe</comment>
+ <comment xml:lang="oc">négatif DNG Adobe</comment>
+ <comment xml:lang="nn">Adobe DNG-negativ</comment>
+ <comment xml:lang="nl">Adobe DNG-negatief</comment>
+ <comment xml:lang="nb">Adobe DNG-negativ</comment>
+ <comment xml:lang="lv">Adobe DNG negatīvs</comment>
+ <comment xml:lang="lt">Adobe DNG negatyvas</comment>
+ <comment xml:lang="ko">Adobe DNG 네거티브</comment>
+ <comment xml:lang="kk">Adobe DNG негативі</comment>
+ <comment xml:lang="ka">Adobe DNG-ის ნეგატივი</comment>
+ <comment xml:lang="ja">Adobe DNG ネガ</comment>
+ <comment xml:lang="it">Negativo Adobe DNG</comment>
+ <comment xml:lang="is">Adobe DNG negatíva</comment>
+ <comment xml:lang="id">Negatif Adobe DNG</comment>
+ <comment xml:lang="ia">Negativo Adobe DNG</comment>
+ <comment xml:lang="hu">Adobe DNG negatív</comment>
+ <comment xml:lang="hr">Adobe DNG negativ</comment>
+ <comment xml:lang="he">תשליל Adobe DNG</comment>
+ <comment xml:lang="gl">negativo DNG de Adobe</comment>
+ <comment xml:lang="ga">claonchló DNG Adobe</comment>
+ <comment xml:lang="fur">negatîf Adobe DNG</comment>
+ <comment xml:lang="fr">négatif DNG Adobe</comment>
+ <comment xml:lang="fo">Adobe DNG negativ</comment>
+ <comment xml:lang="fi">Adobe-DNG-negatiivi</comment>
+ <comment xml:lang="eu">Adobe DNG negatiboa</comment>
+ <comment xml:lang="es">negativo DNG de Adobe</comment>
+ <comment xml:lang="en_GB">Adobe DNG negative</comment>
+ <comment xml:lang="el">Αρνητικό Adobe DNG</comment>
+ <comment xml:lang="de">Adobe Digitales Negativ</comment>
+ <comment xml:lang="da">Adobe DNG-negativ</comment>
+ <comment xml:lang="cs">negativ Adobe (DNG)</comment>
+ <comment xml:lang="ca">negatiu DNG d'Adobe</comment>
+ <comment xml:lang="bg">Изображение — Adobe DNG negative</comment>
+ <comment xml:lang="be@latin">Adobe DNG Negative</comment>
+ <comment xml:lang="be">Adobe DNG Negative</comment>
+ <comment xml:lang="ar">سالبة Adobe DNG</comment>
+ <comment xml:lang="af">Adobe DNG-negatief</comment>
<acronym>DNG</acronym>
<expanded-acronym>Digital Negative</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
<sub-class-of type="image/tiff"/>
<glob pattern="*.dng"/>
</mime-type>
-
-
+ <!-- Canon has 3 formats: CRW, CR2 and CR3 !-->
+ <!-- CRW is easy !-->
<mime-type type="image/x-canon-crw">
<comment>Canon CRW raw image</comment>
- <comment xml:lang="ar">صورة Canon CRW خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Canon CRW</comment>
- <comment xml:lang="bg">Изображение — Canon CRW raw</comment>
- <comment xml:lang="ca">imatge en cru de Canon CRW</comment>
- <comment xml:lang="cs">surový obrázek Canon CRW</comment>
- <comment xml:lang="da">Canon CRW-råbillede</comment>
- <comment xml:lang="de">Canon-CRW-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Canon CRW</comment>
- <comment xml:lang="en_GB">Canon CRW raw image</comment>
- <comment xml:lang="es">imagen en bruto CRW de Canon</comment>
- <comment xml:lang="eu">Canon CRW irudi gordina</comment>
- <comment xml:lang="fi">Canon-CRW-raakakuva</comment>
- <comment xml:lang="fo">Canon CRW rámynd</comment>
- <comment xml:lang="fr">image brute CRW Canon</comment>
- <comment xml:lang="ga">amhíomhá Canon CRW</comment>
- <comment xml:lang="gl">imaxe en bruto de Canon CRW</comment>
- <comment xml:lang="he">תמונה גולמית של Canon CRW</comment>
- <comment xml:lang="hr">Canon CRW osnovna slika</comment>
- <comment xml:lang="hu">Canon CRW nyers kép</comment>
- <comment xml:lang="ia">Imagine brute CRW Canon</comment>
- <comment xml:lang="id">Citra mentah Canon CRW</comment>
- <comment xml:lang="it">Immagine raw Canon CRW</comment>
- <comment xml:lang="ja">Canon CRW raw 画像</comment>
- <comment xml:lang="ka">Canon CRW raw გამოსახულება</comment>
- <comment xml:lang="kk">Canon CRW өңделмеген суреті</comment>
- <comment xml:lang="ko">캐논 CRW RAW 사진</comment>
- <comment xml:lang="lt">Canon CRW neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Canon CRW jēlattēls</comment>
- <comment xml:lang="nb">Canon CRW raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Canon CRW-beeld</comment>
- <comment xml:lang="nn">Canon CRW råbilete</comment>
- <comment xml:lang="oc">imatge brut CRW Canon</comment>
- <comment xml:lang="pl">Surowy obraz CRW Canon</comment>
- <comment xml:lang="pt">imagem em bruto Canon CRW</comment>
- <comment xml:lang="pt_BR">Imagem bruta CRW da Canon</comment>
- <comment xml:lang="ro">Imagine brută Canon CRW</comment>
- <comment xml:lang="ru">Необработанное изображение Canon CRW</comment>
- <comment xml:lang="sk">Surový obrázok Canon CRW</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Canon CRW</comment>
- <comment xml:lang="sq">Figurë raw Canon CRW</comment>
- <comment xml:lang="sr">Кенон ЦРВ сирова слика</comment>
- <comment xml:lang="sv">Canon CRW-råbild</comment>
- <comment xml:lang="tr">Canon CRW ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив CRW Canon</comment>
- <comment xml:lang="vi">Ảnh thô Canon CRW</comment>
+ <comment xml:lang="zh_TW">Canon CRW 原始影像</comment>
<comment xml:lang="zh_CN">佳能 CRW 原始图像</comment>
- <comment xml:lang="zh_TW">Canon CRW 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Canon CRW</comment>
+ <comment xml:lang="uk">цифровий негатив CRW Canon</comment>
+ <comment xml:lang="tr">Canon CRW ham görüntüsü</comment>
+ <comment xml:lang="sv">Canon CRW-råbild</comment>
+ <comment xml:lang="sr">Кенон ЦРВ сирова слика</comment>
+ <comment xml:lang="sq">figurë Canon CRW e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Canon CRW</comment>
+ <comment xml:lang="si">Canon CRW අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Canon CRW</comment>
+ <comment xml:lang="ru">Необработанное изображение Canon CRW</comment>
+ <comment xml:lang="ro">Imagine brută Canon CRW</comment>
+ <comment xml:lang="pt_BR">Imagem bruta CRW da Canon</comment>
+ <comment xml:lang="pt">imagem em bruto Canon CRW</comment>
+ <comment xml:lang="pl">Surowy obraz CRW Canon</comment>
+ <comment xml:lang="oc">imatge brut CRW Canon</comment>
+ <comment xml:lang="nn">Canon CRW råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Canon CRW-beeld</comment>
+ <comment xml:lang="nb">Canon CRW raw-bilde</comment>
+ <comment xml:lang="lv">Canon CRW jēlattēls</comment>
+ <comment xml:lang="lt">Canon CRW neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">캐논 CRW RAW 사진</comment>
+ <comment xml:lang="kk">Canon CRW өңделмеген суреті</comment>
+ <comment xml:lang="ka">Canon CRW raw გამოსახულება</comment>
+ <comment xml:lang="ja">Canon CRW raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Canon CRW</comment>
+ <comment xml:lang="is">Canon CRW hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Canon CRW</comment>
+ <comment xml:lang="ia">Imagine brute CRW Canon</comment>
+ <comment xml:lang="hu">Canon CRW nyers kép</comment>
+ <comment xml:lang="hr">Canon CRW osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Canon CRW</comment>
+ <comment xml:lang="gl">imaxe en bruto de Canon CRW</comment>
+ <comment xml:lang="ga">amhíomhá Canon CRW</comment>
+ <comment xml:lang="fur">imagjin grese Canon CRW</comment>
+ <comment xml:lang="fr">image brute CRW Canon</comment>
+ <comment xml:lang="fo">Canon CRW rámynd</comment>
+ <comment xml:lang="fi">Canon-CRW-raakakuva</comment>
+ <comment xml:lang="eu">Canon CRW irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto CRW de Canon</comment>
+ <comment xml:lang="en_GB">Canon CRW raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Canon CRW</comment>
+ <comment xml:lang="de">Canon-CRW-Rohbild</comment>
+ <comment xml:lang="da">Canon CRW raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Canon CRW</comment>
+ <comment xml:lang="ca">imatge en cru de Canon CRW</comment>
+ <comment xml:lang="bg">Изображение — Canon CRW raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Canon CRW</comment>
+ <comment xml:lang="be">неапрацаваная выява Canon CRW</comment>
+ <comment xml:lang="ar">صورة Canon CRW خامة</comment>
+ <comment xml:lang="af">Canon CRW rou beeld</comment>
<acronym>CRW</acronym>
<expanded-acronym>Canon RaW</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
+ <magic>
<match value="II\x1a\x00\x00\x00HEAPCCDR" type="string" offset="0"/>
</magic>
<glob pattern="*.crw"/>
</mime-type>
-
+ <!-- CR2 is a TIFF !-->
<mime-type type="image/x-canon-cr2">
<comment>Canon CR2 raw image</comment>
- <comment xml:lang="ar">صورة Canon CR2 خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Canon CR2</comment>
- <comment xml:lang="bg">Изображение — Canon CR2 raw</comment>
- <comment xml:lang="ca">imatge en cru de Canon CR2</comment>
- <comment xml:lang="cs">surový obrázek Canon CR2</comment>
- <comment xml:lang="da">Canon CR2-råbillede</comment>
- <comment xml:lang="de">Canon-CR2-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Canon CR2</comment>
- <comment xml:lang="en_GB">Canon CR2 raw image</comment>
- <comment xml:lang="es">imagen en bruto CR2 de Canon</comment>
- <comment xml:lang="eu">Canon CR2 irudi gordina</comment>
- <comment xml:lang="fi">Canon-CR2-raakakuva</comment>
- <comment xml:lang="fo">Canon CR2 rámynd</comment>
- <comment xml:lang="fr">image brute CR2 Canon</comment>
- <comment xml:lang="ga">amhíomhá Canon CR2</comment>
- <comment xml:lang="gl">imaxe en bruto de Canon CR2</comment>
- <comment xml:lang="he">תמונה גולמית של Canon CR2</comment>
- <comment xml:lang="hr">Canon CR2 osnovna slika</comment>
- <comment xml:lang="hu">Canon CR2 nyers kép</comment>
- <comment xml:lang="ia">Imagine brute CR2 Canon</comment>
- <comment xml:lang="id">Citra mentah Canon CR2</comment>
- <comment xml:lang="it">Immagine raw Canon CR2</comment>
- <comment xml:lang="ja">Canon CR2 raw 画像</comment>
- <comment xml:lang="ka">Canon CR2 raw გამოსახულება</comment>
- <comment xml:lang="kk">Canon CR2 өңделмеген суреті</comment>
- <comment xml:lang="ko">캐논 CR2 RAW 사진</comment>
- <comment xml:lang="lt">Canon CR2 neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Canon CR2 jēlattēls</comment>
- <comment xml:lang="nb">Canon CR2 raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Canon CR2-beeld</comment>
- <comment xml:lang="nn">Canon CR2 råbilete</comment>
- <comment xml:lang="oc">imatge brut CR2 Canon</comment>
- <comment xml:lang="pl">Surowy obraz CR2 Canon</comment>
- <comment xml:lang="pt">imagem em bruto Canon CR2</comment>
- <comment xml:lang="pt_BR">Imagem bruta CR2 da Canon</comment>
- <comment xml:lang="ro">Imagine brută Canon CR2</comment>
- <comment xml:lang="ru">Необработанное изображение Canon CR2</comment>
- <comment xml:lang="sk">Surový obrázok Canon CR2</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Canon CR2</comment>
- <comment xml:lang="sq">Figurë raw Canon CR2</comment>
- <comment xml:lang="sr">Кенон ЦР2 сирова слика</comment>
- <comment xml:lang="sv">Canon CR2-råbild</comment>
- <comment xml:lang="tr">Canon CR2 ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив CR2 Canon</comment>
- <comment xml:lang="vi">Ảnh thô Canon CR2</comment>
+ <comment xml:lang="zh_TW">Canon CR2 原始影像</comment>
<comment xml:lang="zh_CN">佳能 CR2 原始图像</comment>
- <comment xml:lang="zh_TW">Canon CR2 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Canon CR2</comment>
+ <comment xml:lang="uk">цифровий негатив CR2 Canon</comment>
+ <comment xml:lang="tr">Canon CR2 ham görüntüsü</comment>
+ <comment xml:lang="sv">Canon CR2-råbild</comment>
+ <comment xml:lang="sr">Кенон ЦР2 сирова слика</comment>
+ <comment xml:lang="sq">figurë Canon CR2 e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Canon CR2</comment>
+ <comment xml:lang="si">Canon CR2 අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Canon CR2</comment>
+ <comment xml:lang="ru">Необработанное изображение Canon CR2</comment>
+ <comment xml:lang="ro">Imagine brută Canon CR2</comment>
+ <comment xml:lang="pt_BR">Imagem bruta CR2 da Canon</comment>
+ <comment xml:lang="pt">imagem em bruto Canon CR2</comment>
+ <comment xml:lang="pl">Surowy obraz CR2 Canon</comment>
+ <comment xml:lang="oc">imatge brut CR2 Canon</comment>
+ <comment xml:lang="nn">Canon CR2 råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Canon CR2-beeld</comment>
+ <comment xml:lang="nb">Canon CR2 raw-bilde</comment>
+ <comment xml:lang="lv">Canon CR2 jēlattēls</comment>
+ <comment xml:lang="lt">Canon CR2 neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">캐논 CR2 RAW 사진</comment>
+ <comment xml:lang="kk">Canon CR2 өңделмеген суреті</comment>
+ <comment xml:lang="ka">Canon CR2 raw გამოსახულება</comment>
+ <comment xml:lang="ja">Canon CR2 raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Canon CR2</comment>
+ <comment xml:lang="is">Canon CR2 hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Canon CR2</comment>
+ <comment xml:lang="ia">Imagine brute CR2 Canon</comment>
+ <comment xml:lang="hu">Canon CR2 nyers kép</comment>
+ <comment xml:lang="hr">Canon CR2 osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Canon CR2</comment>
+ <comment xml:lang="gl">imaxe en bruto de Canon CR2</comment>
+ <comment xml:lang="ga">amhíomhá Canon CR2</comment>
+ <comment xml:lang="fur">imagjin grese Canon CR2</comment>
+ <comment xml:lang="fr">image brute CR2 Canon</comment>
+ <comment xml:lang="fo">Canon CR2 rámynd</comment>
+ <comment xml:lang="fi">Canon-CR2-raakakuva</comment>
+ <comment xml:lang="eu">Canon CR2 irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto CR2 de Canon</comment>
+ <comment xml:lang="en_GB">Canon CR2 raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Canon CR2</comment>
+ <comment xml:lang="de">Canon-CR2-Rohbild</comment>
+ <comment xml:lang="da">Canon CR2 raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Canon CR2</comment>
+ <comment xml:lang="ca">imatge en cru de Canon CR2</comment>
+ <comment xml:lang="bg">Изображение — Canon CR2 raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Canon CR2</comment>
+ <comment xml:lang="be">неапрацаваная выява Canon CR2</comment>
+ <comment xml:lang="ar">صورة Canon CR2 خامة</comment>
+ <comment xml:lang="af">Canon CR2 rou beeld</comment>
<acronym>CR2</acronym>
<expanded-acronym>Canon Raw 2</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
<sub-class-of type="image/tiff"/>
<glob pattern="*.cr2"/>
</mime-type>
+ <mime-type type="image/x-canon-cr3">
+ <comment>Canon CR3 raw image</comment>
+ <comment xml:lang="zh_TW">Canon CR3 原始影像</comment>
+ <comment xml:lang="zh_CN">佳能 CR3 原始图像</comment>
+ <comment xml:lang="uk">цифровий негатив CR3 Canon</comment>
+ <comment xml:lang="tr">Canon CR3 ham görüntüsü</comment>
+ <comment xml:lang="sv">Canon CR3-råbild</comment>
+ <comment xml:lang="sl">Neobdelana slika Canon CR3</comment>
+ <comment xml:lang="si">Canon CR3 අමු රූපය</comment>
+ <comment xml:lang="ru">Необработанное изображение Canon CR3</comment>
+ <comment xml:lang="pt_BR">Imagem bruta CR3 da Canon</comment>
+ <comment xml:lang="pl">Surowy obraz CR3 Canon</comment>
+ <comment xml:lang="oc">imatge brut Canon CR3</comment>
+ <comment xml:lang="nl">onbewerkt Canon CR3 beeld</comment>
+ <comment xml:lang="ko">캐논 CR3 RAW 사진</comment>
+ <comment xml:lang="kk">Canon CR3 өңделмеген суреті</comment>
+ <comment xml:lang="ja">Canon CR3 raw 画像ファイル</comment>
+ <comment xml:lang="it">Immagine raw Canon CR3</comment>
+ <comment xml:lang="hr">Canon CR3 osnovna slika</comment>
+ <comment xml:lang="gl">Imaxe RAW de Canon CR3</comment>
+ <comment xml:lang="fi">Canon CR3-raakakuva</comment>
+ <comment xml:lang="eu">Canon CR3 irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto CR3 de Canon</comment>
+ <comment xml:lang="en_GB">Canon CR3 raw image</comment>
+ <comment xml:lang="de">Canon-CR3-Rohbild</comment>
+ <comment xml:lang="be">неапрацаваная выява Canon CR3</comment>
+ <comment xml:lang="ar">صورة Canon CR3 خامة</comment>
+ <acronym>CR3</acronym>
+ <expanded-acronym>Canon Raw 3</expanded-acronym>
+ <sub-class-of type="image/x-dcraw"/>
+ <glob pattern="*.cr3"/>
+ </mime-type>
<mime-type type="image/x-fuji-raf">
<comment>Fuji RAF raw image</comment>
- <comment xml:lang="ar">صورة Fuji RAF خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Fuji RAF</comment>
- <comment xml:lang="bg">Изображение — Fuji RAF raw</comment>
- <comment xml:lang="ca">imatge en cru de Fuji RAF</comment>
- <comment xml:lang="cs">surový obrázek Fuji RAF</comment>
- <comment xml:lang="da">Fuji RAF-råbillede</comment>
- <comment xml:lang="de">Fuji-RAF-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Fuji RAF</comment>
- <comment xml:lang="en_GB">Fuji RAF raw image</comment>
- <comment xml:lang="es">imagen en bruto RAF de Fuji</comment>
- <comment xml:lang="eu">Fuji RAF irudi gordina</comment>
- <comment xml:lang="fi">Fuji-RAF-raakakuva</comment>
- <comment xml:lang="fo">Fuji RAF raw mynd</comment>
- <comment xml:lang="fr">image brute RAF Fuji</comment>
- <comment xml:lang="ga">amhíomhá Fuji RAF</comment>
- <comment xml:lang="gl">imaxe en bruto de Fuji RAF</comment>
- <comment xml:lang="he">תמונה גולמית של Fuji RAF</comment>
- <comment xml:lang="hr">Fuji RAF osnovna slika</comment>
- <comment xml:lang="hu">Fuji RAF nyers kép</comment>
- <comment xml:lang="ia">Imagine brute RAF de Fuji</comment>
- <comment xml:lang="id">Citra mentah Fuji RAF</comment>
- <comment xml:lang="it">Immagine raw Fuji RAF</comment>
- <comment xml:lang="ja">Fuji RAF raw 画像</comment>
- <comment xml:lang="ka">Fuji RAF-ის raw გამოსახულება</comment>
- <comment xml:lang="kk">Fuji RAF өңделмеген суреті</comment>
- <comment xml:lang="ko">후지 RAF RAW 사진</comment>
- <comment xml:lang="lt">Fuji RAF neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Fuji RAF jēlattēls</comment>
- <comment xml:lang="nb">Fuji RAF raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Fuji RAF-beeld</comment>
- <comment xml:lang="nn">Fuji RAF rått bilete</comment>
- <comment xml:lang="oc">imatge brut RAF Fuji</comment>
- <comment xml:lang="pl">Surowy obraz RAF Fuji</comment>
- <comment xml:lang="pt">imagem em bruto Fuji RAF</comment>
- <comment xml:lang="pt_BR">Imagem bruta RAF da Fuji</comment>
- <comment xml:lang="ro">Imagine brută Fuji RAF</comment>
- <comment xml:lang="ru">Необработанное изображение Fuji RAF</comment>
- <comment xml:lang="sk">Surový obrázok Fuji RAF</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Fuji RAF</comment>
- <comment xml:lang="sq">Figurë raw Fuji RAF</comment>
- <comment xml:lang="sr">Фуџи РАФ сирова слика</comment>
- <comment xml:lang="sv">Fuji RAF-råbild</comment>
- <comment xml:lang="tr">Fuji RAF ham görüntüsü</comment>
- <comment xml:lang="uk">Цифровий негатив RAF Fuji</comment>
- <comment xml:lang="vi">Ảnh thô Fuji RAF</comment>
+ <comment xml:lang="zh_TW">Fuji RAF 原始影像</comment>
<comment xml:lang="zh_CN">富士 RAF 原始图像</comment>
- <comment xml:lang="zh_TW">Fuji RAF 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Fuji RAF</comment>
+ <comment xml:lang="uk">Цифровий негатив RAF Fuji</comment>
+ <comment xml:lang="tr">Fuji RAF ham görüntüsü</comment>
+ <comment xml:lang="sv">Fuji RAF-råbild</comment>
+ <comment xml:lang="sr">Фуџи РАФ сирова слика</comment>
+ <comment xml:lang="sq">figurë Fuji RAF e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Fuji RAF</comment>
+ <comment xml:lang="si">Fuji RAF අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Fuji RAF</comment>
+ <comment xml:lang="ru">Необработанное изображение Fuji RAF</comment>
+ <comment xml:lang="ro">Imagine brută Fuji RAF</comment>
+ <comment xml:lang="pt_BR">Imagem bruta RAF da Fuji</comment>
+ <comment xml:lang="pt">imagem em bruto Fuji RAF</comment>
+ <comment xml:lang="pl">Surowy obraz RAF Fuji</comment>
+ <comment xml:lang="oc">imatge brut RAF Fuji</comment>
+ <comment xml:lang="nn">Fuji RAF rått bilete</comment>
+ <comment xml:lang="nl">onbewerkt Fuji RAF-beeld</comment>
+ <comment xml:lang="nb">Fuji RAF raw-bilde</comment>
+ <comment xml:lang="lv">Fuji RAF jēlattēls</comment>
+ <comment xml:lang="lt">Fuji RAF neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">후지 RAF RAW 사진</comment>
+ <comment xml:lang="kk">Fuji RAF өңделмеген суреті</comment>
+ <comment xml:lang="ka">Fuji RAF-ის raw გამოსახულება</comment>
+ <comment xml:lang="ja">Fuji RAF raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Fuji RAF</comment>
+ <comment xml:lang="is">Fuji RAF hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Fuji RAF</comment>
+ <comment xml:lang="ia">Imagine brute RAF de Fuji</comment>
+ <comment xml:lang="hu">Fuji RAF nyers kép</comment>
+ <comment xml:lang="hr">Fuji RAF osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Fuji RAF</comment>
+ <comment xml:lang="gl">imaxe en bruto de Fuji RAF</comment>
+ <comment xml:lang="ga">amhíomhá Fuji RAF</comment>
+ <comment xml:lang="fur">imagjin grese Fuji RAF</comment>
+ <comment xml:lang="fr">image brute RAF Fuji</comment>
+ <comment xml:lang="fo">Fuji RAF raw mynd</comment>
+ <comment xml:lang="fi">Fuji-RAF-raakakuva</comment>
+ <comment xml:lang="eu">Fuji RAF irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto RAF de Fuji</comment>
+ <comment xml:lang="en_GB">Fuji RAF raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Fuji RAF</comment>
+ <comment xml:lang="de">Fuji-RAF-Rohbild</comment>
+ <comment xml:lang="da">Fuji RAF raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Fuji RAF</comment>
+ <comment xml:lang="ca">imatge en cru de Fuji RAF</comment>
+ <comment xml:lang="bg">Изображение — Fuji RAF raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Fuji RAF</comment>
+ <comment xml:lang="be">неапрацаваная выява Fuji RAF</comment>
+ <comment xml:lang="ar">صورة Fuji RAF خامة</comment>
+ <comment xml:lang="af">Fuji RAF rou beeld</comment>
<acronym>RAF</acronym>
<expanded-acronym>RAw Format</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
+ <magic>
<match value="FUJIFILMCCD-RAW " type="string" offset="0"/>
</magic>
<glob pattern="*.raf"/>
</mime-type>
<mime-type type="image/x-kodak-dcr">
<comment>Kodak DCR raw image</comment>
- <comment xml:lang="ar">صورة Kodak DCR خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Kodak DCR</comment>
- <comment xml:lang="bg">Изображение — Kodak DCR raw</comment>
- <comment xml:lang="ca">imatge en cru de Kodak DCR</comment>
- <comment xml:lang="cs">surový obrázek Kodak DCR</comment>
- <comment xml:lang="da">Kodak DCR-råbillede</comment>
- <comment xml:lang="de">Kodak-DCR-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Kodak DCR</comment>
- <comment xml:lang="en_GB">Kodak DCR raw image</comment>
- <comment xml:lang="es">imagen en bruto DCR de Kodak</comment>
- <comment xml:lang="eu">Kodak DCR irudi gordina</comment>
- <comment xml:lang="fi">Kodak-DCR-raakakuva</comment>
- <comment xml:lang="fo">Kodak DCR rámynd</comment>
- <comment xml:lang="fr">image brute DCR Kodak</comment>
- <comment xml:lang="ga">amhíomhá Kodak DCR</comment>
- <comment xml:lang="gl">imaxe en bruto de Kodad DCR</comment>
- <comment xml:lang="he">תמונה גולמית של Kodak DCR</comment>
- <comment xml:lang="hr">Kodak DCR osnovna slika</comment>
- <comment xml:lang="hu">Kodak DCR nyers kép</comment>
- <comment xml:lang="ia">Imagine brute DCR de Kodak</comment>
- <comment xml:lang="id">Citra mentah Kodak DCR</comment>
- <comment xml:lang="it">Immagine raw Kodak DCR</comment>
- <comment xml:lang="ja">Kodak DCR raw 画像</comment>
- <comment xml:lang="kk">Kodak DCR өңделмеген суреті</comment>
- <comment xml:lang="ko">코닥 DCR RAW 사진</comment>
- <comment xml:lang="lt">Kodak DCR neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Kodak DCR jēlattēls</comment>
- <comment xml:lang="nb">Kodak DCR raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Kodak DCR-beeld</comment>
- <comment xml:lang="nn">Kodak DCR råbilete</comment>
- <comment xml:lang="oc">imatge brut DCR Kodak</comment>
- <comment xml:lang="pl">Surowy obraz DCR Kodak</comment>
- <comment xml:lang="pt">imagem em bruto Kodak DCR</comment>
- <comment xml:lang="pt_BR">Imagem bruta DCR da Kodak</comment>
- <comment xml:lang="ro">Imagine brută Kodak DCR</comment>
- <comment xml:lang="ru">Необработанное изображение Kodak DCR</comment>
- <comment xml:lang="sk">Surový obrázok Kodak DCR</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Kodak DCR</comment>
- <comment xml:lang="sq">Figurë raw Kodak DCR</comment>
- <comment xml:lang="sr">Кодак ДЦР сирова слика</comment>
- <comment xml:lang="sv">Kodak DCR-råbild</comment>
- <comment xml:lang="tr">Kodak DCR ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив DCR Kodak</comment>
- <comment xml:lang="vi">Ảnh thô Kodak DCR</comment>
+ <comment xml:lang="zh_TW">Kodak DCR 原始影像</comment>
<comment xml:lang="zh_CN">柯达 DCR 原始图像</comment>
- <comment xml:lang="zh_TW">Kodak DCR 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Kodak DCR</comment>
+ <comment xml:lang="uk">цифровий негатив DCR Kodak</comment>
+ <comment xml:lang="tr">Kodak DCR ham görüntüsü</comment>
+ <comment xml:lang="sv">Kodak DCR-råbild</comment>
+ <comment xml:lang="sr">Кодак ДЦР сирова слика</comment>
+ <comment xml:lang="sq">figurë Kodak DCR e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Kodak DCR</comment>
+ <comment xml:lang="si">Kodak DCR අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Kodak DCR</comment>
+ <comment xml:lang="ru">Необработанное изображение Kodak DCR</comment>
+ <comment xml:lang="ro">Imagine brută Kodak DCR</comment>
+ <comment xml:lang="pt_BR">Imagem bruta DCR da Kodak</comment>
+ <comment xml:lang="pt">imagem em bruto Kodak DCR</comment>
+ <comment xml:lang="pl">Surowy obraz DCR Kodak</comment>
+ <comment xml:lang="oc">imatge brut DCR Kodak</comment>
+ <comment xml:lang="nn">Kodak DCR råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Kodak DCR-beeld</comment>
+ <comment xml:lang="nb">Kodak DCR raw-bilde</comment>
+ <comment xml:lang="lv">Kodak DCR jēlattēls</comment>
+ <comment xml:lang="lt">Kodak DCR neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">코닥 DCR RAW 사진</comment>
+ <comment xml:lang="kk">Kodak DCR өңделмеген суреті</comment>
+ <comment xml:lang="ja">Kodak DCR raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Kodak DCR</comment>
+ <comment xml:lang="is">Kodak DCR hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Kodak DCR</comment>
+ <comment xml:lang="ia">Imagine brute DCR de Kodak</comment>
+ <comment xml:lang="hu">Kodak DCR nyers kép</comment>
+ <comment xml:lang="hr">Kodak DCR osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Kodak DCR</comment>
+ <comment xml:lang="gl">imaxe en bruto de Kodad DCR</comment>
+ <comment xml:lang="ga">amhíomhá Kodak DCR</comment>
+ <comment xml:lang="fur">imagjin grese Kodak DCR</comment>
+ <comment xml:lang="fr">image brute DCR Kodak</comment>
+ <comment xml:lang="fo">Kodak DCR rámynd</comment>
+ <comment xml:lang="fi">Kodak-DCR-raakakuva</comment>
+ <comment xml:lang="eu">Kodak DCR irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto DCR de Kodak</comment>
+ <comment xml:lang="en_GB">Kodak DCR raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Kodak DCR</comment>
+ <comment xml:lang="de">Kodak-DCR-Rohbild</comment>
+ <comment xml:lang="da">Kodak DCR raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Kodak DCR</comment>
+ <comment xml:lang="ca">imatge en cru de Kodak DCR</comment>
+ <comment xml:lang="bg">Изображение — Kodak DCR raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Kodak DCR</comment>
+ <comment xml:lang="be">неапрацаваная выява Kodak DCR</comment>
+ <comment xml:lang="ar">صورة Kodak DCR خامة</comment>
+ <comment xml:lang="af">Kodak DCR rou beeld</comment>
<acronym>DCR</acronym>
<expanded-acronym>Digital Camera Raw</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26288,52 +28701,57 @@
</mime-type>
<mime-type type="image/x-kodak-k25">
<comment>Kodak K25 raw image</comment>
- <comment xml:lang="ar">صورة Kodak K25 خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Kodak K25</comment>
- <comment xml:lang="bg">Изображение — Kodak K25 raw</comment>
- <comment xml:lang="ca">imatge en cru de Kodak K25</comment>
- <comment xml:lang="cs">surový obrázek Kodak K25</comment>
- <comment xml:lang="da">Kodak K25-råbillede</comment>
- <comment xml:lang="de">Kodak-K25-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Kodak K25</comment>
- <comment xml:lang="en_GB">Kodak K25 raw image</comment>
- <comment xml:lang="es">imagen en bruto K25 de Kodak</comment>
- <comment xml:lang="eu">Kodak K25 raw image</comment>
- <comment xml:lang="fi">Kodak-K25-raakakuva</comment>
- <comment xml:lang="fo">Kodak K25 rámynd</comment>
- <comment xml:lang="fr">image brute K25 Kodak</comment>
- <comment xml:lang="ga">amhíomhá Kodak K25</comment>
- <comment xml:lang="gl">imaxe en bruto de Kodad K25</comment>
- <comment xml:lang="he">תמונה גולמית של Kodak K25</comment>
- <comment xml:lang="hr">Kodak K25 osnovna slika</comment>
- <comment xml:lang="hu">Kodak K25 nyers kép</comment>
- <comment xml:lang="ia">Imagine brute K25 de Kodak</comment>
- <comment xml:lang="id">Citra mentah Kodak K25</comment>
- <comment xml:lang="it">Immagine raw Kodak K25</comment>
- <comment xml:lang="ja">Kodak K25 raw 画像</comment>
- <comment xml:lang="kk">Kodak K25 өңделмеген суреті</comment>
- <comment xml:lang="ko">코닥 K25 RAW 사진</comment>
- <comment xml:lang="lt">Kodak K25 neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Kodak K25 jēlattēls</comment>
- <comment xml:lang="nb">Kodak K25 raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Kodak K25-beeld</comment>
- <comment xml:lang="nn">Kodak K25 råbilete</comment>
- <comment xml:lang="oc">imatge brut K25 Kodak</comment>
- <comment xml:lang="pl">Surowy obraz K25 Kodak</comment>
- <comment xml:lang="pt">imagem em bruto Kodak K25</comment>
- <comment xml:lang="pt_BR">Imagem bruta K25 da Kodak</comment>
- <comment xml:lang="ro">Imagine brută Kodak K25</comment>
- <comment xml:lang="ru">Необработанное изображение Kodak K25</comment>
- <comment xml:lang="sk">Surový obrázok Kodak K25</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Kodak K25</comment>
- <comment xml:lang="sq">Figurë raw Kodak K25</comment>
- <comment xml:lang="sr">Кодак К25 сирова слика</comment>
- <comment xml:lang="sv">Kodak K25-råbild</comment>
- <comment xml:lang="tr">Kodak K25 ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив K25 Kodak</comment>
- <comment xml:lang="vi">Ảnh thô Kodak K25</comment>
+ <comment xml:lang="zh_TW">Kodak K25 原始影像</comment>
<comment xml:lang="zh_CN">柯达 K25 原始图像</comment>
- <comment xml:lang="zh_TW">Kodak K25 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Kodak K25</comment>
+ <comment xml:lang="uk">цифровий негатив K25 Kodak</comment>
+ <comment xml:lang="tr">Kodak K25 ham görüntüsü</comment>
+ <comment xml:lang="sv">Kodak K25-råbild</comment>
+ <comment xml:lang="sr">Кодак К25 сирова слика</comment>
+ <comment xml:lang="sq">figurë Kodak K25 e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Kodak K25</comment>
+ <comment xml:lang="si">Kodak K25 අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Kodak K25</comment>
+ <comment xml:lang="ru">Необработанное изображение Kodak K25</comment>
+ <comment xml:lang="ro">Imagine brută Kodak K25</comment>
+ <comment xml:lang="pt_BR">Imagem bruta K25 da Kodak</comment>
+ <comment xml:lang="pt">imagem em bruto Kodak K25</comment>
+ <comment xml:lang="pl">Surowy obraz K25 Kodak</comment>
+ <comment xml:lang="oc">imatge brut K25 Kodak</comment>
+ <comment xml:lang="nn">Kodak K25 råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Kodak K25-beeld</comment>
+ <comment xml:lang="nb">Kodak K25 raw-bilde</comment>
+ <comment xml:lang="lv">Kodak K25 jēlattēls</comment>
+ <comment xml:lang="lt">Kodak K25 neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">코닥 K25 RAW 사진</comment>
+ <comment xml:lang="kk">Kodak K25 өңделмеген суреті</comment>
+ <comment xml:lang="ja">Kodak K25 raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Kodak K25</comment>
+ <comment xml:lang="is">Kodak K25 hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Kodak K25</comment>
+ <comment xml:lang="ia">Imagine brute K25 de Kodak</comment>
+ <comment xml:lang="hu">Kodak K25 nyers kép</comment>
+ <comment xml:lang="hr">Kodak K25 osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Kodak K25</comment>
+ <comment xml:lang="gl">imaxe en bruto de Kodad K25</comment>
+ <comment xml:lang="ga">amhíomhá Kodak K25</comment>
+ <comment xml:lang="fur">imagjin grese Kodak K25</comment>
+ <comment xml:lang="fr">image brute K25 Kodak</comment>
+ <comment xml:lang="fo">Kodak K25 rámynd</comment>
+ <comment xml:lang="fi">Kodak-K25-raakakuva</comment>
+ <comment xml:lang="eu">Kodak K25 raw image</comment>
+ <comment xml:lang="es">imagen en bruto K25 de Kodak</comment>
+ <comment xml:lang="en_GB">Kodak K25 raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Kodak K25</comment>
+ <comment xml:lang="de">Kodak-K25-Rohbild</comment>
+ <comment xml:lang="da">Kodak K25 raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Kodak K25</comment>
+ <comment xml:lang="ca">imatge en cru de Kodak K25</comment>
+ <comment xml:lang="bg">Изображение — Kodak K25 raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Kodak K25</comment>
+ <comment xml:lang="be">неапрацаваная выява Kodak K25</comment>
+ <comment xml:lang="ar">صورة Kodak K25 خامة</comment>
+ <comment xml:lang="af">Kodak K25 rou beeld</comment>
<acronym>K25</acronym>
<expanded-acronym>Kodak DC25</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26342,52 +28760,57 @@
</mime-type>
<mime-type type="image/x-kodak-kdc">
<comment>Kodak KDC raw image</comment>
- <comment xml:lang="ar">صورة Kodak KDC خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Kodak KDC</comment>
- <comment xml:lang="bg">Изображение — Kodak KDC raw</comment>
- <comment xml:lang="ca">imatge en cru de Kodak KDC</comment>
- <comment xml:lang="cs">surový obrázek Kodak KDC</comment>
- <comment xml:lang="da">Kodak KDC-råbillede</comment>
- <comment xml:lang="de">Kodak-KDC-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Kodak KDC</comment>
- <comment xml:lang="en_GB">Kodak KDC raw image</comment>
- <comment xml:lang="es">imagen en bruto KDC de Kodak</comment>
- <comment xml:lang="eu">Kodak KDC irudi gordina</comment>
- <comment xml:lang="fi">Kodak-KDC-raakakuva</comment>
- <comment xml:lang="fo">Kodak KDC rámynd</comment>
- <comment xml:lang="fr">image brute KDC Kodak</comment>
- <comment xml:lang="ga">amhíomhá Kodak KDC</comment>
- <comment xml:lang="gl">imaxe en bruto de Kodad KDC</comment>
- <comment xml:lang="he">תמונה גולמית של Kodak KDC</comment>
- <comment xml:lang="hr">Kodak KDC osnovna slika</comment>
- <comment xml:lang="hu">Kodak KDC nyers kép</comment>
- <comment xml:lang="ia">Imagine brute KDC de Kodak</comment>
- <comment xml:lang="id">Citra mentah Kodak KDC</comment>
- <comment xml:lang="it">Immagine raw Kodak KDC</comment>
- <comment xml:lang="ja">Kodak KDC raw 画像</comment>
- <comment xml:lang="kk">Kodak KDC өңделмеген суреті</comment>
- <comment xml:lang="ko">코닥 KDC RAW 사진</comment>
- <comment xml:lang="lt">Kodak KDC neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Kodak KDC jēlattēls</comment>
- <comment xml:lang="nb">Kodak KDC raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Kodak KDC-beeld</comment>
- <comment xml:lang="nn">Kodak KDC råbilete</comment>
- <comment xml:lang="oc">imatge brut KDC Kodak</comment>
- <comment xml:lang="pl">Surowy obraz KDC Kodak</comment>
- <comment xml:lang="pt">imagem em bruto Kodak KDC</comment>
- <comment xml:lang="pt_BR">Imagem bruta KDC da Kodak</comment>
- <comment xml:lang="ro">Imagine brută Kodak KDC</comment>
- <comment xml:lang="ru">Необработанное изображение Kodak KDC</comment>
- <comment xml:lang="sk">Surový obrázok Kodak KDC</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Kodak KDC</comment>
- <comment xml:lang="sq">Figurë raw Kodak KDC</comment>
- <comment xml:lang="sr">Кодак КДЦ сирова слика</comment>
- <comment xml:lang="sv">Kodak KDC-råbild</comment>
- <comment xml:lang="tr">Kodak KDC ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив KDC Kodak</comment>
- <comment xml:lang="vi">Ảnh thô Kodak KDC</comment>
+ <comment xml:lang="zh_TW">Kodak KDC 原始影像</comment>
<comment xml:lang="zh_CN">柯达 KDC 原始图像</comment>
- <comment xml:lang="zh_TW">Kodak KDC 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Kodak KDC</comment>
+ <comment xml:lang="uk">цифровий негатив KDC Kodak</comment>
+ <comment xml:lang="tr">Kodak KDC ham görüntüsü</comment>
+ <comment xml:lang="sv">Kodak KDC-råbild</comment>
+ <comment xml:lang="sr">Кодак КДЦ сирова слика</comment>
+ <comment xml:lang="sq">figurë Kodak KDC e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Kodak KDC</comment>
+ <comment xml:lang="si">Kodak KDC අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Kodak KDC</comment>
+ <comment xml:lang="ru">Необработанное изображение Kodak KDC</comment>
+ <comment xml:lang="ro">Imagine brută Kodak KDC</comment>
+ <comment xml:lang="pt_BR">Imagem bruta KDC da Kodak</comment>
+ <comment xml:lang="pt">imagem em bruto Kodak KDC</comment>
+ <comment xml:lang="pl">Surowy obraz KDC Kodak</comment>
+ <comment xml:lang="oc">imatge brut KDC Kodak</comment>
+ <comment xml:lang="nn">Kodak KDC råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Kodak KDC-beeld</comment>
+ <comment xml:lang="nb">Kodak KDC raw-bilde</comment>
+ <comment xml:lang="lv">Kodak KDC jēlattēls</comment>
+ <comment xml:lang="lt">Kodak KDC neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">코닥 KDC RAW 사진</comment>
+ <comment xml:lang="kk">Kodak KDC өңделмеген суреті</comment>
+ <comment xml:lang="ja">Kodak KDC raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Kodak KDC</comment>
+ <comment xml:lang="is">Kodak KDC hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Kodak KDC</comment>
+ <comment xml:lang="ia">Imagine brute KDC de Kodak</comment>
+ <comment xml:lang="hu">Kodak KDC nyers kép</comment>
+ <comment xml:lang="hr">Kodak KDC osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Kodak KDC</comment>
+ <comment xml:lang="gl">imaxe en bruto de Kodad KDC</comment>
+ <comment xml:lang="ga">amhíomhá Kodak KDC</comment>
+ <comment xml:lang="fur">imagjin grese Kodak KDC</comment>
+ <comment xml:lang="fr">image brute KDC Kodak</comment>
+ <comment xml:lang="fo">Kodak KDC rámynd</comment>
+ <comment xml:lang="fi">Kodak-KDC-raakakuva</comment>
+ <comment xml:lang="eu">Kodak KDC irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto KDC de Kodak</comment>
+ <comment xml:lang="en_GB">Kodak KDC raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Kodak KDC</comment>
+ <comment xml:lang="de">Kodak-KDC-Rohbild</comment>
+ <comment xml:lang="da">Kodak KDC raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Kodak KDC</comment>
+ <comment xml:lang="ca">imatge en cru de Kodak KDC</comment>
+ <comment xml:lang="bg">Изображение — Kodak KDC raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Kodak KDC</comment>
+ <comment xml:lang="be">неапрацаваная выява Kodak KDC</comment>
+ <comment xml:lang="ar">صورة Kodak KDC خامة</comment>
+ <comment xml:lang="af">Kodak KDC rou beeld</comment>
<acronym>KDC</acronym>
<expanded-acronym>Kodak Digital Camera</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26399,274 +28822,339 @@
</mime-type>
<mime-type type="image/x-minolta-mrw">
<comment>Minolta MRW raw image</comment>
- <comment xml:lang="ar">صورة Minolta MRW خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Minolta MRW</comment>
- <comment xml:lang="bg">Изображение — Minolta MRW raw</comment>
- <comment xml:lang="ca">imatge en cru de Minolta MRW</comment>
- <comment xml:lang="cs">surový obrázek Minolta MRW</comment>
- <comment xml:lang="da">Minolta MRW-råbillede</comment>
- <comment xml:lang="de">Minolta-MRW-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Minolta MRW</comment>
- <comment xml:lang="en_GB">Minolta MRW raw image</comment>
- <comment xml:lang="es">imagen en bruto MRW de Minolta</comment>
- <comment xml:lang="eu">Minolta MRW irudi gordina</comment>
- <comment xml:lang="fi">Minolta-MRW-raakakuva</comment>
- <comment xml:lang="fo">Minolta MRW rámynd</comment>
- <comment xml:lang="fr">image brute MRW Minolta</comment>
- <comment xml:lang="ga">amhíomhá Minolta MRW</comment>
- <comment xml:lang="gl">imaxe RAW de Minolta MRW</comment>
- <comment xml:lang="he">תמונה גולמית של Minolta MRW</comment>
- <comment xml:lang="hr">Minolta MRW osnovna slika</comment>
- <comment xml:lang="hu">Minolta MRW nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Minolta MRW</comment>
- <comment xml:lang="id">Citra mentah Minolta MRW</comment>
- <comment xml:lang="it">Immagine raw Minolta MRW</comment>
- <comment xml:lang="ja">Minolta MRW raw 画像</comment>
- <comment xml:lang="kk">Minolta MRW өңделмеген суреті</comment>
- <comment xml:lang="ko">미놀타 MRW RAW 사진</comment>
- <comment xml:lang="lt">Minolta MRW neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Minolta MRW jēlattēls</comment>
- <comment xml:lang="nb">Minolta MRW raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Minolta MRW-beeld</comment>
- <comment xml:lang="nn">Minolta MRW råbilete</comment>
- <comment xml:lang="oc">imatge brut MRW Minolta</comment>
- <comment xml:lang="pl">Surowy obraz MRW Minolta</comment>
- <comment xml:lang="pt">imagem em bruto Minolta MRW</comment>
- <comment xml:lang="pt_BR">Imagem bruta MRW do Minolta</comment>
- <comment xml:lang="ro">Imagine brută Minolta MRW</comment>
- <comment xml:lang="ru">Необработанное изображение Minolta MRW</comment>
- <comment xml:lang="sk">Surový obrázok Minolta MRW</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Minolta MRW</comment>
- <comment xml:lang="sq">Figurë raw Minolta MRW</comment>
- <comment xml:lang="sr">Минолта МРВ сирова слика</comment>
- <comment xml:lang="sv">Minolta MRW-råbild</comment>
- <comment xml:lang="tr">Minolta MRW ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив MRW Minolta</comment>
- <comment xml:lang="vi">Ảnh thô Minolta MRW</comment>
+ <comment xml:lang="zh_TW">Minolta MRW 原始影像</comment>
<comment xml:lang="zh_CN">美能达 MRW 原始图像</comment>
- <comment xml:lang="zh_TW">Minolta MRW 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Minolta MRW</comment>
+ <comment xml:lang="uk">цифровий негатив MRW Minolta</comment>
+ <comment xml:lang="tr">Minolta MRW ham görüntüsü</comment>
+ <comment xml:lang="sv">Minolta MRW-råbild</comment>
+ <comment xml:lang="sr">Минолта МРВ сирова слика</comment>
+ <comment xml:lang="sq">figurë Minolta MRW e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Minolta MRW</comment>
+ <comment xml:lang="si">Minolta MRW අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Minolta MRW</comment>
+ <comment xml:lang="ru">Необработанное изображение Minolta MRW</comment>
+ <comment xml:lang="ro">Imagine brută Minolta MRW</comment>
+ <comment xml:lang="pt_BR">Imagem bruta MRW do Minolta</comment>
+ <comment xml:lang="pt">imagem em bruto Minolta MRW</comment>
+ <comment xml:lang="pl">Surowy obraz MRW Minolta</comment>
+ <comment xml:lang="oc">imatge brut MRW Minolta</comment>
+ <comment xml:lang="nn">Minolta MRW råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Minolta MRW-beeld</comment>
+ <comment xml:lang="nb">Minolta MRW raw-bilde</comment>
+ <comment xml:lang="lv">Minolta MRW jēlattēls</comment>
+ <comment xml:lang="lt">Minolta MRW neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">미놀타 MRW RAW 사진</comment>
+ <comment xml:lang="kk">Minolta MRW өңделмеген суреті</comment>
+ <comment xml:lang="ja">Minolta MRW raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Minolta MRW</comment>
+ <comment xml:lang="is">Minolta MRW hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Minolta MRW</comment>
+ <comment xml:lang="ia">Imagine brute Minolta MRW</comment>
+ <comment xml:lang="hu">Minolta MRW nyers kép</comment>
+ <comment xml:lang="hr">Minolta MRW osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Minolta MRW</comment>
+ <comment xml:lang="gl">imaxe RAW de Minolta MRW</comment>
+ <comment xml:lang="ga">amhíomhá Minolta MRW</comment>
+ <comment xml:lang="fur">imagjin grese Minolta MRW</comment>
+ <comment xml:lang="fr">image brute MRW Minolta</comment>
+ <comment xml:lang="fo">Minolta MRW rámynd</comment>
+ <comment xml:lang="fi">Minolta-MRW-raakakuva</comment>
+ <comment xml:lang="eu">Minolta MRW irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto MRW de Minolta</comment>
+ <comment xml:lang="en_GB">Minolta MRW raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Minolta MRW</comment>
+ <comment xml:lang="de">Minolta-MRW-Rohbild</comment>
+ <comment xml:lang="da">Minolta MRW raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Minolta MRW</comment>
+ <comment xml:lang="ca">imatge en cru de Minolta MRW</comment>
+ <comment xml:lang="bg">Изображение — Minolta MRW raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Minolta MRW</comment>
+ <comment xml:lang="be">неапрацаваная выява Minolta MRW</comment>
+ <comment xml:lang="ar">صورة Minolta MRW خامة</comment>
+ <comment xml:lang="af">Minolta MRW rou beeld</comment>
<acronym>MRW</acronym>
<expanded-acronym>Minolta RaW</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
+ <magic>
<match value="\x00MRM" type="string" offset="0"/>
</magic>
<glob pattern="*.mrw"/>
</mime-type>
<mime-type type="image/x-nikon-nef">
<comment>Nikon NEF raw image</comment>
- <comment xml:lang="ar">صورة Nikon NEF خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Nikon NEF</comment>
- <comment xml:lang="bg">Изображение — Nikon NEF raw</comment>
- <comment xml:lang="ca">imatge en cru de Nikon NEF</comment>
- <comment xml:lang="cs">surový obrázek Nikon NEF</comment>
- <comment xml:lang="da">Nikon NEF-råbillede</comment>
- <comment xml:lang="de">Nikon-NEF-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Nikon NEF</comment>
- <comment xml:lang="en_GB">Nikon NEF raw image</comment>
- <comment xml:lang="es">imagen en bruto NEF de Nikon</comment>
- <comment xml:lang="eu">Nikon NEF irudi gordina</comment>
- <comment xml:lang="fi">Nikon-NEF-raakakuva</comment>
- <comment xml:lang="fo">Nikon NEF rámynd</comment>
- <comment xml:lang="fr">image brute NEF Nikon</comment>
- <comment xml:lang="ga">amhíomhá Nikon NEF</comment>
- <comment xml:lang="gl">imaxe RAW NEF Nikon</comment>
- <comment xml:lang="he">תמונה גולמית של Nikon NEF</comment>
- <comment xml:lang="hr">Nikon NEF osnovna slika</comment>
- <comment xml:lang="hu">Nikon NEF nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Nikon NEF</comment>
- <comment xml:lang="id">Citra mentah Nikon NEF</comment>
- <comment xml:lang="it">Immagine raw Nikon NEF</comment>
- <comment xml:lang="ja">Nikon NEF raw イメージ</comment>
- <comment xml:lang="kk">Nikon NEF өңделмеген суреті</comment>
- <comment xml:lang="ko">니콘 NEF RAW 사진</comment>
- <comment xml:lang="lt">Nikon NEF neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Nikon NEF jēlattēls</comment>
- <comment xml:lang="nb">Nikon NEF raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Nikon NEF-beeld</comment>
- <comment xml:lang="nn">Nikon NEF råbilete</comment>
- <comment xml:lang="oc">imatge brut NEF Nikon</comment>
- <comment xml:lang="pl">Surowy obraz NEF Nikon</comment>
- <comment xml:lang="pt">imagem em bruto Nikon NEF</comment>
- <comment xml:lang="pt_BR">Imagem bruta NEF da Nikon</comment>
- <comment xml:lang="ro">Imagine brută Nikon NEF</comment>
- <comment xml:lang="ru">Необработанное изображение Nikon NEF</comment>
- <comment xml:lang="sk">Surový obrázok Nikon NEF</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Nikon NEF</comment>
- <comment xml:lang="sq">Figurë raw Nikon NEF</comment>
- <comment xml:lang="sr">Никон НЕФ сирова слика</comment>
- <comment xml:lang="sv">Nikon NEF-råbild</comment>
- <comment xml:lang="tr">Nikon NEF ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив NEF Nikon</comment>
- <comment xml:lang="vi">Ảnh thô Nikon NEF</comment>
+ <comment xml:lang="zh_TW">Nikon NEF 原始影像</comment>
<comment xml:lang="zh_CN">尼康 NEF 原始图像</comment>
- <comment xml:lang="zh_TW">Nikon NEF 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Nikon NEF</comment>
+ <comment xml:lang="uk">цифровий негатив NEF Nikon</comment>
+ <comment xml:lang="tr">Nikon NEF ham görüntüsü</comment>
+ <comment xml:lang="sv">Nikon NEF-råbild</comment>
+ <comment xml:lang="sr">Никон НЕФ сирова слика</comment>
+ <comment xml:lang="sq">figurë Nikon NEF e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Nikon NEF</comment>
+ <comment xml:lang="si">Nikon NEF අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Nikon NEF</comment>
+ <comment xml:lang="ru">Необработанное изображение Nikon NEF</comment>
+ <comment xml:lang="ro">Imagine brută Nikon NEF</comment>
+ <comment xml:lang="pt_BR">Imagem bruta NEF da Nikon</comment>
+ <comment xml:lang="pt">imagem em bruto Nikon NEF</comment>
+ <comment xml:lang="pl">Surowy obraz NEF Nikon</comment>
+ <comment xml:lang="oc">imatge brut NEF Nikon</comment>
+ <comment xml:lang="nn">Nikon NEF råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Nikon NEF-beeld</comment>
+ <comment xml:lang="nb">Nikon NEF raw-bilde</comment>
+ <comment xml:lang="lv">Nikon NEF jēlattēls</comment>
+ <comment xml:lang="lt">Nikon NEF neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">니콘 NEF RAW 사진</comment>
+ <comment xml:lang="kk">Nikon NEF өңделмеген суреті</comment>
+ <comment xml:lang="ja">Nikon NEF raw イメージ</comment>
+ <comment xml:lang="it">Immagine raw Nikon NEF</comment>
+ <comment xml:lang="is">Nikon NEF hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Nikon NEF</comment>
+ <comment xml:lang="ia">Imagine brute Nikon NEF</comment>
+ <comment xml:lang="hu">Nikon NEF nyers kép</comment>
+ <comment xml:lang="hr">Nikon NEF osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Nikon NEF</comment>
+ <comment xml:lang="gl">imaxe RAW NEF Nikon</comment>
+ <comment xml:lang="ga">amhíomhá Nikon NEF</comment>
+ <comment xml:lang="fur">imagjin grese Nikon NEF</comment>
+ <comment xml:lang="fr">image brute NEF Nikon</comment>
+ <comment xml:lang="fo">Nikon NEF rámynd</comment>
+ <comment xml:lang="fi">Nikon-NEF-raakakuva</comment>
+ <comment xml:lang="eu">Nikon NEF irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto NEF de Nikon</comment>
+ <comment xml:lang="en_GB">Nikon NEF raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Nikon NEF</comment>
+ <comment xml:lang="de">Nikon-NEF-Rohbild</comment>
+ <comment xml:lang="da">Nikon NEF raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Nikon NEF</comment>
+ <comment xml:lang="ca">imatge en cru de Nikon NEF</comment>
+ <comment xml:lang="bg">Изображение — Nikon NEF raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Nikon NEF</comment>
+ <comment xml:lang="be">неапрацаваная выява Nikon NEF</comment>
+ <comment xml:lang="ar">صورة Nikon NEF خامة</comment>
+ <comment xml:lang="af">Nikon NEF rou beeld</comment>
<acronym>NEF</acronym>
<expanded-acronym>Nikon Electronic Format</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
<sub-class-of type="image/tiff"/>
<glob pattern="*.nef"/>
</mime-type>
+ <mime-type type="image/x-nikon-nrw">
+ <comment>Nikon NRW raw image</comment>
+ <comment xml:lang="zh_TW">Nikon NRW 原始影像</comment>
+ <comment xml:lang="zh_CN">尼康 NRW 原始图像</comment>
+ <comment xml:lang="uk">цифровий негатив NRW Nikon</comment>
+ <comment xml:lang="tr">Nikon NRW ham görüntüsü</comment>
+ <comment xml:lang="sv">Nikon NRW-råbild</comment>
+ <comment xml:lang="sl">Neobdelana slika NRW</comment>
+ <comment xml:lang="si">Nikon NRW අමු රූපය</comment>
+ <comment xml:lang="ru">Необработанное изображение Nikon NRW</comment>
+ <comment xml:lang="pt_BR">Imagem bruta NRW da Nikon</comment>
+ <comment xml:lang="pl">Surowy obraz NRW Nikon</comment>
+ <comment xml:lang="oc">imatge brut Nikon NRW</comment>
+ <comment xml:lang="nl">onbewerkt Nikon NRW beeld</comment>
+ <comment xml:lang="ko">니콘 NRW RAW 사진</comment>
+ <comment xml:lang="kk">Nikon NRW өңделмеген суреті</comment>
+ <comment xml:lang="ja">Nikon NRW raw 画像ファイル</comment>
+ <comment xml:lang="it">Immagine raw Nikon NRW</comment>
+ <comment xml:lang="hr">Nikon NRW osnovna slika</comment>
+ <comment xml:lang="gl">Imaxe RAW de Nikon NRW</comment>
+ <comment xml:lang="fi">Nikon-NRW-raakakuva</comment>
+ <comment xml:lang="eu">Nikon NRW irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto NRW de Nikon</comment>
+ <comment xml:lang="en_GB">Nikon NRW raw image</comment>
+ <comment xml:lang="de">Nikon-NRW-Rohbild</comment>
+ <comment xml:lang="be">неапрацаваная выява Nikon NRW</comment>
+ <comment xml:lang="ar">صورة Nikon NRW خامة</comment>
+ <sub-class-of type="image/x-dcraw"/>
+ <sub-class-of type="image/tiff"/>
+ <glob pattern="*.nrw"/>
+ </mime-type>
<mime-type type="image/x-olympus-orf">
<comment>Olympus ORF raw image</comment>
- <comment xml:lang="ar">صورة Olympus ORF خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Olympus ORF</comment>
- <comment xml:lang="bg">Изображение — Olympus ORF raw</comment>
- <comment xml:lang="ca">imatge en cru d'Olympus ORF</comment>
- <comment xml:lang="cs">surový obrázek Olympus ORF</comment>
- <comment xml:lang="da">Olympus ORF-råbillede</comment>
- <comment xml:lang="de">Olympus-ORF-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Olympus ORF</comment>
- <comment xml:lang="en_GB">Olympus ORF raw image</comment>
- <comment xml:lang="es">imagen en bruto ORF de Olympus</comment>
- <comment xml:lang="eu">Olympus ORF irudi gordina</comment>
- <comment xml:lang="fi">Olympus-ORF-raakakuva</comment>
- <comment xml:lang="fo">Olympus ORF rámynd</comment>
- <comment xml:lang="fr">image brute ORF Olympus</comment>
- <comment xml:lang="ga">amhíomhá Olympus ORF</comment>
- <comment xml:lang="gl">imaxe en bruto de Olympus ORF</comment>
- <comment xml:lang="he">תמונה גולמית של Olympus ORF</comment>
- <comment xml:lang="hr">Olympus ORF osnovna slika</comment>
- <comment xml:lang="hu">Olympus ORF nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Olympus ORF</comment>
- <comment xml:lang="id">Citra mentah Olympus ORF</comment>
- <comment xml:lang="it">Immagine raw Olympus ORF</comment>
- <comment xml:lang="ja">Olympus ORF raw 画像</comment>
- <comment xml:lang="ka">Olympus ORF-ის raw გამოსახულება</comment>
- <comment xml:lang="kk">Olympus ORF өңделмеген суреті</comment>
- <comment xml:lang="ko">올림푸스 ORF RAW 사진</comment>
- <comment xml:lang="lt">Olympus ORF neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Olympus ORF jēlattēls</comment>
- <comment xml:lang="nb">Olympus ORF raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Olympus ORF-beeld</comment>
- <comment xml:lang="nn">Olympus ORF råbilete</comment>
- <comment xml:lang="oc">imatge brut ORF Olympus</comment>
- <comment xml:lang="pl">Surowy obraz Olympus ORF</comment>
- <comment xml:lang="pt">imagem em bruto Olympus ORF</comment>
- <comment xml:lang="pt_BR">Imagem bruta ORF da Olympus</comment>
- <comment xml:lang="ro">Imagine brută Olympus ORF</comment>
- <comment xml:lang="ru">Необработанное изображение Olympus ORF</comment>
- <comment xml:lang="sk">Surový obrázok Olympus ORF</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Olympus ORF</comment>
- <comment xml:lang="sq">Figurë raw Olympus ORF</comment>
- <comment xml:lang="sr">Олимпус ОРФ сирова слика</comment>
- <comment xml:lang="sv">Olympus ORF-råbild</comment>
- <comment xml:lang="tr">Olympus ORF ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив ORF Olympus</comment>
- <comment xml:lang="vi">Ảnh thô Olympus ORF</comment>
+ <comment xml:lang="zh_TW">Olympus ORF 原始影像</comment>
<comment xml:lang="zh_CN">奥林巴斯 ORF 原始图像</comment>
- <comment xml:lang="zh_TW">Olympus ORF 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Olympus ORF</comment>
+ <comment xml:lang="uk">цифровий негатив ORF Olympus</comment>
+ <comment xml:lang="tr">Olympus ORF ham görüntüsü</comment>
+ <comment xml:lang="sv">Olympus ORF-råbild</comment>
+ <comment xml:lang="sr">Олимпус ОРФ сирова слика</comment>
+ <comment xml:lang="sq">figurë Olympus ORF e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Olympus ORF</comment>
+ <comment xml:lang="si">Olympus ORF අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Olympus ORF</comment>
+ <comment xml:lang="ru">Необработанное изображение Olympus ORF</comment>
+ <comment xml:lang="ro">Imagine brută Olympus ORF</comment>
+ <comment xml:lang="pt_BR">Imagem bruta ORF da Olympus</comment>
+ <comment xml:lang="pt">imagem em bruto Olympus ORF</comment>
+ <comment xml:lang="pl">Surowy obraz Olympus ORF</comment>
+ <comment xml:lang="oc">imatge brut ORF Olympus</comment>
+ <comment xml:lang="nn">Olympus ORF råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Olympus ORF-beeld</comment>
+ <comment xml:lang="nb">Olympus ORF raw-bilde</comment>
+ <comment xml:lang="lv">Olympus ORF jēlattēls</comment>
+ <comment xml:lang="lt">Olympus ORF neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">올림푸스 ORF RAW 사진</comment>
+ <comment xml:lang="kk">Olympus ORF өңделмеген суреті</comment>
+ <comment xml:lang="ka">Olympus ORF-ის raw გამოსახულება</comment>
+ <comment xml:lang="ja">Olympus ORF raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Olympus ORF</comment>
+ <comment xml:lang="is">Olympus ORF hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Olympus ORF</comment>
+ <comment xml:lang="ia">Imagine brute Olympus ORF</comment>
+ <comment xml:lang="hu">Olympus ORF nyers kép</comment>
+ <comment xml:lang="hr">Olympus ORF osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Olympus ORF</comment>
+ <comment xml:lang="gl">imaxe en bruto de Olympus ORF</comment>
+ <comment xml:lang="ga">amhíomhá Olympus ORF</comment>
+ <comment xml:lang="fur">imagjin grese Olympus ORF</comment>
+ <comment xml:lang="fr">image brute ORF Olympus</comment>
+ <comment xml:lang="fo">Olympus ORF rámynd</comment>
+ <comment xml:lang="fi">Olympus-ORF-raakakuva</comment>
+ <comment xml:lang="eu">Olympus ORF irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto ORF de Olympus</comment>
+ <comment xml:lang="en_GB">Olympus ORF raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Olympus ORF</comment>
+ <comment xml:lang="de">Olympus-ORF-Rohbild</comment>
+ <comment xml:lang="da">Olympus ORF raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Olympus ORF</comment>
+ <comment xml:lang="ca">imatge en cru d'Olympus ORF</comment>
+ <comment xml:lang="bg">Изображение — Olympus ORF raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Olympus ORF</comment>
+ <comment xml:lang="be">неапрацаваная выява Olympus ORF</comment>
+ <comment xml:lang="ar">صورة Olympus ORF خامة</comment>
+ <comment xml:lang="af">Olympus ORF rou beeld</comment>
<acronym>ORF</acronym>
<expanded-acronym>Olympus Raw Format</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
-
-
-
-
-
+ <magic>
+ <!-- an ORF file is basically a TIFF file with a non standard !-->
+ <!-- header IIRO which is not nice since it is only composed !-->
+ <!-- of ASCII codes. Fortunately, the TIFF header is followed !-->
+ <!-- by the offset of the first TIFF ifd which is always !-->
+ <!-- 0x00000008 (Little endian) for an ORF !-->
<match value="IIRO\x08\x00\x00\x00" type="string" offset="0"/>
</magic>
<glob pattern="*.orf"/>
</mime-type>
<mime-type type="image/x-panasonic-rw">
<comment>Panasonic raw image</comment>
- <comment xml:lang="ar">صورة Panasonic خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Panasonic</comment>
- <comment xml:lang="bg">Изображение — Panasonic raw</comment>
- <comment xml:lang="ca">imatge en cru de Panasonic</comment>
- <comment xml:lang="cs">surový obrázek Panasonic</comment>
- <comment xml:lang="da">Panasonicråbillede (raw)</comment>
- <comment xml:lang="de">Panasonic-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Panasonic</comment>
- <comment xml:lang="en_GB">Panasonic raw image</comment>
- <comment xml:lang="es">imagen en bruto de Panasonic</comment>
- <comment xml:lang="eu">Panasonic irudi gordina</comment>
- <comment xml:lang="fi">Panasonic-raakakuva</comment>
- <comment xml:lang="fo">Panasonic rámynd</comment>
- <comment xml:lang="fr">image brute Panasonic</comment>
- <comment xml:lang="ga">amhíomhá Panasonic</comment>
- <comment xml:lang="gl">imaxe en bruto de Panasonic</comment>
- <comment xml:lang="he">תמונה גולמית של Panasonic</comment>
- <comment xml:lang="hr">Panasonic osnovna slika</comment>
- <comment xml:lang="hu">Panasonic nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Panasonic</comment>
- <comment xml:lang="id">Citra mentah Panasonic</comment>
- <comment xml:lang="it">Immagine raw Panasonic</comment>
- <comment xml:lang="ja">Panasonic raw 画像</comment>
- <comment xml:lang="kk">Panasonic өңделмеген суреті</comment>
- <comment xml:lang="ko">파나소닉 RAW 사진</comment>
- <comment xml:lang="lt">Panasonic neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Panasonic jēlattēls</comment>
- <comment xml:lang="nb">Panasonic raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Panasonic-beeld</comment>
- <comment xml:lang="nn">Panasonic råbilete</comment>
- <comment xml:lang="oc">imatge brut Panasonic</comment>
- <comment xml:lang="pl">Obraz raw Panasonic</comment>
- <comment xml:lang="pt">imagem em bruto Panasonic</comment>
- <comment xml:lang="pt_BR">Imagem bruta da Panasonic</comment>
- <comment xml:lang="ro">Imagine brută Panasonic</comment>
- <comment xml:lang="ru">Необработанное изображение Panasonic</comment>
- <comment xml:lang="sk">Surový obrázok Panasonic</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Panasonic</comment>
- <comment xml:lang="sq">Figurë raw Panasonic</comment>
- <comment xml:lang="sr">Панасоник сирова слика</comment>
- <comment xml:lang="sv">Panasonic-råbild</comment>
- <comment xml:lang="tr">Panasonic ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив Panasonic</comment>
- <comment xml:lang="vi">Ảnh thô Panasonic</comment>
+ <comment xml:lang="zh_TW">Panasonic 原始影像</comment>
<comment xml:lang="zh_CN">松下原始图像</comment>
- <comment xml:lang="zh_TW">Panasonic 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Panasonic</comment>
+ <comment xml:lang="uk">цифровий негатив Panasonic</comment>
+ <comment xml:lang="tr">Panasonic ham görüntüsü</comment>
+ <comment xml:lang="sv">Panasonic-råbild</comment>
+ <comment xml:lang="sr">Панасоник сирова слика</comment>
+ <comment xml:lang="sq">figurë Panasonic e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Panasonic</comment>
+ <comment xml:lang="si">පැනසොනික් අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Panasonic</comment>
+ <comment xml:lang="ru">Необработанное изображение Panasonic</comment>
+ <comment xml:lang="ro">Imagine brută Panasonic</comment>
+ <comment xml:lang="pt_BR">Imagem bruta da Panasonic</comment>
+ <comment xml:lang="pt">imagem em bruto Panasonic</comment>
+ <comment xml:lang="pl">Obraz raw Panasonic</comment>
+ <comment xml:lang="oc">imatge brut Panasonic</comment>
+ <comment xml:lang="nn">Panasonic råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Panasonic-beeld</comment>
+ <comment xml:lang="nb">Panasonic raw-bilde</comment>
+ <comment xml:lang="lv">Panasonic jēlattēls</comment>
+ <comment xml:lang="lt">Panasonic neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">파나소닉 RAW 사진</comment>
+ <comment xml:lang="kk">Panasonic өңделмеген суреті</comment>
+ <comment xml:lang="ja">Panasonic raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Panasonic</comment>
+ <comment xml:lang="is">Panasonic hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Panasonic</comment>
+ <comment xml:lang="ia">Imagine brute Panasonic</comment>
+ <comment xml:lang="hu">Panasonic nyers kép</comment>
+ <comment xml:lang="hr">Panasonic osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Panasonic</comment>
+ <comment xml:lang="gl">imaxe en bruto de Panasonic</comment>
+ <comment xml:lang="ga">amhíomhá Panasonic</comment>
+ <comment xml:lang="fur">imagjin grese Panasonic</comment>
+ <comment xml:lang="fr">image brute Panasonic</comment>
+ <comment xml:lang="fo">Panasonic rámynd</comment>
+ <comment xml:lang="fi">Panasonic-raakakuva</comment>
+ <comment xml:lang="eu">Panasonic irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto de Panasonic</comment>
+ <comment xml:lang="en_GB">Panasonic raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Panasonic</comment>
+ <comment xml:lang="de">Panasonic-Rohbild</comment>
+ <comment xml:lang="da">Panasonic raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Panasonic</comment>
+ <comment xml:lang="ca">imatge en cru de Panasonic</comment>
+ <comment xml:lang="bg">Изображение — Panasonic raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Panasonic</comment>
+ <comment xml:lang="be">неапрацаваная выява Panasonic</comment>
+ <comment xml:lang="ar">صورة Panasonic خامة</comment>
+ <comment xml:lang="af">Panasonic rou beeld</comment>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
-
+ <magic>
+ <!-- Some kind of TIFF file with a non-standard version in prefix !-->
<match value="IIU\x00\x08\x00\x00\x00" type="string" offset="0"/>
</magic>
<glob pattern="*.raw"/>
<alias type="image/x-panasonic-raw"/>
</mime-type>
<mime-type type="image/x-panasonic-rw2">
- <comment>Panasonic raw2 image</comment>
- <comment xml:lang="bg">Изображение — Panasonic raw2</comment>
- <comment xml:lang="ca">imatge «RAW2» de Panasonic</comment>
- <comment xml:lang="cs">surový obrázek Panasonic raw2</comment>
- <comment xml:lang="da">Panasonic-rå2-billede (raw)</comment>
- <comment xml:lang="de">Panasonic raw2-Bild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Panasonic (raw2)</comment>
- <comment xml:lang="en_GB">Panasonic raw2 image</comment>
- <comment xml:lang="es">imagen en bruto raw2 de Panasonic</comment>
- <comment xml:lang="eu">Panasonic raw2 irudia</comment>
- <comment xml:lang="fi">Panasonic raw2 -kuva</comment>
- <comment xml:lang="fr">image raw2 Panasonic</comment>
- <comment xml:lang="ga">íomhá raw2 Panasonic</comment>
- <comment xml:lang="gl">imaxe en bruto raw2 de Panasonic</comment>
- <comment xml:lang="he">תמונת raw2 של Panasonic</comment>
- <comment xml:lang="hr">Panasonic raw2 image</comment>
- <comment xml:lang="hu">Panasonic raw2 kép</comment>
- <comment xml:lang="ia">Imagine raw2 Panasonic</comment>
- <comment xml:lang="id">Image Panasonic raw2</comment>
- <comment xml:lang="it">Immagine raw2 Panasonic</comment>
- <comment xml:lang="ja">Panasonic raw2 画像</comment>
- <comment xml:lang="kk">Panasonic raw2 суреті</comment>
- <comment xml:lang="ko">파나소닉 RAW2 사진</comment>
- <comment xml:lang="lv">Panasonic raw2 jēlattēls</comment>
- <comment xml:lang="nl">Panasonic raw2 image</comment>
- <comment xml:lang="oc">imatge raw2 Panasonic</comment>
- <comment xml:lang="pl">Obraz raw2 Panasonic</comment>
+ <comment>Panasonic raw image</comment>
+ <comment xml:lang="zh_TW">Panasonic 原始影像</comment>
+ <comment xml:lang="zh_CN">松下原始图像</comment>
+ <comment xml:lang="vi">Ảnh thô Panasonic</comment>
+ <comment xml:lang="uk">цифровий негатив Panasonic</comment>
+ <comment xml:lang="tr">Panasonic ham görüntüsü</comment>
+ <comment xml:lang="sv">Panasonic-råbild</comment>
+ <comment xml:lang="sr">Панасоник сирова слика</comment>
+ <comment xml:lang="sq">figurë Panasonic e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Panasonic</comment>
+ <comment xml:lang="si">පැනසොනික් අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Panasonic</comment>
+ <comment xml:lang="ru">Необработанное изображение Panasonic</comment>
+ <comment xml:lang="ro">Imagine brută Panasonic</comment>
+ <comment xml:lang="pt_BR">Imagem bruta da Panasonic</comment>
<comment xml:lang="pt">imagem em bruto Panasonic</comment>
- <comment xml:lang="pt_BR">Imagem raw2 da Panasonic</comment>
- <comment xml:lang="ru">Необработанное изображение Panasonic raw2</comment>
- <comment xml:lang="sk">Surový obrázok Panasonic raw2</comment>
- <comment xml:lang="sl">Slikovna datoteka Panasonic raw2</comment>
- <comment xml:lang="sr">Панасоник сирова2 слика</comment>
- <comment xml:lang="sv">Panasonic raw2-bild</comment>
- <comment xml:lang="tr">Panasonic raw2 görüntüsü</comment>
- <comment xml:lang="uk">зображення формату raw2 Panasonic</comment>
- <comment xml:lang="zh_CN">松下 raw2 图像</comment>
- <comment xml:lang="zh_TW">Panasonic raw2 影像</comment>
+ <comment xml:lang="pl">Obraz raw Panasonic</comment>
+ <comment xml:lang="oc">imatge brut Panasonic</comment>
+ <comment xml:lang="nn">Panasonic råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Panasonic-beeld</comment>
+ <comment xml:lang="nb">Panasonic raw-bilde</comment>
+ <comment xml:lang="lv">Panasonic jēlattēls</comment>
+ <comment xml:lang="lt">Panasonic neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">파나소닉 RAW 사진</comment>
+ <comment xml:lang="kk">Panasonic өңделмеген суреті</comment>
+ <comment xml:lang="ja">Panasonic raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Panasonic</comment>
+ <comment xml:lang="is">Panasonic hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Panasonic</comment>
+ <comment xml:lang="ia">Imagine brute Panasonic</comment>
+ <comment xml:lang="hu">Panasonic nyers kép</comment>
+ <comment xml:lang="hr">Panasonic osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Panasonic</comment>
+ <comment xml:lang="gl">imaxe en bruto de Panasonic</comment>
+ <comment xml:lang="ga">amhíomhá Panasonic</comment>
+ <comment xml:lang="fur">imagjin grese Panasonic</comment>
+ <comment xml:lang="fr">image brute Panasonic</comment>
+ <comment xml:lang="fo">Panasonic rámynd</comment>
+ <comment xml:lang="fi">Panasonic-raakakuva</comment>
+ <comment xml:lang="eu">Panasonic irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto de Panasonic</comment>
+ <comment xml:lang="en_GB">Panasonic raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Panasonic</comment>
+ <comment xml:lang="de">Panasonic-Rohbild</comment>
+ <comment xml:lang="da">Panasonic raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Panasonic</comment>
+ <comment xml:lang="ca">imatge en cru de Panasonic</comment>
+ <comment xml:lang="bg">Изображение — Panasonic raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Panasonic</comment>
+ <comment xml:lang="be">неапрацаваная выява Panasonic</comment>
+ <comment xml:lang="ar">صورة Panasonic خامة</comment>
+ <comment xml:lang="af">Panasonic rou beeld</comment>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
-
+ <magic>
+ <!-- Some kind of TIFF file with a non-standard version in prefix !-->
<match value="IIU\x00\x18\x00\x00\x00" type="string" offset="0"/>
</magic>
<glob pattern="*.rw2"/>
@@ -26674,52 +29162,57 @@
</mime-type>
<mime-type type="image/x-pentax-pef">
<comment>Pentax PEF raw image</comment>
- <comment xml:lang="ar">صورة Pentax PEF خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Pentax PEF</comment>
- <comment xml:lang="bg">Изображение — Pentax PEF raw</comment>
- <comment xml:lang="ca">imatge en cru de Pentax PEF</comment>
- <comment xml:lang="cs">surový obrázek Pentax PEF</comment>
- <comment xml:lang="da">Pentax PEF-råbillede</comment>
- <comment xml:lang="de">Pentax-PEF-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Pentax PEF</comment>
- <comment xml:lang="en_GB">Pentax PEF raw image</comment>
- <comment xml:lang="es">imagen en bruto PEF de Pentax</comment>
- <comment xml:lang="eu">Pentax PEF irudi gordina</comment>
- <comment xml:lang="fi">Pentax-PEF-raakakuva</comment>
- <comment xml:lang="fo">Pentax PEF rámynd</comment>
- <comment xml:lang="fr">image brute PEF Pentax</comment>
- <comment xml:lang="ga">amhíomhá Pentax PEF</comment>
- <comment xml:lang="gl">imaxe en bruto PEF de Pentax</comment>
- <comment xml:lang="he">תמונה גולמית של Pentax PEF</comment>
- <comment xml:lang="hr">Pentax PEF osnovna slika</comment>
- <comment xml:lang="hu">Pentax PEF nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Pentax PEF</comment>
- <comment xml:lang="id">Citra mentah Pentax PEF</comment>
- <comment xml:lang="it">Immagine raw Pentax PEF</comment>
- <comment xml:lang="ja">Pentax PEF raw 画像</comment>
- <comment xml:lang="kk">Pentax PEF өңделмеген суреті</comment>
- <comment xml:lang="ko">펜탁스 PEF RAW 사진</comment>
- <comment xml:lang="lt">Pentax PEF neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Pentax PEF jēlattēls</comment>
- <comment xml:lang="nb">Pentax PEF raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Pentax PEF-beeld</comment>
- <comment xml:lang="nn">Pentax PEF råbilete</comment>
- <comment xml:lang="oc">imatge brut PEF Pentax</comment>
- <comment xml:lang="pl">Surowy obraz Pentax PEF</comment>
- <comment xml:lang="pt">imagem em bruto Pentax PEF</comment>
- <comment xml:lang="pt_BR">Imagem bruta PEF da Pentax</comment>
- <comment xml:lang="ro">Imagine brută Pentax PEF</comment>
- <comment xml:lang="ru">Необработанное изображение Pentax PEF</comment>
- <comment xml:lang="sk">Surový obrázok Pentax PEF</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Pentax PEF</comment>
- <comment xml:lang="sq">Figurë raw Pentax PEF</comment>
- <comment xml:lang="sr">Пентакс ПЕФ сирова слика</comment>
- <comment xml:lang="sv">Pentax PEF-råbild</comment>
- <comment xml:lang="tr">Pentax PEF ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив PEF Pentax</comment>
- <comment xml:lang="vi">Ảnh thô Pentax PEF</comment>
+ <comment xml:lang="zh_TW">Pentax PEF 原始影像</comment>
<comment xml:lang="zh_CN">宾得 PEF 原始图像</comment>
- <comment xml:lang="zh_TW">Pentax PEF 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Pentax PEF</comment>
+ <comment xml:lang="uk">цифровий негатив PEF Pentax</comment>
+ <comment xml:lang="tr">Pentax PEF ham görüntüsü</comment>
+ <comment xml:lang="sv">Pentax PEF-råbild</comment>
+ <comment xml:lang="sr">Пентакс ПЕФ сирова слика</comment>
+ <comment xml:lang="sq">figurë Pentax PEF e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Pentax PEF</comment>
+ <comment xml:lang="si">Pentax PEF අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Pentax PEF</comment>
+ <comment xml:lang="ru">Необработанное изображение Pentax PEF</comment>
+ <comment xml:lang="ro">Imagine brută Pentax PEF</comment>
+ <comment xml:lang="pt_BR">Imagem bruta PEF da Pentax</comment>
+ <comment xml:lang="pt">imagem em bruto Pentax PEF</comment>
+ <comment xml:lang="pl">Surowy obraz Pentax PEF</comment>
+ <comment xml:lang="oc">imatge brut PEF Pentax</comment>
+ <comment xml:lang="nn">Pentax PEF råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Pentax PEF-beeld</comment>
+ <comment xml:lang="nb">Pentax PEF raw-bilde</comment>
+ <comment xml:lang="lv">Pentax PEF jēlattēls</comment>
+ <comment xml:lang="lt">Pentax PEF neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">펜탁스 PEF RAW 사진</comment>
+ <comment xml:lang="kk">Pentax PEF өңделмеген суреті</comment>
+ <comment xml:lang="ja">Pentax PEF raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Pentax PEF</comment>
+ <comment xml:lang="is">Pentax PEF hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Pentax PEF</comment>
+ <comment xml:lang="ia">Imagine brute Pentax PEF</comment>
+ <comment xml:lang="hu">Pentax PEF nyers kép</comment>
+ <comment xml:lang="hr">Pentax PEF osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Pentax PEF</comment>
+ <comment xml:lang="gl">imaxe en bruto PEF de Pentax</comment>
+ <comment xml:lang="ga">amhíomhá Pentax PEF</comment>
+ <comment xml:lang="fur">imagjin grese Pentax PEF</comment>
+ <comment xml:lang="fr">image brute PEF Pentax</comment>
+ <comment xml:lang="fo">Pentax PEF rámynd</comment>
+ <comment xml:lang="fi">Pentax-PEF-raakakuva</comment>
+ <comment xml:lang="eu">Pentax PEF irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto PEF de Pentax</comment>
+ <comment xml:lang="en_GB">Pentax PEF raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Pentax PEF</comment>
+ <comment xml:lang="de">Pentax-PEF-Rohbild</comment>
+ <comment xml:lang="da">Pentax PEF raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Pentax PEF</comment>
+ <comment xml:lang="ca">imatge en cru de Pentax PEF</comment>
+ <comment xml:lang="bg">Изображение — Pentax PEF raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Pentax PEF</comment>
+ <comment xml:lang="be">неапрацаваная выява Pentax PEF</comment>
+ <comment xml:lang="ar">صورة Pentax PEF خامة</comment>
+ <comment xml:lang="af">Pentax PEF rou beeld</comment>
<acronym>PEF</acronym>
<expanded-acronym>Pentax Electronic Format</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26728,59 +29221,64 @@
</mime-type>
<mime-type type="image/x-sigma-x3f">
<comment>Sigma X3F raw image</comment>
- <comment xml:lang="ar">صورة Sigma X3F خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Sigma X3F</comment>
- <comment xml:lang="bg">Изображение — Sigma X3F raw</comment>
- <comment xml:lang="ca">imatge en cru de Sigma X3F</comment>
- <comment xml:lang="cs">surový obrázek Sigma X3F</comment>
- <comment xml:lang="da">Sigma X3F-råbillede</comment>
- <comment xml:lang="de">Sigma-X3F-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sigma X3F</comment>
- <comment xml:lang="en_GB">Sigma X3F raw image</comment>
- <comment xml:lang="es">imagen en bruto X3F de Sigma</comment>
- <comment xml:lang="eu">Sigma X3F irudi gordina</comment>
- <comment xml:lang="fi">Sigma-X3F-raakakuva</comment>
- <comment xml:lang="fo">Sigma X3F rámynd</comment>
- <comment xml:lang="fr">image brute X3F Sigma</comment>
- <comment xml:lang="ga">amhíomhá Sigma X3F</comment>
- <comment xml:lang="gl">imaxe en bruto X3F de Sigma</comment>
- <comment xml:lang="he">תמונה גולמית של Sigma X3F</comment>
- <comment xml:lang="hr">Sigma X3F osnovna slika</comment>
- <comment xml:lang="hu">Sigma XF3 nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Sigma X3F</comment>
- <comment xml:lang="id">Citra mentah Sigma X3F</comment>
- <comment xml:lang="it">Immagine raw Sigma X3F</comment>
- <comment xml:lang="ja">Sigma X3F raw 画像</comment>
- <comment xml:lang="kk">Sigma X3F өңделмеген суреті</comment>
- <comment xml:lang="ko">시그마 X3F RAW 사진</comment>
- <comment xml:lang="lt">Sigma X3F neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Sigma X3F jēlattēls</comment>
- <comment xml:lang="nb">Sigma X3F raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Sigma X3F-beeld</comment>
- <comment xml:lang="nn">Sigma X3F råbilete</comment>
- <comment xml:lang="oc">imatge brut X3F Sigma</comment>
- <comment xml:lang="pl">Surowy obraz X3F Sigma</comment>
- <comment xml:lang="pt">imagem em bruto Sigma X3F</comment>
- <comment xml:lang="pt_BR">Imagem bruta X3F da Sigma</comment>
- <comment xml:lang="ro">Imagine brută Sigma X3F</comment>
- <comment xml:lang="ru">Необработанное изображение Sigma X3F</comment>
- <comment xml:lang="sk">Surový obrázok Sigma X3F</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Sigma X3F</comment>
- <comment xml:lang="sq">Fifurë raw Sigma X3F</comment>
- <comment xml:lang="sr">Сигма Икс3Ф сирова слика</comment>
- <comment xml:lang="sv">Sigma X3F-råbild</comment>
- <comment xml:lang="tr">Sigma X3F ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив X3F Sigma</comment>
- <comment xml:lang="vi">Ảnh thô Sigma X3F</comment>
+ <comment xml:lang="zh_TW">Sigma X3F 原始影像</comment>
<comment xml:lang="zh_CN">适马 X3F 原始图像</comment>
- <comment xml:lang="zh_TW">Sigma X3F 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Sigma X3F</comment>
+ <comment xml:lang="uk">цифровий негатив X3F Sigma</comment>
+ <comment xml:lang="tr">Sigma X3F ham görüntüsü</comment>
+ <comment xml:lang="sv">Sigma X3F-råbild</comment>
+ <comment xml:lang="sr">Сигма Икс3Ф сирова слика</comment>
+ <comment xml:lang="sq">figurë Sigma X3F e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Sigma X3F</comment>
+ <comment xml:lang="si">Sigma X3F අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Sigma X3F</comment>
+ <comment xml:lang="ru">Необработанное изображение Sigma X3F</comment>
+ <comment xml:lang="ro">Imagine brută Sigma X3F</comment>
+ <comment xml:lang="pt_BR">Imagem bruta X3F da Sigma</comment>
+ <comment xml:lang="pt">imagem em bruto Sigma X3F</comment>
+ <comment xml:lang="pl">Surowy obraz X3F Sigma</comment>
+ <comment xml:lang="oc">imatge brut X3F Sigma</comment>
+ <comment xml:lang="nn">Sigma X3F råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Sigma X3F-beeld</comment>
+ <comment xml:lang="nb">Sigma X3F raw-bilde</comment>
+ <comment xml:lang="lv">Sigma X3F jēlattēls</comment>
+ <comment xml:lang="lt">Sigma X3F neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">시그마 X3F RAW 사진</comment>
+ <comment xml:lang="kk">Sigma X3F өңделмеген суреті</comment>
+ <comment xml:lang="ja">Sigma X3F raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Sigma X3F</comment>
+ <comment xml:lang="is">Sigma X3F hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Sigma X3F</comment>
+ <comment xml:lang="ia">Imagine brute Sigma X3F</comment>
+ <comment xml:lang="hu">Sigma XF3 nyers kép</comment>
+ <comment xml:lang="hr">Sigma X3F osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Sigma X3F</comment>
+ <comment xml:lang="gl">imaxe en bruto X3F de Sigma</comment>
+ <comment xml:lang="ga">amhíomhá Sigma X3F</comment>
+ <comment xml:lang="fur">imagjin grese Sigma X3F</comment>
+ <comment xml:lang="fr">image brute X3F Sigma</comment>
+ <comment xml:lang="fo">Sigma X3F rámynd</comment>
+ <comment xml:lang="fi">Sigma-X3F-raakakuva</comment>
+ <comment xml:lang="eu">Sigma X3F irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto X3F de Sigma</comment>
+ <comment xml:lang="en_GB">Sigma X3F raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sigma X3F</comment>
+ <comment xml:lang="de">Sigma-X3F-Rohbild</comment>
+ <comment xml:lang="da">Sigma X3F raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Sigma X3F</comment>
+ <comment xml:lang="ca">imatge en cru de Sigma X3F</comment>
+ <comment xml:lang="bg">Изображение — Sigma X3F raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Sigma X3F</comment>
+ <comment xml:lang="be">неапрацаваная выява Sigma X3F</comment>
+ <comment xml:lang="ar">صورة Sigma X3F خامة</comment>
+ <comment xml:lang="af">Sigma X3F rou beeld</comment>
<acronym>X3F</acronym>
<expanded-acronym>X3 Foveon</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
- <magic priority="50">
-
+ <magic>
+ <!-- The header is "FOVb" (Foveon) !-->
<match value="FOVb" type="string" offset="0">
-
+ <!-- Followed by a 32bit LSB specifying the version number (major.minor) !-->
<match value="0x00FF00FF" type="little32" offset="4" mask="0xFF00FF00"/>
</match>
</magic>
@@ -26788,52 +29286,57 @@
</mime-type>
<mime-type type="image/x-sony-srf">
<comment>Sony SRF raw image</comment>
- <comment xml:lang="ar">صورة Sony SRF خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Sony SRF</comment>
- <comment xml:lang="bg">Изображение — Sony SRF raw</comment>
- <comment xml:lang="ca">imatge en cru de Sony SRF</comment>
- <comment xml:lang="cs">surový obrázek Sony SRF</comment>
- <comment xml:lang="da">Sony SRF-råbillede</comment>
- <comment xml:lang="de">Sony-SRF-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sony SRF</comment>
- <comment xml:lang="en_GB">Sony SRF raw image</comment>
- <comment xml:lang="es">imagen en bruto SRF de Sony</comment>
- <comment xml:lang="eu">Sony SRF irudi gordina</comment>
- <comment xml:lang="fi">Sony-SRF-raakakuva</comment>
- <comment xml:lang="fo">Sony SRF rámynd</comment>
- <comment xml:lang="fr">image brute SRF Sony</comment>
- <comment xml:lang="ga">amhíomhá Sony SRF</comment>
- <comment xml:lang="gl">imaxe en bruto SRF de sony</comment>
- <comment xml:lang="he">תמונה גולמית של Sony SRF</comment>
- <comment xml:lang="hr">Sony SRF osnovna slika</comment>
- <comment xml:lang="hu">Sony SRF nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Sony SRF</comment>
- <comment xml:lang="id">Citra mentah Sony SRF</comment>
- <comment xml:lang="it">Immagine raw Sony SRF</comment>
- <comment xml:lang="ja">Sony SRF raw 画像</comment>
- <comment xml:lang="kk">Sony SRF өңделмеген суреті</comment>
- <comment xml:lang="ko">소니 SRF RAW 사진</comment>
- <comment xml:lang="lt">Sony SRF neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Sony SRF jēlattēls</comment>
- <comment xml:lang="nb">Sony SRF raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Sony SRF-beeld</comment>
- <comment xml:lang="nn">Sony SRF råbilete</comment>
- <comment xml:lang="oc">imatge brut SRF Sony</comment>
- <comment xml:lang="pl">Surowy obraz SRF Sony</comment>
- <comment xml:lang="pt">imagem em bruto Sony SRF</comment>
- <comment xml:lang="pt_BR">Imagem bruta SRF da Sony</comment>
- <comment xml:lang="ro">Imagine brută Sony SRF</comment>
- <comment xml:lang="ru">Необработанное изображение Sony SRF</comment>
- <comment xml:lang="sk">Surový obrázok Sony SRF</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Sony SRF</comment>
- <comment xml:lang="sq">Figurë raw Sony SRF</comment>
- <comment xml:lang="sr">Сони СРФ сирова слика</comment>
- <comment xml:lang="sv">Sony SRF-råbild</comment>
- <comment xml:lang="tr">Sony SRF ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив SRF Sony</comment>
- <comment xml:lang="vi">Ảnh thô Sony SRF</comment>
+ <comment xml:lang="zh_TW">Sony SRF 原始影像</comment>
<comment xml:lang="zh_CN">索尼 SRF 原始映像</comment>
- <comment xml:lang="zh_TW">Sony SRF 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Sony SRF</comment>
+ <comment xml:lang="uk">цифровий негатив SRF Sony</comment>
+ <comment xml:lang="tr">Sony SRF ham görüntüsü</comment>
+ <comment xml:lang="sv">Sony SRF-råbild</comment>
+ <comment xml:lang="sr">Сони СРФ сирова слика</comment>
+ <comment xml:lang="sq">figurë Sony SRF e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Sony SRF</comment>
+ <comment xml:lang="si">Sony SRF අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Sony SRF</comment>
+ <comment xml:lang="ru">Необработанное изображение Sony SRF</comment>
+ <comment xml:lang="ro">Imagine brută Sony SRF</comment>
+ <comment xml:lang="pt_BR">Imagem bruta SRF da Sony</comment>
+ <comment xml:lang="pt">imagem em bruto Sony SRF</comment>
+ <comment xml:lang="pl">Surowy obraz SRF Sony</comment>
+ <comment xml:lang="oc">imatge brut SRF Sony</comment>
+ <comment xml:lang="nn">Sony SRF råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Sony SRF-beeld</comment>
+ <comment xml:lang="nb">Sony SRF raw-bilde</comment>
+ <comment xml:lang="lv">Sony SRF jēlattēls</comment>
+ <comment xml:lang="lt">Sony SRF neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">소니 SRF RAW 사진</comment>
+ <comment xml:lang="kk">Sony SRF өңделмеген суреті</comment>
+ <comment xml:lang="ja">Sony SRF raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Sony SRF</comment>
+ <comment xml:lang="is">Sony SRF hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Sony SRF</comment>
+ <comment xml:lang="ia">Imagine brute Sony SRF</comment>
+ <comment xml:lang="hu">Sony SRF nyers kép</comment>
+ <comment xml:lang="hr">Sony SRF osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Sony SRF</comment>
+ <comment xml:lang="gl">imaxe en bruto SRF de sony</comment>
+ <comment xml:lang="ga">amhíomhá Sony SRF</comment>
+ <comment xml:lang="fur">imagjin grese Sony SRF</comment>
+ <comment xml:lang="fr">image brute SRF Sony</comment>
+ <comment xml:lang="fo">Sony SRF rámynd</comment>
+ <comment xml:lang="fi">Sony-SRF-raakakuva</comment>
+ <comment xml:lang="eu">Sony SRF irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto SRF de Sony</comment>
+ <comment xml:lang="en_GB">Sony SRF raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sony SRF</comment>
+ <comment xml:lang="de">Sony-SRF-Rohbild</comment>
+ <comment xml:lang="da">Sony SRF raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Sony SRF</comment>
+ <comment xml:lang="ca">imatge en cru de Sony SRF</comment>
+ <comment xml:lang="bg">Изображение — Sony SRF raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Sony SRF</comment>
+ <comment xml:lang="be">неапрацаваная выява Sony SRF</comment>
+ <comment xml:lang="ar">صورة Sony SRF خامة</comment>
+ <comment xml:lang="af">Sony SRF rou beeld</comment>
<acronym>SRF</acronym>
<expanded-acronym>Sony Raw Format</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26842,52 +29345,57 @@
</mime-type>
<mime-type type="image/x-sony-sr2">
<comment>Sony SR2 raw image</comment>
- <comment xml:lang="ar">صورة Sony SR2 خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Sony SR2</comment>
- <comment xml:lang="bg">Изображение — Sony SR2 raw</comment>
- <comment xml:lang="ca">imatge en cru de Sony SR2</comment>
- <comment xml:lang="cs">surový obrázek Sony SR2</comment>
- <comment xml:lang="da">Sony SR2-råbillede</comment>
- <comment xml:lang="de">Sony-SR2-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sony SR2</comment>
- <comment xml:lang="en_GB">Sony SR2 raw image</comment>
- <comment xml:lang="es">imagen en bruto SR2 de Sony</comment>
- <comment xml:lang="eu">Sony SR2 irudi gordina</comment>
- <comment xml:lang="fi">Sony-SR2-raakakuva</comment>
- <comment xml:lang="fo">Sony SR2 rámynd</comment>
- <comment xml:lang="fr">image brute SR2 Sony</comment>
- <comment xml:lang="ga">amhíomhá Sony SR2</comment>
- <comment xml:lang="gl">imaxe en bruto SR2 de sony</comment>
- <comment xml:lang="he">תמונה גולמית של Sony SR2</comment>
- <comment xml:lang="hr">Sony SR2 osnovna slika</comment>
- <comment xml:lang="hu">Sony SR2 nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Sony SR2</comment>
- <comment xml:lang="id">Citra mentah Sony SR2</comment>
- <comment xml:lang="it">Immagine raw Sony SR2</comment>
- <comment xml:lang="ja">Sony SR2 raw 画像</comment>
- <comment xml:lang="kk">Sony SR2 өңделмеген суреті</comment>
- <comment xml:lang="ko">소니 SR2 RAW 사진</comment>
- <comment xml:lang="lt">Sony SR2 neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Sony SR2 jēlattēls</comment>
- <comment xml:lang="nb">Sony SR2 raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Sony SR2-beeld</comment>
- <comment xml:lang="nn">Sony SR2 råbilete</comment>
- <comment xml:lang="oc">imatge brut SR2 Sony</comment>
- <comment xml:lang="pl">Surowy obraz SR2 Sony</comment>
- <comment xml:lang="pt">imagem em bruto Sony SR2</comment>
- <comment xml:lang="pt_BR">Imagem bruta SR2 da Sony</comment>
- <comment xml:lang="ro">Imagine brută Sony SR2</comment>
- <comment xml:lang="ru">Необработанное изображение Sony SR2</comment>
- <comment xml:lang="sk">Surový obrázok Sony SR2</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Sony SR2</comment>
- <comment xml:lang="sq">Figurë raw Sony SR2</comment>
- <comment xml:lang="sr">Сони СР2 сирова слика</comment>
- <comment xml:lang="sv">Sony SR2-råbild</comment>
- <comment xml:lang="tr">Sony SR2 ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив SR2 Sony</comment>
- <comment xml:lang="vi">Ảnh thô Sony SR2</comment>
+ <comment xml:lang="zh_TW">Sony SR2 原始影像</comment>
<comment xml:lang="zh_CN">索尼 SR2 原始映像</comment>
- <comment xml:lang="zh_TW">Sony SR2 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Sony SR2</comment>
+ <comment xml:lang="uk">цифровий негатив SR2 Sony</comment>
+ <comment xml:lang="tr">Sony SR2 ham görüntüsü</comment>
+ <comment xml:lang="sv">Sony SR2-råbild</comment>
+ <comment xml:lang="sr">Сони СР2 сирова слика</comment>
+ <comment xml:lang="sq">figurë Sony SR2 e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Sony SR2</comment>
+ <comment xml:lang="si">Sony SR2 අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Sony SR2</comment>
+ <comment xml:lang="ru">Необработанное изображение Sony SR2</comment>
+ <comment xml:lang="ro">Imagine brută Sony SR2</comment>
+ <comment xml:lang="pt_BR">Imagem bruta SR2 da Sony</comment>
+ <comment xml:lang="pt">imagem em bruto Sony SR2</comment>
+ <comment xml:lang="pl">Surowy obraz SR2 Sony</comment>
+ <comment xml:lang="oc">imatge brut SR2 Sony</comment>
+ <comment xml:lang="nn">Sony SR2 råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Sony SR2-beeld</comment>
+ <comment xml:lang="nb">Sony SR2 raw-bilde</comment>
+ <comment xml:lang="lv">Sony SR2 jēlattēls</comment>
+ <comment xml:lang="lt">Sony SR2 neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">소니 SR2 RAW 사진</comment>
+ <comment xml:lang="kk">Sony SR2 өңделмеген суреті</comment>
+ <comment xml:lang="ja">Sony SR2 raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Sony SR2</comment>
+ <comment xml:lang="is">Sony SR2 hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Sony SR2</comment>
+ <comment xml:lang="ia">Imagine brute Sony SR2</comment>
+ <comment xml:lang="hu">Sony SR2 nyers kép</comment>
+ <comment xml:lang="hr">Sony SR2 osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Sony SR2</comment>
+ <comment xml:lang="gl">imaxe en bruto SR2 de sony</comment>
+ <comment xml:lang="ga">amhíomhá Sony SR2</comment>
+ <comment xml:lang="fur">imagjin grese Sony SR2</comment>
+ <comment xml:lang="fr">image brute SR2 Sony</comment>
+ <comment xml:lang="fo">Sony SR2 rámynd</comment>
+ <comment xml:lang="fi">Sony-SR2-raakakuva</comment>
+ <comment xml:lang="eu">Sony SR2 irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto SR2 de Sony</comment>
+ <comment xml:lang="en_GB">Sony SR2 raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sony SR2</comment>
+ <comment xml:lang="de">Sony-SR2-Rohbild</comment>
+ <comment xml:lang="da">Sony SR2 raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Sony SR2</comment>
+ <comment xml:lang="ca">imatge en cru de Sony SR2</comment>
+ <comment xml:lang="bg">Изображение — Sony SR2 raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Sony SR2</comment>
+ <comment xml:lang="be">неапрацаваная выява Sony SR2</comment>
+ <comment xml:lang="ar">صورة Sony SR2 خامة</comment>
+ <comment xml:lang="af">Sony SR2 rou beeld</comment>
<acronym>SR2</acronym>
<expanded-acronym>Sony Raw format 2</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26896,52 +29404,57 @@
</mime-type>
<mime-type type="image/x-sony-arw">
<comment>Sony ARW raw image</comment>
- <comment xml:lang="ar">صورة Sony ARW خامة</comment>
- <comment xml:lang="be@latin">Suvoraja vyjava Sony ARW</comment>
- <comment xml:lang="bg">Изображение — Sony ARW raw</comment>
- <comment xml:lang="ca">imatge en cru de Sony ARW</comment>
- <comment xml:lang="cs">surový obrázek Sony ARW</comment>
- <comment xml:lang="da">Sony ARW-råbillede</comment>
- <comment xml:lang="de">Sony-ARW-Rohbild</comment>
- <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sony ARW</comment>
- <comment xml:lang="en_GB">Sony ARW raw image</comment>
- <comment xml:lang="es">imagen en bruto ARW de Sony</comment>
- <comment xml:lang="eu">Sony ARW irudi gordina</comment>
- <comment xml:lang="fi">Sony-ARW-raakakuva</comment>
- <comment xml:lang="fo">Sony ARW rámynd</comment>
- <comment xml:lang="fr">image brute ARW Sony</comment>
- <comment xml:lang="ga">amhíomhá Sony ARW</comment>
- <comment xml:lang="gl">imaxe en bruto ARW de sony</comment>
- <comment xml:lang="he">תמונה גולמית של Sony ARW</comment>
- <comment xml:lang="hr">Sony ARW osnovna slika</comment>
- <comment xml:lang="hu">Sony ARW nyers kép</comment>
- <comment xml:lang="ia">Imagine brute Sony ARW</comment>
- <comment xml:lang="id">Citra mentah Sony ARW</comment>
- <comment xml:lang="it">Immagine raw Sony ARW</comment>
- <comment xml:lang="ja">Sony ARW raw 画像</comment>
- <comment xml:lang="kk">Sony ARW өңделмеген суреті</comment>
- <comment xml:lang="ko">소니 ARW RAW 사진</comment>
- <comment xml:lang="lt">Sony ARW neapdorotas paveikslėlis</comment>
- <comment xml:lang="lv">Sony ARW jēlattēls</comment>
- <comment xml:lang="nb">Sony ARW raw-bilde</comment>
- <comment xml:lang="nl">onbewerkt Sony ARW-beeld</comment>
- <comment xml:lang="nn">Sony ARW råbilete</comment>
- <comment xml:lang="oc">imatge brut ARW Sony</comment>
- <comment xml:lang="pl">Surowy obraz ARW Sony</comment>
- <comment xml:lang="pt">imagem em bruto Sony ARW</comment>
- <comment xml:lang="pt_BR">Imagem bruta ARW da Sony</comment>
- <comment xml:lang="ro">Imagine brută Sony ARW</comment>
- <comment xml:lang="ru">Необработанное изображение Sony ARW</comment>
- <comment xml:lang="sk">Surový obrázok Sony ARW</comment>
- <comment xml:lang="sl">Surova slikovna datoteka Sony ARW</comment>
- <comment xml:lang="sq">Figurë raw Sony ARW</comment>
- <comment xml:lang="sr">Сони АРВ сирова слика</comment>
- <comment xml:lang="sv">Sony ARW-råbild</comment>
- <comment xml:lang="tr">Sony ARW ham görüntüsü</comment>
- <comment xml:lang="uk">цифровий негатив ARW Sony</comment>
- <comment xml:lang="vi">Ảnh thô Sony ARW</comment>
+ <comment xml:lang="zh_TW">Sony ARW 原始影像</comment>
<comment xml:lang="zh_CN">索尼 ARW 原始映像</comment>
- <comment xml:lang="zh_TW">Sony ARW 原生影像</comment>
+ <comment xml:lang="vi">Ảnh thô Sony ARW</comment>
+ <comment xml:lang="uk">цифровий негатив ARW Sony</comment>
+ <comment xml:lang="tr">Sony ARW ham görüntüsü</comment>
+ <comment xml:lang="sv">Sony ARW-råbild</comment>
+ <comment xml:lang="sr">Сони АРВ сирова слика</comment>
+ <comment xml:lang="sq">figurë Sony ARW e papërpunuar</comment>
+ <comment xml:lang="sl">Surova slikovna datoteka Sony ARW</comment>
+ <comment xml:lang="si">Sony ARW අමු රූපය</comment>
+ <comment xml:lang="sk">Surový obrázok Sony ARW</comment>
+ <comment xml:lang="ru">Необработанное изображение Sony ARW</comment>
+ <comment xml:lang="ro">Imagine brută Sony ARW</comment>
+ <comment xml:lang="pt_BR">Imagem bruta ARW da Sony</comment>
+ <comment xml:lang="pt">imagem em bruto Sony ARW</comment>
+ <comment xml:lang="pl">Surowy obraz ARW Sony</comment>
+ <comment xml:lang="oc">imatge brut ARW Sony</comment>
+ <comment xml:lang="nn">Sony ARW råbilete</comment>
+ <comment xml:lang="nl">onbewerkt Sony ARW-beeld</comment>
+ <comment xml:lang="nb">Sony ARW raw-bilde</comment>
+ <comment xml:lang="lv">Sony ARW jēlattēls</comment>
+ <comment xml:lang="lt">Sony ARW neapdorotas paveikslėlis</comment>
+ <comment xml:lang="ko">소니 ARW RAW 사진</comment>
+ <comment xml:lang="kk">Sony ARW өңделмеген суреті</comment>
+ <comment xml:lang="ja">Sony ARW raw 画像</comment>
+ <comment xml:lang="it">Immagine raw Sony ARW</comment>
+ <comment xml:lang="is">Sony ARW hrámynd</comment>
+ <comment xml:lang="id">Citra mentah Sony ARW</comment>
+ <comment xml:lang="ia">Imagine brute Sony ARW</comment>
+ <comment xml:lang="hu">Sony ARW nyers kép</comment>
+ <comment xml:lang="hr">Sony ARW osnovna slika</comment>
+ <comment xml:lang="he">תמונה גולמית של Sony ARW</comment>
+ <comment xml:lang="gl">imaxe en bruto ARW de sony</comment>
+ <comment xml:lang="ga">amhíomhá Sony ARW</comment>
+ <comment xml:lang="fur">imagjin grese Sony ARW</comment>
+ <comment xml:lang="fr">image brute ARW Sony</comment>
+ <comment xml:lang="fo">Sony ARW rámynd</comment>
+ <comment xml:lang="fi">Sony-ARW-raakakuva</comment>
+ <comment xml:lang="eu">Sony ARW irudi gordina</comment>
+ <comment xml:lang="es">imagen en bruto ARW de Sony</comment>
+ <comment xml:lang="en_GB">Sony ARW raw image</comment>
+ <comment xml:lang="el">Ανεπεξέργαστη εικόνα Sony ARW</comment>
+ <comment xml:lang="de">Sony-ARW-Rohbild</comment>
+ <comment xml:lang="da">Sony ARW raw-billede</comment>
+ <comment xml:lang="cs">surový obrázek Sony ARW</comment>
+ <comment xml:lang="ca">imatge en cru de Sony ARW</comment>
+ <comment xml:lang="bg">Изображение — Sony ARW raw</comment>
+ <comment xml:lang="be@latin">Suvoraja vyjava Sony ARW</comment>
+ <comment xml:lang="be">неапрацаваная выява Sony ARW</comment>
+ <comment xml:lang="ar">صورة Sony ARW خامة</comment>
+ <comment xml:lang="af">Sony ARW rou beeld</comment>
<acronym>ARW</acronym>
<expanded-acronym>Alpha Raw format</expanded-acronym>
<sub-class-of type="image/x-dcraw"/>
@@ -26950,908 +29463,912 @@
</mime-type>
<mime-type type="image/png">
<comment>PNG image</comment>
- <comment xml:lang="ar">صورة PNG</comment>
- <comment xml:lang="az">PNG rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava PNG</comment>
- <comment xml:lang="bg">Изображение — PNG</comment>
- <comment xml:lang="ca">imatge PNG</comment>
- <comment xml:lang="cs">obrázek PNG</comment>
- <comment xml:lang="cy">Delwedd PNG</comment>
- <comment xml:lang="da">PNG-billede</comment>
- <comment xml:lang="de">PNG-Bild</comment>
- <comment xml:lang="el">Εικόνα PNG</comment>
- <comment xml:lang="en_GB">PNG image</comment>
- <comment xml:lang="eo">PNG-bildo</comment>
- <comment xml:lang="es">imagen PNG</comment>
- <comment xml:lang="eu">PNG irudia</comment>
- <comment xml:lang="fi">PNG-kuva</comment>
- <comment xml:lang="fo">PNG mynd</comment>
- <comment xml:lang="fr">image PNG</comment>
- <comment xml:lang="ga">íomhá PNG</comment>
- <comment xml:lang="gl">imaxe PNG</comment>
- <comment xml:lang="he">תמונת PNG</comment>
- <comment xml:lang="hr">PNG slika</comment>
- <comment xml:lang="hu">PNG-kép</comment>
- <comment xml:lang="ia">Imagine PNG</comment>
- <comment xml:lang="id">Citra PNG</comment>
- <comment xml:lang="it">Immagine PNG</comment>
- <comment xml:lang="ja">PNG 画像</comment>
- <comment xml:lang="kk">PNG суреті</comment>
- <comment xml:lang="ko">PNG 그림</comment>
- <comment xml:lang="lt">PNG paveikslėlis</comment>
- <comment xml:lang="lv">PNG attēls</comment>
- <comment xml:lang="ms">Imej PNG</comment>
- <comment xml:lang="nb">PNG-bilde</comment>
- <comment xml:lang="nl">PNG-afbeelding</comment>
- <comment xml:lang="nn">PNG-bilete</comment>
- <comment xml:lang="oc">imatge PNG</comment>
- <comment xml:lang="pl">Obraz PNG</comment>
- <comment xml:lang="pt">imagem PNG</comment>
- <comment xml:lang="pt_BR">Imagem PNG</comment>
- <comment xml:lang="ro">Imagine PNG</comment>
- <comment xml:lang="ru">Изображение PNG</comment>
- <comment xml:lang="sk">Obrázok PNG</comment>
- <comment xml:lang="sl">Slikovna datoteka PNG</comment>
- <comment xml:lang="sq">Figurë PNG</comment>
- <comment xml:lang="sr">ПНГ слика</comment>
- <comment xml:lang="sv">PNG-bild</comment>
- <comment xml:lang="tr">PNG görüntüsü</comment>
- <comment xml:lang="uk">зображення PNG</comment>
- <comment xml:lang="vi">Ảnh PNG</comment>
- <comment xml:lang="zh_CN">PNG 图像</comment>
<comment xml:lang="zh_TW">PNG 影像</comment>
- <magic priority="50">
- <match value="\x89PNG" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">PNG 图像</comment>
+ <comment xml:lang="vi">Ảnh PNG</comment>
+ <comment xml:lang="uk">зображення PNG</comment>
+ <comment xml:lang="tr">PNG görüntüsü</comment>
+ <comment xml:lang="sv">PNG-bild</comment>
+ <comment xml:lang="sr">ПНГ слика</comment>
+ <comment xml:lang="sq">figurë PNG</comment>
+ <comment xml:lang="sl">Slikovna datoteka PNG</comment>
+ <comment xml:lang="si">PNG රූපය</comment>
+ <comment xml:lang="sk">Obrázok PNG</comment>
+ <comment xml:lang="ru">Изображение PNG</comment>
+ <comment xml:lang="ro">Imagine PNG</comment>
+ <comment xml:lang="pt_BR">Imagem PNG</comment>
+ <comment xml:lang="pt">imagem PNG</comment>
+ <comment xml:lang="pl">Obraz PNG</comment>
+ <comment xml:lang="oc">imatge PNG</comment>
+ <comment xml:lang="nn">PNG-bilete</comment>
+ <comment xml:lang="nl">PNG-afbeelding</comment>
+ <comment xml:lang="nb">PNG-bilde</comment>
+ <comment xml:lang="ms">Imej PNG</comment>
+ <comment xml:lang="lv">PNG attēls</comment>
+ <comment xml:lang="lt">PNG paveikslėlis</comment>
+ <comment xml:lang="ko">PNG 그림</comment>
+ <comment xml:lang="kk">PNG суреті</comment>
+ <comment xml:lang="ka">PNG გამოსახულება</comment>
+ <comment xml:lang="ja">PNG 画像</comment>
+ <comment xml:lang="it">Immagine PNG</comment>
+ <comment xml:lang="is">PNG mynd</comment>
+ <comment xml:lang="id">Citra PNG</comment>
+ <comment xml:lang="ia">Imagine PNG</comment>
+ <comment xml:lang="hu">PNG-kép</comment>
+ <comment xml:lang="hr">PNG slika</comment>
+ <comment xml:lang="he">תמונת PNG</comment>
+ <comment xml:lang="gl">imaxe PNG</comment>
+ <comment xml:lang="ga">íomhá PNG</comment>
+ <comment xml:lang="fur">imagjin PNG</comment>
+ <comment xml:lang="fr">image PNG</comment>
+ <comment xml:lang="fo">PNG mynd</comment>
+ <comment xml:lang="fi">PNG-kuva</comment>
+ <comment xml:lang="eu">PNG irudia</comment>
+ <comment xml:lang="es">imagen PNG</comment>
+ <comment xml:lang="eo">PNG-bildo</comment>
+ <comment xml:lang="en_GB">PNG image</comment>
+ <comment xml:lang="el">Εικόνα PNG</comment>
+ <comment xml:lang="de">PNG-Bild</comment>
+ <comment xml:lang="da">PNG-billede</comment>
+ <comment xml:lang="cy">Delwedd PNG</comment>
+ <comment xml:lang="cs">obrázek PNG</comment>
+ <comment xml:lang="ca">imatge PNG</comment>
+ <comment xml:lang="bg">Изображение — PNG</comment>
+ <comment xml:lang="be@latin">Vyjava PNG</comment>
+ <comment xml:lang="be">выява PNG</comment>
+ <comment xml:lang="az">PNG rəsmi</comment>
+ <comment xml:lang="ar">صورة PNG</comment>
+ <comment xml:lang="af">PNG-beeld</comment>
+ <acronym>PNG</acronym>
+ <expanded-acronym>Portable Network Graphics</expanded-acronym>
+ <magic>
+ <match type="string" value="\x89PNG\r\n\x1A\n" offset="0"/>
</magic>
<glob pattern="*.png"/>
</mime-type>
+ <mime-type type="image/apng">
+ <comment>Animated PNG image</comment>
+ <comment xml:lang="uk">анімоване зображення PNG</comment>
+ <comment xml:lang="sv">Animerad PNG-bild</comment>
+ <comment xml:lang="ru">Анимированное изображение PNG</comment>
+ <comment xml:lang="pl">Animowany obraz PNG</comment>
+ <comment xml:lang="ja">PNG動画</comment>
+ <comment xml:lang="it">Immagine PNG animata</comment>
+ <comment xml:lang="gl">Imaxe de PNG animado</comment>
+ <comment xml:lang="eu">PNG irudi animatua</comment>
+ <comment xml:lang="es">imagen PNG animada</comment>
+ <comment xml:lang="de">Animiertes PNG-Bild</comment>
+ <comment xml:lang="be">анімаваная выява PNG</comment>
+ <acronym>PNG</acronym>
+ <expanded-acronym>Portable Network Graphics</expanded-acronym>
+ <sub-class-of type="image/png"/>
+ <magic priority="60">
+ <match type="string" value="\x89PNG\r\n\x1A\n" offset="0">
+ <match type="string" value="acTL" offset="37"/>
+ </match>
+ </magic>
+ <glob pattern="*.apng"/>
+ <glob pattern="*.png" weight="40"/>
+ <alias type="image/vnd.mozilla.apng"/>
+ </mime-type>
<mime-type type="image/rle">
- <comment>Run Length Encoded bitmap image</comment>
- <comment xml:lang="ar">تشغيل صورة نقطية طولية الترميز</comment>
- <comment xml:lang="be@latin">Bitmapnaja vyjava, zakadavanaja ŭ Run Length</comment>
- <comment xml:lang="bg">Изображение — RLE Bitmap</comment>
- <comment xml:lang="ca">imatge de mapa de bits «Run Lenght Encoded»</comment>
- <comment xml:lang="cs">obrázek bitové mapy Run Length Encoded</comment>
- <comment xml:lang="da">Run Length Encoded-bitmapbillede</comment>
- <comment xml:lang="de">Lauflängenkodiertes Bitmap-Bild</comment>
- <comment xml:lang="el">Εικόνα bitmap κωδικοποιημένου μήκος εκτέλεσης</comment>
- <comment xml:lang="en_GB">Run Length Encoded bitmap image</comment>
- <comment xml:lang="es">mapa de bits con codificación del tamaño durante la ejecución</comment>
- <comment xml:lang="eu">'Run Lenght Encoded' bitmap irudia</comment>
- <comment xml:lang="fi">RLE-koodattu bittikartta</comment>
- <comment xml:lang="fr">image matricielle Run Length Encoded</comment>
- <comment xml:lang="ga">íomhá ghiotánmhapach ionchódaithe fad reatha</comment>
- <comment xml:lang="gl">mapa de bits con codificación do tamaño durante a execución</comment>
- <comment xml:lang="he">מקודד מפת סיביות של Run Length</comment>
- <comment xml:lang="hr">Run Length Encoded bitmap slika</comment>
- <comment xml:lang="hu">Run Length Encoded bitkép</comment>
- <comment xml:lang="ia">Imagine raster in codification Run-Length</comment>
- <comment xml:lang="id">Citra peta bit Run Length Encoded</comment>
- <comment xml:lang="it">Immagine bitmap RLE (Run Length Encoded)</comment>
- <comment xml:lang="ja">ランレングス符号化ビットマップ画像</comment>
- <comment xml:lang="kk">RLE сығылған растрлік суреті</comment>
- <comment xml:lang="ko">RLE 인코딩된 비트맵 그림</comment>
- <comment xml:lang="lt">Run Length Encoded rastrinis paveikslėlis</comment>
- <comment xml:lang="lv">Secīgo atkārtojumu kodēts bitkartes attēls</comment>
- <comment xml:lang="nb">Run Length Encoded bitmap bilde</comment>
- <comment xml:lang="nl">RLE-gecodeerde bitmap-afbeelding</comment>
- <comment xml:lang="nn">Run Length Encoded punktgrafikk</comment>
- <comment xml:lang="oc">imatge matriciala Run Length Encoded</comment>
- <comment xml:lang="pl">Obraz bitmapy RLE</comment>
- <comment xml:lang="pt">mapa de bitas Run Length Encoded</comment>
- <comment xml:lang="pt_BR">Classe de comprimento imagem bitmap codificada</comment>
- <comment xml:lang="ro">Imagine bitmap codată RLE</comment>
- <comment xml:lang="ru">Растровое изображение, сжатое RLE</comment>
- <comment xml:lang="sk">Bitmapový obrázok Run Length Encoded</comment>
- <comment xml:lang="sl">Zaporedno kodirana bitna slika (RLE)</comment>
- <comment xml:lang="sq">Figurë bitmap RLE (Run Length Encoded)</comment>
- <comment xml:lang="sr">битмап слика кодирана дужином скупине</comment>
- <comment xml:lang="sv">Körlängdskodad bitmappbild</comment>
- <comment xml:lang="tr">Run Length Encoded bit eşlem görüntüsü</comment>
+ <comment>RLE bitmap image</comment>
+ <comment xml:lang="zh_TW">RLE 點陣影像</comment>
+ <comment xml:lang="zh_CN">RLE 位图图像</comment>
<comment xml:lang="uk">растрове зображення RLE</comment>
- <comment xml:lang="vi">Ảnh mảng mã hóa chiều dài chạy (RLE)</comment>
- <comment xml:lang="zh_CN">游程编码位图</comment>
- <comment xml:lang="zh_TW">Run Length Encoded 點陣影像</comment>
+ <comment xml:lang="tr">RLE bit eşlem görüntüsü</comment>
+ <comment xml:lang="sv">RLE bitmappsbild</comment>
+ <comment xml:lang="sq">figurë bitmap RLE</comment>
+ <comment xml:lang="sl">Bitna slika RLE</comment>
+ <comment xml:lang="si">RLE බිට්මැප් රූපය</comment>
+ <comment xml:lang="ru">Растровое изображение RLE</comment>
+ <comment xml:lang="pt_BR">Imagem bitmap RLE</comment>
+ <comment xml:lang="pl">Obraz bitmapy RLE</comment>
+ <comment xml:lang="nl">RLE-bitmapafbeelding</comment>
+ <comment xml:lang="ko">RLE 비트맵 그림</comment>
+ <comment xml:lang="kk">RLE растрлық суреті</comment>
+ <comment xml:lang="ja">RLE ビットマップ画像</comment>
+ <comment xml:lang="it">Immagine bitmap RLE</comment>
+ <comment xml:lang="is">RLE bitamynd</comment>
+ <comment xml:lang="id">Citra bitmap RLE</comment>
+ <comment xml:lang="hu">RLE bitkép</comment>
+ <comment xml:lang="hr">RLE bitmap slika</comment>
+ <comment xml:lang="he">תמונת מפת סיביות RLE</comment>
+ <comment xml:lang="gl">Imaxe de mapa de bits RLE</comment>
+ <comment xml:lang="fr">image matricielle RLE</comment>
+ <comment xml:lang="fi">RLE-bittikarttakuva</comment>
+ <comment xml:lang="eu">RLE bitmap irudia</comment>
+ <comment xml:lang="es">imagen de mapa de los bit RLE</comment>
+ <comment xml:lang="en_GB">RLE bitmap image</comment>
+ <comment xml:lang="de">Lauflängenkodiertes Bitmap-Bild</comment>
+ <comment xml:lang="da">RLE bitmap-billede</comment>
+ <comment xml:lang="ca">imatge de mapa de bits RLE</comment>
+ <comment xml:lang="bg">Изображение — RLE bitmap</comment>
+ <comment xml:lang="be">растравая выява RLE</comment>
+ <comment xml:lang="ar">صورة نقطية RLE</comment>
+ <acronym>RLE</acronym>
+ <expanded-acronym>Run Length Encoded</expanded-acronym>
<glob pattern="*.rle"/>
</mime-type>
<mime-type type="image/svg+xml">
<comment>SVG image</comment>
- <comment xml:lang="ar">صورة SVG</comment>
- <comment xml:lang="be@latin">Vyjava SVG</comment>
- <comment xml:lang="bg">Изображение — SVG</comment>
- <comment xml:lang="ca">imatge SVG</comment>
- <comment xml:lang="cs">obrázek SVG</comment>
- <comment xml:lang="da">SVG-billede</comment>
- <comment xml:lang="de">SVG-Bild</comment>
- <comment xml:lang="el">Εικόνα SVG</comment>
- <comment xml:lang="en_GB">SVG image</comment>
- <comment xml:lang="eo">SVG-bildo</comment>
- <comment xml:lang="es">imagen SVG</comment>
- <comment xml:lang="eu">SVG irudia</comment>
- <comment xml:lang="fi">SVG-kuva</comment>
- <comment xml:lang="fo">SVG mynd</comment>
- <comment xml:lang="fr">image SVG</comment>
- <comment xml:lang="ga">íomhá SVG</comment>
- <comment xml:lang="gl">imaxe SVG</comment>
- <comment xml:lang="he">תמונת SVG</comment>
- <comment xml:lang="hr">SVG slika</comment>
- <comment xml:lang="hu">SVG kép</comment>
- <comment xml:lang="ia">Imagine SVG</comment>
- <comment xml:lang="id">Citra SVG</comment>
- <comment xml:lang="it">Immagine SVG</comment>
- <comment xml:lang="ja">SVG 画像</comment>
- <comment xml:lang="kk">SVG суреті</comment>
- <comment xml:lang="ko">SVG 그림</comment>
- <comment xml:lang="lt">SVG paveikslėlis</comment>
- <comment xml:lang="lv">SVG attēls</comment>
- <comment xml:lang="nb">SVG-bilde</comment>
- <comment xml:lang="nl">SVG-afbeelding</comment>
- <comment xml:lang="nn">SVG-bilete</comment>
- <comment xml:lang="oc">imatge SVG</comment>
- <comment xml:lang="pl">Obraz SVG</comment>
- <comment xml:lang="pt">imagem SVG</comment>
- <comment xml:lang="pt_BR">Imagem SVG</comment>
- <comment xml:lang="ro">Imagine SVG</comment>
- <comment xml:lang="ru">Изображение SVG</comment>
- <comment xml:lang="sk">Obrázok SVG</comment>
- <comment xml:lang="sl">Slikovna vektorska datoteka SVG</comment>
- <comment xml:lang="sq">Figurë SVG</comment>
- <comment xml:lang="sr">СВГ слика</comment>
- <comment xml:lang="sv">SVG-bild</comment>
- <comment xml:lang="tr">SVG görüntüsü</comment>
- <comment xml:lang="uk">зображення SVG</comment>
- <comment xml:lang="vi">Ảnh SVG</comment>
- <comment xml:lang="zh_CN">SVG 图像</comment>
<comment xml:lang="zh_TW">SVG 影像</comment>
+ <comment xml:lang="zh_CN">SVG 图像</comment>
+ <comment xml:lang="vi">Ảnh SVG</comment>
+ <comment xml:lang="uk">зображення SVG</comment>
+ <comment xml:lang="tr">SVG görüntüsü</comment>
+ <comment xml:lang="sv">SVG-bild</comment>
+ <comment xml:lang="sr">СВГ слика</comment>
+ <comment xml:lang="sq">figurë SVG</comment>
+ <comment xml:lang="sl">Slikovna vektorska datoteka SVG</comment>
+ <comment xml:lang="si">SVG රූපය</comment>
+ <comment xml:lang="sk">Obrázok SVG</comment>
+ <comment xml:lang="ru">Изображение SVG</comment>
+ <comment xml:lang="ro">Imagine SVG</comment>
+ <comment xml:lang="pt_BR">Imagem SVG</comment>
+ <comment xml:lang="pt">imagem SVG</comment>
+ <comment xml:lang="pl">Obraz SVG</comment>
+ <comment xml:lang="oc">imatge SVG</comment>
+ <comment xml:lang="nn">SVG-bilete</comment>
+ <comment xml:lang="nl">SVG-afbeelding</comment>
+ <comment xml:lang="nb">SVG-bilde</comment>
+ <comment xml:lang="lv">SVG attēls</comment>
+ <comment xml:lang="lt">SVG paveikslėlis</comment>
+ <comment xml:lang="ko">SVG 그림</comment>
+ <comment xml:lang="kk">SVG суреті</comment>
+ <comment xml:lang="ka">SVG გამოსახულება</comment>
+ <comment xml:lang="ja">SVG 画像</comment>
+ <comment xml:lang="it">Immagine SVG</comment>
+ <comment xml:lang="is">SVG mynd</comment>
+ <comment xml:lang="id">Citra SVG</comment>
+ <comment xml:lang="ia">Imagine SVG</comment>
+ <comment xml:lang="hu">SVG kép</comment>
+ <comment xml:lang="hr">SVG slika</comment>
+ <comment xml:lang="he">תמונת SVG</comment>
+ <comment xml:lang="gl">imaxe SVG</comment>
+ <comment xml:lang="ga">íomhá SVG</comment>
+ <comment xml:lang="fur">imagjin SVG</comment>
+ <comment xml:lang="fr">image SVG</comment>
+ <comment xml:lang="fo">SVG mynd</comment>
+ <comment xml:lang="fi">SVG-kuva</comment>
+ <comment xml:lang="eu">SVG irudia</comment>
+ <comment xml:lang="es">imagen SVG</comment>
+ <comment xml:lang="eo">SVG-bildo</comment>
+ <comment xml:lang="en_GB">SVG image</comment>
+ <comment xml:lang="el">Εικόνα SVG</comment>
+ <comment xml:lang="de">SVG-Bild</comment>
+ <comment xml:lang="da">SVG-billede</comment>
+ <comment xml:lang="cs">obrázek SVG</comment>
+ <comment xml:lang="ca">imatge SVG</comment>
+ <comment xml:lang="bg">Изображение — SVG</comment>
+ <comment xml:lang="be@latin">Vyjava SVG</comment>
+ <comment xml:lang="be">выява SVG</comment>
+ <comment xml:lang="ar">صورة SVG</comment>
+ <comment xml:lang="af">SVG-beeld</comment>
<acronym>SVG</acronym>
<expanded-acronym>Scalable Vector Graphics</expanded-acronym>
<sub-class-of type="application/xml"/>
<magic priority="80">
- <match value="&lt;!DOCTYPE svg" type="string" offset="0:256"/>
- <match value="&lt;svg" type="string" offset="0:256"/>
+ <match type="string" value="&lt;!DOCTYPE svg" offset="0:256"/>
+ </magic>
+ <magic priority="80">
+ <match type="string" value="&lt;!-- Created with Inkscape" offset="0"/>
+ <match type="string" value="&lt;svg" offset="0"/>
+ </magic>
+ <magic priority="45">
+ <match type="string" value="&lt;svg" offset="1:256"/>
</magic>
<glob pattern="*.svg"/>
<root-XML namespaceURI="http://www.w3.org/2000/svg" localName="svg"/>
</mime-type>
<mime-type type="image/svg+xml-compressed">
- <comment>compressed SVG image</comment>
- <comment xml:lang="ar">صورة SVG مضغوطة</comment>
- <comment xml:lang="be@latin">skampresavanaja vyjava SVG</comment>
- <comment xml:lang="bg">Изображение — SVG, компресирано</comment>
- <comment xml:lang="ca">imatge SVG amb compressió</comment>
- <comment xml:lang="cs">komprimovaný obrázek SVG</comment>
- <comment xml:lang="da">SVG-komprimeret billede</comment>
- <comment xml:lang="de">Komprimiertes SVG-Bild</comment>
- <comment xml:lang="el">Συμπιεσμένη εικόνα SVG</comment>
- <comment xml:lang="en_GB">compressed SVG image</comment>
- <comment xml:lang="es">imagen SVG comprimida</comment>
- <comment xml:lang="eu">konprimitutako SVG irudia</comment>
- <comment xml:lang="fi">pakattu SVG-kuva</comment>
- <comment xml:lang="fo">stappað SVG mynd</comment>
- <comment xml:lang="fr">image SVG compressée</comment>
- <comment xml:lang="ga">íomhá SVG comhbhrúite</comment>
- <comment xml:lang="gl">imaxe SVG comprimida</comment>
- <comment xml:lang="he">תמונת SVG מכווצת</comment>
- <comment xml:lang="hr">Sažeta SVG slika</comment>
- <comment xml:lang="hu">tömörített SVG kép</comment>
- <comment xml:lang="ia">Imagine SVG comprimite</comment>
- <comment xml:lang="id">Citra SVG terkompresi</comment>
- <comment xml:lang="it">Immagine SVG compressa</comment>
- <comment xml:lang="ja">圧縮 SVG 画像</comment>
- <comment xml:lang="kk">сығылған SVG суреті</comment>
- <comment xml:lang="ko">압축된 SVG 그림</comment>
- <comment xml:lang="lt">suglaudintas SVG paveikslėlis</comment>
- <comment xml:lang="lv">saspiests SVG attēls</comment>
- <comment xml:lang="nb">komprimert SVG-bilde</comment>
- <comment xml:lang="nl">ingepakte SVG-afbeelding</comment>
- <comment xml:lang="nn">komprimert SVG-bilete</comment>
- <comment xml:lang="oc">imatge SVG compressat</comment>
- <comment xml:lang="pl">Skompresowany obraz SVG</comment>
- <comment xml:lang="pt">imagem SVG comprimida</comment>
- <comment xml:lang="pt_BR">Imagem SVG compactada</comment>
- <comment xml:lang="ro">imagine comprimată SVG</comment>
- <comment xml:lang="ru">Сжатое изображение SVG</comment>
- <comment xml:lang="sk">Komprimovaný obrázok SVG</comment>
- <comment xml:lang="sl">Slikovna datoteka SVG (stisnjena)</comment>
- <comment xml:lang="sq">Figurë SVG e kompresuar</comment>
- <comment xml:lang="sr">запакована СВГ слика</comment>
- <comment xml:lang="sv">komprimerad SVG-bild</comment>
- <comment xml:lang="tr">sıkıştırılmış SVG görüntüsü</comment>
+ <comment>Compressed SVG image</comment>
<comment xml:lang="uk">стиснене зображення SVG</comment>
- <comment xml:lang="vi">ảnh SVG đã nén</comment>
- <comment xml:lang="zh_CN">压缩的 SVG 图像</comment>
- <comment xml:lang="zh_TW">壓縮版 SVG 影像</comment>
+ <comment xml:lang="sv">Komprimerad SVG-bild</comment>
+ <comment xml:lang="ru">Сжатое изображение SVG</comment>
+ <comment xml:lang="pl">Skompresowany obraz SVG</comment>
+ <comment xml:lang="ja">SVG画像(圧縮)</comment>
+ <comment xml:lang="it">Immagine SVG compressa</comment>
+ <comment xml:lang="gl">Imaxe SVG comprimido</comment>
+ <comment xml:lang="eu">SVG irudi konprimatua</comment>
+ <comment xml:lang="es">imagen SVG comprimida</comment>
+ <comment xml:lang="de">Komprimiertes SVG-Bild</comment>
+ <comment xml:lang="be">сціснутая выява SVG</comment>
<acronym>SVG</acronym>
<expanded-acronym>Scalable Vector Graphics</expanded-acronym>
<sub-class-of type="application/gzip"/>
<glob pattern="*.svgz"/>
+ <glob pattern="*.svg.gz"/>
</mime-type>
<mime-type type="image/tiff">
<comment>TIFF image</comment>
- <comment xml:lang="ar">صورة TIFF</comment>
- <comment xml:lang="be@latin">Vyjava TIFF</comment>
- <comment xml:lang="bg">Изображение — TIFF</comment>
- <comment xml:lang="ca">imatge TIFF</comment>
- <comment xml:lang="cs">obrázek TIFF</comment>
- <comment xml:lang="da">TIFF-billede</comment>
- <comment xml:lang="de">TIFF-Bild</comment>
- <comment xml:lang="el">Εικόνα TIFF</comment>
- <comment xml:lang="en_GB">TIFF image</comment>
- <comment xml:lang="eo">TIFF-bildo</comment>
- <comment xml:lang="es">imagen TIFF</comment>
- <comment xml:lang="eu">TIFF irudia</comment>
- <comment xml:lang="fi">TIFF-kuva</comment>
- <comment xml:lang="fo">TIFF mynd</comment>
- <comment xml:lang="fr">image TIFF</comment>
- <comment xml:lang="ga">íomhá TIFF</comment>
- <comment xml:lang="gl">imaxe TIFF</comment>
- <comment xml:lang="he">תמונת TIFF</comment>
- <comment xml:lang="hr">TIFF slika</comment>
- <comment xml:lang="hu">TIFF-kép</comment>
- <comment xml:lang="ia">Imagine TIFF</comment>
- <comment xml:lang="id">Citra TIFF</comment>
- <comment xml:lang="it">Immagine TIFF</comment>
- <comment xml:lang="ja">TIFF 画像</comment>
- <comment xml:lang="kk">TIFF суреті</comment>
- <comment xml:lang="ko">TIFF 그림</comment>
- <comment xml:lang="lt">TIFF paveikslėlis</comment>
- <comment xml:lang="lv">TIFF attēls</comment>
- <comment xml:lang="ms">Imej TIFF</comment>
- <comment xml:lang="nb">TIFF-bilde</comment>
- <comment xml:lang="nl">TIFF-afbeelding</comment>
- <comment xml:lang="nn">TIFF-bilete</comment>
- <comment xml:lang="oc">imatge TIFF</comment>
- <comment xml:lang="pl">Obraz TIFF</comment>
- <comment xml:lang="pt">imagem TIFF</comment>
- <comment xml:lang="pt_BR">Imagem TIFF</comment>
- <comment xml:lang="ro">Imagine TIFF</comment>
- <comment xml:lang="ru">Изображение TIFF</comment>
- <comment xml:lang="sk">Obrázok TIFF</comment>
- <comment xml:lang="sl">Slikovna datoteka TIFF</comment>
- <comment xml:lang="sq">Figurë TIFF</comment>
- <comment xml:lang="sr">ТИФФ слика</comment>
- <comment xml:lang="sv">TIFF-bild</comment>
- <comment xml:lang="tr">TIFF görüntüsü</comment>
- <comment xml:lang="uk">зображення TIFF</comment>
- <comment xml:lang="vi">Ảnh TIFF</comment>
- <comment xml:lang="zh_CN">TIFF 图像</comment>
<comment xml:lang="zh_TW">TIFF 影像</comment>
+ <comment xml:lang="zh_CN">TIFF 图像</comment>
+ <comment xml:lang="vi">Ảnh TIFF</comment>
+ <comment xml:lang="uk">зображення TIFF</comment>
+ <comment xml:lang="tr">TIFF görüntüsü</comment>
+ <comment xml:lang="sv">TIFF-bild</comment>
+ <comment xml:lang="sr">ТИФФ слика</comment>
+ <comment xml:lang="sq">figurë TIFF</comment>
+ <comment xml:lang="sl">Slikovna datoteka TIFF</comment>
+ <comment xml:lang="si">TIFF රූපය</comment>
+ <comment xml:lang="sk">Obrázok TIFF</comment>
+ <comment xml:lang="ru">Изображение TIFF</comment>
+ <comment xml:lang="ro">Imagine TIFF</comment>
+ <comment xml:lang="pt_BR">Imagem TIFF</comment>
+ <comment xml:lang="pt">imagem TIFF</comment>
+ <comment xml:lang="pl">Obraz TIFF</comment>
+ <comment xml:lang="oc">imatge TIFF</comment>
+ <comment xml:lang="nn">TIFF-bilete</comment>
+ <comment xml:lang="nl">TIFF-afbeelding</comment>
+ <comment xml:lang="nb">TIFF-bilde</comment>
+ <comment xml:lang="ms">Imej TIFF</comment>
+ <comment xml:lang="lv">TIFF attēls</comment>
+ <comment xml:lang="lt">TIFF paveikslėlis</comment>
+ <comment xml:lang="ko">TIFF 그림</comment>
+ <comment xml:lang="kk">TIFF суреті</comment>
+ <comment xml:lang="ja">TIFF 画像</comment>
+ <comment xml:lang="it">Immagine TIFF</comment>
+ <comment xml:lang="is">TIFF mynd</comment>
+ <comment xml:lang="id">Citra TIFF</comment>
+ <comment xml:lang="ia">Imagine TIFF</comment>
+ <comment xml:lang="hu">TIFF-kép</comment>
+ <comment xml:lang="hr">TIFF slika</comment>
+ <comment xml:lang="he">תמונת TIFF</comment>
+ <comment xml:lang="gl">imaxe TIFF</comment>
+ <comment xml:lang="ga">íomhá TIFF</comment>
+ <comment xml:lang="fur">imagjin TIFF</comment>
+ <comment xml:lang="fr">image TIFF</comment>
+ <comment xml:lang="fo">TIFF mynd</comment>
+ <comment xml:lang="fi">TIFF-kuva</comment>
+ <comment xml:lang="eu">TIFF irudia</comment>
+ <comment xml:lang="es">imagen TIFF</comment>
+ <comment xml:lang="eo">TIFF-bildo</comment>
+ <comment xml:lang="en_GB">TIFF image</comment>
+ <comment xml:lang="el">Εικόνα TIFF</comment>
+ <comment xml:lang="de">TIFF-Bild</comment>
+ <comment xml:lang="da">TIFF-billede</comment>
+ <comment xml:lang="cs">obrázek TIFF</comment>
+ <comment xml:lang="ca">imatge TIFF</comment>
+ <comment xml:lang="bg">Изображение — TIFF</comment>
+ <comment xml:lang="be@latin">Vyjava TIFF</comment>
+ <comment xml:lang="be">выява TIFF</comment>
+ <comment xml:lang="ar">صورة TIFF</comment>
+ <comment xml:lang="af">TIFF-beeld</comment>
<acronym>TIFF</acronym>
<expanded-acronym>Tagged Image File Format</expanded-acronym>
- <magic priority="50">
- <match value="MM\x00\x2a" type="string" offset="0"/>
- <match value="II\x2a\x00" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="MM\x00\x2a" offset="0"/>
+ <match type="string" value="II\x2a\x00" offset="0"/>
</magic>
<glob pattern="*.tif"/>
<glob pattern="*.tiff"/>
</mime-type>
<mime-type type="image/x-tiff-multipage">
<comment>Multi-page TIFF image</comment>
- <comment xml:lang="ca">imatge TIFF multipàgina</comment>
- <comment xml:lang="cs">vícestránkový obrázek TIFF</comment>
- <comment xml:lang="da">Flersidet TIFF-billede</comment>
- <comment xml:lang="de">Mehrseitiges TIFF-Bild</comment>
- <comment xml:lang="el">Πολυσέλιδη εικόνα TIFF</comment>
- <comment xml:lang="en_GB">Multi-page TIFF image</comment>
- <comment xml:lang="es">imagen TIFF de varias páginas</comment>
- <comment xml:lang="fi">Monisivuinen TIFF-kuva</comment>
- <comment xml:lang="fr">Image TIFF multi-page</comment>
- <comment xml:lang="ga">íomhá il-leathanach TIFF</comment>
- <comment xml:lang="gl">Imaxe TIFF multipáxina</comment>
- <comment xml:lang="he">תמונת TIFF עם ריבוי עמודים</comment>
- <comment xml:lang="hr">Višestrana TIFF slika</comment>
- <comment xml:lang="hu">Többoldalas TIFF kép</comment>
- <comment xml:lang="ia">Imagine TIFF multi-pagina</comment>
- <comment xml:lang="id">Citra TIFF multi halaman</comment>
- <comment xml:lang="it">Immagine TIFF multi-pagina</comment>
- <comment xml:lang="kk">Көпбеттік TIFF суреті</comment>
- <comment xml:lang="ko">다중 페이지 TIFF 그림</comment>
- <comment xml:lang="oc">Imatge TIFF multipagina</comment>
- <comment xml:lang="pl">Wielostronnicowy obraz TIFF</comment>
- <comment xml:lang="pt">imagem TIFF multipágina</comment>
- <comment xml:lang="pt_BR">Imagem TIFF multipágina</comment>
- <comment xml:lang="ru">Многостраничное изображение TIFF</comment>
- <comment xml:lang="sk">Viacstránkový obrázok TIFF</comment>
- <comment xml:lang="sl">Večstranska slika TIFF</comment>
- <comment xml:lang="sr">Вишестранична ТИФФ слика</comment>
- <comment xml:lang="sv">Flersidig TIFF-bild</comment>
- <comment xml:lang="tr">Çok sayfalı TIFF görüntüsü</comment>
- <comment xml:lang="uk">багатосторінкове зображення TIFF</comment>
- <comment xml:lang="zh_CN">多页 TIFF 图像</comment>
<comment xml:lang="zh_TW">多頁 TIFF 影像</comment>
+ <comment xml:lang="zh_CN">多页 TIFF 图像</comment>
+ <comment xml:lang="uk">багатосторінкове зображення TIFF</comment>
+ <comment xml:lang="tr">Çok sayfalı TIFF görüntüsü</comment>
+ <comment xml:lang="sv">Flersidig TIFF-bild</comment>
+ <comment xml:lang="sr">Вишестранична ТИФФ слика</comment>
+ <comment xml:lang="sq">figurë TIFF me shumë faqe</comment>
+ <comment xml:lang="sl">Večstranska slika TIFF</comment>
+ <comment xml:lang="si">බහු-පිටු TIFF රූපය</comment>
+ <comment xml:lang="sk">Viacstránkový obrázok TIFF</comment>
+ <comment xml:lang="ru">Многостраничное изображение TIFF</comment>
+ <comment xml:lang="pt_BR">Imagem TIFF multipágina</comment>
+ <comment xml:lang="pt">imagem TIFF multipágina</comment>
+ <comment xml:lang="pl">Wielostronnicowy obraz TIFF</comment>
+ <comment xml:lang="oc">Imatge TIFF multipagina</comment>
+ <comment xml:lang="nl">Multi-pagina TIFF-afbeelding</comment>
+ <comment xml:lang="ko">다중 페이지 TIFF 그림</comment>
+ <comment xml:lang="kk">Көпбеттік TIFF суреті</comment>
+ <comment xml:lang="ja">マルチページ TIFF 画像</comment>
+ <comment xml:lang="it">Immagine TIFF multi-pagina</comment>
+ <comment xml:lang="is">Margsíðna TIFF mynd</comment>
+ <comment xml:lang="id">Citra TIFF multi halaman</comment>
+ <comment xml:lang="ia">Imagine TIFF multi-pagina</comment>
+ <comment xml:lang="hu">Többoldalas TIFF kép</comment>
+ <comment xml:lang="hr">Višestrana TIFF slika</comment>
+ <comment xml:lang="he">תמונת TIFF עם ריבוי עמודים</comment>
+ <comment xml:lang="gl">Imaxe TIFF multipáxina</comment>
+ <comment xml:lang="ga">íomhá il-leathanach TIFF</comment>
+ <comment xml:lang="fur">imagjin a plui pagjinis TIFF</comment>
+ <comment xml:lang="fr">Image TIFF multi-page</comment>
+ <comment xml:lang="fi">Monisivuinen TIFF-kuva</comment>
+ <comment xml:lang="eu">Multi-page TIFF irudia</comment>
+ <comment xml:lang="es">imagen TIFF multipágina</comment>
+ <comment xml:lang="en_GB">Multi-page TIFF image</comment>
+ <comment xml:lang="el">Πολυσέλιδη εικόνα TIFF</comment>
+ <comment xml:lang="de">Mehrseitiges TIFF-Bild</comment>
+ <comment xml:lang="da">Flersidet TIFF-billede</comment>
+ <comment xml:lang="cs">vícestránkový obrázek TIFF</comment>
+ <comment xml:lang="ca">imatge TIFF multipàgina</comment>
+ <comment xml:lang="bg">Изображение — TIFF, много страници</comment>
+ <comment xml:lang="be">шматстаронкавая выява TIFF</comment>
+ <comment xml:lang="ar">صورة TIFF متعددة الصفحات</comment>
+ <comment xml:lang="af">Multibladsy TIFF-beeld</comment>
<acronym>TIFF</acronym>
<expanded-acronym>Tagged Image File Format</expanded-acronym>
<sub-class-of type="image/tiff"/>
</mime-type>
<mime-type type="image/vnd.dwg">
<comment>AutoCAD image</comment>
- <comment xml:lang="ar">صورة AutoCAD</comment>
- <comment xml:lang="az">AutoCAD rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava AutoCAD</comment>
- <comment xml:lang="bg">Изображение — AutoCAD</comment>
- <comment xml:lang="ca">imatge d'AutoCAD</comment>
- <comment xml:lang="cs">výkres AutoCAD</comment>
- <comment xml:lang="cy">Delwedd AutoCAD</comment>
- <comment xml:lang="da">AutoCAD-billede</comment>
- <comment xml:lang="de">AutoCAD-Bild</comment>
- <comment xml:lang="el">Εικόνα AutoCAD</comment>
- <comment xml:lang="en_GB">AutoCAD image</comment>
- <comment xml:lang="eo">AutoCAD-bildo</comment>
- <comment xml:lang="es">imagen de AutoCAD</comment>
- <comment xml:lang="eu">AutoCAD-eko irudia</comment>
- <comment xml:lang="fi">AutoCAD-kuva</comment>
- <comment xml:lang="fo">AutoCAD mynd</comment>
- <comment xml:lang="fr">image AutoCAD</comment>
- <comment xml:lang="ga">íomhá AutoCAD</comment>
- <comment xml:lang="gl">imaxe de AutoCAD</comment>
- <comment xml:lang="he">תמונה של AutoCAD</comment>
- <comment xml:lang="hr">AutoCAD slika</comment>
- <comment xml:lang="hu">AutoCAD-kép</comment>
- <comment xml:lang="ia">Imagine AutoCAD</comment>
- <comment xml:lang="id">Citra AutoCAD</comment>
- <comment xml:lang="it">Immagine AutoCAD</comment>
- <comment xml:lang="ja">AutoCAD 画像</comment>
- <comment xml:lang="ka">AutoCAD-ის გამოსახულება</comment>
- <comment xml:lang="kk">AutoCAD суреті</comment>
- <comment xml:lang="ko">AutoCAD 그림</comment>
- <comment xml:lang="lt">AutoCAD paveikslėlis</comment>
- <comment xml:lang="lv">AutoCAD attēls</comment>
- <comment xml:lang="ms">Imej AutoCAD</comment>
- <comment xml:lang="nb">AutoCAD-bilde</comment>
- <comment xml:lang="nl">AutoCAD-afbeelding</comment>
- <comment xml:lang="nn">AutoCAD-bilete</comment>
- <comment xml:lang="oc">imatge AutoCAD</comment>
- <comment xml:lang="pl">Obraz AutoCAD</comment>
- <comment xml:lang="pt">imagem AutoCAD</comment>
- <comment xml:lang="pt_BR">Imagem do AutoCAD</comment>
- <comment xml:lang="ro">Imagine AutoCAD</comment>
- <comment xml:lang="ru">Изображение AutoCAD</comment>
- <comment xml:lang="sk">Obrázok AutoCAD</comment>
- <comment xml:lang="sl">Slikovna datoteka AutoCAD</comment>
- <comment xml:lang="sq">Figurë AutoCAD</comment>
- <comment xml:lang="sr">АутоКАД слика</comment>
- <comment xml:lang="sv">AutoCAD-bild</comment>
- <comment xml:lang="tr">AutoCAD görüntüsü</comment>
- <comment xml:lang="uk">зображення AutoCAD</comment>
- <comment xml:lang="vi">Ảnh AutoCAD</comment>
- <comment xml:lang="zh_CN">AutoCAD 图像</comment>
<comment xml:lang="zh_TW">AutoCAD 影像</comment>
+ <comment xml:lang="zh_CN">AutoCAD 图像</comment>
+ <comment xml:lang="vi">Ảnh AutoCAD</comment>
+ <comment xml:lang="uk">зображення AutoCAD</comment>
+ <comment xml:lang="tr">AutoCAD görüntüsü</comment>
+ <comment xml:lang="sv">AutoCAD-bild</comment>
+ <comment xml:lang="sr">АутоКАД слика</comment>
+ <comment xml:lang="sq">figurë AutoCAD</comment>
+ <comment xml:lang="sl">Slikovna datoteka AutoCAD</comment>
+ <comment xml:lang="si">AutoCAD රූපය</comment>
+ <comment xml:lang="sk">Obrázok AutoCAD</comment>
+ <comment xml:lang="ru">Изображение AutoCAD</comment>
+ <comment xml:lang="ro">Imagine AutoCAD</comment>
+ <comment xml:lang="pt_BR">Imagem do AutoCAD</comment>
+ <comment xml:lang="pt">imagem AutoCAD</comment>
+ <comment xml:lang="pl">Obraz AutoCAD</comment>
+ <comment xml:lang="oc">imatge AutoCAD</comment>
+ <comment xml:lang="nn">AutoCAD-bilete</comment>
+ <comment xml:lang="nl">AutoCAD-afbeelding</comment>
+ <comment xml:lang="nb">AutoCAD-bilde</comment>
+ <comment xml:lang="ms">Imej AutoCAD</comment>
+ <comment xml:lang="lv">AutoCAD attēls</comment>
+ <comment xml:lang="lt">AutoCAD paveikslėlis</comment>
+ <comment xml:lang="ko">AutoCAD 그림</comment>
+ <comment xml:lang="kk">AutoCAD суреті</comment>
+ <comment xml:lang="ka">AutoCAD-ის გამოსახულება</comment>
+ <comment xml:lang="ja">AutoCAD 画像</comment>
+ <comment xml:lang="it">Immagine AutoCAD</comment>
+ <comment xml:lang="is">AutoCAD mynd</comment>
+ <comment xml:lang="id">Citra AutoCAD</comment>
+ <comment xml:lang="ia">Imagine AutoCAD</comment>
+ <comment xml:lang="hu">AutoCAD-kép</comment>
+ <comment xml:lang="hr">AutoCAD slika</comment>
+ <comment xml:lang="he">תמונה של AutoCAD</comment>
+ <comment xml:lang="gl">imaxe de AutoCAD</comment>
+ <comment xml:lang="ga">íomhá AutoCAD</comment>
+ <comment xml:lang="fur">imagjin AutoCAD</comment>
+ <comment xml:lang="fr">image AutoCAD</comment>
+ <comment xml:lang="fo">AutoCAD mynd</comment>
+ <comment xml:lang="fi">AutoCAD-kuva</comment>
+ <comment xml:lang="eu">AutoCAD-eko irudia</comment>
+ <comment xml:lang="es">imagen de AutoCAD</comment>
+ <comment xml:lang="eo">AutoCAD-bildo</comment>
+ <comment xml:lang="en_GB">AutoCAD image</comment>
+ <comment xml:lang="el">Εικόνα AutoCAD</comment>
+ <comment xml:lang="de">AutoCAD-Bild</comment>
+ <comment xml:lang="da">AutoCAD-billede</comment>
+ <comment xml:lang="cy">Delwedd AutoCAD</comment>
+ <comment xml:lang="cs">výkres AutoCAD</comment>
+ <comment xml:lang="ca">imatge d'AutoCAD</comment>
+ <comment xml:lang="bg">Изображение — AutoCAD</comment>
+ <comment xml:lang="be@latin">Vyjava AutoCAD</comment>
+ <comment xml:lang="be">выява AutoCAD</comment>
+ <comment xml:lang="az">AutoCAD rəsmi</comment>
+ <comment xml:lang="ar">صورة AutoCAD</comment>
+ <comment xml:lang="af">AutoCAD-beeld</comment>
<glob pattern="*.dwg"/>
</mime-type>
<mime-type type="image/vnd.dxf">
<comment>DXF vector image</comment>
- <comment xml:lang="ar">صورة DXF نقطية</comment>
- <comment xml:lang="be@latin">Vektarnaja vyjava DXF</comment>
- <comment xml:lang="bg">Изображение — DXF</comment>
- <comment xml:lang="ca">imatge vectorial DXF</comment>
- <comment xml:lang="cs">vektorový obrázek DXF</comment>
- <comment xml:lang="da">DXF-vektorbillede</comment>
- <comment xml:lang="de">DXF-Vektorbild</comment>
- <comment xml:lang="el">Διανυσματική εικόνα DXF</comment>
- <comment xml:lang="en_GB">DXF vector image</comment>
- <comment xml:lang="eo">vektora DXF-bildo</comment>
- <comment xml:lang="es">imagen vectorial DXF</comment>
- <comment xml:lang="eu">DXF bektore-grafikoa</comment>
- <comment xml:lang="fi">DXF-vektorikuva</comment>
- <comment xml:lang="fo">DXF vektormynd</comment>
- <comment xml:lang="fr">image vectorielle DXF</comment>
- <comment xml:lang="ga">íomhá veicteoireach DXF</comment>
- <comment xml:lang="gl">imaxe de vector DXF</comment>
- <comment xml:lang="he">תמונת DXF וקטורית</comment>
- <comment xml:lang="hr">DXF vektorska slika</comment>
- <comment xml:lang="hu">DXF-vektorkép</comment>
- <comment xml:lang="ia">Imagine vectorial DXF</comment>
- <comment xml:lang="id">Citra vektor DXF</comment>
- <comment xml:lang="it">Immagine vettoriale DXF</comment>
- <comment xml:lang="ja">DXF ベクター画像</comment>
- <comment xml:lang="ka">DXF ვექტორული გამოსახულება</comment>
- <comment xml:lang="kk">DXF векторлық суреті</comment>
- <comment xml:lang="ko">DXF 벡터 그림</comment>
- <comment xml:lang="lt">DXF vektorinis paveikslėlis</comment>
- <comment xml:lang="lv">DXF vektora attēls</comment>
- <comment xml:lang="ms">Imej vektor DXF</comment>
- <comment xml:lang="nb">DXF-vektorgrafikk</comment>
- <comment xml:lang="nl">DXF-vectorafbeelding</comment>
- <comment xml:lang="nn">DXF-vektorgrafikk</comment>
- <comment xml:lang="oc">imatge vectorial DXF</comment>
- <comment xml:lang="pl">Obraz wektorowy DXF</comment>
- <comment xml:lang="pt">imagem de vectores DXF</comment>
- <comment xml:lang="pt_BR">Imagem vetorial DXF</comment>
- <comment xml:lang="ro">Imagine vectorială DXF</comment>
- <comment xml:lang="ru">Векторное изображение DXF</comment>
- <comment xml:lang="sk">Vektorový obrázok DXF</comment>
- <comment xml:lang="sl">Slikovna vektorska datoteka DXF</comment>
- <comment xml:lang="sq">Figurë vektoriale DFX</comment>
- <comment xml:lang="sr">ДИксФ векторска графика</comment>
- <comment xml:lang="sv">DXF-vektorbild</comment>
- <comment xml:lang="tr">DXF vektör görüntüsü</comment>
- <comment xml:lang="uk">векторне зображення DXF</comment>
- <comment xml:lang="vi">Ảnh véc-tơ DXF</comment>
- <comment xml:lang="zh_CN">DXF 矢量图像</comment>
<comment xml:lang="zh_TW">DXF 向量圖</comment>
+ <comment xml:lang="zh_CN">DXF 矢量图像</comment>
+ <comment xml:lang="vi">Ảnh véc-tơ DXF</comment>
+ <comment xml:lang="uk">векторне зображення DXF</comment>
+ <comment xml:lang="tr">DXF vektör görüntüsü</comment>
+ <comment xml:lang="sv">DXF-vektorbild</comment>
+ <comment xml:lang="sr">ДИксФ векторска графика</comment>
+ <comment xml:lang="sq">figurë vektoriale DFX</comment>
+ <comment xml:lang="sl">Slikovna vektorska datoteka DXF</comment>
+ <comment xml:lang="si">DXF දෛශික රූපය</comment>
+ <comment xml:lang="sk">Vektorový obrázok DXF</comment>
+ <comment xml:lang="ru">Векторное изображение DXF</comment>
+ <comment xml:lang="ro">Imagine vectorială DXF</comment>
+ <comment xml:lang="pt_BR">Imagem vetorial DXF</comment>
+ <comment xml:lang="pt">imagem de vectores DXF</comment>
+ <comment xml:lang="pl">Obraz wektorowy DXF</comment>
+ <comment xml:lang="oc">imatge vectorial DXF</comment>
+ <comment xml:lang="nn">DXF-vektorgrafikk</comment>
+ <comment xml:lang="nl">DXF-vectorafbeelding</comment>
+ <comment xml:lang="nb">DXF-vektorgrafikk</comment>
+ <comment xml:lang="ms">Imej vektor DXF</comment>
+ <comment xml:lang="lv">DXF vektora attēls</comment>
+ <comment xml:lang="lt">DXF vektorinis paveikslėlis</comment>
+ <comment xml:lang="ko">DXF 벡터 그림</comment>
+ <comment xml:lang="kk">DXF векторлық суреті</comment>
+ <comment xml:lang="ka">DXF ვექტორული გამოსახულება</comment>
+ <comment xml:lang="ja">DXF ベクター画像</comment>
+ <comment xml:lang="it">Immagine vettoriale DXF</comment>
+ <comment xml:lang="is">DXF vigurteikning</comment>
+ <comment xml:lang="id">Citra vektor DXF</comment>
+ <comment xml:lang="ia">Imagine vectorial DXF</comment>
+ <comment xml:lang="hu">DXF-vektorkép</comment>
+ <comment xml:lang="hr">DXF vektorska slika</comment>
+ <comment xml:lang="he">תמונת DXF וקטורית</comment>
+ <comment xml:lang="gl">imaxe de vector DXF</comment>
+ <comment xml:lang="ga">íomhá veicteoireach DXF</comment>
+ <comment xml:lang="fur">imagjin vetoriâl DXF</comment>
+ <comment xml:lang="fr">image vectorielle DXF</comment>
+ <comment xml:lang="fo">DXF vektormynd</comment>
+ <comment xml:lang="fi">DXF-vektorikuva</comment>
+ <comment xml:lang="eu">DXF bektore-grafikoa</comment>
+ <comment xml:lang="es">imagen vectorial DXF</comment>
+ <comment xml:lang="eo">vektora DXF-bildo</comment>
+ <comment xml:lang="en_GB">DXF vector image</comment>
+ <comment xml:lang="el">Διανυσματική εικόνα DXF</comment>
+ <comment xml:lang="de">DXF-Vektorbild</comment>
+ <comment xml:lang="da">DXF-vektorbillede</comment>
+ <comment xml:lang="cs">vektorový obrázek DXF</comment>
+ <comment xml:lang="ca">imatge vectorial DXF</comment>
+ <comment xml:lang="bg">Изображение — DXF</comment>
+ <comment xml:lang="be@latin">Vektarnaja vyjava DXF</comment>
+ <comment xml:lang="be">вектарная выява DXF</comment>
+ <comment xml:lang="ar">صورة DXF نقطية</comment>
+ <comment xml:lang="af">DXF-vektorbeeld</comment>
<glob pattern="*.dxf"/>
- <magic priority="50">
- <match value="\nHEADER\n" type="string" offset="0:64"/>
- <match value="\x0d\nHEADER\x0d\n" type="string" offset="0:64"/>
+ <magic>
+ <match type="string" value="\nHEADER\n" offset="0:64"/>
+ <match type="string" value="\x0d\nHEADER\x0d\n" offset="0:64"/>
</magic>
</mime-type>
<mime-type type="image/vnd.ms-modi">
- <comment>Microsoft Document Imaging format</comment>
- <comment xml:lang="ar">صيغة مستند تصوير مايكروسوفت</comment>
- <comment xml:lang="ast">Formatu d'imáxenes de Microsoft Document</comment>
- <comment xml:lang="bg">Изображение — Microsoft Document Imaging</comment>
- <comment xml:lang="ca">format Microsoft Document Imaging</comment>
- <comment xml:lang="cs">formát Microsoft Document Imaging</comment>
- <comment xml:lang="da">Microsofts dokumentbilledformat</comment>
- <comment xml:lang="de">Microsoft-Document-Imaging-Bildformat</comment>
- <comment xml:lang="el">Μορφή Microsoft Document Imaging</comment>
- <comment xml:lang="en_GB">Microsoft Document Imaging format</comment>
- <comment xml:lang="es">formato de imagen para documentos de Microsoft</comment>
- <comment xml:lang="eu">Microsoft Document Imaging formatua</comment>
- <comment xml:lang="fi">Microsoft Document Imaging -muoto</comment>
- <comment xml:lang="fo">Microsoft Document Imaging snið</comment>
- <comment xml:lang="fr">format Document Imaging Microsoft</comment>
- <comment xml:lang="ga">formáid Microsoft Document Imaging</comment>
- <comment xml:lang="gl">formato de Microsoft Document Imaging</comment>
- <comment xml:lang="he">תבנית של Microsoft Document Imaging</comment>
- <comment xml:lang="hr">Microsoft Document Imaging format</comment>
- <comment xml:lang="hu">Microsoft Document Imaging formátum</comment>
- <comment xml:lang="ia">File in formato Microsoft Document Imaging</comment>
- <comment xml:lang="id">Format Microsoft Document Imaging</comment>
- <comment xml:lang="it">Formato MDI (Microsoft Document Imaging)</comment>
- <comment xml:lang="ja">Microsoft ドキュメントイメージフォーマット</comment>
- <comment xml:lang="kk">Microsoft Document Imaging пішімі</comment>
- <comment xml:lang="ko">Microsoft 문서 이미지 형식</comment>
- <comment xml:lang="lt">Microsoft Document Imaging formatas</comment>
- <comment xml:lang="lv">Microsoft dokumentu attēlošanas formāts</comment>
- <comment xml:lang="nl">Microsoft Document Imaging</comment>
- <comment xml:lang="oc">format Document Imaging Microsoft</comment>
- <comment xml:lang="pl">Format Microsoft Document Imaging</comment>
- <comment xml:lang="pt">formato Microsoft Document Imaging</comment>
- <comment xml:lang="pt_BR">Formato do Microsoft Document Imaging</comment>
- <comment xml:lang="ro">Format Microsoft Document Imaging</comment>
- <comment xml:lang="ru">Формат Microsoft Document Imaging</comment>
- <comment xml:lang="sk">Formát Microsoft Document Imaging</comment>
- <comment xml:lang="sl">Zapis Microsoft Document Imaging</comment>
- <comment xml:lang="sr">запис слика Мајкрософтовог документа</comment>
- <comment xml:lang="sv">Microsoft Document Imaging-format</comment>
- <comment xml:lang="tr">Microsoft Belge Görüntüleme biçimi</comment>
- <comment xml:lang="uk">формат Microsoft Document Imaging</comment>
- <comment xml:lang="vi">Định dạng tạo ảnh tài liệu Microsoft</comment>
- <comment xml:lang="zh_CN">Microsoft Document Imaging 格式</comment>
- <comment xml:lang="zh_TW">微軟文件影像格式</comment>
+ <comment>MDI image</comment>
+ <comment xml:lang="zh_TW">MDI 影像</comment>
+ <comment xml:lang="zh_CN">MDI 图像</comment>
+ <comment xml:lang="uk">зображення MDI</comment>
+ <comment xml:lang="tr">MDI görüntüsü</comment>
+ <comment xml:lang="sv">MDI-bild</comment>
+ <comment xml:lang="sq">figurë MDI</comment>
+ <comment xml:lang="sl">Slika MDI</comment>
+ <comment xml:lang="si">MDI රූපය</comment>
+ <comment xml:lang="sk">Obrázok MDI</comment>
+ <comment xml:lang="ru">Изображение MDI</comment>
+ <comment xml:lang="pt_BR">Imagem MDI</comment>
+ <comment xml:lang="pl">Obraz MDI</comment>
+ <comment xml:lang="oc">imatge MDI</comment>
+ <comment xml:lang="nl">MDI-afbeelding</comment>
+ <comment xml:lang="ko">MDI 그림</comment>
+ <comment xml:lang="kk">MDI суреті</comment>
+ <comment xml:lang="ja">MDI 画像</comment>
+ <comment xml:lang="it">Immagine MDI</comment>
+ <comment xml:lang="is">MDI mynd</comment>
+ <comment xml:lang="id">Citra MDI</comment>
+ <comment xml:lang="hu">MDI-kép</comment>
+ <comment xml:lang="hr">MDI slika</comment>
+ <comment xml:lang="he">תמונת MDI</comment>
+ <comment xml:lang="gl">Imaxe MDI</comment>
+ <comment xml:lang="fr">image MDI</comment>
+ <comment xml:lang="fi">MDI-kuva</comment>
+ <comment xml:lang="eu">MDI irudia</comment>
+ <comment xml:lang="es">imagen MDI</comment>
+ <comment xml:lang="en_GB">MDI image</comment>
+ <comment xml:lang="de">MDI-Bild</comment>
+ <comment xml:lang="da">MDI-billede</comment>
+ <comment xml:lang="ca">imatge MDI</comment>
+ <comment xml:lang="bg">Изображение — MDI</comment>
+ <comment xml:lang="be">выява MDI</comment>
+ <comment xml:lang="ar">صورة MDI</comment>
<acronym>MDI</acronym>
<expanded-acronym>Microsoft Document Imaging</expanded-acronym>
<glob pattern="*.mdi"/>
- <magic priority="50">
- <match value="\x45\x50\x2A\x00" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\x45\x50\x2A\x00" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="image/jxr">
+ <comment>JPEG XR image</comment>
+ <comment xml:lang="uk">зображення JPEG XR</comment>
+ <comment xml:lang="sv">JPEG XR-bild</comment>
+ <comment xml:lang="ru">Изображение JPEG XR</comment>
+ <comment xml:lang="pt_BR">Imagem JPEG XR</comment>
+ <comment xml:lang="pl">Obraz JPEG XR</comment>
+ <comment xml:lang="it">Immagine JPEG XR</comment>
+ <comment xml:lang="gl">Imaxe JPEG XR</comment>
+ <comment xml:lang="eu">JPEG XR irudia</comment>
+ <comment xml:lang="es">imagen JPEG XR</comment>
+ <comment xml:lang="de">JPEG-XR-Bild</comment>
+ <comment xml:lang="be">выява JPEG XR</comment>
+ <acronym>XR</acronym>
+ <expanded-acronym>Extended Range</expanded-acronym>
+ <glob pattern="*.jxr"/>
+ <glob pattern="*.hdp"/>
+ <glob pattern="*.wdp"/>
+ <magic>
+ <match type="string" value="II\xBC\x01" offset="0"/>
</magic>
+ <alias type="image/vnd.ms-photo"/>
</mime-type>
<mime-type type="image/webp">
<comment>WebP image</comment>
- <comment xml:lang="ca">imatge WebP</comment>
- <comment xml:lang="cs">obrázek WebP</comment>
- <comment xml:lang="da">WebP-billede</comment>
- <comment xml:lang="de">WebP-Bild</comment>
- <comment xml:lang="el">Εικόνα WebP</comment>
- <comment xml:lang="en_GB">WebP image</comment>
- <comment xml:lang="es">imagen WebP</comment>
- <comment xml:lang="eu">WebP irudia</comment>
- <comment xml:lang="fi">WebP-kuva</comment>
- <comment xml:lang="fr">image WebP</comment>
- <comment xml:lang="ga">íomhá WebP</comment>
- <comment xml:lang="gl">Imaxe WebP</comment>
- <comment xml:lang="he">תמונת WebP</comment>
- <comment xml:lang="hr">WebP slika</comment>
- <comment xml:lang="hu">WebP kép</comment>
- <comment xml:lang="ia">Imagine WebP</comment>
- <comment xml:lang="id">Citra WebP</comment>
- <comment xml:lang="it">Immagine WebP</comment>
- <comment xml:lang="kk">WebP суреті</comment>
- <comment xml:lang="ko">WebP 그림</comment>
- <comment xml:lang="oc">imatge WebP</comment>
- <comment xml:lang="pl">Obraz WebP</comment>
- <comment xml:lang="pt">imagem WebP</comment>
- <comment xml:lang="pt_BR">Imagem WebP</comment>
- <comment xml:lang="ru">Изображение WebP</comment>
- <comment xml:lang="sk">Obrázok WebP</comment>
- <comment xml:lang="sl">Slika WebP</comment>
- <comment xml:lang="sr">ВебП слика</comment>
- <comment xml:lang="sv">WebP-bild</comment>
- <comment xml:lang="tr">WebP görüntüsü</comment>
- <comment xml:lang="uk">зображення WebP</comment>
- <comment xml:lang="zh_CN">WebP 图像</comment>
<comment xml:lang="zh_TW">WebP 影像</comment>
- <magic priority="50">
- <match value="RIFF" type="string" offset="0">
- <match value="WEBP" type="string" offset="8"/>
+ <comment xml:lang="zh_CN">WebP 图像</comment>
+ <comment xml:lang="uk">зображення WebP</comment>
+ <comment xml:lang="tr">WebP görüntüsü</comment>
+ <comment xml:lang="sv">WebP-bild</comment>
+ <comment xml:lang="sr">ВебП слика</comment>
+ <comment xml:lang="sq">figurë WebP</comment>
+ <comment xml:lang="sl">Slika WebP</comment>
+ <comment xml:lang="si">WebP රූපය</comment>
+ <comment xml:lang="sk">Obrázok WebP</comment>
+ <comment xml:lang="ru">Изображение WebP</comment>
+ <comment xml:lang="pt_BR">Imagem WebP</comment>
+ <comment xml:lang="pt">imagem WebP</comment>
+ <comment xml:lang="pl">Obraz WebP</comment>
+ <comment xml:lang="oc">imatge WebP</comment>
+ <comment xml:lang="nl">WebP-afbeelding</comment>
+ <comment xml:lang="ko">WebP 그림</comment>
+ <comment xml:lang="kk">WebP суреті</comment>
+ <comment xml:lang="ja">WebP 画像</comment>
+ <comment xml:lang="it">Immagine WebP</comment>
+ <comment xml:lang="is">WebP-mynd</comment>
+ <comment xml:lang="id">Citra WebP</comment>
+ <comment xml:lang="ia">Imagine WebP</comment>
+ <comment xml:lang="hu">WebP kép</comment>
+ <comment xml:lang="hr">WebP slika</comment>
+ <comment xml:lang="he">תמונת WebP</comment>
+ <comment xml:lang="gl">Imaxe WebP</comment>
+ <comment xml:lang="ga">íomhá WebP</comment>
+ <comment xml:lang="fur">imagjin WebP</comment>
+ <comment xml:lang="fr">image WebP</comment>
+ <comment xml:lang="fi">WebP-kuva</comment>
+ <comment xml:lang="eu">WebP irudia</comment>
+ <comment xml:lang="es">imagen WebP</comment>
+ <comment xml:lang="en_GB">WebP image</comment>
+ <comment xml:lang="el">Εικόνα WebP</comment>
+ <comment xml:lang="de">WebP-Bild</comment>
+ <comment xml:lang="da">WebP-billede</comment>
+ <comment xml:lang="cs">obrázek WebP</comment>
+ <comment xml:lang="ca">imatge WebP</comment>
+ <comment xml:lang="bg">Изображение — WebP</comment>
+ <comment xml:lang="be">выява WebP</comment>
+ <comment xml:lang="ar">صورة WebP</comment>
+ <comment xml:lang="af">WebP-beeld</comment>
+ <magic>
+ <match type="string" value="RIFF" offset="0">
+ <match type="string" value="WEBP" offset="8"/>
</match>
</magic>
<glob pattern="*.webp"/>
</mime-type>
<mime-type type="image/x-3ds">
<comment>3D Studio image</comment>
- <comment xml:lang="ar">صورة استديو ثلاثية الأبعاد</comment>
- <comment xml:lang="az">3D Studio rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava 3D Studio</comment>
- <comment xml:lang="bg">Изображение — 3D Studio</comment>
- <comment xml:lang="ca">imatge de 3D Studio</comment>
- <comment xml:lang="cs">obrázek 3D Studio</comment>
- <comment xml:lang="cy">Delwedd "3D Studio"</comment>
- <comment xml:lang="da">3D Studio-billede</comment>
- <comment xml:lang="de">3D-Studio-Bild</comment>
- <comment xml:lang="el">Εικόνα 3D Studio</comment>
- <comment xml:lang="en_GB">3D Studio image</comment>
- <comment xml:lang="eo">bildo de 3D Studio</comment>
- <comment xml:lang="es">imagen de 3D Studio</comment>
- <comment xml:lang="eu">3D Studio-ko irudia</comment>
- <comment xml:lang="fi">3D Studio -kuva</comment>
- <comment xml:lang="fo">3D Studio mynd</comment>
- <comment xml:lang="fr">image 3D Studio</comment>
- <comment xml:lang="ga">íomhá 3D Studio</comment>
- <comment xml:lang="gl">Imaxe de 3D Studio</comment>
- <comment xml:lang="he">תמונת 3D Studio</comment>
- <comment xml:lang="hr">3D Studio slika</comment>
- <comment xml:lang="hu">3D Studio-kép</comment>
- <comment xml:lang="ia">Imagine 3D Studio</comment>
- <comment xml:lang="id">Citra 3D Studio</comment>
- <comment xml:lang="it">Immagine 3D Studio</comment>
- <comment xml:lang="ja">3D Studio 画像</comment>
- <comment xml:lang="ka">3D Studio-ის გამოსახულება</comment>
- <comment xml:lang="kk">3D Studio суреті</comment>
- <comment xml:lang="ko">3D Studio 그림</comment>
- <comment xml:lang="lt">3D Studio paveikslėlis</comment>
- <comment xml:lang="lv">3D Studio attēls</comment>
- <comment xml:lang="ms">Imej 3D Studio</comment>
- <comment xml:lang="nb">3D Studio-bilde</comment>
- <comment xml:lang="nl">3D-Studio-afbeelding</comment>
- <comment xml:lang="nn">3D Studio-bilete</comment>
- <comment xml:lang="oc">imatge 3D Studio</comment>
- <comment xml:lang="pl">Obraz 3D Studio</comment>
- <comment xml:lang="pt">imagem 3D Studio</comment>
- <comment xml:lang="pt_BR">Imagem do 3D Studio</comment>
- <comment xml:lang="ro">Imagine 3D Studio</comment>
- <comment xml:lang="ru">Сцена 3D Studio</comment>
- <comment xml:lang="sk">Obrázok 3D Studio</comment>
- <comment xml:lang="sl">Slikovna datoteka 3D Studio</comment>
- <comment xml:lang="sq">Figurë 3D Studio</comment>
- <comment xml:lang="sr">слика 3Д Студија</comment>
- <comment xml:lang="sv">3D Studio-bild</comment>
- <comment xml:lang="tr">3D Studio görüntüsü</comment>
- <comment xml:lang="uk">зображення 3D Studio</comment>
- <comment xml:lang="vi">Ảnh xuởng vẽ 3D</comment>
- <comment xml:lang="zh_CN">3D Studio 图像</comment>
<comment xml:lang="zh_TW">3D Studio 影像</comment>
+ <comment xml:lang="zh_CN">3D Studio 图像</comment>
+ <comment xml:lang="vi">Ảnh xuởng vẽ 3D</comment>
+ <comment xml:lang="uk">зображення 3D Studio</comment>
+ <comment xml:lang="tr">3D Studio görüntüsü</comment>
+ <comment xml:lang="sv">3D Studio-bild</comment>
+ <comment xml:lang="sr">слика 3Д Студија</comment>
+ <comment xml:lang="sq">figurë 3D Studio</comment>
+ <comment xml:lang="sl">Slikovna datoteka 3D Studio</comment>
+ <comment xml:lang="si">3D ස්ටුඩියෝ රූපය</comment>
+ <comment xml:lang="sk">Obrázok 3D Studio</comment>
+ <comment xml:lang="ru">Сцена 3D Studio</comment>
+ <comment xml:lang="ro">Imagine 3D Studio</comment>
+ <comment xml:lang="pt_BR">Imagem do 3D Studio</comment>
+ <comment xml:lang="pt">imagem 3D Studio</comment>
+ <comment xml:lang="pl">Obraz 3D Studio</comment>
+ <comment xml:lang="oc">imatge 3D Studio</comment>
+ <comment xml:lang="nn">3D Studio-bilete</comment>
+ <comment xml:lang="nl">3D-Studio-afbeelding</comment>
+ <comment xml:lang="nb">3D Studio-bilde</comment>
+ <comment xml:lang="ms">Imej 3D Studio</comment>
+ <comment xml:lang="lv">3D Studio attēls</comment>
+ <comment xml:lang="lt">3D Studio paveikslėlis</comment>
+ <comment xml:lang="ko">3D Studio 그림</comment>
+ <comment xml:lang="kk">3D Studio суреті</comment>
+ <comment xml:lang="ka">3D Studio-ის გამოსახულება</comment>
+ <comment xml:lang="ja">3D Studio 画像</comment>
+ <comment xml:lang="it">Immagine 3D Studio</comment>
+ <comment xml:lang="is">3D Studio mynd</comment>
+ <comment xml:lang="id">Citra 3D Studio</comment>
+ <comment xml:lang="ia">Imagine 3D Studio</comment>
+ <comment xml:lang="hu">3D Studio-kép</comment>
+ <comment xml:lang="hr">3D Studio slika</comment>
+ <comment xml:lang="he">תמונת 3D Studio</comment>
+ <comment xml:lang="gl">Imaxe de 3D Studio</comment>
+ <comment xml:lang="ga">íomhá 3D Studio</comment>
+ <comment xml:lang="fur">imagjin 3D Studio</comment>
+ <comment xml:lang="fr">image 3D Studio</comment>
+ <comment xml:lang="fo">3D Studio mynd</comment>
+ <comment xml:lang="fi">3D Studio -kuva</comment>
+ <comment xml:lang="eu">3D Studio-ko irudia</comment>
+ <comment xml:lang="es">imagen de 3D Studio</comment>
+ <comment xml:lang="eo">bildo de 3D Studio</comment>
+ <comment xml:lang="en_GB">3D Studio image</comment>
+ <comment xml:lang="el">Εικόνα 3D Studio</comment>
+ <comment xml:lang="de">3D-Studio-Bild</comment>
+ <comment xml:lang="da">3D Studio-billede</comment>
+ <comment xml:lang="cy">Delwedd "3D Studio"</comment>
+ <comment xml:lang="cs">obrázek 3D Studio</comment>
+ <comment xml:lang="ca">imatge de 3D Studio</comment>
+ <comment xml:lang="bg">Изображение — 3D Studio</comment>
+ <comment xml:lang="be@latin">Vyjava 3D Studio</comment>
+ <comment xml:lang="be">выява 3D Studio</comment>
+ <comment xml:lang="az">3D Studio rəsmi</comment>
+ <comment xml:lang="ar">صورة 3دي استديو</comment>
+ <comment xml:lang="af">3D Studio-beeld</comment>
<glob pattern="*.3ds"/>
+ <magic priority="30">
+ <match offset="0" type="big16" value="0x4d4d"/>
+ </magic>
</mime-type>
<mime-type type="image/x-applix-graphics">
<comment>Applix Graphics image</comment>
- <comment xml:lang="ar">صورة رسوميات Applix</comment>
- <comment xml:lang="be@latin">Vyjava Applix Graphics</comment>
- <comment xml:lang="bg">Изображение — Applix Graphics</comment>
- <comment xml:lang="ca">imatge d'Applix Graphics</comment>
- <comment xml:lang="cs">obrázek Applix Graphics</comment>
- <comment xml:lang="da">Applix Graphics-billede</comment>
- <comment xml:lang="de">Applix-Graphics-Bild</comment>
- <comment xml:lang="el">Εικόνα Applix Graphics</comment>
- <comment xml:lang="en_GB">Applix Graphics image</comment>
- <comment xml:lang="eo">bildo de Applix Graphics</comment>
- <comment xml:lang="es">imagen de Applix Graphics</comment>
- <comment xml:lang="eu">Applix Graphics irudia</comment>
- <comment xml:lang="fi">Applix Graphics -kuva</comment>
- <comment xml:lang="fo">Applix Graphics mynd</comment>
- <comment xml:lang="fr">image Applix Graphics</comment>
- <comment xml:lang="ga">íomhá Applix Graphics</comment>
- <comment xml:lang="gl">imaxe de Applix Graphics</comment>
- <comment xml:lang="he">תמונה של Applix Graphics</comment>
- <comment xml:lang="hr">Applix Graphics slika</comment>
- <comment xml:lang="hu">Applix Graphics-kép</comment>
- <comment xml:lang="ia">Imagine Applix Graphics</comment>
- <comment xml:lang="id">Citra Applix Graphics</comment>
- <comment xml:lang="it">Immagine Applix Graphics</comment>
- <comment xml:lang="ja">Applix Graphics 画像</comment>
- <comment xml:lang="ka">Applix Graphics-ის გამოსახულება</comment>
- <comment xml:lang="kk">Applix Graphics суреті</comment>
- <comment xml:lang="ko">Applix Graphics 그림</comment>
- <comment xml:lang="lt">Applix Graphics paveikslėlis</comment>
- <comment xml:lang="lv">Applix Graphics attēls</comment>
- <comment xml:lang="ms">Imej Applix Graphics</comment>
- <comment xml:lang="nb">Applix Graphics-dokument</comment>
- <comment xml:lang="nl">Applix Graphics-afbeelding</comment>
- <comment xml:lang="nn">Applix Graphics-dokument</comment>
- <comment xml:lang="oc">imatge Applix Graphics</comment>
- <comment xml:lang="pl">Obraz Applix Graphics</comment>
- <comment xml:lang="pt">imagem Applix Graphics</comment>
- <comment xml:lang="pt_BR">Imagem do Applix Graphics</comment>
- <comment xml:lang="ro">Imagine Applix Graphics</comment>
- <comment xml:lang="ru">Изображение Applix Graphics</comment>
- <comment xml:lang="sk">Obrázok Applix Graphics</comment>
- <comment xml:lang="sl">Slikovna datoteka Applix Graphics</comment>
- <comment xml:lang="sq">Figurë Applix Graphics</comment>
- <comment xml:lang="sr">Апликсов графички документ</comment>
- <comment xml:lang="sv">Applix Graphics-bild</comment>
- <comment xml:lang="tr">Applix Graphics görüntüsü</comment>
- <comment xml:lang="uk">зображення Applix Graphics</comment>
- <comment xml:lang="vi">Ảnh Applix Graphics</comment>
- <comment xml:lang="zh_CN">Applix Graphics 图像</comment>
<comment xml:lang="zh_TW">Applix Graphics 影像</comment>
- <magic priority="50">
- <match value="*BEGIN" type="string" offset="0">
- <match value="GRAPHICS" type="string" offset="7"/>
+ <comment xml:lang="zh_CN">Applix Graphics 图像</comment>
+ <comment xml:lang="vi">Ảnh Applix Graphics</comment>
+ <comment xml:lang="uk">зображення Applix Graphics</comment>
+ <comment xml:lang="tr">Applix Graphics görüntüsü</comment>
+ <comment xml:lang="sv">Applix Graphics-bild</comment>
+ <comment xml:lang="sr">Апликсов графички документ</comment>
+ <comment xml:lang="sq">figurë Applix Graphics</comment>
+ <comment xml:lang="sl">Slikovna datoteka Applix Graphics</comment>
+ <comment xml:lang="si">Applix Graphics රූපය</comment>
+ <comment xml:lang="sk">Obrázok Applix Graphics</comment>
+ <comment xml:lang="ru">Изображение Applix Graphics</comment>
+ <comment xml:lang="ro">Imagine Applix Graphics</comment>
+ <comment xml:lang="pt_BR">Imagem do Applix Graphics</comment>
+ <comment xml:lang="pt">imagem Applix Graphics</comment>
+ <comment xml:lang="pl">Obraz Applix Graphics</comment>
+ <comment xml:lang="oc">imatge Applix Graphics</comment>
+ <comment xml:lang="nn">Applix Graphics-dokument</comment>
+ <comment xml:lang="nl">Applix Graphics-afbeelding</comment>
+ <comment xml:lang="nb">Applix Graphics-dokument</comment>
+ <comment xml:lang="ms">Imej Applix Graphics</comment>
+ <comment xml:lang="lv">Applix Graphics attēls</comment>
+ <comment xml:lang="lt">Applix Graphics paveikslėlis</comment>
+ <comment xml:lang="ko">Applix Graphics 그림</comment>
+ <comment xml:lang="kk">Applix Graphics суреті</comment>
+ <comment xml:lang="ka">Applix Graphics-ის გამოსახულება</comment>
+ <comment xml:lang="ja">Applix Graphics 画像</comment>
+ <comment xml:lang="it">Immagine Applix Graphics</comment>
+ <comment xml:lang="is">Applix Graphics mynd</comment>
+ <comment xml:lang="id">Citra Applix Graphics</comment>
+ <comment xml:lang="ia">Imagine Applix Graphics</comment>
+ <comment xml:lang="hu">Applix Graphics-kép</comment>
+ <comment xml:lang="hr">Applix Graphics slika</comment>
+ <comment xml:lang="he">תמונה של Applix Graphics</comment>
+ <comment xml:lang="gl">imaxe de Applix Graphics</comment>
+ <comment xml:lang="ga">íomhá Applix Graphics</comment>
+ <comment xml:lang="fur">imagjin Applix Graphics</comment>
+ <comment xml:lang="fr">image Applix Graphics</comment>
+ <comment xml:lang="fo">Applix Graphics mynd</comment>
+ <comment xml:lang="fi">Applix Graphics -kuva</comment>
+ <comment xml:lang="eu">Applix Graphics irudia</comment>
+ <comment xml:lang="es">imagen de Applix Graphics</comment>
+ <comment xml:lang="eo">bildo de Applix Graphics</comment>
+ <comment xml:lang="en_GB">Applix Graphics image</comment>
+ <comment xml:lang="el">Εικόνα Applix Graphics</comment>
+ <comment xml:lang="de">Applix-Graphics-Bild</comment>
+ <comment xml:lang="da">Applix Graphics-billede</comment>
+ <comment xml:lang="cs">obrázek Applix Graphics</comment>
+ <comment xml:lang="ca">imatge d'Applix Graphics</comment>
+ <comment xml:lang="bg">Изображение — Applix Graphics</comment>
+ <comment xml:lang="be@latin">Vyjava Applix Graphics</comment>
+ <comment xml:lang="be">выява Applix Graphics</comment>
+ <comment xml:lang="ar">صورة رسوميات Applix</comment>
+ <comment xml:lang="af">Applix Graphics-beeld</comment>
+ <magic>
+ <match type="string" value="*BEGIN" offset="0">
+ <match type="string" value="GRAPHICS" offset="7"/>
</match>
</magic>
<glob pattern="*.ag"/>
</mime-type>
<mime-type type="image/x-bzeps">
- <comment>EPS image (bzip-compressed)</comment>
- <comment xml:lang="ar">صورة EPS (مضغوط-bzip)</comment>
- <comment xml:lang="be@latin">Vyjava EPS (bzip-skampresavanaja)</comment>
- <comment xml:lang="bg">Изображение — EPS, компресирано с bzip</comment>
- <comment xml:lang="ca">imatge EPS (amb compressió bzip)</comment>
- <comment xml:lang="cs">obrázek EPS (komprimovaný pomocí bzip)</comment>
- <comment xml:lang="da">EPS-billede (bzip-komprimeret)</comment>
- <comment xml:lang="de">EPS-Bild (bzip-komprimiert)</comment>
- <comment xml:lang="el">Εικόνα EPS (συμπιεσμένη bzip)</comment>
- <comment xml:lang="en_GB">EPS image (bzip-compressed)</comment>
- <comment xml:lang="es">imagen EPS (comprimida con bzip)</comment>
- <comment xml:lang="eu">EPS irudia (bzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">EPS-kuva (bzip-pakattu)</comment>
- <comment xml:lang="fo">EPS mynd (bzip-stappað)</comment>
- <comment xml:lang="fr">image EPS (compressée bzip)</comment>
- <comment xml:lang="ga">íomhá EPS (comhbhrúite le bzip)</comment>
- <comment xml:lang="gl">imaxe EPS (comprimida con bzip)</comment>
- <comment xml:lang="he">תמונת EPS (מכווץ בbzip)</comment>
- <comment xml:lang="hr">EPS slika (bzip sažeta)</comment>
- <comment xml:lang="hu">EPS kép (bzip-tömörítésű)</comment>
- <comment xml:lang="ia">Imagine EPS (comprimite con bzip)</comment>
- <comment xml:lang="id">Citra EPS (terkompresi bzip)</comment>
- <comment xml:lang="it">Immagine EPS (compressa con bzip)</comment>
- <comment xml:lang="ja">EPS 画像 (bzip 圧縮)</comment>
- <comment xml:lang="ka">EPS გამოსახულება (bzip-ით შეკუმშული)</comment>
- <comment xml:lang="kk">EPS суреті (bzip-пен сығылған)</comment>
- <comment xml:lang="ko">EPS 그림(BZIP 압축)</comment>
- <comment xml:lang="lt">EPS paveikslėlis (suglaudintas su bzip)</comment>
- <comment xml:lang="lv">EPS attēls (saspiests ar bzip)</comment>
- <comment xml:lang="nb">EPS-bilde (bzip-komprimert)</comment>
- <comment xml:lang="nl">EPS-afbeelding (ingepakt met bzip)</comment>
- <comment xml:lang="nn">EPS-bilete (pakka med bzip)</comment>
- <comment xml:lang="oc">imatge EPS (compressat bzip)</comment>
- <comment xml:lang="pl">Obraz EPS (kompresja bzip)</comment>
- <comment xml:lang="pt">imagem EPS (compressão bzip)</comment>
- <comment xml:lang="pt_BR">Imagem EPS (compactada com bzip)</comment>
- <comment xml:lang="ro">Imagine EPS (compresie bzip)</comment>
- <comment xml:lang="ru">Изображение EPS (сжатое bzip)</comment>
- <comment xml:lang="sk">Obrázok EPS (komprimovaný pomocou bzip)</comment>
- <comment xml:lang="sl">Slikovna datoteka EPS (stisnjena z bzip)</comment>
- <comment xml:lang="sq">Figurë EPS (e kompresuar me bzip)</comment>
- <comment xml:lang="sr">ЕПС слика (запакована бзип-ом)</comment>
- <comment xml:lang="sv">EPS-bild (bzip-komprimerad)</comment>
- <comment xml:lang="tr">EPS görüntüsü (bzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">зображення EPS (стиснене bzip)</comment>
- <comment xml:lang="vi">Ảnh EPS (đã nén bzip)</comment>
- <comment xml:lang="zh_CN">EPS 图像(bzip 压缩)</comment>
- <comment xml:lang="zh_TW">EPS 影像 (bzip 格式壓縮)</comment>
- <sub-class-of type="application/x-bzip"/>
+ <comment>EPS image (bzip2-compressed)</comment>
+ <comment xml:lang="uk">зображення EPS (стиснений bzip2)</comment>
+ <comment xml:lang="sv">EPS-bild (bzip2-komprimerad)</comment>
+ <comment xml:lang="ru">Изображение EPS (сжатое bzip2)</comment>
+ <comment xml:lang="pl">Obraz EPS (kompresja bzip2)</comment>
+ <comment xml:lang="es">imagen EPS (comprimida con BZIP2)</comment>
+ <comment xml:lang="de">EPS-Bild (bzip2-komprimiert)</comment>
+ <sub-class-of type="application/x-bzip2"/>
<glob pattern="*.eps.bz2"/>
<glob pattern="*.epsi.bz2"/>
<glob pattern="*.epsf.bz2"/>
</mime-type>
<mime-type type="image/x-cmu-raster">
<comment>CMU raster image</comment>
- <comment xml:lang="ar">صورة CMU نقطية</comment>
- <comment xml:lang="az">CMU raster rəsmi</comment>
- <comment xml:lang="be@latin">Rastravaja vyjava CMU</comment>
- <comment xml:lang="bg">Изображение — CMU raster</comment>
- <comment xml:lang="ca">imatge ràster CMU</comment>
- <comment xml:lang="cs">rastrový obrázek CMU</comment>
- <comment xml:lang="cy">Delwedd raster CMU</comment>
- <comment xml:lang="da">CMU-rasterbillede</comment>
- <comment xml:lang="de">CMU-Rasterbild</comment>
- <comment xml:lang="el">Εικόνα ράστερ CMU</comment>
- <comment xml:lang="en_GB">CMU raster image</comment>
- <comment xml:lang="eo">rastruma bildo de CMU</comment>
- <comment xml:lang="es">imagen ráster CMU</comment>
- <comment xml:lang="eu">CMU bilbe-irudia</comment>
- <comment xml:lang="fi">CMU-rasterikuva</comment>
- <comment xml:lang="fo">CMU raster mynd</comment>
- <comment xml:lang="fr">image raster CMU</comment>
- <comment xml:lang="ga">íomhá rastar CMU</comment>
- <comment xml:lang="gl">imaxe raster CMU</comment>
- <comment xml:lang="he">תמונת סריקה CMU</comment>
- <comment xml:lang="hr">CMU iscrtana slika</comment>
- <comment xml:lang="hu">CMU-raszterkép</comment>
- <comment xml:lang="ia">Imagine raster CMU</comment>
- <comment xml:lang="id">Citra raster CMU</comment>
- <comment xml:lang="it">Immagine raster CMU</comment>
- <comment xml:lang="ja">CMU ラスター画像</comment>
- <comment xml:lang="ka">CMU-ის რასტრული გამოსახულება</comment>
- <comment xml:lang="kk">CMU растрлық суреті</comment>
- <comment xml:lang="ko">CMU 래스터 그림</comment>
- <comment xml:lang="lt">CMU rastrinis paveikslėlis</comment>
- <comment xml:lang="lv">CMU rastra attēls</comment>
- <comment xml:lang="ms">Imej raster CMU</comment>
- <comment xml:lang="nb">CMU-rasterbilde</comment>
- <comment xml:lang="nl">CMU-rasterafbeelding</comment>
- <comment xml:lang="nn">CMU rasterbilete</comment>
- <comment xml:lang="oc">imatge raster CMU</comment>
- <comment xml:lang="pl">Obraz rastrowy CMU</comment>
- <comment xml:lang="pt">imagem raster CMU</comment>
- <comment xml:lang="pt_BR">Imagem raster CMU</comment>
- <comment xml:lang="ro">Imagine raster CMU</comment>
- <comment xml:lang="ru">Растровое изображение CMU</comment>
- <comment xml:lang="sk">Rastrový obrázok CMU</comment>
- <comment xml:lang="sl">Slikovna rastrska datoteka CMU</comment>
- <comment xml:lang="sq">Figurë raster CMU</comment>
- <comment xml:lang="sr">ЦМУ растерска слика</comment>
- <comment xml:lang="sv">CMU-rasterbild</comment>
- <comment xml:lang="tr">CMU tarama görüntüsü</comment>
- <comment xml:lang="uk">растрове зображення CMU</comment>
- <comment xml:lang="vi">Ảnh mành CMU</comment>
- <comment xml:lang="zh_CN">CMU 光栅图像</comment>
<comment xml:lang="zh_TW">CMU raster 影像</comment>
+ <comment xml:lang="zh_CN">CMU 光栅图像</comment>
+ <comment xml:lang="vi">Ảnh mành CMU</comment>
+ <comment xml:lang="uk">растрове зображення CMU</comment>
+ <comment xml:lang="tr">CMU tarama görüntüsü</comment>
+ <comment xml:lang="sv">CMU-rasterbild</comment>
+ <comment xml:lang="sr">ЦМУ растерска слика</comment>
+ <comment xml:lang="sq">figurë raster CMU</comment>
+ <comment xml:lang="sl">Slikovna rastrska datoteka CMU</comment>
+ <comment xml:lang="si">CMU රාස්ටර් රූපය</comment>
+ <comment xml:lang="sk">Rastrový obrázok CMU</comment>
+ <comment xml:lang="ru">Растровое изображение CMU</comment>
+ <comment xml:lang="ro">Imagine raster CMU</comment>
+ <comment xml:lang="pt_BR">Imagem raster CMU</comment>
+ <comment xml:lang="pt">imagem raster CMU</comment>
+ <comment xml:lang="pl">Obraz rastrowy CMU</comment>
+ <comment xml:lang="oc">imatge raster CMU</comment>
+ <comment xml:lang="nn">CMU rasterbilete</comment>
+ <comment xml:lang="nl">CMU-rasterafbeelding</comment>
+ <comment xml:lang="nb">CMU-rasterbilde</comment>
+ <comment xml:lang="ms">Imej raster CMU</comment>
+ <comment xml:lang="lv">CMU rastra attēls</comment>
+ <comment xml:lang="lt">CMU rastrinis paveikslėlis</comment>
+ <comment xml:lang="ko">CMU 래스터 그림</comment>
+ <comment xml:lang="kk">CMU растрлық суреті</comment>
+ <comment xml:lang="ka">CMU-ის რასტრული გამოსახულება</comment>
+ <comment xml:lang="ja">CMU ラスター画像</comment>
+ <comment xml:lang="it">Immagine raster CMU</comment>
+ <comment xml:lang="is">CMU rastamynd</comment>
+ <comment xml:lang="id">Citra raster CMU</comment>
+ <comment xml:lang="ia">Imagine raster CMU</comment>
+ <comment xml:lang="hu">CMU-raszterkép</comment>
+ <comment xml:lang="hr">CMU iscrtana slika</comment>
+ <comment xml:lang="he">תמונת סריקה CMU</comment>
+ <comment xml:lang="gl">imaxe raster CMU</comment>
+ <comment xml:lang="ga">íomhá rastar CMU</comment>
+ <comment xml:lang="fur">imagjin raster CMU</comment>
+ <comment xml:lang="fr">image raster CMU</comment>
+ <comment xml:lang="fo">CMU raster mynd</comment>
+ <comment xml:lang="fi">CMU-rasterikuva</comment>
+ <comment xml:lang="eu">CMU bilbe-irudia</comment>
+ <comment xml:lang="es">imagen ráster CMU</comment>
+ <comment xml:lang="eo">rastruma bildo de CMU</comment>
+ <comment xml:lang="en_GB">CMU raster image</comment>
+ <comment xml:lang="el">Εικόνα ράστερ CMU</comment>
+ <comment xml:lang="de">CMU-Rasterbild</comment>
+ <comment xml:lang="da">CMU-rasterbillede</comment>
+ <comment xml:lang="cy">Delwedd raster CMU</comment>
+ <comment xml:lang="cs">rastrový obrázek CMU</comment>
+ <comment xml:lang="ca">imatge ràster CMU</comment>
+ <comment xml:lang="bg">Изображение — CMU raster</comment>
+ <comment xml:lang="be@latin">Rastravaja vyjava CMU</comment>
+ <comment xml:lang="be">растравая выява CMU</comment>
+ <comment xml:lang="az">CMU raster rəsmi</comment>
+ <comment xml:lang="ar">صورة CMU نقطية</comment>
+ <comment xml:lang="af">CMU-roosterbeeld</comment>
<glob pattern="*.ras"/>
</mime-type>
<mime-type type="image/x-compressed-xcf">
- <comment>compressed GIMP image</comment>
- <comment xml:lang="ar">صورة GIMP مضغوطة</comment>
- <comment xml:lang="be@latin">skampresavanaja vyjava GIMP</comment>
- <comment xml:lang="bg">Изображение — GIMP, компресирано</comment>
- <comment xml:lang="ca">imatge GIMP amb compressió</comment>
- <comment xml:lang="cs">komprimovaný obrázek GIMP</comment>
- <comment xml:lang="da">komprimeret GIMP-billede</comment>
- <comment xml:lang="de">Komprimiertes GIMP-Bild</comment>
- <comment xml:lang="el">Συμπιεσμένη εικόνα GIMP</comment>
- <comment xml:lang="en_GB">compressed GIMP image</comment>
- <comment xml:lang="es">imagen GIMP comprimida</comment>
- <comment xml:lang="eu">konprimitutako GIMP irudia</comment>
- <comment xml:lang="fi">pakattu GIMP-kuva</comment>
- <comment xml:lang="fo">stappað GIMP mynd</comment>
- <comment xml:lang="fr">image GIMP compressée</comment>
- <comment xml:lang="ga">íomhá GIMP comhbhrúite</comment>
- <comment xml:lang="gl">imaxe de GIMP comprimida</comment>
- <comment xml:lang="he">תמונת GIMP מכווצת</comment>
- <comment xml:lang="hr">Sažeta GIMP slika</comment>
- <comment xml:lang="hu">tömörített GIMP kép</comment>
- <comment xml:lang="ia">Imagine GIMP comprimite</comment>
- <comment xml:lang="id">Citra GIMP terkompresi</comment>
- <comment xml:lang="it">Immagine GIMP compressa</comment>
- <comment xml:lang="ja">圧縮 GIMP 画像</comment>
- <comment xml:lang="kk">сығылған GIMP суреті</comment>
- <comment xml:lang="ko">압축된 GIMP 그림</comment>
- <comment xml:lang="lt">suglaudintas GIMP paveikslėlis</comment>
- <comment xml:lang="lv">saspiests GIMP attēls</comment>
- <comment xml:lang="nb">komprimert GIMP-bilde</comment>
- <comment xml:lang="nl">ingepakte GIMP-afbeelding</comment>
- <comment xml:lang="nn">komprimert GIMP-bilete</comment>
- <comment xml:lang="oc">imatge GIMP compressat</comment>
- <comment xml:lang="pl">Skompresowany obraz GIMP</comment>
- <comment xml:lang="pt">imagem GIMP comprimida</comment>
- <comment xml:lang="pt_BR">Imagem do GIMP compactada</comment>
- <comment xml:lang="ro">imagine comprimată GIMP</comment>
- <comment xml:lang="ru">Сжатое изображение GIMP</comment>
- <comment xml:lang="sk">Komprimovaný obrázok GIMP</comment>
- <comment xml:lang="sl">Slikovna datoteka GIMP (stisnjena)</comment>
- <comment xml:lang="sq">Figurë GIMP e kompresuar</comment>
- <comment xml:lang="sr">запакована ГИМП слика</comment>
- <comment xml:lang="sv">komprimerad GIMP-bild</comment>
- <comment xml:lang="tr">sıkıştırılmış GIMP görüntüsü</comment>
+ <comment>Compressed GIMP image</comment>
<comment xml:lang="uk">стиснене зображення GIMP</comment>
- <comment xml:lang="vi">ảnh GIMP đã nén</comment>
- <comment xml:lang="zh_CN">压缩的 GIMP 图像</comment>
- <comment xml:lang="zh_TW">壓縮版 GIMP 影像</comment>
+ <comment xml:lang="sv">Komprimerad GIMP-bild</comment>
+ <comment xml:lang="ru">Сжатое изображение GIMP</comment>
+ <comment xml:lang="pl">Skompresowany obraz GIMP</comment>
+ <comment xml:lang="ja">GIMP画像(圧縮)</comment>
+ <comment xml:lang="it">Immagine GIMP compressa</comment>
+ <comment xml:lang="gl">Imaxe GIMP comprimida</comment>
+ <comment xml:lang="eu">GIMP irudi konprimatua</comment>
+ <comment xml:lang="es">imagen de GIMP comprimida</comment>
+ <comment xml:lang="de">Komprimiertes GIMP-Bild</comment>
+ <comment xml:lang="be">сціснутая выява GIMP</comment>
<glob pattern="*.xcf.gz"/>
<glob pattern="*.xcf.bz2"/>
</mime-type>
<mime-type type="application/dicom">
<comment>DICOM image</comment>
- <comment xml:lang="ar">صورة DICOM</comment>
- <comment xml:lang="be@latin">Vyjava DICOM</comment>
- <comment xml:lang="bg">Изображение — DICOM</comment>
- <comment xml:lang="ca">imatge DICOM</comment>
- <comment xml:lang="cs">obrázek DICOM</comment>
- <comment xml:lang="da">DICOM-billede</comment>
- <comment xml:lang="de">DICOM-Bild</comment>
- <comment xml:lang="el">Εικόνα DICOM</comment>
- <comment xml:lang="en_GB">DICOM image</comment>
- <comment xml:lang="eo">DICOM-bildo</comment>
- <comment xml:lang="es">imagen DICOM</comment>
- <comment xml:lang="eu">DICOM irudia</comment>
- <comment xml:lang="fi">DICOM-kuva</comment>
- <comment xml:lang="fo">DICOM mynd</comment>
- <comment xml:lang="fr">image DICOM</comment>
- <comment xml:lang="ga">íomhá DICOM</comment>
- <comment xml:lang="gl">imaxe DICOM</comment>
- <comment xml:lang="he">תמונת DICOM</comment>
- <comment xml:lang="hr">DICOM slika</comment>
- <comment xml:lang="hu">DICOM kép</comment>
- <comment xml:lang="ia">Imagine DICOM</comment>
- <comment xml:lang="id">Citra DICOM</comment>
- <comment xml:lang="it">Immagine DICOM</comment>
- <comment xml:lang="ja">DICOM 画像</comment>
- <comment xml:lang="ka">DICOM გამოსახულება</comment>
- <comment xml:lang="kk">DICOM суреті</comment>
- <comment xml:lang="ko">DICOM 그림</comment>
- <comment xml:lang="lt">DICOM paveikslėlis</comment>
- <comment xml:lang="lv">DICOM attēls</comment>
- <comment xml:lang="nb">DICOM-bilde</comment>
- <comment xml:lang="nl">DICOM-afbeelding</comment>
- <comment xml:lang="nn">DICOM-bilete</comment>
- <comment xml:lang="oc">imatge DICOM</comment>
- <comment xml:lang="pl">Obraz DICOM</comment>
- <comment xml:lang="pt">imagem DICOM</comment>
- <comment xml:lang="pt_BR">Imagem DICOM</comment>
- <comment xml:lang="ro">Imagine DICOM</comment>
- <comment xml:lang="ru">Изображение DICOM</comment>
- <comment xml:lang="sk">Obrázok DICOM</comment>
- <comment xml:lang="sl">Slikovna datoteka DICOM</comment>
- <comment xml:lang="sq">Figurë DICOM</comment>
- <comment xml:lang="sr">ДИКОМ слика</comment>
- <comment xml:lang="sv">DICOM-bild</comment>
- <comment xml:lang="tr">DICOM görüntüsü</comment>
- <comment xml:lang="uk">зображення DICOM</comment>
- <comment xml:lang="vi">Ảnh DICOM</comment>
- <comment xml:lang="zh_CN">DICOM 图像</comment>
<comment xml:lang="zh_TW">DICOM 影像</comment>
+ <comment xml:lang="zh_CN">DICOM 图像</comment>
+ <comment xml:lang="vi">Ảnh DICOM</comment>
+ <comment xml:lang="uk">зображення DICOM</comment>
+ <comment xml:lang="tr">DICOM görüntüsü</comment>
+ <comment xml:lang="sv">DICOM-bild</comment>
+ <comment xml:lang="sr">ДИКОМ слика</comment>
+ <comment xml:lang="sq">figurë DICOM</comment>
+ <comment xml:lang="sl">Slikovna datoteka DICOM</comment>
+ <comment xml:lang="si">DICOM රූපය</comment>
+ <comment xml:lang="sk">Obrázok DICOM</comment>
+ <comment xml:lang="ru">Изображение DICOM</comment>
+ <comment xml:lang="ro">Imagine DICOM</comment>
+ <comment xml:lang="pt_BR">Imagem DICOM</comment>
+ <comment xml:lang="pt">imagem DICOM</comment>
+ <comment xml:lang="pl">Obraz DICOM</comment>
+ <comment xml:lang="oc">imatge DICOM</comment>
+ <comment xml:lang="nn">DICOM-bilete</comment>
+ <comment xml:lang="nl">DICOM-afbeelding</comment>
+ <comment xml:lang="nb">DICOM-bilde</comment>
+ <comment xml:lang="lv">DICOM attēls</comment>
+ <comment xml:lang="lt">DICOM paveikslėlis</comment>
+ <comment xml:lang="ko">DICOM 그림</comment>
+ <comment xml:lang="kk">DICOM суреті</comment>
+ <comment xml:lang="ka">DICOM გამოსახულება</comment>
+ <comment xml:lang="ja">DICOM 画像</comment>
+ <comment xml:lang="it">Immagine DICOM</comment>
+ <comment xml:lang="is">DICOM mynd</comment>
+ <comment xml:lang="id">Citra DICOM</comment>
+ <comment xml:lang="ia">Imagine DICOM</comment>
+ <comment xml:lang="hu">DICOM kép</comment>
+ <comment xml:lang="hr">DICOM slika</comment>
+ <comment xml:lang="he">תמונת DICOM</comment>
+ <comment xml:lang="gl">imaxe DICOM</comment>
+ <comment xml:lang="ga">íomhá DICOM</comment>
+ <comment xml:lang="fur">imagjin DICOM</comment>
+ <comment xml:lang="fr">image DICOM</comment>
+ <comment xml:lang="fo">DICOM mynd</comment>
+ <comment xml:lang="fi">DICOM-kuva</comment>
+ <comment xml:lang="eu">DICOM irudia</comment>
+ <comment xml:lang="es">imagen DICOM</comment>
+ <comment xml:lang="eo">DICOM-bildo</comment>
+ <comment xml:lang="en_GB">DICOM image</comment>
+ <comment xml:lang="el">Εικόνα DICOM</comment>
+ <comment xml:lang="de">DICOM-Bild</comment>
+ <comment xml:lang="da">DICOM-billede</comment>
+ <comment xml:lang="cs">obrázek DICOM</comment>
+ <comment xml:lang="ca">imatge DICOM</comment>
+ <comment xml:lang="bg">Изображение — DICOM</comment>
+ <comment xml:lang="be@latin">Vyjava DICOM</comment>
+ <comment xml:lang="be">выява DICOM</comment>
+ <comment xml:lang="ar">صورة DICOM</comment>
+ <comment xml:lang="af">DICOM-beeld</comment>
<acronym>DICOM</acronym>
<expanded-acronym>Digital Imaging and Communications in Medicine</expanded-acronym>
<generic-icon name="image-x-generic"/>
<glob pattern="dicomdir"/>
<glob pattern="*.dcm"/>
- <magic priority="50">
- <match value="DICM" type="string" offset="128"/>
+ <magic>
+ <match type="string" value="DICM" offset="128"/>
</magic>
</mime-type>
<mime-type type="application/x-docbook+xml">
<comment>DocBook document</comment>
- <comment xml:lang="ar">مستند DocBook</comment>
- <comment xml:lang="ast">Documentu DocBook</comment>
- <comment xml:lang="be@latin">Dakument DocBook</comment>
- <comment xml:lang="bg">Документ — DocBook</comment>
- <comment xml:lang="ca">document DocBook</comment>
- <comment xml:lang="cs">dokument DocBook</comment>
- <comment xml:lang="da">DocBook-dokument</comment>
- <comment xml:lang="de">DocBook-Dokument</comment>
- <comment xml:lang="el">Έγγραφο DocBook</comment>
- <comment xml:lang="en_GB">DocBook document</comment>
- <comment xml:lang="eo">DocBook-dokumento</comment>
- <comment xml:lang="es">documento DocBook</comment>
- <comment xml:lang="eu">DocBook dokumentua</comment>
- <comment xml:lang="fi">DocBook-asiakirja</comment>
- <comment xml:lang="fo">DocBook skjal</comment>
- <comment xml:lang="fr">document DocBook</comment>
- <comment xml:lang="ga">cáipéis DocBook</comment>
- <comment xml:lang="gl">documento de DocBook</comment>
- <comment xml:lang="he">מסמך DocBook</comment>
- <comment xml:lang="hr">DocBook dokument</comment>
- <comment xml:lang="hu">DocBook dokumentum</comment>
- <comment xml:lang="ia">Documento DocBook</comment>
- <comment xml:lang="id">Dokumen DocBook</comment>
- <comment xml:lang="it">Documento DocBook</comment>
- <comment xml:lang="ja">DocBook ドキュメント</comment>
- <comment xml:lang="ka">DocBook-ის დოკუმენტი</comment>
- <comment xml:lang="kk">DocBook құжаты</comment>
- <comment xml:lang="ko">DocBook 문서</comment>
- <comment xml:lang="lt">DocBook dokumentas</comment>
- <comment xml:lang="lv">DocBook dokuments</comment>
- <comment xml:lang="nb">DocBook-dokument</comment>
- <comment xml:lang="nl">DocBook-document</comment>
- <comment xml:lang="nn">DocBook-dokument</comment>
- <comment xml:lang="oc">document DocBook</comment>
- <comment xml:lang="pl">Dokument DocBook</comment>
- <comment xml:lang="pt">documento DocBook</comment>
- <comment xml:lang="pt_BR">Documento DocBook</comment>
- <comment xml:lang="ro">Document DocBook</comment>
- <comment xml:lang="ru">Документ DocBook</comment>
- <comment xml:lang="sk">Dokument DocBook</comment>
- <comment xml:lang="sl">Dokument DocBook</comment>
- <comment xml:lang="sq">Dokument DocBook</comment>
- <comment xml:lang="sr">Док Бук документ</comment>
- <comment xml:lang="sv">DocBook-dokument</comment>
- <comment xml:lang="tr">DocBook belgesi</comment>
- <comment xml:lang="uk">документ DocBook</comment>
- <comment xml:lang="vi">Tài liệu DocBook</comment>
- <comment xml:lang="zh_CN">DocBook 文档</comment>
<comment xml:lang="zh_TW">DocBook 文件</comment>
+ <comment xml:lang="zh_CN">DocBook 文档</comment>
+ <comment xml:lang="vi">Tài liệu DocBook</comment>
+ <comment xml:lang="uk">документ DocBook</comment>
+ <comment xml:lang="tr">DocBook belgesi</comment>
+ <comment xml:lang="sv">DocBook-dokument</comment>
+ <comment xml:lang="sr">Док Бук документ</comment>
+ <comment xml:lang="sq">dokument DocBook</comment>
+ <comment xml:lang="sl">Dokument DocBook</comment>
+ <comment xml:lang="si">DocBook ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument DocBook</comment>
+ <comment xml:lang="ru">Документ DocBook</comment>
+ <comment xml:lang="ro">Document DocBook</comment>
+ <comment xml:lang="pt_BR">Documento DocBook</comment>
+ <comment xml:lang="pt">documento DocBook</comment>
+ <comment xml:lang="pl">Dokument DocBook</comment>
+ <comment xml:lang="oc">document DocBook</comment>
+ <comment xml:lang="nn">DocBook-dokument</comment>
+ <comment xml:lang="nl">DocBook-document</comment>
+ <comment xml:lang="nb">DocBook-dokument</comment>
+ <comment xml:lang="lv">DocBook dokuments</comment>
+ <comment xml:lang="lt">DocBook dokumentas</comment>
+ <comment xml:lang="ko">DocBook 문서</comment>
+ <comment xml:lang="kk">DocBook құжаты</comment>
+ <comment xml:lang="ka">DocBook-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">DocBook ドキュメント</comment>
+ <comment xml:lang="it">Documento DocBook</comment>
+ <comment xml:lang="is">DocBook skjal</comment>
+ <comment xml:lang="id">Dokumen DocBook</comment>
+ <comment xml:lang="ia">Documento DocBook</comment>
+ <comment xml:lang="hu">DocBook dokumentum</comment>
+ <comment xml:lang="hr">DocBook dokument</comment>
+ <comment xml:lang="he">מסמך DocBook</comment>
+ <comment xml:lang="gl">documento de DocBook</comment>
+ <comment xml:lang="ga">cáipéis DocBook</comment>
+ <comment xml:lang="fur">document DocBook</comment>
+ <comment xml:lang="fr">document DocBook</comment>
+ <comment xml:lang="fo">DocBook skjal</comment>
+ <comment xml:lang="fi">DocBook-asiakirja</comment>
+ <comment xml:lang="eu">DocBook dokumentua</comment>
+ <comment xml:lang="es">documento DocBook</comment>
+ <comment xml:lang="eo">DocBook-dokumento</comment>
+ <comment xml:lang="en_GB">DocBook document</comment>
+ <comment xml:lang="el">Έγγραφο DocBook</comment>
+ <comment xml:lang="de">DocBook-Dokument</comment>
+ <comment xml:lang="da">DocBook-dokument</comment>
+ <comment xml:lang="cs">dokument DocBook</comment>
+ <comment xml:lang="ca">document DocBook</comment>
+ <comment xml:lang="bg">Документ — DocBook</comment>
+ <comment xml:lang="be@latin">Dakument DocBook</comment>
+ <comment xml:lang="be">дакумент DocBook</comment>
+ <comment xml:lang="ast">Documentu DocBook</comment>
+ <comment xml:lang="ar">مستند DocBook</comment>
+ <comment xml:lang="af">DocBook-dokument</comment>
<sub-class-of type="application/xml"/>
<generic-icon name="x-office-document"/>
<magic priority="90">
@@ -27867,119 +30384,129 @@
</mime-type>
<mime-type type="image/x-dib">
<comment>DIB image</comment>
- <comment xml:lang="ar">صورة DIB</comment>
- <comment xml:lang="be@latin">Vyjava DIB</comment>
- <comment xml:lang="bg">Изображение — DIB</comment>
- <comment xml:lang="ca">imatge DIB</comment>
- <comment xml:lang="cs">obrázek DIB</comment>
- <comment xml:lang="da">DIB-billede</comment>
- <comment xml:lang="de">DIB-Bild</comment>
- <comment xml:lang="el">Εικόνα DIB</comment>
- <comment xml:lang="en_GB">DIB image</comment>
- <comment xml:lang="eo">DIB-bildo</comment>
- <comment xml:lang="es">imagen DIB</comment>
- <comment xml:lang="eu">DIB irudia</comment>
- <comment xml:lang="fi">DIB-kuva</comment>
- <comment xml:lang="fo">DIB mynd</comment>
- <comment xml:lang="fr">image DIB</comment>
- <comment xml:lang="ga">íomhá DIB</comment>
- <comment xml:lang="gl">imaxe DIB</comment>
- <comment xml:lang="he">תמונת DIB</comment>
- <comment xml:lang="hr">DIB slika</comment>
- <comment xml:lang="hu">DIB kép</comment>
- <comment xml:lang="ia">Imagine DIB</comment>
- <comment xml:lang="id">Citra DIB</comment>
- <comment xml:lang="it">Immagine DIB</comment>
- <comment xml:lang="ja">DIB 画像</comment>
- <comment xml:lang="ka">DIB გამოსახულება</comment>
- <comment xml:lang="kk">DIB суреті</comment>
- <comment xml:lang="ko">DIB 그림</comment>
- <comment xml:lang="lt">DIB paveikslėlis</comment>
- <comment xml:lang="lv">DIB attēls</comment>
- <comment xml:lang="nb">DIB-bilde</comment>
- <comment xml:lang="nl">DIB-afbeelding</comment>
- <comment xml:lang="nn">DIB-bilete</comment>
- <comment xml:lang="oc">imatge DIB</comment>
- <comment xml:lang="pl">Obraz DIB</comment>
- <comment xml:lang="pt">imagem DIB</comment>
- <comment xml:lang="pt_BR">Imagem DIB</comment>
- <comment xml:lang="ro">Imagine DIB</comment>
- <comment xml:lang="ru">Изображение DIB</comment>
- <comment xml:lang="sk">Obrázok DIB</comment>
- <comment xml:lang="sl">Slikovna datoteka DIB</comment>
- <comment xml:lang="sq">Figurë DIB</comment>
- <comment xml:lang="sr">ДИБ слика</comment>
- <comment xml:lang="sv">DIB-bild</comment>
- <comment xml:lang="tr">DIB görüntüsü</comment>
- <comment xml:lang="uk">зображення DIB</comment>
- <comment xml:lang="vi">Ảnh DIB</comment>
- <comment xml:lang="zh_CN">DIB 图像</comment>
<comment xml:lang="zh_TW">DIB 影像</comment>
+ <comment xml:lang="zh_CN">DIB 图像</comment>
+ <comment xml:lang="vi">Ảnh DIB</comment>
+ <comment xml:lang="uk">зображення DIB</comment>
+ <comment xml:lang="tr">DIB görüntüsü</comment>
+ <comment xml:lang="sv">DIB-bild</comment>
+ <comment xml:lang="sr">ДИБ слика</comment>
+ <comment xml:lang="sq">figurë DIB</comment>
+ <comment xml:lang="sl">Slikovna datoteka DIB</comment>
+ <comment xml:lang="si">DIB රූපය</comment>
+ <comment xml:lang="sk">Obrázok DIB</comment>
+ <comment xml:lang="ru">Изображение DIB</comment>
+ <comment xml:lang="ro">Imagine DIB</comment>
+ <comment xml:lang="pt_BR">Imagem DIB</comment>
+ <comment xml:lang="pt">imagem DIB</comment>
+ <comment xml:lang="pl">Obraz DIB</comment>
+ <comment xml:lang="oc">imatge DIB</comment>
+ <comment xml:lang="nn">DIB-bilete</comment>
+ <comment xml:lang="nl">DIB-afbeelding</comment>
+ <comment xml:lang="nb">DIB-bilde</comment>
+ <comment xml:lang="lv">DIB attēls</comment>
+ <comment xml:lang="lt">DIB paveikslėlis</comment>
+ <comment xml:lang="ko">DIB 그림</comment>
+ <comment xml:lang="kk">DIB суреті</comment>
+ <comment xml:lang="ka">DIB გამოსახულება</comment>
+ <comment xml:lang="ja">DIB 画像</comment>
+ <comment xml:lang="it">Immagine DIB</comment>
+ <comment xml:lang="is">DIB mynd</comment>
+ <comment xml:lang="id">Citra DIB</comment>
+ <comment xml:lang="ia">Imagine DIB</comment>
+ <comment xml:lang="hu">DIB kép</comment>
+ <comment xml:lang="hr">DIB slika</comment>
+ <comment xml:lang="he">תמונת DIB</comment>
+ <comment xml:lang="gl">imaxe DIB</comment>
+ <comment xml:lang="ga">íomhá DIB</comment>
+ <comment xml:lang="fur">imagjin DIB</comment>
+ <comment xml:lang="fr">image DIB</comment>
+ <comment xml:lang="fo">DIB mynd</comment>
+ <comment xml:lang="fi">DIB-kuva</comment>
+ <comment xml:lang="eu">DIB irudia</comment>
+ <comment xml:lang="es">imagen DIB</comment>
+ <comment xml:lang="eo">DIB-bildo</comment>
+ <comment xml:lang="en_GB">DIB image</comment>
+ <comment xml:lang="el">Εικόνα DIB</comment>
+ <comment xml:lang="de">DIB-Bild</comment>
+ <comment xml:lang="da">DIB-billede</comment>
+ <comment xml:lang="cs">obrázek DIB</comment>
+ <comment xml:lang="ca">imatge DIB</comment>
+ <comment xml:lang="bg">Изображение — DIB</comment>
+ <comment xml:lang="be@latin">Vyjava DIB</comment>
+ <comment xml:lang="be">выява DIB</comment>
+ <comment xml:lang="ar">صورة DIB</comment>
+ <comment xml:lang="af">DIB-beeld</comment>
<acronym>DIB</acronym>
<expanded-acronym>Device Independent Bitmap</expanded-acronym>
- <magic priority="50">
- <match value="\x28\00\00\00" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\x28\00\00\00" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/vnd.djvu">
<comment>DjVu image</comment>
- <comment xml:lang="ar">صورة DjVu</comment>
- <comment xml:lang="be@latin">Vyjava DjVu</comment>
- <comment xml:lang="bg">Изображение — DjVu</comment>
- <comment xml:lang="ca">imatge DjVu</comment>
- <comment xml:lang="cs">obrázek DjVu</comment>
- <comment xml:lang="da">DjVu-billede</comment>
- <comment xml:lang="de">DjVu-Bild</comment>
- <comment xml:lang="el">Εικόνα DjVu</comment>
- <comment xml:lang="en_GB">DjVu image</comment>
- <comment xml:lang="eo">DjVu-bildo</comment>
- <comment xml:lang="es">imagen DjVu</comment>
- <comment xml:lang="eu">DjVU-ko irudia</comment>
- <comment xml:lang="fi">DjVu-kuva</comment>
- <comment xml:lang="fo">DjVu mynd</comment>
- <comment xml:lang="fr">image DjVu</comment>
- <comment xml:lang="ga">íomhá DjVu</comment>
- <comment xml:lang="gl">imaxe de DjVu</comment>
- <comment xml:lang="he">תמונת DjVu</comment>
- <comment xml:lang="hr">DjVu slika</comment>
- <comment xml:lang="hu">DjVu-kép</comment>
- <comment xml:lang="ia">Imagine DjVu</comment>
- <comment xml:lang="id">Citra DjVu</comment>
- <comment xml:lang="it">Immagine DjVu</comment>
- <comment xml:lang="ja">DjVu 画像</comment>
- <comment xml:lang="ka">DjVu გამოსახულება</comment>
- <comment xml:lang="kk">DjVu суреті</comment>
- <comment xml:lang="ko">DjVu 그림</comment>
- <comment xml:lang="lt">DjVu paveikslėlis</comment>
- <comment xml:lang="lv">DjVu attēls</comment>
- <comment xml:lang="ms">Imej DjVu</comment>
- <comment xml:lang="nb">DjVu-bilde</comment>
- <comment xml:lang="nl">DjVu-afbeelding</comment>
- <comment xml:lang="nn">DjVu-bilete</comment>
- <comment xml:lang="oc">imatge DjVu</comment>
- <comment xml:lang="pl">Obraz DjVu</comment>
- <comment xml:lang="pt">imagem DjVu</comment>
- <comment xml:lang="pt_BR">Imagem DjVu</comment>
- <comment xml:lang="ro">Imagine DjVu</comment>
- <comment xml:lang="ru">Изображение DjVu</comment>
- <comment xml:lang="sk">Obrázok DjVu</comment>
- <comment xml:lang="sl">Slikovna datoteka DjVu</comment>
- <comment xml:lang="sq">Figurë DjVu</comment>
- <comment xml:lang="sr">ДјВу слика</comment>
- <comment xml:lang="sv">DjVu-bild</comment>
- <comment xml:lang="tr">DjVu görüntüsü</comment>
- <comment xml:lang="uk">зображення DjVu</comment>
- <comment xml:lang="vi">Ảnh DjVu</comment>
- <comment xml:lang="zh_CN">DjVu 图像</comment>
<comment xml:lang="zh_TW">DjVu 影像</comment>
+ <comment xml:lang="zh_CN">DjVu 图像</comment>
+ <comment xml:lang="vi">Ảnh DjVu</comment>
+ <comment xml:lang="uk">зображення DjVu</comment>
+ <comment xml:lang="tr">DjVu görüntüsü</comment>
+ <comment xml:lang="sv">DjVu-bild</comment>
+ <comment xml:lang="sr">ДјВу слика</comment>
+ <comment xml:lang="sq">figurë DjVu</comment>
+ <comment xml:lang="sl">Slikovna datoteka DjVu</comment>
+ <comment xml:lang="si">DjVu රූපය</comment>
+ <comment xml:lang="sk">Obrázok DjVu</comment>
+ <comment xml:lang="ru">Изображение DjVu</comment>
+ <comment xml:lang="ro">Imagine DjVu</comment>
+ <comment xml:lang="pt_BR">Imagem DjVu</comment>
+ <comment xml:lang="pt">imagem DjVu</comment>
+ <comment xml:lang="pl">Obraz DjVu</comment>
+ <comment xml:lang="oc">imatge DjVu</comment>
+ <comment xml:lang="nn">DjVu-bilete</comment>
+ <comment xml:lang="nl">DjVu-afbeelding</comment>
+ <comment xml:lang="nb">DjVu-bilde</comment>
+ <comment xml:lang="ms">Imej DjVu</comment>
+ <comment xml:lang="lv">DjVu attēls</comment>
+ <comment xml:lang="lt">DjVu paveikslėlis</comment>
+ <comment xml:lang="ko">DjVu 그림</comment>
+ <comment xml:lang="kk">DjVu суреті</comment>
+ <comment xml:lang="ka">DjVu გამოსახულება</comment>
+ <comment xml:lang="ja">DjVu 画像</comment>
+ <comment xml:lang="it">Immagine DjVu</comment>
+ <comment xml:lang="is">DjVu mynd</comment>
+ <comment xml:lang="id">Citra DjVu</comment>
+ <comment xml:lang="ia">Imagine DjVu</comment>
+ <comment xml:lang="hu">DjVu-kép</comment>
+ <comment xml:lang="hr">DjVu slika</comment>
+ <comment xml:lang="he">תמונת DjVu</comment>
+ <comment xml:lang="gl">imaxe de DjVu</comment>
+ <comment xml:lang="ga">íomhá DjVu</comment>
+ <comment xml:lang="fur">imagjin DjVu</comment>
+ <comment xml:lang="fr">image DjVu</comment>
+ <comment xml:lang="fo">DjVu mynd</comment>
+ <comment xml:lang="fi">DjVu-kuva</comment>
+ <comment xml:lang="eu">DjVU-ko irudia</comment>
+ <comment xml:lang="es">imagen DjVu</comment>
+ <comment xml:lang="eo">DjVu-bildo</comment>
+ <comment xml:lang="en_GB">DjVu image</comment>
+ <comment xml:lang="el">Εικόνα DjVu</comment>
+ <comment xml:lang="de">DjVu-Bild</comment>
+ <comment xml:lang="da">DjVu-billede</comment>
+ <comment xml:lang="cs">obrázek DjVu</comment>
+ <comment xml:lang="ca">imatge DjVu</comment>
+ <comment xml:lang="bg">Изображение — DjVu</comment>
+ <comment xml:lang="be@latin">Vyjava DjVu</comment>
+ <comment xml:lang="be">выява DjVu</comment>
+ <comment xml:lang="ar">صورة DjVu</comment>
+ <comment xml:lang="af">DjVu-beeld</comment>
<alias type="image/x-djvu"/>
<alias type="image/x.djvu"/>
<magic priority="80">
- <match value="AT&amp;TFORM" type="string" offset="0">
- <match value="DJVU" type="string" offset="12"/>
+ <match type="string" offset="0" value="AT&amp;TFORM">
+ <match type="string" offset="12" value="DJVU"/>
</match>
- <match value="FORM" type="string" offset="0">
- <match value="DJVU" type="string" offset="8"/>
+ <match type="string" offset="0" value="FORM">
+ <match type="string" offset="8" value="DJVU"/>
</match>
</magic>
<glob pattern="*.djvu"/>
@@ -27987,45 +30514,58 @@
</mime-type>
<mime-type type="image/vnd.djvu+multipage">
<comment>DjVu document</comment>
- <comment xml:lang="ast">Documentu DjVu</comment>
- <comment xml:lang="ca">document DjVu</comment>
- <comment xml:lang="cs">dokument DjVu</comment>
- <comment xml:lang="da">DjVu-dokument</comment>
- <comment xml:lang="de">DjVu-Dokument</comment>
- <comment xml:lang="el">Έγγραφο DjVu</comment>
- <comment xml:lang="en_GB">DjVu document</comment>
- <comment xml:lang="es">documento DjVu</comment>
- <comment xml:lang="eu">DjVu dokumentua</comment>
- <comment xml:lang="fi">DjVu-asiakirja</comment>
- <comment xml:lang="fr">document DjVu</comment>
- <comment xml:lang="ga">cáipéis DjVu</comment>
- <comment xml:lang="he">מסמך DjVu</comment>
- <comment xml:lang="hr">DjVu dokument</comment>
- <comment xml:lang="hu">DjVu dokumentum</comment>
- <comment xml:lang="ia">Documento DjVu</comment>
- <comment xml:lang="id">Dokumen DjVu</comment>
- <comment xml:lang="it">Documento DjVu</comment>
- <comment xml:lang="kk">DjVu құжаты</comment>
- <comment xml:lang="ko">DjVu 문서</comment>
- <comment xml:lang="oc">document DjVu</comment>
- <comment xml:lang="pl">Dokument DjVu</comment>
- <comment xml:lang="pt">documento DjVu</comment>
- <comment xml:lang="pt_BR">Documento DjVu</comment>
- <comment xml:lang="ru">Документ DjVu</comment>
- <comment xml:lang="sk">Dokument DjVu</comment>
- <comment xml:lang="sr">ДјВу документ</comment>
- <comment xml:lang="sv">DjVu-dokument</comment>
- <comment xml:lang="tr">DjVu belgesi</comment>
- <comment xml:lang="uk">документ DjVu</comment>
- <comment xml:lang="zh_CN">DjVu 文档</comment>
<comment xml:lang="zh_TW">DjVu 文件</comment>
+ <comment xml:lang="zh_CN">DjVu 文档</comment>
+ <comment xml:lang="uk">документ DjVu</comment>
+ <comment xml:lang="tr">DjVu belgesi</comment>
+ <comment xml:lang="sv">DjVu-dokument</comment>
+ <comment xml:lang="sr">ДјВу документ</comment>
+ <comment xml:lang="sq">dokument DjVu</comment>
+ <comment xml:lang="sl">Dokument DjVu</comment>
+ <comment xml:lang="si">DjVu ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument DjVu</comment>
+ <comment xml:lang="ru">Документ DjVu</comment>
+ <comment xml:lang="pt_BR">Documento DjVu</comment>
+ <comment xml:lang="pt">documento DjVu</comment>
+ <comment xml:lang="pl">Dokument DjVu</comment>
+ <comment xml:lang="oc">document DjVu</comment>
+ <comment xml:lang="nl">DjVu-document</comment>
+ <comment xml:lang="lt">DjVu dokumentas</comment>
+ <comment xml:lang="ko">DjVu 문서</comment>
+ <comment xml:lang="kk">DjVu құжаты</comment>
+ <comment xml:lang="ja">DjVu ドキュメント</comment>
+ <comment xml:lang="it">Documento DjVu</comment>
+ <comment xml:lang="is">DjVu skjal</comment>
+ <comment xml:lang="id">Dokumen DjVu</comment>
+ <comment xml:lang="ia">Documento DjVu</comment>
+ <comment xml:lang="hu">DjVu dokumentum</comment>
+ <comment xml:lang="hr">DjVu dokument</comment>
+ <comment xml:lang="he">מסמך DjVu</comment>
+ <comment xml:lang="gl">Documento DjVu</comment>
+ <comment xml:lang="ga">cáipéis DjVu</comment>
+ <comment xml:lang="fur">document DjVu</comment>
+ <comment xml:lang="fr">document DjVu</comment>
+ <comment xml:lang="fi">DjVu-asiakirja</comment>
+ <comment xml:lang="eu">DjVu dokumentua</comment>
+ <comment xml:lang="es">documento DjVu</comment>
+ <comment xml:lang="en_GB">DjVu document</comment>
+ <comment xml:lang="el">Έγγραφο DjVu</comment>
+ <comment xml:lang="de">DjVu-Dokument</comment>
+ <comment xml:lang="da">DjVu-dokument</comment>
+ <comment xml:lang="cs">dokument DjVu</comment>
+ <comment xml:lang="ca">document DjVu</comment>
+ <comment xml:lang="bg">Документ — DjVu</comment>
+ <comment xml:lang="be">дакумент DjVu</comment>
+ <comment xml:lang="ast">Documentu DjVu</comment>
+ <comment xml:lang="ar">مستند DjVu</comment>
+ <comment xml:lang="af">DjVu-dokument</comment>
<generic-icon name="x-office-document"/>
<magic priority="80">
- <match value="AT&amp;TFORM" type="string" offset="0">
- <match value="DJVM" type="string" offset="12"/>
+ <match type="string" offset="0" value="AT&amp;TFORM">
+ <match type="string" offset="12" value="DJVM"/>
</match>
- <match value="FORM" type="string" offset="0">
- <match value="DJVM" type="string" offset="8"/>
+ <match type="string" offset="0" value="FORM">
+ <match type="string" offset="8" value="DJVM"/>
</match>
</magic>
<sub-class-of type="image/vnd.djvu"/>
@@ -28034,290 +30574,318 @@
</mime-type>
<mime-type type="image/dpx">
<comment>DPX image</comment>
- <comment xml:lang="ar">صورة DPX</comment>
- <comment xml:lang="be@latin">Vyjava DPX</comment>
- <comment xml:lang="bg">Изображение — DPX</comment>
- <comment xml:lang="ca">imatge DPX</comment>
- <comment xml:lang="cs">obrázek DPX</comment>
- <comment xml:lang="da">DPX-billede</comment>
- <comment xml:lang="de">DPX-Bild</comment>
- <comment xml:lang="el">Εικόνα DPX</comment>
- <comment xml:lang="en_GB">DPX image</comment>
- <comment xml:lang="eo">DPX-bildo</comment>
- <comment xml:lang="es">imagen DPX</comment>
- <comment xml:lang="eu">DPX irudia</comment>
- <comment xml:lang="fi">DPX-kuva</comment>
- <comment xml:lang="fo">DPX mynd</comment>
- <comment xml:lang="fr">image DPX</comment>
- <comment xml:lang="ga">íomhá DPX</comment>
- <comment xml:lang="gl">imaxe DPX</comment>
- <comment xml:lang="he">תמונת DPX</comment>
- <comment xml:lang="hr">DPX slika</comment>
- <comment xml:lang="hu">DPX kép</comment>
- <comment xml:lang="ia">Imagine DPX</comment>
- <comment xml:lang="id">Citra DPX</comment>
- <comment xml:lang="it">Immagine DPX</comment>
- <comment xml:lang="ja">DPX 画像</comment>
- <comment xml:lang="ka">DPX გამოსახულება</comment>
- <comment xml:lang="kk">DPX суреті</comment>
- <comment xml:lang="ko">DPX 그림</comment>
- <comment xml:lang="lt">DPX paveikslėlis</comment>
- <comment xml:lang="lv">DPX attēls</comment>
- <comment xml:lang="nb">DPX-bilde</comment>
- <comment xml:lang="nl">DPX-afbeelding</comment>
- <comment xml:lang="nn">DPX-bilete</comment>
- <comment xml:lang="oc">imatge DPX</comment>
- <comment xml:lang="pl">Obraz DPX</comment>
- <comment xml:lang="pt">imagem DPX</comment>
- <comment xml:lang="pt_BR">Imagem DPX</comment>
- <comment xml:lang="ro">Imagine DPX</comment>
- <comment xml:lang="ru">Изображение DPX</comment>
- <comment xml:lang="sk">Obrázok DPX</comment>
- <comment xml:lang="sl">Slikovna datoteka DPX</comment>
- <comment xml:lang="sq">Figurë DPX</comment>
- <comment xml:lang="sr">ДПИкс слика</comment>
- <comment xml:lang="sv">DPX-bild</comment>
- <comment xml:lang="tr">DPX görüntüsü</comment>
- <comment xml:lang="uk">зображення DPX</comment>
- <comment xml:lang="vi">Ảnh DPX</comment>
- <comment xml:lang="zh_CN">DPX 图像</comment>
<comment xml:lang="zh_TW">DPX 影像</comment>
+ <comment xml:lang="zh_CN">DPX 图像</comment>
+ <comment xml:lang="vi">Ảnh DPX</comment>
+ <comment xml:lang="uk">зображення DPX</comment>
+ <comment xml:lang="tr">DPX görüntüsü</comment>
+ <comment xml:lang="sv">DPX-bild</comment>
+ <comment xml:lang="sr">ДПИкс слика</comment>
+ <comment xml:lang="sq">figurë DPX</comment>
+ <comment xml:lang="sl">Slikovna datoteka DPX</comment>
+ <comment xml:lang="si">DPX රූපය</comment>
+ <comment xml:lang="sk">Obrázok DPX</comment>
+ <comment xml:lang="ru">Изображение DPX</comment>
+ <comment xml:lang="ro">Imagine DPX</comment>
+ <comment xml:lang="pt_BR">Imagem DPX</comment>
+ <comment xml:lang="pt">imagem DPX</comment>
+ <comment xml:lang="pl">Obraz DPX</comment>
+ <comment xml:lang="oc">imatge DPX</comment>
+ <comment xml:lang="nn">DPX-bilete</comment>
+ <comment xml:lang="nl">DPX-afbeelding</comment>
+ <comment xml:lang="nb">DPX-bilde</comment>
+ <comment xml:lang="lv">DPX attēls</comment>
+ <comment xml:lang="lt">DPX paveikslėlis</comment>
+ <comment xml:lang="ko">DPX 그림</comment>
+ <comment xml:lang="kk">DPX суреті</comment>
+ <comment xml:lang="ka">DPX გამოსახულება</comment>
+ <comment xml:lang="ja">DPX 画像</comment>
+ <comment xml:lang="it">Immagine DPX</comment>
+ <comment xml:lang="is">DPX mynd</comment>
+ <comment xml:lang="id">Citra DPX</comment>
+ <comment xml:lang="ia">Imagine DPX</comment>
+ <comment xml:lang="hu">DPX kép</comment>
+ <comment xml:lang="hr">DPX slika</comment>
+ <comment xml:lang="he">תמונת DPX</comment>
+ <comment xml:lang="gl">imaxe DPX</comment>
+ <comment xml:lang="ga">íomhá DPX</comment>
+ <comment xml:lang="fur">imagjin DPX</comment>
+ <comment xml:lang="fr">image DPX</comment>
+ <comment xml:lang="fo">DPX mynd</comment>
+ <comment xml:lang="fi">DPX-kuva</comment>
+ <comment xml:lang="eu">DPX irudia</comment>
+ <comment xml:lang="es">imagen DPX</comment>
+ <comment xml:lang="eo">DPX-bildo</comment>
+ <comment xml:lang="en_GB">DPX image</comment>
+ <comment xml:lang="el">Εικόνα DPX</comment>
+ <comment xml:lang="de">DPX-Bild</comment>
+ <comment xml:lang="da">DPX-billede</comment>
+ <comment xml:lang="cs">obrázek DPX</comment>
+ <comment xml:lang="ca">imatge DPX</comment>
+ <comment xml:lang="bg">Изображение — DPX</comment>
+ <comment xml:lang="be@latin">Vyjava DPX</comment>
+ <comment xml:lang="be">выява DPX</comment>
+ <comment xml:lang="ar">صورة DPX</comment>
+ <comment xml:lang="af">DPX-beeld</comment>
<acronym>DPX</acronym>
<expanded-acronym>Digital Moving Picture Exchange</expanded-acronym>
- <magic priority="50">
- <match value="0x53445058" type="big32" offset="0"/>
+ <magic>
+ <match type="big32" value="0x53445058" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/x-eps">
<comment>EPS image</comment>
- <comment xml:lang="ar">صورة EPS</comment>
- <comment xml:lang="be@latin">Vyjava EPS</comment>
- <comment xml:lang="bg">Изображение — EPS</comment>
- <comment xml:lang="ca">imatge EPS</comment>
- <comment xml:lang="cs">obrázek EPS</comment>
- <comment xml:lang="da">EPS-billede</comment>
- <comment xml:lang="de">EPS-Bild</comment>
- <comment xml:lang="el">Εικόνα EPS</comment>
- <comment xml:lang="en_GB">EPS image</comment>
- <comment xml:lang="eo">EPS-bildo</comment>
- <comment xml:lang="es">imagen EPS</comment>
- <comment xml:lang="eu">EPS irudia</comment>
- <comment xml:lang="fi">EPS-kuva</comment>
- <comment xml:lang="fo">EPS mynd</comment>
- <comment xml:lang="fr">image EPS</comment>
- <comment xml:lang="ga">íomhá EPS</comment>
- <comment xml:lang="gl">imaxe EPS</comment>
- <comment xml:lang="he">תמונת EPS</comment>
- <comment xml:lang="hr">EPS slika</comment>
- <comment xml:lang="hu">EPS kép</comment>
- <comment xml:lang="ia">Imagine EPS</comment>
- <comment xml:lang="id">Citra EPS</comment>
- <comment xml:lang="it">Immagine EPS</comment>
- <comment xml:lang="ja">EPS 画像</comment>
- <comment xml:lang="ka">EPS გამოსახულება</comment>
- <comment xml:lang="kk">EPS суреті</comment>
- <comment xml:lang="ko">EPS 그림</comment>
- <comment xml:lang="lt">EPS paveikslėlis</comment>
- <comment xml:lang="lv">EPS attēls</comment>
- <comment xml:lang="nb">EPS-bilde</comment>
- <comment xml:lang="nl">EPS-afbeelding</comment>
- <comment xml:lang="nn">EPS-bilete</comment>
- <comment xml:lang="oc">imatge EPS</comment>
- <comment xml:lang="pl">Obraz EPS</comment>
- <comment xml:lang="pt">imagem EPS</comment>
- <comment xml:lang="pt_BR">Imagem EPS</comment>
- <comment xml:lang="ro">Imagine EPS</comment>
- <comment xml:lang="ru">Изображение EPS</comment>
- <comment xml:lang="sk">Obrázok EPS</comment>
- <comment xml:lang="sl">Slikovna datoteka EPS</comment>
- <comment xml:lang="sq">Figurë EPS</comment>
- <comment xml:lang="sr">ЕПС слика</comment>
- <comment xml:lang="sv">EPS-bild</comment>
- <comment xml:lang="tr">EPS görüntüsü</comment>
- <comment xml:lang="uk">зображення EPS</comment>
- <comment xml:lang="vi">Ảnh EPS</comment>
- <comment xml:lang="zh_CN">EPS 图像</comment>
<comment xml:lang="zh_TW">EPS 影像</comment>
+ <comment xml:lang="zh_CN">EPS 图像</comment>
+ <comment xml:lang="vi">Ảnh EPS</comment>
+ <comment xml:lang="uk">зображення EPS</comment>
+ <comment xml:lang="tr">EPS görüntüsü</comment>
+ <comment xml:lang="sv">EPS-bild</comment>
+ <comment xml:lang="sr">ЕПС слика</comment>
+ <comment xml:lang="sq">figurë EPS</comment>
+ <comment xml:lang="sl">Slikovna datoteka EPS</comment>
+ <comment xml:lang="si">EPS රූපය</comment>
+ <comment xml:lang="sk">Obrázok EPS</comment>
+ <comment xml:lang="ru">Изображение EPS</comment>
+ <comment xml:lang="ro">Imagine EPS</comment>
+ <comment xml:lang="pt_BR">Imagem EPS</comment>
+ <comment xml:lang="pt">imagem EPS</comment>
+ <comment xml:lang="pl">Obraz EPS</comment>
+ <comment xml:lang="oc">imatge EPS</comment>
+ <comment xml:lang="nn">EPS-bilete</comment>
+ <comment xml:lang="nl">EPS-afbeelding</comment>
+ <comment xml:lang="nb">EPS-bilde</comment>
+ <comment xml:lang="lv">EPS attēls</comment>
+ <comment xml:lang="lt">EPS paveikslėlis</comment>
+ <comment xml:lang="ko">EPS 그림</comment>
+ <comment xml:lang="kk">EPS суреті</comment>
+ <comment xml:lang="ka">EPS გამოსახულება</comment>
+ <comment xml:lang="ja">EPS 画像</comment>
+ <comment xml:lang="it">Immagine EPS</comment>
+ <comment xml:lang="is">EPS mynd</comment>
+ <comment xml:lang="id">Citra EPS</comment>
+ <comment xml:lang="ia">Imagine EPS</comment>
+ <comment xml:lang="hu">EPS kép</comment>
+ <comment xml:lang="hr">EPS slika</comment>
+ <comment xml:lang="he">תמונת EPS</comment>
+ <comment xml:lang="gl">imaxe EPS</comment>
+ <comment xml:lang="ga">íomhá EPS</comment>
+ <comment xml:lang="fur">imagjin EPS</comment>
+ <comment xml:lang="fr">image EPS</comment>
+ <comment xml:lang="fo">EPS mynd</comment>
+ <comment xml:lang="fi">EPS-kuva</comment>
+ <comment xml:lang="eu">EPS irudia</comment>
+ <comment xml:lang="es">imagen EPS</comment>
+ <comment xml:lang="eo">EPS-bildo</comment>
+ <comment xml:lang="en_GB">EPS image</comment>
+ <comment xml:lang="el">Εικόνα EPS</comment>
+ <comment xml:lang="de">EPS-Bild</comment>
+ <comment xml:lang="da">EPS-billede</comment>
+ <comment xml:lang="cs">obrázek EPS</comment>
+ <comment xml:lang="ca">imatge EPS</comment>
+ <comment xml:lang="bg">Изображение — EPS</comment>
+ <comment xml:lang="be@latin">Vyjava EPS</comment>
+ <comment xml:lang="be">выява EPS</comment>
+ <comment xml:lang="ar">صورة EPS</comment>
+ <comment xml:lang="af">EPS-beeld</comment>
<acronym>EPS</acronym>
<expanded-acronym>Encapsulated PostScript</expanded-acronym>
<sub-class-of type="application/postscript"/>
<magic priority="90">
- <match value="%!" type="string" offset="0">
- <match value="EPS" type="string" offset="15"/>
+ <match type="string" value="%!" offset="0">
+ <match type="string" value="EPS" offset="15"/>
</match>
- <match value="\004%!" type="string" offset="0">
- <match value="EPS" type="string" offset="16"/>
+ <match type="string" value="\004%!" offset="0">
+ <match type="string" value="EPS" offset="16"/>
</match>
- <match value="0xC5D0D3C6" type="big32" offset="0"/>
+ <match type="big32" value="0xC5D0D3C6" offset="0"/>
</magic>
<glob pattern="*.eps"/>
<glob pattern="*.epsi"/>
<glob pattern="*.epsf"/>
</mime-type>
- <mime-type type="image/fits">
+ <mime-type type="application/fits">
<comment>FITS document</comment>
- <comment xml:lang="ar">مستند FITS</comment>
- <comment xml:lang="ast">Documentu FITS</comment>
- <comment xml:lang="be@latin">Dakument FITS</comment>
- <comment xml:lang="bg">Документ — FITS</comment>
- <comment xml:lang="ca">document FITS</comment>
- <comment xml:lang="cs">dokument FITS</comment>
- <comment xml:lang="da">FITS-dokument</comment>
- <comment xml:lang="de">FITS-Dokument</comment>
- <comment xml:lang="el">Έγγραφο FITS</comment>
- <comment xml:lang="en_GB">FITS document</comment>
- <comment xml:lang="eo">FITS-dokumento</comment>
- <comment xml:lang="es">documento FITS</comment>
- <comment xml:lang="eu">FITS dokumentua</comment>
- <comment xml:lang="fi">FITS-asiakirja</comment>
- <comment xml:lang="fo">FITS skjal</comment>
- <comment xml:lang="fr">document FITS</comment>
- <comment xml:lang="ga">cáipéis FITS</comment>
- <comment xml:lang="gl">documento FICT</comment>
- <comment xml:lang="he">מסמך FITS</comment>
- <comment xml:lang="hr">FITS dokument</comment>
- <comment xml:lang="hu">FITS dokumentum</comment>
- <comment xml:lang="ia">Documento FITS</comment>
- <comment xml:lang="id">Dokumen FITS</comment>
- <comment xml:lang="it">Documento FITS</comment>
- <comment xml:lang="ja">FITS ドキュメント</comment>
- <comment xml:lang="ka">FITS დოკუმენტი</comment>
- <comment xml:lang="kk">FITS құжаты</comment>
- <comment xml:lang="ko">FITS 문서</comment>
- <comment xml:lang="lt">FITS dokumentas</comment>
- <comment xml:lang="lv">FITS dokuments</comment>
- <comment xml:lang="nb">FITS-dokument</comment>
- <comment xml:lang="nl">FITS-document</comment>
- <comment xml:lang="nn">FITS-dokument</comment>
- <comment xml:lang="oc">document FITS</comment>
- <comment xml:lang="pl">Dokument FITS</comment>
- <comment xml:lang="pt">documento FITS</comment>
- <comment xml:lang="pt_BR">Documento FITS</comment>
- <comment xml:lang="ro">Document FITS</comment>
- <comment xml:lang="ru">Документ FITS</comment>
- <comment xml:lang="sk">Dokument FITS</comment>
- <comment xml:lang="sl">Dokument FITS</comment>
- <comment xml:lang="sq">Dokument FITS</comment>
- <comment xml:lang="sr">ФИТС документ</comment>
- <comment xml:lang="sv">FITS-dokument</comment>
- <comment xml:lang="tr">FITS belgesi</comment>
- <comment xml:lang="uk">документ FITS</comment>
- <comment xml:lang="vi">Tài liệu FITS</comment>
- <comment xml:lang="zh_CN">FITS 文档</comment>
<comment xml:lang="zh_TW">FITS 文件</comment>
+ <comment xml:lang="zh_CN">FITS 文档</comment>
+ <comment xml:lang="vi">Tài liệu FITS</comment>
+ <comment xml:lang="uk">документ FITS</comment>
+ <comment xml:lang="tr">FITS belgesi</comment>
+ <comment xml:lang="sv">FITS-dokument</comment>
+ <comment xml:lang="sr">ФИТС документ</comment>
+ <comment xml:lang="sq">dokument FITS</comment>
+ <comment xml:lang="sl">Dokument FITS</comment>
+ <comment xml:lang="si">FITS ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument FITS</comment>
+ <comment xml:lang="ru">Документ FITS</comment>
+ <comment xml:lang="ro">Document FITS</comment>
+ <comment xml:lang="pt_BR">Documento FITS</comment>
+ <comment xml:lang="pt">documento FITS</comment>
+ <comment xml:lang="pl">Dokument FITS</comment>
+ <comment xml:lang="oc">document FITS</comment>
+ <comment xml:lang="nn">FITS-dokument</comment>
+ <comment xml:lang="nl">FITS-document</comment>
+ <comment xml:lang="nb">FITS-dokument</comment>
+ <comment xml:lang="lv">FITS dokuments</comment>
+ <comment xml:lang="lt">FITS dokumentas</comment>
+ <comment xml:lang="ko">FITS 문서</comment>
+ <comment xml:lang="kk">FITS құжаты</comment>
+ <comment xml:lang="ka">FITS დოკუმენტი</comment>
+ <comment xml:lang="ja">FITS ドキュメント</comment>
+ <comment xml:lang="it">Documento FITS</comment>
+ <comment xml:lang="is">FITS skjalskjal</comment>
+ <comment xml:lang="id">Dokumen FITS</comment>
+ <comment xml:lang="ia">Documento FITS</comment>
+ <comment xml:lang="hu">FITS dokumentum</comment>
+ <comment xml:lang="hr">FITS dokument</comment>
+ <comment xml:lang="he">מסמך FITS</comment>
+ <comment xml:lang="gl">documento FICT</comment>
+ <comment xml:lang="ga">cáipéis FITS</comment>
+ <comment xml:lang="fur">document FITS</comment>
+ <comment xml:lang="fr">document FITS</comment>
+ <comment xml:lang="fo">FITS skjal</comment>
+ <comment xml:lang="fi">FITS-asiakirja</comment>
+ <comment xml:lang="eu">FITS dokumentua</comment>
+ <comment xml:lang="es">documento FITS</comment>
+ <comment xml:lang="eo">FITS-dokumento</comment>
+ <comment xml:lang="en_GB">FITS document</comment>
+ <comment xml:lang="el">Έγγραφο FITS</comment>
+ <comment xml:lang="de">FITS-Dokument</comment>
+ <comment xml:lang="da">FITS-dokument</comment>
+ <comment xml:lang="cs">dokument FITS</comment>
+ <comment xml:lang="ca">document FITS</comment>
+ <comment xml:lang="bg">Документ — FITS</comment>
+ <comment xml:lang="be@latin">Dakument FITS</comment>
+ <comment xml:lang="be">дакумент FITS</comment>
+ <comment xml:lang="ast">Documentu FITS</comment>
+ <comment xml:lang="ar">مستند FITS</comment>
+ <comment xml:lang="af">FITS-dokument</comment>
<acronym>FITS</acronym>
<expanded-acronym>Flexible Image Transport System</expanded-acronym>
- <magic priority="50">
- <match value="SIMPLE =" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="SIMPLE =" offset="0"/>
</magic>
<glob pattern="*.fits"/>
+ <glob pattern="*.fit"/>
+ <glob pattern="*.fts"/>
<alias type="image/x-fits"/>
+ <alias type="image/fits"/>
</mime-type>
<mime-type type="image/x-fpx">
<comment>FPX image</comment>
- <comment xml:lang="ar">صورة FPX</comment>
- <comment xml:lang="be@latin">Vyjava FPX</comment>
- <comment xml:lang="bg">Изображение — FPX</comment>
- <comment xml:lang="ca">imatge FPX</comment>
- <comment xml:lang="cs">obrázek FPX</comment>
- <comment xml:lang="da">FPX-billede</comment>
- <comment xml:lang="de">FPX-Bild</comment>
- <comment xml:lang="el">Εικόνα FPX</comment>
- <comment xml:lang="en_GB">FPX image</comment>
- <comment xml:lang="eo">FPX-bildo</comment>
- <comment xml:lang="es">imagen FPX</comment>
- <comment xml:lang="eu">FPX irudia</comment>
- <comment xml:lang="fi">FPX-kuva</comment>
- <comment xml:lang="fo">FPX mynd</comment>
- <comment xml:lang="fr">image FPX</comment>
- <comment xml:lang="ga">íomhá FPX</comment>
- <comment xml:lang="gl">imaxe FPX</comment>
- <comment xml:lang="he">תמונת FPX</comment>
- <comment xml:lang="hr">FPX slika</comment>
- <comment xml:lang="hu">FPX kép</comment>
- <comment xml:lang="ia">Imagine FPX</comment>
- <comment xml:lang="id">Citra FPX</comment>
- <comment xml:lang="it">Immagine FPX</comment>
- <comment xml:lang="ja">FPX 画像</comment>
- <comment xml:lang="ka">FPX გამოსახულება</comment>
- <comment xml:lang="kk">FPX суреті</comment>
- <comment xml:lang="ko">FPX 그림</comment>
- <comment xml:lang="lt">FPX paveikslėlis</comment>
- <comment xml:lang="lv">FPX attēls</comment>
- <comment xml:lang="nb">FPX-bilde</comment>
- <comment xml:lang="nl">FPX-afbeelding</comment>
- <comment xml:lang="nn">FPX-bilete</comment>
- <comment xml:lang="oc">imatge FPX</comment>
- <comment xml:lang="pl">Obraz FPX</comment>
- <comment xml:lang="pt">imagem FPX</comment>
- <comment xml:lang="pt_BR">Imagem FPX</comment>
- <comment xml:lang="ro">Imagine FPX</comment>
- <comment xml:lang="ru">Изображение FPX</comment>
- <comment xml:lang="sk">Obrázok FPX</comment>
- <comment xml:lang="sl">Slikovna datoteka FPX</comment>
- <comment xml:lang="sq">Figurë FPX</comment>
- <comment xml:lang="sr">ФПИкс слика</comment>
- <comment xml:lang="sv">FPX-bild</comment>
- <comment xml:lang="tr">FPX görüntüsü</comment>
- <comment xml:lang="uk">зображення FPX</comment>
- <comment xml:lang="vi">Ảnh FPX</comment>
- <comment xml:lang="zh_CN">FPX 图像</comment>
<comment xml:lang="zh_TW">FPX 影像</comment>
+ <comment xml:lang="zh_CN">FPX 图像</comment>
+ <comment xml:lang="vi">Ảnh FPX</comment>
+ <comment xml:lang="uk">зображення FPX</comment>
+ <comment xml:lang="tr">FPX görüntüsü</comment>
+ <comment xml:lang="sv">FPX-bild</comment>
+ <comment xml:lang="sr">ФПИкс слика</comment>
+ <comment xml:lang="sq">figurë FPX</comment>
+ <comment xml:lang="sl">Slikovna datoteka FPX</comment>
+ <comment xml:lang="si">FPX රූපය</comment>
+ <comment xml:lang="sk">Obrázok FPX</comment>
+ <comment xml:lang="ru">Изображение FPX</comment>
+ <comment xml:lang="ro">Imagine FPX</comment>
+ <comment xml:lang="pt_BR">Imagem FPX</comment>
+ <comment xml:lang="pt">imagem FPX</comment>
+ <comment xml:lang="pl">Obraz FPX</comment>
+ <comment xml:lang="oc">imatge FPX</comment>
+ <comment xml:lang="nn">FPX-bilete</comment>
+ <comment xml:lang="nl">FPX-afbeelding</comment>
+ <comment xml:lang="nb">FPX-bilde</comment>
+ <comment xml:lang="lv">FPX attēls</comment>
+ <comment xml:lang="lt">FPX paveikslėlis</comment>
+ <comment xml:lang="ko">FPX 그림</comment>
+ <comment xml:lang="kk">FPX суреті</comment>
+ <comment xml:lang="ka">FPX გამოსახულება</comment>
+ <comment xml:lang="ja">FPX 画像</comment>
+ <comment xml:lang="it">Immagine FPX</comment>
+ <comment xml:lang="is">FPX mynd</comment>
+ <comment xml:lang="id">Citra FPX</comment>
+ <comment xml:lang="ia">Imagine FPX</comment>
+ <comment xml:lang="hu">FPX kép</comment>
+ <comment xml:lang="hr">FPX slika</comment>
+ <comment xml:lang="he">תמונת FPX</comment>
+ <comment xml:lang="gl">imaxe FPX</comment>
+ <comment xml:lang="ga">íomhá FPX</comment>
+ <comment xml:lang="fur">imagjin FPX</comment>
+ <comment xml:lang="fr">image FPX</comment>
+ <comment xml:lang="fo">FPX mynd</comment>
+ <comment xml:lang="fi">FPX-kuva</comment>
+ <comment xml:lang="eu">FPX irudia</comment>
+ <comment xml:lang="es">imagen FPX</comment>
+ <comment xml:lang="eo">FPX-bildo</comment>
+ <comment xml:lang="en_GB">FPX image</comment>
+ <comment xml:lang="el">Εικόνα FPX</comment>
+ <comment xml:lang="de">FPX-Bild</comment>
+ <comment xml:lang="da">FPX-billede</comment>
+ <comment xml:lang="cs">obrázek FPX</comment>
+ <comment xml:lang="ca">imatge FPX</comment>
+ <comment xml:lang="bg">Изображение — FPX</comment>
+ <comment xml:lang="be@latin">Vyjava FPX</comment>
+ <comment xml:lang="be">выява FPX</comment>
+ <comment xml:lang="ar">صورة FPX</comment>
+ <comment xml:lang="af">FPX-beeld</comment>
<acronym>FPX</acronym>
<expanded-acronym>FlashPiX</expanded-acronym>
- <magic priority="50">
- <match value="0x46506978" type="big32" offset="0"/>
+ <magic>
+ <match type="big32" value="0x46506978" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/x-gzeps">
<comment>EPS image (gzip-compressed)</comment>
- <comment xml:lang="ar">صورة EPS (مضغوط-gzip)</comment>
- <comment xml:lang="be@latin">Vyjava EPS (gzip-skampresavanaja)</comment>
- <comment xml:lang="bg">Изображение — EPS, компресирано с gzip</comment>
- <comment xml:lang="ca">imatge EPS (amb compressió gzip)</comment>
- <comment xml:lang="cs">obrázek EPS (komprimovaný pomocí gzip)</comment>
- <comment xml:lang="da">EPS-billede (gzip-komprimeret)</comment>
- <comment xml:lang="de">EPS-Bild (gzip-komprimiert)</comment>
- <comment xml:lang="el">Εικόνα EPS (συμπιεσμένη gzip)</comment>
- <comment xml:lang="en_GB">EPS image (gzip-compressed)</comment>
- <comment xml:lang="es">imagen EPS (comprimida con gzip)</comment>
- <comment xml:lang="eu">EPS irudia (gzip-ekin konprimitua)</comment>
- <comment xml:lang="fi">EPS-kuva (gzip-pakattu)</comment>
- <comment xml:lang="fo">EPS mynd (gzip-stappað)</comment>
- <comment xml:lang="fr">image EPS (compressée gzip)</comment>
- <comment xml:lang="ga">íomhá EPS (comhbhrúite le gzip)</comment>
- <comment xml:lang="gl">imaxe EPS (comprimida con gzip)</comment>
- <comment xml:lang="he">תמונת EPS (מכווץ ע״י gzip)</comment>
- <comment xml:lang="hr">EPS slika (gzip sažeta)</comment>
- <comment xml:lang="hu">EPS kép (gzip-tömörítésű)</comment>
- <comment xml:lang="ia">Imagine EPS (comprimite con gzip)</comment>
- <comment xml:lang="id">Citra EPS (terkompresi gzip)</comment>
- <comment xml:lang="it">Immagine EPS (compressa con gzip)</comment>
- <comment xml:lang="ja">EPS 画像 (gzip 圧縮)</comment>
- <comment xml:lang="ka">EPS გამოსახულება (gzip-ით შეკუმშული)</comment>
- <comment xml:lang="kk">EPS суреті (gzip-пен сығылған)</comment>
- <comment xml:lang="ko">EPS 그림(GZIP 압축)</comment>
- <comment xml:lang="lt">EPS paveikslėlis (suglaudintas su gzip)</comment>
- <comment xml:lang="lv">EPS attēls (saspiests ar gzip)</comment>
- <comment xml:lang="nb">EPS-bilde (gzip-komprimert)</comment>
- <comment xml:lang="nl">EPS-afbeelding (ingepakt met gzip)</comment>
- <comment xml:lang="nn">EPS-bilete (pakka med gzip)</comment>
- <comment xml:lang="oc">imatge EPS (compressat gzip)</comment>
- <comment xml:lang="pl">Obraz EPS (kompresja gzip)</comment>
- <comment xml:lang="pt">imagem EPS (compressão gzip)</comment>
- <comment xml:lang="pt_BR">Imagem EPS (compactada com gzip)</comment>
- <comment xml:lang="ro">Imagine EPS (compresie gzip)</comment>
- <comment xml:lang="ru">Изображение EPS (сжатое gzip)</comment>
- <comment xml:lang="sk">Obrázok EPS (komprimovaný pomocou gzip)</comment>
- <comment xml:lang="sl">Slikovna datoteka EPS (stisnjena z gzip)</comment>
- <comment xml:lang="sq">Figurë EPS (e kompresuar me gzip)</comment>
- <comment xml:lang="sr">ЕПС слика (запакована гзип-ом)</comment>
- <comment xml:lang="sv">EPS-bild (gzip-komprimerad)</comment>
- <comment xml:lang="tr">EPS görüntüsü (gzip ile sıkıştırılmış)</comment>
- <comment xml:lang="uk">зображення EPS (стиснене gzip)</comment>
- <comment xml:lang="vi">Ảnh EPS (đã nén gzip)</comment>
+ <comment xml:lang="zh_TW">EPS 影像 (gzip 壓縮)</comment>
<comment xml:lang="zh_CN">EPS 图像(gzip 压缩)</comment>
- <comment xml:lang="zh_TW">EPS 影像 (gzip 格式壓縮)</comment>
+ <comment xml:lang="vi">Ảnh EPS (đã nén gzip)</comment>
+ <comment xml:lang="uk">зображення EPS (стиснене gzip)</comment>
+ <comment xml:lang="tr">EPS görüntüsü (gzip ile sıkıştırılmış)</comment>
+ <comment xml:lang="sv">EPS-bild (gzip-komprimerad)</comment>
+ <comment xml:lang="sr">ЕПС слика (запакована гзип-ом)</comment>
+ <comment xml:lang="sq">figurë EPS (ngjeshur me gzip)</comment>
+ <comment xml:lang="sl">Slikovna datoteka EPS (stisnjena z gzip)</comment>
+ <comment xml:lang="si">EPS රූපය (gzip සම්පීඩිත)</comment>
+ <comment xml:lang="sk">Obrázok EPS (komprimovaný pomocou gzip)</comment>
+ <comment xml:lang="ru">Изображение EPS (сжатое gzip)</comment>
+ <comment xml:lang="ro">Imagine EPS (compresie gzip)</comment>
+ <comment xml:lang="pt_BR">Imagem EPS (compactada com gzip)</comment>
+ <comment xml:lang="pt">imagem EPS (compressão gzip)</comment>
+ <comment xml:lang="pl">Obraz EPS (kompresja gzip)</comment>
+ <comment xml:lang="oc">imatge EPS (compressat gzip)</comment>
+ <comment xml:lang="nn">EPS-bilete (pakka med gzip)</comment>
+ <comment xml:lang="nl">EPS-afbeelding (ingepakt met gzip)</comment>
+ <comment xml:lang="nb">EPS-bilde (gzip-komprimert)</comment>
+ <comment xml:lang="lv">EPS attēls (saspiests ar gzip)</comment>
+ <comment xml:lang="lt">EPS paveikslėlis (suglaudintas su gzip)</comment>
+ <comment xml:lang="ko">EPS 그림(GZIP 압축)</comment>
+ <comment xml:lang="kk">EPS суреті (gzip-пен сығылған)</comment>
+ <comment xml:lang="ka">EPS გამოსახულება (gzip-ით შეკუმშული)</comment>
+ <comment xml:lang="ja">EPS 画像 (gzip 圧縮)</comment>
+ <comment xml:lang="it">Immagine EPS (compressa con gzip)</comment>
+ <comment xml:lang="is">EPS mynd (gzip-þjöppuð)</comment>
+ <comment xml:lang="id">Citra EPS (terkompresi gzip)</comment>
+ <comment xml:lang="ia">Imagine EPS (comprimite con gzip)</comment>
+ <comment xml:lang="hu">EPS kép (gzip tömörítésű)</comment>
+ <comment xml:lang="hr">EPS slika (gzip sažeta)</comment>
+ <comment xml:lang="he">תמונת EPS (מכווץ ע״י gzip)</comment>
+ <comment xml:lang="gl">imaxe EPS (comprimida con gzip)</comment>
+ <comment xml:lang="ga">íomhá EPS (comhbhrúite le gzip)</comment>
+ <comment xml:lang="fur">imagjin EPS (comprimude cun gzip)</comment>
+ <comment xml:lang="fr">image EPS (compressée gzip)</comment>
+ <comment xml:lang="fo">EPS mynd (gzip-stappað)</comment>
+ <comment xml:lang="fi">EPS-kuva (gzip-pakattu)</comment>
+ <comment xml:lang="eu">EPS irudia (gzip-ekin konprimitua)</comment>
+ <comment xml:lang="es">imagen EPS (comprimida con GZIP)</comment>
+ <comment xml:lang="en_GB">EPS image (gzip-compressed)</comment>
+ <comment xml:lang="el">Εικόνα EPS (συμπιεσμένη gzip)</comment>
+ <comment xml:lang="de">EPS-Bild (gzip-komprimiert)</comment>
+ <comment xml:lang="da">EPS-billede (gzip-komprimeret)</comment>
+ <comment xml:lang="cs">obrázek EPS (komprimovaný pomocí gzip)</comment>
+ <comment xml:lang="ca">imatge EPS (amb compressió gzip)</comment>
+ <comment xml:lang="bg">Изображение — EPS, компресирано с gzip</comment>
+ <comment xml:lang="be@latin">Vyjava EPS (gzip-skampresavanaja)</comment>
+ <comment xml:lang="be">выява EPS (сцісканне gzip)</comment>
+ <comment xml:lang="ar">صورة EPS (مضغوط-gzip)</comment>
+ <comment xml:lang="af">EPS-beeld (gzip-saamgepers)</comment>
<sub-class-of type="application/gzip"/>
<glob pattern="*.eps.gz"/>
<glob pattern="*.epsi.gz"/>
@@ -28325,41 +30893,54 @@
</mime-type>
<mime-type type="image/vnd.microsoft.icon">
<comment>Windows icon</comment>
- <comment xml:lang="ca">icona de Windows</comment>
- <comment xml:lang="cs">ikona Windows</comment>
- <comment xml:lang="da">Windows-ikon</comment>
- <comment xml:lang="de">Windows-Symbol</comment>
- <comment xml:lang="el">Εικονίδιο Windows</comment>
- <comment xml:lang="en_GB">Windows icon</comment>
- <comment xml:lang="es">icono de Windows</comment>
- <comment xml:lang="eu">Windows ikonoa</comment>
- <comment xml:lang="fi">Windows-kuvake</comment>
- <comment xml:lang="fr">icône Windows</comment>
- <comment xml:lang="ga">deilbhín Windows</comment>
- <comment xml:lang="he">סמל של Windows</comment>
- <comment xml:lang="hr">Windows ikona</comment>
- <comment xml:lang="hu">Windows ikon</comment>
- <comment xml:lang="ia">Icone pro Windows</comment>
- <comment xml:lang="id">Ikon Windows</comment>
- <comment xml:lang="it">Icona Windows</comment>
- <comment xml:lang="kk">Windows таңбашасы</comment>
- <comment xml:lang="ko">윈도우 아이콘</comment>
- <comment xml:lang="oc">icòna Windows</comment>
- <comment xml:lang="pl">Ikona Windows</comment>
- <comment xml:lang="pt">ícone Windows</comment>
- <comment xml:lang="pt_BR">Ícone do Windows</comment>
- <comment xml:lang="ru">Значок Windows</comment>
- <comment xml:lang="sk">Ikona Windows</comment>
- <comment xml:lang="sl">Ikona Windows</comment>
- <comment xml:lang="sr">Иконица Виндоуза</comment>
- <comment xml:lang="sv">Windows-ikon</comment>
- <comment xml:lang="tr">Windows simgesi</comment>
- <comment xml:lang="uk">піктограма Windows</comment>
- <comment xml:lang="zh_CN">Windows 图标</comment>
<comment xml:lang="zh_TW">Windows 圖示</comment>
- <magic priority="50">
- <match value="\0\0\1\0" type="string" offset="0">
- <match value="\0" type="string" offset="5"/>
+ <comment xml:lang="zh_CN">Windows 图标</comment>
+ <comment xml:lang="uk">піктограма Windows</comment>
+ <comment xml:lang="tr">Windows simgesi</comment>
+ <comment xml:lang="sv">Windows-ikon</comment>
+ <comment xml:lang="sr">Иконица Виндоуза</comment>
+ <comment xml:lang="sq">ikonë Windows</comment>
+ <comment xml:lang="sl">Ikona Windows</comment>
+ <comment xml:lang="si">වින්ඩෝස් නිරූපකය</comment>
+ <comment xml:lang="sk">Ikona Windows</comment>
+ <comment xml:lang="ru">Значок Windows</comment>
+ <comment xml:lang="pt_BR">Ícone do Windows</comment>
+ <comment xml:lang="pt">ícone Windows</comment>
+ <comment xml:lang="pl">Ikona Windows</comment>
+ <comment xml:lang="oc">icòna Windows</comment>
+ <comment xml:lang="nl">Windows-pictogram</comment>
+ <comment xml:lang="lt">Windows piktograma</comment>
+ <comment xml:lang="ko">Windows 아이콘</comment>
+ <comment xml:lang="kk">Windows таңбашасы</comment>
+ <comment xml:lang="ka">Windows icon</comment>
+ <comment xml:lang="ja">Windows アイコン</comment>
+ <comment xml:lang="it">Icona Windows</comment>
+ <comment xml:lang="is">Windows táknmynd</comment>
+ <comment xml:lang="id">Ikon Windows</comment>
+ <comment xml:lang="ia">Icone pro Windows</comment>
+ <comment xml:lang="hu">Windows ikon</comment>
+ <comment xml:lang="hr">Windows ikona</comment>
+ <comment xml:lang="he">סמל של Windows</comment>
+ <comment xml:lang="gl">Icona de Windows</comment>
+ <comment xml:lang="ga">deilbhín Windows</comment>
+ <comment xml:lang="fur">icone Windows</comment>
+ <comment xml:lang="fr">icône Windows</comment>
+ <comment xml:lang="fi">Windows-kuvake</comment>
+ <comment xml:lang="eu">Windows ikonoa</comment>
+ <comment xml:lang="es">icono de Windows</comment>
+ <comment xml:lang="en_GB">Windows icon</comment>
+ <comment xml:lang="el">Εικονίδιο Windows</comment>
+ <comment xml:lang="de">Windows-Symbol</comment>
+ <comment xml:lang="da">Windows-ikon</comment>
+ <comment xml:lang="cs">ikona Windows</comment>
+ <comment xml:lang="ca">icona de Windows</comment>
+ <comment xml:lang="bg">Икона — Windows</comment>
+ <comment xml:lang="be">значок Windows</comment>
+ <comment xml:lang="ar">أيقونة ويندوز</comment>
+ <comment xml:lang="af">Windows-ikoon</comment>
+ <magic>
+ <match type="string" value="\0\0\1\0" offset="0">
+ <match type="string" value="\0" offset="5"/>
</match>
</magic>
<glob pattern="*.ico"/>
@@ -28372,115 +30953,125 @@
</mime-type>
<mime-type type="image/x-icns">
<comment>MacOS X icon</comment>
- <comment xml:lang="ar">أيقونة MacOS X</comment>
- <comment xml:lang="be@latin">Ikona MacOS X</comment>
- <comment xml:lang="bg">Икона — MacOS X</comment>
- <comment xml:lang="ca">icona MacOS X</comment>
- <comment xml:lang="cs">ikona MacOS X</comment>
- <comment xml:lang="da">MacOS X-ikon</comment>
- <comment xml:lang="de">MacOS-X-Symbol</comment>
- <comment xml:lang="el">Εικονίδιο MacOS X</comment>
- <comment xml:lang="en_GB">MacOS X icon</comment>
- <comment xml:lang="eo">MacOS-X-piktogramo</comment>
- <comment xml:lang="es">icono de OS X</comment>
- <comment xml:lang="eu">MacOS X ikonoa</comment>
- <comment xml:lang="fi">MacOS X -kuvake</comment>
- <comment xml:lang="fo">MacOS X ímynd</comment>
- <comment xml:lang="fr">icône MacOS X</comment>
- <comment xml:lang="ga">deilbhín MacOS X</comment>
- <comment xml:lang="gl">Icona de MacOS X</comment>
- <comment xml:lang="he">סמל בתקן MacOS X</comment>
- <comment xml:lang="hr">MacOS X ikona</comment>
- <comment xml:lang="hu">MacOS X ikon</comment>
- <comment xml:lang="ia">Icone de Mac OS X</comment>
- <comment xml:lang="id">Ikon MacOS X</comment>
- <comment xml:lang="it">Icona MacOS X</comment>
- <comment xml:lang="ja">MacOS X アイコン</comment>
- <comment xml:lang="ka">MacOS X-ის ხატულა</comment>
- <comment xml:lang="kk">MacOS X таңбашасы</comment>
- <comment xml:lang="ko">Mac OS X 아이콘</comment>
- <comment xml:lang="lt">MacOS X piktograma</comment>
- <comment xml:lang="lv">MacOS X ikona</comment>
- <comment xml:lang="nb">MacOS X-ikon</comment>
- <comment xml:lang="nl">MacOS-X-pictogram</comment>
- <comment xml:lang="nn">MacOS X-ikon</comment>
- <comment xml:lang="oc">icòna MacOS X</comment>
- <comment xml:lang="pl">Ikona Mac OS X</comment>
- <comment xml:lang="pt">ćone MacOS X</comment>
- <comment xml:lang="pt_BR">Ícone do MacOS X</comment>
- <comment xml:lang="ro">Iconiță MacOS X</comment>
- <comment xml:lang="ru">Значок MacOS X</comment>
- <comment xml:lang="sk">Ikona MacOS X</comment>
- <comment xml:lang="sl">Datoteka ikone MacOS X</comment>
- <comment xml:lang="sq">Ikonë MacOS X</comment>
- <comment xml:lang="sr">МекОС Икс иконица</comment>
- <comment xml:lang="sv">MacOS X-ikon</comment>
- <comment xml:lang="tr">MacOS X simgesi</comment>
- <comment xml:lang="uk">піктограма MacOS X</comment>
- <comment xml:lang="vi">Biểu tượng MacOS X</comment>
- <comment xml:lang="zh_CN">MacOS X 图标</comment>
<comment xml:lang="zh_TW">MacOS X 圖示</comment>
+ <comment xml:lang="zh_CN">MacOS X 图标</comment>
+ <comment xml:lang="vi">Biểu tượng MacOS X</comment>
+ <comment xml:lang="uk">піктограма MacOS X</comment>
+ <comment xml:lang="tr">MacOS X simgesi</comment>
+ <comment xml:lang="sv">MacOS X-ikon</comment>
+ <comment xml:lang="sr">МекОС Икс иконица</comment>
+ <comment xml:lang="sq">ikonë MacOS X</comment>
+ <comment xml:lang="sl">Datoteka ikone MacOS X</comment>
+ <comment xml:lang="si">MacOS X නිරූපකය</comment>
+ <comment xml:lang="sk">Ikona MacOS X</comment>
+ <comment xml:lang="ru">Значок MacOS X</comment>
+ <comment xml:lang="ro">Iconiță MacOS X</comment>
+ <comment xml:lang="pt_BR">Ícone do MacOS X</comment>
+ <comment xml:lang="pt">ícone MacOS X</comment>
+ <comment xml:lang="pl">Ikona Mac OS X</comment>
+ <comment xml:lang="oc">icòna MacOS X</comment>
+ <comment xml:lang="nn">MacOS X-ikon</comment>
+ <comment xml:lang="nl">MacOS-X-pictogram</comment>
+ <comment xml:lang="nb">MacOS X-ikon</comment>
+ <comment xml:lang="lv">MacOS X ikona</comment>
+ <comment xml:lang="lt">MacOS X piktograma</comment>
+ <comment xml:lang="ko">Mac OS X 아이콘</comment>
+ <comment xml:lang="kk">MacOS X таңбашасы</comment>
+ <comment xml:lang="ka">MacOS X-ის ხატულა</comment>
+ <comment xml:lang="ja">MacOS X アイコン</comment>
+ <comment xml:lang="it">Icona MacOS X</comment>
+ <comment xml:lang="is">MacOS X táknmynd</comment>
+ <comment xml:lang="id">Ikon MacOS X</comment>
+ <comment xml:lang="ia">Icone de Mac OS X</comment>
+ <comment xml:lang="hu">MacOS X ikon</comment>
+ <comment xml:lang="hr">MacOS X ikona</comment>
+ <comment xml:lang="he">סמל בתקן MacOS X</comment>
+ <comment xml:lang="gl">Icona de MacOS X</comment>
+ <comment xml:lang="ga">deilbhín MacOS X</comment>
+ <comment xml:lang="fur">icone MacOS X</comment>
+ <comment xml:lang="fr">icône MacOS X</comment>
+ <comment xml:lang="fo">MacOS X ímynd</comment>
+ <comment xml:lang="fi">MacOS X -kuvake</comment>
+ <comment xml:lang="eu">MacOS X ikonoa</comment>
+ <comment xml:lang="es">icono de OS X</comment>
+ <comment xml:lang="eo">MacOS-X-piktogramo</comment>
+ <comment xml:lang="en_GB">MacOS X icon</comment>
+ <comment xml:lang="el">Εικονίδιο MacOS X</comment>
+ <comment xml:lang="de">MacOS-X-Symbol</comment>
+ <comment xml:lang="da">MacOS X-ikon</comment>
+ <comment xml:lang="cs">ikona MacOS X</comment>
+ <comment xml:lang="ca">icona MacOS X</comment>
+ <comment xml:lang="bg">Икона — MacOS X</comment>
+ <comment xml:lang="be@latin">Ikona MacOS X</comment>
+ <comment xml:lang="be">значок MacOS X</comment>
+ <comment xml:lang="ar">أيقونة MacOS X</comment>
+ <comment xml:lang="af">MacOS X-ikoon</comment>
<glob pattern="*.icns"/>
- <magic priority="50">
- <match value="icns" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="icns" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/x-ilbm">
<comment>ILBM image</comment>
- <comment xml:lang="ar">صورة ILBM</comment>
- <comment xml:lang="az">ILBM rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava ILBM</comment>
- <comment xml:lang="bg">Изображение — ILBM</comment>
- <comment xml:lang="ca">imatge ILBM</comment>
- <comment xml:lang="cs">obrázek ILMB</comment>
- <comment xml:lang="cy">Delwedd ILBM</comment>
- <comment xml:lang="da">ILBM-billede</comment>
- <comment xml:lang="de">ILBM-Bild</comment>
- <comment xml:lang="el">Εικόνα ILBM</comment>
- <comment xml:lang="en_GB">ILBM image</comment>
- <comment xml:lang="eo">ILBM-bildo</comment>
- <comment xml:lang="es">imagen ILBM</comment>
- <comment xml:lang="eu">ILBM irudia</comment>
- <comment xml:lang="fi">ILBM-kuva</comment>
- <comment xml:lang="fo">ILBM mynd</comment>
- <comment xml:lang="fr">image ILBM</comment>
- <comment xml:lang="ga">íomhá ILBM</comment>
- <comment xml:lang="gl">imaxe ILBM</comment>
- <comment xml:lang="he">תמונת ILBM</comment>
- <comment xml:lang="hr">ILBM slika</comment>
- <comment xml:lang="hu">ILBM-kép</comment>
- <comment xml:lang="ia">Imagine ILBM</comment>
- <comment xml:lang="id">Citra ILBM</comment>
- <comment xml:lang="it">Immagine ILBM</comment>
- <comment xml:lang="ja">ILBM 画像</comment>
- <comment xml:lang="kk">ILBM суреті</comment>
- <comment xml:lang="ko">ILBM 그림</comment>
- <comment xml:lang="lt">ILBM paveikslėlis</comment>
- <comment xml:lang="lv">ILBM attēls</comment>
- <comment xml:lang="ms">Imej ILBM</comment>
- <comment xml:lang="nb">ILBM-bilde</comment>
- <comment xml:lang="nl">ILBM-afbeelding</comment>
- <comment xml:lang="nn">ILMB-bilete</comment>
- <comment xml:lang="oc">imatge ILBM</comment>
- <comment xml:lang="pl">Obraz ILBM</comment>
- <comment xml:lang="pt">imagem ILBM</comment>
- <comment xml:lang="pt_BR">Imagem ILBM</comment>
- <comment xml:lang="ro">Imagine ILBM</comment>
- <comment xml:lang="ru">Изображение ILBM</comment>
- <comment xml:lang="sk">Obrázok ILMB</comment>
- <comment xml:lang="sl">Slikovna datoteka ILBM</comment>
- <comment xml:lang="sq">Figurë ILBM</comment>
- <comment xml:lang="sr">ИЛБМ слика</comment>
- <comment xml:lang="sv">ILBM-bild</comment>
- <comment xml:lang="tr">ILBM görüntüsü</comment>
- <comment xml:lang="uk">зображення ILBM</comment>
- <comment xml:lang="vi">Ảnh ILBM</comment>
- <comment xml:lang="zh_CN">ILBM 图像</comment>
<comment xml:lang="zh_TW">ILBM 影像</comment>
+ <comment xml:lang="zh_CN">ILBM 图像</comment>
+ <comment xml:lang="vi">Ảnh ILBM</comment>
+ <comment xml:lang="uk">зображення ILBM</comment>
+ <comment xml:lang="tr">ILBM görüntüsü</comment>
+ <comment xml:lang="sv">ILBM-bild</comment>
+ <comment xml:lang="sr">ИЛБМ слика</comment>
+ <comment xml:lang="sq">figurë ILBM</comment>
+ <comment xml:lang="sl">Slikovna datoteka ILBM</comment>
+ <comment xml:lang="si">ILBM රූපය</comment>
+ <comment xml:lang="sk">Obrázok ILMB</comment>
+ <comment xml:lang="ru">Изображение ILBM</comment>
+ <comment xml:lang="ro">Imagine ILBM</comment>
+ <comment xml:lang="pt_BR">Imagem ILBM</comment>
+ <comment xml:lang="pt">imagem ILBM</comment>
+ <comment xml:lang="pl">Obraz ILBM</comment>
+ <comment xml:lang="oc">imatge ILBM</comment>
+ <comment xml:lang="nn">ILMB-bilete</comment>
+ <comment xml:lang="nl">ILBM-afbeelding</comment>
+ <comment xml:lang="nb">ILBM-bilde</comment>
+ <comment xml:lang="ms">Imej ILBM</comment>
+ <comment xml:lang="lv">ILBM attēls</comment>
+ <comment xml:lang="lt">ILBM paveikslėlis</comment>
+ <comment xml:lang="ko">ILBM 그림</comment>
+ <comment xml:lang="kk">ILBM суреті</comment>
+ <comment xml:lang="ja">ILBM 画像</comment>
+ <comment xml:lang="it">Immagine ILBM</comment>
+ <comment xml:lang="is">ILBM mynd</comment>
+ <comment xml:lang="id">Citra ILBM</comment>
+ <comment xml:lang="ia">Imagine ILBM</comment>
+ <comment xml:lang="hu">ILBM-kép</comment>
+ <comment xml:lang="hr">ILBM slika</comment>
+ <comment xml:lang="he">תמונת ILBM</comment>
+ <comment xml:lang="gl">imaxe ILBM</comment>
+ <comment xml:lang="ga">íomhá ILBM</comment>
+ <comment xml:lang="fur">imagjin ILBM</comment>
+ <comment xml:lang="fr">image ILBM</comment>
+ <comment xml:lang="fo">ILBM mynd</comment>
+ <comment xml:lang="fi">ILBM-kuva</comment>
+ <comment xml:lang="eu">ILBM irudia</comment>
+ <comment xml:lang="es">imagen ILBM</comment>
+ <comment xml:lang="eo">ILBM-bildo</comment>
+ <comment xml:lang="en_GB">ILBM image</comment>
+ <comment xml:lang="el">Εικόνα ILBM</comment>
+ <comment xml:lang="de">ILBM-Bild</comment>
+ <comment xml:lang="da">ILBM-billede</comment>
+ <comment xml:lang="cy">Delwedd ILBM</comment>
+ <comment xml:lang="cs">obrázek ILMB</comment>
+ <comment xml:lang="ca">imatge ILBM</comment>
+ <comment xml:lang="bg">Изображение — ILBM</comment>
+ <comment xml:lang="be@latin">Vyjava ILBM</comment>
+ <comment xml:lang="be">выява ILBM</comment>
+ <comment xml:lang="az">ILBM rəsmi</comment>
+ <comment xml:lang="ar">صورة ILBM</comment>
+ <comment xml:lang="af">ILBM-beeld</comment>
<acronym>ILBM</acronym>
<expanded-acronym>InterLeaved BitMap</expanded-acronym>
<sub-class-of type="application/x-iff"/>
- <magic priority="50">
+ <magic>
<match value="ILBM" type="string" offset="8"/>
<match value="PBM " type="string" offset="8"/>
</magic>
@@ -28491,379 +31082,416 @@
</mime-type>
<mime-type type="image/x-jng">
<comment>JNG image</comment>
- <comment xml:lang="ar">صورة JNG</comment>
- <comment xml:lang="az">JNG rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava JNG</comment>
- <comment xml:lang="bg">Изображение — JNG</comment>
- <comment xml:lang="ca">imatge JNG</comment>
- <comment xml:lang="cs">obrázek JNG</comment>
- <comment xml:lang="cy">Delwedd JNG</comment>
- <comment xml:lang="da">JNG-billede</comment>
- <comment xml:lang="de">JNG-Bild</comment>
- <comment xml:lang="el">Εικόνα JNG</comment>
- <comment xml:lang="en_GB">JNG image</comment>
- <comment xml:lang="eo">JNG-bildo</comment>
- <comment xml:lang="es">imagen JNG</comment>
- <comment xml:lang="eu">JNG irudia</comment>
- <comment xml:lang="fi">JNG-kuva</comment>
- <comment xml:lang="fo">JNG mynd</comment>
- <comment xml:lang="fr">image JNG</comment>
- <comment xml:lang="ga">íomhá JNG</comment>
- <comment xml:lang="gl">imaxe JNG</comment>
- <comment xml:lang="he">תמונת JNG</comment>
- <comment xml:lang="hr">JNG slika</comment>
- <comment xml:lang="hu">JNG-kép</comment>
- <comment xml:lang="ia">Imagine JNG</comment>
- <comment xml:lang="id">Citra JNG</comment>
- <comment xml:lang="it">Immagine JNG</comment>
- <comment xml:lang="ja">JNG 画像</comment>
- <comment xml:lang="kk">JNG суреті</comment>
- <comment xml:lang="ko">JNG 그림</comment>
- <comment xml:lang="lt">JNG paveikslėlis</comment>
- <comment xml:lang="lv">JNG attēls</comment>
- <comment xml:lang="ms">Imej PNG</comment>
- <comment xml:lang="nb">JNG-bilde</comment>
- <comment xml:lang="nl">JNG-afbeelding</comment>
- <comment xml:lang="nn">JNG-bilete</comment>
- <comment xml:lang="oc">imatge JNG</comment>
- <comment xml:lang="pl">Obraz JNG</comment>
- <comment xml:lang="pt">imagem JNG</comment>
- <comment xml:lang="pt_BR">Imagem JNG</comment>
- <comment xml:lang="ro">Imagine JNG</comment>
- <comment xml:lang="ru">Изображение JNG</comment>
- <comment xml:lang="sk">Obrázok JNG</comment>
- <comment xml:lang="sl">Slikovna datoteka JNG</comment>
- <comment xml:lang="sq">Figurë JNG</comment>
- <comment xml:lang="sr">ЈНГ слика</comment>
- <comment xml:lang="sv">JNG-bild</comment>
- <comment xml:lang="tr">JNG görüntüsü</comment>
- <comment xml:lang="uk">зображення JNG</comment>
- <comment xml:lang="vi">Ảnh JNG</comment>
- <comment xml:lang="zh_CN">JNG 图像</comment>
<comment xml:lang="zh_TW">JNG 影像</comment>
+ <comment xml:lang="zh_CN">JNG 图像</comment>
+ <comment xml:lang="vi">Ảnh JNG</comment>
+ <comment xml:lang="uk">зображення JNG</comment>
+ <comment xml:lang="tr">JNG görüntüsü</comment>
+ <comment xml:lang="sv">JNG-bild</comment>
+ <comment xml:lang="sr">ЈНГ слика</comment>
+ <comment xml:lang="sq">figurë JNG</comment>
+ <comment xml:lang="sl">Slikovna datoteka JNG</comment>
+ <comment xml:lang="si">JNG රූපය</comment>
+ <comment xml:lang="sk">Obrázok JNG</comment>
+ <comment xml:lang="ru">Изображение JNG</comment>
+ <comment xml:lang="ro">Imagine JNG</comment>
+ <comment xml:lang="pt_BR">Imagem JNG</comment>
+ <comment xml:lang="pt">imagem JNG</comment>
+ <comment xml:lang="pl">Obraz JNG</comment>
+ <comment xml:lang="oc">imatge JNG</comment>
+ <comment xml:lang="nn">JNG-bilete</comment>
+ <comment xml:lang="nl">JNG-afbeelding</comment>
+ <comment xml:lang="nb">JNG-bilde</comment>
+ <comment xml:lang="ms">Imej PNG</comment>
+ <comment xml:lang="lv">JNG attēls</comment>
+ <comment xml:lang="lt">JNG paveikslėlis</comment>
+ <comment xml:lang="ko">JNG 그림</comment>
+ <comment xml:lang="kk">JNG суреті</comment>
+ <comment xml:lang="ja">JNG 画像</comment>
+ <comment xml:lang="it">Immagine JNG</comment>
+ <comment xml:lang="is">JNG mynd</comment>
+ <comment xml:lang="id">Citra JNG</comment>
+ <comment xml:lang="ia">Imagine JNG</comment>
+ <comment xml:lang="hu">JNG-kép</comment>
+ <comment xml:lang="hr">JNG slika</comment>
+ <comment xml:lang="he">תמונת JNG</comment>
+ <comment xml:lang="gl">imaxe JNG</comment>
+ <comment xml:lang="ga">íomhá JNG</comment>
+ <comment xml:lang="fur">imagjin JNG</comment>
+ <comment xml:lang="fr">image JNG</comment>
+ <comment xml:lang="fo">JNG mynd</comment>
+ <comment xml:lang="fi">JNG-kuva</comment>
+ <comment xml:lang="eu">JNG irudia</comment>
+ <comment xml:lang="es">imagen JNG</comment>
+ <comment xml:lang="eo">JNG-bildo</comment>
+ <comment xml:lang="en_GB">JNG image</comment>
+ <comment xml:lang="el">Εικόνα JNG</comment>
+ <comment xml:lang="de">JNG-Bild</comment>
+ <comment xml:lang="da">JNG-billede</comment>
+ <comment xml:lang="cy">Delwedd JNG</comment>
+ <comment xml:lang="cs">obrázek JNG</comment>
+ <comment xml:lang="ca">imatge JNG</comment>
+ <comment xml:lang="bg">Изображение — JNG</comment>
+ <comment xml:lang="be@latin">Vyjava JNG</comment>
+ <comment xml:lang="be">выява JNG</comment>
+ <comment xml:lang="az">JNG rəsmi</comment>
+ <comment xml:lang="ar">صورة JNG</comment>
+ <comment xml:lang="af">JNG-beeld</comment>
<acronym>JNG</acronym>
<expanded-acronym>JPEG Network Graphics</expanded-acronym>
<glob pattern="*.jng"/>
</mime-type>
<mime-type type="image/x-lwo">
<comment>LightWave object</comment>
- <comment xml:lang="ar">كائن LightWave</comment>
- <comment xml:lang="az">LightWave cismi</comment>
- <comment xml:lang="be@latin">Abjekt LightWave</comment>
- <comment xml:lang="bg">Обект — LightWave</comment>
- <comment xml:lang="ca">objecte de LightWave</comment>
- <comment xml:lang="cs">objekt LightWave</comment>
- <comment xml:lang="cy">Gwrthrych LightWave</comment>
- <comment xml:lang="da">LightWave-objekt</comment>
- <comment xml:lang="de">LightWave-Objekt</comment>
- <comment xml:lang="el">Αντικείμενο LightWave</comment>
- <comment xml:lang="en_GB">LightWave object</comment>
- <comment xml:lang="eo">LightWave-objekto</comment>
- <comment xml:lang="es">objeto de LightWave</comment>
- <comment xml:lang="eu">LightWave objektua</comment>
- <comment xml:lang="fi">LightWave-esine</comment>
- <comment xml:lang="fo">LightWave lutur</comment>
- <comment xml:lang="fr">objet LightWave</comment>
- <comment xml:lang="ga">réad LightWave</comment>
- <comment xml:lang="gl">obxecto de LightWave</comment>
- <comment xml:lang="he">עצם LightWave</comment>
- <comment xml:lang="hr">LightWave objekt</comment>
- <comment xml:lang="hu">LightWave-objektum</comment>
- <comment xml:lang="ia">Objecto LightWave</comment>
- <comment xml:lang="id">Proyek LightWave</comment>
- <comment xml:lang="it">Oggetto LightWave</comment>
- <comment xml:lang="ja">LightWave オブジェクト</comment>
- <comment xml:lang="kk">LightWave объекті</comment>
- <comment xml:lang="ko">LightWave 개체</comment>
- <comment xml:lang="lt">LightWave objektas</comment>
- <comment xml:lang="lv">LightWave objekts</comment>
- <comment xml:lang="ms">Objek LightWave</comment>
- <comment xml:lang="nb">LightWave-objekt</comment>
- <comment xml:lang="nl">LightWave-object</comment>
- <comment xml:lang="nn">LightWave-objekt</comment>
- <comment xml:lang="oc">objècte LightWave</comment>
- <comment xml:lang="pl">Obiekt LightWave</comment>
- <comment xml:lang="pt">Objecto LightWave</comment>
- <comment xml:lang="pt_BR">Objeto LightWave</comment>
- <comment xml:lang="ro">Obiect LightWave</comment>
- <comment xml:lang="ru">Объект LightWave</comment>
- <comment xml:lang="sk">Objekt LightWave</comment>
- <comment xml:lang="sl">Datoteka predmeta LightWave</comment>
- <comment xml:lang="sq">Objekt LightWave</comment>
- <comment xml:lang="sr">Лајт Вејв објекат</comment>
- <comment xml:lang="sv">LightWave-objekt</comment>
- <comment xml:lang="tr">LightWave nesnesi</comment>
- <comment xml:lang="uk">об'єкт LightWave</comment>
- <comment xml:lang="vi">Đối tượng LightWave</comment>
- <comment xml:lang="zh_CN">LightWave 对象</comment>
<comment xml:lang="zh_TW">LightWave 物件</comment>
+ <comment xml:lang="zh_CN">LightWave 对象</comment>
+ <comment xml:lang="vi">Đối tượng LightWave</comment>
+ <comment xml:lang="uk">об'єкт LightWave</comment>
+ <comment xml:lang="tr">LightWave nesnesi</comment>
+ <comment xml:lang="sv">LightWave-objekt</comment>
+ <comment xml:lang="sr">Лајт Вејв објекат</comment>
+ <comment xml:lang="sq">objekt LightWave</comment>
+ <comment xml:lang="sl">Datoteka predmeta LightWave</comment>
+ <comment xml:lang="si">LightWave වස්තුව</comment>
+ <comment xml:lang="sk">Objekt LightWave</comment>
+ <comment xml:lang="ru">Объект LightWave</comment>
+ <comment xml:lang="ro">Obiect LightWave</comment>
+ <comment xml:lang="pt_BR">Objeto LightWave</comment>
+ <comment xml:lang="pt">Objecto LightWave</comment>
+ <comment xml:lang="pl">Obiekt LightWave</comment>
+ <comment xml:lang="oc">objècte LightWave</comment>
+ <comment xml:lang="nn">LightWave-objekt</comment>
+ <comment xml:lang="nl">LightWave-object</comment>
+ <comment xml:lang="nb">LightWave-objekt</comment>
+ <comment xml:lang="ms">Objek LightWave</comment>
+ <comment xml:lang="lv">LightWave objekts</comment>
+ <comment xml:lang="lt">LightWave objektas</comment>
+ <comment xml:lang="ko">LightWave 개체</comment>
+ <comment xml:lang="kk">LightWave объекті</comment>
+ <comment xml:lang="ja">LightWave オブジェクト</comment>
+ <comment xml:lang="it">Oggetto LightWave</comment>
+ <comment xml:lang="is">LightWave hlutur</comment>
+ <comment xml:lang="id">Proyek LightWave</comment>
+ <comment xml:lang="ia">Objecto LightWave</comment>
+ <comment xml:lang="hu">LightWave-objektum</comment>
+ <comment xml:lang="hr">LightWave objekt</comment>
+ <comment xml:lang="he">עצם LightWave</comment>
+ <comment xml:lang="gl">obxecto de LightWave</comment>
+ <comment xml:lang="ga">réad LightWave</comment>
+ <comment xml:lang="fur">ogjet LightWave</comment>
+ <comment xml:lang="fr">objet LightWave</comment>
+ <comment xml:lang="fo">LightWave lutur</comment>
+ <comment xml:lang="fi">LightWave-esine</comment>
+ <comment xml:lang="eu">LightWave objektua</comment>
+ <comment xml:lang="es">objeto de LightWave</comment>
+ <comment xml:lang="eo">LightWave-objekto</comment>
+ <comment xml:lang="en_GB">LightWave object</comment>
+ <comment xml:lang="el">Αντικείμενο LightWave</comment>
+ <comment xml:lang="de">LightWave-Objekt</comment>
+ <comment xml:lang="da">LightWave-objekt</comment>
+ <comment xml:lang="cy">Gwrthrych LightWave</comment>
+ <comment xml:lang="cs">objekt LightWave</comment>
+ <comment xml:lang="ca">objecte de LightWave</comment>
+ <comment xml:lang="bg">Обект — LightWave</comment>
+ <comment xml:lang="be@latin">Abjekt LightWave</comment>
+ <comment xml:lang="be">аб'ект LightWave</comment>
+ <comment xml:lang="az">LightWave cismi</comment>
+ <comment xml:lang="ar">كائن LightWave</comment>
+ <comment xml:lang="af">LightWave-objek</comment>
<glob pattern="*.lwo"/>
<glob pattern="*.lwob"/>
</mime-type>
<mime-type type="image/x-lws">
<comment>LightWave scene</comment>
- <comment xml:lang="ar">مشهد LightWave</comment>
- <comment xml:lang="az">LightWave səhnəsi</comment>
- <comment xml:lang="be@latin">Scena LightWave</comment>
- <comment xml:lang="bg">Сцена — LightWave</comment>
- <comment xml:lang="ca">escena de LightWave</comment>
- <comment xml:lang="cs">scéna LightWave</comment>
- <comment xml:lang="cy">Golygfa LightWave</comment>
- <comment xml:lang="da">LightWave-scene</comment>
- <comment xml:lang="de">LightWave-Szene</comment>
- <comment xml:lang="el">Σκηνή LightWave</comment>
- <comment xml:lang="en_GB">LightWave scene</comment>
- <comment xml:lang="eo">LightWave-sceno</comment>
- <comment xml:lang="es">escena de LightWave</comment>
- <comment xml:lang="eu">LightWave eszena</comment>
- <comment xml:lang="fi">LightWave-maisema</comment>
- <comment xml:lang="fo">LightWave leikmynd</comment>
- <comment xml:lang="fr">scène LightWave</comment>
- <comment xml:lang="ga">radharc LightWave</comment>
- <comment xml:lang="gl">escena de LightWave</comment>
- <comment xml:lang="he">סצנה של LightWave</comment>
- <comment xml:lang="hr">LightWave scena</comment>
- <comment xml:lang="hu">LightWave-jelenet</comment>
- <comment xml:lang="ia">Scena LightWave</comment>
- <comment xml:lang="id">Scene LightWave</comment>
- <comment xml:lang="it">Scena LightWave</comment>
- <comment xml:lang="ja">LightWave シーン</comment>
- <comment xml:lang="kk">LightWave сахнасы</comment>
- <comment xml:lang="ko">LightWave 장면</comment>
- <comment xml:lang="lt">LightWave scena</comment>
- <comment xml:lang="lv">LightWave aina</comment>
- <comment xml:lang="ms">Babak LightWave</comment>
- <comment xml:lang="nb">LightWave-scene</comment>
- <comment xml:lang="nl">LightWave-scène</comment>
- <comment xml:lang="nn">LightWave-scene</comment>
- <comment xml:lang="oc">scèna LightWave</comment>
- <comment xml:lang="pl">Scena Lightwave</comment>
- <comment xml:lang="pt">cenário LightWave</comment>
- <comment xml:lang="pt_BR">Cena LightWave</comment>
- <comment xml:lang="ro">Scenă LightWave</comment>
- <comment xml:lang="ru">Сцена LightWave</comment>
- <comment xml:lang="sk">Scéna LightWave</comment>
- <comment xml:lang="sl">Datoteka scene LightWave</comment>
- <comment xml:lang="sq">Skenë LightWave</comment>
- <comment xml:lang="sr">Лајт Вејв сцена</comment>
- <comment xml:lang="sv">LightWave-scen</comment>
- <comment xml:lang="tr">LightWave sahnesi</comment>
- <comment xml:lang="uk">сцена LightWave</comment>
- <comment xml:lang="vi">Cảnh LightWave</comment>
- <comment xml:lang="zh_CN">LightWave 场景</comment>
<comment xml:lang="zh_TW">LightWave 場景</comment>
+ <comment xml:lang="zh_CN">LightWave 场景</comment>
+ <comment xml:lang="vi">Cảnh LightWave</comment>
+ <comment xml:lang="uk">сцена LightWave</comment>
+ <comment xml:lang="tr">LightWave sahnesi</comment>
+ <comment xml:lang="sv">LightWave-scen</comment>
+ <comment xml:lang="sr">Лајт Вејв сцена</comment>
+ <comment xml:lang="sq">skenë LightWave</comment>
+ <comment xml:lang="sl">Datoteka scene LightWave</comment>
+ <comment xml:lang="si">LightWave දර්ශනය</comment>
+ <comment xml:lang="sk">Scéna LightWave</comment>
+ <comment xml:lang="ru">Сцена LightWave</comment>
+ <comment xml:lang="ro">Scenă LightWave</comment>
+ <comment xml:lang="pt_BR">Cena LightWave</comment>
+ <comment xml:lang="pt">cenário LightWave</comment>
+ <comment xml:lang="pl">Scena Lightwave</comment>
+ <comment xml:lang="oc">scèna LightWave</comment>
+ <comment xml:lang="nn">LightWave-scene</comment>
+ <comment xml:lang="nl">LightWave-scène</comment>
+ <comment xml:lang="nb">LightWave-scene</comment>
+ <comment xml:lang="ms">Babak LightWave</comment>
+ <comment xml:lang="lv">LightWave aina</comment>
+ <comment xml:lang="lt">LightWave scena</comment>
+ <comment xml:lang="ko">LightWave 장면</comment>
+ <comment xml:lang="kk">LightWave сахнасы</comment>
+ <comment xml:lang="ja">LightWave シーン</comment>
+ <comment xml:lang="it">Scena LightWave</comment>
+ <comment xml:lang="is">LightWave sviðsmynd</comment>
+ <comment xml:lang="id">Scene LightWave</comment>
+ <comment xml:lang="ia">Scena LightWave</comment>
+ <comment xml:lang="hu">LightWave-jelenet</comment>
+ <comment xml:lang="hr">LightWave scena</comment>
+ <comment xml:lang="he">סצנה של LightWave</comment>
+ <comment xml:lang="gl">escena de LightWave</comment>
+ <comment xml:lang="ga">radharc LightWave</comment>
+ <comment xml:lang="fur">sene LightWave</comment>
+ <comment xml:lang="fr">scène LightWave</comment>
+ <comment xml:lang="fo">LightWave leikmynd</comment>
+ <comment xml:lang="fi">LightWave-maisema</comment>
+ <comment xml:lang="eu">LightWave eszena</comment>
+ <comment xml:lang="es">escena de LightWave</comment>
+ <comment xml:lang="eo">LightWave-sceno</comment>
+ <comment xml:lang="en_GB">LightWave scene</comment>
+ <comment xml:lang="el">Σκηνή LightWave</comment>
+ <comment xml:lang="de">LightWave-Szene</comment>
+ <comment xml:lang="da">LightWave-scene</comment>
+ <comment xml:lang="cy">Golygfa LightWave</comment>
+ <comment xml:lang="cs">scéna LightWave</comment>
+ <comment xml:lang="ca">escena de LightWave</comment>
+ <comment xml:lang="bg">Сцена — LightWave</comment>
+ <comment xml:lang="be@latin">Scena LightWave</comment>
+ <comment xml:lang="be">сцэна LightWave</comment>
+ <comment xml:lang="az">LightWave səhnəsi</comment>
+ <comment xml:lang="ar">مشهد LightWave</comment>
+ <comment xml:lang="af">LightWave-toneel</comment>
<glob pattern="*.lws"/>
</mime-type>
<mime-type type="image/x-macpaint">
<comment>MacPaint Bitmap image</comment>
- <comment xml:lang="ar">صورة MacPaint Bitmap</comment>
- <comment xml:lang="be@latin">Bitmapnaja vyjava MacPaint</comment>
- <comment xml:lang="bg">Изображение — MacPaint Bitmap</comment>
- <comment xml:lang="ca">imatge de mapa de bits MacPaint</comment>
- <comment xml:lang="cs">obrázek MacPaint Bitmap</comment>
- <comment xml:lang="da">MacPaint BitMap-billede</comment>
- <comment xml:lang="de">MacPaint-Bitmap-Datei</comment>
- <comment xml:lang="el">Εικόνα Bitmap MacPaint</comment>
- <comment xml:lang="en_GB">MacPaint Bitmap image</comment>
- <comment xml:lang="es">imagen de mapa de bits de MacPaint</comment>
- <comment xml:lang="eu">MacPaint Bitmap irudia</comment>
- <comment xml:lang="fi">MacPaint-bittikartta</comment>
- <comment xml:lang="fo">MacPaint Bitmap mynd</comment>
- <comment xml:lang="fr">image matricielle MacPaint</comment>
- <comment xml:lang="ga">íomhá ghiotánmhapach MacPaint</comment>
- <comment xml:lang="gl">imaxe de mapa de bits MacPaint</comment>
- <comment xml:lang="he">תמונת מפת-סיביות של MacPaint</comment>
- <comment xml:lang="hr">MacPaint Bitmap slika</comment>
- <comment xml:lang="hu">MacPaint bitkép</comment>
- <comment xml:lang="ia">Imagine bitmap de MacPaint</comment>
- <comment xml:lang="id">Citra MacPaint Bitmap</comment>
- <comment xml:lang="it">Immagine Bitmap MacPaint</comment>
- <comment xml:lang="ja">MacPaint ビットマップ画像</comment>
- <comment xml:lang="kk">MacPaint растрлық суреті</comment>
- <comment xml:lang="ko">MacPaint 비트맵 그림</comment>
- <comment xml:lang="lt">MacPaint rastrinis paveikslėlis</comment>
- <comment xml:lang="lv">MacPaint bitkartes attēls</comment>
- <comment xml:lang="nb">MacPaint Bitmap-bilde</comment>
- <comment xml:lang="nl">MacPaint-bitmap-afbeelding</comment>
- <comment xml:lang="nn">MacPaint punktbilete</comment>
- <comment xml:lang="oc">imatge matricial MacPaint</comment>
- <comment xml:lang="pl">Obraz bitmapowy MacPaint</comment>
- <comment xml:lang="pt">imagem MacPaint Bitmap</comment>
- <comment xml:lang="pt_BR">Imagem de bitmap do MacPaint</comment>
- <comment xml:lang="ro">Imagine MacPaint Bitmap</comment>
- <comment xml:lang="ru">Растровое изображение MacPaint</comment>
- <comment xml:lang="sk">Obrázok MacPaint Bitmap</comment>
- <comment xml:lang="sl">Slikovna bitna datoteka MacPaint</comment>
- <comment xml:lang="sq">Figurë BitMap MacPaint</comment>
- <comment xml:lang="sr">Мек Пеинт битмап слика</comment>
- <comment xml:lang="sv">MacPaint Bitmap-bild</comment>
- <comment xml:lang="tr">MacPaint bit eşlem görüntüsü</comment>
- <comment xml:lang="uk">растрове зображення MacPaint</comment>
- <comment xml:lang="vi">Ảnh mảng MacPaint</comment>
- <comment xml:lang="zh_CN">MacPaint 位图</comment>
<comment xml:lang="zh_TW">MacPaint 點陣影像</comment>
+ <comment xml:lang="zh_CN">MacPaint 位图</comment>
+ <comment xml:lang="vi">Ảnh mảng MacPaint</comment>
+ <comment xml:lang="uk">растрове зображення MacPaint</comment>
+ <comment xml:lang="tr">MacPaint bit eşlem görüntüsü</comment>
+ <comment xml:lang="sv">MacPaint Bitmap-bild</comment>
+ <comment xml:lang="sr">Мек Пеинт битмап слика</comment>
+ <comment xml:lang="sq">figurë BitMap MacPaint</comment>
+ <comment xml:lang="sl">Slikovna bitna datoteka MacPaint</comment>
+ <comment xml:lang="si">MacPaint Bitmap රූපය</comment>
+ <comment xml:lang="sk">Obrázok MacPaint Bitmap</comment>
+ <comment xml:lang="ru">Растровое изображение MacPaint</comment>
+ <comment xml:lang="ro">Imagine MacPaint Bitmap</comment>
+ <comment xml:lang="pt_BR">Imagem de bitmap do MacPaint</comment>
+ <comment xml:lang="pt">imagem MacPaint Bitmap</comment>
+ <comment xml:lang="pl">Obraz bitmapowy MacPaint</comment>
+ <comment xml:lang="oc">imatge matricial MacPaint</comment>
+ <comment xml:lang="nn">MacPaint punktbilete</comment>
+ <comment xml:lang="nl">MacPaint-bitmap-afbeelding</comment>
+ <comment xml:lang="nb">MacPaint Bitmap-bilde</comment>
+ <comment xml:lang="lv">MacPaint bitkartes attēls</comment>
+ <comment xml:lang="lt">MacPaint rastrinis paveikslėlis</comment>
+ <comment xml:lang="ko">MacPaint 비트맵 그림</comment>
+ <comment xml:lang="kk">MacPaint растрлық суреті</comment>
+ <comment xml:lang="ja">MacPaint ビットマップ画像</comment>
+ <comment xml:lang="it">Immagine Bitmap MacPaint</comment>
+ <comment xml:lang="is">MacPaint bitamynd</comment>
+ <comment xml:lang="id">Citra MacPaint Bitmap</comment>
+ <comment xml:lang="ia">Imagine bitmap de MacPaint</comment>
+ <comment xml:lang="hu">MacPaint bitkép</comment>
+ <comment xml:lang="hr">MacPaint Bitmap slika</comment>
+ <comment xml:lang="he">תמונת מפת-סיביות של MacPaint</comment>
+ <comment xml:lang="gl">imaxe de mapa de bits MacPaint</comment>
+ <comment xml:lang="ga">íomhá ghiotánmhapach MacPaint</comment>
+ <comment xml:lang="fur">imagjin bitmap MacPaint</comment>
+ <comment xml:lang="fr">image matricielle MacPaint</comment>
+ <comment xml:lang="fo">MacPaint Bitmap mynd</comment>
+ <comment xml:lang="fi">MacPaint-bittikartta</comment>
+ <comment xml:lang="eu">MacPaint Bitmap irudia</comment>
+ <comment xml:lang="es">imagen de mapa de bits de MacPaint</comment>
+ <comment xml:lang="en_GB">MacPaint Bitmap image</comment>
+ <comment xml:lang="el">Εικόνα Bitmap MacPaint</comment>
+ <comment xml:lang="de">MacPaint-Bitmap-Datei</comment>
+ <comment xml:lang="da">MacPaint BitMap-billede</comment>
+ <comment xml:lang="cs">obrázek MacPaint Bitmap</comment>
+ <comment xml:lang="ca">imatge de mapa de bits MacPaint</comment>
+ <comment xml:lang="bg">Изображение — MacPaint Bitmap</comment>
+ <comment xml:lang="be@latin">Bitmapnaja vyjava MacPaint</comment>
+ <comment xml:lang="be">растравая выява MacPaint</comment>
+ <comment xml:lang="ar">صورة MacPaint Bitmap</comment>
+ <comment xml:lang="af">MacPaint-roosterbeeld</comment>
<glob pattern="*.pntg"/>
</mime-type>
<mime-type type="image/x-msod">
<comment>Office drawing</comment>
- <comment xml:lang="ar">تصميم أوفيس</comment>
- <comment xml:lang="be@latin">Ofisny rysunak</comment>
- <comment xml:lang="bg">Чертеж — Office</comment>
- <comment xml:lang="ca">dibuix d'Office</comment>
- <comment xml:lang="cs">kresba Office</comment>
- <comment xml:lang="da">Officetegning</comment>
- <comment xml:lang="de">Office-Zeichnung</comment>
- <comment xml:lang="el">Σχέδιο Office</comment>
- <comment xml:lang="en_GB">Office drawing</comment>
- <comment xml:lang="es">dibujo de Office</comment>
- <comment xml:lang="eu">Office marrazkia</comment>
- <comment xml:lang="fi">Office-piirros</comment>
- <comment xml:lang="fo">Office tekning</comment>
- <comment xml:lang="fr">dessin Office</comment>
- <comment xml:lang="ga">líníocht Office</comment>
- <comment xml:lang="gl">debuxo de Office</comment>
- <comment xml:lang="he">ציור של Office</comment>
- <comment xml:lang="hr">Office crtež</comment>
- <comment xml:lang="hu">Office rajz</comment>
- <comment xml:lang="ia">Designo Office</comment>
- <comment xml:lang="id">Gambar Office</comment>
- <comment xml:lang="it">Disegno Office</comment>
- <comment xml:lang="ja">Office ドロー</comment>
- <comment xml:lang="kk">Office суреті</comment>
- <comment xml:lang="ko">오피스 그리기</comment>
- <comment xml:lang="lt">Office piešinys</comment>
- <comment xml:lang="lv">Office zīmējums</comment>
- <comment xml:lang="nb">Office-tegning</comment>
- <comment xml:lang="nl">Office-tekening</comment>
- <comment xml:lang="nn">Office-teikning</comment>
- <comment xml:lang="oc">dessenh Office</comment>
- <comment xml:lang="pl">Rysunek Office</comment>
- <comment xml:lang="pt">desenho Office</comment>
- <comment xml:lang="pt_BR">Desenho do Office</comment>
- <comment xml:lang="ro">Desen Office</comment>
- <comment xml:lang="ru">Рисунок Office</comment>
- <comment xml:lang="sk">Kresba Office</comment>
- <comment xml:lang="sl">Datoteka risbe Office</comment>
- <comment xml:lang="sq">Vizatim Office</comment>
- <comment xml:lang="sr">Канцеларијски цртеж</comment>
- <comment xml:lang="sv">Office-teckning</comment>
- <comment xml:lang="tr">Ofis çizimi</comment>
- <comment xml:lang="uk">малюнок Office</comment>
- <comment xml:lang="vi">Bản vẽ Office</comment>
- <comment xml:lang="zh_CN">Office 绘图</comment>
<comment xml:lang="zh_TW">Office 繪圖</comment>
+ <comment xml:lang="zh_CN">Office 绘图</comment>
+ <comment xml:lang="vi">Bản vẽ Office</comment>
+ <comment xml:lang="uk">малюнок Office</comment>
+ <comment xml:lang="tr">Ofis çizimi</comment>
+ <comment xml:lang="sv">Office-teckning</comment>
+ <comment xml:lang="sr">Канцеларијски цртеж</comment>
+ <comment xml:lang="sq">vizatim Office</comment>
+ <comment xml:lang="sl">Datoteka risbe Office</comment>
+ <comment xml:lang="si">කාර්යාල ඇඳීම</comment>
+ <comment xml:lang="sk">Kresba Office</comment>
+ <comment xml:lang="ru">Рисунок Office</comment>
+ <comment xml:lang="ro">Desen Office</comment>
+ <comment xml:lang="pt_BR">Desenho do Office</comment>
+ <comment xml:lang="pt">desenho Office</comment>
+ <comment xml:lang="pl">Rysunek Office</comment>
+ <comment xml:lang="oc">dessenh Office</comment>
+ <comment xml:lang="nn">Office-teikning</comment>
+ <comment xml:lang="nl">Office-tekening</comment>
+ <comment xml:lang="nb">Office-tegning</comment>
+ <comment xml:lang="lv">Office zīmējums</comment>
+ <comment xml:lang="lt">Office piešinys</comment>
+ <comment xml:lang="ko">오피스 그리기</comment>
+ <comment xml:lang="kk">Office суреті</comment>
+ <comment xml:lang="ja">Office ドロー</comment>
+ <comment xml:lang="it">Disegno Office</comment>
+ <comment xml:lang="is">Office teikning</comment>
+ <comment xml:lang="id">Gambar Office</comment>
+ <comment xml:lang="ia">Designo Office</comment>
+ <comment xml:lang="hu">Office rajz</comment>
+ <comment xml:lang="hr">Office crtež</comment>
+ <comment xml:lang="he">ציור של Office</comment>
+ <comment xml:lang="gl">debuxo de Office</comment>
+ <comment xml:lang="ga">líníocht Office</comment>
+ <comment xml:lang="fur">dissen di Office</comment>
+ <comment xml:lang="fr">dessin Office</comment>
+ <comment xml:lang="fo">Office tekning</comment>
+ <comment xml:lang="fi">Office-piirros</comment>
+ <comment xml:lang="eu">Office marrazkia</comment>
+ <comment xml:lang="es">dibujo de Office</comment>
+ <comment xml:lang="en_GB">Office drawing</comment>
+ <comment xml:lang="el">Σχέδιο Office</comment>
+ <comment xml:lang="de">Office-Zeichnung</comment>
+ <comment xml:lang="da">Officetegning</comment>
+ <comment xml:lang="cs">kresba Office</comment>
+ <comment xml:lang="ca">dibuix d'Office</comment>
+ <comment xml:lang="bg">Чертеж — Office</comment>
+ <comment xml:lang="be@latin">Ofisny rysunak</comment>
+ <comment xml:lang="be">рысунак Office</comment>
+ <comment xml:lang="ar">تصميم أوفيس</comment>
+ <comment xml:lang="af">Office-tekening</comment>
<glob pattern="*.msod"/>
</mime-type>
<mime-type type="image/x-niff">
<comment>NIFF image</comment>
- <comment xml:lang="ar">صورة NIFF</comment>
- <comment xml:lang="be@latin">Vyjava NIFF</comment>
- <comment xml:lang="bg">Изображение — NIFF</comment>
- <comment xml:lang="ca">imatge NIFF</comment>
- <comment xml:lang="cs">obrázek NIFF</comment>
- <comment xml:lang="da">NIFF-billede</comment>
- <comment xml:lang="de">NIFF-Bild</comment>
- <comment xml:lang="el">Εικόνα NIFF</comment>
- <comment xml:lang="en_GB">NIFF image</comment>
- <comment xml:lang="eo">NIFF-bildo</comment>
- <comment xml:lang="es">imagen NIFF</comment>
- <comment xml:lang="eu">NIFF irudia</comment>
- <comment xml:lang="fi">NIFF-kuva</comment>
- <comment xml:lang="fo">NIFF mynd</comment>
- <comment xml:lang="fr">image NIFF</comment>
- <comment xml:lang="ga">íomhá NIFF</comment>
- <comment xml:lang="gl">imaxe NIFF</comment>
- <comment xml:lang="he">תמונת NIFF</comment>
- <comment xml:lang="hr">NIFF slika</comment>
- <comment xml:lang="hu">NIFF kép</comment>
- <comment xml:lang="ia">Imagine NIFF</comment>
- <comment xml:lang="id">Citra NIFF</comment>
- <comment xml:lang="it">Immagine NIFF</comment>
- <comment xml:lang="ja">NIFF 画像</comment>
- <comment xml:lang="kk">NIFF суреті</comment>
- <comment xml:lang="ko">NIFF 그림</comment>
- <comment xml:lang="lt">NIFF paveikslėlis</comment>
- <comment xml:lang="lv">NIFF attēls</comment>
- <comment xml:lang="nb">NIFF-bilde</comment>
- <comment xml:lang="nl">NIFF-afbeelding</comment>
- <comment xml:lang="nn">NIFF-bilete</comment>
- <comment xml:lang="oc">imatge NIFF</comment>
- <comment xml:lang="pl">Obraz NIFF</comment>
- <comment xml:lang="pt">imagem NIFF</comment>
- <comment xml:lang="pt_BR">Imagem NIFF</comment>
- <comment xml:lang="ro">Imagine NIF</comment>
- <comment xml:lang="ru">Изображение NIFF</comment>
- <comment xml:lang="sk">Obrázok NIFF</comment>
- <comment xml:lang="sl">Slikovna datoteka NIFF</comment>
- <comment xml:lang="sq">Figurë NIFF</comment>
- <comment xml:lang="sr">НИФФ слика</comment>
- <comment xml:lang="sv">NIFF-bild</comment>
- <comment xml:lang="tr">NIFF görüntüsü</comment>
- <comment xml:lang="uk">зображення NIFF</comment>
- <comment xml:lang="vi">Ảnh NIFF</comment>
- <comment xml:lang="zh_CN">NIFF 图像</comment>
<comment xml:lang="zh_TW">NIFF 影像</comment>
+ <comment xml:lang="zh_CN">NIFF 图像</comment>
+ <comment xml:lang="vi">Ảnh NIFF</comment>
+ <comment xml:lang="uk">зображення NIFF</comment>
+ <comment xml:lang="tr">NIFF görüntüsü</comment>
+ <comment xml:lang="sv">NIFF-bild</comment>
+ <comment xml:lang="sr">НИФФ слика</comment>
+ <comment xml:lang="sq">figurë NIFF</comment>
+ <comment xml:lang="sl">Slikovna datoteka NIFF</comment>
+ <comment xml:lang="si">NIFF රූපය</comment>
+ <comment xml:lang="sk">Obrázok NIFF</comment>
+ <comment xml:lang="ru">Изображение NIFF</comment>
+ <comment xml:lang="ro">Imagine NIF</comment>
+ <comment xml:lang="pt_BR">Imagem NIFF</comment>
+ <comment xml:lang="pt">imagem NIFF</comment>
+ <comment xml:lang="pl">Obraz NIFF</comment>
+ <comment xml:lang="oc">imatge NIFF</comment>
+ <comment xml:lang="nn">NIFF-bilete</comment>
+ <comment xml:lang="nl">NIFF-afbeelding</comment>
+ <comment xml:lang="nb">NIFF-bilde</comment>
+ <comment xml:lang="lv">NIFF attēls</comment>
+ <comment xml:lang="lt">NIFF paveikslėlis</comment>
+ <comment xml:lang="ko">NIFF 그림</comment>
+ <comment xml:lang="kk">NIFF суреті</comment>
+ <comment xml:lang="ja">NIFF 画像</comment>
+ <comment xml:lang="it">Immagine NIFF</comment>
+ <comment xml:lang="is">NIFF mynd</comment>
+ <comment xml:lang="id">Citra NIFF</comment>
+ <comment xml:lang="ia">Imagine NIFF</comment>
+ <comment xml:lang="hu">NIFF kép</comment>
+ <comment xml:lang="hr">NIFF slika</comment>
+ <comment xml:lang="he">תמונת NIFF</comment>
+ <comment xml:lang="gl">imaxe NIFF</comment>
+ <comment xml:lang="ga">íomhá NIFF</comment>
+ <comment xml:lang="fur">imagjin NIFF</comment>
+ <comment xml:lang="fr">image NIFF</comment>
+ <comment xml:lang="fo">NIFF mynd</comment>
+ <comment xml:lang="fi">NIFF-kuva</comment>
+ <comment xml:lang="eu">NIFF irudia</comment>
+ <comment xml:lang="es">imagen NIFF</comment>
+ <comment xml:lang="eo">NIFF-bildo</comment>
+ <comment xml:lang="en_GB">NIFF image</comment>
+ <comment xml:lang="el">Εικόνα NIFF</comment>
+ <comment xml:lang="de">NIFF-Bild</comment>
+ <comment xml:lang="da">NIFF-billede</comment>
+ <comment xml:lang="cs">obrázek NIFF</comment>
+ <comment xml:lang="ca">imatge NIFF</comment>
+ <comment xml:lang="bg">Изображение — NIFF</comment>
+ <comment xml:lang="be@latin">Vyjava NIFF</comment>
+ <comment xml:lang="be">выява NIFF</comment>
+ <comment xml:lang="ar">صورة NIFF</comment>
+ <comment xml:lang="af">NIFF-beeld</comment>
+ <acronym>NIFF</acronym>
+ <expanded-acronym>Navy Image File Format</expanded-acronym>
<magic priority="80">
- <match value="IIN1" type="string" offset="0"/>
+ <match type="string" value="IIN1" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/vnd.zbrush.pcx">
<comment>PCX image</comment>
- <comment xml:lang="ar">صورة PCX</comment>
- <comment xml:lang="be@latin">Vyjava PCX</comment>
- <comment xml:lang="bg">Изображение — PCX</comment>
- <comment xml:lang="ca">imatge PCX</comment>
- <comment xml:lang="cs">obrázek PCX</comment>
- <comment xml:lang="da">PCX-billede</comment>
- <comment xml:lang="de">PCX-Bild</comment>
- <comment xml:lang="el">Εικόνα PCX</comment>
- <comment xml:lang="en_GB">PCX image</comment>
- <comment xml:lang="eo">PCX-bildo</comment>
- <comment xml:lang="es">imagen PCX</comment>
- <comment xml:lang="eu">PCX irudia</comment>
- <comment xml:lang="fi">PCX-kuva</comment>
- <comment xml:lang="fo">PCX mynd</comment>
- <comment xml:lang="fr">image PCX</comment>
- <comment xml:lang="ga">íomhá PCX</comment>
- <comment xml:lang="gl">imaxe PCX</comment>
- <comment xml:lang="he">תמונת PCX</comment>
- <comment xml:lang="hr">PCX slika</comment>
- <comment xml:lang="hu">PCX kép</comment>
- <comment xml:lang="ia">Imagine PCX</comment>
- <comment xml:lang="id">Citra PCX</comment>
- <comment xml:lang="it">Immagine PCX</comment>
- <comment xml:lang="ja">PCX 画像</comment>
- <comment xml:lang="kk">PCX суреті</comment>
- <comment xml:lang="ko">PCX 그림</comment>
- <comment xml:lang="lt">PCX paveikslėlis</comment>
- <comment xml:lang="lv">PCX attēls</comment>
- <comment xml:lang="nb">PCX-bilde</comment>
- <comment xml:lang="nl">PCX-afbeelding</comment>
- <comment xml:lang="nn">PCX-bilete</comment>
- <comment xml:lang="oc">imatge PCX</comment>
- <comment xml:lang="pl">Obraz PCX</comment>
- <comment xml:lang="pt">imagem PCX</comment>
- <comment xml:lang="pt_BR">Imagem PCX</comment>
- <comment xml:lang="ro">Imagine PCX</comment>
- <comment xml:lang="ru">Изображение PCX</comment>
- <comment xml:lang="sk">Obrázok PCX</comment>
- <comment xml:lang="sl">Slikovna datoteka PCX</comment>
- <comment xml:lang="sq">Figurë PCX</comment>
- <comment xml:lang="sr">ПЦИкс слика</comment>
- <comment xml:lang="sv">PCX-bild</comment>
- <comment xml:lang="tr">PCX görüntüsü</comment>
- <comment xml:lang="uk">зображення PCX</comment>
- <comment xml:lang="vi">Ảnh PCX</comment>
- <comment xml:lang="zh_CN">PCX 图像</comment>
<comment xml:lang="zh_TW">PCX 影像</comment>
+ <comment xml:lang="zh_CN">PCX 图像</comment>
+ <comment xml:lang="vi">Ảnh PCX</comment>
+ <comment xml:lang="uk">зображення PCX</comment>
+ <comment xml:lang="tr">PCX görüntüsü</comment>
+ <comment xml:lang="sv">PCX-bild</comment>
+ <comment xml:lang="sr">ПЦИкс слика</comment>
+ <comment xml:lang="sq">figurë PCX</comment>
+ <comment xml:lang="sl">Slikovna datoteka PCX</comment>
+ <comment xml:lang="si">PCX රූපය</comment>
+ <comment xml:lang="sk">Obrázok PCX</comment>
+ <comment xml:lang="ru">Изображение PCX</comment>
+ <comment xml:lang="ro">Imagine PCX</comment>
+ <comment xml:lang="pt_BR">Imagem PCX</comment>
+ <comment xml:lang="pt">imagem PCX</comment>
+ <comment xml:lang="pl">Obraz PCX</comment>
+ <comment xml:lang="oc">imatge PCX</comment>
+ <comment xml:lang="nn">PCX-bilete</comment>
+ <comment xml:lang="nl">PCX-afbeelding</comment>
+ <comment xml:lang="nb">PCX-bilde</comment>
+ <comment xml:lang="lv">PCX attēls</comment>
+ <comment xml:lang="lt">PCX paveikslėlis</comment>
+ <comment xml:lang="ko">PCX 그림</comment>
+ <comment xml:lang="kk">PCX суреті</comment>
+ <comment xml:lang="ja">PCX 画像</comment>
+ <comment xml:lang="it">Immagine PCX</comment>
+ <comment xml:lang="is">PCX mynd</comment>
+ <comment xml:lang="id">Citra PCX</comment>
+ <comment xml:lang="ia">Imagine PCX</comment>
+ <comment xml:lang="hu">PCX kép</comment>
+ <comment xml:lang="hr">PCX slika</comment>
+ <comment xml:lang="he">תמונת PCX</comment>
+ <comment xml:lang="gl">imaxe PCX</comment>
+ <comment xml:lang="ga">íomhá PCX</comment>
+ <comment xml:lang="fur">imagjin PCX</comment>
+ <comment xml:lang="fr">image PCX</comment>
+ <comment xml:lang="fo">PCX mynd</comment>
+ <comment xml:lang="fi">PCX-kuva</comment>
+ <comment xml:lang="eu">PCX irudia</comment>
+ <comment xml:lang="es">imagen PCX</comment>
+ <comment xml:lang="eo">PCX-bildo</comment>
+ <comment xml:lang="en_GB">PCX image</comment>
+ <comment xml:lang="el">Εικόνα PCX</comment>
+ <comment xml:lang="de">PCX-Bild</comment>
+ <comment xml:lang="da">PCX-billede</comment>
+ <comment xml:lang="cs">obrázek PCX</comment>
+ <comment xml:lang="ca">imatge PCX</comment>
+ <comment xml:lang="bg">Изображение — PCX</comment>
+ <comment xml:lang="be@latin">Vyjava PCX</comment>
+ <comment xml:lang="be">выява PCX</comment>
+ <comment xml:lang="ar">صورة PCX</comment>
+ <comment xml:lang="af">PCX-beeld</comment>
<acronym>PCX</acronym>
<expanded-acronym>PiCture eXchange</expanded-acronym>
- <magic priority="50">
- <match value="10" type="byte" offset="0">
- <match value="0" type="byte" offset="1"/>
- <match value="2" type="byte" offset="1"/>
- <match value="3" type="byte" offset="1"/>
- <match value="5" type="byte" offset="1"/>
+ <magic>
+ <match type="byte" value="10" offset="0">
+ <match type="byte" value="0" offset="1"/>
+ <match type="byte" value="2" offset="1"/>
+ <match type="byte" value="3" offset="1"/>
+ <match type="byte" value="5" offset="1"/>
</match>
</magic>
<glob pattern="*.pcx"/>
@@ -28871,368 +31499,405 @@
</mime-type>
<mime-type type="image/x-photo-cd">
<comment>PCD image</comment>
- <comment xml:lang="ar">صورة PCD</comment>
- <comment xml:lang="be@latin">Vyjava PCD</comment>
- <comment xml:lang="bg">Изображение — PCD</comment>
- <comment xml:lang="ca">imatge PCD</comment>
- <comment xml:lang="cs">obrázek PCD</comment>
- <comment xml:lang="da">PCD-billede</comment>
- <comment xml:lang="de">PCD-Bild</comment>
- <comment xml:lang="el">Εικόνα PCD</comment>
- <comment xml:lang="en_GB">PCD image</comment>
- <comment xml:lang="eo">PCD-bildo</comment>
- <comment xml:lang="es">imagen PCD</comment>
- <comment xml:lang="eu">PCD irudia</comment>
- <comment xml:lang="fi">PCD-kuva</comment>
- <comment xml:lang="fo">PCD mynd</comment>
- <comment xml:lang="fr">image PCD</comment>
- <comment xml:lang="ga">íomhá PCD</comment>
- <comment xml:lang="gl">imaxe PCD</comment>
- <comment xml:lang="he">תמונת PCD</comment>
- <comment xml:lang="hr">PCD slika</comment>
- <comment xml:lang="hu">PCD kép</comment>
- <comment xml:lang="ia">Imagine PCD</comment>
- <comment xml:lang="id">Citra PCD</comment>
- <comment xml:lang="it">Immagine PCD</comment>
- <comment xml:lang="ja">PCD 画像</comment>
- <comment xml:lang="ka">PCD გამოსახულება</comment>
- <comment xml:lang="kk">PCD суреті</comment>
- <comment xml:lang="ko">PCD 그림</comment>
- <comment xml:lang="lt">PCD paveikslėlis</comment>
- <comment xml:lang="lv">PCD attēls</comment>
- <comment xml:lang="nb">PCD-bilde</comment>
- <comment xml:lang="nl">PCD-afbeelding</comment>
- <comment xml:lang="nn">PCD-bilete</comment>
- <comment xml:lang="oc">imatge PCD</comment>
- <comment xml:lang="pl">Obraz PCD</comment>
- <comment xml:lang="pt">imagem PCD</comment>
- <comment xml:lang="pt_BR">Imagem PCD</comment>
- <comment xml:lang="ro">Imagine PCD</comment>
- <comment xml:lang="ru">Изображение PCD</comment>
- <comment xml:lang="sk">Obrázok PCD</comment>
- <comment xml:lang="sl">Slikovna datoteka PCD</comment>
- <comment xml:lang="sq">Figurë PCD</comment>
- <comment xml:lang="sr">ПЦД слика</comment>
- <comment xml:lang="sv">PCD-bild</comment>
- <comment xml:lang="tr">PCD görüntüsü</comment>
- <comment xml:lang="uk">зображення PCD</comment>
- <comment xml:lang="vi">Ảnh PCD</comment>
- <comment xml:lang="zh_CN">PCD 图像</comment>
<comment xml:lang="zh_TW">PCD 影像</comment>
+ <comment xml:lang="zh_CN">PCD 图像</comment>
+ <comment xml:lang="vi">Ảnh PCD</comment>
+ <comment xml:lang="uk">зображення PCD</comment>
+ <comment xml:lang="tr">PCD görüntüsü</comment>
+ <comment xml:lang="sv">PCD-bild</comment>
+ <comment xml:lang="sr">ПЦД слика</comment>
+ <comment xml:lang="sq">figurë PCD</comment>
+ <comment xml:lang="sl">Slikovna datoteka PCD</comment>
+ <comment xml:lang="si">PCD රූපය</comment>
+ <comment xml:lang="sk">Obrázok PCD</comment>
+ <comment xml:lang="ru">Изображение PCD</comment>
+ <comment xml:lang="ro">Imagine PCD</comment>
+ <comment xml:lang="pt_BR">Imagem PCD</comment>
+ <comment xml:lang="pt">imagem PCD</comment>
+ <comment xml:lang="pl">Obraz PCD</comment>
+ <comment xml:lang="oc">imatge PCD</comment>
+ <comment xml:lang="nn">PCD-bilete</comment>
+ <comment xml:lang="nl">PCD-afbeelding</comment>
+ <comment xml:lang="nb">PCD-bilde</comment>
+ <comment xml:lang="lv">PCD attēls</comment>
+ <comment xml:lang="lt">PCD paveikslėlis</comment>
+ <comment xml:lang="ko">PCD 그림</comment>
+ <comment xml:lang="kk">PCD суреті</comment>
+ <comment xml:lang="ka">PCD გამოსახულება</comment>
+ <comment xml:lang="ja">PCD 画像</comment>
+ <comment xml:lang="it">Immagine PCD</comment>
+ <comment xml:lang="is">PCD mynd</comment>
+ <comment xml:lang="id">Citra PCD</comment>
+ <comment xml:lang="ia">Imagine PCD</comment>
+ <comment xml:lang="hu">PCD kép</comment>
+ <comment xml:lang="hr">PCD slika</comment>
+ <comment xml:lang="he">תמונת PCD</comment>
+ <comment xml:lang="gl">imaxe PCD</comment>
+ <comment xml:lang="ga">íomhá PCD</comment>
+ <comment xml:lang="fur">imagjin PCD</comment>
+ <comment xml:lang="fr">image PCD</comment>
+ <comment xml:lang="fo">PCD mynd</comment>
+ <comment xml:lang="fi">PCD-kuva</comment>
+ <comment xml:lang="eu">PCD irudia</comment>
+ <comment xml:lang="es">imagen PCD</comment>
+ <comment xml:lang="eo">PCD-bildo</comment>
+ <comment xml:lang="en_GB">PCD image</comment>
+ <comment xml:lang="el">Εικόνα PCD</comment>
+ <comment xml:lang="de">PCD-Bild</comment>
+ <comment xml:lang="da">PCD-billede</comment>
+ <comment xml:lang="cs">obrázek PCD</comment>
+ <comment xml:lang="ca">imatge PCD</comment>
+ <comment xml:lang="bg">Изображение — PCD</comment>
+ <comment xml:lang="be@latin">Vyjava PCD</comment>
+ <comment xml:lang="be">выява PCD</comment>
+ <comment xml:lang="ar">صورة PCD</comment>
+ <comment xml:lang="af">PCD-beeld</comment>
<acronym>PCD</acronym>
<expanded-acronym>PhotoCD</expanded-acronym>
+ <generic-icon name="media-optical"/>
<glob pattern="*.pcd"/>
</mime-type>
<mime-type type="image/x-portable-anymap">
<comment>PNM image</comment>
- <comment xml:lang="ar">صورة PNM</comment>
- <comment xml:lang="az">PNM rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava PNM</comment>
- <comment xml:lang="bg">Изображение — PNM</comment>
- <comment xml:lang="ca">imatge PNM</comment>
- <comment xml:lang="cs">obrázek PNM</comment>
- <comment xml:lang="cy">Delwedd PNM</comment>
- <comment xml:lang="da">PNM-billede</comment>
- <comment xml:lang="de">PNM-Bild</comment>
- <comment xml:lang="el">Εικόνα PNM</comment>
- <comment xml:lang="en_GB">PNM image</comment>
- <comment xml:lang="eo">PNM-bildo</comment>
- <comment xml:lang="es">imagen PNM</comment>
- <comment xml:lang="eu">PNM irudia</comment>
- <comment xml:lang="fi">PNM-kuva</comment>
- <comment xml:lang="fo">PNM mynd</comment>
- <comment xml:lang="fr">image PNM</comment>
- <comment xml:lang="ga">íomhá PNM</comment>
- <comment xml:lang="gl">imaxe PNM</comment>
- <comment xml:lang="he">תמונת PNM</comment>
- <comment xml:lang="hr">PNM slika</comment>
- <comment xml:lang="hu">PNM-kép</comment>
- <comment xml:lang="ia">Imagine PNM</comment>
- <comment xml:lang="id">Citra PNM</comment>
- <comment xml:lang="it">Immagine PNM</comment>
- <comment xml:lang="ja">PNM 画像</comment>
- <comment xml:lang="kk">PNM суреті</comment>
- <comment xml:lang="ko">PNM 그림</comment>
- <comment xml:lang="lt">PNM paveikslėlis</comment>
- <comment xml:lang="lv">PNM attēls</comment>
- <comment xml:lang="ms">Imej PNM</comment>
- <comment xml:lang="nb">PNM-bilde</comment>
- <comment xml:lang="nl">PNM-afbeelding</comment>
- <comment xml:lang="nn">PNM-bilete</comment>
- <comment xml:lang="oc">imatge PNM</comment>
- <comment xml:lang="pl">Obraz PNM</comment>
- <comment xml:lang="pt">imagem PNM</comment>
- <comment xml:lang="pt_BR">Imagem PNM</comment>
- <comment xml:lang="ro">Imagine PNM</comment>
- <comment xml:lang="ru">Изображение PNM</comment>
- <comment xml:lang="sk">Obrázok PNM</comment>
- <comment xml:lang="sl">Slikovna datoteka PNM</comment>
- <comment xml:lang="sq">Figurë PNM</comment>
- <comment xml:lang="sr">ПНМ слика</comment>
- <comment xml:lang="sv">PNM-bild</comment>
- <comment xml:lang="tr">PNM görüntüsü</comment>
- <comment xml:lang="uk">зображення PNM</comment>
- <comment xml:lang="vi">Ảnh PNM</comment>
- <comment xml:lang="zh_CN">PNM 图像</comment>
<comment xml:lang="zh_TW">PNM 影像</comment>
+ <comment xml:lang="zh_CN">PNM 图像</comment>
+ <comment xml:lang="vi">Ảnh PNM</comment>
+ <comment xml:lang="uk">зображення PNM</comment>
+ <comment xml:lang="tr">PNM görüntüsü</comment>
+ <comment xml:lang="sv">PNM-bild</comment>
+ <comment xml:lang="sr">ПНМ слика</comment>
+ <comment xml:lang="sq">figurë PNM</comment>
+ <comment xml:lang="sl">Slikovna datoteka PNM</comment>
+ <comment xml:lang="si">PNM රූපය</comment>
+ <comment xml:lang="sk">Obrázok PNM</comment>
+ <comment xml:lang="ru">Изображение PNM</comment>
+ <comment xml:lang="ro">Imagine PNM</comment>
+ <comment xml:lang="pt_BR">Imagem PNM</comment>
+ <comment xml:lang="pt">imagem PNM</comment>
+ <comment xml:lang="pl">Obraz PNM</comment>
+ <comment xml:lang="oc">imatge PNM</comment>
+ <comment xml:lang="nn">PNM-bilete</comment>
+ <comment xml:lang="nl">PNM-afbeelding</comment>
+ <comment xml:lang="nb">PNM-bilde</comment>
+ <comment xml:lang="ms">Imej PNM</comment>
+ <comment xml:lang="lv">PNM attēls</comment>
+ <comment xml:lang="lt">PNM paveikslėlis</comment>
+ <comment xml:lang="ko">PNM 그림</comment>
+ <comment xml:lang="kk">PNM суреті</comment>
+ <comment xml:lang="ka">PNM გამოსახულება</comment>
+ <comment xml:lang="ja">PNM 画像</comment>
+ <comment xml:lang="it">Immagine PNM</comment>
+ <comment xml:lang="is">PNM mynd</comment>
+ <comment xml:lang="id">Citra PNM</comment>
+ <comment xml:lang="ia">Imagine PNM</comment>
+ <comment xml:lang="hu">PNM-kép</comment>
+ <comment xml:lang="hr">PNM slika</comment>
+ <comment xml:lang="he">תמונת PNM</comment>
+ <comment xml:lang="gl">imaxe PNM</comment>
+ <comment xml:lang="ga">íomhá PNM</comment>
+ <comment xml:lang="fur">imagjin PNM</comment>
+ <comment xml:lang="fr">image PNM</comment>
+ <comment xml:lang="fo">PNM mynd</comment>
+ <comment xml:lang="fi">PNM-kuva</comment>
+ <comment xml:lang="eu">PNM irudia</comment>
+ <comment xml:lang="es">imagen PNM</comment>
+ <comment xml:lang="eo">PNM-bildo</comment>
+ <comment xml:lang="en_GB">PNM image</comment>
+ <comment xml:lang="el">Εικόνα PNM</comment>
+ <comment xml:lang="de">PNM-Bild</comment>
+ <comment xml:lang="da">PNM-billede</comment>
+ <comment xml:lang="cy">Delwedd PNM</comment>
+ <comment xml:lang="cs">obrázek PNM</comment>
+ <comment xml:lang="ca">imatge PNM</comment>
+ <comment xml:lang="bg">Изображение — PNM</comment>
+ <comment xml:lang="be@latin">Vyjava PNM</comment>
+ <comment xml:lang="be">выява PNM</comment>
+ <comment xml:lang="az">PNM rəsmi</comment>
+ <comment xml:lang="ar">صورة PNM</comment>
+ <comment xml:lang="af">PNM-beeld</comment>
+ <acronym>PNM</acronym>
+ <expanded-acronym>Portable Anymap</expanded-acronym>
<glob pattern="*.pnm"/>
</mime-type>
<mime-type type="image/x-portable-bitmap">
<comment>PBM image</comment>
- <comment xml:lang="ar">صورة PBM</comment>
- <comment xml:lang="be@latin">Vyjava PBM</comment>
- <comment xml:lang="bg">Изображение — PBM</comment>
- <comment xml:lang="ca">imatge PBM</comment>
- <comment xml:lang="cs">obrázek PBM</comment>
- <comment xml:lang="cy">Delwedd PBM</comment>
- <comment xml:lang="da">PBM-billede</comment>
- <comment xml:lang="de">PBM-Bild</comment>
- <comment xml:lang="el">Εικόνα PBM</comment>
- <comment xml:lang="en_GB">PBM image</comment>
- <comment xml:lang="eo">PBM-bildo</comment>
- <comment xml:lang="es">imagen PBM</comment>
- <comment xml:lang="eu">PBM irudia</comment>
- <comment xml:lang="fi">PBM-kuva</comment>
- <comment xml:lang="fo">PBM mynd</comment>
- <comment xml:lang="fr">image PBM</comment>
- <comment xml:lang="ga">íomhá PBM</comment>
- <comment xml:lang="gl">imaxe PBM</comment>
- <comment xml:lang="he">תמונת PBM</comment>
- <comment xml:lang="hr">PBM slika</comment>
- <comment xml:lang="hu">PBM kép</comment>
- <comment xml:lang="ia">Imagine PBM</comment>
- <comment xml:lang="id">Citra PBM</comment>
- <comment xml:lang="it">Immagine PBM</comment>
- <comment xml:lang="ja">PBM 画像</comment>
- <comment xml:lang="ka">PBM გამოსახულება</comment>
- <comment xml:lang="kk">PBM суреті</comment>
- <comment xml:lang="ko">PBM 그림</comment>
- <comment xml:lang="lt">PBM paveikslėlis</comment>
- <comment xml:lang="lv">PBM attēls</comment>
- <comment xml:lang="nb">PBM-bilde</comment>
- <comment xml:lang="nl">PBM-afbeelding</comment>
- <comment xml:lang="nn">PBM-bilete</comment>
- <comment xml:lang="oc">imatge PBM</comment>
- <comment xml:lang="pl">Obraz PBM</comment>
- <comment xml:lang="pt">imagem PBM</comment>
- <comment xml:lang="pt_BR">Imagem PBM</comment>
- <comment xml:lang="ro">Imagine PBM</comment>
- <comment xml:lang="ru">Изображение PBM</comment>
- <comment xml:lang="sk">Obrázok PBM</comment>
- <comment xml:lang="sl">Slikovna datoteka PBM</comment>
- <comment xml:lang="sq">Figurë PBM</comment>
- <comment xml:lang="sr">ПБМ слика</comment>
- <comment xml:lang="sv">PBM-bild</comment>
- <comment xml:lang="tr">PBM görüntüsü</comment>
- <comment xml:lang="uk">зображення PBM</comment>
- <comment xml:lang="vi">Ảnh PBM</comment>
- <comment xml:lang="zh_CN">PBM 图像</comment>
<comment xml:lang="zh_TW">PBM 影像</comment>
+ <comment xml:lang="zh_CN">PBM 图像</comment>
+ <comment xml:lang="vi">Ảnh PBM</comment>
+ <comment xml:lang="uk">зображення PBM</comment>
+ <comment xml:lang="tr">PBM görüntüsü</comment>
+ <comment xml:lang="sv">PBM-bild</comment>
+ <comment xml:lang="sr">ПБМ слика</comment>
+ <comment xml:lang="sq">figurë PBM</comment>
+ <comment xml:lang="sl">Slikovna datoteka PBM</comment>
+ <comment xml:lang="si">PBM රූපය</comment>
+ <comment xml:lang="sk">Obrázok PBM</comment>
+ <comment xml:lang="ru">Изображение PBM</comment>
+ <comment xml:lang="ro">Imagine PBM</comment>
+ <comment xml:lang="pt_BR">Imagem PBM</comment>
+ <comment xml:lang="pt">imagem PBM</comment>
+ <comment xml:lang="pl">Obraz PBM</comment>
+ <comment xml:lang="oc">imatge PBM</comment>
+ <comment xml:lang="nn">PBM-bilete</comment>
+ <comment xml:lang="nl">PBM-afbeelding</comment>
+ <comment xml:lang="nb">PBM-bilde</comment>
+ <comment xml:lang="lv">PBM attēls</comment>
+ <comment xml:lang="lt">PBM paveikslėlis</comment>
+ <comment xml:lang="ko">PBM 그림</comment>
+ <comment xml:lang="kk">PBM суреті</comment>
+ <comment xml:lang="ka">PBM გამოსახულება</comment>
+ <comment xml:lang="ja">PBM 画像</comment>
+ <comment xml:lang="it">Immagine PBM</comment>
+ <comment xml:lang="is">PBM mynd</comment>
+ <comment xml:lang="id">Citra PBM</comment>
+ <comment xml:lang="ia">Imagine PBM</comment>
+ <comment xml:lang="hu">PBM kép</comment>
+ <comment xml:lang="hr">PBM slika</comment>
+ <comment xml:lang="he">תמונת PBM</comment>
+ <comment xml:lang="gl">imaxe PBM</comment>
+ <comment xml:lang="ga">íomhá PBM</comment>
+ <comment xml:lang="fur">imagjin PBM</comment>
+ <comment xml:lang="fr">image PBM</comment>
+ <comment xml:lang="fo">PBM mynd</comment>
+ <comment xml:lang="fi">PBM-kuva</comment>
+ <comment xml:lang="eu">PBM irudia</comment>
+ <comment xml:lang="es">imagen PBM</comment>
+ <comment xml:lang="eo">PBM-bildo</comment>
+ <comment xml:lang="en_GB">PBM image</comment>
+ <comment xml:lang="el">Εικόνα PBM</comment>
+ <comment xml:lang="de">PBM-Bild</comment>
+ <comment xml:lang="da">PBM-billede</comment>
+ <comment xml:lang="cy">Delwedd PBM</comment>
+ <comment xml:lang="cs">obrázek PBM</comment>
+ <comment xml:lang="ca">imatge PBM</comment>
+ <comment xml:lang="bg">Изображение — PBM</comment>
+ <comment xml:lang="be@latin">Vyjava PBM</comment>
+ <comment xml:lang="be">выява PBM</comment>
+ <comment xml:lang="ar">صورة PBM</comment>
+ <comment xml:lang="af">PBM-beeld</comment>
<acronym>PBM</acronym>
<expanded-acronym>Portable BitMap</expanded-acronym>
<sub-class-of type="image/x-portable-anymap"/>
- <magic priority="50">
- <match value="P1" type="string" offset="0">
- <match value="0x0a" type="byte" offset="2"/>
- <match value="0x20" type="byte" offset="2"/>
- <match value="0x09" type="byte" offset="2"/>
- <match value="0x0d" type="byte" offset="2"/>
+ <magic>
+ <match type="string" value="P1" offset="0">
+ <match type="byte" value="0x0a" offset="2"/>
+ <match type="byte" value="0x20" offset="2"/>
+ <match type="byte" value="0x09" offset="2"/>
+ <match type="byte" value="0x0d" offset="2"/>
</match>
- <match value="P4" type="string" offset="0">
- <match value="0x0a" type="byte" offset="2"/>
- <match value="0x20" type="byte" offset="2"/>
- <match value="0x09" type="byte" offset="2"/>
- <match value="0x0d" type="byte" offset="2"/>
+ <match type="string" value="P4" offset="0">
+ <match type="byte" value="0x0a" offset="2"/>
+ <match type="byte" value="0x20" offset="2"/>
+ <match type="byte" value="0x09" offset="2"/>
+ <match type="byte" value="0x0d" offset="2"/>
</match>
</magic>
<glob pattern="*.pbm"/>
</mime-type>
<mime-type type="image/x-portable-graymap">
<comment>PGM image</comment>
- <comment xml:lang="ar">صورة PGM</comment>
- <comment xml:lang="be@latin">Vyjava PGM</comment>
- <comment xml:lang="bg">Изображение — PGM</comment>
- <comment xml:lang="ca">imatge PGM</comment>
- <comment xml:lang="cs">obrázek PGM</comment>
- <comment xml:lang="cy">Delwedd PGM</comment>
- <comment xml:lang="da">PGM-billede</comment>
- <comment xml:lang="de">PGM-Bild</comment>
- <comment xml:lang="el">Εικόνα PGM</comment>
- <comment xml:lang="en_GB">PGM image</comment>
- <comment xml:lang="eo">PGM-bildo</comment>
- <comment xml:lang="es">imagen PGM</comment>
- <comment xml:lang="eu">PGM irudia</comment>
- <comment xml:lang="fi">PGM-kuva</comment>
- <comment xml:lang="fo">PGM mynd</comment>
- <comment xml:lang="fr">image PGM</comment>
- <comment xml:lang="ga">íomhá PGM</comment>
- <comment xml:lang="gl">imaxe PGM</comment>
- <comment xml:lang="he">תמונת PGM</comment>
- <comment xml:lang="hr">PGM slika</comment>
- <comment xml:lang="hu">PGM kép</comment>
- <comment xml:lang="ia">Imagine PGM</comment>
- <comment xml:lang="id">Citra PGM</comment>
- <comment xml:lang="it">Immagine PGM</comment>
- <comment xml:lang="ja">PGM 画像</comment>
- <comment xml:lang="kk">PGM суреті</comment>
- <comment xml:lang="ko">PGM 그림</comment>
- <comment xml:lang="lt">PGM paveikslėlis</comment>
- <comment xml:lang="lv">PGM attēls</comment>
- <comment xml:lang="nb">PGM-bilde</comment>
- <comment xml:lang="nl">PGM-afbeelding</comment>
- <comment xml:lang="nn">PGM-bilete</comment>
- <comment xml:lang="oc">imatge PGM</comment>
- <comment xml:lang="pl">Obraz PGM</comment>
- <comment xml:lang="pt">imagem PGM</comment>
- <comment xml:lang="pt_BR">Imagem PGM</comment>
- <comment xml:lang="ro">Imagine PGM</comment>
- <comment xml:lang="ru">Изображение PGM</comment>
- <comment xml:lang="sk">Obrázok PGM</comment>
- <comment xml:lang="sl">Slikovna datoteka PGM</comment>
- <comment xml:lang="sq">Figurë PGM</comment>
- <comment xml:lang="sr">ПГМ слика</comment>
- <comment xml:lang="sv">PGM-bild</comment>
- <comment xml:lang="tr">PGM görüntüsü</comment>
- <comment xml:lang="uk">зображення PGM</comment>
- <comment xml:lang="vi">Ảnh PGM</comment>
- <comment xml:lang="zh_CN">PGM 图像</comment>
<comment xml:lang="zh_TW">PGM 影像</comment>
+ <comment xml:lang="zh_CN">PGM 图像</comment>
+ <comment xml:lang="vi">Ảnh PGM</comment>
+ <comment xml:lang="uk">зображення PGM</comment>
+ <comment xml:lang="tr">PGM görüntüsü</comment>
+ <comment xml:lang="sv">PGM-bild</comment>
+ <comment xml:lang="sr">ПГМ слика</comment>
+ <comment xml:lang="sq">figurë PGM</comment>
+ <comment xml:lang="sl">Slikovna datoteka PGM</comment>
+ <comment xml:lang="si">PGM රූපය</comment>
+ <comment xml:lang="sk">Obrázok PGM</comment>
+ <comment xml:lang="ru">Изображение PGM</comment>
+ <comment xml:lang="ro">Imagine PGM</comment>
+ <comment xml:lang="pt_BR">Imagem PGM</comment>
+ <comment xml:lang="pt">imagem PGM</comment>
+ <comment xml:lang="pl">Obraz PGM</comment>
+ <comment xml:lang="oc">imatge PGM</comment>
+ <comment xml:lang="nn">PGM-bilete</comment>
+ <comment xml:lang="nl">PGM-afbeelding</comment>
+ <comment xml:lang="nb">PGM-bilde</comment>
+ <comment xml:lang="lv">PGM attēls</comment>
+ <comment xml:lang="lt">PGM paveikslėlis</comment>
+ <comment xml:lang="ko">PGM 그림</comment>
+ <comment xml:lang="kk">PGM суреті</comment>
+ <comment xml:lang="ka">PGM გამოსახულება</comment>
+ <comment xml:lang="ja">PGM 画像</comment>
+ <comment xml:lang="it">Immagine PGM</comment>
+ <comment xml:lang="is">PGM mynd</comment>
+ <comment xml:lang="id">Citra PGM</comment>
+ <comment xml:lang="ia">Imagine PGM</comment>
+ <comment xml:lang="hu">PGM kép</comment>
+ <comment xml:lang="hr">PGM slika</comment>
+ <comment xml:lang="he">תמונת PGM</comment>
+ <comment xml:lang="gl">imaxe PGM</comment>
+ <comment xml:lang="ga">íomhá PGM</comment>
+ <comment xml:lang="fur">imagjin PGM</comment>
+ <comment xml:lang="fr">image PGM</comment>
+ <comment xml:lang="fo">PGM mynd</comment>
+ <comment xml:lang="fi">PGM-kuva</comment>
+ <comment xml:lang="eu">PGM irudia</comment>
+ <comment xml:lang="es">imagen PGM</comment>
+ <comment xml:lang="eo">PGM-bildo</comment>
+ <comment xml:lang="en_GB">PGM image</comment>
+ <comment xml:lang="el">Εικόνα PGM</comment>
+ <comment xml:lang="de">PGM-Bild</comment>
+ <comment xml:lang="da">PGM-billede</comment>
+ <comment xml:lang="cy">Delwedd PGM</comment>
+ <comment xml:lang="cs">obrázek PGM</comment>
+ <comment xml:lang="ca">imatge PGM</comment>
+ <comment xml:lang="bg">Изображение — PGM</comment>
+ <comment xml:lang="be@latin">Vyjava PGM</comment>
+ <comment xml:lang="be">выява PGM</comment>
+ <comment xml:lang="ar">صورة PGM</comment>
+ <comment xml:lang="af">PGM-beeld</comment>
<acronym>PGM</acronym>
<expanded-acronym>Portable GrayMap</expanded-acronym>
<sub-class-of type="image/x-portable-anymap"/>
- <magic priority="50">
- <match value="P2" type="string" offset="0">
- <match value="0x0a" type="byte" offset="2"/>
- <match value="0x20" type="byte" offset="2"/>
- <match value="0x09" type="byte" offset="2"/>
- <match value="0x0d" type="byte" offset="2"/>
+ <magic>
+ <match type="string" value="P2" offset="0">
+ <match type="byte" value="0x0a" offset="2"/>
+ <match type="byte" value="0x20" offset="2"/>
+ <match type="byte" value="0x09" offset="2"/>
+ <match type="byte" value="0x0d" offset="2"/>
</match>
- <match value="P5" type="string" offset="0">
- <match value="0x0a" type="byte" offset="2"/>
- <match value="0x20" type="byte" offset="2"/>
- <match value="0x09" type="byte" offset="2"/>
- <match value="0x0d" type="byte" offset="2"/>
+ <match type="string" value="P5" offset="0">
+ <match type="byte" value="0x0a" offset="2"/>
+ <match type="byte" value="0x20" offset="2"/>
+ <match type="byte" value="0x09" offset="2"/>
+ <match type="byte" value="0x0d" offset="2"/>
</match>
</magic>
<glob pattern="*.pgm"/>
</mime-type>
<mime-type type="image/x-portable-pixmap">
<comment>PPM image</comment>
- <comment xml:lang="ar">صورة PPM</comment>
- <comment xml:lang="be@latin">Vyjava PPM</comment>
- <comment xml:lang="bg">Изображение — PPM</comment>
- <comment xml:lang="ca">imatge PPM</comment>
- <comment xml:lang="cs">obrázek PPM</comment>
- <comment xml:lang="cy">Delwedd PPM</comment>
- <comment xml:lang="da">PPM-billede</comment>
- <comment xml:lang="de">PPM-Bild</comment>
- <comment xml:lang="el">Εικόνα PPM</comment>
- <comment xml:lang="en_GB">PPM image</comment>
- <comment xml:lang="eo">PPM-bildo</comment>
- <comment xml:lang="es">imagen PPM</comment>
- <comment xml:lang="eu">PPM irudia</comment>
- <comment xml:lang="fi">PPM-kuva</comment>
- <comment xml:lang="fo">PPM mynd</comment>
- <comment xml:lang="fr">image PPM</comment>
- <comment xml:lang="ga">íomhá PPM</comment>
- <comment xml:lang="gl">imaxe PPM</comment>
- <comment xml:lang="he">תמונת PPM</comment>
- <comment xml:lang="hr">PPM slika</comment>
- <comment xml:lang="hu">PPM kép</comment>
- <comment xml:lang="ia">Imagine PPM</comment>
- <comment xml:lang="id">Citra PPM</comment>
- <comment xml:lang="it">Immagine PPM</comment>
- <comment xml:lang="ja">PPM 画像</comment>
- <comment xml:lang="kk">PPM суреті</comment>
- <comment xml:lang="ko">PPM 그림</comment>
- <comment xml:lang="lt">PPM paveikslėlis</comment>
- <comment xml:lang="lv">PPM attēls</comment>
- <comment xml:lang="nb">PPM-bilde</comment>
- <comment xml:lang="nl">PPM-afbeelding</comment>
- <comment xml:lang="nn">PPM-bilete</comment>
- <comment xml:lang="oc">imatge PPM</comment>
- <comment xml:lang="pl">Obraz PPM</comment>
- <comment xml:lang="pt">imagem PPM</comment>
- <comment xml:lang="pt_BR">Imagem PPM</comment>
- <comment xml:lang="ro">Imagine PPM</comment>
- <comment xml:lang="ru">Изображение PPM</comment>
- <comment xml:lang="sk">Obrázok PPM</comment>
- <comment xml:lang="sl">Slikovna datoteka PPM</comment>
- <comment xml:lang="sq">Figurë PPM</comment>
- <comment xml:lang="sr">ППМ слика</comment>
- <comment xml:lang="sv">PPM-bild</comment>
- <comment xml:lang="tr">PPM görüntüsü</comment>
- <comment xml:lang="uk">зображення PPM</comment>
- <comment xml:lang="vi">Ảnh PPM</comment>
- <comment xml:lang="zh_CN">PPM 图像</comment>
<comment xml:lang="zh_TW">PPM 影像</comment>
+ <comment xml:lang="zh_CN">PPM 图像</comment>
+ <comment xml:lang="vi">Ảnh PPM</comment>
+ <comment xml:lang="uk">зображення PPM</comment>
+ <comment xml:lang="tr">PPM görüntüsü</comment>
+ <comment xml:lang="sv">PPM-bild</comment>
+ <comment xml:lang="sr">ППМ слика</comment>
+ <comment xml:lang="sq">figurë PPM</comment>
+ <comment xml:lang="sl">Slikovna datoteka PPM</comment>
+ <comment xml:lang="si">PPM රූපය</comment>
+ <comment xml:lang="sk">Obrázok PPM</comment>
+ <comment xml:lang="ru">Изображение PPM</comment>
+ <comment xml:lang="ro">Imagine PPM</comment>
+ <comment xml:lang="pt_BR">Imagem PPM</comment>
+ <comment xml:lang="pt">imagem PPM</comment>
+ <comment xml:lang="pl">Obraz PPM</comment>
+ <comment xml:lang="oc">imatge PPM</comment>
+ <comment xml:lang="nn">PPM-bilete</comment>
+ <comment xml:lang="nl">PPM-afbeelding</comment>
+ <comment xml:lang="nb">PPM-bilde</comment>
+ <comment xml:lang="lv">PPM attēls</comment>
+ <comment xml:lang="lt">PPM paveikslėlis</comment>
+ <comment xml:lang="ko">PPM 그림</comment>
+ <comment xml:lang="kk">PPM суреті</comment>
+ <comment xml:lang="ka">PPM გამოსახულება</comment>
+ <comment xml:lang="ja">PPM 画像</comment>
+ <comment xml:lang="it">Immagine PPM</comment>
+ <comment xml:lang="is">PPM mynd</comment>
+ <comment xml:lang="id">Citra PPM</comment>
+ <comment xml:lang="ia">Imagine PPM</comment>
+ <comment xml:lang="hu">PPM kép</comment>
+ <comment xml:lang="hr">PPM slika</comment>
+ <comment xml:lang="he">תמונת PPM</comment>
+ <comment xml:lang="gl">imaxe PPM</comment>
+ <comment xml:lang="ga">íomhá PPM</comment>
+ <comment xml:lang="fur">imagjin PPM</comment>
+ <comment xml:lang="fr">image PPM</comment>
+ <comment xml:lang="fo">PPM mynd</comment>
+ <comment xml:lang="fi">PPM-kuva</comment>
+ <comment xml:lang="eu">PPM irudia</comment>
+ <comment xml:lang="es">imagen PPM</comment>
+ <comment xml:lang="eo">PPM-bildo</comment>
+ <comment xml:lang="en_GB">PPM image</comment>
+ <comment xml:lang="el">Εικόνα PPM</comment>
+ <comment xml:lang="de">PPM-Bild</comment>
+ <comment xml:lang="da">PPM-billede</comment>
+ <comment xml:lang="cy">Delwedd PPM</comment>
+ <comment xml:lang="cs">obrázek PPM</comment>
+ <comment xml:lang="ca">imatge PPM</comment>
+ <comment xml:lang="bg">Изображение — PPM</comment>
+ <comment xml:lang="be@latin">Vyjava PPM</comment>
+ <comment xml:lang="be">выява PPM</comment>
+ <comment xml:lang="ar">صورة PPM</comment>
+ <comment xml:lang="af">PPM-beeld</comment>
<acronym>PPM</acronym>
<expanded-acronym>Portable PixMap</expanded-acronym>
<sub-class-of type="image/x-portable-anymap"/>
- <magic priority="50">
- <match value="P3" type="string" offset="0">
- <match value="0x0a" type="byte" offset="2"/>
- <match value="0x20" type="byte" offset="2"/>
- <match value="0x09" type="byte" offset="2"/>
- <match value="0x0d" type="byte" offset="2"/>
+ <magic>
+ <match type="string" value="P3" offset="0">
+ <match type="byte" value="0x0a" offset="2"/>
+ <match type="byte" value="0x20" offset="2"/>
+ <match type="byte" value="0x09" offset="2"/>
+ <match type="byte" value="0x0d" offset="2"/>
</match>
- <match value="P6" type="string" offset="0">
- <match value="0x0a" type="byte" offset="2"/>
- <match value="0x20" type="byte" offset="2"/>
- <match value="0x09" type="byte" offset="2"/>
- <match value="0x0d" type="byte" offset="2"/>
+ <match type="string" value="P6" offset="0">
+ <match type="byte" value="0x0a" offset="2"/>
+ <match type="byte" value="0x20" offset="2"/>
+ <match type="byte" value="0x09" offset="2"/>
+ <match type="byte" value="0x0d" offset="2"/>
</match>
</magic>
<glob pattern="*.ppm"/>
</mime-type>
<mime-type type="image/vnd.adobe.photoshop">
<comment>Photoshop image</comment>
- <comment xml:lang="ar">صورة فوتوشوب</comment>
- <comment xml:lang="bg">Изображение — Photoshop</comment>
- <comment xml:lang="ca">imatge de Photoshop</comment>
- <comment xml:lang="cs">obrázek Photoshop</comment>
- <comment xml:lang="da">Photoshop-billede</comment>
- <comment xml:lang="de">Photoshop-Bild</comment>
- <comment xml:lang="el">Εικόνα Photoshop</comment>
- <comment xml:lang="en_GB">Photoshop image</comment>
- <comment xml:lang="eo">Photoshop-bildo</comment>
- <comment xml:lang="es">imagen de Photoshop</comment>
- <comment xml:lang="eu">Photoshop irudia</comment>
- <comment xml:lang="fi">Photoshop-kuva</comment>
- <comment xml:lang="fo">Photoshop mynd</comment>
- <comment xml:lang="fr">image Photoshop</comment>
- <comment xml:lang="ga">íomhá Photoshop</comment>
- <comment xml:lang="gl">imaxe de Photoshop</comment>
- <comment xml:lang="he">תמונת Photoshop</comment>
- <comment xml:lang="hr">Photoshop slika</comment>
- <comment xml:lang="hu">Photoshop-kép</comment>
- <comment xml:lang="ia">Imagine Photoshop</comment>
- <comment xml:lang="id">Citra Photoshop</comment>
- <comment xml:lang="it">Immagine Photoshop</comment>
- <comment xml:lang="ja">Photoshop 画像</comment>
- <comment xml:lang="kk">изображение Photoshop</comment>
- <comment xml:lang="ko">포토샵 이미지</comment>
- <comment xml:lang="lt">Photoshop paveikslėlis</comment>
- <comment xml:lang="lv">Photoshop attēls</comment>
- <comment xml:lang="ms">Imej Photoshop</comment>
- <comment xml:lang="nl">Photoshop-afbeelding</comment>
- <comment xml:lang="oc">imatge Photoshop</comment>
- <comment xml:lang="pl">Obraz Photoshop</comment>
- <comment xml:lang="pt">imagem Photoshop</comment>
- <comment xml:lang="pt_BR">Imagem do Photoshop</comment>
- <comment xml:lang="ro">Imagine Photoshop</comment>
- <comment xml:lang="ru">Изображение Photoshop</comment>
- <comment xml:lang="sk">Obrázok Photoshop</comment>
- <comment xml:lang="sl">Slikovna datoteka Photoshop</comment>
- <comment xml:lang="sr">Фотошоп слика</comment>
- <comment xml:lang="sv">Photoshop-bild</comment>
- <comment xml:lang="tr">Photoshop görüntüsü</comment>
- <comment xml:lang="uk">зображення Photoshop</comment>
- <comment xml:lang="vi">Ảnh Photoshop</comment>
- <comment xml:lang="zh_CN">Photoshop 图像</comment>
<comment xml:lang="zh_TW">Photoshop 影像</comment>
- <magic priority="50">
- <match value="8BPS \000\000\000\000" type="string" offset="0" mask="0xffffffff0000ffffffff"/>
+ <comment xml:lang="zh_CN">Photoshop 图像</comment>
+ <comment xml:lang="vi">Ảnh Photoshop</comment>
+ <comment xml:lang="uk">зображення Photoshop</comment>
+ <comment xml:lang="tr">Photoshop görüntüsü</comment>
+ <comment xml:lang="sv">Photoshop-bild</comment>
+ <comment xml:lang="sr">Фотошоп слика</comment>
+ <comment xml:lang="sq">figurë Photoshop</comment>
+ <comment xml:lang="sl">Slikovna datoteka Photoshop</comment>
+ <comment xml:lang="si">Photoshop රූපය</comment>
+ <comment xml:lang="sk">Obrázok Photoshop</comment>
+ <comment xml:lang="ru">Изображение Photoshop</comment>
+ <comment xml:lang="ro">Imagine Photoshop</comment>
+ <comment xml:lang="pt_BR">Imagem do Photoshop</comment>
+ <comment xml:lang="pt">imagem Photoshop</comment>
+ <comment xml:lang="pl">Obraz Photoshop</comment>
+ <comment xml:lang="oc">imatge Photoshop</comment>
+ <comment xml:lang="nl">Photoshop-afbeelding</comment>
+ <comment xml:lang="ms">Imej Photoshop</comment>
+ <comment xml:lang="lv">Photoshop attēls</comment>
+ <comment xml:lang="lt">Photoshop paveikslėlis</comment>
+ <comment xml:lang="ko">포토샵 이미지</comment>
+ <comment xml:lang="kk">изображение Photoshop</comment>
+ <comment xml:lang="ja">Photoshop 画像</comment>
+ <comment xml:lang="it">Immagine Photoshop</comment>
+ <comment xml:lang="is">Photoshop mynd</comment>
+ <comment xml:lang="id">Citra Photoshop</comment>
+ <comment xml:lang="ia">Imagine Photoshop</comment>
+ <comment xml:lang="hu">Photoshop-kép</comment>
+ <comment xml:lang="hr">Photoshop slika</comment>
+ <comment xml:lang="he">תמונת Photoshop</comment>
+ <comment xml:lang="gl">imaxe de Photoshop</comment>
+ <comment xml:lang="ga">íomhá Photoshop</comment>
+ <comment xml:lang="fur">imagjin Photoshop</comment>
+ <comment xml:lang="fr">image Photoshop</comment>
+ <comment xml:lang="fo">Photoshop mynd</comment>
+ <comment xml:lang="fi">Photoshop-kuva</comment>
+ <comment xml:lang="eu">Photoshop irudia</comment>
+ <comment xml:lang="es">imagen de Photoshop</comment>
+ <comment xml:lang="eo">Photoshop-bildo</comment>
+ <comment xml:lang="en_GB">Photoshop image</comment>
+ <comment xml:lang="el">Εικόνα Photoshop</comment>
+ <comment xml:lang="de">Photoshop-Bild</comment>
+ <comment xml:lang="da">Photoshop-billede</comment>
+ <comment xml:lang="cs">obrázek Photoshop</comment>
+ <comment xml:lang="ca">imatge de Photoshop</comment>
+ <comment xml:lang="bg">Изображение — Photoshop</comment>
+ <comment xml:lang="be">выява Photoshop</comment>
+ <comment xml:lang="ar">صورة فوتوشوب</comment>
+ <comment xml:lang="af">Photoshop-beeld</comment>
+ <magic>
+ <match type="string" mask="0xffffffff0000ffffffff" value="8BPS \000\000\000\000" offset="0"/>
</magic>
<glob pattern="*.psd"/>
<alias type="image/psd"/>
@@ -29244,226 +31909,246 @@
</mime-type>
<mime-type type="image/x-rgb">
<comment>RGB image</comment>
- <comment xml:lang="ar">صورة RGB</comment>
- <comment xml:lang="az">RGB rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava RGB</comment>
- <comment xml:lang="bg">Изображение — RGB</comment>
- <comment xml:lang="ca">imatge RGB</comment>
- <comment xml:lang="cs">obrázek RGB</comment>
- <comment xml:lang="cy">Delwedd RGB</comment>
- <comment xml:lang="da">RGB-billede</comment>
- <comment xml:lang="de">RGB-Bild</comment>
- <comment xml:lang="el">Εικόνα RGB</comment>
- <comment xml:lang="en_GB">RGB image</comment>
- <comment xml:lang="eo">RGB-bildo</comment>
- <comment xml:lang="es">imagen RGB</comment>
- <comment xml:lang="eu">RGB irudia</comment>
- <comment xml:lang="fi">RGB-kuva</comment>
- <comment xml:lang="fo">RGB mynd</comment>
- <comment xml:lang="fr">image RGB</comment>
- <comment xml:lang="ga">íomhá RGB</comment>
- <comment xml:lang="gl">imaxe RGB</comment>
- <comment xml:lang="he">תמונת RGB</comment>
- <comment xml:lang="hr">RGB slika</comment>
- <comment xml:lang="hu">RGB-kép</comment>
- <comment xml:lang="ia">Imagine RGB</comment>
- <comment xml:lang="id">Citra RGB</comment>
- <comment xml:lang="it">Immagine RGB</comment>
- <comment xml:lang="ja">RGB 画像</comment>
- <comment xml:lang="kk">RGB суреті</comment>
- <comment xml:lang="ko">RGB 그림</comment>
- <comment xml:lang="lt">RGB paveikslėlis</comment>
- <comment xml:lang="lv">RGB attēls</comment>
- <comment xml:lang="ms">Imej RGB</comment>
- <comment xml:lang="nb">RGB-bilde</comment>
- <comment xml:lang="nl">RGB-afbeelding</comment>
- <comment xml:lang="nn">RGB-bilete</comment>
- <comment xml:lang="oc">imatge RGB</comment>
- <comment xml:lang="pl">Obraz RGB</comment>
- <comment xml:lang="pt">imagem RGB</comment>
- <comment xml:lang="pt_BR">Imagem RGB</comment>
- <comment xml:lang="ro">Imagine RGB</comment>
- <comment xml:lang="ru">Изображение RGB</comment>
- <comment xml:lang="sk">Obrázok RGB</comment>
- <comment xml:lang="sl">Slikovna datoteka RGB</comment>
- <comment xml:lang="sq">Figurë RGB</comment>
- <comment xml:lang="sr">РГБ слика</comment>
- <comment xml:lang="sv">RGB-bild</comment>
- <comment xml:lang="tr">RGB görüntüsü</comment>
- <comment xml:lang="uk">зображення RGB</comment>
- <comment xml:lang="vi">Ảnh kiểu RGB</comment>
- <comment xml:lang="zh_CN">RGB 图像</comment>
<comment xml:lang="zh_TW">RGB 影像</comment>
+ <comment xml:lang="zh_CN">RGB 图像</comment>
+ <comment xml:lang="vi">Ảnh kiểu RGB</comment>
+ <comment xml:lang="uk">зображення RGB</comment>
+ <comment xml:lang="tr">RGB görüntüsü</comment>
+ <comment xml:lang="sv">RGB-bild</comment>
+ <comment xml:lang="sr">РГБ слика</comment>
+ <comment xml:lang="sq">figurë RGB</comment>
+ <comment xml:lang="sl">Slikovna datoteka RGB</comment>
+ <comment xml:lang="si">RGB රූපය</comment>
+ <comment xml:lang="sk">Obrázok RGB</comment>
+ <comment xml:lang="ru">Изображение RGB</comment>
+ <comment xml:lang="ro">Imagine RGB</comment>
+ <comment xml:lang="pt_BR">Imagem RGB</comment>
+ <comment xml:lang="pt">imagem RGB</comment>
+ <comment xml:lang="pl">Obraz RGB</comment>
+ <comment xml:lang="oc">imatge RGB</comment>
+ <comment xml:lang="nn">RGB-bilete</comment>
+ <comment xml:lang="nl">RGB-afbeelding</comment>
+ <comment xml:lang="nb">RGB-bilde</comment>
+ <comment xml:lang="ms">Imej RGB</comment>
+ <comment xml:lang="lv">RGB attēls</comment>
+ <comment xml:lang="lt">RGB paveikslėlis</comment>
+ <comment xml:lang="ko">RGB 그림</comment>
+ <comment xml:lang="kk">RGB суреті</comment>
+ <comment xml:lang="ja">RGB 画像</comment>
+ <comment xml:lang="it">Immagine RGB</comment>
+ <comment xml:lang="is">RGB mynd</comment>
+ <comment xml:lang="id">Citra RGB</comment>
+ <comment xml:lang="ia">Imagine RGB</comment>
+ <comment xml:lang="hu">RGB-kép</comment>
+ <comment xml:lang="hr">RGB slika</comment>
+ <comment xml:lang="he">תמונת RGB</comment>
+ <comment xml:lang="gl">imaxe RGB</comment>
+ <comment xml:lang="ga">íomhá RGB</comment>
+ <comment xml:lang="fur">imagjin RGB</comment>
+ <comment xml:lang="fr">image RGB</comment>
+ <comment xml:lang="fo">RGB mynd</comment>
+ <comment xml:lang="fi">RGB-kuva</comment>
+ <comment xml:lang="eu">RGB irudia</comment>
+ <comment xml:lang="es">imagen RGB</comment>
+ <comment xml:lang="eo">RGB-bildo</comment>
+ <comment xml:lang="en_GB">RGB image</comment>
+ <comment xml:lang="el">Εικόνα RGB</comment>
+ <comment xml:lang="de">RGB-Bild</comment>
+ <comment xml:lang="da">RGB-billede</comment>
+ <comment xml:lang="cy">Delwedd RGB</comment>
+ <comment xml:lang="cs">obrázek RGB</comment>
+ <comment xml:lang="ca">imatge RGB</comment>
+ <comment xml:lang="bg">Изображение — RGB</comment>
+ <comment xml:lang="be@latin">Vyjava RGB</comment>
+ <comment xml:lang="be">выява RGB</comment>
+ <comment xml:lang="az">RGB rəsmi</comment>
+ <comment xml:lang="ar">صورة RGB</comment>
+ <comment xml:lang="af">RGB-beeld</comment>
<glob pattern="*.rgb"/>
</mime-type>
<mime-type type="image/x-sgi">
<comment>SGI image</comment>
- <comment xml:lang="ar">صورة SGI</comment>
- <comment xml:lang="be@latin">Vyjava SGI</comment>
- <comment xml:lang="bg">Изображение — SGI</comment>
- <comment xml:lang="ca">imatge SGI</comment>
- <comment xml:lang="cs">obrázek SGI</comment>
- <comment xml:lang="da">SGI-billede</comment>
- <comment xml:lang="de">SGI-Bild</comment>
- <comment xml:lang="el">Εικόνα SGI</comment>
- <comment xml:lang="en_GB">SGI image</comment>
- <comment xml:lang="eo">SGI-bildo</comment>
- <comment xml:lang="es">imagen SGI</comment>
- <comment xml:lang="eu">SGI irudia</comment>
- <comment xml:lang="fi">SGI-kuva</comment>
- <comment xml:lang="fo">SGI mynd</comment>
- <comment xml:lang="fr">image SGI</comment>
- <comment xml:lang="ga">íomhá SGI</comment>
- <comment xml:lang="gl">imaxe SGI</comment>
- <comment xml:lang="he">תמונת SGI</comment>
- <comment xml:lang="hr">SGI slika</comment>
- <comment xml:lang="hu">SGI kép</comment>
- <comment xml:lang="ia">Imagine SGI</comment>
- <comment xml:lang="id">Citra SGI</comment>
- <comment xml:lang="it">Immagine SGI</comment>
- <comment xml:lang="ja">SGI 画像</comment>
- <comment xml:lang="kk">SGI суреті</comment>
- <comment xml:lang="ko">SGI 그림</comment>
- <comment xml:lang="lt">SGI paveikslėlis</comment>
- <comment xml:lang="lv">SGI attēls</comment>
- <comment xml:lang="nb">SGI-bilde</comment>
- <comment xml:lang="nl">SGI-afbeelding</comment>
- <comment xml:lang="nn">SGI-bilete</comment>
- <comment xml:lang="oc">imatge SGI</comment>
- <comment xml:lang="pl">Obraz SGI</comment>
- <comment xml:lang="pt">imagem SGI</comment>
- <comment xml:lang="pt_BR">Imagem SGI</comment>
- <comment xml:lang="ro">Imagine SGI</comment>
- <comment xml:lang="ru">Изображение SGI</comment>
- <comment xml:lang="sk">Obrázok SGI</comment>
- <comment xml:lang="sl">Slikovna datoteka SGI</comment>
- <comment xml:lang="sq">Figurë SGI</comment>
- <comment xml:lang="sr">СГИ слика</comment>
- <comment xml:lang="sv">SGI-bild</comment>
- <comment xml:lang="tr">SGI görüntüsü</comment>
- <comment xml:lang="uk">зображення SGI</comment>
- <comment xml:lang="vi">Ảnh SGI</comment>
- <comment xml:lang="zh_CN">SGI 图像</comment>
<comment xml:lang="zh_TW">SGI 影像</comment>
+ <comment xml:lang="zh_CN">SGI 图像</comment>
+ <comment xml:lang="vi">Ảnh SGI</comment>
+ <comment xml:lang="uk">зображення SGI</comment>
+ <comment xml:lang="tr">SGI görüntüsü</comment>
+ <comment xml:lang="sv">SGI-bild</comment>
+ <comment xml:lang="sr">СГИ слика</comment>
+ <comment xml:lang="sq">figurë SGI</comment>
+ <comment xml:lang="sl">Slikovna datoteka SGI</comment>
+ <comment xml:lang="si">SGI රූපය</comment>
+ <comment xml:lang="sk">Obrázok SGI</comment>
+ <comment xml:lang="ru">Изображение SGI</comment>
+ <comment xml:lang="ro">Imagine SGI</comment>
+ <comment xml:lang="pt_BR">Imagem SGI</comment>
+ <comment xml:lang="pt">imagem SGI</comment>
+ <comment xml:lang="pl">Obraz SGI</comment>
+ <comment xml:lang="oc">imatge SGI</comment>
+ <comment xml:lang="nn">SGI-bilete</comment>
+ <comment xml:lang="nl">SGI-afbeelding</comment>
+ <comment xml:lang="nb">SGI-bilde</comment>
+ <comment xml:lang="lv">SGI attēls</comment>
+ <comment xml:lang="lt">SGI paveikslėlis</comment>
+ <comment xml:lang="ko">SGI 그림</comment>
+ <comment xml:lang="kk">SGI суреті</comment>
+ <comment xml:lang="ja">SGI 画像</comment>
+ <comment xml:lang="it">Immagine SGI</comment>
+ <comment xml:lang="is">SGI mynd</comment>
+ <comment xml:lang="id">Citra SGI</comment>
+ <comment xml:lang="ia">Imagine SGI</comment>
+ <comment xml:lang="hu">SGI kép</comment>
+ <comment xml:lang="hr">SGI slika</comment>
+ <comment xml:lang="he">תמונת SGI</comment>
+ <comment xml:lang="gl">imaxe SGI</comment>
+ <comment xml:lang="ga">íomhá SGI</comment>
+ <comment xml:lang="fur">imagjin SGI</comment>
+ <comment xml:lang="fr">image SGI</comment>
+ <comment xml:lang="fo">SGI mynd</comment>
+ <comment xml:lang="fi">SGI-kuva</comment>
+ <comment xml:lang="eu">SGI irudia</comment>
+ <comment xml:lang="es">imagen SGI</comment>
+ <comment xml:lang="eo">SGI-bildo</comment>
+ <comment xml:lang="en_GB">SGI image</comment>
+ <comment xml:lang="el">Εικόνα SGI</comment>
+ <comment xml:lang="de">SGI-Bild</comment>
+ <comment xml:lang="da">SGI-billede</comment>
+ <comment xml:lang="cs">obrázek SGI</comment>
+ <comment xml:lang="ca">imatge SGI</comment>
+ <comment xml:lang="bg">Изображение — SGI</comment>
+ <comment xml:lang="be@latin">Vyjava SGI</comment>
+ <comment xml:lang="be">выява SGI</comment>
+ <comment xml:lang="ar">صورة SGI</comment>
+ <comment xml:lang="af">SGI-beeld</comment>
<glob pattern="*.sgi"/>
</mime-type>
<mime-type type="image/x-sun-raster">
<comment>Sun raster image</comment>
- <comment xml:lang="ar">صورة Sun raster</comment>
- <comment xml:lang="be@latin">Rastravaja vyjava Sun</comment>
- <comment xml:lang="bg">Изображение — Sun raster</comment>
- <comment xml:lang="ca">imatge ràster Sun</comment>
- <comment xml:lang="cs">rastrový obrázek Sun</comment>
- <comment xml:lang="da">Sun rasterbillede</comment>
- <comment xml:lang="de">Sun-Rasterbild</comment>
- <comment xml:lang="el">Εικόνα Sun raster</comment>
- <comment xml:lang="en_GB">Sun raster image</comment>
- <comment xml:lang="es">imagen rasterizada de Sun</comment>
- <comment xml:lang="eu">Sun raster irudia</comment>
- <comment xml:lang="fi">Sun-rasterikuva</comment>
- <comment xml:lang="fo">Sun raster mynd</comment>
- <comment xml:lang="fr">image raster Sun</comment>
- <comment xml:lang="ga">íomhá rastar Sun</comment>
- <comment xml:lang="gl">imaxe ráster de Sun</comment>
- <comment xml:lang="he">תמונה סרוקה של Sun</comment>
- <comment xml:lang="hr">Sun iscrtana slika</comment>
- <comment xml:lang="hu">SUN raszterkép</comment>
- <comment xml:lang="ia">Imagine raster Sun</comment>
- <comment xml:lang="id">Citra raster Sun</comment>
- <comment xml:lang="it">Immagine raster Sun</comment>
- <comment xml:lang="ja">Sun ラスタ画像</comment>
- <comment xml:lang="kk">Sun растрлық суреті</comment>
- <comment xml:lang="ko">Sun 래스터 그림</comment>
- <comment xml:lang="lt">Sun rastrinis paveikslėlis</comment>
- <comment xml:lang="lv">Sun rastra attēls</comment>
- <comment xml:lang="nb">Sun rasterbilde</comment>
- <comment xml:lang="nl">Sun-rasterafbeelding</comment>
- <comment xml:lang="nn">Sun rasterbilete</comment>
- <comment xml:lang="oc">imatge raster Sun</comment>
- <comment xml:lang="pl">Obraz rastrowy Sun</comment>
- <comment xml:lang="pt">imagem raster Sun</comment>
- <comment xml:lang="pt_BR">Imagem raster da Sun</comment>
- <comment xml:lang="ro">Imagine rasterizată Sun</comment>
- <comment xml:lang="ru">Растровое изображение Sun</comment>
- <comment xml:lang="sk">Rastrový obrázok Sun</comment>
- <comment xml:lang="sl">Slikovna rastrska datoteka Sun</comment>
- <comment xml:lang="sq">Figurë raster Sun</comment>
- <comment xml:lang="sr">слика Сановог растера</comment>
- <comment xml:lang="sv">Sun-rasterbild</comment>
- <comment xml:lang="tr">Sun raster görüntüsü</comment>
- <comment xml:lang="uk">растрове зображення Sun</comment>
- <comment xml:lang="vi">Ảnh mành Sun</comment>
- <comment xml:lang="zh_CN">Sun 光栅图像</comment>
<comment xml:lang="zh_TW">Sun raster 影像</comment>
- <magic priority="50">
- <match value="0x59a66a95" type="big32" offset="0"/>
+ <comment xml:lang="zh_CN">Sun 光栅图像</comment>
+ <comment xml:lang="vi">Ảnh mành Sun</comment>
+ <comment xml:lang="uk">растрове зображення Sun</comment>
+ <comment xml:lang="tr">Sun raster görüntüsü</comment>
+ <comment xml:lang="sv">Sun-rasterbild</comment>
+ <comment xml:lang="sr">слика Сановог растера</comment>
+ <comment xml:lang="sq">figurë raster Sun</comment>
+ <comment xml:lang="sl">Slikovna rastrska datoteka Sun</comment>
+ <comment xml:lang="si">හිරු රස්ටර් රූපය</comment>
+ <comment xml:lang="sk">Rastrový obrázok Sun</comment>
+ <comment xml:lang="ru">Растровое изображение Sun</comment>
+ <comment xml:lang="ro">Imagine rasterizată Sun</comment>
+ <comment xml:lang="pt_BR">Imagem raster da Sun</comment>
+ <comment xml:lang="pt">imagem raster Sun</comment>
+ <comment xml:lang="pl">Obraz rastrowy Sun</comment>
+ <comment xml:lang="oc">imatge raster Sun</comment>
+ <comment xml:lang="nn">Sun rasterbilete</comment>
+ <comment xml:lang="nl">Sun-rasterafbeelding</comment>
+ <comment xml:lang="nb">Sun rasterbilde</comment>
+ <comment xml:lang="lv">Sun rastra attēls</comment>
+ <comment xml:lang="lt">Sun rastrinis paveikslėlis</comment>
+ <comment xml:lang="ko">Sun 래스터 그림</comment>
+ <comment xml:lang="kk">Sun растрлық суреті</comment>
+ <comment xml:lang="ja">Sun ラスタ画像</comment>
+ <comment xml:lang="it">Immagine raster Sun</comment>
+ <comment xml:lang="is">Sun rastamynd</comment>
+ <comment xml:lang="id">Citra raster Sun</comment>
+ <comment xml:lang="ia">Imagine raster Sun</comment>
+ <comment xml:lang="hu">SUN raszterkép</comment>
+ <comment xml:lang="hr">Sun iscrtana slika</comment>
+ <comment xml:lang="he">תמונה סרוקה של Sun</comment>
+ <comment xml:lang="gl">imaxe ráster de Sun</comment>
+ <comment xml:lang="ga">íomhá rastar Sun</comment>
+ <comment xml:lang="fur">imagjin raster Sun</comment>
+ <comment xml:lang="fr">image raster Sun</comment>
+ <comment xml:lang="fo">Sun raster mynd</comment>
+ <comment xml:lang="fi">Sun-rasterikuva</comment>
+ <comment xml:lang="eu">Sun raster irudia</comment>
+ <comment xml:lang="es">imagen rasterizada de Sun</comment>
+ <comment xml:lang="en_GB">Sun raster image</comment>
+ <comment xml:lang="el">Εικόνα Sun raster</comment>
+ <comment xml:lang="de">Sun-Rasterbild</comment>
+ <comment xml:lang="da">Sun rasterbillede</comment>
+ <comment xml:lang="cs">rastrový obrázek Sun</comment>
+ <comment xml:lang="ca">imatge ràster Sun</comment>
+ <comment xml:lang="bg">Изображение — Sun raster</comment>
+ <comment xml:lang="be@latin">Rastravaja vyjava Sun</comment>
+ <comment xml:lang="be">выява Sun raster</comment>
+ <comment xml:lang="ar">صورة Sun raster</comment>
+ <comment xml:lang="af">Sun-roosterbeeld</comment>
+ <magic>
+ <match type="big32" value="0x59a66a95" offset="0"/>
</magic>
<glob pattern="*.sun"/>
</mime-type>
<mime-type type="image/x-tga">
<comment>TGA image</comment>
- <comment xml:lang="ar">صورة TGA</comment>
- <comment xml:lang="be@latin">Vyjava TGA</comment>
- <comment xml:lang="bg">Изображение — TGA</comment>
- <comment xml:lang="ca">imatge TGA</comment>
- <comment xml:lang="cs">obrázek TGA</comment>
- <comment xml:lang="da">TGA-billede</comment>
- <comment xml:lang="de">TGA-Bild</comment>
- <comment xml:lang="el">Εικόνα TGA</comment>
- <comment xml:lang="en_GB">TGA image</comment>
- <comment xml:lang="eo">TGA-bildo</comment>
- <comment xml:lang="es">imagen TGA</comment>
- <comment xml:lang="eu">TGA irudia</comment>
- <comment xml:lang="fi">TGA-kuva</comment>
- <comment xml:lang="fo">TGA mynd</comment>
- <comment xml:lang="fr">image TGA</comment>
- <comment xml:lang="ga">íomhá TGA</comment>
- <comment xml:lang="gl">imaxe TGA</comment>
- <comment xml:lang="he">תמונת TGA</comment>
- <comment xml:lang="hr">TGA slika</comment>
- <comment xml:lang="hu">TGA kép</comment>
- <comment xml:lang="ia">Imagine TGA</comment>
- <comment xml:lang="id">Citra TGA</comment>
- <comment xml:lang="it">Immagine TGA</comment>
- <comment xml:lang="ja">TGA 画像</comment>
- <comment xml:lang="kk">TGA суреті</comment>
- <comment xml:lang="ko">TGA 그림</comment>
- <comment xml:lang="lt">TGA paveikslėlis</comment>
- <comment xml:lang="lv">TGA attēls</comment>
- <comment xml:lang="nb">TGA-bilde</comment>
- <comment xml:lang="nl">TGA-afbeelding</comment>
- <comment xml:lang="nn">TGA-bilete</comment>
- <comment xml:lang="oc">imatge TGA</comment>
- <comment xml:lang="pl">Obraz TGA</comment>
- <comment xml:lang="pt">imagem TGA</comment>
- <comment xml:lang="pt_BR">Imagem TGA</comment>
- <comment xml:lang="ro">Imagine TGA</comment>
- <comment xml:lang="ru">Изображение TGA</comment>
- <comment xml:lang="sk">Obrázok TGA</comment>
- <comment xml:lang="sl">Slikovna datoteka TGA</comment>
- <comment xml:lang="sq">Figurë TGA</comment>
- <comment xml:lang="sr">ТГА слика</comment>
- <comment xml:lang="sv">TGA-bild</comment>
- <comment xml:lang="tr">TGA görüntüsü</comment>
- <comment xml:lang="uk">зображення TGA</comment>
- <comment xml:lang="vi">Ảnh TGA</comment>
- <comment xml:lang="zh_CN">TGA 图像</comment>
<comment xml:lang="zh_TW">TGA 影像</comment>
+ <comment xml:lang="zh_CN">TGA 图像</comment>
+ <comment xml:lang="vi">Ảnh TGA</comment>
+ <comment xml:lang="uk">зображення TGA</comment>
+ <comment xml:lang="tr">TGA görüntüsü</comment>
+ <comment xml:lang="sv">TGA-bild</comment>
+ <comment xml:lang="sr">ТГА слика</comment>
+ <comment xml:lang="sq">figurë TGA</comment>
+ <comment xml:lang="sl">Slikovna datoteka TGA</comment>
+ <comment xml:lang="si">TGA රූපය</comment>
+ <comment xml:lang="sk">Obrázok TGA</comment>
+ <comment xml:lang="ru">Изображение TGA</comment>
+ <comment xml:lang="ro">Imagine TGA</comment>
+ <comment xml:lang="pt_BR">Imagem TGA</comment>
+ <comment xml:lang="pt">imagem TGA</comment>
+ <comment xml:lang="pl">Obraz TGA</comment>
+ <comment xml:lang="oc">imatge TGA</comment>
+ <comment xml:lang="nn">TGA-bilete</comment>
+ <comment xml:lang="nl">TGA-afbeelding</comment>
+ <comment xml:lang="nb">TGA-bilde</comment>
+ <comment xml:lang="lv">TGA attēls</comment>
+ <comment xml:lang="lt">TGA paveikslėlis</comment>
+ <comment xml:lang="ko">TGA 그림</comment>
+ <comment xml:lang="kk">TGA суреті</comment>
+ <comment xml:lang="ja">TGA 画像</comment>
+ <comment xml:lang="it">Immagine TGA</comment>
+ <comment xml:lang="is">TGA mynd</comment>
+ <comment xml:lang="id">Citra TGA</comment>
+ <comment xml:lang="ia">Imagine TGA</comment>
+ <comment xml:lang="hu">TGA kép</comment>
+ <comment xml:lang="hr">TGA slika</comment>
+ <comment xml:lang="he">תמונת TGA</comment>
+ <comment xml:lang="gl">imaxe TGA</comment>
+ <comment xml:lang="ga">íomhá TGA</comment>
+ <comment xml:lang="fur">imagjin TGA</comment>
+ <comment xml:lang="fr">image TGA</comment>
+ <comment xml:lang="fo">TGA mynd</comment>
+ <comment xml:lang="fi">TGA-kuva</comment>
+ <comment xml:lang="eu">TGA irudia</comment>
+ <comment xml:lang="es">imagen TGA</comment>
+ <comment xml:lang="eo">TGA-bildo</comment>
+ <comment xml:lang="en_GB">TGA image</comment>
+ <comment xml:lang="el">Εικόνα TGA</comment>
+ <comment xml:lang="de">TGA-Bild</comment>
+ <comment xml:lang="da">TGA-billede</comment>
+ <comment xml:lang="cs">obrázek TGA</comment>
+ <comment xml:lang="ca">imatge TGA</comment>
+ <comment xml:lang="bg">Изображение — TGA</comment>
+ <comment xml:lang="be@latin">Vyjava TGA</comment>
+ <comment xml:lang="be">выява TGA</comment>
+ <comment xml:lang="ar">صورة TGA</comment>
+ <comment xml:lang="af">TGA-beeld</comment>
<acronym>TGA</acronym>
<expanded-acronym>Truevision Graphics Adapter</expanded-acronym>
<magic priority="10">
- <match value="\1\1" type="string" offset="1"/>
- <match value="\1\11" type="string" offset="1"/>
- <match value="\0\3" type="string" offset="1"/>
- <match value="\0\xa" type="string" offset="1"/>
- <match value="\0\xb" type="string" offset="1"/>
+ <match type="string" value="\1\1" offset="1"/>
+ <match type="string" value="\1\11" offset="1"/>
+ <match type="string" value="\0\3" offset="1"/>
+ <match type="string" value="\0\xa" offset="1"/>
+ <match type="string" value="\0\xb" offset="1"/>
</magic>
- <magic priority="50">
- <match value="\0\2" type="string" offset="1">
- <match value="0x08" type="byte" offset="16"/>
- <match value="0x10" type="byte" offset="16"/>
- <match value="0x18" type="byte" offset="16"/>
- <match value="0x20" type="byte" offset="16"/>
+ <magic>
+ <match type="string" value="\0\2" offset="1">
+ <match type="byte" value="0x08" offset="16"/>
+ <match type="byte" value="0x10" offset="16"/>
+ <match type="byte" value="0x18" offset="16"/>
+ <match type="byte" value="0x20" offset="16"/>
</match>
</magic>
<glob pattern="*.tga"/>
@@ -29471,180 +32156,202 @@
<glob pattern="*.tpic"/>
<glob pattern="*.vda"/>
<glob pattern="*.vst"/>
+ <alias type="application/tga"/>
+ <alias type="application/x-targa"/>
+ <alias type="application/x-tga"/>
+ <alias type="image/targa"/>
+ <alias type="image/tga"/>
<alias type="image/x-icb"/>
+ <alias type="image/x-targa"/>
</mime-type>
<mime-type type="image/x-win-bitmap">
<comment>Windows cursor</comment>
- <comment xml:lang="ar">مؤشر ويندوز</comment>
- <comment xml:lang="be@latin">Kursor Windows</comment>
- <comment xml:lang="bg">Курсор — Windows</comment>
- <comment xml:lang="ca">cursor de Windows</comment>
- <comment xml:lang="cs">kurzor Windows</comment>
- <comment xml:lang="da">Windowsmarkør</comment>
- <comment xml:lang="de">Windows-Cursor</comment>
- <comment xml:lang="el">Δρομέας Windows</comment>
- <comment xml:lang="en_GB">Windows cursor</comment>
- <comment xml:lang="eo">Windows-kursoro</comment>
- <comment xml:lang="es">cursor de Windows</comment>
- <comment xml:lang="eu">Windows kurtsorea</comment>
- <comment xml:lang="fi">Windows-osoitin</comment>
- <comment xml:lang="fo">Windows vísi</comment>
- <comment xml:lang="fr">curseur Windows</comment>
- <comment xml:lang="ga">cúrsóir Windows</comment>
- <comment xml:lang="gl">Cursor de Windows</comment>
- <comment xml:lang="he">סמן של Windows</comment>
- <comment xml:lang="hr">Windows pokazivač</comment>
- <comment xml:lang="hu">Windows-kurzor</comment>
- <comment xml:lang="ia">Cursor pro Windows</comment>
- <comment xml:lang="id">Kursor Windows</comment>
- <comment xml:lang="it">Cursore Windows</comment>
- <comment xml:lang="ja">Windows カーソル</comment>
- <comment xml:lang="kk">Windows курсоры</comment>
- <comment xml:lang="ko">Windows 커서</comment>
- <comment xml:lang="lt">Windows žymiklis</comment>
- <comment xml:lang="lv">Windows kursors</comment>
- <comment xml:lang="ms">Kursor Windows</comment>
- <comment xml:lang="nb">Windows-markør</comment>
- <comment xml:lang="nl">Windows-muisaanwijzer</comment>
- <comment xml:lang="nn">Windows-peikar</comment>
- <comment xml:lang="oc">cursor Windows</comment>
- <comment xml:lang="pl">Kursor Windows</comment>
- <comment xml:lang="pt">cursor Windows</comment>
- <comment xml:lang="pt_BR">Cursor do Windows</comment>
- <comment xml:lang="ro">Cursor Windows</comment>
- <comment xml:lang="ru">Курсор Windows</comment>
- <comment xml:lang="sk">Kurzor Windows</comment>
- <comment xml:lang="sl">Datoteka kazalke Windows</comment>
- <comment xml:lang="sq">Kursor Windows</comment>
- <comment xml:lang="sr">Виндоузов курсор</comment>
- <comment xml:lang="sv">Windows-muspekare</comment>
- <comment xml:lang="tr">Windows imleci</comment>
- <comment xml:lang="uk">курсор Windows</comment>
- <comment xml:lang="vi">Con chạy Windows</comment>
- <comment xml:lang="zh_CN">Windows 光标</comment>
<comment xml:lang="zh_TW">Windows 滑鼠游標</comment>
- <magic priority="50">
- <match value="\0\0\2\0" type="string" offset="0">
- <match value="\0" type="string" offset="5"/>
+ <comment xml:lang="zh_CN">Windows 光标</comment>
+ <comment xml:lang="vi">Con chạy Windows</comment>
+ <comment xml:lang="uk">курсор Windows</comment>
+ <comment xml:lang="tr">Windows imleci</comment>
+ <comment xml:lang="sv">Windows-muspekare</comment>
+ <comment xml:lang="sr">Виндоузов курсор</comment>
+ <comment xml:lang="sq">kursor Windows</comment>
+ <comment xml:lang="sl">Datoteka kazalke Windows</comment>
+ <comment xml:lang="si">වින්ඩෝස් කර්සරය</comment>
+ <comment xml:lang="sk">Kurzor Windows</comment>
+ <comment xml:lang="ru">Курсор Windows</comment>
+ <comment xml:lang="ro">Cursor Windows</comment>
+ <comment xml:lang="pt_BR">Cursor do Windows</comment>
+ <comment xml:lang="pt">cursor Windows</comment>
+ <comment xml:lang="pl">Kursor Windows</comment>
+ <comment xml:lang="oc">cursor Windows</comment>
+ <comment xml:lang="nn">Windows-peikar</comment>
+ <comment xml:lang="nl">Windows-muisaanwijzer</comment>
+ <comment xml:lang="nb">Windows-markør</comment>
+ <comment xml:lang="ms">Kursor Windows</comment>
+ <comment xml:lang="lv">Windows kursors</comment>
+ <comment xml:lang="lt">Windows žymeklis</comment>
+ <comment xml:lang="ko">Windows 커서</comment>
+ <comment xml:lang="kk">Windows курсоры</comment>
+ <comment xml:lang="ja">Windows カーソル</comment>
+ <comment xml:lang="it">Cursore Windows</comment>
+ <comment xml:lang="is">Windows bendill</comment>
+ <comment xml:lang="id">Kursor Windows</comment>
+ <comment xml:lang="ia">Cursor pro Windows</comment>
+ <comment xml:lang="hu">Windows-kurzor</comment>
+ <comment xml:lang="hr">Windows pokazivač</comment>
+ <comment xml:lang="he">סמן של Windows</comment>
+ <comment xml:lang="gl">Cursor de Windows</comment>
+ <comment xml:lang="ga">cúrsóir Windows</comment>
+ <comment xml:lang="fur">cursôr di Windows</comment>
+ <comment xml:lang="fr">curseur Windows</comment>
+ <comment xml:lang="fo">Windows vísi</comment>
+ <comment xml:lang="fi">Windows-osoitin</comment>
+ <comment xml:lang="eu">Windows kurtsorea</comment>
+ <comment xml:lang="es">cursor de Windows</comment>
+ <comment xml:lang="eo">Windows-kursoro</comment>
+ <comment xml:lang="en_GB">Windows cursor</comment>
+ <comment xml:lang="el">Δρομέας Windows</comment>
+ <comment xml:lang="de">Windows-Mauszeiger</comment>
+ <comment xml:lang="da">Windowsmarkør</comment>
+ <comment xml:lang="cs">kurzor Windows</comment>
+ <comment xml:lang="ca">cursor de Windows</comment>
+ <comment xml:lang="bg">Курсор — Windows</comment>
+ <comment xml:lang="be@latin">Kursor Windows</comment>
+ <comment xml:lang="be">курсор Windows</comment>
+ <comment xml:lang="ar">مؤشر ويندوز</comment>
+ <comment xml:lang="af">Windows-wyser</comment>
+ <magic>
+ <match type="string" value="\0\0\2\0" offset="0">
+ <match type="string" value="\0" offset="5"/>
</match>
</magic>
<glob pattern="*.cur"/>
</mime-type>
<mime-type type="application/x-navi-animation">
<comment>Windows animated cursor</comment>
- <comment xml:lang="ar">مؤشر ويندوز المتحرك</comment>
- <comment xml:lang="be@latin">Animavany kursor Windows</comment>
- <comment xml:lang="bg">Курсор — Windows, анимиран</comment>
- <comment xml:lang="ca">cursor animat de Windows</comment>
- <comment xml:lang="cs">animovaný kurzor Windows</comment>
- <comment xml:lang="da">Windowsanimeret markør</comment>
- <comment xml:lang="de">Animierter Windows-Cursor</comment>
- <comment xml:lang="el">Κινούμενος δρομέας Windows</comment>
- <comment xml:lang="en_GB">Windows animated cursor</comment>
- <comment xml:lang="es">cursor animado de Windows</comment>
- <comment xml:lang="eu">Windows-eko kurtsore animatua</comment>
- <comment xml:lang="fi">animoitu Windows-osoitin</comment>
- <comment xml:lang="fo">Windows livindaigjørdur vísi</comment>
- <comment xml:lang="fr">curseur animé Windows</comment>
- <comment xml:lang="ga">cúrsóir beoite Windows</comment>
- <comment xml:lang="gl">Cursor animado de Windows</comment>
- <comment xml:lang="he">סמן מונפש של Windows</comment>
- <comment xml:lang="hr">Windows animirani pokazivač</comment>
- <comment xml:lang="hu">Windows animált kurzor</comment>
- <comment xml:lang="ia">Cursor animate pro Windows</comment>
- <comment xml:lang="id">Kursor animasi Windows</comment>
- <comment xml:lang="it">Cursore animato Windows</comment>
- <comment xml:lang="ja">Windows アニメーションカーソル</comment>
- <comment xml:lang="kk">Windows анимациясы бар курсор</comment>
- <comment xml:lang="ko">Windows 움직이는 커서</comment>
- <comment xml:lang="lt">Animuotas Windows žymiklis</comment>
- <comment xml:lang="lv">Windows animēts kursors</comment>
- <comment xml:lang="nl">geanimeerde Windows-muisaanwijzer</comment>
- <comment xml:lang="nn">Windows animert peikar</comment>
- <comment xml:lang="oc">cursor animat Windows</comment>
- <comment xml:lang="pl">Animowany kursor Windows</comment>
- <comment xml:lang="pt">cursor animado Windows</comment>
- <comment xml:lang="pt_BR">Cursor animado do Windows</comment>
- <comment xml:lang="ro">Cursor animat Windows</comment>
- <comment xml:lang="ru">Анимированный курсор Windows</comment>
- <comment xml:lang="sk">Animovaný kurzor Windows</comment>
- <comment xml:lang="sl">Datoteka animirane kazalke Windows</comment>
- <comment xml:lang="sq">Kursor i animuar Windows</comment>
- <comment xml:lang="sr">Виндоузов анимирани курсор</comment>
- <comment xml:lang="sv">Animerad Windows-muspekare</comment>
- <comment xml:lang="tr">Windows canlandırmalı imleci</comment>
- <comment xml:lang="uk">анімований курсор Windows</comment>
- <comment xml:lang="vi">Con chạy hoạt họa Windows</comment>
- <comment xml:lang="zh_CN">Windows 动态光标</comment>
<comment xml:lang="zh_TW">Windows 滑鼠動畫游標</comment>
- <magic priority="50">
- <match value="RIFF" type="string" offset="0">
- <match value="ACON" type="string" offset="8"/>
+ <comment xml:lang="zh_CN">Windows 动态光标</comment>
+ <comment xml:lang="vi">Con chạy hoạt họa Windows</comment>
+ <comment xml:lang="uk">анімований курсор Windows</comment>
+ <comment xml:lang="tr">Windows canlandırmalı imleci</comment>
+ <comment xml:lang="sv">Animerad Windows-muspekare</comment>
+ <comment xml:lang="sr">Виндоузов анимирани курсор</comment>
+ <comment xml:lang="sq">kursor i animuar Windows</comment>
+ <comment xml:lang="sl">Datoteka animirane kazalke Windows</comment>
+ <comment xml:lang="si">වින්ඩෝස් සජීවිකරණ කර්සරය</comment>
+ <comment xml:lang="sk">Animovaný kurzor Windows</comment>
+ <comment xml:lang="ru">Анимированный курсор Windows</comment>
+ <comment xml:lang="ro">Cursor animat Windows</comment>
+ <comment xml:lang="pt_BR">Cursor animado do Windows</comment>
+ <comment xml:lang="pt">cursor animado Windows</comment>
+ <comment xml:lang="pl">Animowany kursor Windows</comment>
+ <comment xml:lang="oc">cursor animat Windows</comment>
+ <comment xml:lang="nn">Windows animert peikar</comment>
+ <comment xml:lang="nl">geanimeerde Windows-muisaanwijzer</comment>
+ <comment xml:lang="lv">Windows animēts kursors</comment>
+ <comment xml:lang="lt">Animuotas Windows žymeklis</comment>
+ <comment xml:lang="ko">Windows 움직이는 커서</comment>
+ <comment xml:lang="kk">Windows анимациясы бар курсор</comment>
+ <comment xml:lang="ka">Windows -ის ანიმირებული კურსორი</comment>
+ <comment xml:lang="ja">Windows アニメーションカーソル</comment>
+ <comment xml:lang="it">Cursore animato Windows</comment>
+ <comment xml:lang="is">Windows hreyfibendill</comment>
+ <comment xml:lang="id">Kursor animasi Windows</comment>
+ <comment xml:lang="ia">Cursor animate pro Windows</comment>
+ <comment xml:lang="hu">Windows animált kurzor</comment>
+ <comment xml:lang="hr">Windows animirani pokazivač</comment>
+ <comment xml:lang="he">סמן מונפש של Windows</comment>
+ <comment xml:lang="gl">Cursor animado de Windows</comment>
+ <comment xml:lang="ga">cúrsóir beoite Windows</comment>
+ <comment xml:lang="fur">cursôr animât di Windows</comment>
+ <comment xml:lang="fr">curseur animé Windows</comment>
+ <comment xml:lang="fo">Windows livindaigjørdur vísi</comment>
+ <comment xml:lang="fi">animoitu Windows-osoitin</comment>
+ <comment xml:lang="eu">Windows-eko kurtsore animatua</comment>
+ <comment xml:lang="es">cursor animado de Windows</comment>
+ <comment xml:lang="en_GB">Windows animated cursor</comment>
+ <comment xml:lang="el">Κινούμενος δρομέας Windows</comment>
+ <comment xml:lang="de">Animierter Windows-Mauszeiger</comment>
+ <comment xml:lang="da">Windowsanimeret markør</comment>
+ <comment xml:lang="cs">animovaný kurzor Windows</comment>
+ <comment xml:lang="ca">cursor animat de Windows</comment>
+ <comment xml:lang="bg">Курсор — Windows, анимиран</comment>
+ <comment xml:lang="be@latin">Animavany kursor Windows</comment>
+ <comment xml:lang="be">анімаваны курсор Windows</comment>
+ <comment xml:lang="ar">مؤشر ويندوز متحرك</comment>
+ <comment xml:lang="af">Windows geanimeerde wyser</comment>
+ <magic>
+ <match type="string" value="RIFF" offset="0">
+ <match type="string" value="ACON" offset="8"/>
</match>
</magic>
<glob pattern="*.ani"/>
</mime-type>
<mime-type type="image/emf">
<comment>EMF image</comment>
- <comment xml:lang="ar">صورة EMF</comment>
- <comment xml:lang="be@latin">Vyjava EMF</comment>
- <comment xml:lang="bg">Изображение — EMF</comment>
- <comment xml:lang="ca">imatge EMF</comment>
- <comment xml:lang="cs">obrázek EMF</comment>
- <comment xml:lang="da">EMF-billede</comment>
- <comment xml:lang="de">EMF-Bild</comment>
- <comment xml:lang="el">Εικόνα EMF</comment>
- <comment xml:lang="en_GB">EMF image</comment>
- <comment xml:lang="eo">EMF-bildo</comment>
- <comment xml:lang="es">imagen EMF</comment>
- <comment xml:lang="eu">EMF irudia</comment>
- <comment xml:lang="fi">EMF-kuva</comment>
- <comment xml:lang="fo">EMF mynd</comment>
- <comment xml:lang="fr">image EMF</comment>
- <comment xml:lang="ga">íomhá EMF</comment>
- <comment xml:lang="gl">imaxe EMF</comment>
- <comment xml:lang="he">תמונת EMF</comment>
- <comment xml:lang="hr">EMF slika</comment>
- <comment xml:lang="hu">EMF kép</comment>
- <comment xml:lang="ia">Imagine EMF</comment>
- <comment xml:lang="id">Citra EMF</comment>
- <comment xml:lang="it">Immagine EMF</comment>
- <comment xml:lang="ja">EMF 画像</comment>
- <comment xml:lang="ka">EMF გამოსახულება</comment>
- <comment xml:lang="kk">EMF суреті</comment>
- <comment xml:lang="ko">EMF 그림</comment>
- <comment xml:lang="lt">EMF paveikslėlis</comment>
- <comment xml:lang="lv">EMF attēls</comment>
- <comment xml:lang="nb">EMF-bilde</comment>
- <comment xml:lang="nl">EMF-afbeelding</comment>
- <comment xml:lang="nn">EMF-bilete</comment>
- <comment xml:lang="oc">imatge EMF</comment>
- <comment xml:lang="pl">Obraz EMF</comment>
- <comment xml:lang="pt">imagem EMF</comment>
- <comment xml:lang="pt_BR">Imagem EMF</comment>
- <comment xml:lang="ro">Imagine EMF</comment>
- <comment xml:lang="ru">Изображение EMF</comment>
- <comment xml:lang="sk">Obrázok EMF</comment>
- <comment xml:lang="sl">Slikovna datoteka EMF</comment>
- <comment xml:lang="sq">Figurë EMF</comment>
- <comment xml:lang="sr">ЕМФ слика</comment>
- <comment xml:lang="sv">EMF-bild</comment>
- <comment xml:lang="tr">EMF görüntüsü</comment>
- <comment xml:lang="uk">зображення EMF</comment>
- <comment xml:lang="vi">Ảnh EMF</comment>
- <comment xml:lang="zh_CN">EMF 图像</comment>
<comment xml:lang="zh_TW">EMF 影像</comment>
+ <comment xml:lang="zh_CN">EMF 图像</comment>
+ <comment xml:lang="vi">Ảnh EMF</comment>
+ <comment xml:lang="uk">зображення EMF</comment>
+ <comment xml:lang="tr">EMF görüntüsü</comment>
+ <comment xml:lang="sv">EMF-bild</comment>
+ <comment xml:lang="sr">ЕМФ слика</comment>
+ <comment xml:lang="sq">figurë EMF</comment>
+ <comment xml:lang="sl">Slikovna datoteka EMF</comment>
+ <comment xml:lang="si">EMF රූපය</comment>
+ <comment xml:lang="sk">Obrázok EMF</comment>
+ <comment xml:lang="ru">Изображение EMF</comment>
+ <comment xml:lang="ro">Imagine EMF</comment>
+ <comment xml:lang="pt_BR">Imagem EMF</comment>
+ <comment xml:lang="pt">imagem EMF</comment>
+ <comment xml:lang="pl">Obraz EMF</comment>
+ <comment xml:lang="oc">imatge EMF</comment>
+ <comment xml:lang="nn">EMF-bilete</comment>
+ <comment xml:lang="nl">EMF-afbeelding</comment>
+ <comment xml:lang="nb">EMF-bilde</comment>
+ <comment xml:lang="lv">EMF attēls</comment>
+ <comment xml:lang="lt">EMF paveikslėlis</comment>
+ <comment xml:lang="ko">EMF 그림</comment>
+ <comment xml:lang="kk">EMF суреті</comment>
+ <comment xml:lang="ka">EMF გამოსახულება</comment>
+ <comment xml:lang="ja">EMF 画像</comment>
+ <comment xml:lang="it">Immagine EMF</comment>
+ <comment xml:lang="is">EMF mynd</comment>
+ <comment xml:lang="id">Citra EMF</comment>
+ <comment xml:lang="ia">Imagine EMF</comment>
+ <comment xml:lang="hu">EMF kép</comment>
+ <comment xml:lang="hr">EMF slika</comment>
+ <comment xml:lang="he">תמונת EMF</comment>
+ <comment xml:lang="gl">imaxe EMF</comment>
+ <comment xml:lang="ga">íomhá EMF</comment>
+ <comment xml:lang="fur">imagjin EMF</comment>
+ <comment xml:lang="fr">image EMF</comment>
+ <comment xml:lang="fo">EMF mynd</comment>
+ <comment xml:lang="fi">EMF-kuva</comment>
+ <comment xml:lang="eu">EMF irudia</comment>
+ <comment xml:lang="es">imagen EMF</comment>
+ <comment xml:lang="eo">EMF-bildo</comment>
+ <comment xml:lang="en_GB">EMF image</comment>
+ <comment xml:lang="el">Εικόνα EMF</comment>
+ <comment xml:lang="de">EMF-Bild</comment>
+ <comment xml:lang="da">EMF-billede</comment>
+ <comment xml:lang="cs">obrázek EMF</comment>
+ <comment xml:lang="ca">imatge EMF</comment>
+ <comment xml:lang="bg">Изображение — EMF</comment>
+ <comment xml:lang="be@latin">Vyjava EMF</comment>
+ <comment xml:lang="be">выява EMF</comment>
+ <comment xml:lang="ar">صورة EMF</comment>
+ <comment xml:lang="af">EMF-beeld</comment>
<acronym>EMF</acronym>
<expanded-acronym>Enhanced MetaFile</expanded-acronym>
<glob pattern="*.emf"/>
<alias type="image/x-emf"/>
<alias type="application/x-emf"/>
<alias type="application/emf"/>
- <magic priority="50">
- <match value="0x00000001" type="little32" offset="0">
- <match value="0x464D4520" type="little32" offset="40">
- <match value="0x00010000" type="little32" offset="44">
- <match value="0x0000" type="little16" offset="58"/>
+ <magic>
+ <match type="little32" offset="0" value="0x00000001">
+ <match type="little32" offset="40" value="0x464D4520">
+ <match type="little32" offset="44" value="0x00010000">
+ <match type="little16" offset="58" value="0x0000"/>
</match>
</match>
</match>
@@ -29652,66 +32359,71 @@
</mime-type>
<mime-type type="image/wmf">
<comment>WMF image</comment>
- <comment xml:lang="ar">صورة WMF</comment>
- <comment xml:lang="be@latin">Vyjava WMF</comment>
- <comment xml:lang="bg">Изображение — WMF</comment>
- <comment xml:lang="ca">imatge WMF</comment>
- <comment xml:lang="cs">obrázek WMF</comment>
- <comment xml:lang="da">WMF-billede</comment>
- <comment xml:lang="de">WMF-Bild</comment>
- <comment xml:lang="el">Εικόνα WML</comment>
- <comment xml:lang="en_GB">WMF image</comment>
- <comment xml:lang="eo">WMF-bildo</comment>
- <comment xml:lang="es">imagen WMF</comment>
- <comment xml:lang="eu">WMF irudia</comment>
- <comment xml:lang="fi">WMF-kuva</comment>
- <comment xml:lang="fo">WMF mynd</comment>
- <comment xml:lang="fr">image WMF</comment>
- <comment xml:lang="ga">íomhá WMF</comment>
- <comment xml:lang="gl">imaxe WMF</comment>
- <comment xml:lang="he">תמונת WMF</comment>
- <comment xml:lang="hr">WMF slika</comment>
- <comment xml:lang="hu">WMF kép</comment>
- <comment xml:lang="ia">Imagine WMF</comment>
- <comment xml:lang="id">Citra WMF</comment>
- <comment xml:lang="it">Immagine WMF</comment>
- <comment xml:lang="ja">WMF 画像</comment>
- <comment xml:lang="kk">WMF суреті</comment>
- <comment xml:lang="ko">WMF 그림</comment>
- <comment xml:lang="lt">WMF paveikslėlis</comment>
- <comment xml:lang="lv">WMF attēls</comment>
- <comment xml:lang="nb">WMF-bilde</comment>
- <comment xml:lang="nl">WMF-afbeelding</comment>
- <comment xml:lang="nn">WMF-bilete</comment>
- <comment xml:lang="oc">imatge WMF</comment>
- <comment xml:lang="pl">Obraz WMF</comment>
- <comment xml:lang="pt">imagem WMF</comment>
- <comment xml:lang="pt_BR">Imagem WMF</comment>
- <comment xml:lang="ro">Imagine WMF</comment>
- <comment xml:lang="ru">Изображение WMF</comment>
- <comment xml:lang="sk">Obrázok WMF</comment>
- <comment xml:lang="sl">Slikovna datoteka WMF</comment>
- <comment xml:lang="sq">Figurë WMF</comment>
- <comment xml:lang="sr">ВМФ слика</comment>
- <comment xml:lang="sv">WMF-bild</comment>
- <comment xml:lang="tr">WMF görüntüsü</comment>
- <comment xml:lang="uk">зображення WMF</comment>
- <comment xml:lang="vi">Ảnh WMF</comment>
- <comment xml:lang="zh_CN">WMF 图像</comment>
<comment xml:lang="zh_TW">WMF 影像</comment>
+ <comment xml:lang="zh_CN">WMF 图像</comment>
+ <comment xml:lang="vi">Ảnh WMF</comment>
+ <comment xml:lang="uk">зображення WMF</comment>
+ <comment xml:lang="tr">WMF görüntüsü</comment>
+ <comment xml:lang="sv">WMF-bild</comment>
+ <comment xml:lang="sr">ВМФ слика</comment>
+ <comment xml:lang="sq">figurë WMF</comment>
+ <comment xml:lang="sl">Slikovna datoteka WMF</comment>
+ <comment xml:lang="si">WMF රූපය</comment>
+ <comment xml:lang="sk">Obrázok WMF</comment>
+ <comment xml:lang="ru">Изображение WMF</comment>
+ <comment xml:lang="ro">Imagine WMF</comment>
+ <comment xml:lang="pt_BR">Imagem WMF</comment>
+ <comment xml:lang="pt">imagem WMF</comment>
+ <comment xml:lang="pl">Obraz WMF</comment>
+ <comment xml:lang="oc">imatge WMF</comment>
+ <comment xml:lang="nn">WMF-bilete</comment>
+ <comment xml:lang="nl">WMF-afbeelding</comment>
+ <comment xml:lang="nb">WMF-bilde</comment>
+ <comment xml:lang="lv">WMF attēls</comment>
+ <comment xml:lang="lt">WMF paveikslėlis</comment>
+ <comment xml:lang="ko">WMF 그림</comment>
+ <comment xml:lang="kk">WMF суреті</comment>
+ <comment xml:lang="ja">WMF 画像</comment>
+ <comment xml:lang="it">Immagine WMF</comment>
+ <comment xml:lang="is">WMF mynd</comment>
+ <comment xml:lang="id">Citra WMF</comment>
+ <comment xml:lang="ia">Imagine WMF</comment>
+ <comment xml:lang="hu">WMF kép</comment>
+ <comment xml:lang="hr">WMF slika</comment>
+ <comment xml:lang="he">תמונת WMF</comment>
+ <comment xml:lang="gl">imaxe WMF</comment>
+ <comment xml:lang="ga">íomhá WMF</comment>
+ <comment xml:lang="fur">imagjin WMF</comment>
+ <comment xml:lang="fr">image WMF</comment>
+ <comment xml:lang="fo">WMF mynd</comment>
+ <comment xml:lang="fi">WMF-kuva</comment>
+ <comment xml:lang="eu">WMF irudia</comment>
+ <comment xml:lang="es">imagen WMF</comment>
+ <comment xml:lang="eo">WMF-bildo</comment>
+ <comment xml:lang="en_GB">WMF image</comment>
+ <comment xml:lang="el">Εικόνα WML</comment>
+ <comment xml:lang="de">WMF-Bild</comment>
+ <comment xml:lang="da">WMF-billede</comment>
+ <comment xml:lang="cs">obrázek WMF</comment>
+ <comment xml:lang="ca">imatge WMF</comment>
+ <comment xml:lang="bg">Изображение — WMF</comment>
+ <comment xml:lang="be@latin">Vyjava WMF</comment>
+ <comment xml:lang="be">выява WMF</comment>
+ <comment xml:lang="ar">صورة WMF</comment>
+ <comment xml:lang="af">WMF-beeld</comment>
<acronym>WMF</acronym>
<expanded-acronym>Windows Metafile</expanded-acronym>
- <magic priority="50">
-
- <match value="0x9AC6CDD7" type="little32" offset="0">
-
- <match value="0x0001" type="little16" offset="22">
- <match value="0x0009" type="little16" offset="24"/>
+ <magic>
+ <!-- Placeable Metafile Header !-->
+ <match type="little32" offset="0" value="0x9AC6CDD7">
+ <!-- Followed by the standard Windows Metafile Header !-->
+ <match type="little16" offset="22" value="0x0001">
+ <match type="little16" offset="24" value="0x0009"/>
</match>
</match>
-
- <match value="0x0001" type="little16" offset="0">
- <match value="0x0009" type="little16" offset="2"/>
+ <!-- or just the standard Windows Metafile Header !-->
+ <match type="little16" offset="0" value="0x0001">
+ <match type="little16" offset="2" value="0x0009"/>
</match>
</magic>
<glob pattern="*.wmf"/>
@@ -29723,1873 +32435,1286 @@
</mime-type>
<mime-type type="image/x-xbitmap">
<comment>XBM image</comment>
- <comment xml:lang="ar">صورة XBM</comment>
- <comment xml:lang="be@latin">Vyjava XBM</comment>
- <comment xml:lang="bg">Изображение — XBM</comment>
- <comment xml:lang="ca">imatge XBM</comment>
- <comment xml:lang="cs">obrázek XBM</comment>
- <comment xml:lang="da">XBM-billede</comment>
- <comment xml:lang="de">XBM-Bild</comment>
- <comment xml:lang="el">Εικόνα XBM</comment>
- <comment xml:lang="en_GB">XBM image</comment>
- <comment xml:lang="eo">XBM-bildo</comment>
- <comment xml:lang="es">imagen XBM</comment>
- <comment xml:lang="eu">XBM irudia</comment>
- <comment xml:lang="fi">XBM-kuva</comment>
- <comment xml:lang="fo">XBM mynd</comment>
- <comment xml:lang="fr">image XBM</comment>
- <comment xml:lang="ga">íomhá XBM</comment>
- <comment xml:lang="gl">imaxe XBM</comment>
- <comment xml:lang="he">תמונת XBM</comment>
- <comment xml:lang="hr">XBM slika</comment>
- <comment xml:lang="hu">XBM-kép</comment>
- <comment xml:lang="ia">Imagine XBM</comment>
- <comment xml:lang="id">Citra XBM</comment>
- <comment xml:lang="it">Immagine XBM</comment>
- <comment xml:lang="ja">XBM 画像</comment>
- <comment xml:lang="kk">XBM суреті</comment>
- <comment xml:lang="ko">XBM 그림</comment>
- <comment xml:lang="lt">XBM paveikslėlis</comment>
- <comment xml:lang="lv">XBM attēls</comment>
- <comment xml:lang="nb">XBM-bilde</comment>
- <comment xml:lang="nl">XBM-afbeelding</comment>
- <comment xml:lang="nn">XBM-bilete</comment>
- <comment xml:lang="oc">imatge XBM</comment>
- <comment xml:lang="pl">Obraz XBM</comment>
- <comment xml:lang="pt">imagem XBM</comment>
- <comment xml:lang="pt_BR">Imagem XBM</comment>
- <comment xml:lang="ro">Imagine XBM</comment>
- <comment xml:lang="ru">Изображение XBM</comment>
- <comment xml:lang="sk">Obrázok XBM</comment>
- <comment xml:lang="sl">Slikovna datoteka XBM</comment>
- <comment xml:lang="sq">Figurë XBM</comment>
- <comment xml:lang="sr">ИксБМ слика</comment>
- <comment xml:lang="sv">XBM-bild</comment>
- <comment xml:lang="tr">XBM görüntüsü</comment>
- <comment xml:lang="uk">зображення XBM</comment>
- <comment xml:lang="vi">Ảnh XBM</comment>
- <comment xml:lang="zh_CN">XBM 图像</comment>
<comment xml:lang="zh_TW">XBM 影像</comment>
+ <comment xml:lang="zh_CN">XBM 图像</comment>
+ <comment xml:lang="vi">Ảnh XBM</comment>
+ <comment xml:lang="uk">зображення XBM</comment>
+ <comment xml:lang="tr">XBM görüntüsü</comment>
+ <comment xml:lang="sv">XBM-bild</comment>
+ <comment xml:lang="sr">ИксБМ слика</comment>
+ <comment xml:lang="sq">figurë XBM</comment>
+ <comment xml:lang="sl">Slikovna datoteka XBM</comment>
+ <comment xml:lang="si">XBM රූපය</comment>
+ <comment xml:lang="sk">Obrázok XBM</comment>
+ <comment xml:lang="ru">Изображение XBM</comment>
+ <comment xml:lang="ro">Imagine XBM</comment>
+ <comment xml:lang="pt_BR">Imagem XBM</comment>
+ <comment xml:lang="pt">imagem XBM</comment>
+ <comment xml:lang="pl">Obraz XBM</comment>
+ <comment xml:lang="oc">imatge XBM</comment>
+ <comment xml:lang="nn">XBM-bilete</comment>
+ <comment xml:lang="nl">XBM-afbeelding</comment>
+ <comment xml:lang="nb">XBM-bilde</comment>
+ <comment xml:lang="lv">XBM attēls</comment>
+ <comment xml:lang="lt">XBM paveikslėlis</comment>
+ <comment xml:lang="ko">XBM 그림</comment>
+ <comment xml:lang="kk">XBM суреті</comment>
+ <comment xml:lang="ja">XBM 画像</comment>
+ <comment xml:lang="it">Immagine XBM</comment>
+ <comment xml:lang="is">XBM mynd</comment>
+ <comment xml:lang="id">Citra XBM</comment>
+ <comment xml:lang="ia">Imagine XBM</comment>
+ <comment xml:lang="hu">XBM-kép</comment>
+ <comment xml:lang="hr">XBM slika</comment>
+ <comment xml:lang="he">תמונת XBM</comment>
+ <comment xml:lang="gl">imaxe XBM</comment>
+ <comment xml:lang="ga">íomhá XBM</comment>
+ <comment xml:lang="fur">imagjin XBM</comment>
+ <comment xml:lang="fr">image XBM</comment>
+ <comment xml:lang="fo">XBM mynd</comment>
+ <comment xml:lang="fi">XBM-kuva</comment>
+ <comment xml:lang="eu">XBM irudia</comment>
+ <comment xml:lang="es">imagen XBM</comment>
+ <comment xml:lang="eo">XBM-bildo</comment>
+ <comment xml:lang="en_GB">XBM image</comment>
+ <comment xml:lang="el">Εικόνα XBM</comment>
+ <comment xml:lang="de">XBM-Bild</comment>
+ <comment xml:lang="da">XBM-billede</comment>
+ <comment xml:lang="cs">obrázek XBM</comment>
+ <comment xml:lang="ca">imatge XBM</comment>
+ <comment xml:lang="bg">Изображение — XBM</comment>
+ <comment xml:lang="be@latin">Vyjava XBM</comment>
+ <comment xml:lang="be">выява XBM</comment>
+ <comment xml:lang="ar">صورة XBM</comment>
+ <comment xml:lang="af">XBM-beeld</comment>
<acronym>XBM</acronym>
<expanded-acronym>X BitMap</expanded-acronym>
<glob pattern="*.xbm"/>
</mime-type>
<mime-type type="image/x-xcf">
<comment>GIMP image</comment>
- <comment xml:lang="ar">صورة GIMP</comment>
- <comment xml:lang="be@latin">Vyjava GIMP</comment>
- <comment xml:lang="bg">Изображение — GIMP</comment>
- <comment xml:lang="ca">imatge de GIMP</comment>
- <comment xml:lang="cs">obrázek GIMP</comment>
- <comment xml:lang="da">GIMP-billede</comment>
- <comment xml:lang="de">GIMP-Bild</comment>
- <comment xml:lang="el">Εικόνα GIMP</comment>
- <comment xml:lang="en_GB">GIMP image</comment>
- <comment xml:lang="eo">GIMP-bildo</comment>
- <comment xml:lang="es">imagen del GIMP</comment>
- <comment xml:lang="eu">GIMP irudia</comment>
- <comment xml:lang="fi">GIMP-kuva</comment>
- <comment xml:lang="fo">GIMP mynd</comment>
- <comment xml:lang="fr">image GIMP</comment>
- <comment xml:lang="ga">íomhá GIMP</comment>
- <comment xml:lang="gl">imaxe de GIMP</comment>
- <comment xml:lang="he">תמונת GIMP</comment>
- <comment xml:lang="hr">GIMP slika</comment>
- <comment xml:lang="hu">GIMP-kép</comment>
- <comment xml:lang="ia">Imagine GIMP</comment>
- <comment xml:lang="id">Citra GIMP</comment>
- <comment xml:lang="it">Immagine GIMP</comment>
- <comment xml:lang="ja">GIMP 画像</comment>
- <comment xml:lang="ka">GIMP გამოსახულება</comment>
- <comment xml:lang="kk">GIMP суреті</comment>
- <comment xml:lang="ko">GIMP 그림</comment>
- <comment xml:lang="lt">GIMP paveikslėlis</comment>
- <comment xml:lang="lv">GIMP attēls</comment>
- <comment xml:lang="ms">Imej GIMP</comment>
- <comment xml:lang="nb">GIMP-bilde</comment>
- <comment xml:lang="nl">GIMP-afbeelding</comment>
- <comment xml:lang="nn">GIMP-bilete</comment>
- <comment xml:lang="oc">imatge GIMP</comment>
- <comment xml:lang="pl">Obraz GIMP</comment>
- <comment xml:lang="pt">imagem GIMP</comment>
- <comment xml:lang="pt_BR">Imagem do GIMP</comment>
- <comment xml:lang="ro">Imagine GIMP</comment>
- <comment xml:lang="ru">Изображение GIMP</comment>
- <comment xml:lang="sk">Obrázok GIMP</comment>
- <comment xml:lang="sl">Slikovna datoteka GIMP</comment>
- <comment xml:lang="sq">Figurë GIMP</comment>
- <comment xml:lang="sr">Гимпова слика</comment>
- <comment xml:lang="sv">GIMP-bild</comment>
- <comment xml:lang="tr">GIMP görüntüsü</comment>
- <comment xml:lang="uk">зображення GIMP</comment>
- <comment xml:lang="vi">Ảnh GIMP</comment>
- <comment xml:lang="zh_CN">GIMP 图像</comment>
<comment xml:lang="zh_TW">GIMP 影像</comment>
+ <comment xml:lang="zh_CN">GIMP 图像</comment>
+ <comment xml:lang="vi">Ảnh GIMP</comment>
+ <comment xml:lang="uk">зображення GIMP</comment>
+ <comment xml:lang="tr">GIMP görüntüsü</comment>
+ <comment xml:lang="sv">GIMP-bild</comment>
+ <comment xml:lang="sr">Гимпова слика</comment>
+ <comment xml:lang="sq">figurë GIMP</comment>
+ <comment xml:lang="sl">Slikovna datoteka GIMP</comment>
+ <comment xml:lang="si">GIMP රූපය</comment>
+ <comment xml:lang="sk">Obrázok GIMP</comment>
+ <comment xml:lang="ru">Изображение GIMP</comment>
+ <comment xml:lang="ro">Imagine GIMP</comment>
+ <comment xml:lang="pt_BR">Imagem do GIMP</comment>
+ <comment xml:lang="pt">imagem GIMP</comment>
+ <comment xml:lang="pl">Obraz GIMP</comment>
+ <comment xml:lang="oc">imatge GIMP</comment>
+ <comment xml:lang="nn">GIMP-bilete</comment>
+ <comment xml:lang="nl">GIMP-afbeelding</comment>
+ <comment xml:lang="nb">GIMP-bilde</comment>
+ <comment xml:lang="ms">Imej GIMP</comment>
+ <comment xml:lang="lv">GIMP attēls</comment>
+ <comment xml:lang="lt">GIMP paveikslėlis</comment>
+ <comment xml:lang="ko">GIMP 그림</comment>
+ <comment xml:lang="kk">GIMP суреті</comment>
+ <comment xml:lang="ka">GIMP გამოსახულება</comment>
+ <comment xml:lang="ja">GIMP 画像</comment>
+ <comment xml:lang="it">Immagine GIMP</comment>
+ <comment xml:lang="is">GIMP mynd</comment>
+ <comment xml:lang="id">Citra GIMP</comment>
+ <comment xml:lang="ia">Imagine GIMP</comment>
+ <comment xml:lang="hu">GIMP-kép</comment>
+ <comment xml:lang="hr">GIMP slika</comment>
+ <comment xml:lang="he">תמונת GIMP</comment>
+ <comment xml:lang="gl">imaxe de GIMP</comment>
+ <comment xml:lang="ga">íomhá GIMP</comment>
+ <comment xml:lang="fur">imagjin GIMP</comment>
+ <comment xml:lang="fr">image GIMP</comment>
+ <comment xml:lang="fo">GIMP mynd</comment>
+ <comment xml:lang="fi">GIMP-kuva</comment>
+ <comment xml:lang="eu">GIMP irudia</comment>
+ <comment xml:lang="es">imagen del GIMP</comment>
+ <comment xml:lang="eo">GIMP-bildo</comment>
+ <comment xml:lang="en_GB">GIMP image</comment>
+ <comment xml:lang="el">Εικόνα GIMP</comment>
+ <comment xml:lang="de">GIMP-Bild</comment>
+ <comment xml:lang="da">GIMP-billede</comment>
+ <comment xml:lang="cs">obrázek GIMP</comment>
+ <comment xml:lang="ca">imatge de GIMP</comment>
+ <comment xml:lang="bg">Изображение — GIMP</comment>
+ <comment xml:lang="be@latin">Vyjava GIMP</comment>
+ <comment xml:lang="be">выява GIMP</comment>
+ <comment xml:lang="ar">صورة GIMP</comment>
+ <comment xml:lang="af">GIMP-beeld</comment>
<glob pattern="*.xcf"/>
- <magic priority="50">
- <match value="gimp xcf file" type="string" offset="0"/>
- <match value="gimp xcf v" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="gimp xcf file" offset="0"/>
+ <match type="string" value="gimp xcf v" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/x-gimp-gbr">
<comment>GIMP brush</comment>
- <comment xml:lang="ca">pinzell de GIMP</comment>
- <comment xml:lang="cs">štětec GIMP</comment>
- <comment xml:lang="de">GIMP-Pinsel</comment>
- <comment xml:lang="en_GB">GIMP brush</comment>
- <comment xml:lang="es">pincel del GIMP</comment>
- <comment xml:lang="hr">GIMP kist</comment>
- <comment xml:lang="hu">GIMP ecset</comment>
- <comment xml:lang="id">Kuas GIMP</comment>
- <comment xml:lang="it">Pennello GIMP</comment>
- <comment xml:lang="kk">GIMP бояу жаққышы</comment>
- <comment xml:lang="ko">GIMP 붓</comment>
- <comment xml:lang="pl">Pędzel programu GIMP</comment>
- <comment xml:lang="pt_BR">Pincel do GIMP</comment>
- <comment xml:lang="ru">Кисть GIMP</comment>
- <comment xml:lang="sk">Štetec aplikácie GIMP</comment>
- <comment xml:lang="sv">GIMP-pensel</comment>
- <comment xml:lang="uk">пензель GIMP</comment>
- <comment xml:lang="zh_CN">GIMP 笔刷</comment>
<comment xml:lang="zh_TW">GIMP 筆刷</comment>
+ <comment xml:lang="zh_CN">GIMP 笔刷</comment>
+ <comment xml:lang="uk">пензель GIMP</comment>
+ <comment xml:lang="tr">GIMP fırçası</comment>
+ <comment xml:lang="sv">GIMP-pensel</comment>
+ <comment xml:lang="sq">penel GIMP</comment>
+ <comment xml:lang="sl">Čopič GIMP</comment>
+ <comment xml:lang="si">GIMP බුරුසුව</comment>
+ <comment xml:lang="sk">Štetec aplikácie GIMP</comment>
+ <comment xml:lang="ru">Кисть GIMP</comment>
+ <comment xml:lang="pt_BR">Pincel do GIMP</comment>
+ <comment xml:lang="pl">Pędzel programu GIMP</comment>
+ <comment xml:lang="nl">GIMP-kwast</comment>
+ <comment xml:lang="ko">GIMP 붓</comment>
+ <comment xml:lang="kk">GIMP бояу жаққышы</comment>
+ <comment xml:lang="ka">GIMP-ის ფუნჯი</comment>
+ <comment xml:lang="ja">GIMP ブラシ</comment>
+ <comment xml:lang="it">Pennello GIMP</comment>
+ <comment xml:lang="is">GIMP-pensill</comment>
+ <comment xml:lang="id">Kuas GIMP</comment>
+ <comment xml:lang="hu">GIMP ecset</comment>
+ <comment xml:lang="hr">GIMP kist</comment>
+ <comment xml:lang="he">מברשת GIMP</comment>
+ <comment xml:lang="gl">Pincel de GIMP</comment>
+ <comment xml:lang="ga">scuab GIMP</comment>
+ <comment xml:lang="fur">pinel GIMP</comment>
+ <comment xml:lang="fr">brosse GIMP</comment>
+ <comment xml:lang="fi">GIMP-sivellin</comment>
+ <comment xml:lang="eu">GIMP pintzela</comment>
+ <comment xml:lang="es">pincel del GIMP</comment>
+ <comment xml:lang="en_GB">GIMP brush</comment>
+ <comment xml:lang="de">GIMP-Pinsel</comment>
+ <comment xml:lang="da">GIMP-pensel</comment>
+ <comment xml:lang="cs">štětec GIMP</comment>
+ <comment xml:lang="ca">pinzell de GIMP</comment>
+ <comment xml:lang="bg">Четка — GIMP</comment>
+ <comment xml:lang="be">пэндзаль GIMP</comment>
+ <comment xml:lang="ar">فرشاة جمب</comment>
+ <comment xml:lang="af">GIMP-kwas</comment>
<glob pattern="*.gbr"/>
- <magic priority="50">
- <match value="GIMP" type="string" offset="20"/>
+ <magic>
+ <match type="string" value="GIMP" offset="20"/>
</magic>
</mime-type>
<mime-type type="image/x-gimp-gih">
<comment>GIMP brush pipe</comment>
- <comment xml:lang="ca">conducte del pinzell de GIMP</comment>
- <comment xml:lang="cs">zřetězení štětců GIMP</comment>
- <comment xml:lang="de">GIMP-Pinselanimation</comment>
- <comment xml:lang="en_GB">GIMP brush pipe</comment>
- <comment xml:lang="es">pincel animado del GIMP</comment>
- <comment xml:lang="hr">GIMP valjkasti kist</comment>
- <comment xml:lang="hu">GIMP ecsetcsatorna</comment>
- <comment xml:lang="id">Pipa kuas GIMP</comment>
- <comment xml:lang="it">Pipe pennello GIMP</comment>
- <comment xml:lang="kk">GIMP бояу жаққыш түтігі</comment>
- <comment xml:lang="ko">GIMP 붓 파이프</comment>
- <comment xml:lang="pl">Potok pędzla programu GIMP</comment>
- <comment xml:lang="pt_BR">Tubo de pincel do GIMP</comment>
- <comment xml:lang="ru">Анимированная кисть GIMP</comment>
- <comment xml:lang="sv">GIMP-penselrör</comment>
- <comment xml:lang="uk">канал пензлів GIMP</comment>
- <comment xml:lang="zh_CN">GIMP 管刷</comment>
<comment xml:lang="zh_TW">GIMP 筆刷導管</comment>
+ <comment xml:lang="zh_CN">GIMP 管刷</comment>
+ <comment xml:lang="uk">канал пензлів GIMP</comment>
+ <comment xml:lang="tr">GIMP fırça borusu</comment>
+ <comment xml:lang="sv">GIMP-penselrör</comment>
+ <comment xml:lang="si">GIMP බුරුසු පයිප්ප</comment>
+ <comment xml:lang="ru">Анимированная кисть GIMP</comment>
+ <comment xml:lang="pt_BR">Tubo de pincel do GIMP</comment>
+ <comment xml:lang="pl">Potok pędzla programu GIMP</comment>
+ <comment xml:lang="nl">GIMP-kwast-pijp</comment>
+ <comment xml:lang="ko">GIMP 붓 파이프</comment>
+ <comment xml:lang="kk">GIMP бояу жаққыш түтігі</comment>
+ <comment xml:lang="ja">GIMP パイプブラシ</comment>
+ <comment xml:lang="it">Pipe pennello GIMP</comment>
+ <comment xml:lang="is">GIMP-pensilpípa</comment>
+ <comment xml:lang="id">Pipa kuas GIMP</comment>
+ <comment xml:lang="hu">GIMP ecsetcsatorna</comment>
+ <comment xml:lang="hr">Proces GIMP kista</comment>
+ <comment xml:lang="he">צינורית מברשת GIMP</comment>
+ <comment xml:lang="ga">píopa scuaba GIMP</comment>
+ <comment xml:lang="fur">condot pinel GIMP</comment>
+ <comment xml:lang="fr">brosse animée GIMP</comment>
+ <comment xml:lang="fi">GIMP-sivellinputki</comment>
+ <comment xml:lang="eu">GIMP pintzel hodia pipe</comment>
+ <comment xml:lang="es">pincel animado del GIMP</comment>
+ <comment xml:lang="en_GB">GIMP brush pipe</comment>
+ <comment xml:lang="de">Animierter GIMP-Pinsel</comment>
+ <comment xml:lang="da">GIMP-penselrør</comment>
+ <comment xml:lang="cs">zřetězení štětců GIMP</comment>
+ <comment xml:lang="ca">conducte del pinzell de GIMP</comment>
+ <comment xml:lang="bg">Конвейер с четки — GIMP</comment>
+ <comment xml:lang="be">самаробны пэндзаль GIMP</comment>
+ <comment xml:lang="ar">أنبوب فرشاة GIMP</comment>
<glob pattern="*.gih"/>
</mime-type>
<mime-type type="image/x-gimp-pat">
<comment>GIMP pattern</comment>
- <comment xml:lang="ca">patró de GIMP</comment>
- <comment xml:lang="cs">vzorek GIMP</comment>
- <comment xml:lang="de">GIMP-Muster</comment>
- <comment xml:lang="en_GB">GIMP pattern</comment>
- <comment xml:lang="es">patrón del GIMP</comment>
- <comment xml:lang="hr">GIMP uzorak</comment>
- <comment xml:lang="hu">GIMP minta</comment>
- <comment xml:lang="id">Pola GIMP</comment>
- <comment xml:lang="it">Motivo GIMP</comment>
- <comment xml:lang="kk">GIMP оюы</comment>
- <comment xml:lang="ko">GIMP 패턴</comment>
- <comment xml:lang="pl">Deseń programu GIMP</comment>
- <comment xml:lang="pt_BR">Textura do GIMP</comment>
- <comment xml:lang="ru">Шаблон GIMP</comment>
- <comment xml:lang="sk">Vzor aplikácie GIMP</comment>
- <comment xml:lang="sv">GIMP-mönster</comment>
- <comment xml:lang="uk">візерунок GIMP</comment>
- <comment xml:lang="zh_CN">GIMP 图案</comment>
<comment xml:lang="zh_TW">GIMP 樣式</comment>
+ <comment xml:lang="zh_CN">GIMP 图案</comment>
+ <comment xml:lang="uk">візерунок GIMP</comment>
+ <comment xml:lang="tr">GIMP deseni</comment>
+ <comment xml:lang="sv">GIMP-mönster</comment>
+ <comment xml:lang="sl">Vzorec GIMP</comment>
+ <comment xml:lang="si">GIMP රටාව</comment>
+ <comment xml:lang="sk">Vzor aplikácie GIMP</comment>
+ <comment xml:lang="ru">Шаблон GIMP</comment>
+ <comment xml:lang="pt_BR">Textura do GIMP</comment>
+ <comment xml:lang="pl">Deseń programu GIMP</comment>
+ <comment xml:lang="nl">GIMP-patroon</comment>
+ <comment xml:lang="ko">GIMP 패턴</comment>
+ <comment xml:lang="kk">GIMP оюы</comment>
+ <comment xml:lang="ka">GIMP შაბლონი</comment>
+ <comment xml:lang="ja">GIMP パターン</comment>
+ <comment xml:lang="it">Motivo GIMP</comment>
+ <comment xml:lang="is">GIMP-mynstur</comment>
+ <comment xml:lang="id">Pola GIMP</comment>
+ <comment xml:lang="hu">GIMP minta</comment>
+ <comment xml:lang="hr">GIMP uzorak</comment>
+ <comment xml:lang="he">מרקם של GIMP</comment>
+ <comment xml:lang="gl">Patrón de GIMP</comment>
+ <comment xml:lang="ga">patrún GIMP</comment>
+ <comment xml:lang="fur">motîf GIMP</comment>
+ <comment xml:lang="fr">motif GIMP</comment>
+ <comment xml:lang="fi">GIMP-kuvio</comment>
+ <comment xml:lang="eu">GIMP eredua</comment>
+ <comment xml:lang="es">patrón del GIMP</comment>
+ <comment xml:lang="en_GB">GIMP pattern</comment>
+ <comment xml:lang="de">GIMP-Muster</comment>
+ <comment xml:lang="da">GIMP-mønster</comment>
+ <comment xml:lang="cs">vzorek GIMP</comment>
+ <comment xml:lang="ca">patró de GIMP</comment>
+ <comment xml:lang="bg">Шарка — GIMP</comment>
+ <comment xml:lang="be">узор GIMP</comment>
+ <comment xml:lang="ar">نقش GIMP</comment>
+ <comment xml:lang="af">GIMP-patroon</comment>
<glob pattern="*.pat"/>
- <magic priority="50">
- <match value="GPAT" type="string" offset="20"/>
+ <magic>
+ <match type="string" value="GPAT" offset="20"/>
</magic>
</mime-type>
<mime-type type="image/x-xfig">
<comment>XFig image</comment>
- <comment xml:lang="ar">صورة XFig</comment>
- <comment xml:lang="be@latin">Vyjava XFig</comment>
- <comment xml:lang="bg">Изображение — XFig</comment>
- <comment xml:lang="ca">imatge de XFig</comment>
- <comment xml:lang="cs">obrázek XFig</comment>
- <comment xml:lang="da">XFig-billede</comment>
- <comment xml:lang="de">XFig-Bild</comment>
- <comment xml:lang="el">Εικόνα XFig</comment>
- <comment xml:lang="en_GB">XFig image</comment>
- <comment xml:lang="eo">XFig-bildo</comment>
- <comment xml:lang="es">imagen de XFig</comment>
- <comment xml:lang="eu">XFig irudia</comment>
- <comment xml:lang="fi">XFig-kuva</comment>
- <comment xml:lang="fo">XFig mynd</comment>
- <comment xml:lang="fr">image XFig</comment>
- <comment xml:lang="ga">íomhá XFig</comment>
- <comment xml:lang="gl">imaxe de XFig</comment>
- <comment xml:lang="he">תמונת XFig</comment>
- <comment xml:lang="hr">XFig slika</comment>
- <comment xml:lang="hu">XFig-kép</comment>
- <comment xml:lang="ia">Imagine XFig</comment>
- <comment xml:lang="id">Citra XFig</comment>
- <comment xml:lang="it">Immagine XFig</comment>
- <comment xml:lang="ja">XFig 画像</comment>
- <comment xml:lang="kk">XFig суреті</comment>
- <comment xml:lang="ko">XFig 그림</comment>
- <comment xml:lang="lt">XFig paveikslėlis</comment>
- <comment xml:lang="lv">XFig attēls</comment>
- <comment xml:lang="ms">Imej XFig</comment>
- <comment xml:lang="nb">XFig-bilde</comment>
- <comment xml:lang="nl">XFig-afbeelding</comment>
- <comment xml:lang="nn">XFig-bilete</comment>
- <comment xml:lang="oc">imatge XFig</comment>
- <comment xml:lang="pl">Obraz XFig</comment>
- <comment xml:lang="pt">imagem XFig</comment>
- <comment xml:lang="pt_BR">Imagem do XFig</comment>
- <comment xml:lang="ro">Imagine XFig</comment>
- <comment xml:lang="ru">Изображение XFig</comment>
- <comment xml:lang="sk">Obrázok XFig</comment>
- <comment xml:lang="sl">Slikovna datoteka XFig</comment>
- <comment xml:lang="sq">Figurë XFig</comment>
- <comment xml:lang="sr">ИксФиг слика</comment>
- <comment xml:lang="sv">XFig-bild</comment>
- <comment xml:lang="tr">XFig görüntüsü</comment>
- <comment xml:lang="uk">зображення XFig</comment>
- <comment xml:lang="vi">Ảnh XFig</comment>
- <comment xml:lang="zh_CN">XFig 图像</comment>
<comment xml:lang="zh_TW">XFig 影像</comment>
+ <comment xml:lang="zh_CN">XFig 图像</comment>
+ <comment xml:lang="vi">Ảnh XFig</comment>
+ <comment xml:lang="uk">зображення XFig</comment>
+ <comment xml:lang="tr">XFig görüntüsü</comment>
+ <comment xml:lang="sv">XFig-bild</comment>
+ <comment xml:lang="sr">ИксФиг слика</comment>
+ <comment xml:lang="sq">figurë XFig</comment>
+ <comment xml:lang="sl">Slikovna datoteka XFig</comment>
+ <comment xml:lang="si">XFig රූපය</comment>
+ <comment xml:lang="sk">Obrázok XFig</comment>
+ <comment xml:lang="ru">Изображение XFig</comment>
+ <comment xml:lang="ro">Imagine XFig</comment>
+ <comment xml:lang="pt_BR">Imagem do XFig</comment>
+ <comment xml:lang="pt">imagem XFig</comment>
+ <comment xml:lang="pl">Obraz XFig</comment>
+ <comment xml:lang="oc">imatge XFig</comment>
+ <comment xml:lang="nn">XFig-bilete</comment>
+ <comment xml:lang="nl">XFig-afbeelding</comment>
+ <comment xml:lang="nb">XFig-bilde</comment>
+ <comment xml:lang="ms">Imej XFig</comment>
+ <comment xml:lang="lv">XFig attēls</comment>
+ <comment xml:lang="lt">XFig paveikslėlis</comment>
+ <comment xml:lang="ko">XFig 그림</comment>
+ <comment xml:lang="kk">XFig суреті</comment>
+ <comment xml:lang="ja">XFig 画像</comment>
+ <comment xml:lang="it">Immagine XFig</comment>
+ <comment xml:lang="is">XFig mynd</comment>
+ <comment xml:lang="id">Citra XFig</comment>
+ <comment xml:lang="ia">Imagine XFig</comment>
+ <comment xml:lang="hu">XFig-kép</comment>
+ <comment xml:lang="hr">XFig slika</comment>
+ <comment xml:lang="he">תמונת XFig</comment>
+ <comment xml:lang="gl">imaxe de XFig</comment>
+ <comment xml:lang="ga">íomhá XFig</comment>
+ <comment xml:lang="fur">imagjin XFig</comment>
+ <comment xml:lang="fr">image XFig</comment>
+ <comment xml:lang="fo">XFig mynd</comment>
+ <comment xml:lang="fi">XFig-kuva</comment>
+ <comment xml:lang="eu">XFig irudia</comment>
+ <comment xml:lang="es">imagen de XFig</comment>
+ <comment xml:lang="eo">XFig-bildo</comment>
+ <comment xml:lang="en_GB">XFig image</comment>
+ <comment xml:lang="el">Εικόνα XFig</comment>
+ <comment xml:lang="de">XFig-Bild</comment>
+ <comment xml:lang="da">XFig-billede</comment>
+ <comment xml:lang="cs">obrázek XFig</comment>
+ <comment xml:lang="ca">imatge de XFig</comment>
+ <comment xml:lang="bg">Изображение — XFig</comment>
+ <comment xml:lang="be@latin">Vyjava XFig</comment>
+ <comment xml:lang="be">выява XFig</comment>
+ <comment xml:lang="ar">صورة XFig</comment>
+ <comment xml:lang="af">XFig-beeld</comment>
<glob pattern="*.fig"/>
- <magic priority="50">
- <match value="#FIG" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#FIG" offset="0"/>
</magic>
</mime-type>
<mime-type type="image/x-xpixmap">
<comment>XPM image</comment>
- <comment xml:lang="ar">صورة XPM</comment>
- <comment xml:lang="be@latin">Vyjava XPM</comment>
- <comment xml:lang="bg">Изображение — XPM</comment>
- <comment xml:lang="ca">imatge XPM</comment>
- <comment xml:lang="cs">obrázek XPM</comment>
- <comment xml:lang="cy">Delwedd XPM</comment>
- <comment xml:lang="da">XPM-billede</comment>
- <comment xml:lang="de">XPM-Bild</comment>
- <comment xml:lang="el">Εικόνα XPM</comment>
- <comment xml:lang="en_GB">XPM image</comment>
- <comment xml:lang="eo">XPM-bildo</comment>
- <comment xml:lang="es">imagen XPM</comment>
- <comment xml:lang="eu">XPM irudia</comment>
- <comment xml:lang="fi">XPM-kuva</comment>
- <comment xml:lang="fo">XPM mynd</comment>
- <comment xml:lang="fr">image XPM</comment>
- <comment xml:lang="ga">íomhá XPM</comment>
- <comment xml:lang="gl">imaxe XPM</comment>
- <comment xml:lang="he">תמונת XPM</comment>
- <comment xml:lang="hr">XPM slika</comment>
- <comment xml:lang="hu">XPM kép</comment>
- <comment xml:lang="ia">Imagine XPM</comment>
- <comment xml:lang="id">Citra XPM</comment>
- <comment xml:lang="it">Immagine XPM</comment>
- <comment xml:lang="ja">XPM 画像</comment>
- <comment xml:lang="kk">XPM суреті</comment>
- <comment xml:lang="ko">XPM 그림</comment>
- <comment xml:lang="lt">XPM paveikslėlis</comment>
- <comment xml:lang="lv">XPM attēls</comment>
- <comment xml:lang="nb">XPM-bilde</comment>
- <comment xml:lang="nl">XPM-afbeelding</comment>
- <comment xml:lang="nn">XPM-bilete</comment>
- <comment xml:lang="oc">imatge XPM</comment>
- <comment xml:lang="pl">Obraz XPM</comment>
- <comment xml:lang="pt">imagem XPM</comment>
- <comment xml:lang="pt_BR">Imagem XPM</comment>
- <comment xml:lang="ro">Imagine XPM</comment>
- <comment xml:lang="ru">Изображение XPM</comment>
- <comment xml:lang="sk">Obrázok XPM</comment>
- <comment xml:lang="sl">Slikovna datoteka XPM</comment>
- <comment xml:lang="sq">Figurë XPM</comment>
- <comment xml:lang="sr">ИксПМ слика</comment>
- <comment xml:lang="sv">XPM-bild</comment>
- <comment xml:lang="tr">XPM görüntüsü</comment>
- <comment xml:lang="uk">зображення XPM</comment>
- <comment xml:lang="vi">Ảnh XPM</comment>
- <comment xml:lang="zh_CN">XPM 图像</comment>
<comment xml:lang="zh_TW">XPM 影像</comment>
+ <comment xml:lang="zh_CN">XPM 图像</comment>
+ <comment xml:lang="vi">Ảnh XPM</comment>
+ <comment xml:lang="uk">зображення XPM</comment>
+ <comment xml:lang="tr">XPM görüntüsü</comment>
+ <comment xml:lang="sv">XPM-bild</comment>
+ <comment xml:lang="sr">ИксПМ слика</comment>
+ <comment xml:lang="sq">figurë XPM</comment>
+ <comment xml:lang="sl">Slikovna datoteka XPM</comment>
+ <comment xml:lang="si">XPM රූපය</comment>
+ <comment xml:lang="sk">Obrázok XPM</comment>
+ <comment xml:lang="ru">Изображение XPM</comment>
+ <comment xml:lang="ro">Imagine XPM</comment>
+ <comment xml:lang="pt_BR">Imagem XPM</comment>
+ <comment xml:lang="pt">imagem XPM</comment>
+ <comment xml:lang="pl">Obraz XPM</comment>
+ <comment xml:lang="oc">imatge XPM</comment>
+ <comment xml:lang="nn">XPM-bilete</comment>
+ <comment xml:lang="nl">XPM-afbeelding</comment>
+ <comment xml:lang="nb">XPM-bilde</comment>
+ <comment xml:lang="lv">XPM attēls</comment>
+ <comment xml:lang="lt">XPM paveikslėlis</comment>
+ <comment xml:lang="ko">XPM 그림</comment>
+ <comment xml:lang="kk">XPM суреті</comment>
+ <comment xml:lang="ja">XPM 画像</comment>
+ <comment xml:lang="it">Immagine XPM</comment>
+ <comment xml:lang="is">XPM mynd</comment>
+ <comment xml:lang="id">Citra XPM</comment>
+ <comment xml:lang="ia">Imagine XPM</comment>
+ <comment xml:lang="hu">XPM kép</comment>
+ <comment xml:lang="hr">XPM slika</comment>
+ <comment xml:lang="he">תמונת XPM</comment>
+ <comment xml:lang="gl">imaxe XPM</comment>
+ <comment xml:lang="ga">íomhá XPM</comment>
+ <comment xml:lang="fur">imagjin XPM</comment>
+ <comment xml:lang="fr">image XPM</comment>
+ <comment xml:lang="fo">XPM mynd</comment>
+ <comment xml:lang="fi">XPM-kuva</comment>
+ <comment xml:lang="eu">XPM irudia</comment>
+ <comment xml:lang="es">imagen XPM</comment>
+ <comment xml:lang="eo">XPM-bildo</comment>
+ <comment xml:lang="en_GB">XPM image</comment>
+ <comment xml:lang="el">Εικόνα XPM</comment>
+ <comment xml:lang="de">XPM-Bild</comment>
+ <comment xml:lang="da">XPM-billede</comment>
+ <comment xml:lang="cy">Delwedd XPM</comment>
+ <comment xml:lang="cs">obrázek XPM</comment>
+ <comment xml:lang="ca">imatge XPM</comment>
+ <comment xml:lang="bg">Изображение — XPM</comment>
+ <comment xml:lang="be@latin">Vyjava XPM</comment>
+ <comment xml:lang="be">выява XPM</comment>
+ <comment xml:lang="ar">صورة XPM</comment>
+ <comment xml:lang="af">XPM-beeld</comment>
<acronym>XPM</acronym>
<expanded-acronym>X PixMap</expanded-acronym>
- <magic priority="50">
- <match value="/* XPM" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="/* XPM */" offset="0"/>
+ <match type="string" value="! XPM2\n" offset="0"/>
</magic>
<glob pattern="*.xpm"/>
<alias type="image/x-xpm"/>
</mime-type>
<mime-type type="image/x-xwindowdump">
<comment>X window image</comment>
- <comment xml:lang="ar">صورة X window</comment>
- <comment xml:lang="az">X window rəsmi</comment>
- <comment xml:lang="be@latin">Vyjava vakna X</comment>
- <comment xml:lang="bg">Изображение — X Window</comment>
- <comment xml:lang="ca">imatge de X window</comment>
- <comment xml:lang="cs">obrázek X window</comment>
- <comment xml:lang="cy">Delwedd ffenest X</comment>
- <comment xml:lang="da">X-billede</comment>
- <comment xml:lang="de">X-Window-Bild</comment>
- <comment xml:lang="el">Εικόνα περιβάλλοντος X</comment>
- <comment xml:lang="en_GB">X window image</comment>
- <comment xml:lang="eo">bildo de X window</comment>
- <comment xml:lang="es">imagen de ventana de X</comment>
- <comment xml:lang="eu">X window irudia</comment>
- <comment xml:lang="fi">X-ikkunakuva</comment>
- <comment xml:lang="fo">X vindeyga mynd</comment>
- <comment xml:lang="fr">image X window</comment>
- <comment xml:lang="ga">íomhá X-windows</comment>
- <comment xml:lang="gl">imaxe de X Window</comment>
- <comment xml:lang="he">תמונת חלון של X</comment>
- <comment xml:lang="hr">X window slika</comment>
- <comment xml:lang="hu">X window-kép</comment>
- <comment xml:lang="ia">Imagine X Window</comment>
- <comment xml:lang="id">Citra X window</comment>
- <comment xml:lang="it">Immagine X window</comment>
- <comment xml:lang="ja">X window 画像</comment>
- <comment xml:lang="kk">X window суреті</comment>
- <comment xml:lang="ko">X 윈도 그림</comment>
- <comment xml:lang="lt">X window paveikslėlis</comment>
- <comment xml:lang="lv">X window attēls</comment>
- <comment xml:lang="ms">Imej tetingkap X</comment>
- <comment xml:lang="nb">X-Windows skjermbilde</comment>
- <comment xml:lang="nl">X-window-afbeelding</comment>
- <comment xml:lang="nn">X window bilete</comment>
- <comment xml:lang="oc">imatge X window</comment>
- <comment xml:lang="pl">Obraz X Window</comment>
- <comment xml:lang="pt">imagem de janela X</comment>
- <comment xml:lang="pt_BR">Imagem de janela do X</comment>
- <comment xml:lang="ro">Imagine X window</comment>
- <comment xml:lang="ru">Изображение X window</comment>
- <comment xml:lang="sk">Obrázok X window</comment>
- <comment xml:lang="sl">slika X oken</comment>
- <comment xml:lang="sq">Figurë X window</comment>
- <comment xml:lang="sr">слика Икс прозора</comment>
- <comment xml:lang="sv">X-fönsterbild</comment>
- <comment xml:lang="tr">X pencere görüntüsü</comment>
- <comment xml:lang="uk">зображення X window</comment>
- <comment xml:lang="vi">Ảnh cửa sổ X</comment>
- <comment xml:lang="zh_CN">X Window 图像</comment>
<comment xml:lang="zh_TW">X window 影像</comment>
+ <comment xml:lang="zh_CN">X Window 图像</comment>
+ <comment xml:lang="vi">Ảnh cửa sổ X</comment>
+ <comment xml:lang="uk">зображення X window</comment>
+ <comment xml:lang="tr">X pencere görüntüsü</comment>
+ <comment xml:lang="sv">X-fönsterbild</comment>
+ <comment xml:lang="sr">слика Икс прозора</comment>
+ <comment xml:lang="sq">figurë X window</comment>
+ <comment xml:lang="sl">slika X oken</comment>
+ <comment xml:lang="si">X කවුළු රූපය</comment>
+ <comment xml:lang="sk">Obrázok X window</comment>
+ <comment xml:lang="ru">Изображение X window</comment>
+ <comment xml:lang="ro">Imagine X window</comment>
+ <comment xml:lang="pt_BR">Imagem de janela do X</comment>
+ <comment xml:lang="pt">imagem de janela X</comment>
+ <comment xml:lang="pl">Obraz X Window</comment>
+ <comment xml:lang="oc">imatge X window</comment>
+ <comment xml:lang="nn">X window bilete</comment>
+ <comment xml:lang="nl">X-window-afbeelding</comment>
+ <comment xml:lang="nb">X-Windows skjermbilde</comment>
+ <comment xml:lang="ms">Imej tetingkap X</comment>
+ <comment xml:lang="lv">X window attēls</comment>
+ <comment xml:lang="lt">X window paveikslėlis</comment>
+ <comment xml:lang="ko">X 윈도 그림</comment>
+ <comment xml:lang="kk">X window суреті</comment>
+ <comment xml:lang="ja">X window 画像</comment>
+ <comment xml:lang="it">Immagine X window</comment>
+ <comment xml:lang="is">X window mynd</comment>
+ <comment xml:lang="id">Citra X window</comment>
+ <comment xml:lang="ia">Imagine X Window</comment>
+ <comment xml:lang="hu">X window-kép</comment>
+ <comment xml:lang="hr">X window slika</comment>
+ <comment xml:lang="he">תמונת חלון של X</comment>
+ <comment xml:lang="gl">imaxe de X Window</comment>
+ <comment xml:lang="ga">íomhá X-windows</comment>
+ <comment xml:lang="fur">imagjin X window</comment>
+ <comment xml:lang="fr">image X window</comment>
+ <comment xml:lang="fo">X vindeyga mynd</comment>
+ <comment xml:lang="fi">X-ikkunakuva</comment>
+ <comment xml:lang="eu">X window irudia</comment>
+ <comment xml:lang="es">imagen de ventana de X</comment>
+ <comment xml:lang="eo">bildo de X window</comment>
+ <comment xml:lang="en_GB">X window image</comment>
+ <comment xml:lang="el">Εικόνα περιβάλλοντος X</comment>
+ <comment xml:lang="de">X-Window-Bild</comment>
+ <comment xml:lang="da">X-billede</comment>
+ <comment xml:lang="cy">Delwedd ffenest X</comment>
+ <comment xml:lang="cs">obrázek X window</comment>
+ <comment xml:lang="ca">imatge de X window</comment>
+ <comment xml:lang="bg">Изображение — X Window</comment>
+ <comment xml:lang="be@latin">Vyjava vakna X</comment>
+ <comment xml:lang="be">выява X window</comment>
+ <comment xml:lang="az">X window rəsmi</comment>
+ <comment xml:lang="ar">صورة X window</comment>
+ <comment xml:lang="af">X window-beeld</comment>
<glob pattern="*.xwd"/>
</mime-type>
<mime-type type="inode/blockdevice">
- <comment>block device</comment>
- <comment xml:lang="ar">جهاز كتلي</comment>
- <comment xml:lang="ast">preséu de bloques</comment>
- <comment xml:lang="be@latin">blokavaja pryłada</comment>
- <comment xml:lang="bg">Блоково устройство</comment>
- <comment xml:lang="ca">dispositiu de blocs</comment>
- <comment xml:lang="cs">blokové zařízení</comment>
- <comment xml:lang="da">blokenhed</comment>
- <comment xml:lang="de">Blockorientiertes Gerät</comment>
- <comment xml:lang="el">Συσκευή block</comment>
- <comment xml:lang="en_GB">block device</comment>
- <comment xml:lang="eo">bloka disponaĵo</comment>
- <comment xml:lang="es">dispositivo de bloques</comment>
- <comment xml:lang="eu">bloke-gailua</comment>
- <comment xml:lang="fi">laitetiedosto</comment>
- <comment xml:lang="fo">blokka tóleind</comment>
- <comment xml:lang="fr">périphérique de blocs</comment>
- <comment xml:lang="ga">gléas bloc</comment>
- <comment xml:lang="gl">dispositivo de bloque</comment>
- <comment xml:lang="he">התקן בלוק</comment>
- <comment xml:lang="hr">Blokovski uređaj</comment>
- <comment xml:lang="hu">blokkos eszköz</comment>
- <comment xml:lang="ia">Dispositivo de blocos</comment>
- <comment xml:lang="id">peranti blok</comment>
- <comment xml:lang="it">Device a blocchi</comment>
- <comment xml:lang="ja">ブロックデバイス</comment>
- <comment xml:lang="kk">блоктық құрылғысы</comment>
- <comment xml:lang="ko">블록 장치</comment>
- <comment xml:lang="lt">blokinis įrenginys</comment>
- <comment xml:lang="lv">bloka ierīce</comment>
- <comment xml:lang="ms">Peranti blok</comment>
- <comment xml:lang="nb">blokkenhet</comment>
- <comment xml:lang="nl">blok-apparaat</comment>
- <comment xml:lang="nn">blokk-eining</comment>
- <comment xml:lang="oc">periferic de blòts</comment>
- <comment xml:lang="pl">Urządzenie blokowe</comment>
- <comment xml:lang="pt">dispositivo de bloco</comment>
- <comment xml:lang="pt_BR">Dispositivo de bloco</comment>
- <comment xml:lang="ro">dispozitiv bloc</comment>
- <comment xml:lang="ru">Блочное устройство</comment>
- <comment xml:lang="sk">Blokové zariadenie</comment>
- <comment xml:lang="sl">bločna naprava</comment>
- <comment xml:lang="sq">device me blloqe</comment>
- <comment xml:lang="sr">блок уређај</comment>
- <comment xml:lang="sv">blockenhet</comment>
- <comment xml:lang="tr">blok aygıtı</comment>
+ <comment>Block device</comment>
<comment xml:lang="uk">блоковий пристрій</comment>
- <comment xml:lang="vi">thiết bị khối</comment>
- <comment xml:lang="zh_CN">块设备</comment>
- <comment xml:lang="zh_TW">區塊裝置</comment>
+ <comment xml:lang="sv">Blockenhet</comment>
+ <comment xml:lang="ru">Блочное устройство</comment>
+ <comment xml:lang="pl">Urządzenie blokowe</comment>
+ <comment xml:lang="ja">区画様機器</comment>
+ <comment xml:lang="it">Device a blocchi</comment>
+ <comment xml:lang="gl">Dispositivo de bloque</comment>
+ <comment xml:lang="eu">Bloke-gailua</comment>
+ <comment xml:lang="es">dispositivo de bloques</comment>
+ <comment xml:lang="de">Blockorientiertes Gerät</comment>
+ <comment xml:lang="be">блокавая прылада</comment>
</mime-type>
<mime-type type="inode/chardevice">
- <comment>character device</comment>
- <comment xml:lang="ar">جهاز حرفي</comment>
- <comment xml:lang="ast">preséu de caráuteres</comment>
- <comment xml:lang="be@latin">znakavaja pryłada</comment>
- <comment xml:lang="bg">Символно устройство</comment>
- <comment xml:lang="ca">dispositiu de caràcters</comment>
- <comment xml:lang="cs">znakové zařízení</comment>
- <comment xml:lang="da">tegnenhed</comment>
- <comment xml:lang="de">Zeichenorientiertes Gerät</comment>
- <comment xml:lang="el">Συσκευή χαρακτήρων</comment>
- <comment xml:lang="en_GB">character device</comment>
- <comment xml:lang="eo">signa disponaĵo</comment>
- <comment xml:lang="es">dispositivo de caracteres</comment>
- <comment xml:lang="eu">karaktereen gailua</comment>
- <comment xml:lang="fi">merkkilaite</comment>
- <comment xml:lang="fo">stavatóleind</comment>
- <comment xml:lang="fr">périphérique de caractères</comment>
- <comment xml:lang="ga">gléas carachtar</comment>
- <comment xml:lang="gl">dispositivo de caracter</comment>
- <comment xml:lang="he">התקן תכונה</comment>
- <comment xml:lang="hr">Znakovni uređaj</comment>
- <comment xml:lang="hu">karakteres eszköz</comment>
- <comment xml:lang="ia">Dispositivo de characteres</comment>
- <comment xml:lang="id">peranti karakter</comment>
- <comment xml:lang="it">Device a caratteri</comment>
- <comment xml:lang="ja">キャラクタデバイス</comment>
- <comment xml:lang="kk">символдық құрылғысы</comment>
- <comment xml:lang="ko">문자 장치</comment>
- <comment xml:lang="lt">simbolinis įrenginys</comment>
- <comment xml:lang="lv">rakstzīmju ierīce</comment>
- <comment xml:lang="ms">Peranti aksara</comment>
- <comment xml:lang="nb">tegnenhet</comment>
- <comment xml:lang="nl">byte-apparaat</comment>
- <comment xml:lang="nn">teikneining</comment>
- <comment xml:lang="oc">periferic de caractèrs</comment>
- <comment xml:lang="pl">Urządzenie znakowe</comment>
- <comment xml:lang="pt">dispositivo de caracteres</comment>
- <comment xml:lang="pt_BR">Dispositivo de caractere</comment>
- <comment xml:lang="ro">dispozitiv caracter</comment>
+ <comment>Character device</comment>
+ <comment xml:lang="uk">Символьний пристрій</comment>
+ <comment xml:lang="sv">Teckenenhet</comment>
<comment xml:lang="ru">Символьное устройство</comment>
- <comment xml:lang="sk">Znakové zariadenie</comment>
- <comment xml:lang="sl">znakovna naprava</comment>
- <comment xml:lang="sq">device me karaktere</comment>
- <comment xml:lang="sr">знаковни уређај</comment>
- <comment xml:lang="sv">teckenenhet</comment>
- <comment xml:lang="tr">karakter aygıtı</comment>
- <comment xml:lang="uk">символьний пристрій</comment>
- <comment xml:lang="vi">thiết bị ký tự</comment>
- <comment xml:lang="zh_CN">字符设备</comment>
- <comment xml:lang="zh_TW">字元裝置</comment>
+ <comment xml:lang="pl">Urządzenie znakowe</comment>
+ <comment xml:lang="ja">文字様機器</comment>
+ <comment xml:lang="it">Device a caratteri</comment>
+ <comment xml:lang="gl">Dispositivo de caracter</comment>
+ <comment xml:lang="eu">Karaktere-gailua</comment>
+ <comment xml:lang="es">dispositivo de caracteres</comment>
+ <comment xml:lang="de">Zeichenorientiertes Gerät</comment>
+ <comment xml:lang="be">сімвальная прылада</comment>
</mime-type>
<mime-type type="inode/directory">
- <comment>folder</comment>
- <comment xml:lang="ar">مجلّد</comment>
- <comment xml:lang="ast">carpeta</comment>
- <comment xml:lang="be@latin">kataloh</comment>
- <comment xml:lang="bg">Папка</comment>
- <comment xml:lang="ca">carpeta</comment>
- <comment xml:lang="cs">složka</comment>
- <comment xml:lang="da">mappe</comment>
- <comment xml:lang="de">Ordner</comment>
- <comment xml:lang="el">Φάκελος</comment>
- <comment xml:lang="en_GB">folder</comment>
- <comment xml:lang="eo">dosierujo</comment>
- <comment xml:lang="es">carpeta</comment>
- <comment xml:lang="eu">karpeta</comment>
- <comment xml:lang="fi">kansio</comment>
- <comment xml:lang="fo">mappa</comment>
- <comment xml:lang="fr">dossier</comment>
- <comment xml:lang="ga">fillteán</comment>
- <comment xml:lang="gl">cartafol</comment>
- <comment xml:lang="he">תיקייה</comment>
- <comment xml:lang="hr">Mapa</comment>
- <comment xml:lang="hu">mappa</comment>
- <comment xml:lang="ia">Dossier</comment>
- <comment xml:lang="id">folder</comment>
- <comment xml:lang="it">Cartella</comment>
- <comment xml:lang="ja">フォルダー</comment>
- <comment xml:lang="kk">бума</comment>
- <comment xml:lang="ko">폴더</comment>
- <comment xml:lang="lt">aplankas</comment>
- <comment xml:lang="lv">mape</comment>
- <comment xml:lang="ms">Folder</comment>
- <comment xml:lang="nb">mappe</comment>
- <comment xml:lang="nl">map</comment>
- <comment xml:lang="nn">mappe</comment>
- <comment xml:lang="oc">dorsièr</comment>
- <comment xml:lang="pl">Katalog</comment>
- <comment xml:lang="pt">pasta</comment>
- <comment xml:lang="pt_BR">Pasta</comment>
- <comment xml:lang="ro">dosar</comment>
+ <comment>Folder</comment>
+ <comment xml:lang="uk">Тека</comment>
+ <comment xml:lang="sv">Mapp</comment>
<comment xml:lang="ru">Папка</comment>
- <comment xml:lang="sk">Priečinok</comment>
- <comment xml:lang="sl">mapa</comment>
- <comment xml:lang="sq">Kartelë</comment>
- <comment xml:lang="sr">фасцикла</comment>
- <comment xml:lang="sv">mapp</comment>
- <comment xml:lang="tr">dizin</comment>
- <comment xml:lang="uk">тека</comment>
- <comment xml:lang="vi">thư mục</comment>
- <comment xml:lang="zh_CN">文件夹</comment>
- <comment xml:lang="zh_TW">資料夾</comment>
+ <comment xml:lang="pt_BR">Pasta</comment>
+ <comment xml:lang="pl">Katalog</comment>
+ <comment xml:lang="ja">フォルダ</comment>
+ <comment xml:lang="it">Cartella</comment>
+ <comment xml:lang="gl">Cartafol</comment>
+ <comment xml:lang="eu">Karpeta</comment>
+ <comment xml:lang="es">carpeta</comment>
+ <comment xml:lang="de">Ordner</comment>
+ <comment xml:lang="be">папка</comment>
<generic-icon name="folder"/>
<alias type="x-directory/normal"/>
</mime-type>
<mime-type type="inode/fifo">
- <comment>pipe</comment>
- <comment xml:lang="ar">إنبوب</comment>
- <comment xml:lang="be@latin">kanvejer</comment>
- <comment xml:lang="bg">Конвейер</comment>
- <comment xml:lang="ca">conducte</comment>
- <comment xml:lang="cs">roura</comment>
- <comment xml:lang="da">datakanal</comment>
- <comment xml:lang="de">Pipe</comment>
- <comment xml:lang="el">Διοχέτευση</comment>
- <comment xml:lang="en_GB">pipe</comment>
- <comment xml:lang="eo">dukto</comment>
- <comment xml:lang="es">tubería</comment>
- <comment xml:lang="eu">kanalizazioa</comment>
- <comment xml:lang="fi">putki</comment>
- <comment xml:lang="fo">rør</comment>
- <comment xml:lang="fr">tube</comment>
- <comment xml:lang="ga">píopa</comment>
- <comment xml:lang="gl">tubería</comment>
- <comment xml:lang="he">צינור</comment>
- <comment xml:lang="hr">Slivnik</comment>
- <comment xml:lang="hu">adatcsatorna</comment>
- <comment xml:lang="ia">Tubo</comment>
- <comment xml:lang="id">pipa</comment>
- <comment xml:lang="it">Pipe</comment>
- <comment xml:lang="ja">パイプ</comment>
- <comment xml:lang="kk">арна</comment>
- <comment xml:lang="ko">파이프</comment>
- <comment xml:lang="lt">konvejeris</comment>
- <comment xml:lang="lv">programmkanāls</comment>
- <comment xml:lang="ms">Paip</comment>
- <comment xml:lang="nb">rør</comment>
- <comment xml:lang="nl">pijp</comment>
- <comment xml:lang="nn">røyr</comment>
- <comment xml:lang="oc">tub</comment>
- <comment xml:lang="pl">Potok</comment>
- <comment xml:lang="pt">canal</comment>
- <comment xml:lang="pt_BR">Pipe</comment>
- <comment xml:lang="ro">canal pipe</comment>
+ <comment>Pipe</comment>
+ <comment xml:lang="uk">Канал</comment>
+ <comment xml:lang="sv">Rör</comment>
<comment xml:lang="ru">Канал</comment>
- <comment xml:lang="sk">Rúra</comment>
- <comment xml:lang="sl">cev</comment>
- <comment xml:lang="sq">Pipe</comment>
- <comment xml:lang="sr">спојка</comment>
- <comment xml:lang="sv">rör</comment>
- <comment xml:lang="tr">boru</comment>
- <comment xml:lang="uk">канал</comment>
- <comment xml:lang="vi">ống dẫn</comment>
- <comment xml:lang="zh_CN">管道</comment>
- <comment xml:lang="zh_TW">管線</comment>
+ <comment xml:lang="pl">Potok</comment>
+ <comment xml:lang="ja">パイプ</comment>
+ <comment xml:lang="it">Pipe</comment>
+ <comment xml:lang="gl">Tubería</comment>
+ <comment xml:lang="eu">Kanalizazioa</comment>
+ <comment xml:lang="es">canalización</comment>
+ <comment xml:lang="de">Weiterleitung</comment>
+ <comment xml:lang="be">канал</comment>
</mime-type>
<mime-type type="inode/mount-point">
- <comment>mount point</comment>
- <comment xml:lang="ar">نقطة الوصْل</comment>
- <comment xml:lang="ast">puntu de montaxe</comment>
- <comment xml:lang="be@latin">punkt mantavańnia</comment>
- <comment xml:lang="bg">Точка на монтиране</comment>
- <comment xml:lang="ca">punt de muntatge</comment>
- <comment xml:lang="cs">přípojné místo</comment>
- <comment xml:lang="da">monteringspunkt</comment>
- <comment xml:lang="de">Einhängepunkt</comment>
- <comment xml:lang="el">Σημείο προσάρτησης</comment>
- <comment xml:lang="en_GB">mount point</comment>
- <comment xml:lang="eo">surmetingo</comment>
- <comment xml:lang="es">punto de montaje</comment>
- <comment xml:lang="eu">muntatze-puntua</comment>
- <comment xml:lang="fi">liitospiste</comment>
- <comment xml:lang="fo">ísetingarpunkt</comment>
- <comment xml:lang="fr">point d'accès</comment>
- <comment xml:lang="ga">pointe feistithe</comment>
- <comment xml:lang="gl">punto de montaxe</comment>
- <comment xml:lang="he">נקודת עיגון</comment>
- <comment xml:lang="hr">Točka montiranja</comment>
- <comment xml:lang="hu">csatolási pont</comment>
- <comment xml:lang="ia">Puncto de montage</comment>
- <comment xml:lang="id">titik mount</comment>
- <comment xml:lang="it">Punto di mount</comment>
- <comment xml:lang="ja">マウントポイント</comment>
- <comment xml:lang="kk">тіркеу нүктесі</comment>
- <comment xml:lang="ko">마운트 위치</comment>
- <comment xml:lang="lt">prijungimo taškas</comment>
- <comment xml:lang="lv">montēšanas punkts</comment>
- <comment xml:lang="ms">Titik lekapan</comment>
- <comment xml:lang="nb">monteringspunkt</comment>
- <comment xml:lang="nl">aankoppelingspunt</comment>
- <comment xml:lang="nn">monteringspunkt</comment>
- <comment xml:lang="oc">punt d'accès</comment>
- <comment xml:lang="pl">Punkt montowania</comment>
- <comment xml:lang="pt">ponto de montagem</comment>
- <comment xml:lang="pt_BR">Ponto de montagem</comment>
- <comment xml:lang="ro">loc montare</comment>
+ <comment>Mount point</comment>
+ <comment xml:lang="uk">Точка монтування</comment>
+ <comment xml:lang="sv">Monteringspunkt</comment>
<comment xml:lang="ru">Точка монтирования</comment>
- <comment xml:lang="sk">Miesto pripojenia</comment>
- <comment xml:lang="sl">priklopna točka</comment>
- <comment xml:lang="sq">Pikë montimi</comment>
- <comment xml:lang="sr">тачка прикључења</comment>
- <comment xml:lang="sv">monteringspunkt</comment>
- <comment xml:lang="tr">bağlama noktası</comment>
- <comment xml:lang="uk">точка монтування</comment>
- <comment xml:lang="vi">điểm lắp</comment>
- <comment xml:lang="zh_CN">挂载点</comment>
- <comment xml:lang="zh_TW">掛載點</comment>
+ <comment xml:lang="pt_BR">Ponto de montagem</comment>
+ <comment xml:lang="pl">Punkt montowania</comment>
+ <comment xml:lang="ja">マウント箇所</comment>
+ <comment xml:lang="it">Punto di mount</comment>
+ <comment xml:lang="gl">Punto de montaxe</comment>
+ <comment xml:lang="eu">Muntatze-puntua</comment>
+ <comment xml:lang="es">punto de montaje</comment>
+ <comment xml:lang="de">Einhängepunkt</comment>
+ <comment xml:lang="be">пункт мантавання</comment>
<sub-class-of type="inode/directory"/>
</mime-type>
<mime-type type="inode/socket">
- <comment>socket</comment>
- <comment xml:lang="ar">مقبس</comment>
- <comment xml:lang="be@latin">sokiet</comment>
- <comment xml:lang="bg">Гнездо</comment>
- <comment xml:lang="ca">sòcol</comment>
- <comment xml:lang="cs">socket</comment>
- <comment xml:lang="da">sokkel</comment>
- <comment xml:lang="de">Socket</comment>
- <comment xml:lang="el">Υποδοχή</comment>
- <comment xml:lang="en_GB">socket</comment>
- <comment xml:lang="eo">kontaktoskatolo</comment>
- <comment xml:lang="es">socket</comment>
- <comment xml:lang="eu">socketa</comment>
- <comment xml:lang="fi">pistoke</comment>
- <comment xml:lang="fo">sokkul</comment>
- <comment xml:lang="fr">connecteur réseau</comment>
- <comment xml:lang="ga">soicéad</comment>
- <comment xml:lang="gl">socket</comment>
- <comment xml:lang="he">נקודת חיבור</comment>
- <comment xml:lang="hr">Priključnica</comment>
- <comment xml:lang="hu">illesztőpont</comment>
- <comment xml:lang="ia">Socket</comment>
- <comment xml:lang="id">soket</comment>
- <comment xml:lang="it">Socket</comment>
- <comment xml:lang="ja">ソケット</comment>
- <comment xml:lang="kk">сокет</comment>
- <comment xml:lang="ko">소켓</comment>
- <comment xml:lang="lt">lizdas</comment>
- <comment xml:lang="lv">sokets</comment>
- <comment xml:lang="ms">Soket</comment>
- <comment xml:lang="nb">plugg</comment>
- <comment xml:lang="nl">socket</comment>
- <comment xml:lang="nn">sokkel</comment>
- <comment xml:lang="oc">connector ret</comment>
- <comment xml:lang="pl">Gniazdo</comment>
- <comment xml:lang="pt">tomada</comment>
- <comment xml:lang="pt_BR">Socket</comment>
- <comment xml:lang="ro">socket</comment>
- <comment xml:lang="ru">Сокет</comment>
- <comment xml:lang="sk">Soket</comment>
- <comment xml:lang="sl">vtič</comment>
- <comment xml:lang="sq">Socket</comment>
- <comment xml:lang="sr">прикључница</comment>
- <comment xml:lang="sv">uttag</comment>
- <comment xml:lang="tr">soket</comment>
+ <comment>Socket</comment>
<comment xml:lang="uk">сокет</comment>
- <comment xml:lang="vi">ổ cắm</comment>
- <comment xml:lang="zh_CN">套接字</comment>
- <comment xml:lang="zh_TW">socket</comment>
+ <comment xml:lang="sv">Uttag</comment>
+ <comment xml:lang="ru">Сокет</comment>
+ <comment xml:lang="pl">Gniazdo</comment>
+ <comment xml:lang="ja">ソケット</comment>
+ <comment xml:lang="it">Socket</comment>
+ <comment xml:lang="gl">Socket</comment>
+ <comment xml:lang="eu">Socket-a</comment>
+ <comment xml:lang="es">zócalo</comment>
+ <comment xml:lang="de">Socket</comment>
+ <comment xml:lang="be">сокет</comment>
</mime-type>
<mime-type type="inode/symlink">
- <comment>symbolic link</comment>
- <comment xml:lang="ar">وصلة رمزية</comment>
- <comment xml:lang="ast">enllaz simbólicu</comment>
- <comment xml:lang="az">simvolik körpü</comment>
- <comment xml:lang="be@latin">symbalnaja spasyłka</comment>
- <comment xml:lang="bg">Символна връзка</comment>
- <comment xml:lang="ca">enllaç simbòlic</comment>
- <comment xml:lang="cs">symbolický odkaz</comment>
- <comment xml:lang="cy">cyswllt symbolaidd</comment>
- <comment xml:lang="da">symbolsk henvisning</comment>
- <comment xml:lang="de">Symbolische Verknüpfung</comment>
- <comment xml:lang="el">Συμβολικός σύνδεσμος</comment>
- <comment xml:lang="en_GB">symbolic link</comment>
- <comment xml:lang="eo">simbola ligilo</comment>
- <comment xml:lang="es">enlace simbólico</comment>
- <comment xml:lang="eu">esteka sinbolikoa</comment>
- <comment xml:lang="fi">symbolinen linkki</comment>
- <comment xml:lang="fo">tykislig leinkja</comment>
- <comment xml:lang="fr">lien symbolique</comment>
- <comment xml:lang="ga">nasc siombalach</comment>
- <comment xml:lang="gl">ligazón simbólica</comment>
- <comment xml:lang="he">קישור סימבולי</comment>
- <comment xml:lang="hr">Simbolička poveznica</comment>
- <comment xml:lang="hu">szimbolikus link</comment>
- <comment xml:lang="ia">Ligamine symbolic</comment>
- <comment xml:lang="id">taut simbolik</comment>
- <comment xml:lang="it">Collegamento simbolico</comment>
- <comment xml:lang="ja">シンボリックリンク</comment>
- <comment xml:lang="ka">სიმბოლური ბმული</comment>
- <comment xml:lang="kk">символдық сілтеме</comment>
- <comment xml:lang="ko">심볼릭 링크</comment>
- <comment xml:lang="lt">simbolinė nuoroda</comment>
- <comment xml:lang="lv">simboliskā saite</comment>
- <comment xml:lang="ms">Pautan simbolik</comment>
- <comment xml:lang="nb">symbolsk lenke</comment>
- <comment xml:lang="nl">symbolische koppeling</comment>
- <comment xml:lang="nn">symbolsk lenkje</comment>
- <comment xml:lang="oc">ligam simbolic</comment>
- <comment xml:lang="pl">Dowiązanie symboliczne</comment>
- <comment xml:lang="pt">ligação simbólica</comment>
- <comment xml:lang="pt_BR">Ligação simbólica</comment>
- <comment xml:lang="ro">legătură simbolică</comment>
+ <comment>Symbolic link</comment>
+ <comment xml:lang="uk">Символічне посилання</comment>
+ <comment xml:lang="sv">Symbolisk länk</comment>
<comment xml:lang="ru">Символьная ссылка</comment>
- <comment xml:lang="sk">Symbolický odkaz</comment>
- <comment xml:lang="sl">simbolna povezava</comment>
- <comment xml:lang="sq">Lidhje simbolike</comment>
- <comment xml:lang="sr">симболичка веза</comment>
- <comment xml:lang="sv">symbolisk länk</comment>
- <comment xml:lang="tr">sembolik bağlantı</comment>
- <comment xml:lang="uk">символічне посилання</comment>
- <comment xml:lang="vi">liên kết tượng trưng</comment>
- <comment xml:lang="zh_CN">符号链接</comment>
- <comment xml:lang="zh_TW">符號鏈結</comment>
+ <comment xml:lang="pt_BR">Link simbólico</comment>
+ <comment xml:lang="pl">Dowiązanie symboliczne</comment>
+ <comment xml:lang="ja">シンボリックリンク</comment>
+ <comment xml:lang="it">Collegamento simbolico</comment>
+ <comment xml:lang="gl">Ligazón simbólica</comment>
+ <comment xml:lang="eu">Esteka sinbolikoa</comment>
+ <comment xml:lang="es">enlace simbólico</comment>
+ <comment xml:lang="de">Symbolische Verknüpfung</comment>
+ <comment xml:lang="be">сімвалічная спасылка</comment>
</mime-type>
<mime-type type="message/delivery-status">
- <comment>mail delivery report</comment>
- <comment xml:lang="ar">تقرير تسليم البريد</comment>
- <comment xml:lang="az">poçt yollama raportu</comment>
- <comment xml:lang="be@latin">rapart ab dastaŭcy pošty</comment>
- <comment xml:lang="bg">Отчет за пристигналата поща</comment>
- <comment xml:lang="ca">informe de lliurament de correu</comment>
- <comment xml:lang="cs">zpráva o doručení pošty</comment>
- <comment xml:lang="cy">Adroddiad trosgludo post</comment>
- <comment xml:lang="da">postleveringsrapport</comment>
- <comment xml:lang="de">E-Mail-Zustellungsbericht</comment>
- <comment xml:lang="el">Αναφορά παράδοσης μηνύματος</comment>
- <comment xml:lang="en_GB">mail delivery report</comment>
- <comment xml:lang="eo">raporto pri transdono de retpoŝto</comment>
- <comment xml:lang="es">informe de entrega de correo</comment>
- <comment xml:lang="eu">posta banaketako txostena</comment>
- <comment xml:lang="fi">viestin jakeluilmoitus</comment>
- <comment xml:lang="fo">post útberingarfrásøgn</comment>
- <comment xml:lang="fr">rapport de livraison de courriels</comment>
- <comment xml:lang="ga">tuairisc sheachadta r-phoist</comment>
- <comment xml:lang="gl">informe de entrega de correo</comment>
- <comment xml:lang="he">דוח העברת דואר</comment>
- <comment xml:lang="hr">Izvještaj dostave pošte</comment>
- <comment xml:lang="hu">jelentés levélkézbesítésről</comment>
- <comment xml:lang="ia">Reporto de livration de e-mail</comment>
- <comment xml:lang="id">laporan pengantaran surat</comment>
- <comment xml:lang="it">Rapporto di consegna posta</comment>
- <comment xml:lang="ja">メール配送ポート</comment>
- <comment xml:lang="kk">пошта жеткізілгені туралы отчет</comment>
- <comment xml:lang="ko">메일 배달 보고서</comment>
- <comment xml:lang="lt">pašto pristatymo ataskaita</comment>
- <comment xml:lang="lv">pasta piegādes atskaite</comment>
- <comment xml:lang="ms">Laporan penghantaran mel</comment>
- <comment xml:lang="nb">e-postleveranserapport</comment>
- <comment xml:lang="nl">e-mail-bezorgingsbericht</comment>
- <comment xml:lang="nn">e-post-leveringsrapport</comment>
- <comment xml:lang="oc">rapòrt de liurason de corrièrs electronics</comment>
- <comment xml:lang="pl">Raport z dostarczenia poczty</comment>
- <comment xml:lang="pt">relatório de entrega de email</comment>
- <comment xml:lang="pt_BR">Relatório de entrega de correspondência</comment>
- <comment xml:lang="ro">raport de trimitere email</comment>
+ <comment>Mail delivery report</comment>
+ <comment xml:lang="uk">звіт щодо доставлення пошти</comment>
+ <comment xml:lang="sv">E-postleveransrapport</comment>
<comment xml:lang="ru">Отчёт о доставке сообщения</comment>
- <comment xml:lang="sk">Správa o doručení pošty</comment>
- <comment xml:lang="sl">poročilo dostave pošte</comment>
- <comment xml:lang="sq">Raport mbi dorëzimin e mesazhit</comment>
- <comment xml:lang="sr">извештај доставе поруке</comment>
- <comment xml:lang="sv">e-postleveransrapport</comment>
- <comment xml:lang="tr">posta iletim raporu</comment>
- <comment xml:lang="uk">звіт про доставку пошти</comment>
- <comment xml:lang="vi">thông báo phát thư</comment>
- <comment xml:lang="zh_CN">邮件投递报告</comment>
- <comment xml:lang="zh_TW">郵件寄送回報</comment>
+ <comment xml:lang="pl">Raport z dostarczenia poczty</comment>
+ <comment xml:lang="it">Rapporto di consegna posta</comment>
+ <comment xml:lang="gl">Informe de envío de coreo electrónico</comment>
+ <comment xml:lang="es">informe de entrega de correo</comment>
+ <comment xml:lang="de">E-Mail-Zustellungsbericht</comment>
+ <comment xml:lang="be">справаздача пра дастаўку пошты</comment>
<generic-icon name="text-x-generic"/>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="message/disposition-notification">
- <comment>mail disposition report</comment>
- <comment xml:lang="ar">تقرير ترتيب البريد</comment>
- <comment xml:lang="az">poçt qayıtma raportu</comment>
- <comment xml:lang="be@latin">rapart ab raźmiaščeńni pošty</comment>
- <comment xml:lang="bg">Отчет за състоянието на пощата</comment>
- <comment xml:lang="ca">informe de disposició de correu</comment>
- <comment xml:lang="cs">zpráva o předání pošty</comment>
- <comment xml:lang="cy">adroddiad ffurf post</comment>
- <comment xml:lang="da">postdisponeringsrapport</comment>
- <comment xml:lang="de">E-Mail-Übertragungsbericht</comment>
- <comment xml:lang="el">Αναφορά διάθεσης μηνύματος</comment>
- <comment xml:lang="en_GB">mail disposition report</comment>
- <comment xml:lang="eo">raporto pri dispono de retpoŝto</comment>
- <comment xml:lang="es">informe de disposición de correo</comment>
- <comment xml:lang="eu">posta joerako txostena</comment>
- <comment xml:lang="fi">viestin kuittausilmoitus</comment>
- <comment xml:lang="fo">post avhendingarfrásøgn</comment>
- <comment xml:lang="fr">rapport de disposition de courriels</comment>
- <comment xml:lang="ga">tuairisc chóirithe r-phoist</comment>
- <comment xml:lang="gl">informe de disposición de correo</comment>
- <comment xml:lang="he">דוח אספקת דואר</comment>
- <comment xml:lang="hr">Izvještaj smještaja e-pošte</comment>
- <comment xml:lang="hu">jelentés levélkidobásról</comment>
- <comment xml:lang="ia">Reporto de disposition de e-mail</comment>
- <comment xml:lang="id">laporan disposisi surat</comment>
- <comment xml:lang="it">Rapporto di disposizione posta</comment>
- <comment xml:lang="ja">メール停止レポート</comment>
- <comment xml:lang="kk">пошта жылжытылғаны туралы отчет</comment>
- <comment xml:lang="ko">메일 처리 보고서</comment>
- <comment xml:lang="lt">pašto charakteristikos ataskaita</comment>
- <comment xml:lang="lv">pasta izvietojuma atskaite</comment>
- <comment xml:lang="ms">Laporan pelupusan mel</comment>
- <comment xml:lang="nb">e-postdispositionsrapport</comment>
- <comment xml:lang="nl">e-mail-plaatsingsbericht</comment>
- <comment xml:lang="nn">e-post-disposisjonsrapport</comment>
- <comment xml:lang="oc">rapòrt de disposicion de corrièrs electronics</comment>
- <comment xml:lang="pl">Raport z wysyłania poczty</comment>
- <comment xml:lang="pt">relatório de disposição de email</comment>
- <comment xml:lang="pt_BR">Relatório de disposição de correspondência</comment>
- <comment xml:lang="ro">confirmare primire email</comment>
+ <comment>Mail disposition report</comment>
+ <comment xml:lang="uk">звіт щодо розташування пошти</comment>
+ <comment xml:lang="sv">E-postdispositionsrapport</comment>
<comment xml:lang="ru">Отчёт о перемещении почты</comment>
- <comment xml:lang="sk">Správa o odovzdaní pošty</comment>
- <comment xml:lang="sl">poročilo razporeditve pošte</comment>
- <comment xml:lang="sq">Raport mbi njoftimin e mesazhit</comment>
- <comment xml:lang="sr">извештај слања поруке</comment>
- <comment xml:lang="sv">e-postdispositionsrapport</comment>
- <comment xml:lang="tr">posta silinme raporu</comment>
- <comment xml:lang="uk">звіт про розташування пошти</comment>
- <comment xml:lang="vi">thông báo chuyển nhượng thư</comment>
- <comment xml:lang="zh_CN">邮件接收报告</comment>
- <comment xml:lang="zh_TW">郵件處置回報</comment>
+ <comment xml:lang="pl">Raport z wysyłania poczty</comment>
+ <comment xml:lang="it">Rapporto di disposizione posta</comment>
+ <comment xml:lang="es">informe de disposición de correo</comment>
+ <comment xml:lang="de">E-Mail-Übertragungsbericht</comment>
+ <comment xml:lang="be">справаздача пра дзеянні з поштай</comment>
<generic-icon name="text-x-generic"/>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="message/external-body">
- <comment>reference to remote file</comment>
- <comment xml:lang="ar">مرجع إلى ملف بعيد</comment>
- <comment xml:lang="az">uzaq fayla göstəriş</comment>
- <comment xml:lang="be@latin">spasyłka da addalenaha fajłu</comment>
- <comment xml:lang="bg">Препратка към отдалечен файл</comment>
- <comment xml:lang="ca">referència a fitxer remot</comment>
- <comment xml:lang="cs">odkaz na vzdálený soubor</comment>
- <comment xml:lang="cy">cyfeiriad at ffeil bell</comment>
- <comment xml:lang="da">reference til fjern fil</comment>
- <comment xml:lang="de">Verweis auf entfernte Datei</comment>
- <comment xml:lang="el">Αναφορά σε απομακρυσμένο αρχείο</comment>
- <comment xml:lang="en_GB">reference to remote file</comment>
- <comment xml:lang="eo">referenco al fora dosiero</comment>
- <comment xml:lang="es">referencia a un archivo remoto</comment>
- <comment xml:lang="eu">erreferentzia urruneko fitxategiari</comment>
- <comment xml:lang="fi">viittaus etätiedostoon</comment>
- <comment xml:lang="fo">tilvísing til fjarfílu</comment>
- <comment xml:lang="fr">référence au fichier distant</comment>
- <comment xml:lang="ga">tagairt do chomhad cianda</comment>
- <comment xml:lang="gl">referencia a un ficheiro remoto</comment>
- <comment xml:lang="he">התיחסות לקובץ מרוחק</comment>
- <comment xml:lang="hr">Preporuka na udaljenu datoteku</comment>
- <comment xml:lang="hu">hivatkozás távoli fájlra</comment>
- <comment xml:lang="ia">Referentia a un file remote</comment>
- <comment xml:lang="id">referensi ke berkas jarak jauh</comment>
- <comment xml:lang="it">Riferimento a file remoto</comment>
- <comment xml:lang="ja">リモートファイルへの参照</comment>
- <comment xml:lang="kk">қашықтағы файлға сілтеме</comment>
- <comment xml:lang="ko">원격 파일 참조</comment>
- <comment xml:lang="lt">nuoroda į nutolusį failą</comment>
- <comment xml:lang="lv">norāde uz attālinātu datni</comment>
- <comment xml:lang="ms">Rujukan ke fail jauh</comment>
- <comment xml:lang="nb">referanse til ekstern fil</comment>
- <comment xml:lang="nl">verwijzing naar bestand op afstand</comment>
- <comment xml:lang="nn">referanse til fil over nettverk</comment>
- <comment xml:lang="oc">referéncia al fichièr distant</comment>
- <comment xml:lang="pl">Odwołanie do pliku zdalnego</comment>
- <comment xml:lang="pt">referência a um ficheiro remoto</comment>
- <comment xml:lang="pt_BR">Referência para arquivo remoto</comment>
- <comment xml:lang="ro">referință fișier la distanță</comment>
- <comment xml:lang="ru">Ссылка на удалённый файл</comment>
- <comment xml:lang="sk">Odkaz na vzdialený súbor</comment>
- <comment xml:lang="sl">sklic do oddaljene datoteke</comment>
- <comment xml:lang="sq">Referim për tek file në distancë</comment>
- <comment xml:lang="sr">упута на удаљену датотеку</comment>
- <comment xml:lang="sv">referens till fjärrfil</comment>
- <comment xml:lang="tr">uzaktaki dosyaya başvuru</comment>
+ <comment>Reference to remote file</comment>
<comment xml:lang="uk">посилання на віддалений файл</comment>
- <comment xml:lang="vi">tham chiếu đến tập tin ở xa</comment>
- <comment xml:lang="zh_CN">到远程文件的引用</comment>
- <comment xml:lang="zh_TW">遠端檔案的參照</comment>
+ <comment xml:lang="sv">Referens till fjärrfil</comment>
+ <comment xml:lang="ru">Ссылка на удалённый файл</comment>
+ <comment xml:lang="pl">Odwołanie do pliku zdalnego</comment>
+ <comment xml:lang="it">Riferimento a file remoto</comment>
+ <comment xml:lang="es">referencia a archivo remoto</comment>
+ <comment xml:lang="de">Verweis auf entfernte Datei</comment>
+ <comment xml:lang="be">спасылка на выдалены файл</comment>
<generic-icon name="text-x-generic"/>
</mime-type>
<mime-type type="message/news">
<comment>Usenet news message</comment>
- <comment xml:lang="ar">رسالة أخبار Usenet</comment>
- <comment xml:lang="az">Usenet xəbərlər ismarışı</comment>
- <comment xml:lang="be@latin">Navina Usenet</comment>
- <comment xml:lang="bg">Съобщение — Usenet</comment>
- <comment xml:lang="ca">missatge de notícies Usenet</comment>
- <comment xml:lang="cs">příspěvek do diskusních skupin Usenet</comment>
- <comment xml:lang="cy">Neges newyddion Usenet</comment>
- <comment xml:lang="da">Usenetnyhedsmeddelelse</comment>
- <comment xml:lang="de">Usenet-News-Nachricht</comment>
- <comment xml:lang="el">Μήνυμα ομάδων συζητήσεων Usenet</comment>
- <comment xml:lang="en_GB">Usenet news message</comment>
- <comment xml:lang="eo">novaĵmesaĝo de Usenet</comment>
- <comment xml:lang="es">mensaje de noticias de Usenet</comment>
- <comment xml:lang="eu">Usenet berrien mezua</comment>
- <comment xml:lang="fi">nyyssiviesti</comment>
- <comment xml:lang="fo">Usenet news boð</comment>
- <comment xml:lang="fr">message de groupe d'échange Usenet</comment>
- <comment xml:lang="ga">teachtaireacht nuachta Usenet</comment>
- <comment xml:lang="gl">mensaxes de noticias de Usenet</comment>
- <comment xml:lang="he">הודעת חדשות של Usenet</comment>
- <comment xml:lang="hr">Usenet poruka novosti</comment>
- <comment xml:lang="hu">USENET-hírcsoportüzenet</comment>
- <comment xml:lang="ia">Message de gruppo Usenet</comment>
- <comment xml:lang="id">Pesan berita Usenet</comment>
- <comment xml:lang="it">Messaggio news Usenet</comment>
- <comment xml:lang="ja">Usenet news メッセージ</comment>
- <comment xml:lang="kk">Usenet жаңалық мәлімдемесі</comment>
- <comment xml:lang="ko">유즈넷 뉴스 메시지</comment>
- <comment xml:lang="lt">Usenet naujienų žinutė</comment>
- <comment xml:lang="lv">Usenet jaunumu ziņojums</comment>
- <comment xml:lang="ms">Mesej berita USENET</comment>
- <comment xml:lang="nb">Usenet nyhetsmelding</comment>
- <comment xml:lang="nl">Usenet-nieuwsbericht</comment>
- <comment xml:lang="nn">USENET diskusjonsmelding</comment>
- <comment xml:lang="oc">messatge de grop d'escambi Usenet</comment>
- <comment xml:lang="pl">Wiadomość grupy dyskusyjnej</comment>
- <comment xml:lang="pt">mensagem de notícias Usenet</comment>
- <comment xml:lang="pt_BR">Mensagem de notícias da Usenet</comment>
- <comment xml:lang="ro">Mesaj Usenet de știri </comment>
- <comment xml:lang="ru">Новостное сообщение Usenet</comment>
- <comment xml:lang="sk">Príspevok do diskusných skupín Usenet</comment>
- <comment xml:lang="sl">novičarsko sporočilo Usenet</comment>
- <comment xml:lang="sq">Mesazh lajmesh Usenet</comment>
- <comment xml:lang="sr">Порука новости Јузнета</comment>
- <comment xml:lang="sv">Usenet-diskussionsgruppsmeddelande</comment>
- <comment xml:lang="tr">Usenet haber iletisi</comment>
- <comment xml:lang="uk">повідомлення новин Usenet</comment>
- <comment xml:lang="vi">Thông điệp tin tức USENET</comment>
- <comment xml:lang="zh_CN">Usenet 新闻信</comment>
<comment xml:lang="zh_TW">Usenet 新聞訊息</comment>
+ <comment xml:lang="zh_CN">Usenet 新闻信</comment>
+ <comment xml:lang="vi">Thông điệp tin tức USENET</comment>
+ <comment xml:lang="uk">повідомлення новин Usenet</comment>
+ <comment xml:lang="tr">Usenet haber iletisi</comment>
+ <comment xml:lang="sv">Usenet-diskussionsgruppsmeddelande</comment>
+ <comment xml:lang="sr">Порука новости Јузнета</comment>
+ <comment xml:lang="sq">mesazh lajmesh Usenet</comment>
+ <comment xml:lang="sl">novičarsko sporočilo Usenet</comment>
+ <comment xml:lang="si">යූස්නෙට් පුවත් පණිවිඩය</comment>
+ <comment xml:lang="sk">Príspevok do diskusných skupín Usenet</comment>
+ <comment xml:lang="ru">Новостное сообщение Usenet</comment>
+ <comment xml:lang="ro">Mesaj Usenet de știri </comment>
+ <comment xml:lang="pt_BR">Mensagem de notícias da Usenet</comment>
+ <comment xml:lang="pt">mensagem de notícias Usenet</comment>
+ <comment xml:lang="pl">Wiadomość grupy dyskusyjnej</comment>
+ <comment xml:lang="oc">messatge de grop d'escambi Usenet</comment>
+ <comment xml:lang="nn">USENET diskusjonsmelding</comment>
+ <comment xml:lang="nl">Usenet-nieuwsbericht</comment>
+ <comment xml:lang="nb">Usenet nyhetsmelding</comment>
+ <comment xml:lang="ms">Mesej berita USENET</comment>
+ <comment xml:lang="lv">Usenet jaunumu ziņojums</comment>
+ <comment xml:lang="lt">Usenet naujienų žinutė</comment>
+ <comment xml:lang="ko">유즈넷 뉴스 메시지</comment>
+ <comment xml:lang="kk">Usenet жаңалық мәлімдемесі</comment>
+ <comment xml:lang="ja">Usenet news メッセージ</comment>
+ <comment xml:lang="it">Messaggio news Usenet</comment>
+ <comment xml:lang="is">USENET fréttaskilaboð</comment>
+ <comment xml:lang="id">Pesan berita Usenet</comment>
+ <comment xml:lang="ia">Message de gruppo Usenet</comment>
+ <comment xml:lang="hu">USENET-hírcsoportüzenet</comment>
+ <comment xml:lang="hr">Usenet poruka novosti</comment>
+ <comment xml:lang="he">הודעת חדשות של Usenet</comment>
+ <comment xml:lang="gl">mensaxes de noticias de Usenet</comment>
+ <comment xml:lang="ga">teachtaireacht nuachta Usenet</comment>
+ <comment xml:lang="fur">messaç gnovis Usenet</comment>
+ <comment xml:lang="fr">message de groupe d'échange Usenet</comment>
+ <comment xml:lang="fo">Usenet news boð</comment>
+ <comment xml:lang="fi">nyyssiviesti</comment>
+ <comment xml:lang="eu">Usenet berrien mezua</comment>
+ <comment xml:lang="es">mensaje de noticias de Usenet</comment>
+ <comment xml:lang="eo">novaĵmesaĝo de Usenet</comment>
+ <comment xml:lang="en_GB">Usenet news message</comment>
+ <comment xml:lang="el">Μήνυμα ομάδων συζητήσεων Usenet</comment>
+ <comment xml:lang="de">Usenet-News-Nachricht</comment>
+ <comment xml:lang="da">Usenet-nyhedsmeddelelse</comment>
+ <comment xml:lang="cy">Neges newyddion Usenet</comment>
+ <comment xml:lang="cs">příspěvek do diskusních skupin Usenet</comment>
+ <comment xml:lang="ca">missatge de notícies Usenet</comment>
+ <comment xml:lang="bg">Съобщение — Usenet</comment>
+ <comment xml:lang="be@latin">Navina Usenet</comment>
+ <comment xml:lang="be">навіна Usenet</comment>
+ <comment xml:lang="az">Usenet xəbərlər ismarışı</comment>
+ <comment xml:lang="ar">رسالة أخبار Usenet</comment>
+ <comment xml:lang="af">Usenet-nuusboodskap</comment>
<generic-icon name="text-x-generic"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="Article" type="string" offset="0"/>
- <match value="Path:" type="string" offset="0"/>
- <match value="Xref:" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="Article" offset="0"/>
+ <match type="string" value="Path:" offset="0"/>
+ <match type="string" value="Xref:" offset="0"/>
</magic>
</mime-type>
<mime-type type="message/partial">
- <comment>partial email message</comment>
- <comment xml:lang="ar">رسالة البريد الإلكتروني الجزئية</comment>
- <comment xml:lang="az">qismi poçt ismarışı</comment>
- <comment xml:lang="be@latin">niapoŭny list email</comment>
- <comment xml:lang="bg">Част от електронно писмо</comment>
- <comment xml:lang="ca">missatge de correu electrònic parcial</comment>
- <comment xml:lang="cs">částečná e-mailová zpráva</comment>
- <comment xml:lang="cy">darn o neges e-bost</comment>
- <comment xml:lang="da">delvis postmeddelelse</comment>
- <comment xml:lang="de">E-Mail-Nachrichtenfragment</comment>
- <comment xml:lang="el">Τμηματικό ηλ. μήνυμα</comment>
- <comment xml:lang="en_GB">partial email message</comment>
- <comment xml:lang="eo">parta retpoŝta mesaĝo</comment>
- <comment xml:lang="es">mensaje de correo electrónico parcial</comment>
- <comment xml:lang="eu">posta mezu partziala</comment>
- <comment xml:lang="fi">osittainen sähköpostiviesti</comment>
- <comment xml:lang="fr">message partiel de courriel</comment>
- <comment xml:lang="ga">teachtaireacht ríomhphoist neamhiomlán</comment>
- <comment xml:lang="gl">mensaxe de correo electrónico parcial</comment>
- <comment xml:lang="he">מסר דוא״ל חלקי</comment>
- <comment xml:lang="hr">Nepotpuna poruka e-pošte</comment>
- <comment xml:lang="hu">részleges elektronikus levél</comment>
- <comment xml:lang="ia">Message de e-mail partial</comment>
- <comment xml:lang="id">pesan email sebagian</comment>
- <comment xml:lang="it">Messaggio email parziale</comment>
- <comment xml:lang="ja">部分メールメッセージ</comment>
- <comment xml:lang="kk">электронды поштаның үзінді мәлімдемесі</comment>
- <comment xml:lang="ko">전자 우편 메시지 일부</comment>
- <comment xml:lang="lt">nepilnas el. laiškas</comment>
- <comment xml:lang="lv">daļēja e-pasta vēstule</comment>
- <comment xml:lang="ms">Bahagian mesej emel</comment>
- <comment xml:lang="nb">del av e-postmelding</comment>
- <comment xml:lang="nl">gedeeltelijk e-mailbericht</comment>
- <comment xml:lang="nn">del av e-post-melding</comment>
- <comment xml:lang="oc">messatge parcial de corrièr electronic</comment>
- <comment xml:lang="pl">Częściowa wiadomość e-mail</comment>
- <comment xml:lang="pt">mensagem parcial de email</comment>
- <comment xml:lang="pt_BR">Mensagem de e-mail parcial</comment>
- <comment xml:lang="ro">mesaj de email parțial</comment>
- <comment xml:lang="ru">Фрагмент сообщения электронной почты</comment>
- <comment xml:lang="sk">Čiastočná e-mailová správa</comment>
- <comment xml:lang="sl">delno elektronsko sporočilo</comment>
- <comment xml:lang="sq">Mesazh poste i pjesëshëm</comment>
- <comment xml:lang="sr">делимична порука ел. поште</comment>
- <comment xml:lang="sv">del av e-postmeddelande</comment>
- <comment xml:lang="tr">kısmi eposta iletisi</comment>
+ <comment>Partial email message</comment>
<comment xml:lang="uk">часткове поштове повідомлення</comment>
- <comment xml:lang="vi">thư điện tử riêng phần</comment>
- <comment xml:lang="zh_CN">部分电子邮件</comment>
- <comment xml:lang="zh_TW">部份電子郵件訊息</comment>
+ <comment xml:lang="sv">Del av e-postmeddelande</comment>
+ <comment xml:lang="ru">Фрагмент сообщения электронной почты</comment>
+ <comment xml:lang="pl">Częściowa wiadomość e-mail</comment>
+ <comment xml:lang="it">Messaggio email parziale</comment>
+ <comment xml:lang="es">mensaje de correo electrónico parcial</comment>
+ <comment xml:lang="de">E-Mail-Nachrichtenfragment</comment>
+ <comment xml:lang="be">частка электроннага ліста</comment>
<generic-icon name="text-x-generic"/>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="message/rfc822">
- <comment>email message</comment>
- <comment xml:lang="ar">رسالة البريد الإلكتروني</comment>
- <comment xml:lang="be@latin">list email</comment>
- <comment xml:lang="bg">Съобщение по електронната поща</comment>
- <comment xml:lang="ca">missatge de correu electrònic</comment>
- <comment xml:lang="cs">e-mailová zpráva</comment>
- <comment xml:lang="da">postmeddelelse</comment>
- <comment xml:lang="de">E-Mail-Nachricht</comment>
- <comment xml:lang="el">Ηλ. μήνυμα</comment>
- <comment xml:lang="en_GB">email message</comment>
- <comment xml:lang="eo">retpoŝta mesaĝo</comment>
- <comment xml:lang="es">mensaje de correo electrónico</comment>
- <comment xml:lang="eu">helbide elektronikoen mezua</comment>
- <comment xml:lang="fi">sähköpostiviesti</comment>
- <comment xml:lang="fo">t-post boð</comment>
- <comment xml:lang="fr">message de courriel</comment>
- <comment xml:lang="ga">teachtaireacht ríomhphoist</comment>
- <comment xml:lang="gl">mensaxe de correo electrónico</comment>
- <comment xml:lang="he">הודעת דואר אלקטרוני</comment>
- <comment xml:lang="hr">Poruka e-pošte</comment>
- <comment xml:lang="hu">elektronikus levél</comment>
- <comment xml:lang="ia">Message de e-mail</comment>
- <comment xml:lang="id">pesan email</comment>
- <comment xml:lang="it">Messaggio email</comment>
- <comment xml:lang="ja">メール本文</comment>
- <comment xml:lang="kk">пошталық мәлімдеме</comment>
- <comment xml:lang="ko">전자 우편 본문</comment>
- <comment xml:lang="lt">el. laiškas</comment>
- <comment xml:lang="lv">e-pasta vēstule</comment>
- <comment xml:lang="ms">Mesej emel</comment>
- <comment xml:lang="nb">e-postmelding</comment>
- <comment xml:lang="nl">e-mailbericht</comment>
- <comment xml:lang="nn">e-postmelding</comment>
- <comment xml:lang="oc">messatge de corrièr electronic</comment>
- <comment xml:lang="pl">Wiadomość e-mail</comment>
- <comment xml:lang="pt">mensagem de email</comment>
- <comment xml:lang="pt_BR">Mensagem de e-mail</comment>
- <comment xml:lang="ro">mesaj email</comment>
+ <comment>Email message</comment>
+ <comment xml:lang="uk">поштове повідомлення</comment>
+ <comment xml:lang="sv">E-postmeddelande</comment>
<comment xml:lang="ru">Почтовое сообщение</comment>
- <comment xml:lang="sk">E-mailová správa</comment>
- <comment xml:lang="sl">sporočilo elektronske pošte</comment>
- <comment xml:lang="sq">Mesazh poste</comment>
- <comment xml:lang="sr">порука ел. поште</comment>
- <comment xml:lang="sv">e-postmeddelande</comment>
- <comment xml:lang="tr">eposta iletisi</comment>
- <comment xml:lang="uk">повідомлення email</comment>
- <comment xml:lang="vi">thư điện tử</comment>
- <comment xml:lang="zh_CN">电子邮件</comment>
- <comment xml:lang="zh_TW">電子郵件內容</comment>
+ <comment xml:lang="pt_BR">Mensagem de e-mail</comment>
+ <comment xml:lang="pl">Wiadomość e-mail</comment>
+ <comment xml:lang="it">Messaggio email</comment>
+ <comment xml:lang="gl">Mensaxe de correo electrónico</comment>
+ <comment xml:lang="es">mensaje de correo electrónico</comment>
+ <comment xml:lang="de">E-Mail-Nachricht</comment>
+ <comment xml:lang="be">электронны ліст</comment>
<generic-icon name="text-x-generic"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="#! rnews" type="string" offset="0"/>
- <match value="Forward to" type="string" offset="0"/>
- <match value="From:" type="string" offset="0"/>
- <match value="N#! rnews" type="string" offset="0"/>
- <match value="Pipe to" type="string" offset="0"/>
- <match value="Received:" type="string" offset="0"/>
- <match value="Relay-Version:" type="string" offset="0"/>
- <match value="Return-Path:" type="string" offset="0"/>
- <match value="Return-path:" type="string" offset="0"/>
- <match value="Subject: " type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#! rnews" offset="0"/>
+ <match type="string" value="Content-Type:" offset="0"/>
+ <match type="string" value="Forward to" offset="0"/>
+ <match type="string" value="From:" offset="0"/>
+ <match type="string" value="N#! rnews" offset="0"/>
+ <match type="string" value="Pipe to" offset="0"/>
+ <match type="string" value="Received:" offset="0"/>
+ <match type="string" value="Relay-Version:" offset="0"/>
+ <match type="string" value="Return-Path:" offset="0"/>
+ <match type="string" value="Return-path:" offset="0"/>
+ <match type="string" value="Subject: " offset="0"/>
+ <match type="string" value="To:" offset="0"/>
</magic>
<glob pattern="*.eml"/>
</mime-type>
<mime-type type="message/x-gnu-rmail">
<comment>GNU mail message</comment>
- <comment xml:lang="ar">رسالة بريد جنو</comment>
- <comment xml:lang="az">GNU poçt ismarışı</comment>
- <comment xml:lang="be@latin">List GNU</comment>
- <comment xml:lang="bg">Съобщение — GNU mail</comment>
- <comment xml:lang="ca">missatge de GNU mail</comment>
- <comment xml:lang="cs">zpráva GNU mail</comment>
- <comment xml:lang="cy">Neges E-Bost GNU</comment>
- <comment xml:lang="da">GNU-postmeddelelse</comment>
- <comment xml:lang="de">GNU-Mail-Nachricht</comment>
- <comment xml:lang="el">Μήνυμα αλληλογραφίας GNU</comment>
- <comment xml:lang="en_GB">GNU mail message</comment>
- <comment xml:lang="eo">mesaĝo de GNU mail</comment>
- <comment xml:lang="es">mensaje de correo de GNU</comment>
- <comment xml:lang="eu">GNU posta mezua</comment>
- <comment xml:lang="fi">GNU-postiviesti</comment>
- <comment xml:lang="fo">GNU mail boð</comment>
- <comment xml:lang="fr">message de courriel GNU</comment>
- <comment xml:lang="ga">teachtaireacht r-phoist GNU</comment>
- <comment xml:lang="gl">mensaxe de correo electrónico de GNU</comment>
- <comment xml:lang="he">הודעת דואר של GNU</comment>
- <comment xml:lang="hr">GNU poruka pošte</comment>
- <comment xml:lang="hu">GNU elektronikus levél</comment>
- <comment xml:lang="ia">Message electronic de GNU</comment>
- <comment xml:lang="id">Pesan surat GNU</comment>
- <comment xml:lang="it">Messaggio GNU mail</comment>
- <comment xml:lang="ja">GNU メールメッセージ</comment>
- <comment xml:lang="ka">GNU mail შეტყობინება</comment>
- <comment xml:lang="kk">GNU пошта хабарламасы</comment>
- <comment xml:lang="ko">GNU 메일 메시지</comment>
- <comment xml:lang="lt">GNU pašto žinutė</comment>
- <comment xml:lang="lv">GNU pasta vēstule</comment>
- <comment xml:lang="ms">Mesej emel GNU</comment>
- <comment xml:lang="nb">GNU e-postmelding</comment>
- <comment xml:lang="nl">GNU-mailbericht</comment>
- <comment xml:lang="nn">GNU e-postmelding</comment>
- <comment xml:lang="oc">messatge de corrièr electronic GNU</comment>
- <comment xml:lang="pl">Wiadomość pocztowa GNU</comment>
- <comment xml:lang="pt">mensagem de email GNU</comment>
- <comment xml:lang="pt_BR">Mensagem de e-mail GNU</comment>
- <comment xml:lang="ro">Mesaj GNU mail</comment>
- <comment xml:lang="ru">Почтовое сообщение GNU</comment>
- <comment xml:lang="sk">Správa GNU mail</comment>
- <comment xml:lang="sl">Sporočilo pošte GNU</comment>
- <comment xml:lang="sq">Mesazh GNU mail</comment>
- <comment xml:lang="sr">порука Гнуове поште</comment>
- <comment xml:lang="sv">GNU-epostmeddelande</comment>
- <comment xml:lang="tr">GNU posta iletisi</comment>
- <comment xml:lang="uk">поштове повідомлення GNU</comment>
- <comment xml:lang="vi">Thư điện tử của GNU</comment>
- <comment xml:lang="zh_CN">GNU mail 信件</comment>
<comment xml:lang="zh_TW">GNU 郵件訊息</comment>
+ <comment xml:lang="zh_CN">GNU mail 信件</comment>
+ <comment xml:lang="vi">Thư điện tử của GNU</comment>
+ <comment xml:lang="uk">поштове повідомлення GNU</comment>
+ <comment xml:lang="tr">GNU posta iletisi</comment>
+ <comment xml:lang="sv">GNU-epostmeddelande</comment>
+ <comment xml:lang="sr">порука Гнуове поште</comment>
+ <comment xml:lang="sq">mesazh GNU mail</comment>
+ <comment xml:lang="sl">Sporočilo pošte GNU</comment>
+ <comment xml:lang="si">GNU තැපැල් පණිවිඩය</comment>
+ <comment xml:lang="sk">Správa GNU mail</comment>
+ <comment xml:lang="ru">Почтовое сообщение GNU</comment>
+ <comment xml:lang="ro">Mesaj GNU mail</comment>
+ <comment xml:lang="pt_BR">Mensagem de e-mail GNU</comment>
+ <comment xml:lang="pt">mensagem de email GNU</comment>
+ <comment xml:lang="pl">Wiadomość pocztowa GNU</comment>
+ <comment xml:lang="oc">messatge de corrièr electronic GNU</comment>
+ <comment xml:lang="nn">GNU e-postmelding</comment>
+ <comment xml:lang="nl">GNU-mailbericht</comment>
+ <comment xml:lang="nb">GNU e-postmelding</comment>
+ <comment xml:lang="ms">Mesej emel GNU</comment>
+ <comment xml:lang="lv">GNU pasta vēstule</comment>
+ <comment xml:lang="lt">GNU pašto žinutė</comment>
+ <comment xml:lang="ko">GNU 메일 메시지</comment>
+ <comment xml:lang="kk">GNU пошта хабарламасы</comment>
+ <comment xml:lang="ka">GNU mail შეტყობინება</comment>
+ <comment xml:lang="ja">GNU メールメッセージ</comment>
+ <comment xml:lang="it">Messaggio GNU mail</comment>
+ <comment xml:lang="is">GNU póst skilaboð</comment>
+ <comment xml:lang="id">Pesan surat GNU</comment>
+ <comment xml:lang="ia">Message electronic de GNU</comment>
+ <comment xml:lang="hu">GNU elektronikus levél</comment>
+ <comment xml:lang="hr">GNU poruka pošte</comment>
+ <comment xml:lang="he">הודעת דואר של GNU</comment>
+ <comment xml:lang="gl">mensaxe de correo electrónico de GNU</comment>
+ <comment xml:lang="ga">teachtaireacht r-phoist GNU</comment>
+ <comment xml:lang="fur">messaç di pueste GNU</comment>
+ <comment xml:lang="fr">message de courriel GNU</comment>
+ <comment xml:lang="fo">GNU mail boð</comment>
+ <comment xml:lang="fi">GNU-postiviesti</comment>
+ <comment xml:lang="eu">GNU posta mezua</comment>
+ <comment xml:lang="es">mensaje de correo de GNU</comment>
+ <comment xml:lang="eo">mesaĝo de GNU mail</comment>
+ <comment xml:lang="en_GB">GNU mail message</comment>
+ <comment xml:lang="el">Μήνυμα αλληλογραφίας GNU</comment>
+ <comment xml:lang="de">GNU-Mail-Nachricht</comment>
+ <comment xml:lang="da">GNU-postmeddelelse</comment>
+ <comment xml:lang="cy">Neges E-Bost GNU</comment>
+ <comment xml:lang="cs">zpráva GNU mail</comment>
+ <comment xml:lang="ca">missatge de GNU mail</comment>
+ <comment xml:lang="bg">Съобщение — GNU mail</comment>
+ <comment xml:lang="be@latin">List GNU</comment>
+ <comment xml:lang="be">электронны ліст GNU</comment>
+ <comment xml:lang="az">GNU poçt ismarışı</comment>
+ <comment xml:lang="ar">رسالة بريد جنو</comment>
+ <comment xml:lang="af">GNU-posboodskap</comment>
<generic-icon name="text-x-generic"/>
<glob pattern="RMAIL"/>
</mime-type>
<mime-type type="model/iges">
<comment>IGES document</comment>
- <comment xml:lang="ast">Documentu IGES</comment>
- <comment xml:lang="ca">document IGES</comment>
- <comment xml:lang="cs">dokument IGES</comment>
- <comment xml:lang="da">IGES-dokument</comment>
- <comment xml:lang="de">IGES-Dokument</comment>
- <comment xml:lang="en_GB">IGES document</comment>
- <comment xml:lang="es">documento IGES</comment>
- <comment xml:lang="eu">IGES dokumentua</comment>
- <comment xml:lang="fi">IGES-asiakirja</comment>
- <comment xml:lang="fr">document IGES</comment>
- <comment xml:lang="ga">cáipéis IGES</comment>
- <comment xml:lang="he">מסמך IGES</comment>
- <comment xml:lang="hr">IGES dokument</comment>
- <comment xml:lang="hu">IGES dokumentum</comment>
- <comment xml:lang="id">dokumen IGES</comment>
- <comment xml:lang="it">Documento IGES</comment>
- <comment xml:lang="kk">IGES құжаты</comment>
- <comment xml:lang="ko">IGES 문서</comment>
- <comment xml:lang="pl">Dokument IGES</comment>
- <comment xml:lang="pt_BR">Documento IGES</comment>
- <comment xml:lang="ru">Документ IGES</comment>
- <comment xml:lang="sk">Dokument IGES</comment>
- <comment xml:lang="sr">ИГЕС документ</comment>
- <comment xml:lang="sv">IGES-dokument</comment>
- <comment xml:lang="tr">IGES belgesi</comment>
- <comment xml:lang="uk">документ IGES</comment>
- <comment xml:lang="zh_CN">IGES 文档</comment>
<comment xml:lang="zh_TW">IGES 文件</comment>
+ <comment xml:lang="zh_CN">IGES 文档</comment>
+ <comment xml:lang="uk">документ IGES</comment>
+ <comment xml:lang="tr">IGES belgesi</comment>
+ <comment xml:lang="sv">IGES-dokument</comment>
+ <comment xml:lang="sr">ИГЕС документ</comment>
+ <comment xml:lang="sq">dokument IGES</comment>
+ <comment xml:lang="sl">Dokument IGES</comment>
+ <comment xml:lang="si">IGES ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument IGES</comment>
+ <comment xml:lang="ru">Документ IGES</comment>
+ <comment xml:lang="pt_BR">Documento IGES</comment>
+ <comment xml:lang="pl">Dokument IGES</comment>
+ <comment xml:lang="oc">document IGES</comment>
+ <comment xml:lang="nl">IGES-document</comment>
+ <comment xml:lang="ko">IGES 문서</comment>
+ <comment xml:lang="kk">IGES құжаты</comment>
+ <comment xml:lang="ja">IGES ドキュメント</comment>
+ <comment xml:lang="it">Documento IGES</comment>
+ <comment xml:lang="is">IGES skjalskjal</comment>
+ <comment xml:lang="id">Dokumen IGES</comment>
+ <comment xml:lang="hu">IGES dokumentum</comment>
+ <comment xml:lang="hr">IGES dokument</comment>
+ <comment xml:lang="he">מסמך IGES</comment>
+ <comment xml:lang="gl">Documento IGES</comment>
+ <comment xml:lang="ga">cáipéis IGES</comment>
+ <comment xml:lang="fur">document IGES</comment>
+ <comment xml:lang="fr">document IGES</comment>
+ <comment xml:lang="fi">IGES-asiakirja</comment>
+ <comment xml:lang="eu">IGES dokumentua</comment>
+ <comment xml:lang="es">documento IGES</comment>
+ <comment xml:lang="en_GB">IGES document</comment>
+ <comment xml:lang="de">IGES-Dokument</comment>
+ <comment xml:lang="da">IGES-dokument</comment>
+ <comment xml:lang="cs">dokument IGES</comment>
+ <comment xml:lang="ca">document IGES</comment>
+ <comment xml:lang="bg">Документ — IGES</comment>
+ <comment xml:lang="be">дакумент IGES</comment>
+ <comment xml:lang="ast">Documentu IGES</comment>
+ <comment xml:lang="ar">مستند IGES</comment>
+ <comment xml:lang="af">IGES-dokument</comment>
<acronym>IGES</acronym>
<expanded-acronym>Initial Graphics Exchange Specification</expanded-acronym>
<generic-icon name="x-office-document"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="S 1\x0a" type="string" offset="72"/>
- <match value="S0000001\x0a" type="string" offset="72"/>
+ <magic>
+ <match type="string" value="S 1\x0a" offset="72"/>
+ <match type="string" value="S0000001\x0a" offset="72"/>
</magic>
<glob pattern="*.igs"/>
<glob pattern="*.iges"/>
</mime-type>
+ <mime-type type="model/gltf-binary">
+ <comment>glTF model</comment>
+ <comment xml:lang="zh_CN">glTF 模型</comment>
+ <comment xml:lang="uk">модель glTF</comment>
+ <comment xml:lang="tr">glTF modeli</comment>
+ <comment xml:lang="sv">glTF-modell</comment>
+ <comment xml:lang="sl">Model gITF</comment>
+ <comment xml:lang="si">glTF ආකෘතිය</comment>
+ <comment xml:lang="ru">glTF-модель</comment>
+ <comment xml:lang="pt_BR">Modelo gITF</comment>
+ <comment xml:lang="pl">Model glTF</comment>
+ <comment xml:lang="oc">modèl glTF</comment>
+ <comment xml:lang="nl">glTF-model</comment>
+ <comment xml:lang="ko">glTF 모델</comment>
+ <comment xml:lang="kk">glTF моделі</comment>
+ <comment xml:lang="ja">glTF モデル</comment>
+ <comment xml:lang="it">Modello glTF</comment>
+ <comment xml:lang="hr">glTF model</comment>
+ <comment xml:lang="he">דגם gITF</comment>
+ <comment xml:lang="gl">Modelo glTF</comment>
+ <comment xml:lang="fi">glTF malli</comment>
+ <comment xml:lang="eu">glTF eredua</comment>
+ <comment xml:lang="es">modelo gITF</comment>
+ <comment xml:lang="en_GB">glTF model</comment>
+ <comment xml:lang="de">glTF-Modell</comment>
+ <comment xml:lang="be">мадэль glTF</comment>
+ <comment xml:lang="ar">نموذج glTF</comment>
+ <acronym>glTF</acronym>
+ <expanded-acronym>GL Transmission Format</expanded-acronym>
+ <generic-icon name="image-x-generic"/>
+ <magic>
+ <match type="string" value="glTF" offset="0"/>
+ </magic>
+ <glob pattern="*.glb"/>
+ </mime-type>
+ <mime-type type="model/gltf+json">
+ <comment>glTF model</comment>
+ <comment xml:lang="zh_CN">glTF 模型</comment>
+ <comment xml:lang="uk">модель glTF</comment>
+ <comment xml:lang="tr">glTF modeli</comment>
+ <comment xml:lang="sv">glTF-modell</comment>
+ <comment xml:lang="sl">Model gITF</comment>
+ <comment xml:lang="si">glTF ආකෘතිය</comment>
+ <comment xml:lang="ru">glTF-модель</comment>
+ <comment xml:lang="pt_BR">Modelo gITF</comment>
+ <comment xml:lang="pl">Model glTF</comment>
+ <comment xml:lang="oc">modèl glTF</comment>
+ <comment xml:lang="nl">glTF-model</comment>
+ <comment xml:lang="ko">glTF 모델</comment>
+ <comment xml:lang="kk">glTF моделі</comment>
+ <comment xml:lang="ja">glTF モデル</comment>
+ <comment xml:lang="it">Modello glTF</comment>
+ <comment xml:lang="hr">glTF model</comment>
+ <comment xml:lang="he">דגם gITF</comment>
+ <comment xml:lang="gl">Modelo glTF</comment>
+ <comment xml:lang="fi">glTF malli</comment>
+ <comment xml:lang="eu">glTF eredua</comment>
+ <comment xml:lang="es">modelo gITF</comment>
+ <comment xml:lang="en_GB">glTF model</comment>
+ <comment xml:lang="de">glTF-Modell</comment>
+ <comment xml:lang="be">мадэль glTF</comment>
+ <comment xml:lang="ar">نموذج glTF</comment>
+ <acronym>glTF</acronym>
+ <expanded-acronym>GL Transmission Format</expanded-acronym>
+ <generic-icon name="image-x-generic"/>
+ <sub-class-of type="application/json"/>
+ <glob pattern="*.gltf"/>
+ </mime-type>
<mime-type type="model/vrml">
<comment>VRML document</comment>
- <comment xml:lang="ar">مستند VRML</comment>
- <comment xml:lang="ast">Documentu VRML</comment>
- <comment xml:lang="az">VRML sənədi</comment>
- <comment xml:lang="be@latin">Dakument VRML</comment>
- <comment xml:lang="bg">Документ — VRML</comment>
- <comment xml:lang="ca">document VRML</comment>
- <comment xml:lang="cs">dokument VRML</comment>
- <comment xml:lang="cy">Dogfen VRML</comment>
- <comment xml:lang="da">VRML-dokument</comment>
- <comment xml:lang="de">VRML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο VRML</comment>
- <comment xml:lang="en_GB">VRML document</comment>
- <comment xml:lang="eo">VRML-dokumento</comment>
- <comment xml:lang="es">documento VRML</comment>
- <comment xml:lang="eu">VRML dokumentua</comment>
- <comment xml:lang="fi">VRML-asiakirja</comment>
- <comment xml:lang="fo">VRML skjal</comment>
- <comment xml:lang="fr">document VRML</comment>
- <comment xml:lang="ga">cáipéis VRML</comment>
- <comment xml:lang="gl">documento VRML</comment>
- <comment xml:lang="he">מסמך VRML</comment>
- <comment xml:lang="hr">VRML dokument</comment>
- <comment xml:lang="hu">VRML-dokumentum</comment>
- <comment xml:lang="ia">Documento VRML</comment>
- <comment xml:lang="id">Dokumen VRML</comment>
- <comment xml:lang="it">Documento VRML</comment>
- <comment xml:lang="ja">VRML ドキュメント</comment>
- <comment xml:lang="kk">VRML құжаты</comment>
- <comment xml:lang="ko">VRML 문서</comment>
- <comment xml:lang="lt">VRML dokumentas</comment>
- <comment xml:lang="lv">VRML dokuments</comment>
- <comment xml:lang="ms">Dokumen VRML</comment>
- <comment xml:lang="nb">VRML-dokument</comment>
- <comment xml:lang="nl">VRML-document</comment>
- <comment xml:lang="nn">VRML-dokument</comment>
- <comment xml:lang="oc">document VRML</comment>
- <comment xml:lang="pl">Dokument VRML</comment>
- <comment xml:lang="pt">documento VRML</comment>
- <comment xml:lang="pt_BR">Documento VRML</comment>
- <comment xml:lang="ro">Document VRML</comment>
- <comment xml:lang="ru">Документ VRML</comment>
- <comment xml:lang="sk">Dokument VRML</comment>
- <comment xml:lang="sl">Dokument VRML</comment>
- <comment xml:lang="sq">Dokument VRML</comment>
- <comment xml:lang="sr">ВРМЛ документ</comment>
- <comment xml:lang="sv">VRML-dokument</comment>
- <comment xml:lang="tr">VRML belgesi</comment>
- <comment xml:lang="uk">документ VRML</comment>
- <comment xml:lang="vi">Tài liệu VRML</comment>
- <comment xml:lang="zh_CN">VRML 文档</comment>
<comment xml:lang="zh_TW">VRML 文件</comment>
+ <comment xml:lang="zh_CN">VRML 文档</comment>
+ <comment xml:lang="vi">Tài liệu VRML</comment>
+ <comment xml:lang="uk">документ VRML</comment>
+ <comment xml:lang="tr">VRML belgesi</comment>
+ <comment xml:lang="sv">VRML-dokument</comment>
+ <comment xml:lang="sr">ВРМЛ документ</comment>
+ <comment xml:lang="sq">dokument VRML</comment>
+ <comment xml:lang="sl">Dokument VRML</comment>
+ <comment xml:lang="si">VRML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument VRML</comment>
+ <comment xml:lang="ru">Документ VRML</comment>
+ <comment xml:lang="ro">Document VRML</comment>
+ <comment xml:lang="pt_BR">Documento VRML</comment>
+ <comment xml:lang="pt">documento VRML</comment>
+ <comment xml:lang="pl">Dokument VRML</comment>
+ <comment xml:lang="oc">document VRML</comment>
+ <comment xml:lang="nn">VRML-dokument</comment>
+ <comment xml:lang="nl">VRML-document</comment>
+ <comment xml:lang="nb">VRML-dokument</comment>
+ <comment xml:lang="ms">Dokumen VRML</comment>
+ <comment xml:lang="lv">VRML dokuments</comment>
+ <comment xml:lang="lt">VRML dokumentas</comment>
+ <comment xml:lang="ko">VRML 문서</comment>
+ <comment xml:lang="kk">VRML құжаты</comment>
+ <comment xml:lang="ja">VRML ドキュメント</comment>
+ <comment xml:lang="it">Documento VRML</comment>
+ <comment xml:lang="is">VRML skjal</comment>
+ <comment xml:lang="id">Dokumen VRML</comment>
+ <comment xml:lang="ia">Documento VRML</comment>
+ <comment xml:lang="hu">VRML-dokumentum</comment>
+ <comment xml:lang="hr">VRML dokument</comment>
+ <comment xml:lang="he">מסמך VRML</comment>
+ <comment xml:lang="gl">documento VRML</comment>
+ <comment xml:lang="ga">cáipéis VRML</comment>
+ <comment xml:lang="fur">document VRML</comment>
+ <comment xml:lang="fr">document VRML</comment>
+ <comment xml:lang="fo">VRML skjal</comment>
+ <comment xml:lang="fi">VRML-asiakirja</comment>
+ <comment xml:lang="eu">VRML dokumentua</comment>
+ <comment xml:lang="es">documento VRML</comment>
+ <comment xml:lang="eo">VRML-dokumento</comment>
+ <comment xml:lang="en_GB">VRML document</comment>
+ <comment xml:lang="el">Έγγραφο VRML</comment>
+ <comment xml:lang="de">VRML-Dokument</comment>
+ <comment xml:lang="da">VRML-dokument</comment>
+ <comment xml:lang="cy">Dogfen VRML</comment>
+ <comment xml:lang="cs">dokument VRML</comment>
+ <comment xml:lang="ca">document VRML</comment>
+ <comment xml:lang="bg">Документ — VRML</comment>
+ <comment xml:lang="be@latin">Dakument VRML</comment>
+ <comment xml:lang="be">дакумент VRML</comment>
+ <comment xml:lang="az">VRML sənədi</comment>
+ <comment xml:lang="ast">Documentu VRML</comment>
+ <comment xml:lang="ar">مستند VRML</comment>
+ <comment xml:lang="af">VRML-dokument</comment>
<acronym>VRML</acronym>
<expanded-acronym>Virtual Reality Modeling Language</expanded-acronym>
<generic-icon name="x-office-document"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="#VRML " type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#VRML " offset="0"/>
</magic>
<glob pattern="*.vrm"/>
<glob pattern="*.vrml"/>
<glob pattern="*.wrl"/>
</mime-type>
+ <mime-type type="model/obj">
+ <comment>OBJ 3D model</comment>
+ <comment xml:lang="zh_CN">OBJ 3D 模型</comment>
+ <comment xml:lang="uk">просторова модель OBJ</comment>
+ <comment xml:lang="tr">OBJ 3B modeli</comment>
+ <comment xml:lang="sv">OBJ-3D-modell</comment>
+ <comment xml:lang="sl">3D-model OBJ</comment>
+ <comment xml:lang="si">OBJ 3D ආකෘතිය</comment>
+ <comment xml:lang="ru">OBJ 3D-модель</comment>
+ <comment xml:lang="pt_BR">Modelo OBJ 3D</comment>
+ <comment xml:lang="pl">Model 3D OBJ</comment>
+ <comment xml:lang="oc">modèl OBJ 3D</comment>
+ <comment xml:lang="nl">OBJ 3D-model</comment>
+ <comment xml:lang="ko">OBJ 3D 모델</comment>
+ <comment xml:lang="kk">OBJ 3D моделі</comment>
+ <comment xml:lang="ja">OBJ 3D モデル</comment>
+ <comment xml:lang="it">Modello OBJ 3D</comment>
+ <comment xml:lang="hr">OBJ 3D model</comment>
+ <comment xml:lang="gl">Modelo OBJ 3D</comment>
+ <comment xml:lang="fi">OBJ 3D-malli</comment>
+ <comment xml:lang="eu">OBJ 3D eredua</comment>
+ <comment xml:lang="es">modelo OBJ 3D</comment>
+ <comment xml:lang="en_GB">OBJ 3D model</comment>
+ <comment xml:lang="de">OBJ-3D-Modell</comment>
+ <comment xml:lang="be">мадэль OBJ 3D</comment>
+ <comment xml:lang="ar">نموذج OBJ 3D</comment>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="image-x-generic"/>
+ <magic>
+ <match type="string" value=" OBJ File: '" offset="0:64"/>
+ <match type="string" value="mtllib " offset="0:256"/>
+ </magic>
+ <glob pattern="*.obj"/>
+ </mime-type>
+ <mime-type type="model/mtl">
+ <comment>OBJ 3D model material library</comment>
+ <comment xml:lang="uk">бібліотека матеріалів просторової моделі OBJ</comment>
+ <comment xml:lang="tr">OBJ 3B modeli malzeme kitaplığı</comment>
+ <comment xml:lang="sv">Materialbibliotek för OBJ 3D-modell</comment>
+ <comment xml:lang="sl">Knjižnica materialov 3D-modelov OBJ</comment>
+ <comment xml:lang="si">OBJ 3D ආදර්ශ ද්රව්ය පුස්තකාලය</comment>
+ <comment xml:lang="ru">Библиотека материалов OBJ 3D-модели</comment>
+ <comment xml:lang="pl">Biblioteka materiałów modeli 3D OBJ</comment>
+ <comment xml:lang="nl">OBJ-3D-model-materiaal­bibliotheek</comment>
+ <comment xml:lang="ko">OBJ 3D 모델 실체 라이브러리</comment>
+ <comment xml:lang="kk">OBJ 3D-моделінің материалдар кітапханасы</comment>
+ <comment xml:lang="ja">OBJ 3D モデルマテリアルライブラリー</comment>
+ <comment xml:lang="it">Modello libreria materiale OBJ 3D</comment>
+ <comment xml:lang="hr">OBJ 3D model biblioteka materijala</comment>
+ <comment xml:lang="fi">OBJ 3D-mallin materiaalikirjasto</comment>
+ <comment xml:lang="es">biblioteca de modelo material OBJ 3D</comment>
+ <comment xml:lang="en_GB">OBJ 3D model material library</comment>
+ <comment xml:lang="de">OBJ-3D-Modell-Materialbibliothek</comment>
+ <comment xml:lang="be">бібліятэка матэрыялаў мадэлі OBJ 3D</comment>
+ <comment xml:lang="ar">مكتبة المواد النموذجية OBJ 3D</comment>
+ <generic-icon name="image-x-generic"/>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="# Blender MTL File: '" offset="0"/>
+ <match type="string" value="newmtl " offset="0:256"/>
+ </magic>
+ <glob pattern="*.mtl"/>
+ </mime-type>
<mime-type type="multipart/alternative">
- <comment>message in several formats</comment>
- <comment xml:lang="ar">رسالة في عدة صيغ</comment>
- <comment xml:lang="az">verici formatlarında ismarış</comment>
- <comment xml:lang="be@latin">paviedamleńnie ŭ niekalkich farmatach</comment>
- <comment xml:lang="bg">Съобщение в няколко формата</comment>
- <comment xml:lang="ca">missatge en diversos formats</comment>
- <comment xml:lang="cs">zpráva v několika formátech</comment>
- <comment xml:lang="cy">neges mewn sawl fformat</comment>
- <comment xml:lang="da">meddelelse i flere formater</comment>
- <comment xml:lang="de">Nachricht in mehreren Formaten</comment>
- <comment xml:lang="el">Μήνυμα σε διάφορες μορφές</comment>
- <comment xml:lang="en_GB">message in several formats</comment>
- <comment xml:lang="eo">mesaĝo en pluraj formatoj</comment>
- <comment xml:lang="es">mensaje en varios formatos</comment>
- <comment xml:lang="eu">hainbat formatuko mezua</comment>
- <comment xml:lang="fi">viesti useissa muodoissa</comment>
- <comment xml:lang="fo">boð í fleiri sniðum</comment>
- <comment xml:lang="fr">message en formats divers</comment>
- <comment xml:lang="ga">teachtaireacht i bhformáidí éagsúla</comment>
- <comment xml:lang="gl">mensaxe en varios formatos</comment>
- <comment xml:lang="he">הודעה במספר תבניות</comment>
- <comment xml:lang="hr">Poruka u nekoliko oblika</comment>
- <comment xml:lang="hu">többféle formátumú üzenet</comment>
- <comment xml:lang="ia">Message in plure formatos</comment>
- <comment xml:lang="id">pesan dalam beberapa format</comment>
- <comment xml:lang="it">Messaggio in diversi formati</comment>
- <comment xml:lang="ja">いくつかの形式でのメッセージ</comment>
- <comment xml:lang="kk">бірнеше пішімдегі мәлімдеме</comment>
- <comment xml:lang="ko">여러가지 형식의 메시지</comment>
- <comment xml:lang="lt">laiškas keletu formatų</comment>
- <comment xml:lang="lv">ziņojums dažādos formātos</comment>
- <comment xml:lang="ms">Mesej dalam beberapa format</comment>
- <comment xml:lang="nb">melding i flere formater</comment>
- <comment xml:lang="nl">bericht in meerdere opmaken</comment>
- <comment xml:lang="nn">melding i fleire format</comment>
- <comment xml:lang="oc">messatge en formats divèrses</comment>
- <comment xml:lang="pl">Wiadomość w wielu formatach</comment>
- <comment xml:lang="pt">mensagem em vários formatos</comment>
- <comment xml:lang="pt_BR">Mensagem em vários formatos</comment>
- <comment xml:lang="ro">mesaj în diferite formate</comment>
- <comment xml:lang="ru">Сообщение в нескольких форматах</comment>
- <comment xml:lang="sk">Správa v niekoľkých formátoch</comment>
- <comment xml:lang="sl">sporočilo v več zapisih</comment>
- <comment xml:lang="sq">Mesazh në formate të ndryshëm</comment>
- <comment xml:lang="sr">порука у неколико записа</comment>
- <comment xml:lang="sv">meddelande i flera format</comment>
- <comment xml:lang="tr">farklı biçimlerde ileti</comment>
+ <comment>Message in several formats</comment>
<comment xml:lang="uk">повідомлення у кількох форматах</comment>
- <comment xml:lang="vi">thông điệp có vài định dạng</comment>
- <comment xml:lang="zh_CN">各种格式的信件</comment>
- <comment xml:lang="zh_TW">多種格式的訊息</comment>
+ <comment xml:lang="sv">Meddelande i flera format</comment>
+ <comment xml:lang="ru">Сообщение в нескольких форматах</comment>
+ <comment xml:lang="pl">Wiadomość w wielu formatach</comment>
+ <comment xml:lang="it">Messaggio in diversi formati</comment>
+ <comment xml:lang="es">mensaje en varios formatos</comment>
+ <comment xml:lang="de">Nachricht in verschiedenen Formaten</comment>
+ <comment xml:lang="be">паведамленне ў некалькіх фарматах</comment>
</mime-type>
<mime-type type="multipart/appledouble">
<comment>Macintosh AppleDouble-encoded file</comment>
- <comment xml:lang="ar">ملف Macintosh AppleDouble مشفر</comment>
- <comment xml:lang="az">Macintosh AppleDouble-kodlanmış fayl</comment>
- <comment xml:lang="be@latin">Fajł Macintosh, AppleDouble-zakadavany</comment>
- <comment xml:lang="bg">Файл — кодиран с Macintosh AppleDouble</comment>
- <comment xml:lang="ca">fitxer codificat AppleDouble de Macintosh</comment>
- <comment xml:lang="cs">soubor kódovaný pomocí Macintosh AppleDouble</comment>
- <comment xml:lang="cy">Ffeil AppleDouble-amgodedig Macintosh</comment>
- <comment xml:lang="da">Macintosh AppleDouble-kodet fil</comment>
- <comment xml:lang="de">Macintosh-Datei (AppleDouble-kodiert)</comment>
- <comment xml:lang="el">Αρχείο Macintosh κωδικοποίησης AppleDouble</comment>
- <comment xml:lang="en_GB">Macintosh AppleDouble-encoded file</comment>
- <comment xml:lang="eo">dosiero kodigita laŭ Macintosh AppleDouble</comment>
- <comment xml:lang="es">archivo Macintosh codificado con AppleDouble</comment>
- <comment xml:lang="eu">Macintosh AppleDouble-rekin kodetutako fitxategia</comment>
- <comment xml:lang="fi">Macintosh AppleDouble -koodattu tiedosto</comment>
- <comment xml:lang="fo">Macintosh AppleDouble-bronglað fíla</comment>
- <comment xml:lang="fr">fichier codé Macintosh AppleDouble</comment>
- <comment xml:lang="ga">comhad ionchódaithe le Macintosh AppleDouble</comment>
- <comment xml:lang="gl">ficheiro de Macintosh codificado con AppleDouble</comment>
- <comment xml:lang="he">קובץ מסוג Macintosh AppleDouble-encoded</comment>
- <comment xml:lang="hr">Macintosh AppleDouble-kodirana datoteka</comment>
- <comment xml:lang="hu">Macintosh AppleDouble kódolású fájl</comment>
- <comment xml:lang="ia">File codificate in AppleDouble de Macintosh</comment>
- <comment xml:lang="id">Berkas tersandi Macintosh AppleDouble</comment>
- <comment xml:lang="it">File Macintosh codificato AppleDouble</comment>
- <comment xml:lang="ja">Macintosh AppleDouble エンコードファイル</comment>
- <comment xml:lang="kk">Macintosh AppleDouble кодталған файлы</comment>
- <comment xml:lang="ko">매킨토시 AppleDouble 인코딩된 파일</comment>
- <comment xml:lang="lt">Macintosh AppleDouble-encoded failas</comment>
- <comment xml:lang="lv">Macintosh AppleDouble-kodēts datne</comment>
- <comment xml:lang="ms">Fail terenkod-AppleDouble Macintosh</comment>
- <comment xml:lang="nb">dokument kodet med Macintosh AppleDouble</comment>
- <comment xml:lang="nl">Macintosh AppleDouble-gecodeerd bestand</comment>
- <comment xml:lang="nn">Macintosh AppleDouble-koda fil</comment>
- <comment xml:lang="oc">fichièr encodat Macintosh AppleDouble</comment>
- <comment xml:lang="pl">Zakodowany w AppleDouble plik Macintosh</comment>
- <comment xml:lang="pt">ficheiro codificado em AppleDouble de Macintosh</comment>
- <comment xml:lang="pt_BR">Arquivo do Macintosh codificado com AppleDouble</comment>
- <comment xml:lang="ro">Fișier codat Macintosh AppleDouble</comment>
- <comment xml:lang="ru">Файл, закодированный Macintosh AppleDouble</comment>
- <comment xml:lang="sk">Súbor kódovaný pomocou Macintosh AppleDouble</comment>
- <comment xml:lang="sl">Kodirana datoteka Macintosh (AppleDouble)</comment>
- <comment xml:lang="sq">File Macintosh i kodifikuar AppleDouble</comment>
- <comment xml:lang="sr">Мекинтошова датотека кодирана Епл Дуплим</comment>
- <comment xml:lang="sv">Macintosh AppleDouble-kodad fil</comment>
- <comment xml:lang="tr">Macintosh AppleDouble-şifreli dosyası</comment>
- <comment xml:lang="uk">файл закодований Macintosh AppleDouble</comment>
- <comment xml:lang="vi">Tập tin đã mã hoá Apple-Double của Macintosh</comment>
- <comment xml:lang="zh_CN">Macintosh AppleDouble 编码的文件</comment>
<comment xml:lang="zh_TW">Macintosh AppleDouble 編碼檔</comment>
+ <comment xml:lang="zh_CN">Macintosh AppleDouble 编码的文件</comment>
+ <comment xml:lang="vi">Tập tin đã mã hoá Apple-Double của Macintosh</comment>
+ <comment xml:lang="uk">файл закодований Macintosh AppleDouble</comment>
+ <comment xml:lang="tr">Macintosh AppleDouble-şifreli dosyası</comment>
+ <comment xml:lang="sv">Macintosh AppleDouble-kodad fil</comment>
+ <comment xml:lang="sr">Мекинтошова датотека кодирана Епл Дуплим</comment>
+ <comment xml:lang="sq">kartelë Macintosh koduar me AppleDouble</comment>
+ <comment xml:lang="sl">Kodirana datoteka Macintosh (AppleDouble)</comment>
+ <comment xml:lang="si">Macintosh AppleDouble-කේතනය කළ ගොනුව</comment>
+ <comment xml:lang="sk">Súbor kódovaný pomocou Macintosh AppleDouble</comment>
+ <comment xml:lang="ru">Файл, закодированный Macintosh AppleDouble</comment>
+ <comment xml:lang="ro">Fișier codat Macintosh AppleDouble</comment>
+ <comment xml:lang="pt_BR">Arquivo do Macintosh codificado com AppleDouble</comment>
+ <comment xml:lang="pt">ficheiro codificado em AppleDouble de Macintosh</comment>
+ <comment xml:lang="pl">Zakodowany w AppleDouble plik Macintosh</comment>
+ <comment xml:lang="oc">fichièr encodat Macintosh AppleDouble</comment>
+ <comment xml:lang="nn">Macintosh AppleDouble-koda fil</comment>
+ <comment xml:lang="nl">Macintosh AppleDouble-gecodeerd bestand</comment>
+ <comment xml:lang="nb">dokument kodet med Macintosh AppleDouble</comment>
+ <comment xml:lang="ms">Fail terenkod-AppleDouble Macintosh</comment>
+ <comment xml:lang="lv">Macintosh AppleDouble-kodēts datne</comment>
+ <comment xml:lang="lt">Macintosh AppleDouble-encoded failas</comment>
+ <comment xml:lang="ko">매킨토시 AppleDouble 인코딩된 파일</comment>
+ <comment xml:lang="kk">Macintosh AppleDouble кодталған файлы</comment>
+ <comment xml:lang="ja">Macintosh AppleDouble エンコードファイル</comment>
+ <comment xml:lang="it">File Macintosh codificato AppleDouble</comment>
+ <comment xml:lang="is">Macintosh AppleDouble-kóðuð skrá</comment>
+ <comment xml:lang="id">Berkas tersandi Macintosh AppleDouble</comment>
+ <comment xml:lang="ia">File codificate in AppleDouble de Macintosh</comment>
+ <comment xml:lang="hu">Macintosh AppleDouble kódolású fájl</comment>
+ <comment xml:lang="hr">Macintosh AppleDouble-kôdirana datoteka</comment>
+ <comment xml:lang="he">קובץ מסוג Macintosh AppleDouble-encoded</comment>
+ <comment xml:lang="gl">ficheiro de Macintosh codificado con AppleDouble</comment>
+ <comment xml:lang="ga">comhad ionchódaithe le Macintosh AppleDouble</comment>
+ <comment xml:lang="fur">file codificât in Macintosh AppleDouble</comment>
+ <comment xml:lang="fr">fichier codé Macintosh AppleDouble</comment>
+ <comment xml:lang="fo">Macintosh AppleDouble-bronglað fíla</comment>
+ <comment xml:lang="fi">Macintosh AppleDouble -koodattu tiedosto</comment>
+ <comment xml:lang="eu">Macintosh AppleDouble-rekin kodetutako fitxategia</comment>
+ <comment xml:lang="es">archivo Macintosh codificado con AppleDouble</comment>
+ <comment xml:lang="eo">dosiero kodigita laŭ Macintosh AppleDouble</comment>
+ <comment xml:lang="en_GB">Macintosh AppleDouble-encoded file</comment>
+ <comment xml:lang="el">Αρχείο Macintosh κωδικοποίησης AppleDouble</comment>
+ <comment xml:lang="de">Macintosh-Datei (AppleDouble-Format)</comment>
+ <comment xml:lang="da">Macintosh AppleDouble-kodet fil</comment>
+ <comment xml:lang="cy">Ffeil AppleDouble-amgodedig Macintosh</comment>
+ <comment xml:lang="cs">soubor kódovaný pomocí Macintosh AppleDouble</comment>
+ <comment xml:lang="ca">fitxer codificat AppleDouble de Macintosh</comment>
+ <comment xml:lang="bg">Файл — кодиран с Macintosh AppleDouble</comment>
+ <comment xml:lang="be@latin">Fajł Macintosh, AppleDouble-zakadavany</comment>
+ <comment xml:lang="be">файл з кадаваннем Macintosh AppleDouble</comment>
+ <comment xml:lang="az">Macintosh AppleDouble-kodlanmış fayl</comment>
+ <comment xml:lang="ar">ملف Macintosh AppleDouble مشفر</comment>
+ <comment xml:lang="af">Macintosh AppleDouble-geënkodeerde lêer</comment>
</mime-type>
<mime-type type="multipart/digest">
- <comment>message digest</comment>
- <comment xml:lang="ar">خلاصة الرسالة</comment>
- <comment xml:lang="az">ismarış daycesti</comment>
- <comment xml:lang="be@latin">digest paviedamleńniaŭ</comment>
- <comment xml:lang="bg">Извадка от съобщение</comment>
- <comment xml:lang="ca">recopilació de missatges</comment>
- <comment xml:lang="cs">přehled zpráv</comment>
- <comment xml:lang="cy">crynodeb negeseuon</comment>
- <comment xml:lang="da">meddelelsessammendrag</comment>
- <comment xml:lang="de">Nachrichtensammlung</comment>
- <comment xml:lang="el">Περίληψη μηνύματος</comment>
- <comment xml:lang="en_GB">message digest</comment>
- <comment xml:lang="eo">mesaĝaro</comment>
- <comment xml:lang="es">recopilación de mensajes</comment>
- <comment xml:lang="eu">mezu laburra</comment>
- <comment xml:lang="fi">viestikokoelma</comment>
- <comment xml:lang="fo">boð samandráttur</comment>
- <comment xml:lang="fr">condensé de message</comment>
- <comment xml:lang="ga">achoimre theachtaireachtaí</comment>
- <comment xml:lang="gl">recompilación de mensaxe</comment>
- <comment xml:lang="he">תקציר ההודעה</comment>
- <comment xml:lang="hr">Poruka kratkg sadržaja</comment>
- <comment xml:lang="hu">ömlesztett üzenet</comment>
- <comment xml:lang="ia">Digesto de messages</comment>
- <comment xml:lang="id">digest pesan</comment>
- <comment xml:lang="it">Digest di messaggi</comment>
- <comment xml:lang="ja">メッセージダイジェスト</comment>
- <comment xml:lang="kk">мәлімдеме профилі</comment>
- <comment xml:lang="ko">메시지 묶음</comment>
- <comment xml:lang="lt">laiškų santrauka</comment>
- <comment xml:lang="lv">ziņojumu apkopojums</comment>
- <comment xml:lang="ms">Jilid mesej</comment>
- <comment xml:lang="nb">medldingssamling</comment>
- <comment xml:lang="nl">berichtenbundel</comment>
- <comment xml:lang="nn">meldingsamandrag</comment>
- <comment xml:lang="oc">condensé de messatge</comment>
- <comment xml:lang="pl">Wiadomość przetwarzania</comment>
- <comment xml:lang="pt">grupo de mensagens</comment>
- <comment xml:lang="pt_BR">Resumo de mensagem</comment>
- <comment xml:lang="ro">colecție mesaje email</comment>
+ <comment>Message digest</comment>
+ <comment xml:lang="uk">контрольна сума повідомлення</comment>
+ <comment xml:lang="sv">Meddelandesamling</comment>
<comment xml:lang="ru">Дайджест сообщения</comment>
- <comment xml:lang="sk">Prehľad správ</comment>
- <comment xml:lang="sl">povzetek sporočila</comment>
- <comment xml:lang="sq">Shpërndarje mesazhesh</comment>
- <comment xml:lang="sr">гомила порука</comment>
- <comment xml:lang="sv">meddelandesamling</comment>
- <comment xml:lang="tr">mesaj özeti</comment>
- <comment xml:lang="uk">збірка повідомлень</comment>
- <comment xml:lang="vi">bản tóm tắt thông điệp</comment>
- <comment xml:lang="zh_CN">信件摘要</comment>
- <comment xml:lang="zh_TW">訊息摘要</comment>
+ <comment xml:lang="pl">Wiadomość przetwarzania</comment>
+ <comment xml:lang="it">Digest di messaggi</comment>
+ <comment xml:lang="es">resumen de mensajes</comment>
+ <comment xml:lang="de">Nachrichtensammlung</comment>
+ <comment xml:lang="be">дайджэст паведамлення</comment>
</mime-type>
<mime-type type="multipart/encrypted">
- <comment>encrypted message</comment>
- <comment xml:lang="ar">رسالة مشفرة</comment>
- <comment xml:lang="az">şifrələnmiş ismarış</comment>
- <comment xml:lang="be@latin">zašyfravanaje paviedamleńnie</comment>
- <comment xml:lang="bg">Шифрирано съобщение</comment>
- <comment xml:lang="ca">missatge xifrat</comment>
- <comment xml:lang="cs">zašifrovaná zpráva</comment>
- <comment xml:lang="cy">Neges wedi ei hamgryptio</comment>
- <comment xml:lang="da">krypteret meddelelse</comment>
- <comment xml:lang="de">Verschlüsselte Nachricht</comment>
- <comment xml:lang="el">Κρυπτογραφημένο μήνυμα</comment>
- <comment xml:lang="en_GB">encrypted message</comment>
- <comment xml:lang="eo">ĉifrita mesaĝo</comment>
- <comment xml:lang="es">mensaje cifrado</comment>
- <comment xml:lang="eu">mezu enkriptatua</comment>
- <comment xml:lang="fi">salattu viesti</comment>
- <comment xml:lang="fo">bronglað boð</comment>
- <comment xml:lang="fr">message chiffré</comment>
- <comment xml:lang="ga">teachtaireacht chriptithe</comment>
- <comment xml:lang="gl">mensaxe cifrado</comment>
- <comment xml:lang="he">הודעה מוצפנת</comment>
- <comment xml:lang="hr">Šifrirana poruka</comment>
- <comment xml:lang="hu">titkosított üzenet</comment>
- <comment xml:lang="ia">Message cryptate</comment>
- <comment xml:lang="id">pesan terenkripsi</comment>
- <comment xml:lang="it">Messaggio cifrato</comment>
- <comment xml:lang="ja">暗号化メッセージ</comment>
- <comment xml:lang="kk">шифрленген мәлімдеме</comment>
- <comment xml:lang="ko">암호화된 메시지</comment>
- <comment xml:lang="lt">užšifruotas laiškas</comment>
- <comment xml:lang="lv">šifrēta vēstule</comment>
- <comment xml:lang="ms">Mesej terenkripsi</comment>
- <comment xml:lang="nb">kryptert melding</comment>
- <comment xml:lang="nl">versleuteld bericht</comment>
- <comment xml:lang="nn">kryptert melding</comment>
- <comment xml:lang="oc">messatge chifrat</comment>
- <comment xml:lang="pl">Wiadomość zaszyfrowana</comment>
- <comment xml:lang="pt">mensagem encriptada</comment>
- <comment xml:lang="pt_BR">Mensagem criptografada</comment>
- <comment xml:lang="ro">mesaj criptat</comment>
+ <comment>Encrypted message</comment>
+ <comment xml:lang="uk">зашифроване повідомлення</comment>
+ <comment xml:lang="sv">Krypterat meddelande</comment>
<comment xml:lang="ru">Зашифрованное сообщение</comment>
- <comment xml:lang="sk">Zašifrovaná správa</comment>
- <comment xml:lang="sl">šifrirano sporočilo</comment>
- <comment xml:lang="sq">Mesazh i kriptuar</comment>
- <comment xml:lang="sr">шифрована порука</comment>
- <comment xml:lang="sv">krypterat meddelande</comment>
- <comment xml:lang="tr">şifrelenmiş mesaj</comment>
- <comment xml:lang="uk">шифроване повідомлення</comment>
- <comment xml:lang="vi">thông điệp đã mật mã</comment>
- <comment xml:lang="zh_CN">加密信件</comment>
- <comment xml:lang="zh_TW">加密訊息</comment>
+ <comment xml:lang="pl">Wiadomość zaszyfrowana</comment>
+ <comment xml:lang="it">Messaggio cifrato</comment>
+ <comment xml:lang="es">mensaje cifrado</comment>
+ <comment xml:lang="de">Verschlüsselte Nachricht</comment>
+ <comment xml:lang="be">зашыфраванае паведамленне</comment>
</mime-type>
<mime-type type="multipart/mixed">
- <comment>compound documents</comment>
- <comment xml:lang="ar">مستندات مركبة</comment>
- <comment xml:lang="ast">documentos compuestos</comment>
- <comment xml:lang="be@latin">składanyja dakumenty</comment>
- <comment xml:lang="bg">Съставни документи</comment>
- <comment xml:lang="ca">documents compostos</comment>
- <comment xml:lang="cs">složené dokumenty</comment>
- <comment xml:lang="da">sammensatte dokumenter</comment>
- <comment xml:lang="de">Verbunddokumente</comment>
- <comment xml:lang="el">Σύνθετα έγγραφα</comment>
- <comment xml:lang="en_GB">compound documents</comment>
- <comment xml:lang="eo">parentezaj dokumentoj</comment>
- <comment xml:lang="es">documentos compuestos</comment>
- <comment xml:lang="eu">konposatutako dokumentuak</comment>
- <comment xml:lang="fi">yhdisteasiakirjat</comment>
- <comment xml:lang="fo">samansett skjøl</comment>
- <comment xml:lang="fr">documents composés</comment>
- <comment xml:lang="ga">cáipéisí comhshuite</comment>
- <comment xml:lang="gl">documentos compostos</comment>
- <comment xml:lang="he">מסמכים מורכבים</comment>
- <comment xml:lang="hr">Složeni dokumenti</comment>
- <comment xml:lang="hu">összetett dokumentumok</comment>
- <comment xml:lang="ia">Documentos composite</comment>
- <comment xml:lang="id">dokumen kompon</comment>
- <comment xml:lang="it">Documenti composti</comment>
- <comment xml:lang="ja">複合ドキュメント</comment>
- <comment xml:lang="kk">құрама құжаттары</comment>
- <comment xml:lang="ko">복합 문서</comment>
- <comment xml:lang="lt">sudurtiniai dokumentai</comment>
- <comment xml:lang="lv">salikti dokumenti</comment>
- <comment xml:lang="ms">Dokumen halaman</comment>
- <comment xml:lang="nb">sammensatte dokumenter</comment>
- <comment xml:lang="nl">samengestelde documenten</comment>
- <comment xml:lang="nn">samansette dokument</comment>
- <comment xml:lang="oc">documents compausats</comment>
- <comment xml:lang="pl">Dokumenty złożone</comment>
- <comment xml:lang="pt">documentos compostos</comment>
- <comment xml:lang="pt_BR">Documentos compostos</comment>
- <comment xml:lang="ro">documente compuse</comment>
- <comment xml:lang="ru">Составные документы</comment>
- <comment xml:lang="sk">Zložené dokumenty</comment>
- <comment xml:lang="sl">združeni dokumenti</comment>
- <comment xml:lang="sq">dokumente të përbërë</comment>
- <comment xml:lang="sr">сједињени документи</comment>
- <comment xml:lang="sv">sammansatta dokument</comment>
- <comment xml:lang="tr">birleşik belgeleri</comment>
+ <comment>Compound documents</comment>
<comment xml:lang="uk">складні документи</comment>
- <comment xml:lang="vi">tài liệu ghép</comment>
- <comment xml:lang="zh_CN">组合文档</comment>
- <comment xml:lang="zh_TW">複合文件</comment>
+ <comment xml:lang="sv">Sammansatta dokument</comment>
+ <comment xml:lang="ru">Составные документы</comment>
+ <comment xml:lang="pl">Dokumenty złożone</comment>
+ <comment xml:lang="it">Documenti composti</comment>
+ <comment xml:lang="de">Verbunddokumente</comment>
+ <comment xml:lang="be">складаныя дакументы</comment>
</mime-type>
<mime-type type="multipart/related">
- <comment>compound document</comment>
- <comment xml:lang="ar">مستند مركب</comment>
- <comment xml:lang="ast">documentu compuestu</comment>
- <comment xml:lang="az">birləşik sənəd</comment>
- <comment xml:lang="be@latin">składany dakument</comment>
- <comment xml:lang="bg">Съставен документ</comment>
- <comment xml:lang="ca">document compost</comment>
- <comment xml:lang="cs">složený dokument</comment>
- <comment xml:lang="cy">dogfen gyfansawdd</comment>
- <comment xml:lang="da">sammensat dokument</comment>
- <comment xml:lang="de">Verbunddokument</comment>
- <comment xml:lang="el">Σύνθετο έγγραφο</comment>
- <comment xml:lang="en_GB">compound document</comment>
- <comment xml:lang="eo">parenteza dokumento</comment>
- <comment xml:lang="es">documento compuesto</comment>
- <comment xml:lang="eu">konposatutako dokumentua</comment>
- <comment xml:lang="fi">yhdisteasiakirja</comment>
- <comment xml:lang="fo">samansett skjal</comment>
- <comment xml:lang="fr">document composé</comment>
- <comment xml:lang="ga">cáipéis comhshuite</comment>
- <comment xml:lang="gl">documento composto</comment>
- <comment xml:lang="he">מסמך מורכב</comment>
- <comment xml:lang="hr">Složeni dokument</comment>
- <comment xml:lang="hu">összetett dokumentum</comment>
- <comment xml:lang="ia">Documento composite</comment>
- <comment xml:lang="id">dokumen kompon</comment>
- <comment xml:lang="it">Documento composto</comment>
- <comment xml:lang="ja">複合ドキュメント</comment>
- <comment xml:lang="kk">құрама құжаты</comment>
- <comment xml:lang="ko">복합 문서</comment>
- <comment xml:lang="lt">sudurtinis dokumentas</comment>
- <comment xml:lang="lv">salikts dokuments</comment>
- <comment xml:lang="ms">Dokumen halaman</comment>
- <comment xml:lang="nb">sammensatt dokument</comment>
- <comment xml:lang="nl">samengesteld document</comment>
- <comment xml:lang="nn">samansett dokument</comment>
- <comment xml:lang="oc">document compausat</comment>
- <comment xml:lang="pl">Dokument złożony</comment>
- <comment xml:lang="pt">documento composto</comment>
- <comment xml:lang="pt_BR">Documento composto</comment>
- <comment xml:lang="ro">document compus</comment>
- <comment xml:lang="ru">Составной документ</comment>
- <comment xml:lang="sk">Zložený dokument</comment>
- <comment xml:lang="sl">združeni dokument</comment>
- <comment xml:lang="sq">dokumet i përbërë</comment>
- <comment xml:lang="sr">сједињени документ</comment>
- <comment xml:lang="sv">sammansatt dokument</comment>
- <comment xml:lang="tr">bileşik belge</comment>
+ <comment>Compound document</comment>
<comment xml:lang="uk">складний документ</comment>
- <comment xml:lang="vi">tài liệu ghép</comment>
- <comment xml:lang="zh_CN">组合文档</comment>
- <comment xml:lang="zh_TW">複合文件</comment>
+ <comment xml:lang="sv">Sammansatt dokument</comment>
+ <comment xml:lang="ru">Составной документ</comment>
+ <comment xml:lang="pl">Dokument złożony</comment>
+ <comment xml:lang="it">Documento composto</comment>
+ <comment xml:lang="de">Verbunddokument</comment>
+ <comment xml:lang="be">складаны дакумент</comment>
</mime-type>
<mime-type type="multipart/report">
- <comment>mail system report</comment>
- <comment xml:lang="ar">تقرير نظام البريد</comment>
- <comment xml:lang="az">poçt sistemi raportu</comment>
- <comment xml:lang="be@latin">rapart paštovaj systemy</comment>
- <comment xml:lang="bg">Отчет за пощенската система</comment>
- <comment xml:lang="ca">informe de sistema de correu</comment>
- <comment xml:lang="cs">zpráva poštovního systému</comment>
- <comment xml:lang="cy">adroddiad system bost</comment>
- <comment xml:lang="da">postsystemrapport</comment>
- <comment xml:lang="de">E-Mail-Systembericht</comment>
- <comment xml:lang="el">Αναφορά συστήματος ηλ. ταχυδρομείου</comment>
- <comment xml:lang="en_GB">mail system report</comment>
- <comment xml:lang="eo">raporto de retpoŝta sistemo</comment>
- <comment xml:lang="es">informe del sistema de correo</comment>
- <comment xml:lang="eu">posta sistemako txostena</comment>
- <comment xml:lang="fi">viestijärjestelmän ilmoitus</comment>
- <comment xml:lang="fo">postkervisfrásøgn</comment>
- <comment xml:lang="fr">rapport système de courriels</comment>
- <comment xml:lang="ga">tuairisc chórais r-phoist</comment>
- <comment xml:lang="gl">informe do sistema de correo</comment>
- <comment xml:lang="he">דו״ח של מערכת הדואר</comment>
- <comment xml:lang="hr">Izvještaj sustava pošte</comment>
- <comment xml:lang="hu">levelezőrendszer jelentése</comment>
- <comment xml:lang="ia">Reporto de systema de e-mail</comment>
- <comment xml:lang="id">laporan sistem surat</comment>
- <comment xml:lang="it">Rapporto di sistema posta</comment>
- <comment xml:lang="ja">メールシステムレポート</comment>
- <comment xml:lang="kk">пошта жүйесінің мәлімдемесі</comment>
- <comment xml:lang="ko">메일 시스템 보고서</comment>
- <comment xml:lang="lt">pašto sistemos ataskaita</comment>
- <comment xml:lang="lv">pasta sistēmas atskaite</comment>
- <comment xml:lang="ms">Laporan sistem mel</comment>
- <comment xml:lang="nb">e-postsystemrapport</comment>
- <comment xml:lang="nl">e-mail-systeembericht</comment>
- <comment xml:lang="nn">e-post-systemrapport</comment>
- <comment xml:lang="oc">rapòrt sistèma de corrièrs electronics</comment>
- <comment xml:lang="pl">Raport systemu pocztowego</comment>
- <comment xml:lang="pt">relatório de sistema de email</comment>
- <comment xml:lang="pt_BR">Relatório do sistema de correspondência</comment>
- <comment xml:lang="ro">raport sistem email</comment>
- <comment xml:lang="ru">Отчёт почтовой системы</comment>
- <comment xml:lang="sk">Správa poštového systému</comment>
- <comment xml:lang="sl">poročilo poštnega sistema</comment>
- <comment xml:lang="sq">Raport i sistemit të postës</comment>
- <comment xml:lang="sr">извештај поштанског система</comment>
- <comment xml:lang="sv">e-postsystemrapport</comment>
- <comment xml:lang="tr">posta sistem raporu</comment>
+ <comment>Mail system report</comment>
<comment xml:lang="uk">звіт поштової системи</comment>
- <comment xml:lang="vi">thông báo hệ thống thư</comment>
- <comment xml:lang="zh_CN">邮件系统报告</comment>
- <comment xml:lang="zh_TW">郵件系統回報</comment>
+ <comment xml:lang="sv">E-postsystemrapport</comment>
+ <comment xml:lang="ru">Отчёт почтовой системы</comment>
+ <comment xml:lang="pl">Raport systemu pocztowego</comment>
+ <comment xml:lang="it">Rapporto di sistema posta</comment>
+ <comment xml:lang="de">E-Mail-Systembericht</comment>
+ <comment xml:lang="be">справаздача паштовай сістэмы</comment>
</mime-type>
<mime-type type="multipart/signed">
- <comment>signed message</comment>
- <comment xml:lang="ar">رسالة موقّعة</comment>
- <comment xml:lang="az">imzalanmış ismarış</comment>
- <comment xml:lang="be@latin">padpisanaje paviedamleńnie</comment>
- <comment xml:lang="bg">Подписано съобщение</comment>
- <comment xml:lang="ca">missatge signat</comment>
- <comment xml:lang="cs">podepsaná zpráva</comment>
- <comment xml:lang="cy">neges lofnodwyd</comment>
- <comment xml:lang="da">signeret meddelelse</comment>
- <comment xml:lang="de">Signierte Nachricht</comment>
- <comment xml:lang="el">Υπογεγραμμένο μήνυμα</comment>
- <comment xml:lang="en_GB">signed message</comment>
- <comment xml:lang="eo">pruvita mesaĝo</comment>
- <comment xml:lang="es">mensaje firmado</comment>
- <comment xml:lang="eu">sinatutako mezua</comment>
- <comment xml:lang="fi">allekirjoitettu viesti</comment>
- <comment xml:lang="fo">undirskrivað boð</comment>
- <comment xml:lang="fr">message signé</comment>
- <comment xml:lang="ga">teachtaireacht sínithe</comment>
- <comment xml:lang="gl">mensaxe firmado</comment>
- <comment xml:lang="he">הודעה חתומה</comment>
- <comment xml:lang="hr">Potpisana poruka</comment>
- <comment xml:lang="hu">aláírt üzenet</comment>
- <comment xml:lang="ia">Message signate</comment>
- <comment xml:lang="id">pesan ditandatangani</comment>
- <comment xml:lang="it">Messaggio firmato</comment>
- <comment xml:lang="ja">署名付きメッセージ</comment>
- <comment xml:lang="kk">қолтаңбасы бар мәлімдеме</comment>
- <comment xml:lang="ko">서명된 메시지</comment>
- <comment xml:lang="lt">pasirašytas laiškas</comment>
- <comment xml:lang="lv">parakstīta ziņa</comment>
- <comment xml:lang="ms">Mesej ditandatangani</comment>
- <comment xml:lang="nb">signert melding</comment>
- <comment xml:lang="nl">ondertekend bericht</comment>
- <comment xml:lang="nn">signert melding</comment>
- <comment xml:lang="oc">messatge signat</comment>
- <comment xml:lang="pl">Podpisana wiadomość</comment>
- <comment xml:lang="pt">mensagem assinada</comment>
- <comment xml:lang="pt_BR">Mensagem assinada</comment>
- <comment xml:lang="ro">mesaj semnat</comment>
- <comment xml:lang="ru">Подписанное сообщение</comment>
- <comment xml:lang="sk">Podpísaná správa</comment>
- <comment xml:lang="sl">podpisano sporočilo</comment>
- <comment xml:lang="sq">Mesazh i firmosur</comment>
- <comment xml:lang="sr">потписана порука</comment>
- <comment xml:lang="sv">signerat meddelande</comment>
- <comment xml:lang="tr">imzalı ileti</comment>
+ <comment>Signed message</comment>
<comment xml:lang="uk">підписане повідомлення</comment>
- <comment xml:lang="vi">thông điệp đã ký</comment>
- <comment xml:lang="zh_CN">签名信件</comment>
- <comment xml:lang="zh_TW">簽署的訊息</comment>
+ <comment xml:lang="sv">Signerat meddelande</comment>
+ <comment xml:lang="ru">Подписанное сообщение</comment>
+ <comment xml:lang="pl">Podpisana wiadomość</comment>
+ <comment xml:lang="it">Messaggio firmato</comment>
+ <comment xml:lang="es">mensaje firmado</comment>
+ <comment xml:lang="de">Signierte Nachricht</comment>
+ <comment xml:lang="be">падпісанае паведамленне</comment>
</mime-type>
<mime-type type="multipart/x-mixed-replace">
- <comment>stream of data (server push)</comment>
- <comment xml:lang="ar">دفق بيانات (دفع خادم)</comment>
- <comment xml:lang="be@latin">płyń źviestak (ad servera)</comment>
- <comment xml:lang="bg">Поток от данни, от страна на сървър</comment>
- <comment xml:lang="ca">flux de dades (enviat pel servidor)</comment>
- <comment xml:lang="cs">proud dat (posílaný serverem)</comment>
- <comment xml:lang="da">datastrøm (serverskubbet)</comment>
- <comment xml:lang="de">Datenstrom (Server-Push)</comment>
- <comment xml:lang="el">Ροή δεδομένων (στελλόμενα από διακομιστή)</comment>
- <comment xml:lang="en_GB">stream of data (server push)</comment>
- <comment xml:lang="eo">datumstrio (puŝata per servilo)</comment>
- <comment xml:lang="es">flujo de datos (por iniciativa del servidor)</comment>
- <comment xml:lang="eu">datu-korrontea (zerbitzari igortzailea)</comment>
- <comment xml:lang="fi">tietovirta (palvelin työntää)</comment>
- <comment xml:lang="fo">streymur av dáta (ambætara skump)</comment>
- <comment xml:lang="fr">flux de données (émis par le serveur)</comment>
- <comment xml:lang="ga">sruth sonraí (brú freastalaí)</comment>
- <comment xml:lang="gl">fluxo de datos (por iniciativa do servidor)</comment>
- <comment xml:lang="he">מידע בזרימה (דחיפה ע״י השרת)</comment>
- <comment xml:lang="hr">Strujanje podataka (poslužiteljem pogurano)</comment>
- <comment xml:lang="hu">sugárzott adatfolyam (kiszolgálóról)</comment>
- <comment xml:lang="ia">Fluxo de datos (pulsate per servitor)</comment>
- <comment xml:lang="id">arus data (dorongan server)</comment>
- <comment xml:lang="it">Flusso di dati (server push)</comment>
- <comment xml:lang="ja">データストリーム (サーバープッシュ型)</comment>
- <comment xml:lang="kk">мәліметтер ағымы (server push)</comment>
- <comment xml:lang="ko">데이터 스트림(서버 푸시)</comment>
- <comment xml:lang="lt">duomenų srautas (iš serverio)</comment>
- <comment xml:lang="lv">datu straume (servera grūsta)</comment>
- <comment xml:lang="ms">Aliran dara (paksaan pelayan)</comment>
- <comment xml:lang="nb">datastrøm (server push)</comment>
- <comment xml:lang="nl">gegevensstroom (server duwt)</comment>
- <comment xml:lang="nn">datastraum (dytta av tenaren)</comment>
- <comment xml:lang="oc">flux de donadas (emés pel servidor)</comment>
- <comment xml:lang="pl">Strumień danych (wymuszenie serwera)</comment>
- <comment xml:lang="pt">fluxo de dados (empurrados pelo servidor)</comment>
- <comment xml:lang="pt_BR">Fluxo de dados (por iniciativa do servidor)</comment>
- <comment xml:lang="ro">flux de date (de la server)</comment>
- <comment xml:lang="ru">Поток данных (server push)</comment>
- <comment xml:lang="sk">Prúd dát (posielaný serverom)</comment>
- <comment xml:lang="sl">pretok podatkov (strežniški)</comment>
- <comment xml:lang="sq">Fluks me të dhëna (server push)</comment>
- <comment xml:lang="sr">ток података (гурање са сервера)</comment>
- <comment xml:lang="sv">dataflöde (serverutsändning)</comment>
- <comment xml:lang="tr">veri akışı (sunucudan gönderilen)</comment>
+ <comment>Stream of data (server push)</comment>
<comment xml:lang="uk">потік даних (від сервера)</comment>
- <comment xml:lang="vi">luồng dữ liệu (trình phục vụ đẩy)</comment>
- <comment xml:lang="zh_CN">数据流(服务器推送)</comment>
- <comment xml:lang="zh_TW">資料串流 (server push)</comment>
+ <comment xml:lang="sv">Dataflöde (serverutsändning)</comment>
+ <comment xml:lang="ru">Поток данных (server push)</comment>
+ <comment xml:lang="pl">Strumień danych (wymuszenie serwera)</comment>
+ <comment xml:lang="it">Flusso di dati (server push)</comment>
+ <comment xml:lang="de">Datenstrom (Server-Push)</comment>
+ <comment xml:lang="be">плынь даных (ад сервера)</comment>
</mime-type>
<mime-type type="text/calendar">
<comment>VCS/ICS calendar</comment>
- <comment xml:lang="ar">سجل VCS/ICS</comment>
- <comment xml:lang="be@latin">Kalandar VCS/ICS</comment>
- <comment xml:lang="bg">Календар — VCS/ICS</comment>
- <comment xml:lang="ca">calendari VCS/ICS</comment>
- <comment xml:lang="cs">kalendář VCS/ICS</comment>
- <comment xml:lang="da">VCS/ICS-kalender</comment>
- <comment xml:lang="de">VCS/ICS-Kalender</comment>
- <comment xml:lang="el">Ημερολόγιο VCS/ICS</comment>
- <comment xml:lang="en_GB">VCS/ICS calendar</comment>
- <comment xml:lang="eo">VCS/ICS-kalendaro</comment>
- <comment xml:lang="es">calendario VCS/ICS</comment>
- <comment xml:lang="eu">VCS/ICS egutegia</comment>
- <comment xml:lang="fi">VCS/ICS-kalenteri</comment>
- <comment xml:lang="fo">VCS/ICS kalendari</comment>
- <comment xml:lang="fr">calendrier VCS/ICS</comment>
- <comment xml:lang="ga">féilire VCS/ICS</comment>
- <comment xml:lang="gl">Calendario VCS/ICS</comment>
- <comment xml:lang="he">לוח שנה VCS/ICS</comment>
- <comment xml:lang="hr">VCS/ICS kalendar</comment>
- <comment xml:lang="hu">VCS/ICS naptár</comment>
- <comment xml:lang="ia">Calendario VCS/ICS</comment>
- <comment xml:lang="id">Kalender VCS/ICS</comment>
- <comment xml:lang="it">Calendario VCS/ICS</comment>
- <comment xml:lang="ja">VCS/ICS カレンダー</comment>
- <comment xml:lang="kk">VCS/ICS күнтізбесі</comment>
- <comment xml:lang="ko">VCS/ICS 달력</comment>
- <comment xml:lang="lt">VCS/ICS kalendorius</comment>
- <comment xml:lang="lv">VCS/ICS kalendārs</comment>
- <comment xml:lang="nb">VCS/ICS-kalender</comment>
- <comment xml:lang="nl">VCS/ICS-kalender</comment>
- <comment xml:lang="nn">VCS/ICS-kalender</comment>
- <comment xml:lang="oc">calendièr VCS/ICS</comment>
- <comment xml:lang="pl">Kalendarz VCS/ICS</comment>
- <comment xml:lang="pt">calendário VCS/ICS</comment>
- <comment xml:lang="pt_BR">Calendário VCS/ICS</comment>
- <comment xml:lang="ro">Calendar VCS/ICS</comment>
- <comment xml:lang="ru">Календарь VCS/ICS</comment>
- <comment xml:lang="sk">Kalendár VCS/ICS</comment>
- <comment xml:lang="sl">Datoteka koledarja VCS/ICS</comment>
- <comment xml:lang="sq">Kalendar VCS/ICS</comment>
- <comment xml:lang="sr">ВЦС/ИЦС календар</comment>
- <comment xml:lang="sv">VCS/ICS-kalender</comment>
- <comment xml:lang="tr">VCS/ICS takvimi</comment>
- <comment xml:lang="uk">календар VCS/ICS</comment>
- <comment xml:lang="vi">Lịch VCS/ICS</comment>
- <comment xml:lang="zh_CN">VCS/ICS 日历</comment>
<comment xml:lang="zh_TW">VCS/ICS 行事曆</comment>
+ <comment xml:lang="zh_CN">VCS/ICS 日历</comment>
+ <comment xml:lang="vi">Lịch VCS/ICS</comment>
+ <comment xml:lang="uk">календар VCS/ICS</comment>
+ <comment xml:lang="tr">VCS/ICS takvimi</comment>
+ <comment xml:lang="sv">VCS/ICS-kalender</comment>
+ <comment xml:lang="sr">ВЦС/ИЦС календар</comment>
+ <comment xml:lang="sq">kalendar VCS/ICS</comment>
+ <comment xml:lang="sl">Datoteka koledarja VCS/ICS</comment>
+ <comment xml:lang="si">VCS/ICS දින දර්ශනය</comment>
+ <comment xml:lang="sk">Kalendár VCS/ICS</comment>
+ <comment xml:lang="ru">Календарь VCS/ICS</comment>
+ <comment xml:lang="ro">Calendar VCS/ICS</comment>
+ <comment xml:lang="pt_BR">Calendário VCS/ICS</comment>
+ <comment xml:lang="pt">calendário VCS/ICS</comment>
+ <comment xml:lang="pl">Kalendarz VCS/ICS</comment>
+ <comment xml:lang="oc">calendièr VCS/ICS</comment>
+ <comment xml:lang="nn">VCS/ICS-kalender</comment>
+ <comment xml:lang="nl">VCS/ICS-kalender</comment>
+ <comment xml:lang="nb">VCS/ICS-kalender</comment>
+ <comment xml:lang="lv">VCS/ICS kalendārs</comment>
+ <comment xml:lang="lt">VCS/ICS kalendorius</comment>
+ <comment xml:lang="ko">VCS/ICS 달력</comment>
+ <comment xml:lang="kk">VCS/ICS күнтізбесі</comment>
+ <comment xml:lang="ja">VCS/ICS カレンダー</comment>
+ <comment xml:lang="it">Calendario VCS/ICS</comment>
+ <comment xml:lang="is">VCS/ICS-dagatal</comment>
+ <comment xml:lang="id">Kalender VCS/ICS</comment>
+ <comment xml:lang="ia">Calendario VCS/ICS</comment>
+ <comment xml:lang="hu">VCS/ICS naptár</comment>
+ <comment xml:lang="hr">VCS/ICS kalendar</comment>
+ <comment xml:lang="he">לוח שנה VCS/ICS</comment>
+ <comment xml:lang="gl">Calendario VCS/ICS</comment>
+ <comment xml:lang="ga">féilire VCS/ICS</comment>
+ <comment xml:lang="fur">calendari VCS/ICS</comment>
+ <comment xml:lang="fr">calendrier VCS/ICS</comment>
+ <comment xml:lang="fo">VCS/ICS kalendari</comment>
+ <comment xml:lang="fi">VCS/ICS-kalenteri</comment>
+ <comment xml:lang="eu">VCS/ICS egutegia</comment>
+ <comment xml:lang="es">calendario VCS/ICS</comment>
+ <comment xml:lang="eo">VCS/ICS-kalendaro</comment>
+ <comment xml:lang="en_GB">VCS/ICS calendar</comment>
+ <comment xml:lang="el">Ημερολόγιο VCS/ICS</comment>
+ <comment xml:lang="de">VCS/ICS-Kalender</comment>
+ <comment xml:lang="da">VCS/ICS-kalender</comment>
+ <comment xml:lang="cs">kalendář VCS/ICS</comment>
+ <comment xml:lang="ca">calendari VCS/ICS</comment>
+ <comment xml:lang="bg">Календар — VCS/ICS</comment>
+ <comment xml:lang="be@latin">Kalandar VCS/ICS</comment>
+ <comment xml:lang="be">каляндар VCS/ICS</comment>
+ <comment xml:lang="ar">سجل VCS/ICS</comment>
+ <comment xml:lang="af">VCS/ICS-kalender</comment>
<acronym>VCS/ICS</acronym>
<expanded-acronym>vCalendar/iCalendar</expanded-acronym>
<sub-class-of type="text/plain"/>
<alias type="text/x-vcalendar"/>
<alias type="application/ics"/>
- <magic priority="50">
- <match value="BEGIN:VCALENDAR" type="string" offset="0"/>
- <match value="begin:vcalendar" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="BEGIN:VCALENDAR" offset="0"/>
+ <match type="string" value="begin:vcalendar" offset="0"/>
</magic>
<glob pattern="*.vcs"/>
<glob pattern="*.ics"/>
</mime-type>
<mime-type type="text/css">
<comment>CSS stylesheet</comment>
- <comment xml:lang="ar">نمط CSS</comment>
- <comment xml:lang="be@latin">Arkuš stylaŭ CSS</comment>
- <comment xml:lang="bg">Стилове — CSS</comment>
- <comment xml:lang="ca">llista d'estil CSS</comment>
- <comment xml:lang="cs">stylopis CSS</comment>
- <comment xml:lang="da">CSS-stilark</comment>
- <comment xml:lang="de">CSS-Stilvorlage</comment>
- <comment xml:lang="el">Φύλλο στυλ CSS</comment>
- <comment xml:lang="en_GB">CSS stylesheet</comment>
- <comment xml:lang="eo">CSS-stilfolio</comment>
- <comment xml:lang="es">hoja de estilos CSS</comment>
- <comment xml:lang="eu">CSS estilo-orria</comment>
- <comment xml:lang="fi">CSS-tyylitiedosto</comment>
- <comment xml:lang="fo">CSS sniðark</comment>
- <comment xml:lang="fr">feuille de style CSS</comment>
- <comment xml:lang="ga">stílbhileog CSS</comment>
- <comment xml:lang="gl">folla de estilos CSS</comment>
- <comment xml:lang="he">גליון עיצוב CSS</comment>
- <comment xml:lang="hr">CSS stilska tablica</comment>
- <comment xml:lang="hu">CSS stíluslap</comment>
- <comment xml:lang="ia">Folio de stilo CSS</comment>
- <comment xml:lang="id">Lembar gaya CSS</comment>
- <comment xml:lang="it">Foglio di stile CSS</comment>
- <comment xml:lang="ja">CSS スタイルシート</comment>
- <comment xml:lang="ka">CSS სტილი</comment>
- <comment xml:lang="kk">CSS стильдер кестесі</comment>
- <comment xml:lang="ko">CSS 스타일시트</comment>
- <comment xml:lang="lt">CSS stiliaus aprašas</comment>
- <comment xml:lang="lv">CSS stilu saraksts</comment>
- <comment xml:lang="nb">CSS-stilark</comment>
- <comment xml:lang="nl">CSS-stijlblad</comment>
- <comment xml:lang="nn">CSS-stilark</comment>
- <comment xml:lang="oc">fuèlh d'estil CSS</comment>
- <comment xml:lang="pl">Arkusz stylów CSS</comment>
- <comment xml:lang="pt">folha de estilos CSS</comment>
- <comment xml:lang="pt_BR">Folha de estilo CSS</comment>
- <comment xml:lang="ro">Pagină de stil CSS</comment>
- <comment xml:lang="ru">Таблица стилей CSS</comment>
- <comment xml:lang="sk">Štýly CSS</comment>
- <comment xml:lang="sl">Slogovna predloga CSS</comment>
- <comment xml:lang="sq">Fletë stili CSS</comment>
- <comment xml:lang="sr">ЦСС стилски лист</comment>
- <comment xml:lang="sv">CSS-stilmall</comment>
- <comment xml:lang="tr">CSS stil kağıdı</comment>
- <comment xml:lang="uk">таблиця стилів CSS</comment>
- <comment xml:lang="vi">Tờ kiểu dáng CSS</comment>
- <comment xml:lang="zh_CN">CSS 样式表</comment>
<comment xml:lang="zh_TW">CSS 樣式表</comment>
+ <comment xml:lang="zh_CN">CSS 样式表</comment>
+ <comment xml:lang="vi">Tờ kiểu dáng CSS</comment>
+ <comment xml:lang="uk">таблиця стилів CSS</comment>
+ <comment xml:lang="tr">CSS stil kağıdı</comment>
+ <comment xml:lang="sv">CSS-stilmall</comment>
+ <comment xml:lang="sr">ЦСС стилски лист</comment>
+ <comment xml:lang="sq">fletëstil CSS</comment>
+ <comment xml:lang="sl">Slogovna predloga CSS</comment>
+ <comment xml:lang="si">CSS මෝස්තර පත්‍රිකාව</comment>
+ <comment xml:lang="sk">Štýly CSS</comment>
+ <comment xml:lang="ru">Таблица стилей CSS</comment>
+ <comment xml:lang="ro">Pagină de stil CSS</comment>
+ <comment xml:lang="pt_BR">Folha de estilo CSS</comment>
+ <comment xml:lang="pt">folha de estilos CSS</comment>
+ <comment xml:lang="pl">Arkusz stylów CSS</comment>
+ <comment xml:lang="oc">fuèlh d'estil CSS</comment>
+ <comment xml:lang="nn">CSS-stilark</comment>
+ <comment xml:lang="nl">CSS-stijlblad</comment>
+ <comment xml:lang="nb">CSS-stilark</comment>
+ <comment xml:lang="lv">CSS stilu saraksts</comment>
+ <comment xml:lang="lt">CSS stiliaus aprašas</comment>
+ <comment xml:lang="ko">CSS 스타일시트</comment>
+ <comment xml:lang="kk">CSS стильдер кестесі</comment>
+ <comment xml:lang="ka">CSS სტილი</comment>
+ <comment xml:lang="ja">CSS スタイルシート</comment>
+ <comment xml:lang="it">Foglio di stile CSS</comment>
+ <comment xml:lang="is">CSS-stílsnið</comment>
+ <comment xml:lang="id">Lembar gaya CSS</comment>
+ <comment xml:lang="ia">Folio de stilo CSS</comment>
+ <comment xml:lang="hu">CSS stíluslap</comment>
+ <comment xml:lang="hr">CSS stilska tablica</comment>
+ <comment xml:lang="he">גיליון עיצוב CSS</comment>
+ <comment xml:lang="gl">folla de estilos CSS</comment>
+ <comment xml:lang="ga">stílbhileog CSS</comment>
+ <comment xml:lang="fur">sfuei di stîl CSS</comment>
+ <comment xml:lang="fr">feuille de style CSS</comment>
+ <comment xml:lang="fo">CSS sniðark</comment>
+ <comment xml:lang="fi">CSS-tyylitiedosto</comment>
+ <comment xml:lang="eu">CSS estilo-orria</comment>
+ <comment xml:lang="es">hoja de estilos CSS</comment>
+ <comment xml:lang="eo">CSS-stilfolio</comment>
+ <comment xml:lang="en_GB">CSS stylesheet</comment>
+ <comment xml:lang="el">Φύλλο στυλ CSS</comment>
+ <comment xml:lang="de">CSS-Stilvorlage</comment>
+ <comment xml:lang="da">CSS-stilark</comment>
+ <comment xml:lang="cs">stylopis CSS</comment>
+ <comment xml:lang="ca">llista d'estil CSS</comment>
+ <comment xml:lang="bg">Стилове — CSS</comment>
+ <comment xml:lang="be@latin">Arkuš stylaŭ CSS</comment>
+ <comment xml:lang="be">табліца стыляў CSS</comment>
+ <comment xml:lang="ar">نمط CSS</comment>
+ <comment xml:lang="af">CSS-stylblad</comment>
<acronym>CSS</acronym>
<expanded-acronym>Cascading Style Sheets</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.css"/>
</mime-type>
<mime-type type="text/vcard">
- <comment>electronic business card</comment>
- <comment xml:lang="ar">بطاقة أعمال إلكترونية</comment>
- <comment xml:lang="be@latin">elektronnaja biznes-kartka</comment>
- <comment xml:lang="bg">Електронна визитна картичка</comment>
- <comment xml:lang="ca">targeta de visita electrònica</comment>
- <comment xml:lang="cs">elektronická navštívenka</comment>
- <comment xml:lang="da">elektronisk visitkort</comment>
- <comment xml:lang="de">Elektronische Visitenkarte</comment>
- <comment xml:lang="el">Ηλεκτρονική επαγγελματική κάρτα</comment>
- <comment xml:lang="en_GB">electronic business card</comment>
- <comment xml:lang="eo">elektronika vizitkarto</comment>
- <comment xml:lang="es">tarjeta de visita electrónica</comment>
- <comment xml:lang="eu">enpresako txartel elektronikoa</comment>
- <comment xml:lang="fi">sähköinen käyntikortti</comment>
- <comment xml:lang="fo">elektroniskt handilskort</comment>
- <comment xml:lang="fr">carte de visite électronique</comment>
- <comment xml:lang="ga">cárta gnó leictreonach</comment>
- <comment xml:lang="gl">tarxeta de negocio electrónica</comment>
- <comment xml:lang="he">כרטיס ביקור אלקטרוני</comment>
- <comment xml:lang="hr">Elektronička posjetnica</comment>
- <comment xml:lang="hu">elektronikus névjegykártya</comment>
- <comment xml:lang="ia">Carta de visita electronic</comment>
- <comment xml:lang="id">kartu bisnis elektronik</comment>
- <comment xml:lang="it">Biglietto da visita elettronico</comment>
- <comment xml:lang="ja">電子名刺</comment>
- <comment xml:lang="kk">электронды визит карточкасы</comment>
- <comment xml:lang="ko">전자 명함</comment>
- <comment xml:lang="lt">elektroninė vizitinė kortelė</comment>
- <comment xml:lang="lv">elektroniskā biznesa kartiņa</comment>
- <comment xml:lang="nl">elektronisch visitekaartje</comment>
- <comment xml:lang="nn">elektronisk visittkort</comment>
- <comment xml:lang="oc">carta de visita electronica</comment>
- <comment xml:lang="pl">Wizytówka elektroniczna</comment>
- <comment xml:lang="pt">cartão de visita eletrónico</comment>
- <comment xml:lang="pt_BR">Cartão de visitas eletrônico</comment>
- <comment xml:lang="ro">carte de vizită electronică</comment>
- <comment xml:lang="ru">Электронная визитная карточка</comment>
- <comment xml:lang="sk">Elektronická vizitka</comment>
- <comment xml:lang="sl">elektronska poslovna vizitka</comment>
- <comment xml:lang="sq">Skedë elektronike biznesi</comment>
- <comment xml:lang="sr">електронска пословна картица</comment>
- <comment xml:lang="sv">elektroniskt visitkort</comment>
- <comment xml:lang="tr">elektronik iş kartı</comment>
+ <comment>Electronic business card</comment>
<comment xml:lang="uk">електронна бізнес-картка</comment>
- <comment xml:lang="vi">danh thiếp điện tử</comment>
- <comment xml:lang="zh_CN">电子商务卡</comment>
- <comment xml:lang="zh_TW">電子商務名片</comment>
+ <comment xml:lang="sv">Elektroniskt visitkort</comment>
+ <comment xml:lang="ru">Электронная визитная карточка</comment>
+ <comment xml:lang="pl">Wizytówka elektroniczna</comment>
+ <comment xml:lang="ja">電子名刺</comment>
+ <comment xml:lang="it">Biglietto da visita elettronico</comment>
+ <comment xml:lang="es">tarjeta de visita electrónica</comment>
+ <comment xml:lang="de">Elektronische Visitenkarte</comment>
+ <comment xml:lang="be">электронная візітная картка</comment>
<alias type="text/directory"/>
<alias type="text/x-vcard"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="BEGIN:VCARD" type="string" offset="0"/>
- <match value="begin:vcard" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="BEGIN:VCARD" offset="0"/>
+ <match type="string" value="begin:vcard" offset="0"/>
</magic>
<glob pattern="*.vcard"/>
<glob pattern="*.vcf"/>
@@ -31598,266 +33723,309 @@
</mime-type>
<mime-type type="text/turtle">
<comment>Turtle document</comment>
- <comment xml:lang="ast">Documentu Turtle</comment>
- <comment xml:lang="ca">document Turtle</comment>
- <comment xml:lang="cs">dokument Turtle</comment>
- <comment xml:lang="da">Turtle-dokument</comment>
- <comment xml:lang="de">Turtle-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Turtle</comment>
- <comment xml:lang="en_GB">Turtle document</comment>
- <comment xml:lang="es">documento de Turtle</comment>
- <comment xml:lang="eu">Turtle dokumentua</comment>
- <comment xml:lang="fi">Turtle-asiakirja</comment>
- <comment xml:lang="fr">document Turtle</comment>
- <comment xml:lang="ga">cáipéis Turtle</comment>
- <comment xml:lang="he">מסמך Turtle</comment>
- <comment xml:lang="hr">Turtle dokument</comment>
- <comment xml:lang="hu">Turtle dokumentum</comment>
- <comment xml:lang="ia">Documento Turtle</comment>
- <comment xml:lang="id">Dokumen Turtle</comment>
- <comment xml:lang="it">Documento Turtle</comment>
- <comment xml:lang="kk">Turtle құжаты</comment>
- <comment xml:lang="ko">Turtle 문서</comment>
- <comment xml:lang="oc">document Turtle</comment>
- <comment xml:lang="pl">Dokument Turtle</comment>
- <comment xml:lang="pt">documento Turtle</comment>
- <comment xml:lang="pt_BR">Documento Turtle</comment>
- <comment xml:lang="ru">Документ Turtle</comment>
- <comment xml:lang="sk">Dokument Turtle</comment>
- <comment xml:lang="sr">Тартл документ</comment>
- <comment xml:lang="sv">Turtle-dokument</comment>
- <comment xml:lang="tr">Turtle belgesi</comment>
- <comment xml:lang="uk">документ Turtle</comment>
- <comment xml:lang="zh_CN">Turtle 文档</comment>
<comment xml:lang="zh_TW">Turtle 文件</comment>
+ <comment xml:lang="zh_CN">Turtle 文档</comment>
+ <comment xml:lang="uk">документ Turtle</comment>
+ <comment xml:lang="tr">Turtle belgesi</comment>
+ <comment xml:lang="sv">Turtle-dokument</comment>
+ <comment xml:lang="sr">Тартл документ</comment>
+ <comment xml:lang="sq">dokument Turtle</comment>
+ <comment xml:lang="sl">Dokument Turtle</comment>
+ <comment xml:lang="si">කැස්බෑ ලියවිල්ල</comment>
+ <comment xml:lang="sk">Dokument Turtle</comment>
+ <comment xml:lang="ru">Документ Turtle</comment>
+ <comment xml:lang="pt_BR">Documento Turtle</comment>
+ <comment xml:lang="pt">documento Turtle</comment>
+ <comment xml:lang="pl">Dokument Turtle</comment>
+ <comment xml:lang="oc">document Turtle</comment>
+ <comment xml:lang="nl">Turtle-document</comment>
+ <comment xml:lang="ko">Turtle 문서</comment>
+ <comment xml:lang="kk">Turtle құжаты</comment>
+ <comment xml:lang="ja">Turtle ドキュメント</comment>
+ <comment xml:lang="it">Documento Turtle</comment>
+ <comment xml:lang="is">Turtle skjal</comment>
+ <comment xml:lang="id">Dokumen Turtle</comment>
+ <comment xml:lang="ia">Documento Turtle</comment>
+ <comment xml:lang="hu">Turtle dokumentum</comment>
+ <comment xml:lang="hr">Turtle dokument</comment>
+ <comment xml:lang="he">מסמך Turtle</comment>
+ <comment xml:lang="ga">cáipéis Turtle</comment>
+ <comment xml:lang="fur">document Turtle</comment>
+ <comment xml:lang="fr">document Turtle</comment>
+ <comment xml:lang="fi">Turtle-asiakirja</comment>
+ <comment xml:lang="eu">Turtle dokumentua</comment>
+ <comment xml:lang="es">documento de Turtle</comment>
+ <comment xml:lang="en_GB">Turtle document</comment>
+ <comment xml:lang="el">Έγγραφο Turtle</comment>
+ <comment xml:lang="de">Turtle-Dokument</comment>
+ <comment xml:lang="da">Turtle-dokument</comment>
+ <comment xml:lang="cs">dokument Turtle</comment>
+ <comment xml:lang="ca">document Turtle</comment>
+ <comment xml:lang="bg">Документ — Turtle</comment>
+ <comment xml:lang="be">дакумент Turtle</comment>
+ <comment xml:lang="ast">Documentu Turtle</comment>
+ <comment xml:lang="ar">وثيقة Turtle</comment>
+ <comment xml:lang="af">Turtle-dokument</comment>
<glob pattern="*.ttl"/>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/x-txt2tags">
<comment>txt2tags document</comment>
- <comment xml:lang="ar">مستند txt2tags</comment>
- <comment xml:lang="ast">Documentu txt2tags</comment>
- <comment xml:lang="be@latin">dakument txt2tags</comment>
- <comment xml:lang="bg">Документ — txt2tags</comment>
- <comment xml:lang="ca">document txt2tags</comment>
- <comment xml:lang="cs">dokument txt2tags</comment>
- <comment xml:lang="da">txt2tags-dokument</comment>
- <comment xml:lang="de">txt2tags-Dokument</comment>
- <comment xml:lang="el">Έγγραφο txt2tags</comment>
- <comment xml:lang="en_GB">txt2tags document</comment>
- <comment xml:lang="eo">txt2tags-dokumento</comment>
- <comment xml:lang="es">documento txt2tags</comment>
- <comment xml:lang="eu">txt2tags dokumentua</comment>
- <comment xml:lang="fi">txt2tags-asiakirja</comment>
- <comment xml:lang="fo">txt2tags skjal</comment>
- <comment xml:lang="fr">document txt2tags</comment>
- <comment xml:lang="ga">cáipéis txt2tags</comment>
- <comment xml:lang="gl">documento txt2tags</comment>
- <comment xml:lang="he">מסמך txt2tags</comment>
- <comment xml:lang="hr">txt2tags dokument</comment>
- <comment xml:lang="hu">txt2tags dokumentum</comment>
- <comment xml:lang="ia">Documento txt2tags</comment>
- <comment xml:lang="id">Dokumen txt2tags</comment>
- <comment xml:lang="it">Documento txt2tags</comment>
- <comment xml:lang="ja">txt2tags ドキュメント</comment>
- <comment xml:lang="ka">txt2tags დოკუმენტი</comment>
- <comment xml:lang="kk">txt2tags құжаты</comment>
- <comment xml:lang="ko">txt2tags 문서</comment>
- <comment xml:lang="lt">txt2tags dokumentas</comment>
- <comment xml:lang="lv">txt2tags dokuments</comment>
- <comment xml:lang="nb">txt2tags-dokument</comment>
- <comment xml:lang="nl">txt2tags-document</comment>
- <comment xml:lang="nn">txt2tags-dokument</comment>
- <comment xml:lang="oc">document txt2tags</comment>
- <comment xml:lang="pl">Dokument txt2tags</comment>
- <comment xml:lang="pt">documento txt2tags</comment>
- <comment xml:lang="pt_BR">Documento do txt2tags</comment>
- <comment xml:lang="ro">document txt2tags</comment>
- <comment xml:lang="ru">Документ txt2tags</comment>
- <comment xml:lang="sk">Dokument txt2tags</comment>
- <comment xml:lang="sl">Dokument txt2tags</comment>
- <comment xml:lang="sq">Dokument txt2tags</comment>
- <comment xml:lang="sr">документ текста-у-ознаке</comment>
- <comment xml:lang="sv">txt2tags-dokument</comment>
- <comment xml:lang="tr">txt2tags belgesi</comment>
- <comment xml:lang="uk">документ txt2tags</comment>
- <comment xml:lang="vi">tài liệu txt2tags</comment>
- <comment xml:lang="zh_CN">txt2tags 文档</comment>
<comment xml:lang="zh_TW">txt2tags 文件</comment>
+ <comment xml:lang="zh_CN">txt2tags 文档</comment>
+ <comment xml:lang="vi">tài liệu txt2tags</comment>
+ <comment xml:lang="uk">документ txt2tags</comment>
+ <comment xml:lang="tr">txt2tags belgesi</comment>
+ <comment xml:lang="sv">txt2tags-dokument</comment>
+ <comment xml:lang="sr">документ текста-у-ознаке</comment>
+ <comment xml:lang="sq">dokument txt2tags</comment>
+ <comment xml:lang="sl">Dokument txt2tags</comment>
+ <comment xml:lang="si">txt2tags ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument txt2tags</comment>
+ <comment xml:lang="ru">Документ txt2tags</comment>
+ <comment xml:lang="ro">document txt2tags</comment>
+ <comment xml:lang="pt_BR">Documento do txt2tags</comment>
+ <comment xml:lang="pt">documento txt2tags</comment>
+ <comment xml:lang="pl">Dokument txt2tags</comment>
+ <comment xml:lang="oc">document txt2tags</comment>
+ <comment xml:lang="nn">txt2tags-dokument</comment>
+ <comment xml:lang="nl">txt2tags-document</comment>
+ <comment xml:lang="nb">txt2tags-dokument</comment>
+ <comment xml:lang="lv">txt2tags dokuments</comment>
+ <comment xml:lang="lt">txt2tags dokumentas</comment>
+ <comment xml:lang="ko">txt2tags 문서</comment>
+ <comment xml:lang="kk">txt2tags құжаты</comment>
+ <comment xml:lang="ka">txt2tags დოკუმენტი</comment>
+ <comment xml:lang="ja">txt2tags ドキュメント</comment>
+ <comment xml:lang="it">Documento txt2tags</comment>
+ <comment xml:lang="is">txt2tags skjalskjal</comment>
+ <comment xml:lang="id">dokumen txt2tags</comment>
+ <comment xml:lang="ia">Documento txt2tags</comment>
+ <comment xml:lang="hu">txt2tags dokumentum</comment>
+ <comment xml:lang="hr">txt2tags dokument</comment>
+ <comment xml:lang="he">מסמך txt2tags</comment>
+ <comment xml:lang="gl">documento txt2tags</comment>
+ <comment xml:lang="ga">cáipéis txt2tags</comment>
+ <comment xml:lang="fur">document txt2tags</comment>
+ <comment xml:lang="fr">document txt2tags</comment>
+ <comment xml:lang="fo">txt2tags skjal</comment>
+ <comment xml:lang="fi">txt2tags-asiakirja</comment>
+ <comment xml:lang="eu">txt2tags dokumentua</comment>
+ <comment xml:lang="es">documento txt2tags</comment>
+ <comment xml:lang="eo">txt2tags-dokumento</comment>
+ <comment xml:lang="en_GB">txt2tags document</comment>
+ <comment xml:lang="el">Έγγραφο txt2tags</comment>
+ <comment xml:lang="de">txt2tags-Dokument</comment>
+ <comment xml:lang="da">txt2tags-dokument</comment>
+ <comment xml:lang="cs">dokument txt2tags</comment>
+ <comment xml:lang="ca">document txt2tags</comment>
+ <comment xml:lang="bg">Документ — txt2tags</comment>
+ <comment xml:lang="be@latin">dakument txt2tags</comment>
+ <comment xml:lang="be">дакумент txt2tags</comment>
+ <comment xml:lang="ast">Documentu txt2tags</comment>
+ <comment xml:lang="ar">مستند txt2tags</comment>
+ <comment xml:lang="af">txt2tags-dokument</comment>
<sub-class-of type="text/plain"/>
<magic priority="60">
- <match value="%!postproc" type="string" offset="0"/>
- <match value="%!encoding" type="string" offset="0"/>
+ <match type="string" value="%!postproc" offset="0"/>
+ <match type="string" value="%!encoding" offset="0"/>
</magic>
<glob pattern="*.t2t"/>
</mime-type>
<mime-type type="text/x-verilog">
<comment>Verilog source code</comment>
- <comment xml:lang="bg">Изходен код — Verilog</comment>
- <comment xml:lang="ca">codi font en Verilog</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Verilog</comment>
- <comment xml:lang="da">Verilog-kildekode</comment>
- <comment xml:lang="de">Verilog-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Verilog</comment>
- <comment xml:lang="en_GB">Verilog source code</comment>
- <comment xml:lang="eo">Verilog-fontkodo</comment>
- <comment xml:lang="es">código fuente en Verilog</comment>
- <comment xml:lang="eu">Verilog iturburu-kodea</comment>
- <comment xml:lang="fi">Verilog-lähdekoodi</comment>
- <comment xml:lang="fr">code source Verilog</comment>
- <comment xml:lang="ga">cód foinseach Verilog</comment>
- <comment xml:lang="gl">código fonte en Verilog</comment>
- <comment xml:lang="he">קוד מקור של </comment>
- <comment xml:lang="hr">Verilog izvorni kôd</comment>
- <comment xml:lang="hu">Verilog-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Verilog</comment>
- <comment xml:lang="id">Kode sumber Verilog</comment>
- <comment xml:lang="it">Codice sorgente Verilog</comment>
- <comment xml:lang="ja">Verilog ソースコード</comment>
- <comment xml:lang="kk">Verilog бастапқы коды</comment>
- <comment xml:lang="ko">Verilog 소스 코드</comment>
- <comment xml:lang="lv">Verilog pirmkods</comment>
- <comment xml:lang="nl">Verilog broncode</comment>
- <comment xml:lang="oc">còde font Verilog</comment>
- <comment xml:lang="pl">Kod źródłowy Verilog</comment>
- <comment xml:lang="pt">código origem Verilog</comment>
- <comment xml:lang="pt_BR">Código-fonte Verilog</comment>
- <comment xml:lang="ru">Исходный код Verilog</comment>
- <comment xml:lang="sk">Zdrojový kód Verilog</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Verilog</comment>
- <comment xml:lang="sr">изворни код Верилога</comment>
- <comment xml:lang="sv">Verilog-källkod</comment>
- <comment xml:lang="tr">Verilog kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Verilog</comment>
- <comment xml:lang="zh_CN">Verilog 源代码</comment>
<comment xml:lang="zh_TW">Verilog 源碼</comment>
+ <comment xml:lang="zh_CN">Verilog 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Verilog</comment>
+ <comment xml:lang="tr">Verilog kaynak kodu</comment>
+ <comment xml:lang="sv">Verilog-källkod</comment>
+ <comment xml:lang="sr">изворни код Верилога</comment>
+ <comment xml:lang="sq">kod burim Verilog</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Verilog</comment>
+ <comment xml:lang="si">Verilog මූලාශ්ර කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Verilog</comment>
+ <comment xml:lang="ru">Исходный код Verilog</comment>
+ <comment xml:lang="pt_BR">Código-fonte Verilog</comment>
+ <comment xml:lang="pt">código origem Verilog</comment>
+ <comment xml:lang="pl">Kod źródłowy Verilog</comment>
+ <comment xml:lang="oc">còde font Verilog</comment>
+ <comment xml:lang="nl">Verilog-broncode</comment>
+ <comment xml:lang="lv">Verilog pirmkods</comment>
+ <comment xml:lang="ko">Verilog 소스 코드</comment>
+ <comment xml:lang="kk">Verilog бастапқы коды</comment>
+ <comment xml:lang="ja">Verilog ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Verilog</comment>
+ <comment xml:lang="is">Verilog frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Verilog</comment>
+ <comment xml:lang="ia">Codice-fonte Verilog</comment>
+ <comment xml:lang="hu">Verilog-forráskód</comment>
+ <comment xml:lang="hr">Verilog izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של </comment>
+ <comment xml:lang="gl">código fonte en Verilog</comment>
+ <comment xml:lang="ga">cód foinseach Verilog</comment>
+ <comment xml:lang="fur">codiç sorzint Verilog</comment>
+ <comment xml:lang="fr">code source Verilog</comment>
+ <comment xml:lang="fi">Verilog-lähdekoodi</comment>
+ <comment xml:lang="eu">Verilog iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Verilog</comment>
+ <comment xml:lang="eo">Verilog-fontkodo</comment>
+ <comment xml:lang="en_GB">Verilog source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Verilog</comment>
+ <comment xml:lang="de">Verilog-Quelltext</comment>
+ <comment xml:lang="da">Verilog-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Verilog</comment>
+ <comment xml:lang="ca">codi font en Verilog</comment>
+ <comment xml:lang="bg">Изходен код — Verilog</comment>
+ <comment xml:lang="be">зыходны код Verilog</comment>
+ <comment xml:lang="ar">شفرة مصدر Verilog</comment>
+ <comment xml:lang="af">Verilog-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.v"/>
</mime-type>
<mime-type type="text/x-svhdr">
<comment>SystemVerilog header</comment>
- <comment xml:lang="bg">Заглавен файл — SystemVerilog</comment>
- <comment xml:lang="ca">capçalera de SystemVerilog</comment>
- <comment xml:lang="cs">záhlaví SystemVerilog</comment>
- <comment xml:lang="da">SystemVerilog-teksthoved</comment>
- <comment xml:lang="de">SystemVerilog-Header</comment>
- <comment xml:lang="el">Κεφαλίδα SystemVerilog</comment>
- <comment xml:lang="en_GB">SystemVerilog header</comment>
- <comment xml:lang="es">cabeceras de SystemVerilog</comment>
- <comment xml:lang="eu">SystemVerilog goiburua</comment>
- <comment xml:lang="fi">SystemVerilog-otsake</comment>
- <comment xml:lang="fr">en-tête </comment>
- <comment xml:lang="ga">ceanntásc SystemVerilog</comment>
- <comment xml:lang="gl">Cabeceiras de SystemVerilog</comment>
- <comment xml:lang="he">כותרת SystemVerilog</comment>
- <comment xml:lang="hr">SystemVerilog zaglavlje</comment>
- <comment xml:lang="hu">SystemVerilog fejléc</comment>
- <comment xml:lang="ia">Capite SystemVerilog</comment>
- <comment xml:lang="id">Header SystemVerilog</comment>
- <comment xml:lang="it">Header SystemVerilog</comment>
- <comment xml:lang="ja">SystemVerilog ヘッダー</comment>
- <comment xml:lang="kk">SystemVerilog тақырыптамасы</comment>
- <comment xml:lang="ko">SystemVerilog 헤더</comment>
- <comment xml:lang="lv">SystemVerilog galvene</comment>
- <comment xml:lang="nl">SystemVerilog header</comment>
- <comment xml:lang="oc">entèsta SystemVerilog</comment>
- <comment xml:lang="pl">Nagłówek SystemVerilog</comment>
- <comment xml:lang="pt">cabeçalho SystemVerilog</comment>
- <comment xml:lang="pt_BR">Cabeçalho de SystemVerilog</comment>
- <comment xml:lang="ru">Заголовочный файл SystemVerilog</comment>
- <comment xml:lang="sk">Hlavičky SystemVerilog</comment>
- <comment xml:lang="sl">Datoteka glave SystemVerilog</comment>
- <comment xml:lang="sr">заглавље Система Верилога</comment>
- <comment xml:lang="sv">SystemVerilog-headerfil</comment>
- <comment xml:lang="tr">SystemVerilog başlığı</comment>
- <comment xml:lang="uk">заголовки SystemVerilog</comment>
- <comment xml:lang="zh_CN">SystemVerilog 头文件</comment>
<comment xml:lang="zh_TW">SystemVerilog 標頭</comment>
+ <comment xml:lang="zh_CN">SystemVerilog 头文件</comment>
+ <comment xml:lang="uk">заголовки SystemVerilog</comment>
+ <comment xml:lang="tr">SystemVerilog başlığı</comment>
+ <comment xml:lang="sv">SystemVerilog-headerfil</comment>
+ <comment xml:lang="sr">заглавље Система Верилога</comment>
+ <comment xml:lang="sq">krye SystemVerilog</comment>
+ <comment xml:lang="sl">Datoteka glave SystemVerilog</comment>
+ <comment xml:lang="si">SystemVerilog ශීර්ෂකය</comment>
+ <comment xml:lang="sk">Hlavičky SystemVerilog</comment>
+ <comment xml:lang="ru">Заголовочный файл SystemVerilog</comment>
+ <comment xml:lang="pt_BR">Cabeçalho de SystemVerilog</comment>
+ <comment xml:lang="pt">cabeçalho SystemVerilog</comment>
+ <comment xml:lang="pl">Nagłówek SystemVerilog</comment>
+ <comment xml:lang="oc">entèsta SystemVerilog</comment>
+ <comment xml:lang="nl">SystemVerilog-header</comment>
+ <comment xml:lang="lv">SystemVerilog galvene</comment>
+ <comment xml:lang="ko">SystemVerilog 헤더</comment>
+ <comment xml:lang="kk">SystemVerilog тақырыптамасы</comment>
+ <comment xml:lang="ja">SystemVerilog ヘッダー</comment>
+ <comment xml:lang="it">Header SystemVerilog</comment>
+ <comment xml:lang="is">SystemVerilog haus</comment>
+ <comment xml:lang="id">Header SystemVerilog</comment>
+ <comment xml:lang="ia">Capite SystemVerilog</comment>
+ <comment xml:lang="hu">SystemVerilog fejléc</comment>
+ <comment xml:lang="hr">SystemVerilog zaglavlje</comment>
+ <comment xml:lang="he">כותרת SystemVerilog</comment>
+ <comment xml:lang="gl">Cabeceiras de SystemVerilog</comment>
+ <comment xml:lang="ga">ceanntásc SystemVerilog</comment>
+ <comment xml:lang="fur">intestazion SystemVerilog</comment>
+ <comment xml:lang="fr">en-tête </comment>
+ <comment xml:lang="fi">SystemVerilog-otsake</comment>
+ <comment xml:lang="eu">SystemVerilog goiburua</comment>
+ <comment xml:lang="es">cabeceras de SystemVerilog</comment>
+ <comment xml:lang="en_GB">SystemVerilog header</comment>
+ <comment xml:lang="el">Κεφαλίδα SystemVerilog</comment>
+ <comment xml:lang="de">SystemVerilog-Header</comment>
+ <comment xml:lang="da">SystemVerilog-teksthoved</comment>
+ <comment xml:lang="cs">záhlaví SystemVerilog</comment>
+ <comment xml:lang="ca">capçalera en SystemVerilog</comment>
+ <comment xml:lang="bg">Заглавен файл — SystemVerilog</comment>
+ <comment xml:lang="be">загаловак SystemVerilog</comment>
+ <comment xml:lang="ar">ترويسة SystemVerilog</comment>
<sub-class-of type="text/x-verilog"/>
<glob pattern="*.svh"/>
</mime-type>
<mime-type type="text/x-svsrc">
<comment>SystemVerilog source code</comment>
- <comment xml:lang="bg">Изходен код — SystemVerilog</comment>
- <comment xml:lang="ca">codi font en SystemVerilog</comment>
- <comment xml:lang="cs">zdrojový kód SystemVerilog</comment>
- <comment xml:lang="da">SystemVerilog-kildekode</comment>
- <comment xml:lang="de">SystemVerilog-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας SystemVerilog</comment>
- <comment xml:lang="en_GB">SystemVerilog source code</comment>
- <comment xml:lang="es">código fuente en SystemVerilog</comment>
- <comment xml:lang="eu">SystemVerilog iturburu-kodea</comment>
- <comment xml:lang="fi">SystemVerilog-lähdekoodi</comment>
- <comment xml:lang="fr">code source </comment>
- <comment xml:lang="ga">cód foinseach SystemVerilog</comment>
- <comment xml:lang="gl">código fonte en SystemVerilog</comment>
- <comment xml:lang="he">קוד מקור של SystemVerilog</comment>
- <comment xml:lang="hr">SystemVerilog izvorni kôd</comment>
- <comment xml:lang="hu">SystemVerilog-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte SystemVerilog</comment>
- <comment xml:lang="id">Kode sumber SystemVerilog</comment>
- <comment xml:lang="it">Codice sorgente </comment>
- <comment xml:lang="ja">SystemVerilog ソースコード</comment>
- <comment xml:lang="kk">SystemVerilog бастапқы коды</comment>
- <comment xml:lang="ko">SystemVerilog 소스 코드</comment>
- <comment xml:lang="lv">SystemVerilog pirmkods</comment>
- <comment xml:lang="nl">SystemVerilog broncode</comment>
- <comment xml:lang="oc">còde font SystemVerilog</comment>
- <comment xml:lang="pl">Kod źródłowy SystemVerilog</comment>
- <comment xml:lang="pt">código origem SystemVerilog</comment>
- <comment xml:lang="pt_BR">Código-fonte de SystemVerilog</comment>
- <comment xml:lang="ru">Исходный код SystemVerilog</comment>
- <comment xml:lang="sk">Zdrojový kód SystemVerilog</comment>
- <comment xml:lang="sl">Datoteka izvorne kode SystemVerilog</comment>
- <comment xml:lang="sr">изворни код Система Верилога</comment>
- <comment xml:lang="sv">SystemVerilog-källkod</comment>
- <comment xml:lang="tr">SystemVerilog kaynak kodu</comment>
- <comment xml:lang="uk">вихідний файл мовою SystemVerilog</comment>
- <comment xml:lang="zh_CN">SystemVerilog 源代码</comment>
<comment xml:lang="zh_TW">SystemVerilog 源碼</comment>
+ <comment xml:lang="zh_CN">SystemVerilog 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою SystemVerilog</comment>
+ <comment xml:lang="tr">SystemVerilog kaynak kodu</comment>
+ <comment xml:lang="sv">SystemVerilog-källkod</comment>
+ <comment xml:lang="sr">изворни код Система Верилога</comment>
+ <comment xml:lang="sq">kod burim SystemVerilog</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode SystemVerilog</comment>
+ <comment xml:lang="si">SystemVerilog මූලාශ්‍ර කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód SystemVerilog</comment>
+ <comment xml:lang="ru">Исходный код SystemVerilog</comment>
+ <comment xml:lang="pt_BR">Código-fonte de SystemVerilog</comment>
+ <comment xml:lang="pt">código origem SystemVerilog</comment>
+ <comment xml:lang="pl">Kod źródłowy SystemVerilog</comment>
+ <comment xml:lang="oc">còde font SystemVerilog</comment>
+ <comment xml:lang="nl">SystemVerilog-broncode</comment>
+ <comment xml:lang="lv">SystemVerilog pirmkods</comment>
+ <comment xml:lang="ko">SystemVerilog 소스 코드</comment>
+ <comment xml:lang="kk">SystemVerilog бастапқы коды</comment>
+ <comment xml:lang="ja">SystemVerilog ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente </comment>
+ <comment xml:lang="is">SystemVerilog frumkóði</comment>
+ <comment xml:lang="id">Kode sumber SystemVerilog</comment>
+ <comment xml:lang="ia">Codice-fonte SystemVerilog</comment>
+ <comment xml:lang="hu">SystemVerilog-forráskód</comment>
+ <comment xml:lang="hr">SystemVerilog izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של SystemVerilog</comment>
+ <comment xml:lang="gl">código fonte en SystemVerilog</comment>
+ <comment xml:lang="ga">cód foinseach SystemVerilog</comment>
+ <comment xml:lang="fur">codiç sorzint SystemVerilog</comment>
+ <comment xml:lang="fr">code source </comment>
+ <comment xml:lang="fi">SystemVerilog-lähdekoodi</comment>
+ <comment xml:lang="eu">SystemVerilog iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en SystemVerilog</comment>
+ <comment xml:lang="en_GB">SystemVerilog source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας SystemVerilog</comment>
+ <comment xml:lang="de">SystemVerilog-Quelltext</comment>
+ <comment xml:lang="da">SystemVerilog-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód SystemVerilog</comment>
+ <comment xml:lang="ca">codi font en SystemVerilog</comment>
+ <comment xml:lang="bg">Изходен код — SystemVerilog</comment>
+ <comment xml:lang="be">зыходны код SystemVerilog</comment>
+ <comment xml:lang="ar">شفرة مصدر SystemVerilog</comment>
+ <comment xml:lang="af">SystemVerilog-bronkode</comment>
<sub-class-of type="text/x-verilog"/>
<glob pattern="*.sv"/>
</mime-type>
<mime-type type="text/x-vhdl">
<comment>VHDL source code</comment>
- <comment xml:lang="bg">Изходен код — VHDL</comment>
- <comment xml:lang="ca">codi font en VHDL</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce VHDL</comment>
- <comment xml:lang="da">VHDL-kildekode</comment>
- <comment xml:lang="de">VHDL-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας VHDL</comment>
- <comment xml:lang="en_GB">VHDL source code</comment>
- <comment xml:lang="eo">VHDL-fontkodo</comment>
- <comment xml:lang="es">código fuente en VHDL</comment>
- <comment xml:lang="eu">VHDL iturburu-kodea</comment>
- <comment xml:lang="fi">VHDL-lähdekoodi</comment>
- <comment xml:lang="fr">code source VHDL</comment>
- <comment xml:lang="ga">cód foinseach VHDL</comment>
- <comment xml:lang="gl">código fonte en VHDL</comment>
- <comment xml:lang="he">קוד מקור של VHDL</comment>
- <comment xml:lang="hr">VHDL izvorni kôd</comment>
- <comment xml:lang="hu">VHDL-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte VHDL</comment>
- <comment xml:lang="id">Kode sumber VHDL</comment>
- <comment xml:lang="it">Codice sorgente VHDL</comment>
- <comment xml:lang="ja">VHDL ソースコード</comment>
- <comment xml:lang="kk">VHDL бастапқы коды</comment>
- <comment xml:lang="ko">VHDL 소스 코드</comment>
- <comment xml:lang="lv">VHDL pirmkods</comment>
- <comment xml:lang="nl">VHDL broncode</comment>
- <comment xml:lang="oc">còde font VHDL</comment>
- <comment xml:lang="pl">Kod źródłowy VHDL</comment>
- <comment xml:lang="pt">código origem VHDL</comment>
- <comment xml:lang="pt_BR">Código-fonte VHDL</comment>
- <comment xml:lang="ru">Исходный код VHDL</comment>
- <comment xml:lang="sk">Zdrojový kód VHDL</comment>
- <comment xml:lang="sl">Datoteka izvorne kode VHDL</comment>
- <comment xml:lang="sr">ВХДЛ изворни код</comment>
- <comment xml:lang="sv">VHDL-källkod</comment>
- <comment xml:lang="tr">VHDL kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою VHDL</comment>
- <comment xml:lang="zh_CN">VHDL 源代码</comment>
<comment xml:lang="zh_TW">VHDL 源碼</comment>
+ <comment xml:lang="zh_CN">VHDL 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою VHDL</comment>
+ <comment xml:lang="tr">VHDL kaynak kodu</comment>
+ <comment xml:lang="sv">VHDL-källkod</comment>
+ <comment xml:lang="sr">ВХДЛ изворни код</comment>
+ <comment xml:lang="sq">kod burim VHDL</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode VHDL</comment>
+ <comment xml:lang="si">VHDL මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód VHDL</comment>
+ <comment xml:lang="ru">Исходный код VHDL</comment>
+ <comment xml:lang="pt_BR">Código-fonte VHDL</comment>
+ <comment xml:lang="pt">código origem VHDL</comment>
+ <comment xml:lang="pl">Kod źródłowy VHDL</comment>
+ <comment xml:lang="oc">còde font VHDL</comment>
+ <comment xml:lang="nl">VHDL-broncode</comment>
+ <comment xml:lang="lv">VHDL pirmkods</comment>
+ <comment xml:lang="ko">VHDL 소스 코드</comment>
+ <comment xml:lang="kk">VHDL бастапқы коды</comment>
+ <comment xml:lang="ja">VHDL ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente VHDL</comment>
+ <comment xml:lang="is">VHDL frumkóði</comment>
+ <comment xml:lang="id">Kode sumber VHDL</comment>
+ <comment xml:lang="ia">Codice-fonte VHDL</comment>
+ <comment xml:lang="hu">VHDL-forráskód</comment>
+ <comment xml:lang="hr">VHDL izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של VHDL</comment>
+ <comment xml:lang="gl">código fonte en VHDL</comment>
+ <comment xml:lang="ga">cód foinseach VHDL</comment>
+ <comment xml:lang="fur">codiç sorzint VHDL</comment>
+ <comment xml:lang="fr">code source VHDL</comment>
+ <comment xml:lang="fi">VHDL-lähdekoodi</comment>
+ <comment xml:lang="eu">VHDL iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en VHDL</comment>
+ <comment xml:lang="eo">VHDL-fontkodo</comment>
+ <comment xml:lang="en_GB">VHDL source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας VHDL</comment>
+ <comment xml:lang="de">VHDL-Quelltext</comment>
+ <comment xml:lang="da">VHDL-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce VHDL</comment>
+ <comment xml:lang="ca">codi font en VHDL</comment>
+ <comment xml:lang="bg">Изходен код — VHDL</comment>
+ <comment xml:lang="be">зыходны код VHDL</comment>
+ <comment xml:lang="ar">شفرة مصدر VHDL</comment>
+ <comment xml:lang="af">VHDL-bronkode</comment>
<acronym>VHDL</acronym>
<expanded-acronym>Very-High-Speed Integrated Circuit Hardware Description Language</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -31865,167 +34033,49 @@
<glob pattern="*.vhdl"/>
</mime-type>
<mime-type type="text/enriched">
- <comment>enriched text document</comment>
- <comment xml:lang="ar">مستند نصي مغنى</comment>
- <comment xml:lang="ast">documentu de testu arriquecíu</comment>
- <comment xml:lang="az">zəngin mətn sənədi</comment>
- <comment xml:lang="be@latin">azdobleny tekstavy dakument</comment>
- <comment xml:lang="bg">Документ с обогатен текст</comment>
- <comment xml:lang="ca">document de text enriquit</comment>
- <comment xml:lang="cs">rozšířený textový dokument</comment>
- <comment xml:lang="cy">Dogfen testun wedi ei gyfoethogi</comment>
- <comment xml:lang="da">beriget tekstdokument</comment>
- <comment xml:lang="de">Angereichertes Textdokument</comment>
- <comment xml:lang="el">Έγγραφο εμπλουτισμένου κειμένου</comment>
- <comment xml:lang="en_GB">enriched text document</comment>
- <comment xml:lang="eo">riĉigita teksta dokumento</comment>
- <comment xml:lang="es">documento de texto enriquecido</comment>
- <comment xml:lang="eu">aberastutako testu dokumentua</comment>
- <comment xml:lang="fi">rikastettu tekstiasiakirja</comment>
- <comment xml:lang="fo">ríkað tekstskjal</comment>
- <comment xml:lang="fr">document texte enrichi</comment>
- <comment xml:lang="ga">cáipéis téacs saibhrithe</comment>
- <comment xml:lang="gl">documento de texto enriquecido</comment>
- <comment xml:lang="he">מסמך טקסט מועשר</comment>
- <comment xml:lang="hr">Obogaćeni tekstovni dokument</comment>
- <comment xml:lang="hu">enriched text dokumentum</comment>
- <comment xml:lang="ia">Documento de texto inricchite</comment>
- <comment xml:lang="id">dokumen teks diperkaya</comment>
- <comment xml:lang="it">Documento testo arricchito</comment>
- <comment xml:lang="ja">リッチテキストドキュメント</comment>
- <comment xml:lang="kk">пішімделген мәтіндік құжаты</comment>
- <comment xml:lang="ko">확장된 텍스트 문서</comment>
- <comment xml:lang="lt">praturtinto teksto dokumentas</comment>
- <comment xml:lang="lv">bagātināta teksta formāts</comment>
- <comment xml:lang="ms">Dokumen teks diperkaya</comment>
- <comment xml:lang="nb">riktekst-dokument</comment>
- <comment xml:lang="nl">verrijkt tekstdocument</comment>
- <comment xml:lang="nn">rik tekst tekstdokument</comment>
- <comment xml:lang="oc">document tèxte enriquit</comment>
- <comment xml:lang="pl">Wzbogacony dokument tekstowy</comment>
- <comment xml:lang="pt">documento de texto rico</comment>
- <comment xml:lang="pt_BR">Documento de texto enriquecido</comment>
- <comment xml:lang="ro">document text îmbogățit</comment>
- <comment xml:lang="ru">Форматированный текстовый документ</comment>
- <comment xml:lang="sk">Rozšírený textový dokument</comment>
- <comment xml:lang="sl">dokument z obogatenim besedilom</comment>
- <comment xml:lang="sq">Dokument teksti i pasuruar</comment>
- <comment xml:lang="sr">обогаћени текстуални документ</comment>
- <comment xml:lang="sv">berikat textdokument</comment>
- <comment xml:lang="tr">zenginleştirilmiş metin belgesi</comment>
+ <comment>Enriched text document</comment>
<comment xml:lang="uk">форматований текстовий документ</comment>
- <comment xml:lang="vi">tài liệu văn bản có kiểu dáng</comment>
- <comment xml:lang="zh_CN">浓缩文本文档 (ETF)</comment>
- <comment xml:lang="zh_TW">豐富化文字文件</comment>
+ <comment xml:lang="sv">Enriched text-dokument</comment>
+ <comment xml:lang="ru">Форматированный текстовый документ</comment>
+ <comment xml:lang="pl">Wzbogacony dokument tekstowy</comment>
+ <comment xml:lang="ja">装飾された文書</comment>
+ <comment xml:lang="it">Documento testo arricchito</comment>
+ <comment xml:lang="es">documento de texto enriquecido</comment>
+ <comment xml:lang="de">Angereichertes Textdokument</comment>
+ <comment xml:lang="be">дакумент з фарматаваннем enriched text</comment>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/htmlh">
- <comment>help page</comment>
- <comment xml:lang="ar">صفحة المساعدة</comment>
- <comment xml:lang="az">yardım səhifəsi</comment>
- <comment xml:lang="be@latin">staronka dapamohi</comment>
- <comment xml:lang="bg">Страница от помощта</comment>
- <comment xml:lang="ca">pàgina d'ajuda</comment>
- <comment xml:lang="cs">stránka nápovědy</comment>
- <comment xml:lang="cy">tudalen gymorth</comment>
- <comment xml:lang="da">hjælpeside</comment>
- <comment xml:lang="de">Hilfeseite</comment>
- <comment xml:lang="el">Σελίδα βοήθειας</comment>
- <comment xml:lang="en_GB">help page</comment>
- <comment xml:lang="eo">help-paĝo</comment>
- <comment xml:lang="es">página de ayuda</comment>
- <comment xml:lang="eu">laguntzako orria</comment>
- <comment xml:lang="fi">ohjesivu</comment>
- <comment xml:lang="fo">hjálparsíða</comment>
- <comment xml:lang="fr">page d'aide</comment>
- <comment xml:lang="ga">leathanach cabhrach</comment>
- <comment xml:lang="gl">páxina de axuda</comment>
- <comment xml:lang="he">דף עזרה</comment>
- <comment xml:lang="hr">Stranica pomoći</comment>
- <comment xml:lang="hu">súgóoldal</comment>
- <comment xml:lang="ia">Pagina de adjuta</comment>
- <comment xml:lang="id">halaman bantuan</comment>
- <comment xml:lang="it">Pagina di aiuto</comment>
- <comment xml:lang="ja">ヘルプページ</comment>
- <comment xml:lang="kk">анықтама парағы</comment>
- <comment xml:lang="ko">도움말 페이지</comment>
- <comment xml:lang="lt">žinyno puslapis</comment>
- <comment xml:lang="lv">palīdzības lapa</comment>
- <comment xml:lang="ms">Halaman bantuan</comment>
- <comment xml:lang="nb">hjelpside</comment>
- <comment xml:lang="nl">hulppagina</comment>
- <comment xml:lang="nn">hjelpeside</comment>
- <comment xml:lang="oc">pagina d'ajuda</comment>
- <comment xml:lang="pl">Strona pomocy</comment>
- <comment xml:lang="pt">página de ajuda</comment>
- <comment xml:lang="pt_BR">Página de ajuda</comment>
- <comment xml:lang="ro">pagină de ajutor</comment>
+ <comment>Help page</comment>
+ <comment xml:lang="uk">Довідкова сторінка</comment>
+ <comment xml:lang="sv">Hjälpsida</comment>
<comment xml:lang="ru">Страница справки</comment>
- <comment xml:lang="sk">Stránka Pomocníka</comment>
- <comment xml:lang="sl">stran pomoči</comment>
- <comment xml:lang="sq">Faqe ndihme</comment>
- <comment xml:lang="sr">страница помоћи</comment>
- <comment xml:lang="sv">hjälpsida</comment>
- <comment xml:lang="tr">yardım sayfası</comment>
- <comment xml:lang="uk">сторінка довідки</comment>
- <comment xml:lang="vi">trang trợ giúp</comment>
- <comment xml:lang="zh_CN">帮助页面</comment>
- <comment xml:lang="zh_TW">求助頁面</comment>
+ <comment xml:lang="pt_BR">Página de ajuda</comment>
+ <comment xml:lang="pl">Strona pomocy</comment>
+ <comment xml:lang="ja">取説文書</comment>
+ <comment xml:lang="it">Pagina di aiuto</comment>
+ <comment xml:lang="eu">Laguntza-orria</comment>
+ <comment xml:lang="es">página de ayuda</comment>
+ <comment xml:lang="de">Hilfeseite</comment>
+ <comment xml:lang="be">старонка даведкі</comment>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/plain">
- <comment>plain text document</comment>
- <comment xml:lang="ar">مستند نصي مجرد</comment>
- <comment xml:lang="ast">documentu de testu planu</comment>
- <comment xml:lang="be@latin">prosty tekstavy dakument</comment>
- <comment xml:lang="bg">Документ с неформатиран текст</comment>
- <comment xml:lang="ca">document de text pla</comment>
- <comment xml:lang="cs">prostý textový dokument</comment>
- <comment xml:lang="da">rent tekstdokument</comment>
- <comment xml:lang="de">Einfaches Textdokument</comment>
- <comment xml:lang="el">Έγγραφο απλού κειμένου</comment>
- <comment xml:lang="en_GB">plain text document</comment>
- <comment xml:lang="eo">plata teksta dokumento</comment>
- <comment xml:lang="es">documento de texto sencillo</comment>
- <comment xml:lang="eu">testu soileko dokumentua</comment>
- <comment xml:lang="fi">perustekstiasiakirja</comment>
- <comment xml:lang="fr">document texte brut</comment>
- <comment xml:lang="ga">cáipéis ghnáth-théacs</comment>
- <comment xml:lang="gl">documento de texto sinxelo</comment>
- <comment xml:lang="he">מסמך טקסט פשוט</comment>
- <comment xml:lang="hr">Običan tekstovni dokument</comment>
- <comment xml:lang="hu">egyszerű szöveg</comment>
- <comment xml:lang="ia">Documento de texto simple</comment>
- <comment xml:lang="id">dokumen teks polos</comment>
- <comment xml:lang="it">Documento in testo semplice</comment>
- <comment xml:lang="ja">平文テキストドキュメント</comment>
- <comment xml:lang="kk">мәтіндік құжаты</comment>
- <comment xml:lang="ko">일반 텍스트 문서</comment>
- <comment xml:lang="lt">paprastas tekstinis dokumentas</comment>
- <comment xml:lang="lv">vienkāršs teksta dokuments</comment>
- <comment xml:lang="ms">Dokumen teks jernih</comment>
- <comment xml:lang="nb">vanlig tekstdokument</comment>
- <comment xml:lang="nl">plattetekst-document</comment>
- <comment xml:lang="nn">vanleg tekstdokument</comment>
- <comment xml:lang="oc">document tèxte brut</comment>
- <comment xml:lang="pl">Zwykły dokument tekstowy</comment>
- <comment xml:lang="pt">documento em texto simples</comment>
- <comment xml:lang="pt_BR">Documento de Texto</comment>
- <comment xml:lang="ro">document text simplu</comment>
+ <comment>Plain text document</comment>
+ <comment xml:lang="uk">простий текстовий документ</comment>
+ <comment xml:lang="sv">Vanligt textdokument</comment>
<comment xml:lang="ru">Текстовый документ</comment>
- <comment xml:lang="sk">Obyčajný textový dokument</comment>
- <comment xml:lang="sl">običajna besedilna datoteka</comment>
- <comment xml:lang="sq">Dokument në tekst të thjeshtë</comment>
- <comment xml:lang="sr">обичан текстуални документ</comment>
- <comment xml:lang="sv">vanligt textdokument</comment>
- <comment xml:lang="tr">düz metin belgesi</comment>
- <comment xml:lang="uk">звичайний текстовий документ</comment>
- <comment xml:lang="vi">tài liệu nhập thô</comment>
- <comment xml:lang="zh_CN">纯文本文档</comment>
- <comment xml:lang="zh_TW">純文字文件</comment>
- <magic priority="50">
- <match value="This is TeX," type="string" offset="0"/>
- <match value="This is METAFONT," type="string" offset="0"/>
+ <comment xml:lang="pt_BR">Documento de texto simples</comment>
+ <comment xml:lang="pl">Zwykły dokument tekstowy</comment>
+ <comment xml:lang="ja">平文文書</comment>
+ <comment xml:lang="it">Documento in testo semplice</comment>
+ <comment xml:lang="eu">Testu soileko dokumentua</comment>
+ <comment xml:lang="es">documento de texto sin formato</comment>
+ <comment xml:lang="de">Einfaches Textdokument</comment>
+ <comment xml:lang="be">звычайны тэкст</comment>
+ <magic>
+ <match type="string" value="This is TeX," offset="0"/>
+ <match type="string" value="This is METAFONT," offset="0"/>
</magic>
<glob pattern="*.txt"/>
<glob pattern="*.asc"/>
@@ -32033,53 +34083,58 @@
</mime-type>
<mime-type type="application/rdf+xml">
<comment>RDF file</comment>
- <comment xml:lang="ar">ملف RDF</comment>
- <comment xml:lang="be@latin">Fajł RDF</comment>
- <comment xml:lang="bg">Файл — RDF</comment>
- <comment xml:lang="ca">fitxer RDF</comment>
- <comment xml:lang="cs">soubor RDF</comment>
- <comment xml:lang="da">RDF-fil</comment>
- <comment xml:lang="de">RDF-Datei</comment>
- <comment xml:lang="el">Αρχείο RDF</comment>
- <comment xml:lang="en_GB">RDF file</comment>
- <comment xml:lang="eo">RDF-dosiero</comment>
- <comment xml:lang="es">archivo RDF</comment>
- <comment xml:lang="eu">RDF fitxategia</comment>
- <comment xml:lang="fi">RDF-tiedosto</comment>
- <comment xml:lang="fo">RDF fíla</comment>
- <comment xml:lang="fr">fichier RDF</comment>
- <comment xml:lang="ga">comhad RDF</comment>
- <comment xml:lang="gl">ficheiro RDF</comment>
- <comment xml:lang="he">קובץ RDF</comment>
- <comment xml:lang="hr">RDF datoteka</comment>
- <comment xml:lang="hu">RDF fájl</comment>
- <comment xml:lang="ia">File RDF</comment>
- <comment xml:lang="id">Arsip RDF</comment>
- <comment xml:lang="it">File RDF</comment>
- <comment xml:lang="ja">RDF ファイル</comment>
- <comment xml:lang="kk">RDF файлы</comment>
- <comment xml:lang="ko">RDF 파일</comment>
- <comment xml:lang="lt">RDF failas</comment>
- <comment xml:lang="lv">RDF datne</comment>
- <comment xml:lang="nb">RDF-fil</comment>
- <comment xml:lang="nl">RDF-bestand</comment>
- <comment xml:lang="nn">RDF-fil</comment>
- <comment xml:lang="oc">fichièr RDF</comment>
- <comment xml:lang="pl">Plik RDF</comment>
- <comment xml:lang="pt">ficheiro RDF</comment>
- <comment xml:lang="pt_BR">Arquivo RDF</comment>
- <comment xml:lang="ro">Fișier RDF</comment>
- <comment xml:lang="ru">Файл RDF</comment>
- <comment xml:lang="sk">Súbor RDF</comment>
- <comment xml:lang="sl">Datoteka RDF</comment>
- <comment xml:lang="sq">File RDF</comment>
- <comment xml:lang="sr">РДФ датотека</comment>
- <comment xml:lang="sv">RDF-fil</comment>
- <comment xml:lang="tr">RDF dosyası</comment>
- <comment xml:lang="uk">файл RDF</comment>
- <comment xml:lang="vi">Tập tin RDF</comment>
- <comment xml:lang="zh_CN">RDF 文件</comment>
<comment xml:lang="zh_TW">RDF 檔</comment>
+ <comment xml:lang="zh_CN">RDF 文件</comment>
+ <comment xml:lang="vi">Tập tin RDF</comment>
+ <comment xml:lang="uk">файл RDF</comment>
+ <comment xml:lang="tr">RDF dosyası</comment>
+ <comment xml:lang="sv">RDF-fil</comment>
+ <comment xml:lang="sr">РДФ датотека</comment>
+ <comment xml:lang="sq">kartelë RDF</comment>
+ <comment xml:lang="sl">Datoteka RDF</comment>
+ <comment xml:lang="si">RDF ගොනුව</comment>
+ <comment xml:lang="sk">Súbor RDF</comment>
+ <comment xml:lang="ru">Файл RDF</comment>
+ <comment xml:lang="ro">Fișier RDF</comment>
+ <comment xml:lang="pt_BR">Arquivo RDF</comment>
+ <comment xml:lang="pt">ficheiro RDF</comment>
+ <comment xml:lang="pl">Plik RDF</comment>
+ <comment xml:lang="oc">fichièr RDF</comment>
+ <comment xml:lang="nn">RDF-fil</comment>
+ <comment xml:lang="nl">RDF-bestand</comment>
+ <comment xml:lang="nb">RDF-fil</comment>
+ <comment xml:lang="lv">RDF datne</comment>
+ <comment xml:lang="lt">RDF failas</comment>
+ <comment xml:lang="ko">RDF 파일</comment>
+ <comment xml:lang="kk">RDF файлы</comment>
+ <comment xml:lang="ja">RDF ファイル</comment>
+ <comment xml:lang="it">File RDF</comment>
+ <comment xml:lang="is">RDF skrá</comment>
+ <comment xml:lang="id">Arsip RDF</comment>
+ <comment xml:lang="ia">File RDF</comment>
+ <comment xml:lang="hu">RDF fájl</comment>
+ <comment xml:lang="hr">RDF datoteka</comment>
+ <comment xml:lang="he">קובץ RDF</comment>
+ <comment xml:lang="gl">ficheiro RDF</comment>
+ <comment xml:lang="ga">comhad RDF</comment>
+ <comment xml:lang="fur">file RDF</comment>
+ <comment xml:lang="fr">fichier RDF</comment>
+ <comment xml:lang="fo">RDF fíla</comment>
+ <comment xml:lang="fi">RDF-tiedosto</comment>
+ <comment xml:lang="eu">RDF fitxategia</comment>
+ <comment xml:lang="es">archivo RDF</comment>
+ <comment xml:lang="eo">RDF-dosiero</comment>
+ <comment xml:lang="en_GB">RDF file</comment>
+ <comment xml:lang="el">Αρχείο RDF</comment>
+ <comment xml:lang="de">RDF-Datei</comment>
+ <comment xml:lang="da">RDF-fil</comment>
+ <comment xml:lang="cs">soubor RDF</comment>
+ <comment xml:lang="ca">fitxer RDF</comment>
+ <comment xml:lang="bg">Файл — RDF</comment>
+ <comment xml:lang="be@latin">Fajł RDF</comment>
+ <comment xml:lang="be">файл RDF</comment>
+ <comment xml:lang="ar">ملف RDF</comment>
+ <comment xml:lang="af">RDF-lêer</comment>
<acronym>RDF</acronym>
<expanded-acronym>Resource Description Framework</expanded-acronym>
<alias type="text/rdf"/>
@@ -32089,203 +34144,153 @@
<glob pattern="*.owl"/>
<root-XML namespaceURI="http://www.w3.org/1999/02/22-rdf-syntax-ns#" localName="RDF"/>
</mime-type>
+ <mime-type type="text/x-rst">
+ <comment>ReStructuredText document</comment>
+ <comment xml:lang="uk">документ ReStructuredText</comment>
+ <comment xml:lang="sv">ReStructuredText-dokument</comment>
+ <comment xml:lang="ru">Документ ReStructuredText</comment>
+ <comment xml:lang="pl">Dokument reStructuredText</comment>
+ <comment xml:lang="it">Documento reStructuredText</comment>
+ <comment xml:lang="eu">ReStructuredText dokumentua</comment>
+ <comment xml:lang="es">documento ReStructuredText</comment>
+ <comment xml:lang="de">reStructuredText-Dokument</comment>
+ <comment xml:lang="be">дакумент reStructuredText</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.rst"/>
+ </mime-type>
<mime-type type="application/owl+xml">
<comment>OWL XML file</comment>
- <comment xml:lang="ca">fitxer XML OWL</comment>
- <comment xml:lang="cs">soubor OWL XML</comment>
- <comment xml:lang="da">OWL XML-fil</comment>
- <comment xml:lang="de">OWL-XML-Datei</comment>
- <comment xml:lang="el">Αρχείο OWL XML</comment>
- <comment xml:lang="en_GB">OWL XML file</comment>
- <comment xml:lang="es">archivo en XML OWL</comment>
- <comment xml:lang="eu">OWL XML fitxategia</comment>
- <comment xml:lang="fr">fichier XML OWL</comment>
- <comment xml:lang="ga">comhad XML OWL</comment>
- <comment xml:lang="hr">OWL XML datoteka</comment>
- <comment xml:lang="hu">OWL XML-fájl</comment>
- <comment xml:lang="ia">File XML OWL</comment>
- <comment xml:lang="id">Berkas XML OWL</comment>
- <comment xml:lang="it">File XML OWL</comment>
- <comment xml:lang="kk">OWL XML файлы</comment>
- <comment xml:lang="ko">OWL XML 파일</comment>
- <comment xml:lang="oc">fichièr OWL XML</comment>
- <comment xml:lang="pl">Plik XML OWL</comment>
- <comment xml:lang="pt">ficheiro OWL XML</comment>
- <comment xml:lang="pt_BR">Arquivo OWL XML</comment>
- <comment xml:lang="ru">Файл XML OWL</comment>
- <comment xml:lang="sk">Súbor XML OWL</comment>
- <comment xml:lang="sr">ОВЛ ИксМЛ датотека</comment>
- <comment xml:lang="sv">OWL XML-fil</comment>
- <comment xml:lang="tr">OWL XML dosyası</comment>
- <comment xml:lang="uk">файл XML OWL</comment>
- <comment xml:lang="zh_CN">OWL XML 文件</comment>
<comment xml:lang="zh_TW">OWL XML 檔案</comment>
+ <comment xml:lang="zh_CN">OWL XML 文件</comment>
+ <comment xml:lang="uk">файл XML OWL</comment>
+ <comment xml:lang="tr">OWL XML dosyası</comment>
+ <comment xml:lang="sv">OWL XML-fil</comment>
+ <comment xml:lang="sr">ОВЛ ИксМЛ датотека</comment>
+ <comment xml:lang="sq">kartelë OWL XML</comment>
+ <comment xml:lang="sl">Datoteka OWL XML</comment>
+ <comment xml:lang="si">OWL XML ගොනුව</comment>
+ <comment xml:lang="sk">Súbor XML OWL</comment>
+ <comment xml:lang="ru">Файл XML OWL</comment>
+ <comment xml:lang="pt_BR">Arquivo OWL XML</comment>
+ <comment xml:lang="pt">ficheiro OWL XML</comment>
+ <comment xml:lang="pl">Plik XML OWL</comment>
+ <comment xml:lang="oc">fichièr OWL XML</comment>
+ <comment xml:lang="nl">OWL XML-bestand</comment>
+ <comment xml:lang="ko">OWL XML 파일</comment>
+ <comment xml:lang="kk">OWL XML файлы</comment>
+ <comment xml:lang="ja">OWL XML ファイル</comment>
+ <comment xml:lang="it">File XML OWL</comment>
+ <comment xml:lang="is">OWL XML skrá</comment>
+ <comment xml:lang="id">Berkas XML OWL</comment>
+ <comment xml:lang="ia">File XML OWL</comment>
+ <comment xml:lang="hu">OWL XML-fájl</comment>
+ <comment xml:lang="hr">OWL XML datoteka</comment>
+ <comment xml:lang="he">קובץ XML מסוג OWL</comment>
+ <comment xml:lang="ga">comhad XML OWL</comment>
+ <comment xml:lang="fur">file OWL XML</comment>
+ <comment xml:lang="fr">fichier XML OWL</comment>
+ <comment xml:lang="fi">OWL XML -tiedosto</comment>
+ <comment xml:lang="eu">OWL XML fitxategia</comment>
+ <comment xml:lang="es">archivo en XML OWL</comment>
+ <comment xml:lang="en_GB">OWL XML file</comment>
+ <comment xml:lang="el">Αρχείο OWL XML</comment>
+ <comment xml:lang="de">OWL-XML-Datei</comment>
+ <comment xml:lang="da">OWL XML-fil</comment>
+ <comment xml:lang="cs">soubor OWL XML</comment>
+ <comment xml:lang="ca">fitxer XML OWL</comment>
+ <comment xml:lang="bg">Файл — OWL XML</comment>
+ <comment xml:lang="be">файл OWL XML</comment>
+ <comment xml:lang="ar">ملف OWL XML</comment>
+ <comment xml:lang="af">OWL XML-lêer</comment>
<acronym>OWL</acronym>
<expanded-acronym>Web Ontology Language</expanded-acronym>
<sub-class-of type="application/xml"/>
<glob pattern="*.owx"/>
<magic>
- <match value="&lt;Ontology" type="string" offset="0:256"/>
+ <match type="string" value="&lt;Ontology" offset="0:256"/>
</magic>
<root-XML namespaceURI="http://www.w3.org/2002/07/owl#" localName="Ontology"/>
</mime-type>
<mime-type type="text/rfc822-headers">
- <comment>email headers</comment>
- <comment xml:lang="ar">ترويسة البريد الإلكتروني</comment>
- <comment xml:lang="az">epoçt başlıqları</comment>
- <comment xml:lang="be@latin">paštovyja zahałoŭki</comment>
- <comment xml:lang="bg">Заглавни части на електронни писма</comment>
- <comment xml:lang="ca">capçaleres de correu electrònic</comment>
- <comment xml:lang="cs">záhlaví e-mailu</comment>
- <comment xml:lang="cy">penawdau e-bost</comment>
- <comment xml:lang="da">posthoveder</comment>
- <comment xml:lang="de">E-Mail-Kopfzeilen</comment>
- <comment xml:lang="el">Κεφαλίδες ηλ. μηνυμάτων</comment>
- <comment xml:lang="en_GB">email headers</comment>
- <comment xml:lang="eo">retpoŝtaj ĉapoj</comment>
- <comment xml:lang="es">cabeceras de correo electrónico</comment>
- <comment xml:lang="eu">helbide elektronikoen goiburuak</comment>
- <comment xml:lang="fi">sähköpostiotsakkeet</comment>
- <comment xml:lang="fo">t-post tekshøvd</comment>
- <comment xml:lang="fr">en-têtes de courriel</comment>
- <comment xml:lang="ga">ceanntásca ríomhphoist</comment>
- <comment xml:lang="gl">cabeceiras de correo electrónico</comment>
- <comment xml:lang="he">כותרת דוא״ל</comment>
- <comment xml:lang="hr">Zaglavlja e-pošte</comment>
- <comment xml:lang="hu">levélfejléc</comment>
- <comment xml:lang="ia">Capites de e-mail</comment>
- <comment xml:lang="id">header email</comment>
- <comment xml:lang="it">Intestazioni email</comment>
- <comment xml:lang="ja">メールヘッダー</comment>
- <comment xml:lang="kk">пошталық тақырыптамалары</comment>
- <comment xml:lang="ko">전자메일 헤더</comment>
- <comment xml:lang="lt">el. laiško antraštės</comment>
- <comment xml:lang="lv">e-pasta galvene</comment>
- <comment xml:lang="ms">Pengepala emel</comment>
- <comment xml:lang="nb">e-posthode</comment>
- <comment xml:lang="nl">e-mail-kopregels</comment>
- <comment xml:lang="nn">e-post-hovud</comment>
- <comment xml:lang="oc">entèstas de corrièr electronic</comment>
- <comment xml:lang="pl">Nagłówki wiadomości e-mail</comment>
- <comment xml:lang="pt">cabeçalhos de email</comment>
- <comment xml:lang="pt_BR">Cabeçalhos de e-mail</comment>
- <comment xml:lang="ro">antete email</comment>
+ <comment>Email headers</comment>
+ <comment xml:lang="uk">заголовки повідомлення ел. пошти</comment>
+ <comment xml:lang="sv">E-posthuvuden</comment>
<comment xml:lang="ru">Почтовые заголовки</comment>
- <comment xml:lang="sk">Hlavičky e-mailu</comment>
- <comment xml:lang="sl">glava elektronske pošte</comment>
- <comment xml:lang="sq">Header email</comment>
- <comment xml:lang="sr">заглавља ел. поште</comment>
- <comment xml:lang="sv">e-posthuvuden</comment>
- <comment xml:lang="tr">eposta başlığı</comment>
- <comment xml:lang="uk">заголовки email</comment>
- <comment xml:lang="vi">dòng đầu thư điện tử</comment>
- <comment xml:lang="zh_CN">电子邮件头</comment>
- <comment xml:lang="zh_TW">電子郵件標頭</comment>
+ <comment xml:lang="pl">Nagłówki wiadomości e-mail</comment>
+ <comment xml:lang="it">Intestazioni email</comment>
+ <comment xml:lang="eu">Posta-goiburuak</comment>
+ <comment xml:lang="es">cabeceras de correo electrónico</comment>
+ <comment xml:lang="de">E-Mail-Kopfzeilen</comment>
+ <comment xml:lang="be">паштовыя загалоўкі</comment>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/richtext">
- <comment>rich text document</comment>
- <comment xml:lang="ar">مستند نصي غني</comment>
- <comment xml:lang="ast">documentu de testu ricu</comment>
- <comment xml:lang="az">zəngin mətn sənədi</comment>
- <comment xml:lang="be@latin">azdobleny tekstavy dakument</comment>
- <comment xml:lang="bg">Документ — rich text</comment>
- <comment xml:lang="ca">document de text enriquit</comment>
- <comment xml:lang="cs">textový dokument RTF</comment>
- <comment xml:lang="cy">dogfen testun gyfoethog (rtf)</comment>
- <comment xml:lang="da">richtekstdokument</comment>
- <comment xml:lang="de">RTF-Textdokument</comment>
- <comment xml:lang="el">Έγγραφο εμπλουτισμένου κειμένου (RTF)</comment>
- <comment xml:lang="en_GB">rich text document</comment>
- <comment xml:lang="eo">riĉteksta dokumento</comment>
- <comment xml:lang="es">documento de texto enriquecido</comment>
- <comment xml:lang="eu">aberastutako testu formatua</comment>
- <comment xml:lang="fi">RTF-asiakirja</comment>
- <comment xml:lang="fr">document « rich text »</comment>
- <comment xml:lang="ga">cáipéis mhéith-théacs</comment>
- <comment xml:lang="gl">documento do texto enriquecido</comment>
- <comment xml:lang="he">מסמך טקסט עשיר</comment>
- <comment xml:lang="hr">Obogaćeni tekstovni dokument</comment>
- <comment xml:lang="hu">rich text-dokumentum</comment>
- <comment xml:lang="ia">Documento de texto inricchite</comment>
- <comment xml:lang="id">dokumen teks kaya</comment>
- <comment xml:lang="it">Documento rich text</comment>
- <comment xml:lang="ja">リッチテキストドキュメント</comment>
- <comment xml:lang="kk">пішімделген мәтіні бар құжаты</comment>
- <comment xml:lang="ko">서식 있는 텍스트 문서</comment>
- <comment xml:lang="lt">praturtinto teksto dokumentas</comment>
- <comment xml:lang="lv">bagātā teksta dokuments</comment>
- <comment xml:lang="ms">Dokumen teks diperkaya</comment>
- <comment xml:lang="nb">rik tekst-dokument</comment>
- <comment xml:lang="nl">opgemaakt tekstdocument</comment>
- <comment xml:lang="nn">rik tekst-dokument</comment>
- <comment xml:lang="oc">document « rich text »</comment>
- <comment xml:lang="pl">Dokument Rich Text</comment>
- <comment xml:lang="pt">documento em texto rico</comment>
- <comment xml:lang="pt_BR">Documento rich text</comment>
- <comment xml:lang="ro">document text îmbogățit</comment>
- <comment xml:lang="ru">Документ с форматированным текстом</comment>
- <comment xml:lang="sk">Textový dokument RTF</comment>
- <comment xml:lang="sl">dokument z oblikovanim besedilom</comment>
- <comment xml:lang="sq">Dokument rich text</comment>
- <comment xml:lang="sr">богат текстуални документ</comment>
- <comment xml:lang="sv">RTF-textdokument</comment>
- <comment xml:lang="tr">zengin metin belgesi</comment>
+ <comment>Rich text document</comment>
<comment xml:lang="uk">форматований текстовий документ</comment>
- <comment xml:lang="vi">tài liệu văn bản có kiểu dáng (RTF)</comment>
- <comment xml:lang="zh_CN">富文本文档 (RTF)</comment>
- <comment xml:lang="zh_TW">豐富文字文件</comment>
+ <comment xml:lang="sv">Rich text-dokument</comment>
+ <comment xml:lang="ru">Форматированный текстовый документ</comment>
+ <comment xml:lang="pl">Dokument Rich Text</comment>
+ <comment xml:lang="it">Documento testo arricchito</comment>
+ <comment xml:lang="eu">Testu aberatseko dokumentua</comment>
+ <comment xml:lang="es">documento de texto enriquecido</comment>
+ <comment xml:lang="de">RTF-Textdokument</comment>
+ <comment xml:lang="be">дакумент у фармаце RTF</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.rtx"/>
</mime-type>
<mime-type type="application/rss+xml">
<comment>RSS summary</comment>
- <comment xml:lang="ar">ملخص RSS</comment>
- <comment xml:lang="be@latin">Karotki ahlad RSS</comment>
- <comment xml:lang="bg">Обобщение за сайтове — RSS</comment>
- <comment xml:lang="ca">resum RSS</comment>
- <comment xml:lang="cs">souhrn RSS</comment>
- <comment xml:lang="da">RSS-sammendrag</comment>
- <comment xml:lang="de">RSS-Zusammenfassung</comment>
- <comment xml:lang="el">Σύνοψη RSS</comment>
- <comment xml:lang="en_GB">RSS summary</comment>
- <comment xml:lang="es">resumen de RSS</comment>
- <comment xml:lang="eu">RSS laburpena</comment>
- <comment xml:lang="fi">RSS-tiivistelmä</comment>
- <comment xml:lang="fo">RSS samandráttur</comment>
- <comment xml:lang="fr">résumé RSS</comment>
- <comment xml:lang="ga">achoimre RSS</comment>
- <comment xml:lang="gl">Resumo RSS</comment>
- <comment xml:lang="he">תקציר RSS</comment>
- <comment xml:lang="hr">RSS sažetak</comment>
- <comment xml:lang="hu">RSS összefoglaló</comment>
- <comment xml:lang="ia">Summario RSS</comment>
- <comment xml:lang="id">Ringkasan RSS</comment>
- <comment xml:lang="it">Sommario RSS</comment>
- <comment xml:lang="ja">RSS サマリ</comment>
- <comment xml:lang="kk">RSS жинақталғаны</comment>
- <comment xml:lang="ko">RSS 요약</comment>
- <comment xml:lang="lt">RSS santrauka</comment>
- <comment xml:lang="lv">RSS kopsavilkums</comment>
- <comment xml:lang="nb">RSS-sammendrag</comment>
- <comment xml:lang="nl">RSS-samenvatting</comment>
- <comment xml:lang="nn">RSS-samandrag</comment>
- <comment xml:lang="oc">resumit RSS</comment>
- <comment xml:lang="pl">Podsumowanie RSS</comment>
- <comment xml:lang="pt">resumo RSS</comment>
- <comment xml:lang="pt_BR">Resumo RSS</comment>
- <comment xml:lang="ro">Rezumat RSS</comment>
- <comment xml:lang="ru">Сводка RSS</comment>
- <comment xml:lang="sk">Súhrn RSS</comment>
- <comment xml:lang="sl">Datoteka povzetek RSS</comment>
- <comment xml:lang="sq">Përmbledhje RSS</comment>
- <comment xml:lang="sr">РСС сажетак</comment>
- <comment xml:lang="sv">RSS-sammanfattning</comment>
- <comment xml:lang="tr">RSS özeti</comment>
- <comment xml:lang="uk">зведення сайту RSS</comment>
- <comment xml:lang="vi">Bản tóm tắt RSS</comment>
- <comment xml:lang="zh_CN">RSS 摘要</comment>
<comment xml:lang="zh_TW">RSS 摘要</comment>
+ <comment xml:lang="zh_CN">RSS 摘要</comment>
+ <comment xml:lang="vi">Bản tóm tắt RSS</comment>
+ <comment xml:lang="uk">зведення сайту RSS</comment>
+ <comment xml:lang="tr">RSS özeti</comment>
+ <comment xml:lang="sv">RSS-sammanfattning</comment>
+ <comment xml:lang="sr">РСС сажетак</comment>
+ <comment xml:lang="sq">përmbledhje RSS</comment>
+ <comment xml:lang="sl">Datoteka povzetek RSS</comment>
+ <comment xml:lang="si">RSS සාරාංශය</comment>
+ <comment xml:lang="sk">Súhrn RSS</comment>
+ <comment xml:lang="ru">Сводка RSS</comment>
+ <comment xml:lang="ro">Rezumat RSS</comment>
+ <comment xml:lang="pt_BR">Resumo RSS</comment>
+ <comment xml:lang="pt">resumo RSS</comment>
+ <comment xml:lang="pl">Podsumowanie RSS</comment>
+ <comment xml:lang="oc">resumit RSS</comment>
+ <comment xml:lang="nn">RSS-samandrag</comment>
+ <comment xml:lang="nl">RSS-samenvatting</comment>
+ <comment xml:lang="nb">RSS-sammendrag</comment>
+ <comment xml:lang="lv">RSS kopsavilkums</comment>
+ <comment xml:lang="lt">RSS santrauka</comment>
+ <comment xml:lang="ko">RSS 요약</comment>
+ <comment xml:lang="kk">RSS жинақталғаны</comment>
+ <comment xml:lang="ja">RSS サマリ</comment>
+ <comment xml:lang="it">Sommario RSS</comment>
+ <comment xml:lang="is">RSS samantekt</comment>
+ <comment xml:lang="id">Ringkasan RSS</comment>
+ <comment xml:lang="ia">Summario RSS</comment>
+ <comment xml:lang="hu">RSS összefoglaló</comment>
+ <comment xml:lang="hr">RSS sažetak</comment>
+ <comment xml:lang="he">תקציר RSS</comment>
+ <comment xml:lang="gl">Resumo RSS</comment>
+ <comment xml:lang="ga">achoimre RSS</comment>
+ <comment xml:lang="fur">somari RSS</comment>
+ <comment xml:lang="fr">résumé RSS</comment>
+ <comment xml:lang="fo">RSS samandráttur</comment>
+ <comment xml:lang="fi">RSS-tiivistelmä</comment>
+ <comment xml:lang="eu">RSS laburpena</comment>
+ <comment xml:lang="es">suministro RSS</comment>
+ <comment xml:lang="en_GB">RSS summary</comment>
+ <comment xml:lang="el">Σύνοψη RSS</comment>
+ <comment xml:lang="de">RSS-Zusammenfassung</comment>
+ <comment xml:lang="da">RSS-sammendrag</comment>
+ <comment xml:lang="cs">souhrn RSS</comment>
+ <comment xml:lang="ca">resum RSS</comment>
+ <comment xml:lang="bg">Обобщение за сайтове — RSS</comment>
+ <comment xml:lang="be@latin">Karotki ahlad RSS</comment>
+ <comment xml:lang="be">зводка RSS</comment>
+ <comment xml:lang="ar">ملخص RSS</comment>
+ <comment xml:lang="af">RSS-opsomming</comment>
<acronym>RSS</acronym>
<expanded-acronym>RDF Site Summary</expanded-acronym>
<alias type="text/rss"/>
@@ -32293,172 +34298,187 @@
<generic-icon name="text-html"/>
<glob pattern="*.rss"/>
<magic priority="70">
- <match value="&lt;rss " type="string" offset="0:256"/>
- <match value="&lt;RSS " type="string" offset="0:256"/>
+ <match type="string" value="&lt;rss " offset="0:256"/>
+ <match type="string" value="&lt;RSS " offset="0:256"/>
</magic>
</mime-type>
<mime-type type="application/atom+xml">
<comment>Atom syndication feed</comment>
- <comment xml:lang="ar">مروج تغذية Atom</comment>
- <comment xml:lang="be@latin">Syndykacyjny kanał navinaŭ Atom</comment>
- <comment xml:lang="bg">Емисия — Atom</comment>
- <comment xml:lang="ca">canal de sindicació Atom</comment>
- <comment xml:lang="cs">kanál Atom</comment>
- <comment xml:lang="da">Atom syndication-feed</comment>
- <comment xml:lang="de">Atom-Nachrichtenquelle</comment>
- <comment xml:lang="el">Τροφοδοσία διανομής Atom</comment>
- <comment xml:lang="en_GB">Atom syndication feed</comment>
- <comment xml:lang="es">canal de noticias Atom</comment>
- <comment xml:lang="eu">Atom harpidetze-iturria</comment>
- <comment xml:lang="fi">Atom-yhdistevirta</comment>
- <comment xml:lang="fr">fil de syndication Atom</comment>
- <comment xml:lang="ga">fotha sindeacáitithe Atom</comment>
- <comment xml:lang="gl">fonte de sindicación Atom</comment>
- <comment xml:lang="he">הזנה דרך הרשת של Atom</comment>
- <comment xml:lang="hr">Atom kanal objavljivanja</comment>
- <comment xml:lang="hu">Atom egyesítőfolyam</comment>
- <comment xml:lang="ia">Fluxo de syndication Atom</comment>
- <comment xml:lang="id">Umpan sindikasi Atom</comment>
- <comment xml:lang="it">Feed di distribuzione Atom</comment>
- <comment xml:lang="ja">Atom 配信フィード</comment>
- <comment xml:lang="kk">Atom жаңалықтар таспасы</comment>
- <comment xml:lang="ko">Atom 묶음 피드</comment>
- <comment xml:lang="lt">Atom sindikacijos kanalas</comment>
- <comment xml:lang="lv">Atom sindikāta barotne</comment>
- <comment xml:lang="nb">Atom syndikeringsstrøm</comment>
- <comment xml:lang="nl">Atom-syndicatie-feed</comment>
- <comment xml:lang="nn">Atom-kjelde</comment>
- <comment xml:lang="oc">fial de sindicacion Atom</comment>
- <comment xml:lang="pl">Kanał Atom</comment>
- <comment xml:lang="pt">feed Atom</comment>
- <comment xml:lang="pt_BR">Fonte de notícias Atom</comment>
- <comment xml:lang="ro">Flux agregare Atom</comment>
- <comment xml:lang="ru">Лента новостей Atom</comment>
- <comment xml:lang="sk">Kanál Atom</comment>
- <comment xml:lang="sl">Sindikalni vir Atom</comment>
- <comment xml:lang="sq">Feed për përhapje Atom</comment>
- <comment xml:lang="sr">Атомов довод синдикализације</comment>
- <comment xml:lang="sv">Atom-syndikeringskanal</comment>
- <comment xml:lang="tr">Atom besleme kaynağı</comment>
- <comment xml:lang="uk">трансляція подач Atom</comment>
- <comment xml:lang="vi">Nguồn tin tức Atom</comment>
- <comment xml:lang="zh_CN">Atom 聚合种子</comment>
<comment xml:lang="zh_TW">Atom 聯合供稿饋流</comment>
+ <comment xml:lang="zh_CN">Atom 聚合种子</comment>
+ <comment xml:lang="vi">Nguồn tin tức Atom</comment>
+ <comment xml:lang="uk">трансляція подач Atom</comment>
+ <comment xml:lang="tr">Atom besleme kaynağı</comment>
+ <comment xml:lang="sv">Atom-syndikeringskanal</comment>
+ <comment xml:lang="sr">Атомов довод синдикализације</comment>
+ <comment xml:lang="sq">prurje RSS Atom</comment>
+ <comment xml:lang="sl">Sindikalni vir Atom</comment>
+ <comment xml:lang="si">පරමාණු සින්ඩිකේෂන් පෝෂණය</comment>
+ <comment xml:lang="sk">Kanál Atom</comment>
+ <comment xml:lang="ru">Лента новостей Atom</comment>
+ <comment xml:lang="ro">Flux agregare Atom</comment>
+ <comment xml:lang="pt_BR">Fonte de notícias Atom</comment>
+ <comment xml:lang="pt">feed Atom</comment>
+ <comment xml:lang="pl">Kanał Atom</comment>
+ <comment xml:lang="oc">fial de sindicacion Atom</comment>
+ <comment xml:lang="nn">Atom-kjelde</comment>
+ <comment xml:lang="nl">Atom-syndicatie-feed</comment>
+ <comment xml:lang="nb">Atom syndikeringsstrøm</comment>
+ <comment xml:lang="lv">Atom sindikāta barotne</comment>
+ <comment xml:lang="lt">Atom sindikacijos kanalas</comment>
+ <comment xml:lang="ko">Atom 묶음 피드</comment>
+ <comment xml:lang="kk">Atom жаңалықтар таспасы</comment>
+ <comment xml:lang="ja">Atom 配信フィード</comment>
+ <comment xml:lang="it">Feed di distribuzione Atom</comment>
+ <comment xml:lang="is">Atom fréttastreymi</comment>
+ <comment xml:lang="id">Umpan sindikasi Atom</comment>
+ <comment xml:lang="ia">Fluxo de syndication Atom</comment>
+ <comment xml:lang="hu">Atom egyesítőfolyam</comment>
+ <comment xml:lang="hr">Atom kanal objavljivanja</comment>
+ <comment xml:lang="he">הזנה דרך הרשת של Atom</comment>
+ <comment xml:lang="gl">fonte de sindicación Atom</comment>
+ <comment xml:lang="ga">fotha sindeacáitithe Atom</comment>
+ <comment xml:lang="fur">canâl di notiziis Atom</comment>
+ <comment xml:lang="fr">fil de syndication Atom</comment>
+ <comment xml:lang="fi">Atom-yhdistevirta</comment>
+ <comment xml:lang="eu">Atom harpidetze-iturria</comment>
+ <comment xml:lang="es">suministro de sindicación Atom</comment>
+ <comment xml:lang="en_GB">Atom syndication feed</comment>
+ <comment xml:lang="el">Τροφοδοσία διανομής Atom</comment>
+ <comment xml:lang="de">Atom-Nachrichtenquelle</comment>
+ <comment xml:lang="da">Atom-syndikeringsfeed</comment>
+ <comment xml:lang="cs">kanál Atom</comment>
+ <comment xml:lang="ca">canal de sindicació Atom</comment>
+ <comment xml:lang="bg">Емисия — Atom</comment>
+ <comment xml:lang="be@latin">Syndykacyjny kanał navinaŭ Atom</comment>
+ <comment xml:lang="be">канал сіндыкацыі Atom</comment>
+ <comment xml:lang="ar">مروج تغذية Atom</comment>
<sub-class-of type="application/xml"/>
<generic-icon name="text-html"/>
<glob pattern="*.atom"/>
<magic priority="70">
- <match value="&lt;feed " type="string" offset="0:256"/>
+ <match type="string" value="&lt;feed " offset="0:256"/>
</magic>
<root-XML namespaceURI="http://www.w3.org/2005/Atom" localName="feed"/>
</mime-type>
<mime-type type="text/x-opml+xml">
<comment>OPML syndication feed</comment>
- <comment xml:lang="ar">مروج تغذية OPML</comment>
- <comment xml:lang="be@latin">Syndykacyjny kanał OPML</comment>
- <comment xml:lang="bg">Емисия — OPML</comment>
- <comment xml:lang="ca">canal de sindicació OPML</comment>
- <comment xml:lang="cs">kanál OPML</comment>
- <comment xml:lang="da">OPML-syndikeringsfeed</comment>
- <comment xml:lang="de">OPML-Nachrichtenquelle</comment>
- <comment xml:lang="el">Τροφοδοσία OPML</comment>
- <comment xml:lang="en_GB">OPML syndication feed</comment>
- <comment xml:lang="es">canal de noticias OPML</comment>
- <comment xml:lang="eu">OPML harpidetze-iturria</comment>
- <comment xml:lang="fi">OPML-yhdistevirta</comment>
- <comment xml:lang="fr">fil de syndication OPML</comment>
- <comment xml:lang="ga">fotha sindeacáitithe OPML</comment>
- <comment xml:lang="gl">fonte de sindicación OPML</comment>
- <comment xml:lang="he">הזנה דרך הרשת OPML</comment>
- <comment xml:lang="hr">OPML kanal objavljivanja</comment>
- <comment xml:lang="hu">OPML egyesítőfolyam</comment>
- <comment xml:lang="ia">Fluxo de syndication OPML</comment>
- <comment xml:lang="id">Umpan sindikasi OPML</comment>
- <comment xml:lang="it">Feed di distribuzione OPML</comment>
- <comment xml:lang="ja">OPML 配信フィード</comment>
- <comment xml:lang="kk">OPML жаңалықтар таспасы</comment>
- <comment xml:lang="ko">OPML 묶음 피드</comment>
- <comment xml:lang="lt">OPML sindikacijos kanalas</comment>
- <comment xml:lang="lv">OPML sindikāta barotne</comment>
- <comment xml:lang="nb">OPML syndikeringsstrøm</comment>
- <comment xml:lang="nl">OPML-syndicatie-feed</comment>
- <comment xml:lang="nn">OPML-kjelde</comment>
- <comment xml:lang="oc">fial de sindicacion OPML</comment>
- <comment xml:lang="pl">Kanał OPML</comment>
- <comment xml:lang="pt">feed OPML</comment>
- <comment xml:lang="pt_BR">Fonte de notícias OPML</comment>
- <comment xml:lang="ro">Flux OPML syndication</comment>
- <comment xml:lang="ru">Лента новостей OPML</comment>
- <comment xml:lang="sk">Kanál OPML</comment>
- <comment xml:lang="sl">Sindikalni vir OPML</comment>
- <comment xml:lang="sq">Feed për përhapje OPML</comment>
- <comment xml:lang="sr">ОМПЛ довод синдикализације</comment>
- <comment xml:lang="sv">OPML-syndikeringskanal</comment>
- <comment xml:lang="tr">OPML besleme kaynağı</comment>
- <comment xml:lang="uk">трансляція подач OPML</comment>
- <comment xml:lang="vi">Nguồn tin tức OPML</comment>
- <comment xml:lang="zh_CN">OPML 聚合种子</comment>
<comment xml:lang="zh_TW">OPML 聯合供稿饋流</comment>
+ <comment xml:lang="zh_CN">OPML 聚合种子</comment>
+ <comment xml:lang="vi">Nguồn tin tức OPML</comment>
+ <comment xml:lang="uk">трансляція подач OPML</comment>
+ <comment xml:lang="tr">OPML besleme kaynağı</comment>
+ <comment xml:lang="sv">OPML-syndikeringskanal</comment>
+ <comment xml:lang="sr">ОМПЛ довод синдикализације</comment>
+ <comment xml:lang="sq">Prurje RSS OPML</comment>
+ <comment xml:lang="sl">Sindikalni vir OPML</comment>
+ <comment xml:lang="si">OPML සින්ඩිකේෂන් සංග්‍රහය</comment>
+ <comment xml:lang="sk">Kanál OPML</comment>
+ <comment xml:lang="ru">Лента новостей OPML</comment>
+ <comment xml:lang="ro">Flux OPML syndication</comment>
+ <comment xml:lang="pt_BR">Fonte de notícias OPML</comment>
+ <comment xml:lang="pt">feed OPML</comment>
+ <comment xml:lang="pl">Kanał OPML</comment>
+ <comment xml:lang="oc">fial de sindicacion OPML</comment>
+ <comment xml:lang="nn">OPML-kjelde</comment>
+ <comment xml:lang="nl">OPML-syndicatie-feed</comment>
+ <comment xml:lang="nb">OPML syndikeringsstrøm</comment>
+ <comment xml:lang="lv">OPML sindikāta barotne</comment>
+ <comment xml:lang="lt">OPML sindikacijos kanalas</comment>
+ <comment xml:lang="ko">OPML 묶음 피드</comment>
+ <comment xml:lang="kk">OPML жаңалықтар таспасы</comment>
+ <comment xml:lang="ja">OPML 配信フィード</comment>
+ <comment xml:lang="it">Feed di distribuzione OPML</comment>
+ <comment xml:lang="is">OPML fréttastreymi</comment>
+ <comment xml:lang="id">Umpan sindikasi OPML</comment>
+ <comment xml:lang="ia">Fluxo de syndication OPML</comment>
+ <comment xml:lang="hu">OPML egyesítőfolyam</comment>
+ <comment xml:lang="hr">OPML kanal objavljivanja</comment>
+ <comment xml:lang="he">הזנה דרך הרשת OPML</comment>
+ <comment xml:lang="gl">fonte de sindicación OPML</comment>
+ <comment xml:lang="ga">fotha sindeacáitithe OPML</comment>
+ <comment xml:lang="fur">canâl di notiziis OPML</comment>
+ <comment xml:lang="fr">fil de syndication OPML</comment>
+ <comment xml:lang="fi">OPML-yhdistevirta</comment>
+ <comment xml:lang="eu">OPML harpidetze-iturria</comment>
+ <comment xml:lang="es">suministro de sindicación OPML</comment>
+ <comment xml:lang="en_GB">OPML syndication feed</comment>
+ <comment xml:lang="el">Τροφοδοσία OPML</comment>
+ <comment xml:lang="de">OPML-Nachrichtenquelle</comment>
+ <comment xml:lang="da">OPML-syndikeringsfeed</comment>
+ <comment xml:lang="cs">kanál OPML</comment>
+ <comment xml:lang="ca">canal de sindicació OPML</comment>
+ <comment xml:lang="bg">Емисия — OPML</comment>
+ <comment xml:lang="be@latin">Syndykacyjny kanał OPML</comment>
+ <comment xml:lang="be">канал сіндыкацыі OPML</comment>
+ <comment xml:lang="ar">مروج تغذية OPML</comment>
+ <acronym>OPML</acronym>
+ <expanded-acronym>Outline Processor Markup Language</expanded-acronym>
<sub-class-of type="application/xml"/>
<alias type="text/x-opml"/>
<generic-icon name="text-html"/>
<glob pattern="*.opml"/>
<magic priority="70">
- <match value="&lt;opml " type="string" offset="0:256"/>
+ <match type="string" value="&lt;opml " offset="0:256"/>
</magic>
</mime-type>
<mime-type type="text/sgml">
<comment>SGML document</comment>
- <comment xml:lang="ar">مستند SGML</comment>
- <comment xml:lang="ast">Documentu SGML</comment>
- <comment xml:lang="be@latin">Dakument SGML</comment>
- <comment xml:lang="bg">Документ — SGML</comment>
- <comment xml:lang="ca">document SGML</comment>
- <comment xml:lang="cs">dokument SGML</comment>
- <comment xml:lang="cy">Dogfen SGML</comment>
- <comment xml:lang="da">SGML-dokument</comment>
- <comment xml:lang="de">SGML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο SGML</comment>
- <comment xml:lang="en_GB">SGML document</comment>
- <comment xml:lang="eo">SGML-dokumento</comment>
- <comment xml:lang="es">documento SGML</comment>
- <comment xml:lang="eu">SGML dokumentua</comment>
- <comment xml:lang="fi">SGML-asiakirja</comment>
- <comment xml:lang="fo">SGML skjal</comment>
- <comment xml:lang="fr">document SGML</comment>
- <comment xml:lang="ga">cáipéis SGML</comment>
- <comment xml:lang="gl">documento SGML</comment>
- <comment xml:lang="he">מסמך SGML</comment>
- <comment xml:lang="hr">SGML dokument</comment>
- <comment xml:lang="hu">SGML-dokumentum</comment>
- <comment xml:lang="ia">Documento SGML</comment>
- <comment xml:lang="id">Dokumen SGML</comment>
- <comment xml:lang="it">Documento SGML</comment>
- <comment xml:lang="ja">SGML ドキュメント</comment>
- <comment xml:lang="kk">SGML құжаты</comment>
- <comment xml:lang="ko">SGML 문서</comment>
- <comment xml:lang="lt">SGML dokumentas</comment>
- <comment xml:lang="lv">SGML dokuments</comment>
- <comment xml:lang="ms">Dokumen SGML</comment>
- <comment xml:lang="nb">SGML-dokument</comment>
- <comment xml:lang="nl">SGML-document</comment>
- <comment xml:lang="nn">SGML-dokument</comment>
- <comment xml:lang="oc">document SGML</comment>
- <comment xml:lang="pl">Dokument SGML</comment>
- <comment xml:lang="pt">documento SGML</comment>
- <comment xml:lang="pt_BR">Documento SGML</comment>
- <comment xml:lang="ro">Document SGML</comment>
- <comment xml:lang="ru">Документ SGML</comment>
- <comment xml:lang="sk">Dokument SGML</comment>
- <comment xml:lang="sl">Dokument SGML</comment>
- <comment xml:lang="sq">Dokument SGML</comment>
- <comment xml:lang="sr">СГМЛ документ</comment>
- <comment xml:lang="sv">SGML-dokument</comment>
- <comment xml:lang="tr">SGML belgesi</comment>
- <comment xml:lang="uk">документ SGML</comment>
- <comment xml:lang="vi">Tài liệu SGML</comment>
- <comment xml:lang="zh_CN">SGML 文档</comment>
<comment xml:lang="zh_TW">SGML 文件</comment>
+ <comment xml:lang="zh_CN">SGML 文档</comment>
+ <comment xml:lang="vi">Tài liệu SGML</comment>
+ <comment xml:lang="uk">документ SGML</comment>
+ <comment xml:lang="tr">SGML belgesi</comment>
+ <comment xml:lang="sv">SGML-dokument</comment>
+ <comment xml:lang="sr">СГМЛ документ</comment>
+ <comment xml:lang="sq">dokument SGML</comment>
+ <comment xml:lang="sl">Dokument SGML</comment>
+ <comment xml:lang="si">SGML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument SGML</comment>
+ <comment xml:lang="ru">Документ SGML</comment>
+ <comment xml:lang="ro">Document SGML</comment>
+ <comment xml:lang="pt_BR">Documento SGML</comment>
+ <comment xml:lang="pt">documento SGML</comment>
+ <comment xml:lang="pl">Dokument SGML</comment>
+ <comment xml:lang="oc">document SGML</comment>
+ <comment xml:lang="nn">SGML-dokument</comment>
+ <comment xml:lang="nl">SGML-document</comment>
+ <comment xml:lang="nb">SGML-dokument</comment>
+ <comment xml:lang="ms">Dokumen SGML</comment>
+ <comment xml:lang="lv">SGML dokuments</comment>
+ <comment xml:lang="lt">SGML dokumentas</comment>
+ <comment xml:lang="ko">SGML 문서</comment>
+ <comment xml:lang="kk">SGML құжаты</comment>
+ <comment xml:lang="ja">SGML ドキュメント</comment>
+ <comment xml:lang="it">Documento SGML</comment>
+ <comment xml:lang="is">SGML skjal</comment>
+ <comment xml:lang="id">Dokumen SGML</comment>
+ <comment xml:lang="ia">Documento SGML</comment>
+ <comment xml:lang="hu">SGML-dokumentum</comment>
+ <comment xml:lang="hr">SGML dokument</comment>
+ <comment xml:lang="he">מסמך SGML</comment>
+ <comment xml:lang="gl">documento SGML</comment>
+ <comment xml:lang="ga">cáipéis SGML</comment>
+ <comment xml:lang="fur">document SGML</comment>
+ <comment xml:lang="fr">document SGML</comment>
+ <comment xml:lang="fo">SGML skjal</comment>
+ <comment xml:lang="fi">SGML-asiakirja</comment>
+ <comment xml:lang="eu">SGML dokumentua</comment>
+ <comment xml:lang="es">documento SGML</comment>
+ <comment xml:lang="eo">SGML-dokumento</comment>
+ <comment xml:lang="en_GB">SGML document</comment>
+ <comment xml:lang="el">Έγγραφο SGML</comment>
+ <comment xml:lang="de">SGML-Dokument</comment>
+ <comment xml:lang="da">SGML-dokument</comment>
+ <comment xml:lang="cy">Dogfen SGML</comment>
+ <comment xml:lang="cs">dokument SGML</comment>
+ <comment xml:lang="ca">document SGML</comment>
+ <comment xml:lang="bg">Документ — SGML</comment>
+ <comment xml:lang="be@latin">Dakument SGML</comment>
+ <comment xml:lang="be">дакумент SGML</comment>
+ <comment xml:lang="ast">Documentu SGML</comment>
+ <comment xml:lang="ar">مستند SGML</comment>
+ <comment xml:lang="af">SGML-dokument</comment>
<acronym>SGML</acronym>
<expanded-acronym>Standard Generalized Markup Language</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -32466,110 +34486,76 @@
<glob pattern="*.sgm"/>
</mime-type>
<mime-type type="text/spreadsheet">
- <comment>spreadsheet interchange document</comment>
- <comment xml:lang="ar">مستند تبادل الجدول</comment>
- <comment xml:lang="ast">documentu d'intercambéu de fueyes de cálculu</comment>
- <comment xml:lang="be@latin">dakument dla abmienu raźlikovymi arkušami</comment>
- <comment xml:lang="bg">Документ за обмяна между програми за електронни таблици</comment>
- <comment xml:lang="ca">document d'intercanvi de full de càlcul</comment>
- <comment xml:lang="cs">sešitový výměnný dokument</comment>
- <comment xml:lang="da">regnearksudvekslingsdokument</comment>
- <comment xml:lang="de">Tabellenkalkulations-Austauschdokument</comment>
- <comment xml:lang="el">Έγγραφο ανταλλαγής λογιστικού φύλλου</comment>
- <comment xml:lang="en_GB">spreadsheet interchange document</comment>
- <comment xml:lang="es">documento de intercambio de hojas de cálculo</comment>
- <comment xml:lang="eu">kalkulu-orriak trukatzeko dokumentua</comment>
- <comment xml:lang="fi">taulukkovälitysasiakirja</comment>
- <comment xml:lang="fo">rokniarks umbýtisskjal</comment>
- <comment xml:lang="fr">document d'échange de feuilles de calcul</comment>
- <comment xml:lang="ga">cáipéis idirmhalartaithe scarbhileog</comment>
- <comment xml:lang="gl">documento de intercambio de follas de cálculo</comment>
- <comment xml:lang="he">מסמך גליון נתונים מתחלף</comment>
- <comment xml:lang="hr">Dokument razmjene proračunske tablice</comment>
- <comment xml:lang="hu">spreadsheet-cserélhetődokumentum</comment>
- <comment xml:lang="ia">Documento de intercambio de folio de calculo</comment>
- <comment xml:lang="id">dokumen lembar sebar saling tukar</comment>
- <comment xml:lang="it">Documento di scambio per foglio di calcolo</comment>
- <comment xml:lang="ja">スプレッドシート交換ドキュメント</comment>
- <comment xml:lang="kk">spreadsheet interchange құжаты</comment>
- <comment xml:lang="ko">스프레드시트 교환 문서</comment>
- <comment xml:lang="lt">skaičialenčių apsikeitimo dokumentas</comment>
- <comment xml:lang="lv">izklājlapu apmaiņas dokuments</comment>
- <comment xml:lang="nb">dokument for regnearkutveksling</comment>
- <comment xml:lang="nl">rekenblad-uitwisselingsdocument</comment>
- <comment xml:lang="nn">Utvekslingsdokument for rekneark</comment>
- <comment xml:lang="oc">document d'escambi de fuèlhs de calcul</comment>
- <comment xml:lang="pl">Dokument wymiany arkuszy kalkulacyjnych</comment>
- <comment xml:lang="pt">documento de troca interna de folhas de cálculo</comment>
- <comment xml:lang="pt_BR">Documento de intercâmbio de planilhas</comment>
- <comment xml:lang="ro">document schimb filă de calcul</comment>
- <comment xml:lang="ru">Документ Spreadsheet Interchange</comment>
- <comment xml:lang="sk">Zošitový prenosový dokument</comment>
- <comment xml:lang="sl">dokument izmenjeve preglednic</comment>
- <comment xml:lang="sq">Dokument shkëmbimi për fletë llogaritje</comment>
- <comment xml:lang="sr">документ размене табеле</comment>
- <comment xml:lang="sv">spreadsheet interchange-dokument</comment>
- <comment xml:lang="tr">hesap tablosu değişim belgesi</comment>
+ <comment>Spreadsheet interchange document</comment>
<comment xml:lang="uk">документ обміну ел. таблицями</comment>
- <comment xml:lang="vi">tài liệu hoán đổi bảng tính</comment>
- <comment xml:lang="zh_CN">电子表格交换文档</comment>
- <comment xml:lang="zh_TW">試算表交換文件</comment>
+ <comment xml:lang="sv">Spreadsheet interchange-dokument</comment>
+ <comment xml:lang="ru">Документ Spreadsheet Interchange</comment>
+ <comment xml:lang="pl">Dokument wymiany arkuszy kalkulacyjnych</comment>
+ <comment xml:lang="it">Documento di scambio per foglio di calcolo</comment>
+ <comment xml:lang="es">documento de intercambio de hojas de cálculo</comment>
+ <comment xml:lang="de">Tabellenkalkulations-Austauschdokument</comment>
+ <comment xml:lang="be">дакумент для абмену электроннымі табліцамі</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="ID;" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="ID;" offset="0"/>
</magic>
<glob pattern="*.sylk"/>
<glob pattern="*.slk"/>
</mime-type>
<mime-type type="text/tab-separated-values">
<comment>TSV document</comment>
- <comment xml:lang="ar">مستند TSV</comment>
- <comment xml:lang="ast">Documentu TSV</comment>
- <comment xml:lang="be@latin">Dakument TSV</comment>
- <comment xml:lang="bg">Документ — TSV</comment>
- <comment xml:lang="ca">document TSV</comment>
- <comment xml:lang="cs">dokument TSV</comment>
- <comment xml:lang="da">TSV-dokument</comment>
- <comment xml:lang="de">TSV-Dokument</comment>
- <comment xml:lang="el">Έγγραφο TSV</comment>
- <comment xml:lang="en_GB">TSV document</comment>
- <comment xml:lang="es">documento TSV</comment>
- <comment xml:lang="eu">TSV dokumentua</comment>
- <comment xml:lang="fi">TSV-asiakirja</comment>
- <comment xml:lang="fo">TSV skjal</comment>
- <comment xml:lang="fr">document TSV</comment>
- <comment xml:lang="ga">cáipéis TSV</comment>
- <comment xml:lang="gl">documento TSV</comment>
- <comment xml:lang="he">מסמך TSV</comment>
- <comment xml:lang="hr">TSV dokument</comment>
- <comment xml:lang="hu">TSV dokumentum</comment>
- <comment xml:lang="ia">Documento TSV</comment>
- <comment xml:lang="id">Dokumen TSV</comment>
- <comment xml:lang="it">Documento TSV</comment>
- <comment xml:lang="ja">TSV ドキュメント</comment>
- <comment xml:lang="kk">TSV құжаты</comment>
- <comment xml:lang="ko">TSV 문서</comment>
- <comment xml:lang="lt">TSV dokumentas</comment>
- <comment xml:lang="lv">TSV dokuments</comment>
- <comment xml:lang="nb">TSV-dokument</comment>
- <comment xml:lang="nl">TSV-document</comment>
- <comment xml:lang="nn">TSV-dokument</comment>
- <comment xml:lang="oc">document TSV</comment>
- <comment xml:lang="pl">Dokument TSV</comment>
- <comment xml:lang="pt">documento TSV</comment>
- <comment xml:lang="pt_BR">Documento TSV</comment>
- <comment xml:lang="ro">Document TSV</comment>
- <comment xml:lang="ru">Документ TSV</comment>
- <comment xml:lang="sk">Dokument TSV</comment>
- <comment xml:lang="sl">Dokument TSV</comment>
- <comment xml:lang="sq">Dokument TSV</comment>
- <comment xml:lang="sr">ТСВ документ</comment>
- <comment xml:lang="sv">TSV-dokument</comment>
- <comment xml:lang="tr">TSV belgesi</comment>
- <comment xml:lang="uk">документ TSV</comment>
- <comment xml:lang="vi">Tài liệu TSV</comment>
- <comment xml:lang="zh_CN">TSV 文档</comment>
<comment xml:lang="zh_TW">TSV 文件</comment>
+ <comment xml:lang="zh_CN">TSV 文档</comment>
+ <comment xml:lang="vi">Tài liệu TSV</comment>
+ <comment xml:lang="uk">документ TSV</comment>
+ <comment xml:lang="tr">TSV belgesi</comment>
+ <comment xml:lang="sv">TSV-dokument</comment>
+ <comment xml:lang="sr">ТСВ документ</comment>
+ <comment xml:lang="sq">dokument TSV</comment>
+ <comment xml:lang="sl">Dokument TSV</comment>
+ <comment xml:lang="si">TSV ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument TSV</comment>
+ <comment xml:lang="ru">Документ TSV</comment>
+ <comment xml:lang="ro">Document TSV</comment>
+ <comment xml:lang="pt_BR">Documento TSV</comment>
+ <comment xml:lang="pt">documento TSV</comment>
+ <comment xml:lang="pl">Dokument TSV</comment>
+ <comment xml:lang="oc">document TSV</comment>
+ <comment xml:lang="nn">TSV-dokument</comment>
+ <comment xml:lang="nl">TSV-document</comment>
+ <comment xml:lang="nb">TSV-dokument</comment>
+ <comment xml:lang="lv">TSV dokuments</comment>
+ <comment xml:lang="lt">TSV dokumentas</comment>
+ <comment xml:lang="ko">TSV 문서</comment>
+ <comment xml:lang="kk">TSV құжаты</comment>
+ <comment xml:lang="ja">TSV ドキュメント</comment>
+ <comment xml:lang="it">Documento TSV</comment>
+ <comment xml:lang="is">TSV skjal</comment>
+ <comment xml:lang="id">Dokumen TSV</comment>
+ <comment xml:lang="ia">Documento TSV</comment>
+ <comment xml:lang="hu">TSV dokumentum</comment>
+ <comment xml:lang="hr">TSV dokument</comment>
+ <comment xml:lang="he">מסמך TSV</comment>
+ <comment xml:lang="gl">documento TSV</comment>
+ <comment xml:lang="ga">cáipéis TSV</comment>
+ <comment xml:lang="fur">document TSV</comment>
+ <comment xml:lang="fr">document TSV</comment>
+ <comment xml:lang="fo">TSV skjal</comment>
+ <comment xml:lang="fi">TSV-asiakirja</comment>
+ <comment xml:lang="eu">TSV dokumentua</comment>
+ <comment xml:lang="es">documento TSV</comment>
+ <comment xml:lang="en_GB">TSV document</comment>
+ <comment xml:lang="el">Έγγραφο TSV</comment>
+ <comment xml:lang="de">TSV-Dokument</comment>
+ <comment xml:lang="da">TSV-dokument</comment>
+ <comment xml:lang="cs">dokument TSV</comment>
+ <comment xml:lang="ca">document TSV</comment>
+ <comment xml:lang="bg">Документ — TSV</comment>
+ <comment xml:lang="be@latin">Dakument TSV</comment>
+ <comment xml:lang="be">дакумент TSV</comment>
+ <comment xml:lang="ast">Documentu TSV</comment>
+ <comment xml:lang="ar">مستند TSV</comment>
+ <comment xml:lang="af">TSV-dokument</comment>
<acronym>TSV</acronym>
<expanded-acronym>Tab Separated Values</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -32577,168 +34563,186 @@
</mime-type>
<mime-type type="text/vnd.graphviz">
<comment>Graphviz DOT graph</comment>
- <comment xml:lang="ar">مبيان Graphviz DOT</comment>
- <comment xml:lang="bg">Граф — Graphviz DOT</comment>
- <comment xml:lang="ca">gràfic Graphviz DOT</comment>
- <comment xml:lang="cs">graf Graphviz DOT</comment>
- <comment xml:lang="da">Graphviz DOT-graf</comment>
- <comment xml:lang="de">Graphviz-DOT-Graph</comment>
- <comment xml:lang="el">Γράφημα Graphviz DOT</comment>
- <comment xml:lang="en_GB">Graphviz DOT graph</comment>
- <comment xml:lang="es">gráfico de Graphviz DOT</comment>
- <comment xml:lang="eu">Graphviz DOT grafikoa</comment>
- <comment xml:lang="fi">Graphviz DOT -graafi</comment>
- <comment xml:lang="fo">Graphviz DOT ritmynd</comment>
- <comment xml:lang="fr">graphe Graphviz DOT</comment>
- <comment xml:lang="ga">graf DOT Graphviz</comment>
- <comment xml:lang="gl">gráfica DOT de Graphviz</comment>
- <comment xml:lang="he">תרשים של Graphviz DOT</comment>
- <comment xml:lang="hr">Graphviz DOT grafikon</comment>
- <comment xml:lang="hu">Graphviz DOT-grafikon</comment>
- <comment xml:lang="ia">Graphico DOT de Graphviz</comment>
- <comment xml:lang="id">Grafik Graphviz DOT</comment>
- <comment xml:lang="it">Grafico Graphviz DOT</comment>
- <comment xml:lang="ja">Graphviz DOT グラフ</comment>
- <comment xml:lang="kk">Graphviz DOT сызбасы</comment>
- <comment xml:lang="ko">Graphviz DOT 그래프</comment>
- <comment xml:lang="lt">Graphviz DOT diagrama</comment>
- <comment xml:lang="lv">Graphviz DOT grafiks</comment>
- <comment xml:lang="nl">Graphviz wetenschappelijke grafiek</comment>
- <comment xml:lang="oc">graf Graphviz DOT</comment>
- <comment xml:lang="pl">Wykres DOT Graphviz</comment>
- <comment xml:lang="pt">gráfico Graphviz DOT</comment>
- <comment xml:lang="pt_BR">Gráfico do Graphviz DOT</comment>
- <comment xml:lang="ro">Grafic Graphviz DOT</comment>
- <comment xml:lang="ru">Диаграмма Graphviz DOT</comment>
- <comment xml:lang="sk">Graf Graphviz DOT</comment>
- <comment xml:lang="sl">Datoteka grafikona Graphviz DOT</comment>
- <comment xml:lang="sr">график Графвиз ДОТ-а</comment>
- <comment xml:lang="sv">Graphviz DOT-graf</comment>
- <comment xml:lang="tr">Graphviz DOT grafiği</comment>
- <comment xml:lang="uk">граф DOT Graphviz</comment>
- <comment xml:lang="vi">Biểu đồ DOT Graphviz</comment>
+ <comment xml:lang="zh_TW">Graphviz DOT 圖表</comment>
<comment xml:lang="zh_CN">Graphviz DOT 图形</comment>
- <comment xml:lang="zh_TW">Graphviz DOT 圖</comment>
+ <comment xml:lang="vi">Biểu đồ DOT Graphviz</comment>
+ <comment xml:lang="uk">граф DOT Graphviz</comment>
+ <comment xml:lang="tr">Graphviz DOT grafiği</comment>
+ <comment xml:lang="sv">Graphviz DOT-graf</comment>
+ <comment xml:lang="sr">график Графвиз ДОТ-а</comment>
+ <comment xml:lang="sq">grafik Graphviz DOT</comment>
+ <comment xml:lang="sl">Datoteka grafikona Graphviz DOT</comment>
+ <comment xml:lang="si">Graphviz DOT ප්‍රස්ථාරය</comment>
+ <comment xml:lang="sk">Graf Graphviz DOT</comment>
+ <comment xml:lang="ru">Диаграмма Graphviz DOT</comment>
+ <comment xml:lang="ro">Grafic Graphviz DOT</comment>
+ <comment xml:lang="pt_BR">Gráfico do Graphviz DOT</comment>
+ <comment xml:lang="pt">gráfico Graphviz DOT</comment>
+ <comment xml:lang="pl">Wykres DOT Graphviz</comment>
+ <comment xml:lang="oc">graf Graphviz DOT</comment>
+ <comment xml:lang="nl">Graphviz DOT-grafiek</comment>
+ <comment xml:lang="lv">Graphviz DOT grafiks</comment>
+ <comment xml:lang="lt">Graphviz DOT diagrama</comment>
+ <comment xml:lang="ko">Graphviz DOT 그래프</comment>
+ <comment xml:lang="kk">Graphviz DOT сызбасы</comment>
+ <comment xml:lang="ja">Graphviz DOT グラフ</comment>
+ <comment xml:lang="it">Grafico Graphviz DOT</comment>
+ <comment xml:lang="is">Graphviz DOT punktgraf</comment>
+ <comment xml:lang="id">Grafik Graphviz DOT</comment>
+ <comment xml:lang="ia">Graphico DOT de Graphviz</comment>
+ <comment xml:lang="hu">Graphviz DOT-grafikon</comment>
+ <comment xml:lang="hr">Graphviz DOT grafikon</comment>
+ <comment xml:lang="he">תרשים של Graphviz DOT</comment>
+ <comment xml:lang="gl">gráfica DOT de Graphviz</comment>
+ <comment xml:lang="ga">graf DOT Graphviz</comment>
+ <comment xml:lang="fur">grafic Graphviz DOT</comment>
+ <comment xml:lang="fr">graphe Graphviz DOT</comment>
+ <comment xml:lang="fo">Graphviz DOT ritmynd</comment>
+ <comment xml:lang="fi">Graphviz DOT -graafi</comment>
+ <comment xml:lang="eu">Graphviz DOT grafikoa</comment>
+ <comment xml:lang="es">gráfico de Graphviz DOT</comment>
+ <comment xml:lang="en_GB">Graphviz DOT graph</comment>
+ <comment xml:lang="el">Γράφημα Graphviz DOT</comment>
+ <comment xml:lang="de">Graphviz-DOT-Graph</comment>
+ <comment xml:lang="da">Graphviz DOT-graf</comment>
+ <comment xml:lang="cs">graf Graphviz DOT</comment>
+ <comment xml:lang="ca">gràfic Graphviz DOT</comment>
+ <comment xml:lang="bg">Граф — Graphviz DOT</comment>
+ <comment xml:lang="be">граф Graphviz DOT</comment>
+ <comment xml:lang="ar">مبيان Graphviz DOT</comment>
+ <comment xml:lang="af">Graphviz DOT-grafiek</comment>
+ <sub-class-of type="text/plain"/>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="digraph " type="string" offset="0"/>
- <match value="strict digraph " type="string" offset="0"/>
- <match value="graph " type="string" offset="0"/>
- <match value="strict graph " type="string" offset="0"/>
+ <magic>
+ <match type="string" value="digraph " offset="0"/>
+ <match type="string" value="strict digraph " offset="0"/>
+ <match type="string" value="graph " offset="0"/>
+ <match type="string" value="strict graph " offset="0"/>
</magic>
<glob pattern="*.gv"/>
<glob pattern="*.dot"/>
</mime-type>
<mime-type type="text/vnd.sun.j2me.app-descriptor">
<comment>JAD document</comment>
- <comment xml:lang="ar">مستند JAD</comment>
- <comment xml:lang="ast">Documentu JAD</comment>
- <comment xml:lang="be@latin">Dakument JAD</comment>
- <comment xml:lang="bg">Документ — JAD</comment>
- <comment xml:lang="ca">document JAD</comment>
- <comment xml:lang="cs">dokument JAD</comment>
- <comment xml:lang="da">JAD-dokument</comment>
- <comment xml:lang="de">JAD-Dokument</comment>
- <comment xml:lang="el">Έγγραφο JAD</comment>
- <comment xml:lang="en_GB">JAD document</comment>
- <comment xml:lang="eo">JAD-dokumento</comment>
- <comment xml:lang="es">documento JAD</comment>
- <comment xml:lang="eu">JAD dokumentua</comment>
- <comment xml:lang="fi">JAD-asiakirja</comment>
- <comment xml:lang="fo">JAD skjal</comment>
- <comment xml:lang="fr">document JAD</comment>
- <comment xml:lang="ga">cáipéis JAD</comment>
- <comment xml:lang="gl">documento JAD</comment>
- <comment xml:lang="he">מסמך JAD</comment>
- <comment xml:lang="hr">JAD dokument</comment>
- <comment xml:lang="hu">JAD dokumentum</comment>
- <comment xml:lang="ia">Documento JAD</comment>
- <comment xml:lang="id">Dokumen JAD</comment>
- <comment xml:lang="it">Documento JAD</comment>
- <comment xml:lang="ja">JAD ドキュメント</comment>
- <comment xml:lang="kk">JAD құжаты</comment>
- <comment xml:lang="ko">JAD 문서</comment>
- <comment xml:lang="lt">JAD dokumentas</comment>
- <comment xml:lang="lv">JAD dokuments</comment>
- <comment xml:lang="nb">JAD-dokument</comment>
- <comment xml:lang="nl">JAD-document</comment>
- <comment xml:lang="nn">JAD-dokument</comment>
- <comment xml:lang="oc">document JAD</comment>
- <comment xml:lang="pl">Dokument JAD</comment>
- <comment xml:lang="pt">documento JAD</comment>
- <comment xml:lang="pt_BR">Documento JAD</comment>
- <comment xml:lang="ro">Document JAD</comment>
- <comment xml:lang="ru">Документ JAD</comment>
- <comment xml:lang="sk">Dokument JAD</comment>
- <comment xml:lang="sl">Dokument JAD</comment>
- <comment xml:lang="sq">Dokument JAD</comment>
- <comment xml:lang="sr">ЈАД документ</comment>
- <comment xml:lang="sv">JAD-dokument</comment>
- <comment xml:lang="tr">JAD belgesi</comment>
- <comment xml:lang="uk">документ JAD</comment>
- <comment xml:lang="vi">Tài liệu JAD</comment>
- <comment xml:lang="zh_CN">JAD 文档</comment>
<comment xml:lang="zh_TW">JAD 文件</comment>
+ <comment xml:lang="zh_CN">JAD 文档</comment>
+ <comment xml:lang="vi">Tài liệu JAD</comment>
+ <comment xml:lang="uk">документ JAD</comment>
+ <comment xml:lang="tr">JAD belgesi</comment>
+ <comment xml:lang="sv">JAD-dokument</comment>
+ <comment xml:lang="sr">ЈАД документ</comment>
+ <comment xml:lang="sq">dokument JAD</comment>
+ <comment xml:lang="sl">Dokument JAD</comment>
+ <comment xml:lang="si">JAD ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument JAD</comment>
+ <comment xml:lang="ru">Документ JAD</comment>
+ <comment xml:lang="ro">Document JAD</comment>
+ <comment xml:lang="pt_BR">Documento JAD</comment>
+ <comment xml:lang="pt">documento JAD</comment>
+ <comment xml:lang="pl">Dokument JAD</comment>
+ <comment xml:lang="oc">document JAD</comment>
+ <comment xml:lang="nn">JAD-dokument</comment>
+ <comment xml:lang="nl">JAD-document</comment>
+ <comment xml:lang="nb">JAD-dokument</comment>
+ <comment xml:lang="lv">JAD dokuments</comment>
+ <comment xml:lang="lt">JAD dokumentas</comment>
+ <comment xml:lang="ko">JAD 문서</comment>
+ <comment xml:lang="kk">JAD құжаты</comment>
+ <comment xml:lang="ja">JAD ドキュメント</comment>
+ <comment xml:lang="it">Documento JAD</comment>
+ <comment xml:lang="is">JAD skjal</comment>
+ <comment xml:lang="id">Dokumen JAD</comment>
+ <comment xml:lang="ia">Documento JAD</comment>
+ <comment xml:lang="hu">JAD dokumentum</comment>
+ <comment xml:lang="hr">JAD dokument</comment>
+ <comment xml:lang="he">מסמך JAD</comment>
+ <comment xml:lang="gl">documento JAD</comment>
+ <comment xml:lang="ga">cáipéis JAD</comment>
+ <comment xml:lang="fur">document JAD</comment>
+ <comment xml:lang="fr">document JAD</comment>
+ <comment xml:lang="fo">JAD skjal</comment>
+ <comment xml:lang="fi">JAD-asiakirja</comment>
+ <comment xml:lang="eu">JAD dokumentua</comment>
+ <comment xml:lang="es">documento JAD</comment>
+ <comment xml:lang="eo">JAD-dokumento</comment>
+ <comment xml:lang="en_GB">JAD document</comment>
+ <comment xml:lang="el">Έγγραφο JAD</comment>
+ <comment xml:lang="de">JAD-Dokument</comment>
+ <comment xml:lang="da">JAD-dokument</comment>
+ <comment xml:lang="cs">dokument JAD</comment>
+ <comment xml:lang="ca">document JAD</comment>
+ <comment xml:lang="bg">Документ — JAD</comment>
+ <comment xml:lang="be@latin">Dakument JAD</comment>
+ <comment xml:lang="be">дакумент JAD</comment>
+ <comment xml:lang="ast">Documentu JAD</comment>
+ <comment xml:lang="ar">مستند JAD</comment>
+ <comment xml:lang="af">JAD-dokument</comment>
<acronym>JAD</acronym>
<expanded-acronym>Java Application Descriptor</expanded-acronym>
- <magic priority="50">
- <match value="MIDlet-" type="string" offset="0"/>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="MIDlet-" offset="0"/>
</magic>
<glob pattern="*.jad"/>
</mime-type>
<mime-type type="text/vnd.wap.wml">
<comment>WML document</comment>
- <comment xml:lang="ar">مستند WML</comment>
- <comment xml:lang="ast">Documentu WML</comment>
- <comment xml:lang="az">WML sənədi</comment>
- <comment xml:lang="be@latin">Dakument WML</comment>
- <comment xml:lang="bg">Документ — WML</comment>
- <comment xml:lang="ca">document WML</comment>
- <comment xml:lang="cs">dokument WML</comment>
- <comment xml:lang="cy">Dogfen WML</comment>
- <comment xml:lang="da">WML-dokument</comment>
- <comment xml:lang="de">WML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο WML</comment>
- <comment xml:lang="en_GB">WML document</comment>
- <comment xml:lang="eo">WML-dokumento</comment>
- <comment xml:lang="es">documento WML</comment>
- <comment xml:lang="eu">WML dokumentua</comment>
- <comment xml:lang="fi">WML-asiakirja</comment>
- <comment xml:lang="fo">WML skjal</comment>
- <comment xml:lang="fr">document WML</comment>
- <comment xml:lang="ga">cáipéis WML</comment>
- <comment xml:lang="gl">documento WML</comment>
- <comment xml:lang="he">מסמך WML</comment>
- <comment xml:lang="hr">WML dokument</comment>
- <comment xml:lang="hu">WML-dokumentum</comment>
- <comment xml:lang="ia">Documento WML</comment>
- <comment xml:lang="id">Dokumen WML</comment>
- <comment xml:lang="it">Documento WML</comment>
- <comment xml:lang="ja">WML ドキュメント</comment>
- <comment xml:lang="kk">WML құжаты</comment>
- <comment xml:lang="ko">WML 문서</comment>
- <comment xml:lang="lt">WML dokumentas</comment>
- <comment xml:lang="lv">WML dokuments</comment>
- <comment xml:lang="ms">Dokumen XML</comment>
- <comment xml:lang="nb">WML-dokument</comment>
- <comment xml:lang="nl">WML-document</comment>
- <comment xml:lang="nn">WML-dokument</comment>
- <comment xml:lang="oc">document WML</comment>
- <comment xml:lang="pl">Dokument WML</comment>
- <comment xml:lang="pt">documento WML</comment>
- <comment xml:lang="pt_BR">Documento WML</comment>
- <comment xml:lang="ro">Document WML</comment>
- <comment xml:lang="ru">Документ WML</comment>
- <comment xml:lang="sk">Dokument WML</comment>
- <comment xml:lang="sl">Dokument WML</comment>
- <comment xml:lang="sq">Dokument WML</comment>
- <comment xml:lang="sr">ВМЛ документ</comment>
- <comment xml:lang="sv">WML-dokument</comment>
- <comment xml:lang="tr">WML belgesi</comment>
- <comment xml:lang="uk">документ WML</comment>
- <comment xml:lang="vi">Tài liệu WML</comment>
- <comment xml:lang="zh_CN">WML 文档</comment>
<comment xml:lang="zh_TW">WML 文件</comment>
+ <comment xml:lang="zh_CN">WML 文档</comment>
+ <comment xml:lang="vi">Tài liệu WML</comment>
+ <comment xml:lang="uk">документ WML</comment>
+ <comment xml:lang="tr">WML belgesi</comment>
+ <comment xml:lang="sv">WML-dokument</comment>
+ <comment xml:lang="sr">ВМЛ документ</comment>
+ <comment xml:lang="sq">dokument WML</comment>
+ <comment xml:lang="sl">Dokument WML</comment>
+ <comment xml:lang="si">WML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument WML</comment>
+ <comment xml:lang="ru">Документ WML</comment>
+ <comment xml:lang="ro">Document WML</comment>
+ <comment xml:lang="pt_BR">Documento WML</comment>
+ <comment xml:lang="pt">documento WML</comment>
+ <comment xml:lang="pl">Dokument WML</comment>
+ <comment xml:lang="oc">document WML</comment>
+ <comment xml:lang="nn">WML-dokument</comment>
+ <comment xml:lang="nl">WML-document</comment>
+ <comment xml:lang="nb">WML-dokument</comment>
+ <comment xml:lang="ms">Dokumen XML</comment>
+ <comment xml:lang="lv">WML dokuments</comment>
+ <comment xml:lang="lt">WML dokumentas</comment>
+ <comment xml:lang="ko">WML 문서</comment>
+ <comment xml:lang="kk">WML құжаты</comment>
+ <comment xml:lang="ja">WML ドキュメント</comment>
+ <comment xml:lang="it">Documento WML</comment>
+ <comment xml:lang="is">WML skjal</comment>
+ <comment xml:lang="id">Dokumen WML</comment>
+ <comment xml:lang="ia">Documento WML</comment>
+ <comment xml:lang="hu">WML-dokumentum</comment>
+ <comment xml:lang="hr">WML dokument</comment>
+ <comment xml:lang="he">מסמך WML</comment>
+ <comment xml:lang="gl">documento WML</comment>
+ <comment xml:lang="ga">cáipéis WML</comment>
+ <comment xml:lang="fur">document WML</comment>
+ <comment xml:lang="fr">document WML</comment>
+ <comment xml:lang="fo">WML skjal</comment>
+ <comment xml:lang="fi">WML-asiakirja</comment>
+ <comment xml:lang="eu">WML dokumentua</comment>
+ <comment xml:lang="es">documento WML</comment>
+ <comment xml:lang="eo">WML-dokumento</comment>
+ <comment xml:lang="en_GB">WML document</comment>
+ <comment xml:lang="el">Έγγραφο WML</comment>
+ <comment xml:lang="de">WML-Dokument</comment>
+ <comment xml:lang="da">WML-dokument</comment>
+ <comment xml:lang="cy">Dogfen WML</comment>
+ <comment xml:lang="cs">dokument WML</comment>
+ <comment xml:lang="ca">document WML</comment>
+ <comment xml:lang="bg">Документ — WML</comment>
+ <comment xml:lang="be@latin">Dakument WML</comment>
+ <comment xml:lang="be">дакумент WML</comment>
+ <comment xml:lang="az">WML sənədi</comment>
+ <comment xml:lang="ast">Documentu WML</comment>
+ <comment xml:lang="ar">مستند WML</comment>
+ <comment xml:lang="af">WML-dokument</comment>
<acronym>WML</acronym>
<expanded-acronym>Wireless Markup Language</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -32746,324 +34750,364 @@
</mime-type>
<mime-type type="text/vnd.wap.wmlscript">
<comment>WMLScript program</comment>
- <comment xml:lang="ar">برنامج WMLScript</comment>
- <comment xml:lang="be@latin">Prahrama WMLScript</comment>
- <comment xml:lang="bg">Програма — WMLScript</comment>
- <comment xml:lang="ca">programa WMLScript</comment>
- <comment xml:lang="cs">program WMLScript</comment>
- <comment xml:lang="da">WMLScript-program</comment>
- <comment xml:lang="de">WMLScript-Programm</comment>
- <comment xml:lang="el">Πρόγραμμα WMLScript</comment>
- <comment xml:lang="en_GB">WMLScript program</comment>
- <comment xml:lang="es">programa en WMLScript</comment>
- <comment xml:lang="eu">WMLScript programa</comment>
- <comment xml:lang="fi">WMLScript-ohjelma</comment>
- <comment xml:lang="fo">WMLScript forrit</comment>
- <comment xml:lang="fr">programme WMLScript</comment>
- <comment xml:lang="ga">ríomhchlár WMLScript</comment>
- <comment xml:lang="gl">programa en WMLScript</comment>
- <comment xml:lang="he">תכנית של WMLScript</comment>
- <comment xml:lang="hr">WMLScript program</comment>
- <comment xml:lang="hu">WMLScript program</comment>
- <comment xml:lang="ia">Programma WMLScript</comment>
- <comment xml:lang="id">Program WMLScript</comment>
- <comment xml:lang="it">Programma WMLScript</comment>
- <comment xml:lang="ja">WMLScript プログラム</comment>
- <comment xml:lang="kk">WMLScript бағдарламасы</comment>
- <comment xml:lang="ko">WMLScript 프로그램</comment>
- <comment xml:lang="lt">WMLScript programa</comment>
- <comment xml:lang="lv">WMLScript programma</comment>
- <comment xml:lang="nb">WMLScript-program</comment>
- <comment xml:lang="nl">WMLScript-programma</comment>
- <comment xml:lang="nn">WMLScript-program</comment>
- <comment xml:lang="oc">programa WMLEscript</comment>
- <comment xml:lang="pl">Pogram WMLScript</comment>
- <comment xml:lang="pt">programa WMLScript</comment>
- <comment xml:lang="pt_BR">Programa WMLScript</comment>
- <comment xml:lang="ro">Program WMLScript</comment>
- <comment xml:lang="ru">Программа WMLScript</comment>
- <comment xml:lang="sk">Program WMLScript</comment>
- <comment xml:lang="sl">Programska datoteka WMLScript</comment>
- <comment xml:lang="sq">Program WMLScript</comment>
- <comment xml:lang="sr">програм ВМЛ скрипте</comment>
- <comment xml:lang="sv">WMLScript-program</comment>
- <comment xml:lang="tr">WMLScript programı</comment>
- <comment xml:lang="uk">програма мовою WMLScript</comment>
- <comment xml:lang="vi">Chương trình WMLScript</comment>
- <comment xml:lang="zh_CN">WMLScript 程序</comment>
<comment xml:lang="zh_TW">WMLScript 程式</comment>
+ <comment xml:lang="zh_CN">WMLScript 程序</comment>
+ <comment xml:lang="vi">Chương trình WMLScript</comment>
+ <comment xml:lang="uk">програма мовою WMLScript</comment>
+ <comment xml:lang="tr">WMLScript programı</comment>
+ <comment xml:lang="sv">WMLScript-program</comment>
+ <comment xml:lang="sr">програм ВМЛ скрипте</comment>
+ <comment xml:lang="sq">program WMLScript</comment>
+ <comment xml:lang="sl">Programska datoteka WMLScript</comment>
+ <comment xml:lang="si">WMLScript වැඩසටහන</comment>
+ <comment xml:lang="sk">Program WMLScript</comment>
+ <comment xml:lang="ru">Программа WMLScript</comment>
+ <comment xml:lang="ro">Program WMLScript</comment>
+ <comment xml:lang="pt_BR">Programa WMLScript</comment>
+ <comment xml:lang="pt">programa WMLScript</comment>
+ <comment xml:lang="pl">Pogram WMLScript</comment>
+ <comment xml:lang="oc">programa WMLEscript</comment>
+ <comment xml:lang="nn">WMLScript-program</comment>
+ <comment xml:lang="nl">WMLScript-toepassing</comment>
+ <comment xml:lang="nb">WMLScript-program</comment>
+ <comment xml:lang="lv">WMLScript programma</comment>
+ <comment xml:lang="lt">WMLScript programa</comment>
+ <comment xml:lang="ko">WMLScript 프로그램</comment>
+ <comment xml:lang="kk">WMLScript бағдарламасы</comment>
+ <comment xml:lang="ja">WMLScript プログラム</comment>
+ <comment xml:lang="it">Programma WMLScript</comment>
+ <comment xml:lang="is">WMLScript forrit</comment>
+ <comment xml:lang="id">Program WMLScript</comment>
+ <comment xml:lang="ia">Programma WMLScript</comment>
+ <comment xml:lang="hu">WMLScript program</comment>
+ <comment xml:lang="hr">WMLScript program</comment>
+ <comment xml:lang="he">תכנית של WMLScript</comment>
+ <comment xml:lang="gl">programa en WMLScript</comment>
+ <comment xml:lang="ga">ríomhchlár WMLScript</comment>
+ <comment xml:lang="fur">program WMLScript</comment>
+ <comment xml:lang="fr">programme WMLScript</comment>
+ <comment xml:lang="fo">WMLScript forrit</comment>
+ <comment xml:lang="fi">WMLScript-ohjelma</comment>
+ <comment xml:lang="eu">WMLScript programa</comment>
+ <comment xml:lang="es">programa en WMLScript</comment>
+ <comment xml:lang="en_GB">WMLScript program</comment>
+ <comment xml:lang="el">Πρόγραμμα WMLScript</comment>
+ <comment xml:lang="de">WMLScript-Programm</comment>
+ <comment xml:lang="da">WMLScript-program</comment>
+ <comment xml:lang="cs">program WMLScript</comment>
+ <comment xml:lang="ca">programa WMLScript</comment>
+ <comment xml:lang="bg">Програма — WMLScript</comment>
+ <comment xml:lang="be@latin">Prahrama WMLScript</comment>
+ <comment xml:lang="be">праграма WMLScript</comment>
+ <comment xml:lang="ar">برنامج WMLScript</comment>
+ <comment xml:lang="af">WMLScript-program</comment>
+ <sub-class-of type="text/plain"/>
<glob pattern="*.wmls"/>
</mime-type>
+ <mime-type type="text/vnd.senx.warpscript">
+ <comment>WarpScript source code</comment>
+ <comment xml:lang="zh_TW">WarpScript 原始碼</comment>
+ <comment xml:lang="zh_CN">WarpScript 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою WarpScript</comment>
+ <comment xml:lang="tr">WarpScript kaynak kodu</comment>
+ <comment xml:lang="sv">WarpScript-källkod</comment>
+ <comment xml:lang="sq">kod burim WarpScript</comment>
+ <comment xml:lang="sl">Izvorna koda WarpScript</comment>
+ <comment xml:lang="si">WarpScript මූලාශ්‍ර කේතය</comment>
+ <comment xml:lang="ru">Исходный код WarpScript</comment>
+ <comment xml:lang="pt_BR">Código-fonte WarpScript</comment>
+ <comment xml:lang="pl">Kod źródłowy WarpScript</comment>
+ <comment xml:lang="nl">WarpScript-broncode</comment>
+ <comment xml:lang="ko">WarpScript 소스 코드</comment>
+ <comment xml:lang="kk">WarpScript бастапқы коды</comment>
+ <comment xml:lang="ja">WarpScript ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente WarpScript</comment>
+ <comment xml:lang="is">WarpScript frumkóði</comment>
+ <comment xml:lang="id">Kode sumber WarpScript</comment>
+ <comment xml:lang="hu">WarpScript forráskód</comment>
+ <comment xml:lang="hr">WarpScript izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור ב־WarpScript</comment>
+ <comment xml:lang="gl">Código fonte en WarpScript</comment>
+ <comment xml:lang="fur">codiç sorzint WarpScript</comment>
+ <comment xml:lang="fr">code source WarpScript</comment>
+ <comment xml:lang="fi">WarpScript-lähdekoodi</comment>
+ <comment xml:lang="eu">WarpScript iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en WarpScript</comment>
+ <comment xml:lang="en_GB">WarpScript source code</comment>
+ <comment xml:lang="de">WarpScript-Quelltext</comment>
+ <comment xml:lang="da">WarpScript-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce WarpScript</comment>
+ <comment xml:lang="ca">codi font en WarpScript</comment>
+ <comment xml:lang="bg">Изходен код — WarpScript</comment>
+ <comment xml:lang="be">зыходны код WarpScript</comment>
+ <comment xml:lang="ar">شفرة مصدر WarpScript</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.mc2"/>
+ </mime-type>
<mime-type type="application/x-ace">
<comment>ACE archive</comment>
- <comment xml:lang="ar">أرشيف ACE</comment>
- <comment xml:lang="be@latin">Archiŭ ACE</comment>
- <comment xml:lang="bg">Архив — ACE</comment>
- <comment xml:lang="ca">arxiu ACE</comment>
- <comment xml:lang="cs">archiv ACE</comment>
- <comment xml:lang="da">ACE-arkiv</comment>
- <comment xml:lang="de">ACE-Archiv</comment>
- <comment xml:lang="el">Συμπιεσμένο αρχείο ACE</comment>
- <comment xml:lang="en_GB">ACE archive</comment>
- <comment xml:lang="eo">ACE-arkivo</comment>
- <comment xml:lang="es">archivador ACE</comment>
- <comment xml:lang="eu">ACE artxiboa</comment>
- <comment xml:lang="fi">ACE-arkisto</comment>
- <comment xml:lang="fo">ACE skjalasavn</comment>
- <comment xml:lang="fr">archive ACE</comment>
- <comment xml:lang="ga">cartlann ACE</comment>
- <comment xml:lang="gl">arquivo ACE</comment>
- <comment xml:lang="he">ארכיון ACE</comment>
- <comment xml:lang="hr">ACE arhiva</comment>
- <comment xml:lang="hu">ACE archívum</comment>
- <comment xml:lang="ia">Archivo ACE</comment>
- <comment xml:lang="id">Arsip ACE</comment>
- <comment xml:lang="it">Archivio ACE</comment>
- <comment xml:lang="ja">ACE アーカイブ</comment>
- <comment xml:lang="ka">ACE არქივი</comment>
- <comment xml:lang="kk">ACE архиві</comment>
- <comment xml:lang="ko">ACE 압축 파일</comment>
- <comment xml:lang="lt">ACE archyvas</comment>
- <comment xml:lang="lv">ACE arhīvs</comment>
- <comment xml:lang="nb">ACE-arkiv</comment>
- <comment xml:lang="nl">ACE-archief</comment>
- <comment xml:lang="nn">ACE-arkiv</comment>
- <comment xml:lang="oc">archiu ACE</comment>
- <comment xml:lang="pl">Archiwum ACE</comment>
- <comment xml:lang="pt">arquivo ACE</comment>
- <comment xml:lang="pt_BR">Pacote ACE</comment>
- <comment xml:lang="ro">Arhivă ACE</comment>
- <comment xml:lang="ru">Архив ACE</comment>
- <comment xml:lang="sk">Archív ACE</comment>
- <comment xml:lang="sl">Datoteka arhiva ACE</comment>
- <comment xml:lang="sq">Arkiv ACE</comment>
- <comment xml:lang="sr">АЦЕ архива</comment>
- <comment xml:lang="sv">ACE-arkiv</comment>
- <comment xml:lang="tr">ACE arşivi</comment>
- <comment xml:lang="uk">архів ACE</comment>
- <comment xml:lang="vi">Kho nén ACE</comment>
- <comment xml:lang="zh_CN">ACE 归档文件</comment>
<comment xml:lang="zh_TW">ACE 封存檔</comment>
+ <comment xml:lang="zh_CN">ACE 归档文件</comment>
+ <comment xml:lang="vi">Kho nén ACE</comment>
+ <comment xml:lang="uk">архів ACE</comment>
+ <comment xml:lang="tr">ACE arşivi</comment>
+ <comment xml:lang="sv">ACE-arkiv</comment>
+ <comment xml:lang="sr">АЦЕ архива</comment>
+ <comment xml:lang="sq">arkiv ACE</comment>
+ <comment xml:lang="sl">Datoteka arhiva ACE</comment>
+ <comment xml:lang="si">ACE ලේඛනාගාරය</comment>
+ <comment xml:lang="sk">Archív ACE</comment>
+ <comment xml:lang="ru">Архив ACE</comment>
+ <comment xml:lang="ro">Arhivă ACE</comment>
+ <comment xml:lang="pt_BR">Pacote ACE</comment>
+ <comment xml:lang="pt">arquivo ACE</comment>
+ <comment xml:lang="pl">Archiwum ACE</comment>
+ <comment xml:lang="oc">archiu ACE</comment>
+ <comment xml:lang="nn">ACE-arkiv</comment>
+ <comment xml:lang="nl">ACE-archief</comment>
+ <comment xml:lang="nb">ACE-arkiv</comment>
+ <comment xml:lang="lv">ACE arhīvs</comment>
+ <comment xml:lang="lt">ACE archyvas</comment>
+ <comment xml:lang="ko">ACE 압축 파일</comment>
+ <comment xml:lang="kk">ACE архиві</comment>
+ <comment xml:lang="ka">ACE არქივი</comment>
+ <comment xml:lang="ja">ACE アーカイブ</comment>
+ <comment xml:lang="it">Archivio ACE</comment>
+ <comment xml:lang="is">ACE safnskrá</comment>
+ <comment xml:lang="id">Arsip ACE</comment>
+ <comment xml:lang="ia">Archivo ACE</comment>
+ <comment xml:lang="hu">ACE archívum</comment>
+ <comment xml:lang="hr">ACE arhiva</comment>
+ <comment xml:lang="he">ארכיון ACE</comment>
+ <comment xml:lang="gl">arquivo ACE</comment>
+ <comment xml:lang="ga">cartlann ACE</comment>
+ <comment xml:lang="fur">archivi ACE</comment>
+ <comment xml:lang="fr">archive ACE</comment>
+ <comment xml:lang="fo">ACE skjalasavn</comment>
+ <comment xml:lang="fi">ACE-arkisto</comment>
+ <comment xml:lang="eu">ACE artxiboa</comment>
+ <comment xml:lang="es">archivador ACE</comment>
+ <comment xml:lang="eo">ACE-arkivo</comment>
+ <comment xml:lang="en_GB">ACE archive</comment>
+ <comment xml:lang="el">Συμπιεσμένο αρχείο ACE</comment>
+ <comment xml:lang="de">ACE-Archiv</comment>
+ <comment xml:lang="da">ACE-arkiv</comment>
+ <comment xml:lang="cs">archiv ACE</comment>
+ <comment xml:lang="ca">arxiu ACE</comment>
+ <comment xml:lang="bg">Архив — ACE</comment>
+ <comment xml:lang="be@latin">Archiŭ ACE</comment>
+ <comment xml:lang="be">архіў ACE</comment>
+ <comment xml:lang="ar">أرشيف ACE</comment>
+ <comment xml:lang="af">ACE-argief</comment>
<generic-icon name="package-x-generic"/>
<magic priority="60">
- <match value="**ACE**" type="string" offset="7"/>
+ <match type="string" value="**ACE**" offset="7"/>
</magic>
<glob pattern="*.ace"/>
</mime-type>
<mime-type type="text/x-adasrc">
<comment>Ada source code</comment>
- <comment xml:lang="ar">شفرة مصدر Ada</comment>
- <comment xml:lang="be@latin">Kryničny kod Ada</comment>
- <comment xml:lang="bg">Изходен код — Ada</comment>
- <comment xml:lang="ca">codi font en Ada</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Ada</comment>
- <comment xml:lang="da">Ada-kildekode</comment>
- <comment xml:lang="de">Ada-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Ada</comment>
- <comment xml:lang="en_GB">Ada source code</comment>
- <comment xml:lang="eo">Ada-fontkodo</comment>
- <comment xml:lang="es">código fuente en Ada</comment>
- <comment xml:lang="eu">Ada iturburu-kodea</comment>
- <comment xml:lang="fi">Ada-lähdekoodi</comment>
- <comment xml:lang="fo">Ada keldukota</comment>
- <comment xml:lang="fr">code source Ada</comment>
- <comment xml:lang="ga">cód foinseach Ada</comment>
- <comment xml:lang="gl">código fonte en Ada</comment>
- <comment xml:lang="he">קוד מקור Ada</comment>
- <comment xml:lang="hr">Ada izvorni kôd</comment>
- <comment xml:lang="hu">Ada-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Ada</comment>
- <comment xml:lang="id">Kode sumber Ada</comment>
- <comment xml:lang="it">Codice sorgente Ada</comment>
- <comment xml:lang="ja">Ada ソースコード</comment>
- <comment xml:lang="ka">Ada-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Ada бастапқы коды</comment>
- <comment xml:lang="ko">Ada 소스 코드</comment>
- <comment xml:lang="lt">Ada pradinis kodas</comment>
- <comment xml:lang="lv">Ada pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Ada</comment>
- <comment xml:lang="nb">Ada-kildekode</comment>
- <comment xml:lang="nl">Ada-broncode</comment>
- <comment xml:lang="nn">Ada-kjeldekode</comment>
- <comment xml:lang="oc">còde font Ada</comment>
- <comment xml:lang="pl">Kod źródłowy Ada</comment>
- <comment xml:lang="pt">código origem Ada</comment>
- <comment xml:lang="pt_BR">Código-fonte Ada</comment>
- <comment xml:lang="ro">Cod sursă Ada</comment>
- <comment xml:lang="ru">Исходный код Ada</comment>
- <comment xml:lang="sk">Zdrojový kód jazyka Ada</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Ada</comment>
- <comment xml:lang="sq">Kod burues Ada</comment>
- <comment xml:lang="sr">Ада изворни ко̂д</comment>
- <comment xml:lang="sv">Ada-källkod</comment>
- <comment xml:lang="tr">Ada kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Ada</comment>
- <comment xml:lang="vi">Mã nguồn Ada</comment>
- <comment xml:lang="zh_CN">Ada 源代码</comment>
<comment xml:lang="zh_TW">Ada 源碼</comment>
+ <comment xml:lang="zh_CN">Ada 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Ada</comment>
+ <comment xml:lang="uk">початковий код мовою Ada</comment>
+ <comment xml:lang="tr">Ada kaynak kodu</comment>
+ <comment xml:lang="sv">Ada-källkod</comment>
+ <comment xml:lang="sr">Ада изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Ada</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Ada</comment>
+ <comment xml:lang="si">Ada මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód jazyka Ada</comment>
+ <comment xml:lang="ru">Исходный код Ada</comment>
+ <comment xml:lang="ro">Cod sursă Ada</comment>
+ <comment xml:lang="pt_BR">Código-fonte Ada</comment>
+ <comment xml:lang="pt">código origem Ada</comment>
+ <comment xml:lang="pl">Kod źródłowy Ada</comment>
+ <comment xml:lang="oc">còde font Ada</comment>
+ <comment xml:lang="nn">Ada-kjeldekode</comment>
+ <comment xml:lang="nl">Ada-broncode</comment>
+ <comment xml:lang="nb">Ada-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Ada</comment>
+ <comment xml:lang="lv">Ada pirmkods</comment>
+ <comment xml:lang="lt">Ada pradinis kodas</comment>
+ <comment xml:lang="ko">Ada 소스 코드</comment>
+ <comment xml:lang="kk">Ada бастапқы коды</comment>
+ <comment xml:lang="ka">Ada-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Ada ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Ada</comment>
+ <comment xml:lang="is">Ada frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Ada</comment>
+ <comment xml:lang="ia">Codice-fonte Ada</comment>
+ <comment xml:lang="hu">Ada-forráskód</comment>
+ <comment xml:lang="hr">Ada izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור Ada</comment>
+ <comment xml:lang="gl">código fonte en Ada</comment>
+ <comment xml:lang="ga">cód foinseach Ada</comment>
+ <comment xml:lang="fur">codiç sorzint Ada</comment>
+ <comment xml:lang="fr">code source Ada</comment>
+ <comment xml:lang="fo">Ada keldukota</comment>
+ <comment xml:lang="fi">Ada-lähdekoodi</comment>
+ <comment xml:lang="eu">Ada iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Ada</comment>
+ <comment xml:lang="eo">Ada-fontkodo</comment>
+ <comment xml:lang="en_GB">Ada source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Ada</comment>
+ <comment xml:lang="de">Ada-Quelltext</comment>
+ <comment xml:lang="da">Ada-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Ada</comment>
+ <comment xml:lang="ca">codi font en Ada</comment>
+ <comment xml:lang="bg">Изходен код — Ada</comment>
+ <comment xml:lang="be@latin">Kryničny kod Ada</comment>
+ <comment xml:lang="be">зыходны код Ada</comment>
+ <comment xml:lang="ar">شفرة مصدر Ada</comment>
+ <comment xml:lang="af">Ada-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.adb"/>
<glob pattern="*.ads"/>
</mime-type>
<mime-type type="text/x-authors">
- <comment>author list</comment>
- <comment xml:lang="ar">لائحة المؤلف</comment>
- <comment xml:lang="be@latin">śpis aŭtaraŭ</comment>
- <comment xml:lang="bg">Списък на авторите</comment>
- <comment xml:lang="ca">llista d'autors</comment>
- <comment xml:lang="cs">seznam autorů</comment>
- <comment xml:lang="da">forfatterliste</comment>
- <comment xml:lang="de">Autorenliste</comment>
- <comment xml:lang="el">Κατάλογος συγγραφέων</comment>
- <comment xml:lang="en_GB">author list</comment>
- <comment xml:lang="eo">listo de aŭtoroj</comment>
- <comment xml:lang="es">lista de autores</comment>
- <comment xml:lang="eu">egile-zerrenda</comment>
- <comment xml:lang="fi">tekijäluettelo</comment>
- <comment xml:lang="fo">høvundalisti</comment>
- <comment xml:lang="fr">liste d'auteurs</comment>
- <comment xml:lang="ga">liosta údar</comment>
- <comment xml:lang="gl">lista de autores</comment>
- <comment xml:lang="he">רשימת יוצרים</comment>
- <comment xml:lang="hr">Popis autora</comment>
- <comment xml:lang="hu">szerzőlista</comment>
- <comment xml:lang="ia">Lista de autores</comment>
- <comment xml:lang="id">senarai penulis</comment>
- <comment xml:lang="it">Elenco autori</comment>
- <comment xml:lang="ja">著者リスト</comment>
- <comment xml:lang="kk">авторлар тізімі</comment>
- <comment xml:lang="ko">저자 목록</comment>
- <comment xml:lang="lt">autorių sąrašas</comment>
- <comment xml:lang="lv">autoru saraksts</comment>
- <comment xml:lang="ms">Senarai penulis</comment>
- <comment xml:lang="nb">forfatterliste</comment>
- <comment xml:lang="nl">auteurslijst</comment>
- <comment xml:lang="nn">forfattarliste</comment>
- <comment xml:lang="oc">lista d'autors</comment>
- <comment xml:lang="pl">Lista autorów</comment>
- <comment xml:lang="pt">lista de autores</comment>
- <comment xml:lang="pt_BR">Lista de autores</comment>
- <comment xml:lang="ro">listă autori</comment>
+ <comment>Author list</comment>
+ <comment xml:lang="uk">список авторів</comment>
+ <comment xml:lang="sv">Författarlista</comment>
<comment xml:lang="ru">Список авторов</comment>
- <comment xml:lang="sk">Zoznam autorov</comment>
- <comment xml:lang="sl">seznam avtorjev</comment>
- <comment xml:lang="sq">Lista e autorëve</comment>
- <comment xml:lang="sr">списак аутора</comment>
- <comment xml:lang="sv">författarlista</comment>
- <comment xml:lang="tr">yazar listesi</comment>
- <comment xml:lang="uk">перелік авторів</comment>
- <comment xml:lang="vi">danh sách tác giả</comment>
- <comment xml:lang="zh_CN">作者列表</comment>
- <comment xml:lang="zh_TW">作者清單</comment>
+ <comment xml:lang="pl">Lista autorów</comment>
+ <comment xml:lang="it">Elenco autori</comment>
+ <comment xml:lang="eu">Egile-zerrenda</comment>
+ <comment xml:lang="es">lista de autores</comment>
+ <comment xml:lang="de">Autorenliste</comment>
+ <comment xml:lang="be">спіс аўтараў</comment>
<sub-class-of type="text/plain"/>
<glob pattern="AUTHORS"/>
</mime-type>
<mime-type type="text/x-bibtex">
<comment>BibTeX document</comment>
- <comment xml:lang="ar">مستند BibTeX</comment>
- <comment xml:lang="ast">Documentu de BibTeX</comment>
- <comment xml:lang="be@latin">Dakument BibTeX</comment>
- <comment xml:lang="bg">Документ — BibTeX</comment>
- <comment xml:lang="ca">document BibTeX</comment>
- <comment xml:lang="cs">dokument BibTeX</comment>
- <comment xml:lang="da">BibTeX-dokument</comment>
- <comment xml:lang="de">BibTeX-Dokument</comment>
- <comment xml:lang="el">Έγγραφο BibTeX</comment>
- <comment xml:lang="en_GB">BibTeX document</comment>
- <comment xml:lang="eo">BibTeX-dokumento</comment>
- <comment xml:lang="es">documento BibTeX</comment>
- <comment xml:lang="eu">BibTeX dokumentua</comment>
- <comment xml:lang="fi">BibTeX-asiakirja</comment>
- <comment xml:lang="fo">BibTeX skjal</comment>
- <comment xml:lang="fr">document BibTeX</comment>
- <comment xml:lang="ga">cáipéis BibTeX</comment>
- <comment xml:lang="gl">documento BibTex</comment>
- <comment xml:lang="he">מסמך BibTeX</comment>
- <comment xml:lang="hr">BibTeX dokument</comment>
- <comment xml:lang="hu">BibTeX dokumentum</comment>
- <comment xml:lang="ia">Documento BibTeX</comment>
- <comment xml:lang="id">Dokumen BibTeX</comment>
- <comment xml:lang="it">Documento BibTeX</comment>
- <comment xml:lang="ja">BibTeX ドキュメント</comment>
- <comment xml:lang="ka">BibTeX-ის დოკუმენტი</comment>
- <comment xml:lang="kk">BibTeX құжаты</comment>
- <comment xml:lang="ko">BibTeX 문서</comment>
- <comment xml:lang="lt">BibTeX dokumentas</comment>
- <comment xml:lang="lv">BibTeX dokuments</comment>
- <comment xml:lang="nb">BibTeX-dokument</comment>
- <comment xml:lang="nl">BibTeX-document</comment>
- <comment xml:lang="nn">BibTeX-dokument</comment>
- <comment xml:lang="oc">document BibTeX</comment>
- <comment xml:lang="pl">Dokument BibTeX</comment>
- <comment xml:lang="pt">documento BibTeX</comment>
- <comment xml:lang="pt_BR">Documento BibTeX</comment>
- <comment xml:lang="ro">Document BibTeX</comment>
- <comment xml:lang="ru">Документ BibTeX</comment>
- <comment xml:lang="sk">Dokument BibTeX</comment>
- <comment xml:lang="sl">Dokument BibTeX</comment>
- <comment xml:lang="sq">Dokument BibTeX</comment>
- <comment xml:lang="sr">Биб ТеКс документ</comment>
- <comment xml:lang="sv">BibTeX-dokument</comment>
- <comment xml:lang="tr">BibTeX belgesi</comment>
- <comment xml:lang="uk">документ BibTeX</comment>
- <comment xml:lang="vi">Tài liệu BibTeX</comment>
- <comment xml:lang="zh_CN">BibTeX 文档</comment>
<comment xml:lang="zh_TW">BibTeX 文件</comment>
+ <comment xml:lang="zh_CN">BibTeX 文档</comment>
+ <comment xml:lang="vi">Tài liệu BibTeX</comment>
+ <comment xml:lang="uk">документ BibTeX</comment>
+ <comment xml:lang="tr">BibTeX belgesi</comment>
+ <comment xml:lang="sv">BibTeX-dokument</comment>
+ <comment xml:lang="sr">Биб ТеКс документ</comment>
+ <comment xml:lang="sq">dokument BibTeX</comment>
+ <comment xml:lang="sl">Dokument BibTeX</comment>
+ <comment xml:lang="si">BibTeX ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument BibTeX</comment>
+ <comment xml:lang="ru">Документ BibTeX</comment>
+ <comment xml:lang="ro">Document BibTeX</comment>
+ <comment xml:lang="pt_BR">Documento BibTeX</comment>
+ <comment xml:lang="pt">documento BibTeX</comment>
+ <comment xml:lang="pl">Dokument BibTeX</comment>
+ <comment xml:lang="oc">document BibTeX</comment>
+ <comment xml:lang="nn">BibTeX-dokument</comment>
+ <comment xml:lang="nl">BibTeX-document</comment>
+ <comment xml:lang="nb">BibTeX-dokument</comment>
+ <comment xml:lang="lv">BibTeX dokuments</comment>
+ <comment xml:lang="lt">BibTeX dokumentas</comment>
+ <comment xml:lang="ko">BibTeX 문서</comment>
+ <comment xml:lang="kk">BibTeX құжаты</comment>
+ <comment xml:lang="ka">BibTeX-ის დოკუმენტი</comment>
+ <comment xml:lang="ja">BibTeX ドキュメント</comment>
+ <comment xml:lang="it">Documento BibTeX</comment>
+ <comment xml:lang="is">BibTeX skjal</comment>
+ <comment xml:lang="id">Dokumen BibTeX</comment>
+ <comment xml:lang="ia">Documento BibTeX</comment>
+ <comment xml:lang="hu">BibTeX dokumentum</comment>
+ <comment xml:lang="hr">BibTeX dokument</comment>
+ <comment xml:lang="he">מסמך BibTeX</comment>
+ <comment xml:lang="gl">documento BibTex</comment>
+ <comment xml:lang="ga">cáipéis BibTeX</comment>
+ <comment xml:lang="fur">document BibTeX</comment>
+ <comment xml:lang="fr">document BibTeX</comment>
+ <comment xml:lang="fo">BibTeX skjal</comment>
+ <comment xml:lang="fi">BibTeX-asiakirja</comment>
+ <comment xml:lang="eu">BibTeX dokumentua</comment>
+ <comment xml:lang="es">documento BibTeX</comment>
+ <comment xml:lang="eo">BibTeX-dokumento</comment>
+ <comment xml:lang="en_GB">BibTeX document</comment>
+ <comment xml:lang="el">Έγγραφο BibTeX</comment>
+ <comment xml:lang="de">BibTeX-Dokument</comment>
+ <comment xml:lang="da">BibTeX-dokument</comment>
+ <comment xml:lang="cs">dokument BibTeX</comment>
+ <comment xml:lang="ca">document BibTeX</comment>
+ <comment xml:lang="bg">Документ — BibTeX</comment>
+ <comment xml:lang="be@latin">Dakument BibTeX</comment>
+ <comment xml:lang="be">дакумент BibTeX</comment>
+ <comment xml:lang="ast">Documentu de BibTeX</comment>
+ <comment xml:lang="ar">مستند BibTeX</comment>
+ <comment xml:lang="af">BibTeX-dokument</comment>
<sub-class-of type="text/plain"/>
<magic>
- <match value="% This file was created with JabRef" type="string" offset="0"/>
+ <match type="string" value="% This file was created with JabRef" offset="0"/>
</magic>
<glob pattern="*.bib"/>
</mime-type>
+ <mime-type type="text/x-blueprint">
+ <comment>Blueprint source code</comment>
+ <comment xml:lang="uk">початковий код синьки</comment>
+ <comment xml:lang="sv">Blueprint-källkod</comment>
+ <comment xml:lang="ru">Исходный код Blueprint</comment>
+ <comment xml:lang="pl">Kod źródłowy Blueprint</comment>
+ <comment xml:lang="it">Codice sorgente Blueprint</comment>
+ <comment xml:lang="gl">Código fonte en Blueprint</comment>
+ <comment xml:lang="es">código fuente en Blueprint</comment>
+ <comment xml:lang="de">Blueprint-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Blueprint</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.blp"/>
+ </mime-type>
<mime-type type="text/x-c++hdr">
<comment>C++ header</comment>
- <comment xml:lang="ar">ترويسة سي++</comment>
- <comment xml:lang="be@latin">Zahałoŭny fajł C++</comment>
- <comment xml:lang="bg">Заглавен файл — C++</comment>
- <comment xml:lang="ca">capçalera en C++</comment>
- <comment xml:lang="cs">hlavičkový soubor C++</comment>
- <comment xml:lang="da">C++-posthoved</comment>
- <comment xml:lang="de">C++-Header</comment>
- <comment xml:lang="el">Κεφαλίδα C++</comment>
- <comment xml:lang="en_GB">C++ header</comment>
- <comment xml:lang="es">cabecera de código fuente en C++</comment>
- <comment xml:lang="eu">C++ goiburua</comment>
- <comment xml:lang="fi">C++-otsake</comment>
- <comment xml:lang="fo">C++ tekshøvd</comment>
- <comment xml:lang="fr">en-tête C++</comment>
- <comment xml:lang="ga">ceanntásc C++</comment>
- <comment xml:lang="gl">cabeceira de código fonte en C++</comment>
- <comment xml:lang="he">כותר C++‎</comment>
- <comment xml:lang="hr">C++ zaglavlje</comment>
- <comment xml:lang="hu">C++ fejléc</comment>
- <comment xml:lang="ia">Capite C++</comment>
- <comment xml:lang="id">Header C++</comment>
- <comment xml:lang="it">Header C++</comment>
- <comment xml:lang="ja">C++ ヘッダー</comment>
- <comment xml:lang="ka">C++-ის თავსართი</comment>
- <comment xml:lang="kk">C++ тақырыптама файлы</comment>
- <comment xml:lang="ko">C++ 헤더</comment>
- <comment xml:lang="lt">C++ antraštė</comment>
- <comment xml:lang="lv">C++ galvene</comment>
- <comment xml:lang="nb">C++-kildekodeheader</comment>
- <comment xml:lang="nl">C++-header</comment>
- <comment xml:lang="nn">C++-kjeldekode-hovud</comment>
- <comment xml:lang="oc">entèsta C++</comment>
- <comment xml:lang="pl">Plik nagłówkowy C++</comment>
- <comment xml:lang="pt">cabeçalho C++</comment>
- <comment xml:lang="pt_BR">Cabeçalho C++</comment>
- <comment xml:lang="ro">Antet C++</comment>
- <comment xml:lang="ru">Заголовочный файл C++</comment>
- <comment xml:lang="sk">Hlavičky jazyka C++</comment>
- <comment xml:lang="sl">Datoteka glave C++</comment>
- <comment xml:lang="sq">Header C++</comment>
- <comment xml:lang="sr">Ц++ заглавље</comment>
- <comment xml:lang="sv">C++-huvud</comment>
- <comment xml:lang="tr">C++ başlığı</comment>
- <comment xml:lang="uk">файл заголовків мовою C++</comment>
- <comment xml:lang="vi">Phần đầu mã nguồn C++</comment>
- <comment xml:lang="zh_CN">C++ 头文件</comment>
<comment xml:lang="zh_TW">C++ 標頭檔</comment>
+ <comment xml:lang="zh_CN">C++ 头文件</comment>
+ <comment xml:lang="vi">Phần đầu mã nguồn C++</comment>
+ <comment xml:lang="uk">файл заголовків мовою C++</comment>
+ <comment xml:lang="tr">C++ başlığı</comment>
+ <comment xml:lang="sv">C++-huvud</comment>
+ <comment xml:lang="sr">Ц++ заглавље</comment>
+ <comment xml:lang="sq">krye C++</comment>
+ <comment xml:lang="sl">Datoteka glave C++</comment>
+ <comment xml:lang="si">C++ ශීර්ෂකය</comment>
+ <comment xml:lang="sk">Hlavičky jazyka C++</comment>
+ <comment xml:lang="ru">Заголовочный файл C++</comment>
+ <comment xml:lang="ro">Antet C++</comment>
+ <comment xml:lang="pt_BR">Cabeçalho C++</comment>
+ <comment xml:lang="pt">cabeçalho C++</comment>
+ <comment xml:lang="pl">Plik nagłówkowy C++</comment>
+ <comment xml:lang="oc">entèsta C++</comment>
+ <comment xml:lang="nn">C++-kjeldekode-hovud</comment>
+ <comment xml:lang="nl">C++-header</comment>
+ <comment xml:lang="nb">C++-kildekodeheader</comment>
+ <comment xml:lang="lv">C++ galvene</comment>
+ <comment xml:lang="lt">C++ antraštė</comment>
+ <comment xml:lang="ko">C++ 헤더</comment>
+ <comment xml:lang="kk">C++ тақырыптама файлы</comment>
+ <comment xml:lang="ka">C++-ის თავსართი</comment>
+ <comment xml:lang="ja">C++ ヘッダー</comment>
+ <comment xml:lang="it">Header C++</comment>
+ <comment xml:lang="is">C++ haus</comment>
+ <comment xml:lang="id">Header C++</comment>
+ <comment xml:lang="ia">Capite C++</comment>
+ <comment xml:lang="hu">C++ fejléc</comment>
+ <comment xml:lang="hr">C++ zaglavlje</comment>
+ <comment xml:lang="he">כותר C++‎</comment>
+ <comment xml:lang="gl">cabeceira de código fonte en C++</comment>
+ <comment xml:lang="ga">ceanntásc C++</comment>
+ <comment xml:lang="fur">intestazion C++</comment>
+ <comment xml:lang="fr">en-tête C++</comment>
+ <comment xml:lang="fo">C++ tekshøvd</comment>
+ <comment xml:lang="fi">C++-otsake</comment>
+ <comment xml:lang="eu">C++ goiburua</comment>
+ <comment xml:lang="es">cabecera de código fuente en C++</comment>
+ <comment xml:lang="en_GB">C++ header</comment>
+ <comment xml:lang="el">Κεφαλίδα C++</comment>
+ <comment xml:lang="de">C++-Header</comment>
+ <comment xml:lang="da">C++-posthoved</comment>
+ <comment xml:lang="cs">hlavičkový soubor C++</comment>
+ <comment xml:lang="ca">capçalera en C++</comment>
+ <comment xml:lang="bg">Заглавен файл — C++</comment>
+ <comment xml:lang="be@latin">Zahałoŭny fajł C++</comment>
+ <comment xml:lang="be">загаловачны файл C++</comment>
+ <comment xml:lang="ar">ترويسة سي++</comment>
<sub-class-of type="text/x-chdr"/>
<glob pattern="*.hh"/>
<glob pattern="*.hp"/>
@@ -33073,55 +35117,60 @@
</mime-type>
<mime-type type="text/x-c++src">
<comment>C++ source code</comment>
- <comment xml:lang="ar">شفرة مصدر سي++</comment>
- <comment xml:lang="be@latin">Kryničny kod C++</comment>
- <comment xml:lang="bg">Изходен код — C++</comment>
- <comment xml:lang="ca">codi font en C++</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce C++</comment>
- <comment xml:lang="da">C++-kildekode</comment>
- <comment xml:lang="de">C++-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας C++</comment>
- <comment xml:lang="en_GB">C++ source code</comment>
- <comment xml:lang="eo">C++-fontkodo</comment>
- <comment xml:lang="es">código fuente en C++</comment>
- <comment xml:lang="eu">C++ iturburu-kodea</comment>
- <comment xml:lang="fi">C++-lähdekoodi</comment>
- <comment xml:lang="fo">C++ keldukota</comment>
- <comment xml:lang="fr">code source C++</comment>
- <comment xml:lang="ga">cód foinseach C++</comment>
- <comment xml:lang="gl">código fonte de C++</comment>
- <comment xml:lang="he">קוד מקור של C++‎</comment>
- <comment xml:lang="hr">C++ izvorni kôd</comment>
- <comment xml:lang="hu">C++-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte C++</comment>
- <comment xml:lang="id">Kode sumber C++</comment>
- <comment xml:lang="it">Codice sorgente C++</comment>
- <comment xml:lang="ja">C++ ソースコード</comment>
- <comment xml:lang="ka">C++-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">C++ бастапқы коды</comment>
- <comment xml:lang="ko">C++ 소스 코드</comment>
- <comment xml:lang="lt">C++ pradinis kodas</comment>
- <comment xml:lang="lv">C++ pirmkods</comment>
- <comment xml:lang="ms">Kod sumber C++</comment>
- <comment xml:lang="nb">C++-kildekode</comment>
- <comment xml:lang="nl">C++-broncode</comment>
- <comment xml:lang="nn">C++-kjeldekode</comment>
- <comment xml:lang="oc">còde font C++</comment>
- <comment xml:lang="pl">Kod źródłowy C++</comment>
- <comment xml:lang="pt">código origem C++</comment>
- <comment xml:lang="pt_BR">Código-fonte C++</comment>
- <comment xml:lang="ro">Cod sursă C++</comment>
- <comment xml:lang="ru">Исходный код C++</comment>
- <comment xml:lang="sk">Zdrojový kód jazyka C++</comment>
- <comment xml:lang="sl">Datoteka izvorne kode C++</comment>
- <comment xml:lang="sq">Kod burues C++</comment>
- <comment xml:lang="sr">Ц++ изворни ко̂д</comment>
- <comment xml:lang="sv">C++-källkod</comment>
- <comment xml:lang="tr">C++ kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою C++</comment>
- <comment xml:lang="vi">Mã nguồn C++</comment>
- <comment xml:lang="zh_CN">C++ 源代码</comment>
<comment xml:lang="zh_TW">C++ 源碼</comment>
+ <comment xml:lang="zh_CN">C++ 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn C++</comment>
+ <comment xml:lang="uk">початковий код мовою C++</comment>
+ <comment xml:lang="tr">C++ kaynak kodu</comment>
+ <comment xml:lang="sv">C++-källkod</comment>
+ <comment xml:lang="sr">Ц++ изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim C++</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode C++</comment>
+ <comment xml:lang="si">C++ මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód jazyka C++</comment>
+ <comment xml:lang="ru">Исходный код C++</comment>
+ <comment xml:lang="ro">Cod sursă C++</comment>
+ <comment xml:lang="pt_BR">Código-fonte C++</comment>
+ <comment xml:lang="pt">código origem C++</comment>
+ <comment xml:lang="pl">Kod źródłowy C++</comment>
+ <comment xml:lang="oc">còde font C++</comment>
+ <comment xml:lang="nn">C++-kjeldekode</comment>
+ <comment xml:lang="nl">C++-broncode</comment>
+ <comment xml:lang="nb">C++-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber C++</comment>
+ <comment xml:lang="lv">C++ pirmkods</comment>
+ <comment xml:lang="lt">C++ pradinis kodas</comment>
+ <comment xml:lang="ko">C++ 소스 코드</comment>
+ <comment xml:lang="kk">C++ бастапқы коды</comment>
+ <comment xml:lang="ka">C++-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">C++ ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente C++</comment>
+ <comment xml:lang="is">C++ frumkóði</comment>
+ <comment xml:lang="id">Kode sumber C++</comment>
+ <comment xml:lang="ia">Codice-fonte C++</comment>
+ <comment xml:lang="hu">C++-forráskód</comment>
+ <comment xml:lang="hr">C++ izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של C++‎</comment>
+ <comment xml:lang="gl">código fonte de C++</comment>
+ <comment xml:lang="ga">cód foinseach C++</comment>
+ <comment xml:lang="fur">codiç sorzint C++</comment>
+ <comment xml:lang="fr">code source C++</comment>
+ <comment xml:lang="fo">C++ keldukota</comment>
+ <comment xml:lang="fi">C++-lähdekoodi</comment>
+ <comment xml:lang="eu">C++ iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en C++</comment>
+ <comment xml:lang="eo">C++-fontkodo</comment>
+ <comment xml:lang="en_GB">C++ source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας C++</comment>
+ <comment xml:lang="de">C++-Quelltext</comment>
+ <comment xml:lang="da">C++-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce C++</comment>
+ <comment xml:lang="ca">codi font en C++</comment>
+ <comment xml:lang="bg">Изходен код — C++</comment>
+ <comment xml:lang="be@latin">Kryničny kod C++</comment>
+ <comment xml:lang="be">зыходны код C++</comment>
+ <comment xml:lang="ar">شفرة مصدر سي++</comment>
+ <comment xml:lang="af">C++-bronkode</comment>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.cpp"/>
<glob pattern="*.cxx"/>
@@ -33131,214 +35180,270 @@
</mime-type>
<mime-type type="text/x-changelog">
<comment>ChangeLog document</comment>
- <comment xml:lang="ar">مستند ChangeLog</comment>
- <comment xml:lang="ast">Documentu de rexistru de cambeos</comment>
- <comment xml:lang="be@latin">Dakument zafiksavanych źmienaŭ ChangeLog</comment>
- <comment xml:lang="bg">Дневник за промени — ChangeLog</comment>
- <comment xml:lang="ca">document de registre de canvis</comment>
- <comment xml:lang="cs">dokument ChangeLog</comment>
- <comment xml:lang="da">ChangeLot-dokument</comment>
- <comment xml:lang="de">Änderungsprotokoll-Dokument</comment>
- <comment xml:lang="el">Έγγραφο ChangeLog</comment>
- <comment xml:lang="en_GB">ChangeLog document</comment>
- <comment xml:lang="es">documento de registro de cambios</comment>
- <comment xml:lang="eu">ChangeLog dokumentua</comment>
- <comment xml:lang="fi">Muutoslokiasiakirja</comment>
- <comment xml:lang="fo">ChangeLog skjal</comment>
- <comment xml:lang="fr">document ChangeLog</comment>
- <comment xml:lang="ga">cáipéis ChangeLog</comment>
- <comment xml:lang="gl">documento Changelog</comment>
- <comment xml:lang="he">מסמך של ChangeLog</comment>
- <comment xml:lang="hr">Dokument zapisa promjena</comment>
- <comment xml:lang="hu">ChangeLog dokumentum</comment>
- <comment xml:lang="ia">Lista de cambiamentos</comment>
- <comment xml:lang="id">Dokumen ChangeLog</comment>
- <comment xml:lang="it">Documento ChangeLog</comment>
- <comment xml:lang="ja">ChangeLog ドキュメント</comment>
- <comment xml:lang="ka">ChangeLog დოკუმენტი</comment>
- <comment xml:lang="kk">ChangeLog құжаты</comment>
- <comment xml:lang="ko">ChangeLog 문서</comment>
- <comment xml:lang="lt">ChangeLog dokumentas</comment>
- <comment xml:lang="lv">ChangeLog dokuments</comment>
- <comment xml:lang="nb">ChangeLog-dokument</comment>
- <comment xml:lang="nl">ChangeLog-document</comment>
- <comment xml:lang="nn">ChangeLog-dokument</comment>
- <comment xml:lang="oc">document ChangeLog</comment>
- <comment xml:lang="pl">Dokument zmian (ChangeLog)</comment>
- <comment xml:lang="pt">documento ChangeLog</comment>
- <comment xml:lang="pt_BR">Documento ChangeLog</comment>
- <comment xml:lang="ro">Document ChangeLog</comment>
- <comment xml:lang="ru">Протокол изменений</comment>
- <comment xml:lang="sk">Dokument ChangeLog</comment>
- <comment xml:lang="sl">Dokument ChangeLog</comment>
- <comment xml:lang="sq">Dokument ChangeLog</comment>
- <comment xml:lang="sr">документ дневника измена</comment>
- <comment xml:lang="sv">Ändringsloggsdokument</comment>
- <comment xml:lang="tr">Değişim Günlüğü belgesi</comment>
- <comment xml:lang="uk">документ ChangeLog</comment>
- <comment xml:lang="vi">Tài liệu ChangeLog (ghi lưu thay đổi)</comment>
- <comment xml:lang="zh_CN">变更日志文档</comment>
<comment xml:lang="zh_TW">ChangeLog 文件</comment>
+ <comment xml:lang="zh_CN">变更日志文档</comment>
+ <comment xml:lang="vi">Tài liệu ChangeLog (ghi lưu thay đổi)</comment>
+ <comment xml:lang="uk">документ ChangeLog</comment>
+ <comment xml:lang="tr">ChangeLog belgesi</comment>
+ <comment xml:lang="sv">Ändringsloggsdokument</comment>
+ <comment xml:lang="sr">документ дневника измена</comment>
+ <comment xml:lang="sq">dokument regjistri ndryshimesh</comment>
+ <comment xml:lang="sl">Dokument ChangeLog</comment>
+ <comment xml:lang="si">ChangeLog ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument ChangeLog</comment>
+ <comment xml:lang="ru">Протокол изменений</comment>
+ <comment xml:lang="ro">Document ChangeLog</comment>
+ <comment xml:lang="pt_BR">Documento ChangeLog</comment>
+ <comment xml:lang="pt">documento ChangeLog</comment>
+ <comment xml:lang="pl">Dokument zmian (ChangeLog)</comment>
+ <comment xml:lang="oc">document ChangeLog</comment>
+ <comment xml:lang="nn">ChangeLog-dokument</comment>
+ <comment xml:lang="nl">ChangeLog-document</comment>
+ <comment xml:lang="nb">ChangeLog-dokument</comment>
+ <comment xml:lang="lv">ChangeLog dokuments</comment>
+ <comment xml:lang="lt">ChangeLog dokumentas</comment>
+ <comment xml:lang="ko">ChangeLog 문서</comment>
+ <comment xml:lang="kk">ChangeLog құжаты</comment>
+ <comment xml:lang="ka">ChangeLog დოკუმენტი</comment>
+ <comment xml:lang="ja">ChangeLog ドキュメント</comment>
+ <comment xml:lang="it">Documento ChangeLog</comment>
+ <comment xml:lang="is">ChangeLog skjal</comment>
+ <comment xml:lang="id">Dokumen ChangeLog</comment>
+ <comment xml:lang="ia">Lista de cambiamentos</comment>
+ <comment xml:lang="hu">ChangeLog dokumentum</comment>
+ <comment xml:lang="hr">Dokument zapisa promjena</comment>
+ <comment xml:lang="he">מסמך של ChangeLog</comment>
+ <comment xml:lang="gl">documento Changelog</comment>
+ <comment xml:lang="ga">cáipéis ChangeLog</comment>
+ <comment xml:lang="fur">document ChangeLog</comment>
+ <comment xml:lang="fr">document ChangeLog</comment>
+ <comment xml:lang="fo">ChangeLog skjal</comment>
+ <comment xml:lang="fi">Muutoslokiasiakirja</comment>
+ <comment xml:lang="eu">ChangeLog dokumentua</comment>
+ <comment xml:lang="es">documento de registro de cambios</comment>
+ <comment xml:lang="en_GB">ChangeLog document</comment>
+ <comment xml:lang="el">Έγγραφο ChangeLog</comment>
+ <comment xml:lang="de">Änderungsprotokoll-Dokument</comment>
+ <comment xml:lang="da">ChangeLot-dokument</comment>
+ <comment xml:lang="cs">dokument ChangeLog</comment>
+ <comment xml:lang="ca">document de registre de canvis</comment>
+ <comment xml:lang="bg">Дневник за промени — ChangeLog</comment>
+ <comment xml:lang="be@latin">Dakument zafiksavanych źmienaŭ ChangeLog</comment>
+ <comment xml:lang="be">дакумент zafiksavanych źmienaŭ ChangeLog</comment>
+ <comment xml:lang="ast">Documentu de rexistru de cambeos</comment>
+ <comment xml:lang="ar">مستند ChangeLog</comment>
+ <comment xml:lang="af">ChangeLog-dokument</comment>
<sub-class-of type="text/plain"/>
<glob pattern="ChangeLog"/>
</mime-type>
<mime-type type="text/x-chdr">
<comment>C header</comment>
- <comment xml:lang="ar">ترويسة C</comment>
- <comment xml:lang="be@latin">Zahałoŭny fajł C</comment>
- <comment xml:lang="bg">Заглавен файл — C</comment>
- <comment xml:lang="ca">capçalera en C</comment>
- <comment xml:lang="cs">hlavičkový soubor C</comment>
- <comment xml:lang="da">C-posthoved</comment>
- <comment xml:lang="de">C-Header</comment>
- <comment xml:lang="el">Κεφαλίδα C</comment>
- <comment xml:lang="en_GB">C header</comment>
- <comment xml:lang="es">cabecera de código fuente en C</comment>
- <comment xml:lang="eu">C goiburua</comment>
- <comment xml:lang="fi">C-otsake</comment>
- <comment xml:lang="fo">C tekshøvd</comment>
- <comment xml:lang="fr">en-tête C</comment>
- <comment xml:lang="ga">ceanntásc C</comment>
- <comment xml:lang="gl">cabeceira de códifo fonte de C</comment>
- <comment xml:lang="he">כותר C</comment>
- <comment xml:lang="hr">C zaglavlje</comment>
- <comment xml:lang="hu">C fejléc</comment>
- <comment xml:lang="ia">Capite C</comment>
- <comment xml:lang="id">Header C</comment>
- <comment xml:lang="it">Header C</comment>
- <comment xml:lang="ja">C ヘッダー</comment>
- <comment xml:lang="ka">C-ის თავსართი</comment>
- <comment xml:lang="kk">C тақырыптама файлы</comment>
- <comment xml:lang="ko">C 헤더</comment>
- <comment xml:lang="lt">C antraštė</comment>
- <comment xml:lang="lv">C galvene</comment>
- <comment xml:lang="nb">C-kildekodeheader</comment>
- <comment xml:lang="nl">C-header</comment>
- <comment xml:lang="nn">C-kjeldekode-hovud</comment>
- <comment xml:lang="oc">entèsta C</comment>
- <comment xml:lang="pl">Plik nagłówkowy C</comment>
- <comment xml:lang="pt">cabeçalho C</comment>
- <comment xml:lang="pt_BR">Cabeçalho C</comment>
- <comment xml:lang="ro">Antet C</comment>
- <comment xml:lang="ru">Заголовочный файл C</comment>
- <comment xml:lang="sk">Hlavičky jazyka C</comment>
- <comment xml:lang="sl">Datoteka glave C</comment>
- <comment xml:lang="sq">Header C</comment>
- <comment xml:lang="sr">Ц заглавље</comment>
- <comment xml:lang="sv">C-huvud</comment>
- <comment xml:lang="tr">C başlığı</comment>
- <comment xml:lang="uk">файл заголовків мовою C</comment>
- <comment xml:lang="vi">Phần đầu mã nguồn C</comment>
- <comment xml:lang="zh_CN">C 程序头文件</comment>
<comment xml:lang="zh_TW">C 標頭檔</comment>
+ <comment xml:lang="zh_CN">C 程序头文件</comment>
+ <comment xml:lang="vi">Phần đầu mã nguồn C</comment>
+ <comment xml:lang="uk">файл заголовків мовою C</comment>
+ <comment xml:lang="tr">C başlığı</comment>
+ <comment xml:lang="sv">C-huvud</comment>
+ <comment xml:lang="sr">Ц заглавље</comment>
+ <comment xml:lang="sq">krye C</comment>
+ <comment xml:lang="sl">Datoteka glave C</comment>
+ <comment xml:lang="si">C ශීර්ෂකය</comment>
+ <comment xml:lang="sk">Hlavičky jazyka C</comment>
+ <comment xml:lang="ru">Заголовочный файл C</comment>
+ <comment xml:lang="ro">Antet C</comment>
+ <comment xml:lang="pt_BR">Cabeçalho C</comment>
+ <comment xml:lang="pt">cabeçalho C</comment>
+ <comment xml:lang="pl">Plik nagłówkowy C</comment>
+ <comment xml:lang="oc">entèsta C</comment>
+ <comment xml:lang="nn">C-kjeldekode-hovud</comment>
+ <comment xml:lang="nl">C-header</comment>
+ <comment xml:lang="nb">C-kildekodeheader</comment>
+ <comment xml:lang="lv">C galvene</comment>
+ <comment xml:lang="lt">C antraštė</comment>
+ <comment xml:lang="ko">C 헤더</comment>
+ <comment xml:lang="kk">C тақырыптама файлы</comment>
+ <comment xml:lang="ka">C-ის თავსართი</comment>
+ <comment xml:lang="ja">C ヘッダー</comment>
+ <comment xml:lang="it">Header C</comment>
+ <comment xml:lang="is">C haus</comment>
+ <comment xml:lang="id">Header C</comment>
+ <comment xml:lang="ia">Capite C</comment>
+ <comment xml:lang="hu">C fejléc</comment>
+ <comment xml:lang="hr">C zaglavlje</comment>
+ <comment xml:lang="he">כותר C</comment>
+ <comment xml:lang="gl">cabeceira de códifo fonte de C</comment>
+ <comment xml:lang="ga">ceanntásc C</comment>
+ <comment xml:lang="fur">intestazion C</comment>
+ <comment xml:lang="fr">en-tête C</comment>
+ <comment xml:lang="fo">C tekshøvd</comment>
+ <comment xml:lang="fi">C-otsake</comment>
+ <comment xml:lang="eu">C goiburua</comment>
+ <comment xml:lang="es">cabecera de código fuente en C</comment>
+ <comment xml:lang="en_GB">C header</comment>
+ <comment xml:lang="el">Κεφαλίδα C</comment>
+ <comment xml:lang="de">C-Header</comment>
+ <comment xml:lang="da">C-posthoved</comment>
+ <comment xml:lang="cs">hlavičkový soubor C</comment>
+ <comment xml:lang="ca">capçalera en C</comment>
+ <comment xml:lang="bg">Заглавен файл — C</comment>
+ <comment xml:lang="be@latin">Zahałoŭny fajł C</comment>
+ <comment xml:lang="be">загаловачны файл C</comment>
+ <comment xml:lang="ar">ترويسة C</comment>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.h"/>
</mime-type>
<mime-type type="text/x-cmake">
<comment>CMake source code</comment>
- <comment xml:lang="ar">شفرة مصدر CMake</comment>
- <comment xml:lang="be@latin">Kryničny kod CMake</comment>
- <comment xml:lang="bg">Изходен код — CMake</comment>
- <comment xml:lang="ca">codi font en CMake</comment>
- <comment xml:lang="cs">zdrojový kód CMake</comment>
- <comment xml:lang="da">CMake-kildekode</comment>
- <comment xml:lang="de">CMake-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας CMake</comment>
- <comment xml:lang="en_GB">CMake source code</comment>
- <comment xml:lang="eo">CMake-fontkodo</comment>
- <comment xml:lang="es">código fuente en CMake</comment>
- <comment xml:lang="eu">CMake iturburu-kodea</comment>
- <comment xml:lang="fi">CMake-lähdekoodi</comment>
- <comment xml:lang="fo">CMake keldukota</comment>
- <comment xml:lang="fr">code source CMake</comment>
- <comment xml:lang="ga">cód foinseach CMake</comment>
- <comment xml:lang="gl">código fonte de CMake</comment>
- <comment xml:lang="he">קוד מקור של CMake</comment>
- <comment xml:lang="hr">CMake izvorni kôd</comment>
- <comment xml:lang="hu">CMake-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte CMake</comment>
- <comment xml:lang="id">Kode sumber CMake</comment>
- <comment xml:lang="it">Codice sorgente CMake</comment>
- <comment xml:lang="ja">CMake ソースコード</comment>
- <comment xml:lang="ka">CMake-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">CMake бастапқы коды</comment>
- <comment xml:lang="ko">CMake 소스 코드</comment>
- <comment xml:lang="lt">CMake pirminis tekstas</comment>
- <comment xml:lang="lv">CMake pirmkods</comment>
- <comment xml:lang="nb">CMake-kildekode</comment>
- <comment xml:lang="nl">CMake-broncode</comment>
- <comment xml:lang="nn">CMake-kjeldekode</comment>
- <comment xml:lang="oc">còde font CMake</comment>
- <comment xml:lang="pl">Kod źródłowy CMake</comment>
- <comment xml:lang="pt">código origem CMake</comment>
- <comment xml:lang="pt_BR">Código-fonte CMake</comment>
- <comment xml:lang="ro">Cod sursă CMake</comment>
- <comment xml:lang="ru">Исходный код CMake</comment>
- <comment xml:lang="sk">Zdrojový kód CMake</comment>
- <comment xml:lang="sl">Datoteka izvorne kode CMake</comment>
- <comment xml:lang="sq">Kod burues CMake</comment>
- <comment xml:lang="sr">Ц Мејк изворни ко̂д</comment>
- <comment xml:lang="sv">CMake-källkod</comment>
- <comment xml:lang="tr">CMake kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код CMake</comment>
- <comment xml:lang="vi">Mã nguồn CMake</comment>
- <comment xml:lang="zh_CN">CMake 源代码</comment>
<comment xml:lang="zh_TW">CMake 源碼</comment>
+ <comment xml:lang="zh_CN">CMake 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn CMake</comment>
+ <comment xml:lang="uk">початковий код мовою CMake</comment>
+ <comment xml:lang="tr">CMake kaynak kodu</comment>
+ <comment xml:lang="sv">CMake-källkod</comment>
+ <comment xml:lang="sr">Ц Мејк изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim CMake</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode CMake</comment>
+ <comment xml:lang="si">CMake මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód CMake</comment>
+ <comment xml:lang="ru">Исходный код CMake</comment>
+ <comment xml:lang="ro">Cod sursă CMake</comment>
+ <comment xml:lang="pt_BR">Código-fonte CMake</comment>
+ <comment xml:lang="pt">código origem CMake</comment>
+ <comment xml:lang="pl">Kod źródłowy CMake</comment>
+ <comment xml:lang="oc">còde font CMake</comment>
+ <comment xml:lang="nn">CMake-kjeldekode</comment>
+ <comment xml:lang="nl">CMake-broncode</comment>
+ <comment xml:lang="nb">CMake-kildekode</comment>
+ <comment xml:lang="lv">CMake pirmkods</comment>
+ <comment xml:lang="lt">CMake pirminis tekstas</comment>
+ <comment xml:lang="ko">CMake 소스 코드</comment>
+ <comment xml:lang="kk">CMake бастапқы коды</comment>
+ <comment xml:lang="ka">CMake-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">CMake ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente CMake</comment>
+ <comment xml:lang="is">CMake frumkóði</comment>
+ <comment xml:lang="id">Kode sumber CMake</comment>
+ <comment xml:lang="ia">Codice-fonte CMake</comment>
+ <comment xml:lang="hu">CMake-forráskód</comment>
+ <comment xml:lang="hr">CMake izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של CMake</comment>
+ <comment xml:lang="gl">código fonte de CMake</comment>
+ <comment xml:lang="ga">cód foinseach CMake</comment>
+ <comment xml:lang="fur">codiç sorzint CMake</comment>
+ <comment xml:lang="fr">code source CMake</comment>
+ <comment xml:lang="fo">CMake keldukota</comment>
+ <comment xml:lang="fi">CMake-lähdekoodi</comment>
+ <comment xml:lang="eu">CMake iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en CMake</comment>
+ <comment xml:lang="eo">CMake-fontkodo</comment>
+ <comment xml:lang="en_GB">CMake source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας CMake</comment>
+ <comment xml:lang="de">CMake-Quelltext</comment>
+ <comment xml:lang="da">CMake-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód CMake</comment>
+ <comment xml:lang="ca">codi font en CMake</comment>
+ <comment xml:lang="bg">Изходен код — CMake</comment>
+ <comment xml:lang="be@latin">Kryničny kod CMake</comment>
+ <comment xml:lang="be">зыходны код CMake</comment>
+ <comment xml:lang="ar">شفرة مصدر CMake</comment>
+ <comment xml:lang="af">CMake-bronkode</comment>
<glob pattern="*.cmake"/>
<glob pattern="CMakeLists.txt"/>
<sub-class-of type="text/plain"/>
</mime-type>
+ <mime-type type="text/x-common-lisp">
+ <comment>Common Lisp source code</comment>
+ <comment xml:lang="zh_TW">Common Lisp 原始碼</comment>
+ <comment xml:lang="zh_CN">Common Lisp 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Common Lisp</comment>
+ <comment xml:lang="tr">Common Lisp kaynak kodu</comment>
+ <comment xml:lang="sv">Common Lisp-källkod</comment>
+ <comment xml:lang="si">පොදු Lisp මූලාශ්‍ර කේතය</comment>
+ <comment xml:lang="ru">Исходный код Common Lisp</comment>
+ <comment xml:lang="pt_BR">Código-fonte Common Lisp</comment>
+ <comment xml:lang="pl">Kod źródłowy Common Lisp</comment>
+ <comment xml:lang="nl">Common Lisp-broncode</comment>
+ <comment xml:lang="ko">Common Lisp 소스 코드</comment>
+ <comment xml:lang="kk">Common Lisp бастапқы коды</comment>
+ <comment xml:lang="ja">Common Lisp ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Common Lisp</comment>
+ <comment xml:lang="is">Sameiginlegur Lisp frumkóði</comment>
+ <comment xml:lang="id">kode sumber Common Lisp</comment>
+ <comment xml:lang="hu">Common Lisp forráskód</comment>
+ <comment xml:lang="hr">Common Lisp izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Common Lisp</comment>
+ <comment xml:lang="gl">Código fonte en Common Lisp</comment>
+ <comment xml:lang="fr">code source Common Lisp</comment>
+ <comment xml:lang="fi">Common Lisp -lähdekoodi</comment>
+ <comment xml:lang="es">código fuente en Common Lisp</comment>
+ <comment xml:lang="en_GB">Common Lisp source code</comment>
+ <comment xml:lang="de">Common-Lisp-Quelltext</comment>
+ <comment xml:lang="da">Common Lisp-kildekode</comment>
+ <comment xml:lang="ca">codi font en Common Lisp</comment>
+ <comment xml:lang="be">зыходны код Common Lisp</comment>
+ <comment xml:lang="ar">شفرة مصدر Common Lisp</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.asd"/>
+ <glob pattern="*.fasl"/>
+ <glob pattern="*.lisp"/>
+ <glob pattern="*.ros"/>
+ </mime-type>
<mime-type type="text/csv">
<comment>CSV document</comment>
- <comment xml:lang="ar">مستند CSV</comment>
- <comment xml:lang="ast">Documentu CVS</comment>
- <comment xml:lang="be@latin">Dakument CSV</comment>
- <comment xml:lang="bg">Документ — CSV</comment>
- <comment xml:lang="ca">document CSV</comment>
- <comment xml:lang="cs">dokument CSV</comment>
- <comment xml:lang="da">CSV-dokument</comment>
- <comment xml:lang="de">CSV-Dokument</comment>
- <comment xml:lang="el">Έγγραφο CSV</comment>
- <comment xml:lang="en_GB">CSV document</comment>
- <comment xml:lang="eo">CSV-dokumento</comment>
- <comment xml:lang="es">documento CSV</comment>
- <comment xml:lang="eu">CSV dokumentua</comment>
- <comment xml:lang="fi">CSV-asiakirja</comment>
- <comment xml:lang="fo">CSV skjal</comment>
- <comment xml:lang="fr">document CSV</comment>
- <comment xml:lang="ga">cáipéis CSV</comment>
- <comment xml:lang="gl">documento CSV</comment>
- <comment xml:lang="he">מסמך CSV</comment>
- <comment xml:lang="hr">CSV dokument</comment>
- <comment xml:lang="hu">CSV dokumentum</comment>
- <comment xml:lang="ia">Documento CSV</comment>
- <comment xml:lang="id">Dokumen CSV</comment>
- <comment xml:lang="it">Documento CSV</comment>
- <comment xml:lang="ja">CSV ドキュメント</comment>
- <comment xml:lang="ka">CSV დოკუმენტი</comment>
- <comment xml:lang="kk">CSV құжаты</comment>
- <comment xml:lang="ko">CSV 문서</comment>
- <comment xml:lang="lt">CSV dokumentas</comment>
- <comment xml:lang="lv">CSV dokuments</comment>
- <comment xml:lang="nb">CSV-dokument</comment>
- <comment xml:lang="nl">CSV-document</comment>
- <comment xml:lang="nn">CSV-dokument</comment>
- <comment xml:lang="oc">document CSV</comment>
- <comment xml:lang="pl">Dokument CSV</comment>
- <comment xml:lang="pt">documento CSV</comment>
- <comment xml:lang="pt_BR">Documento CSV</comment>
- <comment xml:lang="ro">Document CSV</comment>
- <comment xml:lang="ru">Документ CSV</comment>
- <comment xml:lang="sk">Dokument CSV</comment>
- <comment xml:lang="sl">Dokument CSV</comment>
- <comment xml:lang="sq">Dokument CSV</comment>
- <comment xml:lang="sr">ЦСВ документ</comment>
- <comment xml:lang="sv">CSV-dokument</comment>
- <comment xml:lang="tr">CSV belgesi</comment>
- <comment xml:lang="uk">документ CSV</comment>
- <comment xml:lang="vi">Tài liệu CSV</comment>
- <comment xml:lang="zh_CN">CSV 文档</comment>
<comment xml:lang="zh_TW">CSV 文件</comment>
+ <comment xml:lang="zh_CN">CSV 文档</comment>
+ <comment xml:lang="vi">Tài liệu CSV</comment>
+ <comment xml:lang="uk">документ CSV</comment>
+ <comment xml:lang="tr">CSV belgesi</comment>
+ <comment xml:lang="sv">CSV-dokument</comment>
+ <comment xml:lang="sr">ЦСВ документ</comment>
+ <comment xml:lang="sq">dokument CSV</comment>
+ <comment xml:lang="sl">Dokument CSV</comment>
+ <comment xml:lang="si">CSV ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument CSV</comment>
+ <comment xml:lang="ru">Документ CSV</comment>
+ <comment xml:lang="ro">Document CSV</comment>
+ <comment xml:lang="pt_BR">Documento CSV</comment>
+ <comment xml:lang="pt">documento CSV</comment>
+ <comment xml:lang="pl">Dokument CSV</comment>
+ <comment xml:lang="oc">document CSV</comment>
+ <comment xml:lang="nn">CSV-dokument</comment>
+ <comment xml:lang="nl">CSV-document</comment>
+ <comment xml:lang="nb">CSV-dokument</comment>
+ <comment xml:lang="lv">CSV dokuments</comment>
+ <comment xml:lang="lt">CSV dokumentas</comment>
+ <comment xml:lang="ko">CSV 문서</comment>
+ <comment xml:lang="kk">CSV құжаты</comment>
+ <comment xml:lang="ka">CSV დოკუმენტი</comment>
+ <comment xml:lang="ja">CSV ドキュメント</comment>
+ <comment xml:lang="it">Documento CSV</comment>
+ <comment xml:lang="is">CSV skjal</comment>
+ <comment xml:lang="id">Dokumen CSV</comment>
+ <comment xml:lang="ia">Documento CSV</comment>
+ <comment xml:lang="hu">CSV dokumentum</comment>
+ <comment xml:lang="hr">CSV dokument</comment>
+ <comment xml:lang="he">מסמך CSV</comment>
+ <comment xml:lang="gl">documento CSV</comment>
+ <comment xml:lang="ga">cáipéis CSV</comment>
+ <comment xml:lang="fur">document CSV</comment>
+ <comment xml:lang="fr">document CSV</comment>
+ <comment xml:lang="fo">CSV skjal</comment>
+ <comment xml:lang="fi">CSV-asiakirja</comment>
+ <comment xml:lang="eu">CSV dokumentua</comment>
+ <comment xml:lang="es">documento CSV</comment>
+ <comment xml:lang="eo">CSV-dokumento</comment>
+ <comment xml:lang="en_GB">CSV document</comment>
+ <comment xml:lang="el">Έγγραφο CSV</comment>
+ <comment xml:lang="de">CSV-Dokument</comment>
+ <comment xml:lang="da">CSV-dokument</comment>
+ <comment xml:lang="cs">dokument CSV</comment>
+ <comment xml:lang="ca">document CSV</comment>
+ <comment xml:lang="bg">Документ — CSV</comment>
+ <comment xml:lang="be@latin">Dakument CSV</comment>
+ <comment xml:lang="be">дакумент CSV</comment>
+ <comment xml:lang="ast">Documentu CVS</comment>
+ <comment xml:lang="ar">مستند CSV</comment>
+ <comment xml:lang="af">CSV-dokument</comment>
<acronym>CSV</acronym>
<expanded-acronym>Comma Separated Values</expanded-acronym>
<alias type="text/x-comma-separated-values"/>
@@ -33348,351 +35453,313 @@
</mime-type>
<mime-type type="text/csv-schema">
<comment>CSV Schema document</comment>
- <comment xml:lang="ast">Documentu d'esquema CSV</comment>
- <comment xml:lang="ca">document Schema de CSV</comment>
- <comment xml:lang="cs">dokument schématu CSV</comment>
- <comment xml:lang="da">CSV Schema-dokument</comment>
- <comment xml:lang="de">CSV-Schemadokument</comment>
- <comment xml:lang="en_GB">CSV Schema document</comment>
- <comment xml:lang="es">documento esquemático CSV</comment>
- <comment xml:lang="eu">CSV Schema dokumentua</comment>
- <comment xml:lang="fr">document schéma CSV</comment>
- <comment xml:lang="ga">cáipéis scéimre CSV</comment>
- <comment xml:lang="he">מסמך פריסת CSV</comment>
- <comment xml:lang="hr">CSV Shema dokument</comment>
- <comment xml:lang="hu">CSV sémadokumentum</comment>
- <comment xml:lang="ia">Documento CSV Schema</comment>
- <comment xml:lang="id">Dokumen Skema CSV</comment>
- <comment xml:lang="it">Documento schema CSV</comment>
- <comment xml:lang="kk">CSV сұлба құжаты</comment>
- <comment xml:lang="ko">CSV 스키마 문서</comment>
- <comment xml:lang="pl">Dokument schematu CSV</comment>
- <comment xml:lang="pt">documento CSV Schema</comment>
- <comment xml:lang="pt_BR">Documento CSV Schema</comment>
- <comment xml:lang="ru">Документ CSV Schema</comment>
- <comment xml:lang="sk">Dokument schémy CSV</comment>
- <comment xml:lang="sr">документ ЦСВ шеме</comment>
- <comment xml:lang="sv">CSV Schema-dokument</comment>
- <comment xml:lang="tr">CSV Şeması belgesi</comment>
- <comment xml:lang="uk">документ Schema у форматі CSV</comment>
- <comment xml:lang="zh_CN">CSV 架构文档</comment>
<comment xml:lang="zh_TW">CSV Schema 文件</comment>
+ <comment xml:lang="zh_CN">CSV 架构文档</comment>
+ <comment xml:lang="uk">документ Schema у форматі CSV</comment>
+ <comment xml:lang="tr">CSV Şeması belgesi</comment>
+ <comment xml:lang="sv">CSV Schema-dokument</comment>
+ <comment xml:lang="sr">документ ЦСВ шеме</comment>
+ <comment xml:lang="sq">dokument CSV Schema</comment>
+ <comment xml:lang="sl">Dokument CSV Schema</comment>
+ <comment xml:lang="si">CSV ක්‍රම ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument schémy CSV</comment>
+ <comment xml:lang="ru">Документ CSV Schema</comment>
+ <comment xml:lang="pt_BR">Documento CSV Schema</comment>
+ <comment xml:lang="pt">documento CSV Schema</comment>
+ <comment xml:lang="pl">Dokument schematu CSV</comment>
+ <comment xml:lang="nl">CSV-schemadocument</comment>
+ <comment xml:lang="ko">CSV 스키마 문서</comment>
+ <comment xml:lang="kk">CSV сұлба құжаты</comment>
+ <comment xml:lang="ja">CSV Schema ドキュメント</comment>
+ <comment xml:lang="it">Documento schema CSV</comment>
+ <comment xml:lang="is">CSV skemaskjal</comment>
+ <comment xml:lang="id">Dokumen Skema CSV</comment>
+ <comment xml:lang="ia">Documento CSV Schema</comment>
+ <comment xml:lang="hu">CSV sémadokumentum</comment>
+ <comment xml:lang="hr">CSV Shema dokument</comment>
+ <comment xml:lang="he">מסמך פריסת CSV</comment>
+ <comment xml:lang="ga">cáipéis scéimre CSV</comment>
+ <comment xml:lang="fur">document scheme CSV</comment>
+ <comment xml:lang="fr">document schéma CSV</comment>
+ <comment xml:lang="fi">CSV Schema -asiakirja</comment>
+ <comment xml:lang="eu">CSV Schema dokumentua</comment>
+ <comment xml:lang="es">documento esquemático CSV</comment>
+ <comment xml:lang="en_GB">CSV Schema document</comment>
+ <comment xml:lang="de">CSV-Schemadokument</comment>
+ <comment xml:lang="da">CSV Schema-dokument</comment>
+ <comment xml:lang="cs">dokument schématu CSV</comment>
+ <comment xml:lang="ca">document Schema de CSV</comment>
+ <comment xml:lang="bg">Документ — схема на CSV</comment>
+ <comment xml:lang="be">дакумент CSV Schema</comment>
+ <comment xml:lang="ast">Documentu d'esquema CSV</comment>
+ <comment xml:lang="ar">مستند مخطط CSV</comment>
+ <comment xml:lang="af">CSV Schema-dokument</comment>
<acronym>CSV</acronym>
<expanded-acronym>Comma Separated Values</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.csvs"/>
</mime-type>
<mime-type type="text/x-copying">
- <comment>license terms</comment>
- <comment xml:lang="ar">شروط الترخيص</comment>
- <comment xml:lang="ast">términos de llicencia</comment>
- <comment xml:lang="be@latin">licenzijnyja ŭmovy</comment>
- <comment xml:lang="bg">Лицензни условия</comment>
- <comment xml:lang="ca">condicions de llicència</comment>
- <comment xml:lang="cs">licenční podmínky</comment>
- <comment xml:lang="da">licensbetingelser</comment>
- <comment xml:lang="de">Lizenzbedingungen</comment>
- <comment xml:lang="el">Όροι άδειας</comment>
- <comment xml:lang="en_GB">licence terms</comment>
- <comment xml:lang="es">términos de licencia</comment>
- <comment xml:lang="eu">lizentzia baldintzak</comment>
- <comment xml:lang="fi">lisenssiehdot</comment>
- <comment xml:lang="fo">loyvistreytir</comment>
- <comment xml:lang="fr">termes de licence</comment>
- <comment xml:lang="ga">téarmaí ceadúnais</comment>
- <comment xml:lang="gl">termos de licenza</comment>
- <comment xml:lang="he">תנאי רישיון</comment>
- <comment xml:lang="hr">Uvjeti licence</comment>
- <comment xml:lang="hu">licencfeltételek</comment>
- <comment xml:lang="ia">Conditiones de licentia</comment>
- <comment xml:lang="id">persyaratan lisensi</comment>
- <comment xml:lang="it">Termini di licenza</comment>
- <comment xml:lang="ja">ソフトウェアライセンス条項</comment>
- <comment xml:lang="kk">лицензиялық келісімі</comment>
- <comment xml:lang="ko">라이선스 조항</comment>
- <comment xml:lang="lt">licencijos sąlygos</comment>
- <comment xml:lang="lv">licences nosacījumi</comment>
- <comment xml:lang="nb">lisensbestemmelser</comment>
- <comment xml:lang="nl">licentievoorwaarden</comment>
- <comment xml:lang="nn">lisensvilkår</comment>
- <comment xml:lang="oc">tèrmes de licéncia</comment>
- <comment xml:lang="pl">Warunki licencji</comment>
- <comment xml:lang="pt">termos de licença</comment>
- <comment xml:lang="pt_BR">Termos de licença</comment>
- <comment xml:lang="ro">termeni de licență</comment>
+ <comment>License terms</comment>
+ <comment xml:lang="uk">умови ліцензування</comment>
+ <comment xml:lang="sv">Licensvillkor</comment>
<comment xml:lang="ru">Лицензионное соглашение</comment>
- <comment xml:lang="sk">Licenčné podmienky</comment>
- <comment xml:lang="sl">pogoji in dovoljenja uporabe</comment>
- <comment xml:lang="sq">Kushte liçence</comment>
- <comment xml:lang="sr">услови коришћења</comment>
- <comment xml:lang="sv">licensvillkor</comment>
- <comment xml:lang="tr">lisans koşulları</comment>
- <comment xml:lang="uk">ліцензійні умови</comment>
- <comment xml:lang="vi">điều kiện giấy phép</comment>
- <comment xml:lang="zh_CN">软件许可条款</comment>
- <comment xml:lang="zh_TW">授權條款</comment>
+ <comment xml:lang="pl">Warunki licencji</comment>
+ <comment xml:lang="ja">利用許諾</comment>
+ <comment xml:lang="it">Termini di licenza</comment>
+ <comment xml:lang="gl">Termos de licenza</comment>
+ <comment xml:lang="eu">Lizentziaren terminoak</comment>
+ <comment xml:lang="es">términos de licencia</comment>
+ <comment xml:lang="de">Lizenzbedingungen</comment>
+ <comment xml:lang="be">умовы карыстання</comment>
<sub-class-of type="text/plain"/>
<glob pattern="COPYING"/>
</mime-type>
<mime-type type="text/x-credits">
- <comment>author credits</comment>
- <comment xml:lang="ar">شكر وتقدير المؤلف</comment>
- <comment xml:lang="ast">creitos del autor</comment>
- <comment xml:lang="be@latin">zasłuhi aŭtara</comment>
- <comment xml:lang="bg">Благодарности към авторите</comment>
- <comment xml:lang="ca">atribucions d'autor</comment>
- <comment xml:lang="cs">autorské zásluhy</comment>
- <comment xml:lang="da">bidragydere</comment>
- <comment xml:lang="de">Autorendanksagung</comment>
- <comment xml:lang="el">Μνεία συγγραφέων</comment>
- <comment xml:lang="en_GB">author credits</comment>
- <comment xml:lang="es">reconocimiento de autoría</comment>
- <comment xml:lang="fi">tekijöiden kiitokset</comment>
- <comment xml:lang="fo">høvundaheiður</comment>
- <comment xml:lang="fr">remerciements</comment>
- <comment xml:lang="ga">admhálacha údar</comment>
- <comment xml:lang="gl">créditos de autor</comment>
- <comment xml:lang="he">קרדיטים של היוצר</comment>
- <comment xml:lang="hr">Zasluge autora</comment>
- <comment xml:lang="hu">szerzők listája</comment>
- <comment xml:lang="ia">Recognoscentia de autores</comment>
- <comment xml:lang="id">kredit penulis</comment>
- <comment xml:lang="it">Riconoscimenti autori</comment>
- <comment xml:lang="ja">ソフトウェア作者クレジット</comment>
- <comment xml:lang="kk">бағдарлама авторлары</comment>
- <comment xml:lang="ko">작성자 정보</comment>
- <comment xml:lang="lt">padėkos autoriams</comment>
- <comment xml:lang="lv">veidotāji</comment>
- <comment xml:lang="nb">liste med bidragsytere</comment>
- <comment xml:lang="nl">auteursinformatie</comment>
- <comment xml:lang="nn">forfattarliste</comment>
- <comment xml:lang="oc">mercejaments</comment>
- <comment xml:lang="pl">Podziękowania autorów programu</comment>
- <comment xml:lang="pt">créditos de autor</comment>
- <comment xml:lang="pt_BR">Créditos do autor</comment>
- <comment xml:lang="ro">mulțumiri autori</comment>
+ <comment>Author credits</comment>
+ <comment xml:lang="uk">подяки авторам</comment>
+ <comment xml:lang="sv">Författarlista</comment>
<comment xml:lang="ru">Авторы программы</comment>
- <comment xml:lang="sk">Autorské zásluhy</comment>
- <comment xml:lang="sl">avtorske zasluge</comment>
- <comment xml:lang="sq">Kreditë e autorëve</comment>
- <comment xml:lang="sr">заслуге аутора</comment>
- <comment xml:lang="sv">författarlista</comment>
- <comment xml:lang="tr">yazar bilgileri</comment>
- <comment xml:lang="uk">подяки авторам програми</comment>
- <comment xml:lang="vi">công trạng tác giả</comment>
- <comment xml:lang="zh_CN">软件作者致谢</comment>
- <comment xml:lang="zh_TW">作者致謝名單</comment>
+ <comment xml:lang="pl">Podziękowania autorów programu</comment>
+ <comment xml:lang="it">Riconoscimenti autori</comment>
+ <comment xml:lang="gl">Créditos de autor</comment>
+ <comment xml:lang="eu">Egile-kredituak</comment>
+ <comment xml:lang="es">créditos de autoría</comment>
+ <comment xml:lang="de">Autorendanksagung</comment>
+ <comment xml:lang="be">звесткі пра аўтараў</comment>
<sub-class-of type="text/plain"/>
<glob pattern="CREDITS"/>
</mime-type>
<mime-type type="text/x-csrc">
<comment>C source code</comment>
- <comment xml:lang="ar">شفرة مصدر سي</comment>
- <comment xml:lang="be@latin">Kryničny kod C</comment>
- <comment xml:lang="bg">Изходен код — C</comment>
- <comment xml:lang="ca">codi font en C</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce C</comment>
- <comment xml:lang="da">C-kildekode</comment>
- <comment xml:lang="de">C-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας C</comment>
- <comment xml:lang="en_GB">C source code</comment>
- <comment xml:lang="eo">C-fontkodo</comment>
- <comment xml:lang="es">código fuente en C</comment>
- <comment xml:lang="eu">C iturburu-kodea</comment>
- <comment xml:lang="fi">C-lähdekoodi</comment>
- <comment xml:lang="fo">C keldukota</comment>
- <comment xml:lang="fr">code source C</comment>
- <comment xml:lang="ga">cód foinseach C</comment>
- <comment xml:lang="gl">código fonte en C</comment>
- <comment xml:lang="he">קוד מקור של C</comment>
- <comment xml:lang="hr">C izvorni kôd</comment>
- <comment xml:lang="hu">C-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte C</comment>
- <comment xml:lang="id">Kode sumber C</comment>
- <comment xml:lang="it">Codice sorgente C</comment>
- <comment xml:lang="ja">C ソースコード</comment>
- <comment xml:lang="ka">C-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">C бастапқы коды</comment>
- <comment xml:lang="ko">C 소스 코드</comment>
- <comment xml:lang="lt">C pradinis kodas</comment>
- <comment xml:lang="lv">C pirmkods</comment>
- <comment xml:lang="ms">Kod sumber C</comment>
- <comment xml:lang="nb">C-kildekode</comment>
- <comment xml:lang="nl">C-broncode</comment>
- <comment xml:lang="nn">C-kjeldekode</comment>
- <comment xml:lang="oc">còde font C</comment>
- <comment xml:lang="pl">Kod źródłowy C</comment>
- <comment xml:lang="pt">código origem C</comment>
- <comment xml:lang="pt_BR">Código-fonte C</comment>
- <comment xml:lang="ro">Cod sursă C</comment>
- <comment xml:lang="ru">Исходный код C</comment>
- <comment xml:lang="sk">Zdrojový kód jazyka C</comment>
- <comment xml:lang="sl">Datoteka izvorne kode C</comment>
- <comment xml:lang="sq">Kod burues C</comment>
- <comment xml:lang="sr">Ц изворни ко̂д</comment>
- <comment xml:lang="sv">C-källkod</comment>
- <comment xml:lang="tr">C kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою C</comment>
- <comment xml:lang="vi">Mã nguồn C</comment>
- <comment xml:lang="zh_CN">C 源代码</comment>
<comment xml:lang="zh_TW">C 源碼</comment>
+ <comment xml:lang="zh_CN">C 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn C</comment>
+ <comment xml:lang="uk">початковий код мовою C</comment>
+ <comment xml:lang="tr">C kaynak kodu</comment>
+ <comment xml:lang="sv">C-källkod</comment>
+ <comment xml:lang="sr">Ц изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim C</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode C</comment>
+ <comment xml:lang="si">C මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód jazyka C</comment>
+ <comment xml:lang="ru">Исходный код C</comment>
+ <comment xml:lang="ro">Cod sursă C</comment>
+ <comment xml:lang="pt_BR">Código-fonte C</comment>
+ <comment xml:lang="pt">código origem C</comment>
+ <comment xml:lang="pl">Kod źródłowy C</comment>
+ <comment xml:lang="oc">còde font C</comment>
+ <comment xml:lang="nn">C-kjeldekode</comment>
+ <comment xml:lang="nl">C-broncode</comment>
+ <comment xml:lang="nb">C-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber C</comment>
+ <comment xml:lang="lv">C pirmkods</comment>
+ <comment xml:lang="lt">C pradinis kodas</comment>
+ <comment xml:lang="ko">C 소스 코드</comment>
+ <comment xml:lang="kk">C бастапқы коды</comment>
+ <comment xml:lang="ka">C-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">C ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente C</comment>
+ <comment xml:lang="is">C frumkóði</comment>
+ <comment xml:lang="id">Kode sumber C</comment>
+ <comment xml:lang="ia">Codice-fonte C</comment>
+ <comment xml:lang="hu">C-forráskód</comment>
+ <comment xml:lang="hr">C izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של C</comment>
+ <comment xml:lang="gl">código fonte en C</comment>
+ <comment xml:lang="ga">cód foinseach C</comment>
+ <comment xml:lang="fur">codiç sorzint C</comment>
+ <comment xml:lang="fr">code source C</comment>
+ <comment xml:lang="fo">C keldukota</comment>
+ <comment xml:lang="fi">C-lähdekoodi</comment>
+ <comment xml:lang="eu">C iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en C</comment>
+ <comment xml:lang="eo">C-fontkodo</comment>
+ <comment xml:lang="en_GB">C source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας C</comment>
+ <comment xml:lang="de">C-Quelltext</comment>
+ <comment xml:lang="da">C-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce C</comment>
+ <comment xml:lang="ca">codi font en C</comment>
+ <comment xml:lang="bg">Изходен код — C</comment>
+ <comment xml:lang="be@latin">Kryničny kod C</comment>
+ <comment xml:lang="be">зыходны код C</comment>
+ <comment xml:lang="ar">شفرة مصدر سي</comment>
+ <comment xml:lang="af">C-bronkode</comment>
<sub-class-of type="text/plain"/>
<alias type="text/x-c"/>
<glob pattern="*.c" case-sensitive="true"/>
<magic priority="30">
- <match value="/*" type="string" offset="0"/>
- <match value="//" type="string" offset="0"/>
- <match value="#include" type="string" offset="0"/>
+ <match type="string" value="/*" offset="0"/>
+ <match type="string" value="//" offset="0"/>
+ <match type="string" value="#include" offset="0"/>
</magic>
</mime-type>
<mime-type type="text/x-csharp">
<comment>C# source code</comment>
- <comment xml:lang="ar">شفرة مصدر سي#</comment>
- <comment xml:lang="be@latin">Kryničny kod C#</comment>
- <comment xml:lang="bg">Изходен код — C#</comment>
- <comment xml:lang="ca">codi font en C#</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce C#</comment>
- <comment xml:lang="da">C#-kildekode</comment>
- <comment xml:lang="de">C#-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας C#</comment>
- <comment xml:lang="en_GB">C# source code</comment>
- <comment xml:lang="eo">C#-fontkodo</comment>
- <comment xml:lang="es">código fuente en C#</comment>
- <comment xml:lang="eu">C# iturburu-kodea</comment>
- <comment xml:lang="fi">C#-lähdekoodi</comment>
- <comment xml:lang="fo">C# keldukota</comment>
- <comment xml:lang="fr">code source C#</comment>
- <comment xml:lang="ga">cód foinseach C#</comment>
- <comment xml:lang="gl">código fonte en C#</comment>
- <comment xml:lang="he">קוד מקור של C#‎</comment>
- <comment xml:lang="hr">C# izvorni kôd</comment>
- <comment xml:lang="hu">C#-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte C#</comment>
- <comment xml:lang="id">Kode sumber C#</comment>
- <comment xml:lang="it">Codice sorgente C#</comment>
- <comment xml:lang="ja">C# ソースコード</comment>
- <comment xml:lang="ka">C#-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">C# бастапқы коды</comment>
- <comment xml:lang="ko">C# 소스 코드</comment>
- <comment xml:lang="lt">C# pradinis kodas</comment>
- <comment xml:lang="lv">C# pirmkods</comment>
- <comment xml:lang="ms">Kod sumber C#</comment>
- <comment xml:lang="nb">C#-kildekode</comment>
- <comment xml:lang="nl">C#-broncode</comment>
- <comment xml:lang="nn">C#-kjeldekode</comment>
- <comment xml:lang="oc">còde font C#</comment>
- <comment xml:lang="pl">Kod źródłowy C#</comment>
- <comment xml:lang="pt">código origem C#</comment>
- <comment xml:lang="pt_BR">Código-fonte C#</comment>
- <comment xml:lang="ro">Cod sursă C#</comment>
- <comment xml:lang="ru">Исходный код C#</comment>
- <comment xml:lang="sk">Zdrojový kód jazyka C#</comment>
- <comment xml:lang="sl">Datoteka izvorne kode C#</comment>
- <comment xml:lang="sq">Kod burues C#</comment>
- <comment xml:lang="sr">Ц# изворни ко̂д</comment>
- <comment xml:lang="sv">C#-källkod</comment>
- <comment xml:lang="tr">C# kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою C#</comment>
- <comment xml:lang="vi">Mã nguồn C#</comment>
- <comment xml:lang="zh_CN">C# 源代码</comment>
<comment xml:lang="zh_TW">C# 源碼</comment>
+ <comment xml:lang="zh_CN">C# 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn C#</comment>
+ <comment xml:lang="uk">початковий код мовою C#</comment>
+ <comment xml:lang="tr">C# kaynak kodu</comment>
+ <comment xml:lang="sv">C#-källkod</comment>
+ <comment xml:lang="sr">Ц# изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim C#</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode C#</comment>
+ <comment xml:lang="si">C# මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód jazyka C#</comment>
+ <comment xml:lang="ru">Исходный код C#</comment>
+ <comment xml:lang="ro">Cod sursă C#</comment>
+ <comment xml:lang="pt_BR">Código-fonte C#</comment>
+ <comment xml:lang="pt">código origem C#</comment>
+ <comment xml:lang="pl">Kod źródłowy C#</comment>
+ <comment xml:lang="oc">còde font C#</comment>
+ <comment xml:lang="nn">C#-kjeldekode</comment>
+ <comment xml:lang="nl">C#-broncode</comment>
+ <comment xml:lang="nb">C#-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber C#</comment>
+ <comment xml:lang="lv">C# pirmkods</comment>
+ <comment xml:lang="lt">C# pradinis kodas</comment>
+ <comment xml:lang="ko">C# 소스 코드</comment>
+ <comment xml:lang="kk">C# бастапқы коды</comment>
+ <comment xml:lang="ka">C#-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">C# ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente C#</comment>
+ <comment xml:lang="is">C# frumkóði</comment>
+ <comment xml:lang="id">Kode sumber C#</comment>
+ <comment xml:lang="ia">Codice-fonte C#</comment>
+ <comment xml:lang="hu">C#-forráskód</comment>
+ <comment xml:lang="hr">C# izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של C#‎</comment>
+ <comment xml:lang="gl">código fonte en C#</comment>
+ <comment xml:lang="ga">cód foinseach C#</comment>
+ <comment xml:lang="fur">codiç sorzint C#</comment>
+ <comment xml:lang="fr">code source C#</comment>
+ <comment xml:lang="fo">C# keldukota</comment>
+ <comment xml:lang="fi">C#-lähdekoodi</comment>
+ <comment xml:lang="eu">C# iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en C#</comment>
+ <comment xml:lang="eo">C#-fontkodo</comment>
+ <comment xml:lang="en_GB">C# source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας C#</comment>
+ <comment xml:lang="de">C#-Quelltext</comment>
+ <comment xml:lang="da">C#-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce C#</comment>
+ <comment xml:lang="ca">codi font en C#</comment>
+ <comment xml:lang="bg">Изходен код — C#</comment>
+ <comment xml:lang="be@latin">Kryničny kod C#</comment>
+ <comment xml:lang="be">зыходны код C#</comment>
+ <comment xml:lang="ar">شفرة مصدر سي#</comment>
+ <comment xml:lang="af">C#-bronkode</comment>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.cs"/>
</mime-type>
<mime-type type="text/x-vala">
<comment>Vala source code</comment>
- <comment xml:lang="ar">شفرة مصدر Vala</comment>
- <comment xml:lang="be@latin">Kryničny kod Vala</comment>
- <comment xml:lang="bg">Изходен код — Vala</comment>
- <comment xml:lang="ca">codi font en Vala</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Vala</comment>
- <comment xml:lang="da">Valakildekode</comment>
- <comment xml:lang="de">Vala-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Vala</comment>
- <comment xml:lang="en_GB">Vala source code</comment>
- <comment xml:lang="eo">Vala-fontkodo</comment>
- <comment xml:lang="es">código fuente en Vala</comment>
- <comment xml:lang="eu">Vala iturburu-kodea</comment>
- <comment xml:lang="fi">Vala-lähdekoodi</comment>
- <comment xml:lang="fo">Vala keldukota</comment>
- <comment xml:lang="fr">code source Vala</comment>
- <comment xml:lang="ga">cód foinseach Vala</comment>
- <comment xml:lang="gl">código fonte en Vala</comment>
- <comment xml:lang="he">קוד מקור של Vala</comment>
- <comment xml:lang="hr">Vala izvorni kôd</comment>
- <comment xml:lang="hu">Vala forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Vala</comment>
- <comment xml:lang="id">Kode sumber Vala</comment>
- <comment xml:lang="it">Codice sorgente Vala</comment>
- <comment xml:lang="ja">Vala ソースコード</comment>
- <comment xml:lang="kk">Vala бастапқы коды</comment>
- <comment xml:lang="ko">Vala 소스 코드</comment>
- <comment xml:lang="lt">Vala pradinis kodas</comment>
- <comment xml:lang="lv">Vala pirmkods</comment>
- <comment xml:lang="nb">Vala-kildekode</comment>
- <comment xml:lang="nl">Vala-broncode</comment>
- <comment xml:lang="nn">Vala-kjeldekode</comment>
- <comment xml:lang="oc">còde font Vala</comment>
- <comment xml:lang="pl">Kod źródłowy Vala</comment>
- <comment xml:lang="pt">código origem Vala</comment>
- <comment xml:lang="pt_BR">Código-fonte Vala</comment>
- <comment xml:lang="ro">Cod sursă Vala</comment>
- <comment xml:lang="ru">Исходный код Vala</comment>
- <comment xml:lang="sk">Zdrojový kód Vala</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Vala</comment>
- <comment xml:lang="sq">Kod burues Vala</comment>
- <comment xml:lang="sr">Вала изворни ко̂д</comment>
- <comment xml:lang="sv">Vala-källkod</comment>
- <comment xml:lang="tr">Vala kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Vala</comment>
- <comment xml:lang="vi">Mã nguồn Vala</comment>
- <comment xml:lang="zh_CN">Vala 源代码</comment>
<comment xml:lang="zh_TW">Vala 源碼</comment>
+ <comment xml:lang="zh_CN">Vala 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Vala</comment>
+ <comment xml:lang="uk">початковий код мовою Vala</comment>
+ <comment xml:lang="tr">Vala kaynak kodu</comment>
+ <comment xml:lang="sv">Vala-källkod</comment>
+ <comment xml:lang="sr">Вала изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Vala</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Vala</comment>
+ <comment xml:lang="si">වාල මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Vala</comment>
+ <comment xml:lang="ru">Исходный код Vala</comment>
+ <comment xml:lang="ro">Cod sursă Vala</comment>
+ <comment xml:lang="pt_BR">Código-fonte Vala</comment>
+ <comment xml:lang="pt">código origem Vala</comment>
+ <comment xml:lang="pl">Kod źródłowy Vala</comment>
+ <comment xml:lang="oc">còde font Vala</comment>
+ <comment xml:lang="nn">Vala-kjeldekode</comment>
+ <comment xml:lang="nl">Vala-broncode</comment>
+ <comment xml:lang="nb">Vala-kildekode</comment>
+ <comment xml:lang="lv">Vala pirmkods</comment>
+ <comment xml:lang="lt">Vala pradinis kodas</comment>
+ <comment xml:lang="ko">Vala 소스 코드</comment>
+ <comment xml:lang="kk">Vala бастапқы коды</comment>
+ <comment xml:lang="ja">Vala ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Vala</comment>
+ <comment xml:lang="is">Vala frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Vala</comment>
+ <comment xml:lang="ia">Codice-fonte Vala</comment>
+ <comment xml:lang="hu">Vala forráskód</comment>
+ <comment xml:lang="hr">Vala izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Vala</comment>
+ <comment xml:lang="gl">código fonte en Vala</comment>
+ <comment xml:lang="ga">cód foinseach Vala</comment>
+ <comment xml:lang="fur">codiç sorzint Vala</comment>
+ <comment xml:lang="fr">code source Vala</comment>
+ <comment xml:lang="fo">Vala keldukota</comment>
+ <comment xml:lang="fi">Vala-lähdekoodi</comment>
+ <comment xml:lang="eu">Vala iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Vala</comment>
+ <comment xml:lang="eo">Vala-fontkodo</comment>
+ <comment xml:lang="en_GB">Vala source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Vala</comment>
+ <comment xml:lang="de">Vala-Quelltext</comment>
+ <comment xml:lang="da">Vala-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Vala</comment>
+ <comment xml:lang="ca">codi font en Vala</comment>
+ <comment xml:lang="bg">Изходен код — Vala</comment>
+ <comment xml:lang="be@latin">Kryničny kod Vala</comment>
+ <comment xml:lang="be">зыходны код Vala</comment>
+ <comment xml:lang="ar">شفرة مصدر Vala</comment>
+ <comment xml:lang="af">Vala-bronkode</comment>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.vala"/>
<glob pattern="*.vapi"/>
</mime-type>
<mime-type type="text/x-ooc">
<comment>OOC source code</comment>
- <comment xml:lang="bg">Изходен код — OOC</comment>
- <comment xml:lang="ca">codi font en OOC</comment>
- <comment xml:lang="cs">zdrojový kód OOC</comment>
- <comment xml:lang="da">OOC-kildekode</comment>
- <comment xml:lang="de">OOC-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας OOC</comment>
- <comment xml:lang="en_GB">OOC source code</comment>
- <comment xml:lang="eo">OOC-fontkodo</comment>
- <comment xml:lang="es">código fuente en OOC</comment>
- <comment xml:lang="eu">OOC iturburu-kodea</comment>
- <comment xml:lang="fi">OOC-lähdekoodi</comment>
- <comment xml:lang="fr">source code OOC</comment>
- <comment xml:lang="ga">cód foinseach OOC</comment>
- <comment xml:lang="gl">código fonte de OOC</comment>
- <comment xml:lang="he">קוד מקור של OOC</comment>
- <comment xml:lang="hr">OOC izvorni kôd</comment>
- <comment xml:lang="hu">OOC forráskód</comment>
- <comment xml:lang="ia">Codice-fonte OCC</comment>
- <comment xml:lang="id">Kode sumber OOC</comment>
- <comment xml:lang="it">Codice sorgente OOC</comment>
- <comment xml:lang="ja">OOC ソースコード</comment>
- <comment xml:lang="ka">OOC-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">OOC бастапқы коды</comment>
- <comment xml:lang="ko">OOC 소스 코드</comment>
- <comment xml:lang="lv">OOC pirmkods</comment>
- <comment xml:lang="nl">OOC broncode</comment>
- <comment xml:lang="oc">font còde OOC</comment>
- <comment xml:lang="pl">Kod źródłowy OOC</comment>
- <comment xml:lang="pt">código origem OOC</comment>
- <comment xml:lang="pt_BR">Código-fonte OOC</comment>
- <comment xml:lang="ru">Исходный код OOC</comment>
- <comment xml:lang="sk">Zdrojový kód OOC</comment>
- <comment xml:lang="sl">Izvorna koda OOC</comment>
- <comment xml:lang="sr">ООЦ изворни ко̂д</comment>
- <comment xml:lang="sv">OOC-källkod</comment>
- <comment xml:lang="tr">OOC kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою OOC</comment>
- <comment xml:lang="zh_CN">OOC 源代码</comment>
<comment xml:lang="zh_TW">OOC 源碼</comment>
+ <comment xml:lang="zh_CN">OOC 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою OOC</comment>
+ <comment xml:lang="tr">OOC kaynak kodu</comment>
+ <comment xml:lang="sv">OOC-källkod</comment>
+ <comment xml:lang="sr">ООЦ изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim OOC</comment>
+ <comment xml:lang="sl">Izvorna koda OOC</comment>
+ <comment xml:lang="si">OOC මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód OOC</comment>
+ <comment xml:lang="ru">Исходный код OOC</comment>
+ <comment xml:lang="pt_BR">Código-fonte OOC</comment>
+ <comment xml:lang="pt">código origem OOC</comment>
+ <comment xml:lang="pl">Kod źródłowy OOC</comment>
+ <comment xml:lang="oc">font còde OOC</comment>
+ <comment xml:lang="nl">OOC-broncode</comment>
+ <comment xml:lang="lv">OOC pirmkods</comment>
+ <comment xml:lang="ko">OOC 소스 코드</comment>
+ <comment xml:lang="kk">OOC бастапқы коды</comment>
+ <comment xml:lang="ka">OOC-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">OOC ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente OOC</comment>
+ <comment xml:lang="is">OOC frumkóði</comment>
+ <comment xml:lang="id">Kode sumber OOC</comment>
+ <comment xml:lang="ia">Codice-fonte OCC</comment>
+ <comment xml:lang="hu">OOC forráskód</comment>
+ <comment xml:lang="hr">OOC izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של OOC</comment>
+ <comment xml:lang="gl">código fonte de OOC</comment>
+ <comment xml:lang="ga">cód foinseach OOC</comment>
+ <comment xml:lang="fur">codiç sorzint OOC</comment>
+ <comment xml:lang="fr">source code OOC</comment>
+ <comment xml:lang="fi">OOC-lähdekoodi</comment>
+ <comment xml:lang="eu">OOC iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en OOC</comment>
+ <comment xml:lang="eo">OOC-fontkodo</comment>
+ <comment xml:lang="en_GB">OOC source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας OOC</comment>
+ <comment xml:lang="de">OOC-Quelltext</comment>
+ <comment xml:lang="da">OOC-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód OOC</comment>
+ <comment xml:lang="ca">codi font en OOC</comment>
+ <comment xml:lang="bg">Изходен код — OOC</comment>
+ <comment xml:lang="be">зыходны код OOC</comment>
+ <comment xml:lang="ar">شفرة مصدر OOC</comment>
+ <comment xml:lang="af">OOC-bronkode</comment>
<acronym>OOC</acronym>
<expanded-acronym>Out Of Class</expanded-acronym>
<sub-class-of type="text/x-csrc"/>
@@ -33700,57 +35767,62 @@
</mime-type>
<mime-type type="text/x-dcl">
<comment>DCL script</comment>
- <comment xml:lang="ar">سكربت DCL</comment>
- <comment xml:lang="az">DCL skripti</comment>
- <comment xml:lang="be@latin">Skrypt DCL</comment>
- <comment xml:lang="bg">Скрипт — DCL</comment>
- <comment xml:lang="ca">script DCL</comment>
- <comment xml:lang="cs">skript DCL</comment>
- <comment xml:lang="cy">Sgript DCL</comment>
- <comment xml:lang="da">DCL-program</comment>
- <comment xml:lang="de">DCL-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών DCL</comment>
- <comment xml:lang="en_GB">DCL script</comment>
- <comment xml:lang="eo">DCL-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en DCL</comment>
- <comment xml:lang="eu">DCL script-a</comment>
- <comment xml:lang="fi">DCL-komentotiedosto</comment>
- <comment xml:lang="fo">DCL boðrøð</comment>
- <comment xml:lang="fr">script DCL</comment>
- <comment xml:lang="ga">script DCL</comment>
- <comment xml:lang="gl">script de DCL</comment>
- <comment xml:lang="he">תסריט DCL</comment>
- <comment xml:lang="hr">DCL skripta</comment>
- <comment xml:lang="hu">DCL-parancsfájl</comment>
- <comment xml:lang="ia">Script DCL</comment>
- <comment xml:lang="id">Skrip DCL</comment>
- <comment xml:lang="it">Script DCL</comment>
- <comment xml:lang="ja">DCL スクリプト</comment>
- <comment xml:lang="ka">DCL სცენარი</comment>
- <comment xml:lang="kk">DCL сценарийі</comment>
- <comment xml:lang="ko">DCL 스크립트</comment>
- <comment xml:lang="lt">DCL scenarijus</comment>
- <comment xml:lang="lv">DCL skripts</comment>
- <comment xml:lang="ms">Skrip DCL</comment>
- <comment xml:lang="nb">DCL-skript</comment>
- <comment xml:lang="nl">DCL-script</comment>
- <comment xml:lang="nn">DCL-skript</comment>
- <comment xml:lang="oc">escript DCL</comment>
- <comment xml:lang="pl">Skrypt DCL</comment>
- <comment xml:lang="pt">script DCL</comment>
- <comment xml:lang="pt_BR">Script DCL</comment>
- <comment xml:lang="ro">Script DCL</comment>
- <comment xml:lang="ru">Сценарий DCL</comment>
- <comment xml:lang="sk">Skript DCL</comment>
- <comment xml:lang="sl">Skriptna datoteka DCL</comment>
- <comment xml:lang="sq">Script DCL</comment>
- <comment xml:lang="sr">ДЦЛ скрипта</comment>
- <comment xml:lang="sv">DCL-skript</comment>
- <comment xml:lang="tr">DCL betiği</comment>
- <comment xml:lang="uk">скрипт DCL</comment>
- <comment xml:lang="vi">Văn lệnh DCL</comment>
- <comment xml:lang="zh_CN">DCL 脚本</comment>
<comment xml:lang="zh_TW">DCL 指令稿</comment>
+ <comment xml:lang="zh_CN">DCL 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh DCL</comment>
+ <comment xml:lang="uk">скрипт DCL</comment>
+ <comment xml:lang="tr">DCL betiği</comment>
+ <comment xml:lang="sv">DCL-skript</comment>
+ <comment xml:lang="sr">ДЦЛ скрипта</comment>
+ <comment xml:lang="sq">programth DCL</comment>
+ <comment xml:lang="sl">Skriptna datoteka DCL</comment>
+ <comment xml:lang="si">DCL පිටපත</comment>
+ <comment xml:lang="sk">Skript DCL</comment>
+ <comment xml:lang="ru">Сценарий DCL</comment>
+ <comment xml:lang="ro">Script DCL</comment>
+ <comment xml:lang="pt_BR">Script DCL</comment>
+ <comment xml:lang="pt">script DCL</comment>
+ <comment xml:lang="pl">Skrypt DCL</comment>
+ <comment xml:lang="oc">escript DCL</comment>
+ <comment xml:lang="nn">DCL-skript</comment>
+ <comment xml:lang="nl">DCL-script</comment>
+ <comment xml:lang="nb">DCL-skript</comment>
+ <comment xml:lang="ms">Skrip DCL</comment>
+ <comment xml:lang="lv">DCL skripts</comment>
+ <comment xml:lang="lt">DCL scenarijus</comment>
+ <comment xml:lang="ko">DCL 스크립트</comment>
+ <comment xml:lang="kk">DCL сценарийі</comment>
+ <comment xml:lang="ka">DCL სცენარი</comment>
+ <comment xml:lang="ja">DCL スクリプト</comment>
+ <comment xml:lang="it">Script DCL</comment>
+ <comment xml:lang="is">DCL skrifta</comment>
+ <comment xml:lang="id">Skrip DCL</comment>
+ <comment xml:lang="ia">Script DCL</comment>
+ <comment xml:lang="hu">DCL-parancsfájl</comment>
+ <comment xml:lang="hr">DCL skripta</comment>
+ <comment xml:lang="he">תסריט DCL</comment>
+ <comment xml:lang="gl">script de DCL</comment>
+ <comment xml:lang="ga">script DCL</comment>
+ <comment xml:lang="fur">script DCL</comment>
+ <comment xml:lang="fr">script DCL</comment>
+ <comment xml:lang="fo">DCL boðrøð</comment>
+ <comment xml:lang="fi">DCL-komentotiedosto</comment>
+ <comment xml:lang="eu">DCL script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en DCL</comment>
+ <comment xml:lang="eo">DCL-skripto</comment>
+ <comment xml:lang="en_GB">DCL script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών DCL</comment>
+ <comment xml:lang="de">DCL-Skript</comment>
+ <comment xml:lang="da">DCL-program</comment>
+ <comment xml:lang="cy">Sgript DCL</comment>
+ <comment xml:lang="cs">skript DCL</comment>
+ <comment xml:lang="ca">script DCL</comment>
+ <comment xml:lang="bg">Скрипт — DCL</comment>
+ <comment xml:lang="be@latin">Skrypt DCL</comment>
+ <comment xml:lang="be">скрыпт DCL</comment>
+ <comment xml:lang="az">DCL skripti</comment>
+ <comment xml:lang="ar">سكربت DCL</comment>
+ <comment xml:lang="af">DCL-skrip</comment>
<acronym>DCL</acronym>
<expanded-acronym>Data Conversion Laboratory</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -33758,58 +35830,63 @@
</mime-type>
<mime-type type="text/x-dsl">
<comment>DSSSL document</comment>
- <comment xml:lang="ar">مستند DSSSL</comment>
- <comment xml:lang="ast">Documentu DSSSL</comment>
- <comment xml:lang="az">DSSSL sənədi</comment>
- <comment xml:lang="be@latin">Dakument DSSSL</comment>
- <comment xml:lang="bg">Документ — DSSSL</comment>
- <comment xml:lang="ca">document DSSSL</comment>
- <comment xml:lang="cs">dokument DSSSL</comment>
- <comment xml:lang="cy">Dogfen DSSSL</comment>
- <comment xml:lang="da">DSSSL-dokument</comment>
- <comment xml:lang="de">DSSSL-Dokument</comment>
- <comment xml:lang="el">Έγγραφο DSSSL</comment>
- <comment xml:lang="en_GB">DSSSL document</comment>
- <comment xml:lang="eo">DSSSL-dokumento</comment>
- <comment xml:lang="es">documento DSSSL</comment>
- <comment xml:lang="eu">DSSSL dokumentua</comment>
- <comment xml:lang="fi">DSSSL-asiakirja</comment>
- <comment xml:lang="fo">DSSSL skjal</comment>
- <comment xml:lang="fr">document DSSSL</comment>
- <comment xml:lang="ga">cáipéis DSSSL</comment>
- <comment xml:lang="gl">documento DSSSL</comment>
- <comment xml:lang="he">מסמך DSSSL</comment>
- <comment xml:lang="hr">DSSSL dokument</comment>
- <comment xml:lang="hu">DSSSL-dokumentum</comment>
- <comment xml:lang="ia">Documento DSSSL</comment>
- <comment xml:lang="id">Dokumen DSSSL</comment>
- <comment xml:lang="it">Documento DSSSL</comment>
- <comment xml:lang="ja">DSSSL ドキュメント</comment>
- <comment xml:lang="ka">DSSSL დოკუმენტი</comment>
- <comment xml:lang="kk">DSSSL құжаты</comment>
- <comment xml:lang="ko">DSSSL 문서</comment>
- <comment xml:lang="lt">DSSSL dokumentas</comment>
- <comment xml:lang="lv">DSSSL dokuments</comment>
- <comment xml:lang="ms">Dokumen DSSSL</comment>
- <comment xml:lang="nb">DSSSL-dokument</comment>
- <comment xml:lang="nl">DSSSL-document</comment>
- <comment xml:lang="nn">DSSSL-dokument</comment>
- <comment xml:lang="oc">document DSSSL</comment>
- <comment xml:lang="pl">Dokument DSSSL</comment>
- <comment xml:lang="pt">documento DSSSL</comment>
- <comment xml:lang="pt_BR">Documento DSSSL</comment>
- <comment xml:lang="ro">Document DSSSL</comment>
- <comment xml:lang="ru">Документ DSSSL</comment>
- <comment xml:lang="sk">Dokument DSSSL</comment>
- <comment xml:lang="sl">Dokument DSSSL</comment>
- <comment xml:lang="sq">Dokument DSSSL</comment>
- <comment xml:lang="sr">ДСССЛ документ</comment>
- <comment xml:lang="sv">DSSSL-dokument</comment>
- <comment xml:lang="tr">DSSSL belgesi</comment>
- <comment xml:lang="uk">документ DSSSL</comment>
- <comment xml:lang="vi">Tài liệu DSSSL</comment>
- <comment xml:lang="zh_CN">DSSSL 文档</comment>
<comment xml:lang="zh_TW">DSSSL 文件</comment>
+ <comment xml:lang="zh_CN">DSSSL 文档</comment>
+ <comment xml:lang="vi">Tài liệu DSSSL</comment>
+ <comment xml:lang="uk">документ DSSSL</comment>
+ <comment xml:lang="tr">DSSSL belgesi</comment>
+ <comment xml:lang="sv">DSSSL-dokument</comment>
+ <comment xml:lang="sr">ДСССЛ документ</comment>
+ <comment xml:lang="sq">dokument DSSSL</comment>
+ <comment xml:lang="sl">Dokument DSSSL</comment>
+ <comment xml:lang="si">DSSSL ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument DSSSL</comment>
+ <comment xml:lang="ru">Документ DSSSL</comment>
+ <comment xml:lang="ro">Document DSSSL</comment>
+ <comment xml:lang="pt_BR">Documento DSSSL</comment>
+ <comment xml:lang="pt">documento DSSSL</comment>
+ <comment xml:lang="pl">Dokument DSSSL</comment>
+ <comment xml:lang="oc">document DSSSL</comment>
+ <comment xml:lang="nn">DSSSL-dokument</comment>
+ <comment xml:lang="nl">DSSSL-document</comment>
+ <comment xml:lang="nb">DSSSL-dokument</comment>
+ <comment xml:lang="ms">Dokumen DSSSL</comment>
+ <comment xml:lang="lv">DSSSL dokuments</comment>
+ <comment xml:lang="lt">DSSSL dokumentas</comment>
+ <comment xml:lang="ko">DSSSL 문서</comment>
+ <comment xml:lang="kk">DSSSL құжаты</comment>
+ <comment xml:lang="ka">DSSSL დოკუმენტი</comment>
+ <comment xml:lang="ja">DSSSL ドキュメント</comment>
+ <comment xml:lang="it">Documento DSSSL</comment>
+ <comment xml:lang="is">DSSSL skjal</comment>
+ <comment xml:lang="id">Dokumen DSSSL</comment>
+ <comment xml:lang="ia">Documento DSSSL</comment>
+ <comment xml:lang="hu">DSSSL-dokumentum</comment>
+ <comment xml:lang="hr">DSSSL dokument</comment>
+ <comment xml:lang="he">מסמך DSSSL</comment>
+ <comment xml:lang="gl">documento DSSSL</comment>
+ <comment xml:lang="ga">cáipéis DSSSL</comment>
+ <comment xml:lang="fur">document DSSSL</comment>
+ <comment xml:lang="fr">document DSSSL</comment>
+ <comment xml:lang="fo">DSSSL skjal</comment>
+ <comment xml:lang="fi">DSSSL-asiakirja</comment>
+ <comment xml:lang="eu">DSSSL dokumentua</comment>
+ <comment xml:lang="es">documento DSSSL</comment>
+ <comment xml:lang="eo">DSSSL-dokumento</comment>
+ <comment xml:lang="en_GB">DSSSL document</comment>
+ <comment xml:lang="el">Έγγραφο DSSSL</comment>
+ <comment xml:lang="de">DSSSL-Dokument</comment>
+ <comment xml:lang="da">DSSSL-dokument</comment>
+ <comment xml:lang="cy">Dogfen DSSSL</comment>
+ <comment xml:lang="cs">dokument DSSSL</comment>
+ <comment xml:lang="ca">document DSSSL</comment>
+ <comment xml:lang="bg">Документ — DSSSL</comment>
+ <comment xml:lang="be@latin">Dakument DSSSL</comment>
+ <comment xml:lang="be">дакумент DSSSL</comment>
+ <comment xml:lang="az">DSSSL sənədi</comment>
+ <comment xml:lang="ast">Documentu DSSSL</comment>
+ <comment xml:lang="ar">مستند DSSSL</comment>
+ <comment xml:lang="af">DSSSL-dokument</comment>
<acronym>DSSSL</acronym>
<expanded-acronym>Document Style Semantics and Specification Language</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -33817,108 +35894,118 @@
</mime-type>
<mime-type type="text/x-dsrc">
<comment>D source code</comment>
- <comment xml:lang="ar">شفرة مصدر D</comment>
- <comment xml:lang="be@latin">Kryničny kod D</comment>
- <comment xml:lang="bg">Изходен код — D</comment>
- <comment xml:lang="ca">codi font en D</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce D</comment>
- <comment xml:lang="da">D-kildekode</comment>
- <comment xml:lang="de">D-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας D</comment>
- <comment xml:lang="en_GB">D source code</comment>
- <comment xml:lang="eo">D-fontkodo</comment>
- <comment xml:lang="es">código fuente en D</comment>
- <comment xml:lang="eu">D iturburu-kodea</comment>
- <comment xml:lang="fi">D-lähdekoodi</comment>
- <comment xml:lang="fo">D keldukota</comment>
- <comment xml:lang="fr">code source D</comment>
- <comment xml:lang="ga">cód foinseach D</comment>
- <comment xml:lang="gl">código fonte de D</comment>
- <comment xml:lang="he">קוד מקור לשפת D</comment>
- <comment xml:lang="hr">D izvorni kôd</comment>
- <comment xml:lang="hu">D-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte D</comment>
- <comment xml:lang="id">Kode sumber D</comment>
- <comment xml:lang="it">Codice sorgente D</comment>
- <comment xml:lang="ja">D ソースコード</comment>
- <comment xml:lang="ka">D-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">D бастапқы коды</comment>
- <comment xml:lang="ko">D 소스 코드</comment>
- <comment xml:lang="lt">D pradinis kodas</comment>
- <comment xml:lang="lv">D pirmkods</comment>
- <comment xml:lang="nb">D-kildekode</comment>
- <comment xml:lang="nl">D-broncode</comment>
- <comment xml:lang="nn">D-kjeldekode</comment>
- <comment xml:lang="oc">còde font D</comment>
- <comment xml:lang="pl">Kod źródłowy D</comment>
- <comment xml:lang="pt">código origem D</comment>
- <comment xml:lang="pt_BR">Código-fonte D</comment>
- <comment xml:lang="ro">Cod sursă D</comment>
- <comment xml:lang="ru">Исходный код D</comment>
- <comment xml:lang="sk">Zdrojový kód jazyka D</comment>
- <comment xml:lang="sl">Datoteka izvorne kode D</comment>
- <comment xml:lang="sq">Kod burues D</comment>
- <comment xml:lang="sr">Д изворни ко̂д</comment>
- <comment xml:lang="sv">D-källkod</comment>
- <comment xml:lang="tr">D kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою D</comment>
- <comment xml:lang="vi">Mã nguồn D</comment>
- <comment xml:lang="zh_CN">D 源代码</comment>
<comment xml:lang="zh_TW">D 源碼</comment>
+ <comment xml:lang="zh_CN">D 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn D</comment>
+ <comment xml:lang="uk">початковий код мовою D</comment>
+ <comment xml:lang="tr">D kaynak kodu</comment>
+ <comment xml:lang="sv">D-källkod</comment>
+ <comment xml:lang="sr">Д изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim D</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode D</comment>
+ <comment xml:lang="si">D මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód jazyka D</comment>
+ <comment xml:lang="ru">Исходный код D</comment>
+ <comment xml:lang="ro">Cod sursă D</comment>
+ <comment xml:lang="pt_BR">Código-fonte D</comment>
+ <comment xml:lang="pt">código origem D</comment>
+ <comment xml:lang="pl">Kod źródłowy D</comment>
+ <comment xml:lang="oc">còde font D</comment>
+ <comment xml:lang="nn">D-kjeldekode</comment>
+ <comment xml:lang="nl">D-broncode</comment>
+ <comment xml:lang="nb">D-kildekode</comment>
+ <comment xml:lang="lv">D pirmkods</comment>
+ <comment xml:lang="lt">D pradinis kodas</comment>
+ <comment xml:lang="ko">D 소스 코드</comment>
+ <comment xml:lang="kk">D бастапқы коды</comment>
+ <comment xml:lang="ka">D-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">D ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente D</comment>
+ <comment xml:lang="is">D frumkóði</comment>
+ <comment xml:lang="id">Kode sumber D</comment>
+ <comment xml:lang="ia">Codice-fonte D</comment>
+ <comment xml:lang="hu">D-forráskód</comment>
+ <comment xml:lang="hr">D izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור לשפת D</comment>
+ <comment xml:lang="gl">código fonte de D</comment>
+ <comment xml:lang="ga">cód foinseach D</comment>
+ <comment xml:lang="fur">codiç sorzint D</comment>
+ <comment xml:lang="fr">code source D</comment>
+ <comment xml:lang="fo">D keldukota</comment>
+ <comment xml:lang="fi">D-lähdekoodi</comment>
+ <comment xml:lang="eu">D iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en D</comment>
+ <comment xml:lang="eo">D-fontkodo</comment>
+ <comment xml:lang="en_GB">D source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας D</comment>
+ <comment xml:lang="de">D-Quelltext</comment>
+ <comment xml:lang="da">D-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce D</comment>
+ <comment xml:lang="ca">codi font en D</comment>
+ <comment xml:lang="bg">Изходен код — D</comment>
+ <comment xml:lang="be@latin">Kryničny kod D</comment>
+ <comment xml:lang="be">зыходны код D</comment>
+ <comment xml:lang="ar">شفرة مصدر D</comment>
+ <comment xml:lang="af">D-bronkode</comment>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.d"/>
<glob pattern="*.di"/>
</mime-type>
<mime-type type="application/xml-dtd">
<comment>DTD file</comment>
- <comment xml:lang="ar">ملف DTD</comment>
- <comment xml:lang="be@latin">Fajł DTD</comment>
- <comment xml:lang="bg">Документ — DTD</comment>
- <comment xml:lang="ca">fitxer DTD</comment>
- <comment xml:lang="cs">soubor DTD</comment>
- <comment xml:lang="da">DTD-fil</comment>
- <comment xml:lang="de">DTD-Datei</comment>
- <comment xml:lang="el">Αρχείο DTD</comment>
- <comment xml:lang="en_GB">DTD file</comment>
- <comment xml:lang="eo">DTD-dosiero</comment>
- <comment xml:lang="es">archivo DTD</comment>
- <comment xml:lang="eu">DTD fitxategia</comment>
- <comment xml:lang="fi">DTD-tiedosto</comment>
- <comment xml:lang="fo">DTD fíla</comment>
- <comment xml:lang="fr">fichier DTD</comment>
- <comment xml:lang="ga">comhad DTD</comment>
- <comment xml:lang="gl">ficheiro DTD</comment>
- <comment xml:lang="he">מסמך DTD</comment>
- <comment xml:lang="hr">DTD datoteka</comment>
- <comment xml:lang="hu">DTD fájl</comment>
- <comment xml:lang="ia">File DTD</comment>
- <comment xml:lang="id">Berkas DTD</comment>
- <comment xml:lang="it">File DTD</comment>
- <comment xml:lang="ja">DTD ファイル</comment>
- <comment xml:lang="ka">DTD ფაილი</comment>
- <comment xml:lang="kk">DTD файлы</comment>
- <comment xml:lang="ko">DTD 파일</comment>
- <comment xml:lang="lt">DTD failas</comment>
- <comment xml:lang="lv">DTD datne</comment>
- <comment xml:lang="nb">DTD-fil</comment>
- <comment xml:lang="nl">DTD-bestand</comment>
- <comment xml:lang="nn">DTD-fil</comment>
- <comment xml:lang="oc">fichièr DTD</comment>
- <comment xml:lang="pl">Plik DTD</comment>
- <comment xml:lang="pt">ficheiro DTD</comment>
- <comment xml:lang="pt_BR">Arquivo DTD</comment>
- <comment xml:lang="ro">Fișier DTD</comment>
- <comment xml:lang="ru">Файл DTD</comment>
- <comment xml:lang="sk">Súbor DTD</comment>
- <comment xml:lang="sl">Datoteka DTD</comment>
- <comment xml:lang="sq">File DTD</comment>
- <comment xml:lang="sr">ДТД датотека</comment>
- <comment xml:lang="sv">DTD-fil</comment>
- <comment xml:lang="tr">DTD dosyası</comment>
- <comment xml:lang="uk">файл DTD</comment>
- <comment xml:lang="vi">Tập tin DTD</comment>
- <comment xml:lang="zh_CN">DTD 文件</comment>
<comment xml:lang="zh_TW">DTD 檔</comment>
+ <comment xml:lang="zh_CN">DTD 文件</comment>
+ <comment xml:lang="vi">Tập tin DTD</comment>
+ <comment xml:lang="uk">файл DTD</comment>
+ <comment xml:lang="tr">DTD dosyası</comment>
+ <comment xml:lang="sv">DTD-fil</comment>
+ <comment xml:lang="sr">ДТД датотека</comment>
+ <comment xml:lang="sq">kartelë DTD</comment>
+ <comment xml:lang="sl">Datoteka DTD</comment>
+ <comment xml:lang="si">DTD ගොනුව</comment>
+ <comment xml:lang="sk">Súbor DTD</comment>
+ <comment xml:lang="ru">Файл DTD</comment>
+ <comment xml:lang="ro">Fișier DTD</comment>
+ <comment xml:lang="pt_BR">Arquivo DTD</comment>
+ <comment xml:lang="pt">ficheiro DTD</comment>
+ <comment xml:lang="pl">Plik DTD</comment>
+ <comment xml:lang="oc">fichièr DTD</comment>
+ <comment xml:lang="nn">DTD-fil</comment>
+ <comment xml:lang="nl">DTD-bestand</comment>
+ <comment xml:lang="nb">DTD-fil</comment>
+ <comment xml:lang="lv">DTD datne</comment>
+ <comment xml:lang="lt">DTD failas</comment>
+ <comment xml:lang="ko">DTD 파일</comment>
+ <comment xml:lang="kk">DTD файлы</comment>
+ <comment xml:lang="ka">DTD ფაილი</comment>
+ <comment xml:lang="ja">DTD ファイル</comment>
+ <comment xml:lang="it">File DTD</comment>
+ <comment xml:lang="is">DTD-skrá</comment>
+ <comment xml:lang="id">Berkas DTD</comment>
+ <comment xml:lang="ia">File DTD</comment>
+ <comment xml:lang="hu">DTD fájl</comment>
+ <comment xml:lang="hr">DTD datoteka</comment>
+ <comment xml:lang="he">מסמך DTD</comment>
+ <comment xml:lang="gl">ficheiro DTD</comment>
+ <comment xml:lang="ga">comhad DTD</comment>
+ <comment xml:lang="fur">file DTD</comment>
+ <comment xml:lang="fr">fichier DTD</comment>
+ <comment xml:lang="fo">DTD fíla</comment>
+ <comment xml:lang="fi">DTD-tiedosto</comment>
+ <comment xml:lang="eu">DTD fitxategia</comment>
+ <comment xml:lang="es">archivo DTD</comment>
+ <comment xml:lang="eo">DTD-dosiero</comment>
+ <comment xml:lang="en_GB">DTD file</comment>
+ <comment xml:lang="el">Αρχείο DTD</comment>
+ <comment xml:lang="de">DTD-Datei</comment>
+ <comment xml:lang="da">DTD-fil</comment>
+ <comment xml:lang="cs">soubor DTD</comment>
+ <comment xml:lang="ca">fitxer DTD</comment>
+ <comment xml:lang="bg">Документ — DTD</comment>
+ <comment xml:lang="be@latin">Fajł DTD</comment>
+ <comment xml:lang="be">файл DTD</comment>
+ <comment xml:lang="ar">ملف DTD</comment>
+ <comment xml:lang="af">DTD-lêer</comment>
<acronym>DTD</acronym>
<expanded-acronym>Document Type Definition</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -33928,224 +36015,275 @@
</mime-type>
<mime-type type="text/x-eiffel">
<comment>Eiffel source code</comment>
- <comment xml:lang="ar">شفرة مصدر Eiffel</comment>
- <comment xml:lang="be@latin">Kryničny kod Eiffel</comment>
- <comment xml:lang="bg">Изходен код — Eiffel</comment>
- <comment xml:lang="ca">codi font en Eiffel</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Eiffel</comment>
- <comment xml:lang="da">Eiffelkildekode</comment>
- <comment xml:lang="de">Eiffel-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Eiffel</comment>
- <comment xml:lang="en_GB">Eiffel source code</comment>
- <comment xml:lang="eo">Eiffel-fontkodo</comment>
- <comment xml:lang="es">código fuente en Eiffel</comment>
- <comment xml:lang="eu">Eiffel iturburu-kodea</comment>
- <comment xml:lang="fi">Eiffel-lähdekoodi</comment>
- <comment xml:lang="fo">Eiffel keldukota</comment>
- <comment xml:lang="fr">code source Eiffel</comment>
- <comment xml:lang="ga">cód foinseach Eiffel</comment>
- <comment xml:lang="gl">código fone de Eiffel</comment>
- <comment xml:lang="he">קוד מקור של Eiffel</comment>
- <comment xml:lang="hr">Eiffel izvorni kôd</comment>
- <comment xml:lang="hu">Eiffel forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Eiffel</comment>
- <comment xml:lang="id">Kode sumber Eiffel</comment>
- <comment xml:lang="it">Codice sorgente Eiffel</comment>
- <comment xml:lang="ja">Eiffel ソースコード</comment>
- <comment xml:lang="ka">Eiffel-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Eiffel бастапқы коды</comment>
- <comment xml:lang="ko">Eiffel 소스 코드</comment>
- <comment xml:lang="lt">Eiffel pirminis programos tekstas</comment>
- <comment xml:lang="lv">Eiffel pirmkods</comment>
- <comment xml:lang="nb">Eiffel-kildekode</comment>
- <comment xml:lang="nl">Eiffel-broncode</comment>
- <comment xml:lang="nn">Eiffel-kjeldekode</comment>
- <comment xml:lang="oc">còde font Eiffel</comment>
- <comment xml:lang="pl">Kod źródłowy Eiffel</comment>
- <comment xml:lang="pt">código origem Eiffel</comment>
- <comment xml:lang="pt_BR">Código-fonte Eiffel</comment>
- <comment xml:lang="ro">Cod sursă Eiffel</comment>
- <comment xml:lang="ru">Исходный код Eiffel</comment>
- <comment xml:lang="sk">Zdrojový kód Eiffel</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Eiffel</comment>
- <comment xml:lang="sq">Kod burues Eiffel</comment>
- <comment xml:lang="sr">Ајфел изворни ко̂д</comment>
- <comment xml:lang="sv">Eiffel-källkod</comment>
- <comment xml:lang="tr">Eiffel kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Eiffel</comment>
- <comment xml:lang="vi">Mã nguồn Eiffel</comment>
- <comment xml:lang="zh_CN">Eiffel 源代码</comment>
<comment xml:lang="zh_TW">Eiffel 源碼</comment>
+ <comment xml:lang="zh_CN">Eiffel 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Eiffel</comment>
+ <comment xml:lang="uk">початковий код мовою Eiffel</comment>
+ <comment xml:lang="tr">Eiffel kaynak kodu</comment>
+ <comment xml:lang="sv">Eiffel-källkod</comment>
+ <comment xml:lang="sr">Ајфел изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Eiffel</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Eiffel</comment>
+ <comment xml:lang="si">අයිෆල් මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Eiffel</comment>
+ <comment xml:lang="ru">Исходный код Eiffel</comment>
+ <comment xml:lang="ro">Cod sursă Eiffel</comment>
+ <comment xml:lang="pt_BR">Código-fonte Eiffel</comment>
+ <comment xml:lang="pt">código origem Eiffel</comment>
+ <comment xml:lang="pl">Kod źródłowy Eiffel</comment>
+ <comment xml:lang="oc">còde font Eiffel</comment>
+ <comment xml:lang="nn">Eiffel-kjeldekode</comment>
+ <comment xml:lang="nl">Eiffel-broncode</comment>
+ <comment xml:lang="nb">Eiffel-kildekode</comment>
+ <comment xml:lang="lv">Eiffel pirmkods</comment>
+ <comment xml:lang="lt">Eiffel pirminis programos tekstas</comment>
+ <comment xml:lang="ko">Eiffel 소스 코드</comment>
+ <comment xml:lang="kk">Eiffel бастапқы коды</comment>
+ <comment xml:lang="ka">Eiffel-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Eiffel ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Eiffel</comment>
+ <comment xml:lang="is">Eiffel frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Eiffel</comment>
+ <comment xml:lang="ia">Codice-fonte Eiffel</comment>
+ <comment xml:lang="hu">Eiffel forráskód</comment>
+ <comment xml:lang="hr">Eiffel izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Eiffel</comment>
+ <comment xml:lang="gl">código fone de Eiffel</comment>
+ <comment xml:lang="ga">cód foinseach Eiffel</comment>
+ <comment xml:lang="fur">codiç sorzint Eiffel</comment>
+ <comment xml:lang="fr">code source Eiffel</comment>
+ <comment xml:lang="fo">Eiffel keldukota</comment>
+ <comment xml:lang="fi">Eiffel-lähdekoodi</comment>
+ <comment xml:lang="eu">Eiffel iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Eiffel</comment>
+ <comment xml:lang="eo">Eiffel-fontkodo</comment>
+ <comment xml:lang="en_GB">Eiffel source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Eiffel</comment>
+ <comment xml:lang="de">Eiffel-Quelltext</comment>
+ <comment xml:lang="da">Eiffel-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Eiffel</comment>
+ <comment xml:lang="ca">codi font en Eiffel</comment>
+ <comment xml:lang="bg">Изходен код — Eiffel</comment>
+ <comment xml:lang="be@latin">Kryničny kod Eiffel</comment>
+ <comment xml:lang="be">зыходны код Eiffel</comment>
+ <comment xml:lang="ar">شفرة مصدر Eiffel</comment>
+ <comment xml:lang="af">Eiffel-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.e"/>
<glob pattern="*.eif"/>
</mime-type>
<mime-type type="text/x-emacs-lisp">
<comment>Emacs Lisp source code</comment>
- <comment xml:lang="ar">شفرة مصدر Emacs Lisp</comment>
- <comment xml:lang="az">Emacs Lisp mənbə kodu</comment>
- <comment xml:lang="be@latin">Kryničny kod Emacs Lisp</comment>
- <comment xml:lang="bg">Изходен код — Emacs Lisp</comment>
- <comment xml:lang="ca">codi font en Emacs Lisp</comment>
- <comment xml:lang="cs">zdrojový kód Emacs Lisp</comment>
- <comment xml:lang="cy">Ffynhonnell rhaglen EMACS LISP</comment>
- <comment xml:lang="da">Emacs Lisp-kildekode</comment>
- <comment xml:lang="de">Emacs-Lisp-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Emacs Lisp</comment>
- <comment xml:lang="en_GB">Emacs Lisp source code</comment>
- <comment xml:lang="eo">fontkodo en Emacs Lisp</comment>
- <comment xml:lang="es">código fuente en Lisp de Emacs</comment>
- <comment xml:lang="eu">Emacs Lisp iturburu-kodea</comment>
- <comment xml:lang="fi">Emacs Lisp -lähdekoodi</comment>
- <comment xml:lang="fo">Emacs Lisp keldukota</comment>
- <comment xml:lang="fr">code source Emacs Lisp</comment>
- <comment xml:lang="ga">cód foinseach Emacs Lisp</comment>
- <comment xml:lang="gl">código fonte de Emacs Lisp</comment>
- <comment xml:lang="he">קוד מקור של Emcas Lisp</comment>
- <comment xml:lang="hr">Emacs Lisp izvorni kôd</comment>
- <comment xml:lang="hu">Emacs Lisp-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Lisp de Emacs</comment>
- <comment xml:lang="id">Kode sumber Emacs Lisp</comment>
- <comment xml:lang="it">Codice sorgente Emacs Lisp</comment>
- <comment xml:lang="ja">Emacs Lisp ソースコード</comment>
- <comment xml:lang="ka">Emacs-ის Lisp საწყისი კოდი</comment>
- <comment xml:lang="kk">Emacs Lisp бастапқы коды</comment>
- <comment xml:lang="ko">Emacs Lisp 소스 코드</comment>
- <comment xml:lang="lt">Emacs Lisp pradinis kodas</comment>
- <comment xml:lang="lv">Emacs Lisp pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Emacs Lisp</comment>
- <comment xml:lang="nb">Emacs Lisp-kildekode</comment>
- <comment xml:lang="nl">Emacs Lisp-broncode</comment>
- <comment xml:lang="nn">Emacs Lisp kjeldekode</comment>
- <comment xml:lang="oc">còde font Emacs Lisp</comment>
- <comment xml:lang="pl">Plik źródłowy Emacs Lisp</comment>
- <comment xml:lang="pt">código origem Emacs Lisp</comment>
- <comment xml:lang="pt_BR">Código-fonte Lisp do Emacs</comment>
- <comment xml:lang="ro">Cod sursă Emacs Lisp</comment>
- <comment xml:lang="ru">Исходный код Emacs Lisp</comment>
- <comment xml:lang="sk">Zdrojový kód Emacs Lisp</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Emacs Lisp</comment>
- <comment xml:lang="sq">Kod burues Emacs Lisp</comment>
- <comment xml:lang="sr">Емакс Лисп изворни ко̂д</comment>
- <comment xml:lang="sv">Emacs Lisp-källkod</comment>
- <comment xml:lang="tr">Emacs Lisp kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Emacs Lisp</comment>
- <comment xml:lang="vi">Mã nguồn Lisp Emacs</comment>
- <comment xml:lang="zh_CN">Emacs Lisp 源代码</comment>
<comment xml:lang="zh_TW">Emacs Lisp 源碼</comment>
+ <comment xml:lang="zh_CN">Emacs Lisp 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Lisp Emacs</comment>
+ <comment xml:lang="uk">початковий код мовою Emacs Lisp</comment>
+ <comment xml:lang="tr">Emacs Lisp kaynak kodu</comment>
+ <comment xml:lang="sv">Emacs Lisp-källkod</comment>
+ <comment xml:lang="sr">Емакс Лисп изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Emacs Lisp</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Emacs Lisp</comment>
+ <comment xml:lang="si">Emacs Lisp මූලාශ්‍ර කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Emacs Lisp</comment>
+ <comment xml:lang="ru">Исходный код Emacs Lisp</comment>
+ <comment xml:lang="ro">Cod sursă Emacs Lisp</comment>
+ <comment xml:lang="pt_BR">Código-fonte Lisp do Emacs</comment>
+ <comment xml:lang="pt">código origem Emacs Lisp</comment>
+ <comment xml:lang="pl">Kod źródłowy Emacs Lisp</comment>
+ <comment xml:lang="oc">còde font Emacs Lisp</comment>
+ <comment xml:lang="nn">Emacs Lisp kjeldekode</comment>
+ <comment xml:lang="nl">Emacs Lisp-broncode</comment>
+ <comment xml:lang="nb">Emacs Lisp-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Emacs Lisp</comment>
+ <comment xml:lang="lv">Emacs Lisp pirmkods</comment>
+ <comment xml:lang="lt">Emacs Lisp pradinis kodas</comment>
+ <comment xml:lang="ko">Emacs Lisp 소스 코드</comment>
+ <comment xml:lang="kk">Emacs Lisp бастапқы коды</comment>
+ <comment xml:lang="ka">Emacs-ის Lisp საწყისი კოდი</comment>
+ <comment xml:lang="ja">Emacs Lisp ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Emacs Lisp</comment>
+ <comment xml:lang="is">Emacs Lisp frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Emacs Lisp</comment>
+ <comment xml:lang="ia">Codice-fonte Lisp de Emacs</comment>
+ <comment xml:lang="hu">Emacs Lisp-forráskód</comment>
+ <comment xml:lang="hr">Emacs Lisp izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Emcas Lisp</comment>
+ <comment xml:lang="gl">código fonte de Emacs Lisp</comment>
+ <comment xml:lang="ga">cód foinseach Emacs Lisp</comment>
+ <comment xml:lang="fur">codiç sorzint Emacs Lisp</comment>
+ <comment xml:lang="fr">code source Emacs Lisp</comment>
+ <comment xml:lang="fo">Emacs Lisp keldukota</comment>
+ <comment xml:lang="fi">Emacs Lisp -lähdekoodi</comment>
+ <comment xml:lang="eu">Emacs Lisp iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Lisp de Emacs</comment>
+ <comment xml:lang="eo">fontkodo en Emacs Lisp</comment>
+ <comment xml:lang="en_GB">Emacs Lisp source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Emacs Lisp</comment>
+ <comment xml:lang="de">Emacs-Lisp-Quelltext</comment>
+ <comment xml:lang="da">Emacs Lisp-kildekode</comment>
+ <comment xml:lang="cy">Ffynhonnell rhaglen EMACS LISP</comment>
+ <comment xml:lang="cs">zdrojový kód Emacs Lisp</comment>
+ <comment xml:lang="ca">codi font en Emacs Lisp</comment>
+ <comment xml:lang="bg">Изходен код — Emacs Lisp</comment>
+ <comment xml:lang="be@latin">Kryničny kod Emacs Lisp</comment>
+ <comment xml:lang="be">зыходны код Emacs Lisp</comment>
+ <comment xml:lang="az">Emacs Lisp mənbə kodu</comment>
+ <comment xml:lang="ar">شفرة مصدر Emacs Lisp</comment>
+ <comment xml:lang="af">Emacs Lisp-bronkode</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="\012(" type="string" offset="0"/>
- <match value=";ELC\023\000\000\000" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\012(" offset="0"/>
+ <match type="string" value=";ELC\023\000\000\000" offset="0"/>
</magic>
<glob pattern="*.el"/>
</mime-type>
+ <mime-type type="text/x-elixir">
+ <comment>Elixir source code</comment>
+ <comment xml:lang="zh_TW">Elixir 原始碼</comment>
+ <comment xml:lang="zh_CN">Elixir 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Elixir</comment>
+ <comment xml:lang="tr">Elixir kaynak kodu</comment>
+ <comment xml:lang="sv">Elixir-källkod</comment>
+ <comment xml:lang="sl">Izvorna koda Elixir</comment>
+ <comment xml:lang="si">Elixir මූල කේතය</comment>
+ <comment xml:lang="ru">Исходный код Elixir</comment>
+ <comment xml:lang="pt_BR">Código-fonte Elixir</comment>
+ <comment xml:lang="pl">Kod źródłowy Elixir</comment>
+ <comment xml:lang="nl">Elixir-broncode</comment>
+ <comment xml:lang="ko">Elixir 소스 코드</comment>
+ <comment xml:lang="kk">Elixir бастапқы коды</comment>
+ <comment xml:lang="ja">Elixir ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Elixir</comment>
+ <comment xml:lang="hr">Elixir izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור ב־Elixir</comment>
+ <comment xml:lang="gl">Código de fonte Elixir</comment>
+ <comment xml:lang="fi">Elixir-lähdekoodi</comment>
+ <comment xml:lang="eu">Elixir iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente Elixir</comment>
+ <comment xml:lang="en_GB">Elixir source code</comment>
+ <comment xml:lang="de">Elixir-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Elixir</comment>
+ <comment xml:lang="ar">شفرة مصدر Elixir</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.ex"/>
+ <glob pattern="*.exs"/>
+ </mime-type>
<mime-type type="text/x-erlang">
<comment>Erlang source code</comment>
- <comment xml:lang="ar">شفرة مصدر Erlang</comment>
- <comment xml:lang="be@latin">Kryničny kod Erlang</comment>
- <comment xml:lang="bg">Изходен код — Erlang</comment>
- <comment xml:lang="ca">codi font en Erlang</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Erlang</comment>
- <comment xml:lang="da">Erlangkildekode</comment>
- <comment xml:lang="de">Erlang-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Erlang</comment>
- <comment xml:lang="en_GB">Erlang source code</comment>
- <comment xml:lang="eo">Erlang-fontkodo</comment>
- <comment xml:lang="es">código fuente en Erlang</comment>
- <comment xml:lang="eu">Erlang iturburu-kodea</comment>
- <comment xml:lang="fi">Erlang-lähdekoodi</comment>
- <comment xml:lang="fo">Erlang keldukota</comment>
- <comment xml:lang="fr">code source Erlang</comment>
- <comment xml:lang="ga">cód foinseach Erlang</comment>
- <comment xml:lang="gl">código fonte de Erlang</comment>
- <comment xml:lang="he">קוד מקור של Erlang</comment>
- <comment xml:lang="hr">Erlang izvorni kôd</comment>
- <comment xml:lang="hu">Erlang forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Erlang</comment>
- <comment xml:lang="id">Kode sumber Erlang</comment>
- <comment xml:lang="it">Codice sorgente Erlang</comment>
- <comment xml:lang="ja">Erlang ソースコード</comment>
- <comment xml:lang="ka">Erlang-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Erlang бастапқы коды</comment>
- <comment xml:lang="ko">Erlang 소스 코드</comment>
- <comment xml:lang="lt">Erlang pradinis kodas</comment>
- <comment xml:lang="lv">Erlang pirmkods</comment>
- <comment xml:lang="nb">Erlang-kildekode</comment>
- <comment xml:lang="nl">Erlang-broncode</comment>
- <comment xml:lang="nn">Erlang-kjeldekode</comment>
- <comment xml:lang="oc">còde font Erlang</comment>
- <comment xml:lang="pl">Kod źródłowy Erlang</comment>
- <comment xml:lang="pt">código origem Erlang</comment>
- <comment xml:lang="pt_BR">Código-fonte Erlang</comment>
- <comment xml:lang="ro">Cod sursă Erlang</comment>
- <comment xml:lang="ru">Исходный код Erlang</comment>
- <comment xml:lang="sk">Zdrojový kód Erlang</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Erlang</comment>
- <comment xml:lang="sq">Kod burues Erlang</comment>
- <comment xml:lang="sr">Ерланг изворни ко̂д</comment>
- <comment xml:lang="sv">Erlang-källkod</comment>
- <comment xml:lang="tr">Erlang kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Erlang</comment>
- <comment xml:lang="vi">Mã nguồn Erlang</comment>
- <comment xml:lang="zh_CN">Erlang 源代码</comment>
<comment xml:lang="zh_TW">Erlang 源碼</comment>
+ <comment xml:lang="zh_CN">Erlang 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Erlang</comment>
+ <comment xml:lang="uk">початковий код мовою Erlang</comment>
+ <comment xml:lang="tr">Erlang kaynak kodu</comment>
+ <comment xml:lang="sv">Erlang-källkod</comment>
+ <comment xml:lang="sr">Ерланг изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Erlang</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Erlang</comment>
+ <comment xml:lang="si">Erlang මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Erlang</comment>
+ <comment xml:lang="ru">Исходный код Erlang</comment>
+ <comment xml:lang="ro">Cod sursă Erlang</comment>
+ <comment xml:lang="pt_BR">Código-fonte Erlang</comment>
+ <comment xml:lang="pt">código origem Erlang</comment>
+ <comment xml:lang="pl">Kod źródłowy Erlang</comment>
+ <comment xml:lang="oc">còde font Erlang</comment>
+ <comment xml:lang="nn">Erlang-kjeldekode</comment>
+ <comment xml:lang="nl">Erlang-broncode</comment>
+ <comment xml:lang="nb">Erlang-kildekode</comment>
+ <comment xml:lang="lv">Erlang pirmkods</comment>
+ <comment xml:lang="lt">Erlang pradinis kodas</comment>
+ <comment xml:lang="ko">Erlang 소스 코드</comment>
+ <comment xml:lang="kk">Erlang бастапқы коды</comment>
+ <comment xml:lang="ka">Erlang-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Erlang ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Erlang</comment>
+ <comment xml:lang="is">Erlang frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Erlang</comment>
+ <comment xml:lang="ia">Codice-fonte Erlang</comment>
+ <comment xml:lang="hu">Erlang forráskód</comment>
+ <comment xml:lang="hr">Erlang izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Erlang</comment>
+ <comment xml:lang="gl">código fonte de Erlang</comment>
+ <comment xml:lang="ga">cód foinseach Erlang</comment>
+ <comment xml:lang="fur">codiç sorzint Erlang</comment>
+ <comment xml:lang="fr">code source Erlang</comment>
+ <comment xml:lang="fo">Erlang keldukota</comment>
+ <comment xml:lang="fi">Erlang-lähdekoodi</comment>
+ <comment xml:lang="eu">Erlang iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Erlang</comment>
+ <comment xml:lang="eo">Erlang-fontkodo</comment>
+ <comment xml:lang="en_GB">Erlang source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Erlang</comment>
+ <comment xml:lang="de">Erlang-Quelltext</comment>
+ <comment xml:lang="da">Erlang-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Erlang</comment>
+ <comment xml:lang="ca">codi font en Erlang</comment>
+ <comment xml:lang="bg">Изходен код — Erlang</comment>
+ <comment xml:lang="be@latin">Kryničny kod Erlang</comment>
+ <comment xml:lang="be">зыходны код Erlang</comment>
+ <comment xml:lang="ar">شفرة مصدر Erlang</comment>
+ <comment xml:lang="af">Erlang-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.erl"/>
</mime-type>
<mime-type type="text/x-fortran">
<comment>Fortran source code</comment>
- <comment xml:lang="ar">شفرة مصدر Fortran</comment>
- <comment xml:lang="az">Fortran mənbə kodu</comment>
- <comment xml:lang="be@latin">Kryničny kod Fortran</comment>
- <comment xml:lang="bg">Изходен код — Fortran</comment>
- <comment xml:lang="ca">codi font en Fortran</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Fortran</comment>
- <comment xml:lang="cy">Ffynhonnell rhaglen FORTRAN</comment>
- <comment xml:lang="da">Fortrankildekode</comment>
- <comment xml:lang="de">Fortran-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Fortran</comment>
- <comment xml:lang="en_GB">Fortran source code</comment>
- <comment xml:lang="eo">Fotran-fontkodo</comment>
- <comment xml:lang="es">código fuente en Fortran</comment>
- <comment xml:lang="eu">Fortran-en iturburu-kodea</comment>
- <comment xml:lang="fi">Fortran-lähdekoodi</comment>
- <comment xml:lang="fo">Fortran keldukota</comment>
- <comment xml:lang="fr">code source Fortran</comment>
- <comment xml:lang="ga">cód foinseach Fortran</comment>
- <comment xml:lang="gl">código fonte de Fortran</comment>
- <comment xml:lang="he">קוד מקור של Fortran</comment>
- <comment xml:lang="hr">Fortran izvorni kôd</comment>
- <comment xml:lang="hu">Fortran-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Fortran</comment>
- <comment xml:lang="id">Kode sumber Fortran</comment>
- <comment xml:lang="it">Codice sorgente Fortran</comment>
- <comment xml:lang="ja">Fortran ソースコード</comment>
- <comment xml:lang="ka">Fortran-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Fortran бастапқы коды</comment>
- <comment xml:lang="ko">포트란 소스 코드</comment>
- <comment xml:lang="lt">Fortran pradinis kodas</comment>
- <comment xml:lang="lv">Fortran pirmkods</comment>
- <comment xml:lang="ms">kod sumber Fortran</comment>
- <comment xml:lang="nb">Fortran-kildekode</comment>
- <comment xml:lang="nl">Fortran-broncode</comment>
- <comment xml:lang="nn">Fortran-kjeldekode</comment>
- <comment xml:lang="oc">còde font Fortran</comment>
- <comment xml:lang="pl">Kod źródłowy Fortran</comment>
- <comment xml:lang="pt">código origem Fortran</comment>
- <comment xml:lang="pt_BR">Código-fonte Fortran</comment>
- <comment xml:lang="ro">Cod sursă Fortran</comment>
- <comment xml:lang="ru">Исходный код Fortran</comment>
- <comment xml:lang="sk">Zdrojový kód Fortran</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Fortran</comment>
- <comment xml:lang="sq">Kod burues Fortran</comment>
- <comment xml:lang="sr">Фортран изворни ко̂д</comment>
- <comment xml:lang="sv">Fortran-källkod</comment>
- <comment xml:lang="tr">Fortran kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Fortran</comment>
- <comment xml:lang="vi">Mã nguồn Fortran</comment>
- <comment xml:lang="zh_CN">Fortran 源代码</comment>
<comment xml:lang="zh_TW">Fortran 源碼</comment>
+ <comment xml:lang="zh_CN">Fortran 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Fortran</comment>
+ <comment xml:lang="uk">початковий код мовою Fortran</comment>
+ <comment xml:lang="tr">Fortran kaynak kodu</comment>
+ <comment xml:lang="sv">Fortran-källkod</comment>
+ <comment xml:lang="sr">Фортран изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Fortran</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Fortran</comment>
+ <comment xml:lang="si">Fortran මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Fortran</comment>
+ <comment xml:lang="ru">Исходный код Fortran</comment>
+ <comment xml:lang="ro">Cod sursă Fortran</comment>
+ <comment xml:lang="pt_BR">Código-fonte Fortran</comment>
+ <comment xml:lang="pt">código origem Fortran</comment>
+ <comment xml:lang="pl">Kod źródłowy Fortran</comment>
+ <comment xml:lang="oc">còde font Fortran</comment>
+ <comment xml:lang="nn">Fortran-kjeldekode</comment>
+ <comment xml:lang="nl">Fortran-broncode</comment>
+ <comment xml:lang="nb">Fortran-kildekode</comment>
+ <comment xml:lang="ms">kod sumber Fortran</comment>
+ <comment xml:lang="lv">Fortran pirmkods</comment>
+ <comment xml:lang="lt">Fortran pradinis kodas</comment>
+ <comment xml:lang="ko">포트란 소스 코드</comment>
+ <comment xml:lang="kk">Fortran бастапқы коды</comment>
+ <comment xml:lang="ka">Fortran-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Fortran ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Fortran</comment>
+ <comment xml:lang="is">Fortran frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Fortran</comment>
+ <comment xml:lang="ia">Codice-fonte Fortran</comment>
+ <comment xml:lang="hu">Fortran-forráskód</comment>
+ <comment xml:lang="hr">Fortran izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Fortran</comment>
+ <comment xml:lang="gl">código fonte de Fortran</comment>
+ <comment xml:lang="ga">cód foinseach Fortran</comment>
+ <comment xml:lang="fur">codiç sorzint Fortran</comment>
+ <comment xml:lang="fr">code source Fortran</comment>
+ <comment xml:lang="fo">Fortran keldukota</comment>
+ <comment xml:lang="fi">Fortran-lähdekoodi</comment>
+ <comment xml:lang="eu">Fortran-en iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Fortran</comment>
+ <comment xml:lang="eo">Fotran-fontkodo</comment>
+ <comment xml:lang="en_GB">Fortran source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Fortran</comment>
+ <comment xml:lang="de">Fortran-Quelltext</comment>
+ <comment xml:lang="da">Fortran-kildekode</comment>
+ <comment xml:lang="cy">Ffynhonnell rhaglen FORTRAN</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Fortran</comment>
+ <comment xml:lang="ca">codi font en Fortran</comment>
+ <comment xml:lang="bg">Изходен код — Fortran</comment>
+ <comment xml:lang="be@latin">Kryničny kod Fortran</comment>
+ <comment xml:lang="be">зыходны код Fortran</comment>
+ <comment xml:lang="az">Fortran mənbə kodu</comment>
+ <comment xml:lang="ar">شفرة مصدر Fortran</comment>
+ <comment xml:lang="af">Fortran-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.f"/>
<glob pattern="*.f90"/>
@@ -34154,909 +36292,799 @@
</mime-type>
<mime-type type="text/x-genie">
<comment>Genie source code</comment>
- <comment xml:lang="ca">codi font de Genius</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Genie</comment>
- <comment xml:lang="da">Genie-kildekode</comment>
- <comment xml:lang="de">Genie-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Genie</comment>
- <comment xml:lang="en_GB">Genie source code</comment>
- <comment xml:lang="es">código fuente en Genie</comment>
- <comment xml:lang="eu">Genie iturburu-kodea</comment>
- <comment xml:lang="fi">Genie-lähdekoodi</comment>
- <comment xml:lang="fr">code source Genie</comment>
- <comment xml:lang="ga">cód foinseach Genie</comment>
- <comment xml:lang="he">קוד מקור של Genie</comment>
- <comment xml:lang="hr">Genie izvorni kôd</comment>
- <comment xml:lang="hu">Genie forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Genie</comment>
- <comment xml:lang="id">Kode sumber Genie</comment>
- <comment xml:lang="it">Codice sorgente Genie</comment>
- <comment xml:lang="kk">Genie бастапқы коды</comment>
- <comment xml:lang="ko">Genie 소스 코드</comment>
- <comment xml:lang="oc">còde font Genie</comment>
- <comment xml:lang="pl">Kod źródłowy Genie</comment>
- <comment xml:lang="pt">código origem Genie</comment>
- <comment xml:lang="pt_BR">Código-fonte Genie</comment>
- <comment xml:lang="ru">Исходный код Genie</comment>
- <comment xml:lang="sk">Zdrojový kód Genie</comment>
- <comment xml:lang="sl">Izvorna koda Genie</comment>
- <comment xml:lang="sr">Гение изворни ко̂д</comment>
- <comment xml:lang="sv">Genie-källkod</comment>
- <comment xml:lang="tr">Genie kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Genie</comment>
- <comment xml:lang="zh_CN">Genie 源代码</comment>
<comment xml:lang="zh_TW">Genie 源碼</comment>
+ <comment xml:lang="zh_CN">Genie 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Genie</comment>
+ <comment xml:lang="tr">Genie kaynak kodu</comment>
+ <comment xml:lang="sv">Genie-källkod</comment>
+ <comment xml:lang="sr">Гение изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Genie</comment>
+ <comment xml:lang="sl">Izvorna koda Genie</comment>
+ <comment xml:lang="si">Genie මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Genie</comment>
+ <comment xml:lang="ru">Исходный код Genie</comment>
+ <comment xml:lang="pt_BR">Código-fonte Genie</comment>
+ <comment xml:lang="pt">código origem Genie</comment>
+ <comment xml:lang="pl">Kod źródłowy Genie</comment>
+ <comment xml:lang="oc">còde font Genie</comment>
+ <comment xml:lang="nl">Genie-broncode</comment>
+ <comment xml:lang="ko">Genie 소스 코드</comment>
+ <comment xml:lang="kk">Genie бастапқы коды</comment>
+ <comment xml:lang="ja">Genie ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Genie</comment>
+ <comment xml:lang="is">Genie frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Genie</comment>
+ <comment xml:lang="ia">Codice-fonte Genie</comment>
+ <comment xml:lang="hu">Genie forráskód</comment>
+ <comment xml:lang="hr">Genie izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Genie</comment>
+ <comment xml:lang="gl">Código de fonte Genie</comment>
+ <comment xml:lang="ga">cód foinseach Genie</comment>
+ <comment xml:lang="fur">codiç sorzint Genie</comment>
+ <comment xml:lang="fr">code source Genie</comment>
+ <comment xml:lang="fi">Genie-lähdekoodi</comment>
+ <comment xml:lang="eu">Genie iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Genie</comment>
+ <comment xml:lang="en_GB">Genie source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Genie</comment>
+ <comment xml:lang="de">Genie-Quelltext</comment>
+ <comment xml:lang="da">Genie-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Genie</comment>
+ <comment xml:lang="ca">codi font en Genie</comment>
+ <comment xml:lang="bg">Изходен код — Genie</comment>
+ <comment xml:lang="be">зыходны код Genie</comment>
+ <comment xml:lang="ar">شفرة مصدر Genie</comment>
+ <comment xml:lang="af">Genie-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.gs" case-sensitive="true"/>
<generic-icon name="text-x-generic"/>
</mime-type>
<mime-type type="text/x-gettext-translation">
- <comment>translation file</comment>
- <comment xml:lang="ar">ملف الترجمة</comment>
- <comment xml:lang="ast">ficheru de traducción</comment>
- <comment xml:lang="be@latin">fajł pierakładu</comment>
- <comment xml:lang="bg">Превод</comment>
- <comment xml:lang="ca">fitxer de traducció</comment>
- <comment xml:lang="cs">soubor překladu</comment>
- <comment xml:lang="da">oversættelsesfil</comment>
- <comment xml:lang="de">Übersetzungsdatei</comment>
- <comment xml:lang="el">Αρχείο μετάφρασης</comment>
- <comment xml:lang="en_GB">translation file</comment>
- <comment xml:lang="eo">tradukad-dosiero</comment>
- <comment xml:lang="es">archivo de traducción</comment>
- <comment xml:lang="eu">itzulpen-fitxategia</comment>
- <comment xml:lang="fi">käännöstiedosto</comment>
- <comment xml:lang="fo">týðingarfíla</comment>
- <comment xml:lang="fr">fichier de traduction</comment>
- <comment xml:lang="ga">comhad aistriúcháin</comment>
- <comment xml:lang="gl">ficheiro de tradución</comment>
- <comment xml:lang="he">קובץ תרגום</comment>
- <comment xml:lang="hr">Datoteka prijevoda</comment>
- <comment xml:lang="hu">fordítási fájl</comment>
- <comment xml:lang="ia">File de traduction</comment>
- <comment xml:lang="id">berkas terjemahan</comment>
- <comment xml:lang="it">File traduzione</comment>
- <comment xml:lang="ja">翻訳ファイル</comment>
- <comment xml:lang="ka">თარგმნის ფაილი</comment>
- <comment xml:lang="kk">аудармалар файлы</comment>
- <comment xml:lang="ko">번역 파일</comment>
- <comment xml:lang="lt">vertimo failas</comment>
- <comment xml:lang="lv">tulkošanas datne</comment>
- <comment xml:lang="nb">oversettelsesfil</comment>
- <comment xml:lang="nl">vertalingsbestand</comment>
- <comment xml:lang="nn">omsetjingsfil</comment>
- <comment xml:lang="oc">fichièr de traduccion</comment>
- <comment xml:lang="pl">Plik tłumaczenia</comment>
- <comment xml:lang="pt">ficheiro de tradução</comment>
+ <comment>Translation file</comment>
+ <comment xml:lang="uk">Файл перекладу</comment>
+ <comment xml:lang="sv">Översättningsfil</comment>
+ <comment xml:lang="ru">Файл перевода</comment>
<comment xml:lang="pt_BR">Arquivo de tradução</comment>
- <comment xml:lang="ro">fișier traducere</comment>
- <comment xml:lang="ru">Файл переводов</comment>
- <comment xml:lang="sk">Súbor prekladu</comment>
- <comment xml:lang="sl">datoteka prevoda programa</comment>
- <comment xml:lang="sq">File përkthimesh</comment>
- <comment xml:lang="sr">датотека превода</comment>
- <comment xml:lang="sv">översättningsfil</comment>
- <comment xml:lang="tr">çeviri dosyası</comment>
- <comment xml:lang="uk">файл перекладу</comment>
- <comment xml:lang="vi">tập tin dịch</comment>
- <comment xml:lang="zh_CN">翻译文件</comment>
- <comment xml:lang="zh_TW">翻譯檔</comment>
+ <comment xml:lang="pl">Plik tłumaczenia</comment>
+ <comment xml:lang="ja">翻訳文書</comment>
+ <comment xml:lang="it">File traduzione</comment>
+ <comment xml:lang="gl">Ficheiro de traducións</comment>
+ <comment xml:lang="eu">Itzulpen-fitxategia</comment>
+ <comment xml:lang="es">archivo de traducción</comment>
+ <comment xml:lang="de">Übersetzungsdatei</comment>
+ <comment xml:lang="be">файл перакладу</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.po"/>
<alias type="text/x-po"/>
<alias type="application/x-gettext"/>
</mime-type>
<mime-type type="text/x-gettext-translation-template">
- <comment>translation template</comment>
- <comment xml:lang="ar">قالب الترجمة</comment>
- <comment xml:lang="ast">plantía de traducción</comment>
- <comment xml:lang="be@latin">šablon dla pierakładu</comment>
- <comment xml:lang="bg">Шаблон за преводи</comment>
- <comment xml:lang="ca">plantilla de traducció</comment>
- <comment xml:lang="cs">šablona překladu</comment>
- <comment xml:lang="da">oversættelsesskabelon</comment>
- <comment xml:lang="de">Übersetzungsvorlage</comment>
- <comment xml:lang="el">Πρότυπο μετάφρασης</comment>
- <comment xml:lang="en_GB">translation template</comment>
- <comment xml:lang="eo">tradukad-ŝablono</comment>
- <comment xml:lang="es">plantilla de traducción</comment>
- <comment xml:lang="eu">itzulpenen txantiloia</comment>
- <comment xml:lang="fi">käännösmalli</comment>
- <comment xml:lang="fo">týðingarformur</comment>
- <comment xml:lang="fr">modèle de traduction</comment>
- <comment xml:lang="ga">teimpléad aistriúcháin</comment>
- <comment xml:lang="gl">plantilla de tradución</comment>
- <comment xml:lang="he">תבנית תרגום</comment>
- <comment xml:lang="hr">Predložak prijevoda</comment>
- <comment xml:lang="hu">fordítási sablon</comment>
- <comment xml:lang="ia">Patrono de traduction</comment>
- <comment xml:lang="id">templat terjemahan</comment>
- <comment xml:lang="it">Modello di traduzione</comment>
- <comment xml:lang="ja">翻訳テンプレート</comment>
- <comment xml:lang="ka">თარგმნის შაბლონი</comment>
- <comment xml:lang="kk">аудармалар үлгісі</comment>
- <comment xml:lang="ko">메시지 번역 서식</comment>
- <comment xml:lang="lt">vertimo šablonas</comment>
- <comment xml:lang="lv">tulkošanas veidne</comment>
- <comment xml:lang="nb">mal for oversetting</comment>
- <comment xml:lang="nl">vertalingssjabloon</comment>
- <comment xml:lang="nn">omsetjingsmal</comment>
- <comment xml:lang="oc">modèl de traduccion</comment>
- <comment xml:lang="pl">Szablon tłumaczenia</comment>
- <comment xml:lang="pt">modelo de tradução</comment>
- <comment xml:lang="pt_BR">Modelo de tradução</comment>
- <comment xml:lang="ro">șablon de traducere</comment>
- <comment xml:lang="ru">Шаблон переводов</comment>
- <comment xml:lang="sk">Šablóna prekladu</comment>
- <comment xml:lang="sl">predloga datoteke prevoda programa</comment>
- <comment xml:lang="sq">Model përkthimesh</comment>
- <comment xml:lang="sr">шаблон превода</comment>
- <comment xml:lang="sv">översättningsmall</comment>
- <comment xml:lang="tr">çeviri şablonu</comment>
+ <comment>Translation template</comment>
<comment xml:lang="uk">шаблон перекладу</comment>
- <comment xml:lang="vi">mẫu dịch</comment>
- <comment xml:lang="zh_CN">翻译模板</comment>
- <comment xml:lang="zh_TW">翻譯模版</comment>
+ <comment xml:lang="sv">Översättningsmall</comment>
+ <comment xml:lang="ru">Шаблон перевода</comment>
+ <comment xml:lang="pt_BR">Modelo de tradução</comment>
+ <comment xml:lang="pl">Szablon tłumaczenia</comment>
+ <comment xml:lang="ja">翻訳雛形</comment>
+ <comment xml:lang="it">Modello traduzione</comment>
+ <comment xml:lang="gl">Modelo de tradución</comment>
+ <comment xml:lang="eu">Itzulpen-txantiloia</comment>
+ <comment xml:lang="es">plantilla de traducciones</comment>
+ <comment xml:lang="de">Übersetzungsvorlage</comment>
+ <comment xml:lang="be">шаблон перакладу</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.pot"/>
<alias type="text/x-pot"/>
- <magic priority="50">
- <match value='#, fuzzy\nmsgid \"\"\nmsgstr \"\"\n\"Project-Id-Version:' type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="#, fuzzy\nmsgid \&quot;\&quot;\nmsgstr \&quot;\&quot;\n\&quot;Project-Id-Version:" offset="0:256"/>
</magic>
</mime-type>
<mime-type type="text/x-gherkin">
- <comment>feature specification in Gherkin format</comment>
- <comment xml:lang="ca">especificació de funcionalitat en format Gherkin</comment>
- <comment xml:lang="cs">specifikace vlastností ve formátu Gherkin</comment>
- <comment xml:lang="da">funktionspecifikation i Gherkin-format</comment>
- <comment xml:lang="de">Funktionsspezifikation im Gherkin-Format</comment>
- <comment xml:lang="en_GB">feature specification in Gherkin format</comment>
- <comment xml:lang="es">especificación de funcionalidad en formato Gherkin</comment>
- <comment xml:lang="fr">spécification fonctionnelle au format Gherkin</comment>
- <comment xml:lang="ga">sonraíocht gnéithe i bhformáid Gherkin</comment>
- <comment xml:lang="he">פירוט תכונות בתבנית Gherkin</comment>
- <comment xml:lang="hr">opis značajke u Gherkin formatu</comment>
- <comment xml:lang="hu">funkcióleírás Gherkin formátumban</comment>
- <comment xml:lang="id">spesifikasi fitur dalam format Gherkin</comment>
- <comment xml:lang="it">Specifica di funzionalità in formato Gherkin</comment>
- <comment xml:lang="kk">Gherkin пішіміндегі функционалды анықтамалар</comment>
- <comment xml:lang="ko">Gherkin 형식의 기능 명세</comment>
- <comment xml:lang="pl">Specyfikacja funkcji w formacie Gherkin</comment>
- <comment xml:lang="pt_BR">Especificação de recurso no formato Gherkin</comment>
- <comment xml:lang="ru">Функциональные определения в формате Gherkin</comment>
- <comment xml:lang="sk">Špecifikácia funkcie vo formáte Gherkin</comment>
- <comment xml:lang="sr">одредба функције у запису Геркина</comment>
- <comment xml:lang="sv">egenskapsspecifikation i Gherkin-format</comment>
- <comment xml:lang="tr">Gherkin biçiminde özellik belirtimi</comment>
- <comment xml:lang="uk">специфікація можливості у форматі Gherkin</comment>
- <comment xml:lang="zh_CN">Gherkin 格式中的功能规范</comment>
- <comment xml:lang="zh_TW">Gherkin 格式的特徵規格</comment>
+ <comment>Gherkin document</comment>
+ <comment xml:lang="zh_TW">Gherkin 文件</comment>
+ <comment xml:lang="zh_CN">Gherkin 文档</comment>
+ <comment xml:lang="uk">документ Gherkin</comment>
+ <comment xml:lang="tr">Gherkin belgesi</comment>
+ <comment xml:lang="sv">Gherkin-dokument</comment>
+ <comment xml:lang="sq">dokument Gherkin</comment>
+ <comment xml:lang="sl">Dokument Gherkin</comment>
+ <comment xml:lang="si">ගර්කින් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Gherkin</comment>
+ <comment xml:lang="ru">Документ Gherkin</comment>
+ <comment xml:lang="pt_BR">Documento Gherkin</comment>
+ <comment xml:lang="pl">Dokument Gherkin</comment>
+ <comment xml:lang="oc">document Gherkin</comment>
+ <comment xml:lang="nl">Gherkin-document</comment>
+ <comment xml:lang="ko">게르킨 문서</comment>
+ <comment xml:lang="kk">Gherkin құжаты</comment>
+ <comment xml:lang="ja">Gherkin ドキュメント</comment>
+ <comment xml:lang="it">Documento Gherkin</comment>
+ <comment xml:lang="is">Gherkin skjal</comment>
+ <comment xml:lang="id">Dokumen Gherkin</comment>
+ <comment xml:lang="hu">Gherkin dokumentum</comment>
+ <comment xml:lang="hr">Gherkin dokument</comment>
+ <comment xml:lang="he">מסמך Gherkin</comment>
+ <comment xml:lang="gl">Documento Gherkin</comment>
+ <comment xml:lang="fr">document Gherkin</comment>
+ <comment xml:lang="fi">Gherkin-asiakirja</comment>
+ <comment xml:lang="eu">Gherkin dokumentua</comment>
+ <comment xml:lang="es">documento de Gherkin</comment>
+ <comment xml:lang="en_GB">Gherkin document</comment>
+ <comment xml:lang="de">Gherkin-Dokument</comment>
+ <comment xml:lang="da">Gherkin-dokument</comment>
+ <comment xml:lang="ca">document Gherkin</comment>
+ <comment xml:lang="bg">Документ — Gherkin</comment>
+ <comment xml:lang="be">дакумент Gherkin</comment>
+ <comment xml:lang="ar">مستند Gherkin</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.feature"/>
</mime-type>
<mime-type type="text/html">
<comment>HTML document</comment>
- <comment xml:lang="ar">مستند HTML</comment>
- <comment xml:lang="ast">Documentu HTML</comment>
- <comment xml:lang="be@latin">Dakument HTML</comment>
- <comment xml:lang="bg">Документ — HTML</comment>
- <comment xml:lang="ca">document HTML</comment>
- <comment xml:lang="cs">dokument HTML</comment>
- <comment xml:lang="da">HTML-dokument</comment>
- <comment xml:lang="de">HTML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο HTML</comment>
- <comment xml:lang="en_GB">HTML document</comment>
- <comment xml:lang="eo">HTML-dokumento</comment>
- <comment xml:lang="es">documento HTML</comment>
- <comment xml:lang="eu">HTML dokumentua</comment>
- <comment xml:lang="fi">HTML-asiakirja</comment>
- <comment xml:lang="fo">HTML skjal</comment>
- <comment xml:lang="fr">document HTML</comment>
- <comment xml:lang="ga">cáipéis HTML</comment>
- <comment xml:lang="gl">documento HTML</comment>
- <comment xml:lang="he">מסמך HTML</comment>
- <comment xml:lang="hr">HTML dokument</comment>
- <comment xml:lang="hu">HTML dokumentum</comment>
- <comment xml:lang="ia">Documento HTML</comment>
- <comment xml:lang="id">Dokumen HTML</comment>
- <comment xml:lang="it">Documento HTML</comment>
- <comment xml:lang="ja">HTML ドキュメント</comment>
- <comment xml:lang="kk">HTML құжаты</comment>
- <comment xml:lang="ko">HTML 문서</comment>
- <comment xml:lang="lt">HTML dokumentas</comment>
- <comment xml:lang="lv">HTML dokuments</comment>
- <comment xml:lang="nb">HTML-dokument</comment>
- <comment xml:lang="nl">HTML-document</comment>
- <comment xml:lang="nn">HTML-dokument</comment>
- <comment xml:lang="oc">document HTML</comment>
- <comment xml:lang="pl">Dokument HTML</comment>
- <comment xml:lang="pt">documento HTML</comment>
- <comment xml:lang="pt_BR">Documento HTML</comment>
- <comment xml:lang="ro">Document HTML</comment>
- <comment xml:lang="ru">Документ HTML</comment>
- <comment xml:lang="sk">Dokument HTML</comment>
- <comment xml:lang="sl">Dokument HTML</comment>
- <comment xml:lang="sq">Dokument HTML</comment>
- <comment xml:lang="sr">ХТМЛ документ</comment>
- <comment xml:lang="sv">HTML-dokument</comment>
- <comment xml:lang="tr">HTML belgesi</comment>
- <comment xml:lang="uk">документ HTML</comment>
- <comment xml:lang="vi">Tài liệu HTML</comment>
- <comment xml:lang="zh_CN">HTML 文档</comment>
<comment xml:lang="zh_TW">HTML 文件</comment>
+ <comment xml:lang="zh_CN">HTML 文档</comment>
+ <comment xml:lang="vi">Tài liệu HTML</comment>
+ <comment xml:lang="uk">документ HTML</comment>
+ <comment xml:lang="tr">HTML belgesi</comment>
+ <comment xml:lang="sv">HTML-dokument</comment>
+ <comment xml:lang="sr">ХТМЛ документ</comment>
+ <comment xml:lang="sq">dokument HTML</comment>
+ <comment xml:lang="sl">Dokument HTML</comment>
+ <comment xml:lang="si">HTML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument HTML</comment>
+ <comment xml:lang="ru">Документ HTML</comment>
+ <comment xml:lang="ro">Document HTML</comment>
+ <comment xml:lang="pt_BR">Documento HTML</comment>
+ <comment xml:lang="pt">documento HTML</comment>
+ <comment xml:lang="pl">Dokument HTML</comment>
+ <comment xml:lang="oc">document HTML</comment>
+ <comment xml:lang="nn">HTML-dokument</comment>
+ <comment xml:lang="nl">HTML-document</comment>
+ <comment xml:lang="nb">HTML-dokument</comment>
+ <comment xml:lang="lv">HTML dokuments</comment>
+ <comment xml:lang="lt">HTML dokumentas</comment>
+ <comment xml:lang="ko">HTML 문서</comment>
+ <comment xml:lang="kk">HTML құжаты</comment>
+ <comment xml:lang="ja">HTML ドキュメント</comment>
+ <comment xml:lang="it">Documento HTML</comment>
+ <comment xml:lang="is">HTML skjal</comment>
+ <comment xml:lang="id">Dokumen HTML</comment>
+ <comment xml:lang="ia">Documento HTML</comment>
+ <comment xml:lang="hu">HTML dokumentum</comment>
+ <comment xml:lang="hr">HTML dokument</comment>
+ <comment xml:lang="he">מסמך HTML</comment>
+ <comment xml:lang="gl">documento HTML</comment>
+ <comment xml:lang="ga">cáipéis HTML</comment>
+ <comment xml:lang="fur">document HTML</comment>
+ <comment xml:lang="fr">document HTML</comment>
+ <comment xml:lang="fo">HTML skjal</comment>
+ <comment xml:lang="fi">HTML-asiakirja</comment>
+ <comment xml:lang="eu">HTML dokumentua</comment>
+ <comment xml:lang="es">documento HTML</comment>
+ <comment xml:lang="eo">HTML-dokumento</comment>
+ <comment xml:lang="en_GB">HTML document</comment>
+ <comment xml:lang="el">Έγγραφο HTML</comment>
+ <comment xml:lang="de">HTML-Dokument</comment>
+ <comment xml:lang="da">HTML-dokument</comment>
+ <comment xml:lang="cs">dokument HTML</comment>
+ <comment xml:lang="ca">document HTML</comment>
+ <comment xml:lang="bg">Документ — HTML</comment>
+ <comment xml:lang="be@latin">Dakument HTML</comment>
+ <comment xml:lang="be">дакумент HTML</comment>
+ <comment xml:lang="ast">Documentu HTML</comment>
+ <comment xml:lang="ar">مستند HTML</comment>
+ <comment xml:lang="af">HTML-dokument</comment>
<acronym>HTML</acronym>
<expanded-acronym>HyperText Markup Language</expanded-acronym>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="&lt;!DOCTYPE HTML" type="string" offset="0:256"/>
- <match value="&lt;!doctype html" type="string" offset="0:256"/>
- <match value="&lt;HEAD" type="string" offset="0:256"/>
- <match value="&lt;head" type="string" offset="0:256"/>
- <match value="&lt;TITLE" type="string" offset="0:256"/>
- <match value="&lt;title" type="string" offset="0:256"/>
- <match value="&lt;HTML" type="string" offset="0:256"/>
- <match value="&lt;html" type="string" offset="0:256"/>
- <match value="&lt;SCRIPT" type="string" offset="0:256"/>
- <match value="&lt;script" type="string" offset="0:256"/>
- <match value="&lt;BODY" type="string" offset="0"/>
- <match value="&lt;body" type="string" offset="0"/>
- <match value="&lt;!--" type="string" offset="0"/>
- <match value="&lt;h1" type="string" offset="0"/>
- <match value="&lt;H1" type="string" offset="0"/>
- <match value="&lt;!doctype HTML" type="string" offset="0"/>
- <match value="&lt;!DOCTYPE html" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="&lt;!DOCTYPE HTML" offset="0:256"/>
+ <match type="string" value="&lt;!doctype html" offset="0:256"/>
+ <match type="string" value="&lt;!DOCTYPE html" offset="0:256"/>
+ <match type="string" value="&lt;HEAD" offset="0:256"/>
+ <match type="string" value="&lt;head" offset="0:256"/>
+ <match type="string" value="&lt;HTML" offset="0:256"/>
+ <match type="string" value="&lt;html" offset="0:256"/>
+ <match type="string" value="&lt;SCRIPT" offset="0:256"/>
+ <match type="string" value="&lt;script" offset="0:256"/>
+ <match type="string" value="&lt;BODY" offset="0"/>
+ <match type="string" value="&lt;body" offset="0"/>
+ <match type="string" value="&lt;h1" offset="0"/>
+ <match type="string" value="&lt;H1" offset="0"/>
+ <match type="string" value="&lt;!doctype HTML" offset="0"/>
</magic>
- <glob pattern="*.html"/>
- <glob pattern="*.htm"/>
+ <magic priority="40">
+ <match type="string" value="&lt;!--" offset="0"/>
+ <match type="string" value="&lt;TITLE" offset="0:256"/>
+ <match type="string" value="&lt;title" offset="0:256"/>
+ </magic>
+ <glob pattern="*.html" weight="80"/>
+ <glob pattern="*.htm" weight="80"/>
+ </mime-type>
+ <mime-type type="text/x-component">
+ <comment>HTML component</comment>
+ <comment xml:lang="uk">компонент HTML</comment>
+ <comment xml:lang="sv">HTML-komponent</comment>
+ <comment xml:lang="ru">Компонент HTML</comment>
+ <comment xml:lang="pl">Składnik HTML</comment>
+ <comment xml:lang="es">componente de HTML</comment>
+ <comment xml:lang="de">HTML-Komponente</comment>
+ <acronym>HTML</acronym>
+ <expanded-acronym>HyperText Markup Language</expanded-acronym>
+ <sub-class-of type="application/xml"/>
+ <generic-icon name="text-html"/>
+ <glob pattern="*.htc"/>
+ <root-XML namespaceURI="urn:HTMLComponent" localName="PUBLIC"/>
</mime-type>
<mime-type type="text/cache-manifest">
- <comment>Web application cache manifest</comment>
- <comment xml:lang="ar">قائمة التخزين الموقت لتطبيق الويب</comment>
- <comment xml:lang="bg">Манифест за кеша на уеб приложение</comment>
- <comment xml:lang="ca">manifest de memòria cau d'aplicació Web</comment>
- <comment xml:lang="cs">manifest mezipaměti webové aplikace</comment>
- <comment xml:lang="da">Manifest for internetprogrammellemlager</comment>
- <comment xml:lang="de">Webanwendungscache-Manifest</comment>
- <comment xml:lang="el">Δηλωτικό λανθάνουσας μνήμης εφαρμογής Ιστού</comment>
- <comment xml:lang="en_GB">Web application cache manifest</comment>
- <comment xml:lang="es">manifiesto de antememoria de aplicación web</comment>
- <comment xml:lang="eu">Web aplikazioaren cache-aren agiria</comment>
- <comment xml:lang="fo">Net nýtsluskipanarkova manifest</comment>
- <comment xml:lang="fr">manifeste de cache d'application Web</comment>
- <comment xml:lang="ga">lastliosta taisce d'fheidhmchlár Gréasáin</comment>
- <comment xml:lang="gl">manifesto de caché de aplicativo web</comment>
- <comment xml:lang="he">הצהרה של מטמון של תוכנית ברשת</comment>
- <comment xml:lang="hr">Web aplikacija prikaza predmemorije</comment>
- <comment xml:lang="hu">Webalkalmazás gyorsítótár-összefoglalója</comment>
- <comment xml:lang="ia">Manifesto de cache de application web</comment>
- <comment xml:lang="id">Manifes singgahan aplikasi web</comment>
- <comment xml:lang="it">Manifesto cache applicazione Web</comment>
- <comment xml:lang="ja">Web アプリケーションキャッシュ manifest</comment>
- <comment xml:lang="kk">Веб қолданбасының кэш манифесті</comment>
- <comment xml:lang="ko">웹 애플리케이션 캐시 정의</comment>
- <comment xml:lang="lt">Žiniatinklio programos podėlio manifestas</comment>
- <comment xml:lang="lv">Tīmekļa lietotņu keša manifests</comment>
- <comment xml:lang="nl">Webapplicatie cache manifest</comment>
- <comment xml:lang="oc">manifèste d'escondedor d'aplicacion Web</comment>
- <comment xml:lang="pl">Manifest pamięci podręcznej aplikacji WWW</comment>
- <comment xml:lang="pt">manifesto de cache de aplicação web</comment>
- <comment xml:lang="pt_BR">Manifest de cache de aplicação web</comment>
- <comment xml:lang="ro">Manifest de cache pentru aplicații web</comment>
- <comment xml:lang="ru">Манифест кэша веб-приложения</comment>
- <comment xml:lang="sk">Manifest vyrovnávacej pamäte webovej aplikácie</comment>
- <comment xml:lang="sl">Predpomnilnik spletnega programa</comment>
- <comment xml:lang="sr">проглас оставе Веб програма</comment>
- <comment xml:lang="sv">Cachemanifest för webbapplikation</comment>
- <comment xml:lang="tr">Web uygulama önbelleği bildirimi</comment>
- <comment xml:lang="uk">маніфест кешу веб-програми</comment>
- <comment xml:lang="zh_CN">网络应用程序缓存清单</comment>
- <comment xml:lang="zh_TW">網頁應用程式快取聲明</comment>
+ <comment>Web application cache file</comment>
+ <comment xml:lang="zh_CN">Web 应用缓存文件</comment>
+ <comment xml:lang="uk">файл кешу вебпрограми</comment>
+ <comment xml:lang="tr">Web uygulama önbellek dosyası</comment>
+ <comment xml:lang="sv">Webbapplikationscachefil</comment>
+ <comment xml:lang="sq">kartelë fshehtine aplikacioni Web</comment>
+ <comment xml:lang="si">වෙබ් යෙදුම් හැඹිලි ගොනුව</comment>
+ <comment xml:lang="ru">Файл кэша веб-приложения</comment>
+ <comment xml:lang="pt_BR">Arquivo de cache de aplicativo Web</comment>
+ <comment xml:lang="pl">Plik pamięci podręcznej aplikacji WWW</comment>
+ <comment xml:lang="oc">fichièr d'escondedor aplicacion Web</comment>
+ <comment xml:lang="nl">Cachebestand van webtoepassing</comment>
+ <comment xml:lang="ko">웹 애플리케이션 캐시 파일</comment>
+ <comment xml:lang="kk">Веб қолданбасының кэш файлы</comment>
+ <comment xml:lang="ja">Web アプリケーションキャッシュファイル</comment>
+ <comment xml:lang="it">File cache applicazione Web</comment>
+ <comment xml:lang="is">skyndiminnisskrá vefforrits</comment>
+ <comment xml:lang="id">Berkas singgahan aplikasi web</comment>
+ <comment xml:lang="hu">Webalkalmazás gyorsítótárfájl</comment>
+ <comment xml:lang="hr"> Web aplikacija datoteka predmemorije </comment>
+ <comment xml:lang="he">קובץ מטמון של תוכנית ברשת</comment>
+ <comment xml:lang="gl">Ficheiro de caché de aplicación web</comment>
+ <comment xml:lang="fr">fichier de cache d'application Web</comment>
+ <comment xml:lang="fi">Web-sovelluksen välimuistitiedosto</comment>
+ <comment xml:lang="eu">Web-aplikazio katxe fitxategia</comment>
+ <comment xml:lang="es">archivo de antememoria de aplicación web</comment>
+ <comment xml:lang="en_GB">Web application cache file</comment>
+ <comment xml:lang="de">Webanwendungs-Zwischenspeicherdatei</comment>
+ <comment xml:lang="da">Webprogrammellemlagerfil</comment>
+ <comment xml:lang="ca">fitxer de memòria cau d'aplicació Web</comment>
+ <comment xml:lang="bg">Кеш — уеб приложение</comment>
+ <comment xml:lang="be">файл кэша вэб-праграмы</comment>
+ <comment xml:lang="ar">ملف خبيئة تطبيق ويب</comment>
<sub-class-of type="text/plain"/>
<magic>
- <match value="CACHE MANIFEST" type="string" offset="0">
- <match value="\x20" type="string" offset="14"/>
- <match value="\x09" type="string" offset="14"/>
- <match value="\x0a" type="string" offset="14"/>
- <match value="\x0d" type="string" offset="14"/>
+ <match type="string" value="CACHE MANIFEST" offset="0">
+ <match type="string" value="\x20" offset="14"/>
+ <match type="string" value="\x09" offset="14"/>
+ <match type="string" value="\x0a" offset="14"/>
+ <match type="string" value="\x0d" offset="14"/>
</match>
</magic>
<glob pattern="*.manifest"/>
</mime-type>
<mime-type type="text/x-google-video-pointer">
- <comment>Google Video Pointer</comment>
- <comment xml:lang="ar">مؤشر فيديو جوجل</comment>
- <comment xml:lang="ast">Google Video Pointer</comment>
- <comment xml:lang="be@latin">Pakazalnik Google Video</comment>
- <comment xml:lang="bg">Документ-указател към видео на Google</comment>
- <comment xml:lang="ca">apuntador a vídeo de Google</comment>
- <comment xml:lang="cs">Google Video Pointer</comment>
- <comment xml:lang="da">Google Video-peger</comment>
- <comment xml:lang="de">Google Video-Zeiger</comment>
- <comment xml:lang="el">Google Video Pointer</comment>
- <comment xml:lang="en_GB">Google Video Pointer</comment>
- <comment xml:lang="es">lista de reproducción de Google Video (GVP)</comment>
- <comment xml:lang="eu">Google Video-ren erreprodukzio-zerrenda</comment>
- <comment xml:lang="fi">Google-video-osoitin</comment>
- <comment xml:lang="fo">Google Video Pointer</comment>
- <comment xml:lang="fr">pointeur vidéo Google</comment>
- <comment xml:lang="ga">pointeoir Google Video</comment>
- <comment xml:lang="gl">punteiro de vídeo de Google</comment>
- <comment xml:lang="he">מצביע וידאו של Google</comment>
- <comment xml:lang="hr">Google Video pretraživač</comment>
- <comment xml:lang="hu">Google Video Pointer</comment>
- <comment xml:lang="ia">Punctator Google Video</comment>
- <comment xml:lang="id">Google Video Pointer</comment>
- <comment xml:lang="it">Puntatore Google Video</comment>
- <comment xml:lang="ja">Google ビデオポインター</comment>
- <comment xml:lang="kk">Google Video Pointer</comment>
- <comment xml:lang="ko">Google 동영상 포인터</comment>
- <comment xml:lang="lt">Google Video Pointer</comment>
- <comment xml:lang="lv">Google Video Pointer</comment>
- <comment xml:lang="nb">Peker til Google Video</comment>
- <comment xml:lang="nl">Google-videoverwijzing</comment>
- <comment xml:lang="nn">Google Video-peikar</comment>
- <comment xml:lang="oc">puntador vidèo Google</comment>
- <comment xml:lang="pl">Lista odtwarzania Google Video</comment>
- <comment xml:lang="pt">Ponteiro Google Video</comment>
- <comment xml:lang="pt_BR">Ponteiro do Google Vídeo</comment>
- <comment xml:lang="ro">Indicator Google Video</comment>
- <comment xml:lang="ru">Google Video Pointer</comment>
- <comment xml:lang="sk">Google Video Pointer</comment>
- <comment xml:lang="sl">Kazalec Google Video</comment>
- <comment xml:lang="sq">Puntues Google Video</comment>
- <comment xml:lang="sr">Гуглов видео показивач</comment>
- <comment xml:lang="sv">Google Video-pekare</comment>
- <comment xml:lang="tr">Google Video İşaretçisi</comment>
- <comment xml:lang="uk">вказівник відео Google</comment>
- <comment xml:lang="vi">Con trỏ ảnh động Google</comment>
- <comment xml:lang="zh_CN">Google 视频指向</comment>
- <comment xml:lang="zh_TW">Google Video Pointer</comment>
- <magic priority="50">
- <match value="#.download.the.free.Google.Video.Player" type="string" offset="0"/>
- <match value="# download the free Google Video Player" type="string" offset="0"/>
+ <comment>Google Video Pointer shortcut</comment>
+ <comment xml:lang="zh_CN">Google Video Pointer 快捷方式</comment>
+ <comment xml:lang="uk">скорочення вказівника відео Google</comment>
+ <comment xml:lang="tr">Google Video Pointer kısayolu</comment>
+ <comment xml:lang="sv">Google Video Pointer-genväg</comment>
+ <comment xml:lang="sq">shkurtore Google Video Pointer</comment>
+ <comment xml:lang="si">Google Video Pointer කෙටිමඟ</comment>
+ <comment xml:lang="ru">Ссылка Google Video Pointer</comment>
+ <comment xml:lang="pt_BR">Atalho do Google Video Pointer</comment>
+ <comment xml:lang="pl">Skrót listy odtwarzania Google Video</comment>
+ <comment xml:lang="nl">Google Video Pointer-snelkoppeling</comment>
+ <comment xml:lang="ko">구글 동영상 포인터 바로 가기</comment>
+ <comment xml:lang="kk">Google Video Pointer жарлығы</comment>
+ <comment xml:lang="ja">Google Video Pointer ショートカット</comment>
+ <comment xml:lang="it">Scorciatoia Google Video Pointer</comment>
+ <comment xml:lang="is">Google Video Pointer flýtivísun</comment>
+ <comment xml:lang="id">Pintasan Google Video Pointer</comment>
+ <comment xml:lang="hu">Google Video Pointer parancsikon</comment>
+ <comment xml:lang="hr">Google Video pretraživač prečac</comment>
+ <comment xml:lang="he">קיצור למצביע וידאו של Google</comment>
+ <comment xml:lang="fr">raccourci de pointeur vidéo Google</comment>
+ <comment xml:lang="fi">Google Video Pointer -pikakuvake</comment>
+ <comment xml:lang="eu">Google Video Pointer lasterbidea</comment>
+ <comment xml:lang="es">atajo de Google Video Pointer</comment>
+ <comment xml:lang="en_GB">Google Video Pointer shortcut</comment>
+ <comment xml:lang="de">Google-Videozeiger-Verweis</comment>
+ <comment xml:lang="da">Google Video Pointer-genvej</comment>
+ <comment xml:lang="ca">drecera d'apuntador a vídeo de Google</comment>
+ <comment xml:lang="bg">Отметка — Google Video</comment>
+ <comment xml:lang="be">ярлык Google Video Pointer</comment>
+ <comment xml:lang="ar">اختصار مؤشر فيديو غوغل</comment>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="#.download.the.free.Google.Video.Player" offset="0"/>
+ <match type="string" value="# download the free Google Video Player" offset="0"/>
</magic>
<glob pattern="*.gvp"/>
<alias type="text/google-video-pointer"/>
</mime-type>
<mime-type type="text/x-haskell">
<comment>Haskell source code</comment>
- <comment xml:lang="ar">شفرة مصدر Haskell</comment>
- <comment xml:lang="az">Haskell mənbə kodu</comment>
- <comment xml:lang="be@latin">Kryničny kod Haskell</comment>
- <comment xml:lang="bg">Изходен код на Haskell</comment>
- <comment xml:lang="ca">codi font en Haskell</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Haskell</comment>
- <comment xml:lang="cy">Ffynhonnell rhaglen Haskell</comment>
- <comment xml:lang="da">Haskellkildekode</comment>
- <comment xml:lang="de">Haskell-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Haskell</comment>
- <comment xml:lang="en_GB">Haskell source code</comment>
- <comment xml:lang="eo">Haskell-fontkodo</comment>
- <comment xml:lang="es">código fuente en Haskell</comment>
- <comment xml:lang="eu">Haskell iturburu-kodea</comment>
- <comment xml:lang="fi">Haskell-lähdekoodi</comment>
- <comment xml:lang="fo">Haskell keldukota</comment>
- <comment xml:lang="fr">code source Haskell</comment>
- <comment xml:lang="ga">cód foinseach Haskell</comment>
- <comment xml:lang="gl">código fonte de Haskell</comment>
- <comment xml:lang="he">קוד מקור של Haskell</comment>
- <comment xml:lang="hr">Haskell izvorni kôd</comment>
- <comment xml:lang="hu">Haskell-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Haskell</comment>
- <comment xml:lang="id">Kode sumber Haskell</comment>
- <comment xml:lang="it">Codice sorgente Haskell</comment>
- <comment xml:lang="ja">Haskell ソースコード</comment>
- <comment xml:lang="kk">Haskell бастапқы коды</comment>
- <comment xml:lang="ko">Haskell 소스 코드</comment>
- <comment xml:lang="lt">Haskell pradinis kodas</comment>
- <comment xml:lang="lv">Haskell pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Haskell</comment>
- <comment xml:lang="nb">Haskell-kildekode</comment>
- <comment xml:lang="nl">Haskell-broncode</comment>
- <comment xml:lang="nn">Haskell-kjeldekode</comment>
- <comment xml:lang="oc">còde font Haskell</comment>
- <comment xml:lang="pl">Kod źródłowy Haskell</comment>
- <comment xml:lang="pt">código origem Haskell</comment>
- <comment xml:lang="pt_BR">Código-fonte Haskell</comment>
- <comment xml:lang="ro">Cod sursă Haskell</comment>
- <comment xml:lang="ru">Исходный код Haskell</comment>
- <comment xml:lang="sk">Zdrojový kód Haskell</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Haskell</comment>
- <comment xml:lang="sq">Kod burues Haskell</comment>
- <comment xml:lang="sr">Хаскел изворни ко̂д</comment>
- <comment xml:lang="sv">Haskell-källkod</comment>
- <comment xml:lang="tr">Haskell kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Haskell</comment>
- <comment xml:lang="vi">Mã nguồn Haskell</comment>
- <comment xml:lang="zh_CN">Haskell 源代码</comment>
<comment xml:lang="zh_TW">Haskell 源碼</comment>
+ <comment xml:lang="zh_CN">Haskell 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Haskell</comment>
+ <comment xml:lang="uk">початковий код мовою Haskell</comment>
+ <comment xml:lang="tr">Haskell kaynak kodu</comment>
+ <comment xml:lang="sv">Haskell-källkod</comment>
+ <comment xml:lang="sr">Хаскел изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Haskell</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Haskell</comment>
+ <comment xml:lang="si">Haskell මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Haskell</comment>
+ <comment xml:lang="ru">Исходный код Haskell</comment>
+ <comment xml:lang="ro">Cod sursă Haskell</comment>
+ <comment xml:lang="pt_BR">Código-fonte Haskell</comment>
+ <comment xml:lang="pt">código origem Haskell</comment>
+ <comment xml:lang="pl">Kod źródłowy Haskell</comment>
+ <comment xml:lang="oc">còde font Haskell</comment>
+ <comment xml:lang="nn">Haskell-kjeldekode</comment>
+ <comment xml:lang="nl">Haskell-broncode</comment>
+ <comment xml:lang="nb">Haskell-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Haskell</comment>
+ <comment xml:lang="lv">Haskell pirmkods</comment>
+ <comment xml:lang="lt">Haskell pradinis kodas</comment>
+ <comment xml:lang="ko">Haskell 소스 코드</comment>
+ <comment xml:lang="kk">Haskell бастапқы коды</comment>
+ <comment xml:lang="ja">Haskell ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Haskell</comment>
+ <comment xml:lang="is">Haskell frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Haskell</comment>
+ <comment xml:lang="ia">Codice-fonte Haskell</comment>
+ <comment xml:lang="hu">Haskell-forráskód</comment>
+ <comment xml:lang="hr">Haskell izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Haskell</comment>
+ <comment xml:lang="gl">código fonte de Haskell</comment>
+ <comment xml:lang="ga">cód foinseach Haskell</comment>
+ <comment xml:lang="fur">codiç sorzint Haskell</comment>
+ <comment xml:lang="fr">code source Haskell</comment>
+ <comment xml:lang="fo">Haskell keldukota</comment>
+ <comment xml:lang="fi">Haskell-lähdekoodi</comment>
+ <comment xml:lang="eu">Haskell iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Haskell</comment>
+ <comment xml:lang="eo">Haskell-fontkodo</comment>
+ <comment xml:lang="en_GB">Haskell source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Haskell</comment>
+ <comment xml:lang="de">Haskell-Quelltext</comment>
+ <comment xml:lang="da">Haskell-kildekode</comment>
+ <comment xml:lang="cy">Ffynhonnell rhaglen Haskell</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Haskell</comment>
+ <comment xml:lang="ca">codi font en Haskell</comment>
+ <comment xml:lang="bg">Изходен код — Haskell</comment>
+ <comment xml:lang="be@latin">Kryničny kod Haskell</comment>
+ <comment xml:lang="be">зыходны код Haskell</comment>
+ <comment xml:lang="az">Haskell mənbə kodu</comment>
+ <comment xml:lang="ar">شفرة مصدر Haskell</comment>
+ <comment xml:lang="af">Haskell-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.hs"/>
</mime-type>
<mime-type type="text/x-idl">
<comment>IDL document</comment>
- <comment xml:lang="ar">مستند IDL</comment>
- <comment xml:lang="ast">Documentu IDL</comment>
- <comment xml:lang="az">IDL sənədi</comment>
- <comment xml:lang="be@latin">Dakument IDL</comment>
- <comment xml:lang="bg">Документ — IDL</comment>
- <comment xml:lang="ca">document IDL</comment>
- <comment xml:lang="cs">dokument IDL</comment>
- <comment xml:lang="cy">Dogfen IDL</comment>
- <comment xml:lang="da">IDL-dokument</comment>
- <comment xml:lang="de">IDL-Dokument</comment>
- <comment xml:lang="el">Έγγραφο IDL</comment>
- <comment xml:lang="en_GB">IDL document</comment>
- <comment xml:lang="eo">IDL-dokumento</comment>
- <comment xml:lang="es">documento IDL</comment>
- <comment xml:lang="eu">IDL dokumentua</comment>
- <comment xml:lang="fi">IDL-asiakirja</comment>
- <comment xml:lang="fo">IDL skjal</comment>
- <comment xml:lang="fr">document IDL</comment>
- <comment xml:lang="ga">cáipéis IDL</comment>
- <comment xml:lang="gl">documento IDL</comment>
- <comment xml:lang="he">מסמך IDL</comment>
- <comment xml:lang="hr">IDL dokument</comment>
- <comment xml:lang="hu">IDL-dokumentum</comment>
- <comment xml:lang="ia">Documento IDL</comment>
- <comment xml:lang="id">Dokumen IDL</comment>
- <comment xml:lang="it">Documento IDL</comment>
- <comment xml:lang="ja">IDL ドキュメント</comment>
- <comment xml:lang="kk">IDL құжаты</comment>
- <comment xml:lang="ko">IDL 문서</comment>
- <comment xml:lang="lt">IDL dokumentas</comment>
- <comment xml:lang="lv">IDL dokuments</comment>
- <comment xml:lang="ms">Dokumen IDL</comment>
- <comment xml:lang="nb">IDL-dokument</comment>
- <comment xml:lang="nl">IDL-document</comment>
- <comment xml:lang="nn">IDL-dokument</comment>
- <comment xml:lang="oc">document IDL</comment>
- <comment xml:lang="pl">Dokument IDL</comment>
- <comment xml:lang="pt">documento IDL</comment>
- <comment xml:lang="pt_BR">Documento IDL</comment>
- <comment xml:lang="ro">Document IDL</comment>
- <comment xml:lang="ru">Документ IDL</comment>
- <comment xml:lang="sk">Dokument IDL</comment>
- <comment xml:lang="sl">Dokument IDL</comment>
- <comment xml:lang="sq">Dokument IDL</comment>
- <comment xml:lang="sr">ИДЛ документ</comment>
- <comment xml:lang="sv">IDL-dokument</comment>
- <comment xml:lang="tr">IDL belgesi</comment>
- <comment xml:lang="uk">документ IDL</comment>
- <comment xml:lang="vi">Tài liệu IDL</comment>
- <comment xml:lang="zh_CN">IDL 文档</comment>
<comment xml:lang="zh_TW">IDL 文件</comment>
+ <comment xml:lang="zh_CN">IDL 文档</comment>
+ <comment xml:lang="vi">Tài liệu IDL</comment>
+ <comment xml:lang="uk">документ IDL</comment>
+ <comment xml:lang="tr">IDL belgesi</comment>
+ <comment xml:lang="sv">IDL-dokument</comment>
+ <comment xml:lang="sr">ИДЛ документ</comment>
+ <comment xml:lang="sq">dokument IDL</comment>
+ <comment xml:lang="sl">Dokument IDL</comment>
+ <comment xml:lang="si">IDL ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument IDL</comment>
+ <comment xml:lang="ru">Документ IDL</comment>
+ <comment xml:lang="ro">Document IDL</comment>
+ <comment xml:lang="pt_BR">Documento IDL</comment>
+ <comment xml:lang="pt">documento IDL</comment>
+ <comment xml:lang="pl">Dokument IDL</comment>
+ <comment xml:lang="oc">document IDL</comment>
+ <comment xml:lang="nn">IDL-dokument</comment>
+ <comment xml:lang="nl">IDL-document</comment>
+ <comment xml:lang="nb">IDL-dokument</comment>
+ <comment xml:lang="ms">Dokumen IDL</comment>
+ <comment xml:lang="lv">IDL dokuments</comment>
+ <comment xml:lang="lt">IDL dokumentas</comment>
+ <comment xml:lang="ko">IDL 문서</comment>
+ <comment xml:lang="kk">IDL құжаты</comment>
+ <comment xml:lang="ja">IDL ドキュメント</comment>
+ <comment xml:lang="it">Documento IDL</comment>
+ <comment xml:lang="is">IDL skjal</comment>
+ <comment xml:lang="id">Dokumen IDL</comment>
+ <comment xml:lang="ia">Documento IDL</comment>
+ <comment xml:lang="hu">IDL-dokumentum</comment>
+ <comment xml:lang="hr">IDL dokument</comment>
+ <comment xml:lang="he">מסמך IDL</comment>
+ <comment xml:lang="gl">documento IDL</comment>
+ <comment xml:lang="ga">cáipéis IDL</comment>
+ <comment xml:lang="fur">document IDL</comment>
+ <comment xml:lang="fr">document IDL</comment>
+ <comment xml:lang="fo">IDL skjal</comment>
+ <comment xml:lang="fi">IDL-asiakirja</comment>
+ <comment xml:lang="eu">IDL dokumentua</comment>
+ <comment xml:lang="es">documento IDL</comment>
+ <comment xml:lang="eo">IDL-dokumento</comment>
+ <comment xml:lang="en_GB">IDL document</comment>
+ <comment xml:lang="el">Έγγραφο IDL</comment>
+ <comment xml:lang="de">IDL-Dokument</comment>
+ <comment xml:lang="da">IDL-dokument</comment>
+ <comment xml:lang="cy">Dogfen IDL</comment>
+ <comment xml:lang="cs">dokument IDL</comment>
+ <comment xml:lang="ca">document IDL</comment>
+ <comment xml:lang="bg">Документ — IDL</comment>
+ <comment xml:lang="be@latin">Dakument IDL</comment>
+ <comment xml:lang="be">дакумент IDL</comment>
+ <comment xml:lang="az">IDL sənədi</comment>
+ <comment xml:lang="ast">Documentu IDL</comment>
+ <comment xml:lang="ar">مستند IDL</comment>
+ <comment xml:lang="af">IDL-dokument</comment>
<acronym>IDL</acronym>
<expanded-acronym>Interface Definition Language</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.idl"/>
</mime-type>
<mime-type type="text/x-install">
- <comment>installation instructions</comment>
- <comment xml:lang="ar">تعليمات التثبيت</comment>
- <comment xml:lang="ast">instrucciones d'instalación</comment>
- <comment xml:lang="be@latin">instrukcyja dla instalavańnia</comment>
- <comment xml:lang="bg">Инструкции за инсталация</comment>
- <comment xml:lang="ca">instruccions d'instal·lació</comment>
- <comment xml:lang="cs">návod k instalaci</comment>
- <comment xml:lang="da">installationsinstruktioner</comment>
- <comment xml:lang="de">Installationsanleitung</comment>
- <comment xml:lang="el">Οδηγίες εγκατάστασης</comment>
- <comment xml:lang="en_GB">installation instructions</comment>
- <comment xml:lang="es">instrucciones de instalación</comment>
- <comment xml:lang="eu">instalazioaren instrukzioak</comment>
- <comment xml:lang="fi">asennusohjeet</comment>
- <comment xml:lang="fo">innleggingar vegleiðing</comment>
- <comment xml:lang="fr">instructions d'installation</comment>
- <comment xml:lang="ga">treoracha suiteála</comment>
- <comment xml:lang="gl">instrucións de instalación</comment>
- <comment xml:lang="he">הוראות התקנה</comment>
- <comment xml:lang="hr">Upute za instalaciju</comment>
- <comment xml:lang="hu">telepítési utasítások</comment>
- <comment xml:lang="ia">Instructiones de installation</comment>
- <comment xml:lang="id">instruksi instalasi</comment>
- <comment xml:lang="it">Istruzioni di installazione</comment>
- <comment xml:lang="ja">ソフトウェアインストール説明</comment>
- <comment xml:lang="kk">бағдарламаны орнату нұсқаулары</comment>
- <comment xml:lang="ko">설치 방법</comment>
- <comment xml:lang="lt">diegimo instrukcijos</comment>
- <comment xml:lang="lv">instalācijas instrukcijas</comment>
- <comment xml:lang="nb">installationsinstruksjoner</comment>
- <comment xml:lang="nl">installatie-instructies</comment>
- <comment xml:lang="nn">installasjonsinstruksjonar</comment>
- <comment xml:lang="oc">instructions d'installacion</comment>
- <comment xml:lang="pl">Instrukcje instalacji</comment>
- <comment xml:lang="pt">instruções de instalação</comment>
- <comment xml:lang="pt_BR">Instruções de instalação</comment>
- <comment xml:lang="ro">instrucțiuni de instalare</comment>
+ <comment>Installation instructions</comment>
+ <comment xml:lang="uk">настанови щодо встановлення</comment>
+ <comment xml:lang="sv">Installationsinstruktioner</comment>
<comment xml:lang="ru">Инструкции по установке</comment>
- <comment xml:lang="sk">Návod na inštaláciu</comment>
- <comment xml:lang="sl">navodila namestitve</comment>
- <comment xml:lang="sq">Udhëzime instalimi</comment>
- <comment xml:lang="sr">упутства инсталације</comment>
- <comment xml:lang="sv">installationsinstruktioner</comment>
- <comment xml:lang="tr">kurulum yönergeleri</comment>
- <comment xml:lang="uk">інструкції з встановлення</comment>
- <comment xml:lang="vi">hướng dẫn cài đặt</comment>
- <comment xml:lang="zh_CN">软件安装指南</comment>
- <comment xml:lang="zh_TW">安裝指引</comment>
+ <comment xml:lang="pt_BR">Instruções de instalação</comment>
+ <comment xml:lang="pl">Instrukcje instalacji</comment>
+ <comment xml:lang="ja">導入指南</comment>
+ <comment xml:lang="it">Istruzioni di installazione</comment>
+ <comment xml:lang="eu">Instalazio-argibideak</comment>
+ <comment xml:lang="es">instrucciones de instalación</comment>
+ <comment xml:lang="de">Installationsanleitung</comment>
+ <comment xml:lang="be">інструкцыі для ўсталявання</comment>
<sub-class-of type="text/plain"/>
<glob pattern="INSTALL"/>
</mime-type>
<mime-type type="text/x-java">
<comment>Java source code</comment>
- <comment xml:lang="ar">شفرة مصدر Java</comment>
- <comment xml:lang="be@latin">Kryničny kod Java</comment>
- <comment xml:lang="bg">Изходен код на Java</comment>
- <comment xml:lang="ca">codi font en Java</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Java</comment>
- <comment xml:lang="da">Javakildekode</comment>
- <comment xml:lang="de">Java-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Java</comment>
- <comment xml:lang="en_GB">Java source code</comment>
- <comment xml:lang="eo">Java-fontkodo</comment>
- <comment xml:lang="es">código fuente en Java</comment>
- <comment xml:lang="eu">Java iturburu-kodea</comment>
- <comment xml:lang="fi">Java-lähdekoodi</comment>
- <comment xml:lang="fo">Java keldukota</comment>
- <comment xml:lang="fr">code source Java</comment>
- <comment xml:lang="ga">cód foinseach Java</comment>
- <comment xml:lang="gl">código fonte de Java</comment>
- <comment xml:lang="he">קוד מקור ב־Java</comment>
- <comment xml:lang="hr">Java izvorni kôd</comment>
- <comment xml:lang="hu">Java-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Java</comment>
- <comment xml:lang="id">Kode sumber Java</comment>
- <comment xml:lang="it">Codice sorgente Java</comment>
- <comment xml:lang="ja">Java ソースコード</comment>
- <comment xml:lang="kk">Java бастапқы коды</comment>
- <comment xml:lang="ko">Java 소스 코드</comment>
- <comment xml:lang="lt">Java pradinis kodas</comment>
- <comment xml:lang="lv">Java pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Java</comment>
- <comment xml:lang="nb">Java-kildekode</comment>
- <comment xml:lang="nl">Java-broncode</comment>
- <comment xml:lang="nn">Java-kjeldekode</comment>
- <comment xml:lang="oc">còde font Java</comment>
- <comment xml:lang="pl">Kod źródłowy Java</comment>
- <comment xml:lang="pt">código origem Java</comment>
- <comment xml:lang="pt_BR">Código-fonte Java</comment>
- <comment xml:lang="ro">Cod sursă Java</comment>
- <comment xml:lang="ru">Исходный код Java</comment>
- <comment xml:lang="sk">Zdrojový kód Java</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Java</comment>
- <comment xml:lang="sq">Kod burues Java</comment>
- <comment xml:lang="sr">Јава изворни ко̂д</comment>
- <comment xml:lang="sv">Java-källkod</comment>
- <comment xml:lang="tr">Java kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Java</comment>
- <comment xml:lang="vi">Mã nguồn Java</comment>
- <comment xml:lang="zh_CN">Java 源代码</comment>
<comment xml:lang="zh_TW">Java 源碼</comment>
+ <comment xml:lang="zh_CN">Java 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Java</comment>
+ <comment xml:lang="uk">початковий код мовою Java</comment>
+ <comment xml:lang="tr">Java kaynak kodu</comment>
+ <comment xml:lang="sv">Java-källkod</comment>
+ <comment xml:lang="sr">Јава изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Java</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Java</comment>
+ <comment xml:lang="si">ජාවා මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Java</comment>
+ <comment xml:lang="ru">Исходный код Java</comment>
+ <comment xml:lang="ro">Cod sursă Java</comment>
+ <comment xml:lang="pt_BR">Código-fonte Java</comment>
+ <comment xml:lang="pt">código origem Java</comment>
+ <comment xml:lang="pl">Kod źródłowy Java</comment>
+ <comment xml:lang="oc">còde font Java</comment>
+ <comment xml:lang="nn">Java-kjeldekode</comment>
+ <comment xml:lang="nl">Java-broncode</comment>
+ <comment xml:lang="nb">Java-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Java</comment>
+ <comment xml:lang="lv">Java pirmkods</comment>
+ <comment xml:lang="lt">Java pradinis kodas</comment>
+ <comment xml:lang="ko">Java 소스 코드</comment>
+ <comment xml:lang="kk">Java бастапқы коды</comment>
+ <comment xml:lang="ja">Java ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Java</comment>
+ <comment xml:lang="is">Java frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Java</comment>
+ <comment xml:lang="ia">Codice-fonte Java</comment>
+ <comment xml:lang="hu">Java-forráskód</comment>
+ <comment xml:lang="hr">Java izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור ב־Java</comment>
+ <comment xml:lang="gl">código fonte de Java</comment>
+ <comment xml:lang="ga">cód foinseach Java</comment>
+ <comment xml:lang="fur">codiç sorzint Java</comment>
+ <comment xml:lang="fr">code source Java</comment>
+ <comment xml:lang="fo">Java keldukota</comment>
+ <comment xml:lang="fi">Java-lähdekoodi</comment>
+ <comment xml:lang="eu">Java iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Java</comment>
+ <comment xml:lang="eo">Java-fontkodo</comment>
+ <comment xml:lang="en_GB">Java source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Java</comment>
+ <comment xml:lang="de">Java-Quelltext</comment>
+ <comment xml:lang="da">Java-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Java</comment>
+ <comment xml:lang="ca">codi font en Java</comment>
+ <comment xml:lang="bg">Изходен код — Java</comment>
+ <comment xml:lang="be@latin">Kryničny kod Java</comment>
+ <comment xml:lang="be">зыходны код Java</comment>
+ <comment xml:lang="ar">شفرة مصدر Java</comment>
+ <comment xml:lang="af">Java-bronkode</comment>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.java"/>
</mime-type>
<mime-type type="text/x-ldif">
<comment>LDIF address book</comment>
- <comment xml:lang="ar">دفتر عناوين LDIF</comment>
- <comment xml:lang="be@latin">Adrasnaja kniha LDIF</comment>
- <comment xml:lang="bg">Адресна книга — LDIF</comment>
- <comment xml:lang="ca">llibreta d'adreces LDIF</comment>
- <comment xml:lang="cs">adresář LDIF</comment>
- <comment xml:lang="da">LDIF-adressebog</comment>
- <comment xml:lang="de">LDIF-Adressbuch</comment>
- <comment xml:lang="el">Βιβλίο διευθύνσεων LDIF</comment>
- <comment xml:lang="en_GB">LDIF address book</comment>
- <comment xml:lang="eo">LDIF-adresaro</comment>
- <comment xml:lang="es">libreta de direcciones LDIF</comment>
- <comment xml:lang="eu">LDIF helbide-liburua</comment>
- <comment xml:lang="fi">LDIF-osoitekirja</comment>
- <comment xml:lang="fo">LDIF adressubók</comment>
- <comment xml:lang="fr">carnet d'adresses LDIF</comment>
- <comment xml:lang="ga">leabhar seoltaí LDIF</comment>
- <comment xml:lang="gl">lista de enderezos LDIF</comment>
- <comment xml:lang="he">ספר כתובות של LDIF</comment>
- <comment xml:lang="hr">LDIF adresar</comment>
- <comment xml:lang="hu">LDIF címjegyzék</comment>
- <comment xml:lang="ia">Adressario LDIF</comment>
- <comment xml:lang="id">Buku alamat LDIF</comment>
- <comment xml:lang="it">Rubrica LDIF</comment>
- <comment xml:lang="ja">LDIF アドレス帳</comment>
- <comment xml:lang="kk">LDIF адрестер кітабы</comment>
- <comment xml:lang="ko">LDIF 주소록</comment>
- <comment xml:lang="lt">LDIF adresų knygelė</comment>
- <comment xml:lang="lv">LDIF adrešu grāmata</comment>
- <comment xml:lang="nb">LDIF-adressebok</comment>
- <comment xml:lang="nl">LDIF-adresboek</comment>
- <comment xml:lang="nn">LDIF-adressebok</comment>
- <comment xml:lang="oc">quasernet d'adreças LDIF</comment>
- <comment xml:lang="pl">Książka adresowa LDIF</comment>
- <comment xml:lang="pt">livro de endereços LDIF</comment>
- <comment xml:lang="pt_BR">Livro de endereços LDIF</comment>
- <comment xml:lang="ro">Agendă LDIF</comment>
- <comment xml:lang="ru">Адресная книга LDIF</comment>
- <comment xml:lang="sk">Adresár LDIF</comment>
- <comment xml:lang="sl">Datoteka imenika naslovov LDIF</comment>
- <comment xml:lang="sq">Rubrikë LDIF</comment>
- <comment xml:lang="sr">ЛДИФ адресар</comment>
- <comment xml:lang="sv">LDIF-adressbok</comment>
- <comment xml:lang="tr">LDIF adres defteri</comment>
- <comment xml:lang="uk">адресна книга LDIF</comment>
- <comment xml:lang="vi">Sổ địa chỉ LDIF</comment>
- <comment xml:lang="zh_CN">LDIF 地址簿</comment>
<comment xml:lang="zh_TW">LDIF 通訊錄</comment>
+ <comment xml:lang="zh_CN">LDIF 地址簿</comment>
+ <comment xml:lang="vi">Sổ địa chỉ LDIF</comment>
+ <comment xml:lang="uk">адресна книга LDIF</comment>
+ <comment xml:lang="tr">LDIF adres defteri</comment>
+ <comment xml:lang="sv">LDIF-adressbok</comment>
+ <comment xml:lang="sr">ЛДИФ адресар</comment>
+ <comment xml:lang="sq">libër adresash LDIF</comment>
+ <comment xml:lang="sl">Datoteka imenika naslovov LDIF</comment>
+ <comment xml:lang="si">LDIF ලිපින පොත</comment>
+ <comment xml:lang="sk">Adresár LDIF</comment>
+ <comment xml:lang="ru">Адресная книга LDIF</comment>
+ <comment xml:lang="ro">Agendă LDIF</comment>
+ <comment xml:lang="pt_BR">Livro de endereços LDIF</comment>
+ <comment xml:lang="pt">livro de endereços LDIF</comment>
+ <comment xml:lang="pl">Książka adresowa LDIF</comment>
+ <comment xml:lang="oc">quasernet d'adreças LDIF</comment>
+ <comment xml:lang="nn">LDIF-adressebok</comment>
+ <comment xml:lang="nl">LDIF-adresboek</comment>
+ <comment xml:lang="nb">LDIF-adressebok</comment>
+ <comment xml:lang="lv">LDIF adrešu grāmata</comment>
+ <comment xml:lang="lt">LDIF adresų knygelė</comment>
+ <comment xml:lang="ko">LDIF 주소록</comment>
+ <comment xml:lang="kk">LDIF адрестер кітабы</comment>
+ <comment xml:lang="ja">LDIF アドレス帳</comment>
+ <comment xml:lang="it">Rubrica LDIF</comment>
+ <comment xml:lang="is">LDIF-nafnaskrá</comment>
+ <comment xml:lang="id">Buku alamat LDIF</comment>
+ <comment xml:lang="ia">Adressario LDIF</comment>
+ <comment xml:lang="hu">LDIF címjegyzék</comment>
+ <comment xml:lang="hr">LDIF adresar</comment>
+ <comment xml:lang="he">ספר כתובות של LDIF</comment>
+ <comment xml:lang="gl">lista de enderezos LDIF</comment>
+ <comment xml:lang="ga">leabhar seoltaí LDIF</comment>
+ <comment xml:lang="fur">rubriche LDIF</comment>
+ <comment xml:lang="fr">carnet d'adresses LDIF</comment>
+ <comment xml:lang="fo">LDIF adressubók</comment>
+ <comment xml:lang="fi">LDIF-osoitekirja</comment>
+ <comment xml:lang="eu">LDIF helbide-liburua</comment>
+ <comment xml:lang="es">libreta de direcciones LDIF</comment>
+ <comment xml:lang="eo">LDIF-adresaro</comment>
+ <comment xml:lang="en_GB">LDIF address book</comment>
+ <comment xml:lang="el">Βιβλίο διευθύνσεων LDIF</comment>
+ <comment xml:lang="de">LDIF-Adressbuch</comment>
+ <comment xml:lang="da">LDIF-adressebog</comment>
+ <comment xml:lang="cs">adresář LDIF</comment>
+ <comment xml:lang="ca">llibreta d'adreces LDIF</comment>
+ <comment xml:lang="bg">Адресна книга — LDIF</comment>
+ <comment xml:lang="be@latin">Adrasnaja kniha LDIF</comment>
+ <comment xml:lang="be">адрасная кніга LDIF</comment>
+ <comment xml:lang="ar">دفتر عناوين LDIF</comment>
+ <comment xml:lang="af">LDIF-adresboek</comment>
<acronym>LDIF</acronym>
<expanded-acronym>LDAP Data Interchange Format</expanded-acronym>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="dn: cn=" type="string" offset="0"/>
- <match value="dn: mail=" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="dn: cn=" offset="0"/>
+ <match type="string" value="dn: mail=" offset="0"/>
</magic>
<glob pattern="*.ldif"/>
</mime-type>
<mime-type type="text/x-lilypond">
<comment>Lilypond music sheet</comment>
- <comment xml:lang="ar">صفحة موسيقى Lilypond</comment>
- <comment xml:lang="be@latin">Muzyčny arkuš Lilypond</comment>
- <comment xml:lang="bg">Нотация на Lilypond</comment>
- <comment xml:lang="ca">full de música Lilypond</comment>
- <comment xml:lang="cs">notový papír Lilypond</comment>
- <comment xml:lang="da">Lilypondmusikkort</comment>
- <comment xml:lang="de">Lilypond-Notenblatt</comment>
- <comment xml:lang="el">Παρτιτούρα Lilypond</comment>
- <comment xml:lang="en_GB">Lilypond music sheet</comment>
- <comment xml:lang="es">partitura de LilyPond</comment>
- <comment xml:lang="eu">Lilypond musika-orria</comment>
- <comment xml:lang="fi">Lilypond-nuotit</comment>
- <comment xml:lang="fo">Lilypond tónleika ark</comment>
- <comment xml:lang="fr">partition musicale Lilypond</comment>
- <comment xml:lang="ga">bileog cheoil Lilypond</comment>
- <comment xml:lang="gl">folla de música de Lilypond</comment>
- <comment xml:lang="he">דף מוזיקה של Lilypond</comment>
- <comment xml:lang="hr">Lilypond glazbena ljestvica</comment>
- <comment xml:lang="hu">Lilypond kotta</comment>
- <comment xml:lang="ia">Partition musical Lilypond</comment>
- <comment xml:lang="id">Lembar musik Lilypond</comment>
- <comment xml:lang="it">Partitura Lilypond</comment>
- <comment xml:lang="ja">Lilypond 楽譜データ</comment>
- <comment xml:lang="kk">Lilypond музыка тізімі</comment>
- <comment xml:lang="ko">Lilypond 악보</comment>
- <comment xml:lang="lt">Lilypond muzikos lapas</comment>
- <comment xml:lang="lv">Lilypond mūzikas lapa</comment>
- <comment xml:lang="nl">Lilypond-muziekblad</comment>
- <comment xml:lang="nn">Lilypond noteark</comment>
- <comment xml:lang="oc">particion musicala Lilypond</comment>
- <comment xml:lang="pl">Plik partytury Lilypond</comment>
- <comment xml:lang="pt">folha de música Lilypond</comment>
- <comment xml:lang="pt_BR">Partitura do Lilypond</comment>
- <comment xml:lang="ro">Fișă muzică Lilypond</comment>
- <comment xml:lang="ru">Список музыки Lilypond</comment>
- <comment xml:lang="sk">Notový papier Lilypond</comment>
- <comment xml:lang="sl">Glasbena predloga Lilypond</comment>
- <comment xml:lang="sq">Partiturë Lilypond</comment>
- <comment xml:lang="sr">Лилипонд музички лист</comment>
- <comment xml:lang="sv">Lilypond-notblad</comment>
- <comment xml:lang="tr">Lilypond müzik sayfası</comment>
- <comment xml:lang="uk">нотний запис Lilypond</comment>
- <comment xml:lang="vi">Bản nhạc Lilypond</comment>
- <comment xml:lang="zh_CN">Lilypond 乐谱</comment>
<comment xml:lang="zh_TW">Lilypond 樂譜</comment>
+ <comment xml:lang="zh_CN">Lilypond 乐谱</comment>
+ <comment xml:lang="vi">Bản nhạc Lilypond</comment>
+ <comment xml:lang="uk">нотний запис Lilypond</comment>
+ <comment xml:lang="tr">Lilypond müzik sayfası</comment>
+ <comment xml:lang="sv">Lilypond-notblad</comment>
+ <comment xml:lang="sr">Лилипонд музички лист</comment>
+ <comment xml:lang="sq">partiturë Lilypond</comment>
+ <comment xml:lang="sl">Glasbena predloga Lilypond</comment>
+ <comment xml:lang="si">ලිලිපොන්ඩ් සංගීත පත්රය</comment>
+ <comment xml:lang="sk">Notový papier Lilypond</comment>
+ <comment xml:lang="ru">Список музыки Lilypond</comment>
+ <comment xml:lang="ro">Fișă muzică Lilypond</comment>
+ <comment xml:lang="pt_BR">Partitura do Lilypond</comment>
+ <comment xml:lang="pt">folha de música Lilypond</comment>
+ <comment xml:lang="pl">Plik partytury Lilypond</comment>
+ <comment xml:lang="oc">particion musicala Lilypond</comment>
+ <comment xml:lang="nn">Lilypond noteark</comment>
+ <comment xml:lang="nl">Lilypond-muziekblad</comment>
+ <comment xml:lang="lv">Lilypond mūzikas lapa</comment>
+ <comment xml:lang="lt">Lilypond muzikos lapas</comment>
+ <comment xml:lang="ko">Lilypond 악보</comment>
+ <comment xml:lang="kk">Lilypond музыка тізімі</comment>
+ <comment xml:lang="ja">Lilypond 楽譜データ</comment>
+ <comment xml:lang="it">Partitura Lilypond</comment>
+ <comment xml:lang="is">LilyPond nótnablað</comment>
+ <comment xml:lang="id">Lembar musik Lilypond</comment>
+ <comment xml:lang="ia">Partition musical Lilypond</comment>
+ <comment xml:lang="hu">Lilypond kotta</comment>
+ <comment xml:lang="hr">Lilypond glazbena ljestvica</comment>
+ <comment xml:lang="he">דף מוזיקה של Lilypond</comment>
+ <comment xml:lang="gl">folla de música de Lilypond</comment>
+ <comment xml:lang="ga">bileog cheoil Lilypond</comment>
+ <comment xml:lang="fur">spartît Lilypond</comment>
+ <comment xml:lang="fr">partition musicale Lilypond</comment>
+ <comment xml:lang="fo">Lilypond tónleika ark</comment>
+ <comment xml:lang="fi">Lilypond-nuotit</comment>
+ <comment xml:lang="eu">Lilypond musika-orria</comment>
+ <comment xml:lang="es">partitura de LilyPond</comment>
+ <comment xml:lang="en_GB">Lilypond music sheet</comment>
+ <comment xml:lang="el">Παρτιτούρα Lilypond</comment>
+ <comment xml:lang="de">Lilypond-Notenblatt</comment>
+ <comment xml:lang="da">Lilypondmusikkort</comment>
+ <comment xml:lang="cs">notový papír Lilypond</comment>
+ <comment xml:lang="ca">full de música Lilypond</comment>
+ <comment xml:lang="bg">Нотация на Lilypond</comment>
+ <comment xml:lang="be@latin">Muzyčny arkuš Lilypond</comment>
+ <comment xml:lang="be">нотны запіс Lilypond</comment>
+ <comment xml:lang="ar">صفحة موسيقى Lilypond</comment>
+ <comment xml:lang="af">Lilypond-musiekblad</comment>
<glob pattern="*.ly"/>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/x-literate-haskell">
<comment>LHS source code</comment>
- <comment xml:lang="ar">شفرة مصدر LHS</comment>
- <comment xml:lang="be@latin">Kryničny kod LHS</comment>
- <comment xml:lang="bg">Изходен код на LHS</comment>
- <comment xml:lang="ca">codi font en LHS</comment>
- <comment xml:lang="cs">zdrojový kód LHS</comment>
- <comment xml:lang="da">LHS-kildekode</comment>
- <comment xml:lang="de">LHS-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας LHS</comment>
- <comment xml:lang="en_GB">LHS source code</comment>
- <comment xml:lang="eo">LHS-fontkodo</comment>
- <comment xml:lang="es">código fuente en LHS</comment>
- <comment xml:lang="eu">LHS iturburu-kodea</comment>
- <comment xml:lang="fi">LHS-lähdekoodi</comment>
- <comment xml:lang="fo">LHS keld</comment>
- <comment xml:lang="fr">code source LHS</comment>
- <comment xml:lang="ga">cód foinseach LHS</comment>
- <comment xml:lang="gl">código fonte en LHS</comment>
- <comment xml:lang="he">קוד מקור של LHS</comment>
- <comment xml:lang="hr">LHS izvorni kôd</comment>
- <comment xml:lang="hu">LHS forráskód</comment>
- <comment xml:lang="ia">Codice-fonte LHS</comment>
- <comment xml:lang="id">Kode sumber LHS</comment>
- <comment xml:lang="it">Codice sorgente LHS</comment>
- <comment xml:lang="ja">LHS ソースコード</comment>
- <comment xml:lang="kk">LHS бастапқы коды</comment>
- <comment xml:lang="ko">LHS 소스 코드</comment>
- <comment xml:lang="lt">LHS pradinis kodas</comment>
- <comment xml:lang="lv">LHS pirmkods</comment>
- <comment xml:lang="nb">LHS-kildekode</comment>
- <comment xml:lang="nl">LHS-broncode</comment>
- <comment xml:lang="nn">LHS-kjeldekode</comment>
- <comment xml:lang="oc">còde font LHS</comment>
- <comment xml:lang="pl">Kod źródłowy LHS</comment>
- <comment xml:lang="pt">código origem LHS</comment>
- <comment xml:lang="pt_BR">Código-fonte LHS</comment>
- <comment xml:lang="ro">Cod sursă LHS</comment>
- <comment xml:lang="ru">Исходный код LHS</comment>
- <comment xml:lang="sk">Zdrojový kód LHS</comment>
- <comment xml:lang="sl">Datoteka izvorne kode LHS</comment>
- <comment xml:lang="sq">Kod burues LHS</comment>
- <comment xml:lang="sr">ЛХС изворни ко̂д</comment>
- <comment xml:lang="sv">LHS-källkod</comment>
- <comment xml:lang="tr">LHS kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код LHS</comment>
- <comment xml:lang="vi">Mã nguồn LHS</comment>
- <comment xml:lang="zh_CN">LHS 源代码</comment>
<comment xml:lang="zh_TW">LHS 源碼</comment>
+ <comment xml:lang="zh_CN">LHS 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn LHS</comment>
+ <comment xml:lang="uk">початковий код LHS</comment>
+ <comment xml:lang="tr">LHS kaynak kodu</comment>
+ <comment xml:lang="sv">LHS-källkod</comment>
+ <comment xml:lang="sr">ЛХС изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim LHS</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode LHS</comment>
+ <comment xml:lang="si">LHS මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód LHS</comment>
+ <comment xml:lang="ru">Исходный код LHS</comment>
+ <comment xml:lang="ro">Cod sursă LHS</comment>
+ <comment xml:lang="pt_BR">Código-fonte LHS</comment>
+ <comment xml:lang="pt">código origem LHS</comment>
+ <comment xml:lang="pl">Kod źródłowy LHS</comment>
+ <comment xml:lang="oc">còde font LHS</comment>
+ <comment xml:lang="nn">LHS-kjeldekode</comment>
+ <comment xml:lang="nl">LHS-broncode</comment>
+ <comment xml:lang="nb">LHS-kildekode</comment>
+ <comment xml:lang="lv">LHS pirmkods</comment>
+ <comment xml:lang="lt">LHS pradinis kodas</comment>
+ <comment xml:lang="ko">LHS 소스 코드</comment>
+ <comment xml:lang="kk">LHS бастапқы коды</comment>
+ <comment xml:lang="ja">LHS ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente LHS</comment>
+ <comment xml:lang="is">LHS frumkóði</comment>
+ <comment xml:lang="id">Kode sumber LHS</comment>
+ <comment xml:lang="ia">Codice-fonte LHS</comment>
+ <comment xml:lang="hu">LHS forráskód</comment>
+ <comment xml:lang="hr">LHS izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של LHS</comment>
+ <comment xml:lang="gl">código fonte en LHS</comment>
+ <comment xml:lang="ga">cód foinseach LHS</comment>
+ <comment xml:lang="fur">codiç sorzint LHS</comment>
+ <comment xml:lang="fr">code source LHS</comment>
+ <comment xml:lang="fo">LHS keld</comment>
+ <comment xml:lang="fi">LHS-lähdekoodi</comment>
+ <comment xml:lang="eu">LHS iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en LHS</comment>
+ <comment xml:lang="eo">LHS-fontkodo</comment>
+ <comment xml:lang="en_GB">LHS source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας LHS</comment>
+ <comment xml:lang="de">LHS-Quelltext</comment>
+ <comment xml:lang="da">LHS-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód LHS</comment>
+ <comment xml:lang="ca">codi font en LHS</comment>
+ <comment xml:lang="bg">Изходен код — LHS</comment>
+ <comment xml:lang="be@latin">Kryničny kod LHS</comment>
+ <comment xml:lang="be">зыходны код LHS</comment>
+ <comment xml:lang="ar">شفرة مصدر LHS</comment>
+ <comment xml:lang="af">LHS-bronkode</comment>
<acronym>LHS</acronym>
<expanded-acronym>Literate Haskell source code</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.lhs"/>
</mime-type>
<mime-type type="text/x-log">
- <comment>application log</comment>
- <comment xml:lang="ar">سجل التطبيق</comment>
- <comment xml:lang="ast">rexistru d'aplicación</comment>
- <comment xml:lang="be@latin">časopis aplikacyi</comment>
- <comment xml:lang="bg">Файл-дневник на приложение</comment>
- <comment xml:lang="ca">registre d'aplicació</comment>
- <comment xml:lang="cs">záznam aplikace</comment>
- <comment xml:lang="da">programlog</comment>
- <comment xml:lang="de">Anwendungsprotokoll</comment>
- <comment xml:lang="el">Καταγραφή εφαρμογή</comment>
- <comment xml:lang="en_GB">application log</comment>
- <comment xml:lang="eo">protokolo de aplikaĵo</comment>
- <comment xml:lang="es">registro de aplicación</comment>
- <comment xml:lang="eu">aplikazio egunkaria</comment>
- <comment xml:lang="fi">sovelluksen lokitiedosto</comment>
- <comment xml:lang="fo">nýtsluskipan logg</comment>
- <comment xml:lang="fr">journal d'application</comment>
- <comment xml:lang="ga">logchomhad feidhmchláir</comment>
- <comment xml:lang="gl">rexistro de aplicativo</comment>
- <comment xml:lang="he">יומן יישום</comment>
- <comment xml:lang="hr">Zapis aplikacije</comment>
- <comment xml:lang="hu">alkalmazás naplója</comment>
- <comment xml:lang="ia">Registro de application</comment>
- <comment xml:lang="id">log aplikasi</comment>
- <comment xml:lang="it">Registro applicazione</comment>
- <comment xml:lang="ja">アプリケーションログ</comment>
- <comment xml:lang="kk">мәлімдемелер журналы</comment>
- <comment xml:lang="ko">프로그램 기록</comment>
- <comment xml:lang="lt">programos žurnalas</comment>
- <comment xml:lang="lv">lietotnes žurnāls</comment>
- <comment xml:lang="ms">Log aplikasi</comment>
- <comment xml:lang="nb">applikasjonslogg</comment>
- <comment xml:lang="nl">programma-logbestand</comment>
- <comment xml:lang="nn">programlogg</comment>
- <comment xml:lang="oc">jornal d'aplicacion</comment>
- <comment xml:lang="pl">Dziennik programu</comment>
- <comment xml:lang="pt">diário de aplicação</comment>
- <comment xml:lang="pt_BR">Registro de aplicativo</comment>
- <comment xml:lang="ro">înregistrare aplicație</comment>
- <comment xml:lang="ru">Журнал сообщений</comment>
- <comment xml:lang="sk">Záznam aplikácie</comment>
- <comment xml:lang="sl">dnevnik programa</comment>
- <comment xml:lang="sq">log i mesazheve të programit</comment>
- <comment xml:lang="sr">дневник програма</comment>
- <comment xml:lang="sv">programlogg</comment>
- <comment xml:lang="tr">uygulama günlüğü</comment>
+ <comment>Application log</comment>
<comment xml:lang="uk">журнал програми</comment>
- <comment xml:lang="vi">bản ghi ứng dụng</comment>
- <comment xml:lang="zh_CN">应用程序日志</comment>
- <comment xml:lang="zh_TW">程式紀錄檔</comment>
+ <comment xml:lang="sv">Programlogg</comment>
+ <comment xml:lang="ru">Журнал сообщений</comment>
+ <comment xml:lang="pl">Dziennik programu</comment>
+ <comment xml:lang="ja">アプリケーション記録</comment>
+ <comment xml:lang="it">Registro applicazione</comment>
+ <comment xml:lang="gl">Rexistro de aplicación</comment>
+ <comment xml:lang="eu">Aplikazio-egunkaria</comment>
+ <comment xml:lang="es">registro de aplicaciones</comment>
+ <comment xml:lang="de">Anwendungsprotokoll</comment>
+ <comment xml:lang="be">журнал праграмы</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.log"/>
</mime-type>
<mime-type type="text/x-makefile">
- <comment>Makefile</comment>
- <comment xml:lang="ar">ملف Makefile</comment>
- <comment xml:lang="az">İnşa faylı</comment>
- <comment xml:lang="be@latin">Makefile</comment>
- <comment xml:lang="bg">Файл — make</comment>
- <comment xml:lang="ca">Makefile</comment>
- <comment xml:lang="cs">Makefile</comment>
- <comment xml:lang="cy">Ffeil "make"</comment>
- <comment xml:lang="da">Bygningsfil</comment>
- <comment xml:lang="de">Makefile</comment>
- <comment xml:lang="el">Makefile</comment>
- <comment xml:lang="en_GB">Makefile</comment>
- <comment xml:lang="eo">Muntodosiero</comment>
- <comment xml:lang="es">Makefile</comment>
- <comment xml:lang="eu">Makefile</comment>
- <comment xml:lang="fi">Makefile</comment>
- <comment xml:lang="fo">Makefile</comment>
- <comment xml:lang="fr">makefile</comment>
- <comment xml:lang="ga">Makefile</comment>
- <comment xml:lang="gl">Makefile</comment>
- <comment xml:lang="he">Makefile</comment>
- <comment xml:lang="hr">Makefile</comment>
- <comment xml:lang="hu">Makefile</comment>
- <comment xml:lang="ia">Makefile</comment>
- <comment xml:lang="id">Makefile</comment>
- <comment xml:lang="it">Makefile</comment>
- <comment xml:lang="ja">Makefile</comment>
- <comment xml:lang="ka">Makefile</comment>
- <comment xml:lang="kk">Makefile (жинау файлы)</comment>
- <comment xml:lang="ko">Makefile</comment>
- <comment xml:lang="lt">Makefile</comment>
- <comment xml:lang="lv">Makefile</comment>
- <comment xml:lang="ms">Makefile</comment>
- <comment xml:lang="nb">Makefile</comment>
- <comment xml:lang="nl">Makefile</comment>
- <comment xml:lang="nn">Makefile</comment>
- <comment xml:lang="oc">makefile</comment>
- <comment xml:lang="pl">Plik make</comment>
- <comment xml:lang="pt">Makefile</comment>
- <comment xml:lang="pt_BR">Makefile (arquivo do make)</comment>
- <comment xml:lang="ro">Makefile</comment>
- <comment xml:lang="ru">Файл Makefile</comment>
- <comment xml:lang="sk">Makefile</comment>
- <comment xml:lang="sl">Datoteka Makefile</comment>
- <comment xml:lang="sq">Makefile</comment>
- <comment xml:lang="sr">датотека стварања</comment>
- <comment xml:lang="sv">Makefil</comment>
- <comment xml:lang="tr">Makefile</comment>
- <comment xml:lang="uk">файл проекту make</comment>
- <comment xml:lang="vi">Tập tin tạo ứng dụng (Makefile)</comment>
- <comment xml:lang="zh_CN">Makefile</comment>
- <comment xml:lang="zh_TW">Makefile</comment>
+ <comment>Makefile build file</comment>
+ <comment xml:lang="zh_CN">Makefile 构建文件</comment>
+ <comment xml:lang="uk">файл збирання Makefile</comment>
+ <comment xml:lang="tr">Makefile derleme dosyası</comment>
+ <comment xml:lang="sv">Makefile-byggfil</comment>
+ <comment xml:lang="sq">kartelë montimi Makefile</comment>
+ <comment xml:lang="si">Makefile ගොඩනැගීමේ ගොනුව</comment>
+ <comment xml:lang="sk">Súbor zostavenia Makefile</comment>
+ <comment xml:lang="ru">Сборочный файл Makefile</comment>
+ <comment xml:lang="pt_BR">Arquivo de compilação Makefile</comment>
+ <comment xml:lang="pl">Plik budowania Makefile</comment>
+ <comment xml:lang="nl">Makefile-compilatiebestand</comment>
+ <comment xml:lang="ko">Makefile 빌드 파일</comment>
+ <comment xml:lang="kk">Makefile құрастыру файлы</comment>
+ <comment xml:lang="ja">Makefile ビルドファイル</comment>
+ <comment xml:lang="it">File compilazione Makefile</comment>
+ <comment xml:lang="is">Makefile byggingaskrá</comment>
+ <comment xml:lang="id">Berkas build Makefile</comment>
+ <comment xml:lang="hu">Makefile összeállítási fájl</comment>
+ <comment xml:lang="hr">Makefile datoteka izgradnje</comment>
+ <comment xml:lang="he">קובץ בניית Makefile</comment>
+ <comment xml:lang="gl">Ficheiro de construción Makefile</comment>
+ <comment xml:lang="fr">fichier de construction Makefile</comment>
+ <comment xml:lang="fi">Makefile-rakennustiedosto</comment>
+ <comment xml:lang="eu">Makefile build fitxategia</comment>
+ <comment xml:lang="es">archivo de generación Makefile</comment>
+ <comment xml:lang="en_GB">Makefile build file</comment>
+ <comment xml:lang="de">Makefile Build-Datei</comment>
+ <comment xml:lang="da">Makefile build-fil</comment>
+ <comment xml:lang="ca">fitxer de construcció Makefile</comment>
+ <comment xml:lang="bg">Проект — Makefile</comment>
+ <comment xml:lang="be">файл зборкі Makefile</comment>
+ <comment xml:lang="ar">ملف بناء Makefile</comment>
<sub-class-of type="text/plain"/>
<glob pattern="makefile"/>
<glob pattern="GNUmakefile"/>
<glob pattern="*.mk"/>
<glob pattern="*.mak"/>
<glob weight="10" pattern="Makefile.*"/>
- <magic priority="50">
- <match value="#!/usr/bin/make" type="string" offset="0"/>
- <match value="#! /usr/bin/make" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#!/usr/bin/make" offset="0"/>
+ <match type="string" value="#! /usr/bin/make" offset="0"/>
</magic>
</mime-type>
<mime-type type="text/markdown">
<comment>Markdown document</comment>
- <comment xml:lang="ast">Documentu Markdown</comment>
- <comment xml:lang="bg">Документ — Markdown</comment>
- <comment xml:lang="ca">document Markdown</comment>
- <comment xml:lang="cs">dokument Markdown</comment>
- <comment xml:lang="da">Markdown-dokument</comment>
- <comment xml:lang="de">Markdown-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Markdown</comment>
- <comment xml:lang="en_GB">Markdown document</comment>
- <comment xml:lang="es">documento Markdown</comment>
- <comment xml:lang="eu">Markdown dokumentua</comment>
- <comment xml:lang="fi">Markdown-asiakirja</comment>
- <comment xml:lang="fr">document Markdown</comment>
- <comment xml:lang="ga">cáipéis Markdown</comment>
- <comment xml:lang="gl">documento de Markdown</comment>
- <comment xml:lang="he">מסמך Markdown</comment>
- <comment xml:lang="hr">Markdown dokument</comment>
- <comment xml:lang="hu">Markdown dokumentum</comment>
- <comment xml:lang="ia">Documento Markdown</comment>
- <comment xml:lang="id">Dokumen markdown</comment>
- <comment xml:lang="it">Documento Markdown</comment>
- <comment xml:lang="ja">Markdown </comment>
- <comment xml:lang="kk">Markdown құжаты</comment>
- <comment xml:lang="ko">마크다운 문서</comment>
- <comment xml:lang="lv">Markdown dokuments</comment>
- <comment xml:lang="nl">Markdown document</comment>
- <comment xml:lang="oc">document Markdown</comment>
- <comment xml:lang="pl">Dokument Markdown</comment>
- <comment xml:lang="pt">documento Markdown</comment>
- <comment xml:lang="pt_BR">Documento Markdown</comment>
- <comment xml:lang="ru">Документ Markdown</comment>
- <comment xml:lang="sk">Dokument Markdown</comment>
- <comment xml:lang="sl">Dokument Markdown</comment>
- <comment xml:lang="sr">Маркдаун документ</comment>
- <comment xml:lang="sv">Markdown-dokument</comment>
- <comment xml:lang="tr">Markdown belgesi</comment>
- <comment xml:lang="uk">документ Markdown</comment>
- <comment xml:lang="zh_CN">Markdown 文档</comment>
<comment xml:lang="zh_TW">Markdown 文件</comment>
+ <comment xml:lang="zh_CN">Markdown 文档</comment>
+ <comment xml:lang="uk">документ Markdown</comment>
+ <comment xml:lang="tr">Markdown belgesi</comment>
+ <comment xml:lang="sv">Markdown-dokument</comment>
+ <comment xml:lang="sr">Маркдаун документ</comment>
+ <comment xml:lang="sq">dokument Markdown</comment>
+ <comment xml:lang="sl">Dokument Markdown</comment>
+ <comment xml:lang="si">සලකුණු ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Markdown</comment>
+ <comment xml:lang="ru">Документ Markdown</comment>
+ <comment xml:lang="pt_BR">Documento Markdown</comment>
+ <comment xml:lang="pt">documento Markdown</comment>
+ <comment xml:lang="pl">Dokument Markdown</comment>
+ <comment xml:lang="oc">document Markdown</comment>
+ <comment xml:lang="nl">Markdown-document</comment>
+ <comment xml:lang="lv">Markdown dokuments</comment>
+ <comment xml:lang="ko">마크다운 문서</comment>
+ <comment xml:lang="kk">Markdown құжаты</comment>
+ <comment xml:lang="ja">Markdown </comment>
+ <comment xml:lang="it">Documento Markdown</comment>
+ <comment xml:lang="is">Markdown skjal</comment>
+ <comment xml:lang="id">Dokumen markdown</comment>
+ <comment xml:lang="ia">Documento Markdown</comment>
+ <comment xml:lang="hu">Markdown dokumentum</comment>
+ <comment xml:lang="hr">Markdown dokument</comment>
+ <comment xml:lang="he">מסמך Markdown</comment>
+ <comment xml:lang="gl">documento de Markdown</comment>
+ <comment xml:lang="ga">cáipéis Markdown</comment>
+ <comment xml:lang="fur">document Markdown</comment>
+ <comment xml:lang="fr">document Markdown</comment>
+ <comment xml:lang="fi">Markdown-asiakirja</comment>
+ <comment xml:lang="eu">Markdown dokumentua</comment>
+ <comment xml:lang="es">documento Markdown</comment>
+ <comment xml:lang="en_GB">Markdown document</comment>
+ <comment xml:lang="el">Έγγραφο Markdown</comment>
+ <comment xml:lang="de">Markdown-Dokument</comment>
+ <comment xml:lang="da">Markdown-dokument</comment>
+ <comment xml:lang="cs">dokument Markdown</comment>
+ <comment xml:lang="ca">document Markdown</comment>
+ <comment xml:lang="bg">Документ — Markdown</comment>
+ <comment xml:lang="be">дакумент Markdown</comment>
+ <comment xml:lang="ast">Documentu Markdown</comment>
+ <comment xml:lang="ar">مستند مارك داون</comment>
+ <comment xml:lang="af">Markdown-dokument</comment>
<sub-class-of type="text/plain"/>
+ <generic-icon name="x-office-document"/>
<glob pattern="*.md"/>
<glob pattern="*.mkd"/>
<glob pattern="*.markdown"/>
@@ -35064,52 +37092,56 @@
</mime-type>
<mime-type type="text/x-moc">
<comment>Qt MOC file</comment>
- <comment xml:lang="ar">ملف Qt MOC</comment>
- <comment xml:lang="be@latin">Fajł Qt MOC</comment>
- <comment xml:lang="bg">Файл — Qt MOC</comment>
- <comment xml:lang="ca">fitxer MOC de Qt</comment>
- <comment xml:lang="cs">soubor Qt MOC</comment>
- <comment xml:lang="da">Qt MOC-fil</comment>
- <comment xml:lang="de">Qt-MOC-Datei</comment>
- <comment xml:lang="el">Αρχείο Qt MOC</comment>
- <comment xml:lang="en_GB">Qt MOC file</comment>
- <comment xml:lang="es">archivo MOC Qt</comment>
- <comment xml:lang="eu">Qt MOC fitxategia</comment>
- <comment xml:lang="fi">Qt MOC -tiedosto</comment>
- <comment xml:lang="fo">Qt MOC fíla</comment>
- <comment xml:lang="fr">fichier Qt MOC</comment>
- <comment xml:lang="ga">comhad MOC Qt</comment>
- <comment xml:lang="gl">ficheiro MOC Qt</comment>
- <comment xml:lang="he">קובץ Qt MOC</comment>
- <comment xml:lang="hr">Qt MOC datoteka</comment>
- <comment xml:lang="hu">Qt MOC fájl</comment>
- <comment xml:lang="ia">File Qt MOC</comment>
- <comment xml:lang="id">Berkas Qt MOC</comment>
- <comment xml:lang="it">File MOC Qt</comment>
- <comment xml:lang="ja">Qt MOC ファイル</comment>
- <comment xml:lang="kk">Qt MOC файлы</comment>
- <comment xml:lang="ko">Qt MOC 파일</comment>
- <comment xml:lang="lt">Qt MOC failas</comment>
- <comment xml:lang="lv">Qt MOC datne</comment>
- <comment xml:lang="nb">Qt MOC-fil</comment>
- <comment xml:lang="nl">Qt MOC-bestand</comment>
- <comment xml:lang="nn">Qt MOC-fil</comment>
- <comment xml:lang="oc">fichièr Qt MOC</comment>
- <comment xml:lang="pl">Plik Qt MOC</comment>
- <comment xml:lang="pt">ficheiro Qt MOC</comment>
- <comment xml:lang="pt_BR">Arquivo Qt MOC</comment>
- <comment xml:lang="ro">Fișier Qt MOC</comment>
- <comment xml:lang="ru">Файл Qt MOC</comment>
- <comment xml:lang="sk">Súbor Qt MOC</comment>
- <comment xml:lang="sl">Datoteka Qt MOC</comment>
- <comment xml:lang="sq">File Qt MOC</comment>
- <comment xml:lang="sr">Кут МОЦ датотека</comment>
- <comment xml:lang="sv">Qt MOC-fil</comment>
- <comment xml:lang="tr">Qt MOC dosyası</comment>
- <comment xml:lang="uk">файл-метаоб'єкт Qt</comment>
- <comment xml:lang="vi">Tập tin MOC của Qt</comment>
- <comment xml:lang="zh_CN">Qt 元对象编译器文件</comment>
<comment xml:lang="zh_TW">Qt MOC 檔</comment>
+ <comment xml:lang="zh_CN">Qt 元对象编译器文件</comment>
+ <comment xml:lang="vi">Tập tin MOC của Qt</comment>
+ <comment xml:lang="uk">файл-метаоб'єкт Qt</comment>
+ <comment xml:lang="tr">Qt MOC dosyası</comment>
+ <comment xml:lang="sv">Qt MOC-fil</comment>
+ <comment xml:lang="sr">Кут МОЦ датотека</comment>
+ <comment xml:lang="sq">kartelë Qt MOC</comment>
+ <comment xml:lang="sl">Datoteka Qt MOC</comment>
+ <comment xml:lang="si">Qt MOC ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Qt MOC</comment>
+ <comment xml:lang="ru">Файл Qt MOC</comment>
+ <comment xml:lang="ro">Fișier Qt MOC</comment>
+ <comment xml:lang="pt_BR">Arquivo Qt MOC</comment>
+ <comment xml:lang="pt">ficheiro Qt MOC</comment>
+ <comment xml:lang="pl">Plik Qt MOC</comment>
+ <comment xml:lang="oc">fichièr Qt MOC</comment>
+ <comment xml:lang="nn">Qt MOC-fil</comment>
+ <comment xml:lang="nl">Qt MOC-bestand</comment>
+ <comment xml:lang="nb">Qt MOC-fil</comment>
+ <comment xml:lang="lv">Qt MOC datne</comment>
+ <comment xml:lang="lt">Qt MOC failas</comment>
+ <comment xml:lang="ko">Qt MOC 파일</comment>
+ <comment xml:lang="kk">Qt MOC файлы</comment>
+ <comment xml:lang="ja">Qt MOC ファイル</comment>
+ <comment xml:lang="it">File MOC Qt</comment>
+ <comment xml:lang="is">Qt MOC-skrá</comment>
+ <comment xml:lang="id">Berkas Qt MOC</comment>
+ <comment xml:lang="ia">File Qt MOC</comment>
+ <comment xml:lang="hu">Qt MOC fájl</comment>
+ <comment xml:lang="hr">Qt MOC datoteka</comment>
+ <comment xml:lang="he">קובץ Qt MOC</comment>
+ <comment xml:lang="gl">ficheiro MOC Qt</comment>
+ <comment xml:lang="ga">comhad MOC Qt</comment>
+ <comment xml:lang="fur">file Qt MOC</comment>
+ <comment xml:lang="fr">fichier Qt MOC</comment>
+ <comment xml:lang="fo">Qt MOC fíla</comment>
+ <comment xml:lang="fi">Qt MOC -tiedosto</comment>
+ <comment xml:lang="eu">Qt MOC fitxategia</comment>
+ <comment xml:lang="es">archivo MOC Qt</comment>
+ <comment xml:lang="en_GB">Qt MOC file</comment>
+ <comment xml:lang="el">Αρχείο Qt MOC</comment>
+ <comment xml:lang="de">Qt-MOC-Datei</comment>
+ <comment xml:lang="da">Qt MOC-fil</comment>
+ <comment xml:lang="cs">soubor Qt MOC</comment>
+ <comment xml:lang="ca">fitxer MOC de Qt</comment>
+ <comment xml:lang="bg">Файл — Qt MOC</comment>
+ <comment xml:lang="be@latin">Fajł Qt MOC</comment>
+ <comment xml:lang="be">файл Qt MOC</comment>
+ <comment xml:lang="ar">ملف Qt MOC</comment>
<acronym>Qt MOC</acronym>
<expanded-acronym>Qt Meta Object Compiler</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -35117,653 +37149,751 @@
</mime-type>
<mime-type type="text/x-ms-regedit">
<comment>Windows Registry extract</comment>
- <comment xml:lang="ar">استخراج مسجل ويندوز</comment>
- <comment xml:lang="be@latin">Element rehistru Windows</comment>
- <comment xml:lang="bg">Извадка от регистъра на Windows</comment>
- <comment xml:lang="ca">extracte de Windows Registry</comment>
- <comment xml:lang="cs">výtah registru Windows</comment>
- <comment xml:lang="da">Windows Registy-udtrækning</comment>
- <comment xml:lang="de">Windows-Registry-Auszug</comment>
- <comment xml:lang="el">Αποσυμπίεση Windows Registry</comment>
- <comment xml:lang="en_GB">Windows Registry extract</comment>
- <comment xml:lang="es">extracto del registro de Windows</comment>
- <comment xml:lang="eu">Windows-eko erregistro erauzlea</comment>
- <comment xml:lang="fi">Windows-rekisteritietue</comment>
- <comment xml:lang="fo">Windows Registry úrdráttur</comment>
- <comment xml:lang="fr">extrait de registre Windows</comment>
- <comment xml:lang="ga">sliocht as Clárlann Windows</comment>
- <comment xml:lang="gl">Extracto do rexistro de Windows</comment>
- <comment xml:lang="he">קובץ רשומות מערכת של Windows</comment>
- <comment xml:lang="hr">Izdvojeni Windows registar</comment>
- <comment xml:lang="hu">Windows Registry kivonat</comment>
- <comment xml:lang="ia">Extracto de registro de systema Windows</comment>
- <comment xml:lang="id">Ekstrak Windows Registry</comment>
- <comment xml:lang="it">Estratto Windows Registry</comment>
- <comment xml:lang="ja">WIndows レジストリ抽出ファイル</comment>
- <comment xml:lang="kk">Windows Registry бөлігі</comment>
- <comment xml:lang="ko">Windows 레지스트리 파일</comment>
- <comment xml:lang="lt">Windows registro ištrauka</comment>
- <comment xml:lang="lv">Windows Registry izvilkums</comment>
- <comment xml:lang="nb">Utdrag av Windows Registry</comment>
- <comment xml:lang="nl">Windows Registry-extract</comment>
- <comment xml:lang="nn">Windows Registry-utdrag</comment>
- <comment xml:lang="oc">extrait de registre Windows</comment>
- <comment xml:lang="pl">Wycinek rejestru Windows</comment>
- <comment xml:lang="pt">extrato do registo do Windows</comment>
- <comment xml:lang="pt_BR">Extrator de registro do Windows</comment>
- <comment xml:lang="ro">Extras al registrului Windows</comment>
- <comment xml:lang="ru">Фрагмент Windows Registry</comment>
- <comment xml:lang="sk">Časť registrov Windows</comment>
- <comment xml:lang="sl">izvleček vpisnika Windows</comment>
- <comment xml:lang="sq">Pjesë Windows Registry</comment>
- <comment xml:lang="sr">исцедак Виндоузовог регистра</comment>
- <comment xml:lang="sv">Windows Registry-utdrag</comment>
- <comment xml:lang="tr">Windows Kayıt Defteri özü</comment>
- <comment xml:lang="uk">частина реєстру Windows</comment>
- <comment xml:lang="vi">Bản trích Registry Windows</comment>
- <comment xml:lang="zh_CN">Windows 注册表提取</comment>
<comment xml:lang="zh_TW">Windows Registry 抽出</comment>
+ <comment xml:lang="zh_CN">Windows 注册表提取</comment>
+ <comment xml:lang="vi">Bản trích Registry Windows</comment>
+ <comment xml:lang="uk">частина реєстру Windows</comment>
+ <comment xml:lang="tr">Windows Kayıt Defteri özü</comment>
+ <comment xml:lang="sv">Windows Registry-utdrag</comment>
+ <comment xml:lang="sr">исцедак Виндоузовог регистра</comment>
+ <comment xml:lang="sq">copëz Windows Registry</comment>
+ <comment xml:lang="sl">izvleček vpisnika Windows</comment>
+ <comment xml:lang="si">වින්ඩෝස් රෙජිස්ට්රි උපුටා ගැනීම</comment>
+ <comment xml:lang="sk">Časť registrov Windows</comment>
+ <comment xml:lang="ru">Фрагмент Windows Registry</comment>
+ <comment xml:lang="ro">Extras al registrului Windows</comment>
+ <comment xml:lang="pt_BR">Extrator de registro do Windows</comment>
+ <comment xml:lang="pt">extrato do registo do Windows</comment>
+ <comment xml:lang="pl">Wycinek rejestru Windows</comment>
+ <comment xml:lang="oc">extrait de registre Windows</comment>
+ <comment xml:lang="nn">Windows Registry-utdrag</comment>
+ <comment xml:lang="nl">Windows Registry-extract</comment>
+ <comment xml:lang="nb">Utdrag av Windows Registry</comment>
+ <comment xml:lang="lv">Windows Registry izvilkums</comment>
+ <comment xml:lang="lt">Windows registro ištrauka</comment>
+ <comment xml:lang="ko">Windows 레지스트리 파일</comment>
+ <comment xml:lang="kk">Windows Registry бөлігі</comment>
+ <comment xml:lang="ja">WIndows レジストリ抽出ファイル</comment>
+ <comment xml:lang="it">Estratto Windows Registry</comment>
+ <comment xml:lang="is">Windows Registry útdráttur</comment>
+ <comment xml:lang="id">Ekstrak Windows Registry</comment>
+ <comment xml:lang="ia">Extracto de registro de systema Windows</comment>
+ <comment xml:lang="hu">Windows Registry kivonat</comment>
+ <comment xml:lang="hr">Izdvojeni Windows registar</comment>
+ <comment xml:lang="he">קובץ רשומות מערכת של Windows</comment>
+ <comment xml:lang="gl">Extracto do rexistro de Windows</comment>
+ <comment xml:lang="ga">sliocht as Clárlann Windows</comment>
+ <comment xml:lang="fur">estrat dal regjistri di Windows</comment>
+ <comment xml:lang="fr">extrait de registre Windows</comment>
+ <comment xml:lang="fo">Windows Registry úrdráttur</comment>
+ <comment xml:lang="fi">Windows-rekisteritietue</comment>
+ <comment xml:lang="eu">Windows-eko erregistro erauzlea</comment>
+ <comment xml:lang="es">extracto del registro de Windows</comment>
+ <comment xml:lang="en_GB">Windows Registry extract</comment>
+ <comment xml:lang="el">Αποσυμπίεση Windows Registry</comment>
+ <comment xml:lang="de">Windows-Registry-Auszug</comment>
+ <comment xml:lang="da">Windows registreringsdatabase-udtrækning</comment>
+ <comment xml:lang="cs">výtah registru Windows</comment>
+ <comment xml:lang="ca">extracte de Windows Registry</comment>
+ <comment xml:lang="bg">Извадка от регистъра на Windows</comment>
+ <comment xml:lang="be@latin">Element rehistru Windows</comment>
+ <comment xml:lang="be">элемент рэгістру Windows</comment>
+ <comment xml:lang="ar">استخراج مسجل ويندوز</comment>
+ <comment xml:lang="af">Windows-registerlêeruittreksel</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="REGEDIT" type="string" offset="0"/>
- <match value="Windows Registry Editor Version 5.00" type="string" offset="0"/>
- <match value="\xff\xfeW\x00i\x00n\x00d\x00o\x00w\x00s\x00 \x00R\x00e\x00g\x00i\x00s\x00t\x00r\x00y\x00 \x00E\x00d\x00i\x00t\x00o\x00r\x00" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="REGEDIT" offset="0"/>
+ <match type="string" value="Windows Registry Editor Version 5.00" offset="0"/>
+ <match type="string" value="\xff\xfeW\x00i\x00n\x00d\x00o\x00w\x00s\x00 \x00R\x00e\x00g\x00i\x00s\x00t\x00r\x00y\x00 \x00E\x00d\x00i\x00t\x00o\x00r\x00" offset="0"/>
</magic>
<glob pattern="*.reg"/>
</mime-type>
<mime-type type="text/x-mof">
- <comment>Managed Object Format</comment>
- <comment xml:lang="ar">صيغة كائن مدار</comment>
- <comment xml:lang="be@latin">Farmat Managed Object</comment>
- <comment xml:lang="bg">Управлявани обекти — MOF</comment>
- <comment xml:lang="ca">format d'objecte gestionat</comment>
- <comment xml:lang="cs">Managed Object Format</comment>
- <comment xml:lang="da">Håndteret objektformat</comment>
- <comment xml:lang="de">Managed Object Format</comment>
- <comment xml:lang="el">Μορφή διαχειριζόμενου αντικειμένου</comment>
- <comment xml:lang="en_GB">Managed Object Format</comment>
- <comment xml:lang="es">formato de objeto gestionado</comment>
- <comment xml:lang="eu">Kudeatutako objektu formatua</comment>
- <comment xml:lang="fi">Managed Object Format</comment>
- <comment xml:lang="fr">format Managed Object</comment>
- <comment xml:lang="ga">formáid réada bainistithe</comment>
- <comment xml:lang="gl">formato de obxecto xestionado</comment>
- <comment xml:lang="he">תבנית פריט מנוהל</comment>
- <comment xml:lang="hr">Managed Object Format</comment>
- <comment xml:lang="hu">Felügyelt objektum (MO) formátum</comment>
- <comment xml:lang="ia">File in formato Managed Object</comment>
- <comment xml:lang="id">Managed Object Format</comment>
- <comment xml:lang="it">Managed Object Format</comment>
- <comment xml:lang="ja">管理オブジェクトフォーマット</comment>
- <comment xml:lang="kk">Басқарылатын объект пішімі</comment>
- <comment xml:lang="ko">관리되는 객체 형식</comment>
- <comment xml:lang="lt">Sutvarkytų objektų formatas</comment>
- <comment xml:lang="lv">Pārvaldītu objektu formāts</comment>
- <comment xml:lang="nb">Managed Object Format</comment>
- <comment xml:lang="nl">Managed Object Format</comment>
- <comment xml:lang="nn">Managed Object Format</comment>
- <comment xml:lang="oc">format Managed Object</comment>
- <comment xml:lang="pl">Plik Managed Object Format</comment>
- <comment xml:lang="pt">formato Managed Object</comment>
- <comment xml:lang="pt_BR">Formato de objeto gerenciado</comment>
- <comment xml:lang="ro">Managed Object Format</comment>
- <comment xml:lang="ru">Формат управляемого объекта</comment>
- <comment xml:lang="sk">Formát Managed Object</comment>
- <comment xml:lang="sl">Datoteka Managed Object</comment>
- <comment xml:lang="sq">Managed Object Format</comment>
- <comment xml:lang="sr">запис управљаног објекта</comment>
- <comment xml:lang="sv">Managed Object Format</comment>
- <comment xml:lang="tr">Yönetilen Nesne Biçimi</comment>
- <comment xml:lang="uk">формат керування об’єктами</comment>
- <comment xml:lang="vi">Định dạng Đối tượng đã Quản lý</comment>
- <comment xml:lang="zh_CN">托管对象格式</comment>
- <comment xml:lang="zh_TW">Managed Object Format</comment>
+ <comment>MOF file</comment>
+ <comment xml:lang="zh_TW">MOF 檔</comment>
+ <comment xml:lang="zh_CN">MOF 文件</comment>
+ <comment xml:lang="uk">файл MOF</comment>
+ <comment xml:lang="tr">MOF dosyası</comment>
+ <comment xml:lang="sv">MOF-fil</comment>
+ <comment xml:lang="sq">kartelë MOF</comment>
+ <comment xml:lang="sl">Datoteka MOF</comment>
+ <comment xml:lang="si">MOF ගොනුව</comment>
+ <comment xml:lang="sk">Súbor MOF</comment>
+ <comment xml:lang="ru">Файл MOF</comment>
+ <comment xml:lang="pt_BR">Arquivo MOF</comment>
+ <comment xml:lang="pl">Plik MOF</comment>
+ <comment xml:lang="oc">fichièr MOF</comment>
+ <comment xml:lang="nl">MOF-bestand</comment>
+ <comment xml:lang="ko">MOF 파일</comment>
+ <comment xml:lang="kk">MOF файлы</comment>
+ <comment xml:lang="ja">MOF ファイル</comment>
+ <comment xml:lang="it">File MOF</comment>
+ <comment xml:lang="is">MOF-skrá</comment>
+ <comment xml:lang="id">Berkas MOF</comment>
+ <comment xml:lang="hu">MOF fájl</comment>
+ <comment xml:lang="hr">MOF datoteka</comment>
+ <comment xml:lang="he">קובץ MOF</comment>
+ <comment xml:lang="gl">Ficheiro MOF</comment>
+ <comment xml:lang="fr">fichier MOF</comment>
+ <comment xml:lang="fi">MOF-tiedosto</comment>
+ <comment xml:lang="eu">MOF fitxategia</comment>
+ <comment xml:lang="es">archivo MOF</comment>
+ <comment xml:lang="en_GB">MOF file</comment>
+ <comment xml:lang="de">MOF-Datei</comment>
+ <comment xml:lang="da">MOF-fil</comment>
+ <comment xml:lang="ca">fitxer MOF</comment>
+ <comment xml:lang="bg">Модел — MOF</comment>
+ <comment xml:lang="be">файл MOF</comment>
+ <comment xml:lang="ar">ملف MOF</comment>
+ <acronym>MOF</acronym>
+ <expanded-acronym>Windows Managed Object File</expanded-acronym>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.mof"/>
</mime-type>
<mime-type type="text/x-mup">
- <comment>Mup publication</comment>
- <comment xml:lang="ar">منشور Mup</comment>
- <comment xml:lang="be@latin">Publikacyja Mup</comment>
- <comment xml:lang="bg">Издание — Mup</comment>
- <comment xml:lang="ca">publicació Mup</comment>
- <comment xml:lang="cs">publikace Mup</comment>
- <comment xml:lang="da">Mupudgivelse</comment>
- <comment xml:lang="de">Mup-Veröffentlichung</comment>
- <comment xml:lang="el">Δημοσίευση Mup</comment>
- <comment xml:lang="en_GB">Mup publication</comment>
- <comment xml:lang="es">publicación Mup</comment>
- <comment xml:lang="eu">Mup publikazioa</comment>
- <comment xml:lang="fi">Mup-julkaisu</comment>
- <comment xml:lang="fo">Mup útgáva</comment>
- <comment xml:lang="fr">publication Mup</comment>
- <comment xml:lang="ga">foilseachán Mup</comment>
- <comment xml:lang="gl">publicación Mup</comment>
- <comment xml:lang="he">פרסום של Mup</comment>
- <comment xml:lang="hr">Mup publikacija</comment>
- <comment xml:lang="hu">Mup publikáció</comment>
- <comment xml:lang="ia">Publication Mup</comment>
- <comment xml:lang="id">Publikasi Mup</comment>
- <comment xml:lang="it">Pubblicazione Mup</comment>
- <comment xml:lang="ja">Mup 出版ファイル</comment>
- <comment xml:lang="kk">Mup жариялымы</comment>
- <comment xml:lang="ko">Mup 출판물</comment>
- <comment xml:lang="lt">Mup leidinys</comment>
- <comment xml:lang="lv">Mup publikācija</comment>
- <comment xml:lang="nb">Mup publikasjon</comment>
- <comment xml:lang="nl">Mup-publicatie</comment>
- <comment xml:lang="nn">Mup-publikasjon</comment>
- <comment xml:lang="oc">publication Mup</comment>
- <comment xml:lang="pl">Publikacja Mup</comment>
- <comment xml:lang="pt">publicação Mup</comment>
- <comment xml:lang="pt_BR">Publicação do Mup</comment>
- <comment xml:lang="ro">Publicație Mup</comment>
- <comment xml:lang="ru">Публикация Mup</comment>
- <comment xml:lang="sk">Publikácie Mup</comment>
- <comment xml:lang="sl">Datoteka objave Mup</comment>
- <comment xml:lang="sq">Publikim Mup</comment>
- <comment xml:lang="sr">Муп објава</comment>
- <comment xml:lang="sv">Mup-publicering</comment>
- <comment xml:lang="tr">Mup uygulaması</comment>
- <comment xml:lang="uk">публікація Mup</comment>
- <comment xml:lang="vi">Bản xuất Mup</comment>
- <comment xml:lang="zh_CN">Mup 应用程序</comment>
- <comment xml:lang="zh_TW">Mup 出版品</comment>
+ <comment>Mup musical composition document</comment>
+ <comment xml:lang="zh_TW">Mup 音樂組合文件</comment>
+ <comment xml:lang="zh_CN">Mup 乐曲文档</comment>
+ <comment xml:lang="uk">документ музичного запису твору Mup</comment>
+ <comment xml:lang="tr">Mup musical composition belgesi</comment>
+ <comment xml:lang="sv">Mup musikkompositionsdokument</comment>
+ <comment xml:lang="sq">dokument kompozimi muzikor Mup</comment>
+ <comment xml:lang="si">Mup සංගීත සංයුතිය ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument hudobnej kompozície Mup</comment>
+ <comment xml:lang="ru">Документ Mup musical composition</comment>
+ <comment xml:lang="pt_BR">Documento de composição musical Mup</comment>
+ <comment xml:lang="pl">Dokument kompozycji muzycznej Mup</comment>
+ <comment xml:lang="nl">Mup-muzikaal-compositie­document</comment>
+ <comment xml:lang="ko">mup 작곡 문서</comment>
+ <comment xml:lang="kk">Mup музыкалық композиция құжаты</comment>
+ <comment xml:lang="ja">Mup 作曲ドキュメント</comment>
+ <comment xml:lang="it">Documento composizione musicale Mup</comment>
+ <comment xml:lang="is">MUP-nótnaskjal</comment>
+ <comment xml:lang="id">Dokumen komposisi musik Mup</comment>
+ <comment xml:lang="hu">Mup zenei kompozíciós dokumentum</comment>
+ <comment xml:lang="hr">Mup dokument glazbene kompozicije</comment>
+ <comment xml:lang="he">מסמך קומפוזיציה מוזיקלית מסוג Mup</comment>
+ <comment xml:lang="gl">Documento de composición musical MUP</comment>
+ <comment xml:lang="fr">document de composition musicale Mup</comment>
+ <comment xml:lang="fi">Mup-sävellysdokumentti</comment>
+ <comment xml:lang="eu">Mup konposizio musikal dokumentua</comment>
+ <comment xml:lang="es">documento de composición musical de Mup</comment>
+ <comment xml:lang="en_GB">Mup musical composition document</comment>
+ <comment xml:lang="de">Mup-Musikkompositions-Dokument</comment>
+ <comment xml:lang="da">Mup-musiksamling-dokument</comment>
+ <comment xml:lang="ca">document de composició musical Mup</comment>
+ <comment xml:lang="bg">Музикална композиция — Mup</comment>
+ <comment xml:lang="be">дакумент музычнай кампазіцыі Mup</comment>
+ <comment xml:lang="ar">وثيقة تأليف موسيقي Mup </comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="//!Mup" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="//!Mup" offset="0"/>
</magic>
<glob pattern="*.mup"/>
<glob pattern="*.not"/>
</mime-type>
<mime-type type="text/x-objcsrc">
<comment>Objective-C source code</comment>
- <comment xml:lang="ar">شفرة مصدر الهدف-C </comment>
- <comment xml:lang="be@latin">Kryničny kod Objective-C</comment>
- <comment xml:lang="bg">Изходен код — Objective C</comment>
- <comment xml:lang="ca">codi font en Objective-C</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Objective-C</comment>
- <comment xml:lang="da">Objektiv C-kildekode</comment>
- <comment xml:lang="de">Objective-C-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Objective-C</comment>
- <comment xml:lang="en_GB">Objective-C source code</comment>
- <comment xml:lang="eo">fontkodo en Objective-C</comment>
- <comment xml:lang="es">código fuente en Objective-C</comment>
- <comment xml:lang="eu">Objective-C iturburu-kodea</comment>
- <comment xml:lang="fi">Objective-C-lähdekoodi</comment>
- <comment xml:lang="fo">Objective-C keldukota</comment>
- <comment xml:lang="fr">code source Objective-C</comment>
- <comment xml:lang="ga">cód foinseach Objective-C</comment>
- <comment xml:lang="gl">código fonte de Objective-C</comment>
- <comment xml:lang="he">קוד מקור של Objective-C</comment>
- <comment xml:lang="hr">Objective-C izvorni kôd</comment>
- <comment xml:lang="hu">Objective-C forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Objective-C</comment>
- <comment xml:lang="id">Kode sumber Objective-C</comment>
- <comment xml:lang="it">Codice sorgente Objective-C</comment>
- <comment xml:lang="ja">Objective-C ソースコード</comment>
- <comment xml:lang="ka">Objective-C-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Objective-C бастапқы коды</comment>
- <comment xml:lang="ko">Objective-C 소스 코드</comment>
- <comment xml:lang="lt">Objective-C pradinis kodas</comment>
- <comment xml:lang="lv">Objective-C pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Objective-C</comment>
- <comment xml:lang="nb">Objective-C-kildekode</comment>
- <comment xml:lang="nl">Objective-C-broncode</comment>
- <comment xml:lang="nn">Objective-C-kjeldekode</comment>
- <comment xml:lang="oc">còde font Objective-C</comment>
- <comment xml:lang="pl">Kod źródłowy Objective-C</comment>
- <comment xml:lang="pt">código origem Objective-C</comment>
- <comment xml:lang="pt_BR">Código-fonte Objective-C</comment>
- <comment xml:lang="ro">Cod sursă Objective-C</comment>
- <comment xml:lang="ru">Исходный код Objective-C</comment>
- <comment xml:lang="sk">Zdrojový kód Objective-C</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Objective-C</comment>
- <comment xml:lang="sq">Kod burues C objekt</comment>
- <comment xml:lang="sr">Објектни-Ц изворни ко̂д</comment>
- <comment xml:lang="sv">Objective-C-källkod</comment>
- <comment xml:lang="tr">Objective-C kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Objective-C</comment>
- <comment xml:lang="vi">Mã nguồn Objective-C</comment>
- <comment xml:lang="zh_CN">Objective-C 源代码</comment>
<comment xml:lang="zh_TW">Objective-C 源碼</comment>
+ <comment xml:lang="zh_CN">Objective-C 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Objective-C</comment>
+ <comment xml:lang="uk">початковий код мовою Objective-C</comment>
+ <comment xml:lang="tr">Objective-C kaynak kodu</comment>
+ <comment xml:lang="sv">Objective-C-källkod</comment>
+ <comment xml:lang="sr">Објектни-Ц изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Objective-C</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Objective-C</comment>
+ <comment xml:lang="si">Objective-C මූලාශ්‍ර කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Objective-C</comment>
+ <comment xml:lang="ru">Исходный код Objective-C</comment>
+ <comment xml:lang="ro">Cod sursă Objective-C</comment>
+ <comment xml:lang="pt_BR">Código-fonte Objective-C</comment>
+ <comment xml:lang="pt">código origem Objective-C</comment>
+ <comment xml:lang="pl">Kod źródłowy Objective-C</comment>
+ <comment xml:lang="oc">còde font Objective-C</comment>
+ <comment xml:lang="nn">Objective-C-kjeldekode</comment>
+ <comment xml:lang="nl">Objective-C-broncode</comment>
+ <comment xml:lang="nb">Objective-C-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Objective-C</comment>
+ <comment xml:lang="lv">Objective-C pirmkods</comment>
+ <comment xml:lang="lt">Objective-C pradinis kodas</comment>
+ <comment xml:lang="ko">Objective-C 소스 코드</comment>
+ <comment xml:lang="kk">Objective-C бастапқы коды</comment>
+ <comment xml:lang="ka">Objective-C-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Objective-C ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Objective-C</comment>
+ <comment xml:lang="is">Objective-C frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Objective-C</comment>
+ <comment xml:lang="ia">Codice-fonte Objective-C</comment>
+ <comment xml:lang="hu">Objective-C forráskód</comment>
+ <comment xml:lang="hr">Objective-C izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Objective-C</comment>
+ <comment xml:lang="gl">código fonte de Objective-C</comment>
+ <comment xml:lang="ga">cód foinseach Objective-C</comment>
+ <comment xml:lang="fur">codiç sorzint Objective-C</comment>
+ <comment xml:lang="fr">code source Objective-C</comment>
+ <comment xml:lang="fo">Objective-C keldukota</comment>
+ <comment xml:lang="fi">Objective-C-lähdekoodi</comment>
+ <comment xml:lang="eu">Objective-C iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Objective-C</comment>
+ <comment xml:lang="eo">fontkodo en Objective-C</comment>
+ <comment xml:lang="en_GB">Objective-C source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Objective-C</comment>
+ <comment xml:lang="de">Objective-C-Quelltext</comment>
+ <comment xml:lang="da">Objektiv C-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Objective-C</comment>
+ <comment xml:lang="ca">codi font en Objective-C</comment>
+ <comment xml:lang="bg">Изходен код — Objective C</comment>
+ <comment xml:lang="be@latin">Kryničny kod Objective-C</comment>
+ <comment xml:lang="be">зыходны код Objective-C</comment>
+ <comment xml:lang="ar">شفرة مصدر Objective-C</comment>
+ <comment xml:lang="af">Objective-C-bronkode</comment>
<sub-class-of type="text/x-csrc"/>
<magic priority="30">
- <match value="#import" type="string" offset="0"/>
+ <match type="string" value="#import" offset="0"/>
</magic>
<glob pattern="*.m"/>
</mime-type>
+ <mime-type type="text/x-objc++src">
+ <comment>Objective-C++ source code</comment>
+ <comment xml:lang="zh_TW">Objective-C++ 原始碼</comment>
+ <comment xml:lang="zh_CN">Objective-C++ 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Objective-C++</comment>
+ <comment xml:lang="tr">Objective-C++ kaynak kodu</comment>
+ <comment xml:lang="sv">Objective-C++-källkod</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Objective-C++</comment>
+ <comment xml:lang="si">අරමුණ-C++ මූල කේතය</comment>
+ <comment xml:lang="ru">Исходный код Objective-C++</comment>
+ <comment xml:lang="pt_BR">Código-fonte Objective-C++</comment>
+ <comment xml:lang="pl">Kod źródłowy Objective-C++</comment>
+ <comment xml:lang="nl">Objective-C++-broncode</comment>
+ <comment xml:lang="ko">Objective-C++ 소스 코드</comment>
+ <comment xml:lang="kk">Objective-C++ бастапқы коды</comment>
+ <comment xml:lang="ja">Objective-C++ ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Objective-C++</comment>
+ <comment xml:lang="hr">Objective-C++ izvorni kôd</comment>
+ <comment xml:lang="gl">Código fonte de Objective-C++</comment>
+ <comment xml:lang="fi">Objective-C++ lähdekoodi</comment>
+ <comment xml:lang="eu">Objective-C++ iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Objective-C++</comment>
+ <comment xml:lang="en_GB">Objective-C++ source code</comment>
+ <comment xml:lang="de">Objective-C++-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Objective-C++</comment>
+ <comment xml:lang="ar">شفرة مصدر Objective-سي++</comment>
+ <sub-class-of type="text/x-c++src"/>
+ <sub-class-of type="text/x-objcsrc"/>
+ <glob pattern="*.mm"/>
+ </mime-type>
<mime-type type="text/x-ocaml">
<comment>OCaml source code</comment>
- <comment xml:lang="ar">شفرة مصدر OCaml</comment>
- <comment xml:lang="be@latin">Kryničny kod OCaml</comment>
- <comment xml:lang="bg">Изходен код — OCaml</comment>
- <comment xml:lang="ca">codi font en OCaml</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce OCaml</comment>
- <comment xml:lang="da">OCaml-kildekode</comment>
- <comment xml:lang="de">OCaml-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας OCaml</comment>
- <comment xml:lang="en_GB">OCaml source code</comment>
- <comment xml:lang="eo">OCaml-fontkodo</comment>
- <comment xml:lang="es">código fuente en OCaml</comment>
- <comment xml:lang="eu">OCaml iturburu-kodea</comment>
- <comment xml:lang="fi">OCaml-lähdekoodi</comment>
- <comment xml:lang="fo">OCaml keldukota</comment>
- <comment xml:lang="fr">code source OCaml</comment>
- <comment xml:lang="ga">cód foinseach OCaml</comment>
- <comment xml:lang="gl">código fonte de OCaml</comment>
- <comment xml:lang="he">קוד מקור של OCaml</comment>
- <comment xml:lang="hr">OCaml izvorni kôd</comment>
- <comment xml:lang="hu">OCaml forráskód</comment>
- <comment xml:lang="ia">Codice-fonte OCaml</comment>
- <comment xml:lang="id">Kode sumber OCaml</comment>
- <comment xml:lang="it">Codice sorgente OCaml</comment>
- <comment xml:lang="ja">OCaml ソースコード</comment>
- <comment xml:lang="kk">OCaml бастапқы коды</comment>
- <comment xml:lang="ko">OCaml 소스 코드</comment>
- <comment xml:lang="lt">OCaml pradinis kodas</comment>
- <comment xml:lang="lv">OCaml pirmkods</comment>
- <comment xml:lang="nb">OCaml-kildekode</comment>
- <comment xml:lang="nl">OCaml-broncode</comment>
- <comment xml:lang="nn">OCaml-kjeldekode</comment>
- <comment xml:lang="oc">còde font OCaml</comment>
- <comment xml:lang="pl">Kod źródłowy OCaml</comment>
- <comment xml:lang="pt">código origem OCaml</comment>
- <comment xml:lang="pt_BR">Código-fonte OCaml</comment>
- <comment xml:lang="ro">Cod sursă OCaml</comment>
- <comment xml:lang="ru">Исходный код OCaml</comment>
- <comment xml:lang="sk">Zdrojový kód OCaml</comment>
- <comment xml:lang="sl">Datoteka izvorne kode OCaml</comment>
- <comment xml:lang="sq">Kod burues OCaml</comment>
- <comment xml:lang="sr">Окемл изворни ко̂д</comment>
- <comment xml:lang="sv">OCaml-källkod</comment>
- <comment xml:lang="tr">OCaml kaynak kodu</comment>
- <comment xml:lang="uk">первинний код мовою OCaml</comment>
- <comment xml:lang="vi">Mã nguồn OCaml</comment>
- <comment xml:lang="zh_CN">OCaml 源代码</comment>
<comment xml:lang="zh_TW">OCaml 源碼</comment>
+ <comment xml:lang="zh_CN">OCaml 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn OCaml</comment>
+ <comment xml:lang="uk">початковий код мовою OCaml</comment>
+ <comment xml:lang="tr">OCaml kaynak kodu</comment>
+ <comment xml:lang="sv">OCaml-källkod</comment>
+ <comment xml:lang="sr">Окемл изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim OCaml</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode OCaml</comment>
+ <comment xml:lang="si">OCaml මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód OCaml</comment>
+ <comment xml:lang="ru">Исходный код OCaml</comment>
+ <comment xml:lang="ro">Cod sursă OCaml</comment>
+ <comment xml:lang="pt_BR">Código-fonte OCaml</comment>
+ <comment xml:lang="pt">código origem OCaml</comment>
+ <comment xml:lang="pl">Kod źródłowy OCaml</comment>
+ <comment xml:lang="oc">còde font OCaml</comment>
+ <comment xml:lang="nn">OCaml-kjeldekode</comment>
+ <comment xml:lang="nl">OCaml-broncode</comment>
+ <comment xml:lang="nb">OCaml-kildekode</comment>
+ <comment xml:lang="lv">OCaml pirmkods</comment>
+ <comment xml:lang="lt">OCaml pradinis kodas</comment>
+ <comment xml:lang="ko">OCaml 소스 코드</comment>
+ <comment xml:lang="kk">OCaml бастапқы коды</comment>
+ <comment xml:lang="ja">OCaml ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente OCaml</comment>
+ <comment xml:lang="is">OCaml frumkóði</comment>
+ <comment xml:lang="id">Kode sumber OCaml</comment>
+ <comment xml:lang="ia">Codice-fonte OCaml</comment>
+ <comment xml:lang="hu">OCaml forráskód</comment>
+ <comment xml:lang="hr">OCaml izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של OCaml</comment>
+ <comment xml:lang="gl">código fonte de OCaml</comment>
+ <comment xml:lang="ga">cód foinseach OCaml</comment>
+ <comment xml:lang="fur">codiç sorzint OCaml</comment>
+ <comment xml:lang="fr">code source OCaml</comment>
+ <comment xml:lang="fo">OCaml keldukota</comment>
+ <comment xml:lang="fi">OCaml-lähdekoodi</comment>
+ <comment xml:lang="eu">OCaml iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en OCaml</comment>
+ <comment xml:lang="eo">OCaml-fontkodo</comment>
+ <comment xml:lang="en_GB">OCaml source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας OCaml</comment>
+ <comment xml:lang="de">OCaml-Quelltext</comment>
+ <comment xml:lang="da">OCaml-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce OCaml</comment>
+ <comment xml:lang="ca">codi font en OCaml</comment>
+ <comment xml:lang="bg">Изходен код — OCaml</comment>
+ <comment xml:lang="be@latin">Kryničny kod OCaml</comment>
+ <comment xml:lang="be">зыходны код OCaml</comment>
+ <comment xml:lang="ar">شفرة مصدر OCaml</comment>
+ <comment xml:lang="af">OCaml-bronkode</comment>
+ <sub-class-of type="text/plain"/>
<glob pattern="*.ml"/>
<glob pattern="*.mli"/>
</mime-type>
<mime-type type="text/x-opencl-src">
<comment>OpenCL source code</comment>
- <comment xml:lang="ca">codi font en OpenCL</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce OpenCL</comment>
- <comment xml:lang="de">OpenCL-Quelltext</comment>
- <comment xml:lang="en_GB">OpenCL source code</comment>
- <comment xml:lang="es">código fuente en OpenCL</comment>
- <comment xml:lang="fi">OpenCL-lähdekoodi</comment>
- <comment xml:lang="hr">OpenCL izvorni kôd</comment>
- <comment xml:lang="hu">OpenCL forráskód</comment>
- <comment xml:lang="id">Kode sumber OpenCL</comment>
- <comment xml:lang="it">Codice sorgente OpenCL</comment>
- <comment xml:lang="kk">OpenCL бастапқы коды</comment>
- <comment xml:lang="ko">OpenCL 소스 코드</comment>
- <comment xml:lang="pl">Kod źródłowy OpenCL</comment>
- <comment xml:lang="pt_BR">Código-fonte do OpenCL</comment>
- <comment xml:lang="ru">Исходный код OpenGL</comment>
- <comment xml:lang="sk">Zdrojový kód OpenCL</comment>
- <comment xml:lang="sv">OpenCL-källkod</comment>
- <comment xml:lang="uk">вихідний код мовою OpenCL</comment>
+ <comment xml:lang="zh_TW">OpenCL 原始碼</comment>
<comment xml:lang="zh_CN">OpenCL 源代码</comment>
- <comment xml:lang="zh_TW">OpenCL 源碼</comment>
+ <comment xml:lang="uk">початковий код мовою OpenCL</comment>
+ <comment xml:lang="tr">OpenCL kaynak kodu</comment>
+ <comment xml:lang="sv">OpenCL-källkod</comment>
+ <comment xml:lang="sq">kod burim OpenCL</comment>
+ <comment xml:lang="sl">Izvorna koda OpenCL</comment>
+ <comment xml:lang="si">OpenCL මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód OpenCL</comment>
+ <comment xml:lang="ru">Исходный код OpenGL</comment>
+ <comment xml:lang="pt_BR">Código-fonte OpenCL</comment>
+ <comment xml:lang="pl">Kod źródłowy OpenCL</comment>
+ <comment xml:lang="oc">còdi font OpenCL</comment>
+ <comment xml:lang="nl">OpenCL-broncode</comment>
+ <comment xml:lang="ko">OpenCL 소스 코드</comment>
+ <comment xml:lang="kk">OpenCL бастапқы коды</comment>
+ <comment xml:lang="ja">OpenCL ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente OpenCL</comment>
+ <comment xml:lang="is">OpenCL frumkóði</comment>
+ <comment xml:lang="id">Kode sumber OpenCL</comment>
+ <comment xml:lang="hu">OpenCL forráskód</comment>
+ <comment xml:lang="hr">OpenCL izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור OpenCL</comment>
+ <comment xml:lang="gl">Código fonte en OpenCL</comment>
+ <comment xml:lang="ga">cód foinseach OpenCL</comment>
+ <comment xml:lang="fur">codiç sorzint OpenCL</comment>
+ <comment xml:lang="fr">code source OpenCL</comment>
+ <comment xml:lang="fi">OpenCL-lähdekoodi</comment>
+ <comment xml:lang="eu">OpenCL iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en OpenCL</comment>
+ <comment xml:lang="en_GB">OpenCL source code</comment>
+ <comment xml:lang="de">OpenCL-Quelltext</comment>
+ <comment xml:lang="da">OpenCL-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce OpenCL</comment>
+ <comment xml:lang="ca">codi font en OpenCL</comment>
+ <comment xml:lang="bg">Изходен код — OpenCL</comment>
+ <comment xml:lang="be">зыходны код OpenCL</comment>
+ <comment xml:lang="ar">شفرة مصدر OpenCL</comment>
+ <comment xml:lang="af">OpenCL-bronkode</comment>
<acronym>OpenCL</acronym>
<expanded-acronym>Open Computing Language</expanded-acronym>
<sub-class-of type="text/x-csrc"/>
<glob pattern="*.cl"/>
</mime-type>
<mime-type type="text/x-matlab">
- <comment>MATLAB script/function</comment>
- <comment xml:lang="ar">سكربت/وظيفة MATLAB</comment>
- <comment xml:lang="be@latin">Skrypt/funkcyja MATLAB</comment>
- <comment xml:lang="bg">Скрипт/функция — MATLAB</comment>
- <comment xml:lang="ca">script/funció MATLAB</comment>
- <comment xml:lang="cs">skript/funkce MATLAB</comment>
- <comment xml:lang="da">MATLAB-program/-funktion</comment>
- <comment xml:lang="de">MATLAB-Skript/-Funktion</comment>
- <comment xml:lang="el">Δέσμη ενεργειών/συνάρτηση MATLAB</comment>
- <comment xml:lang="en_GB">MATLAB script/function</comment>
- <comment xml:lang="es">secuencia de órdenes/función de MATLAB</comment>
- <comment xml:lang="eu">MATLAB script/funtzioa</comment>
- <comment xml:lang="fi">MATLAB-komentotiedosto/funktio</comment>
- <comment xml:lang="fo">MATLAB boðrøð/funka</comment>
- <comment xml:lang="fr">script/fonction MATLAB</comment>
- <comment xml:lang="ga">script/feidhm MATLAB</comment>
- <comment xml:lang="gl">función/script de MATLAB</comment>
- <comment xml:lang="he">תסריט/פונקציית MATLAB</comment>
- <comment xml:lang="hr">MATLAB skripta/funkcija</comment>
- <comment xml:lang="hu">MATLAB parancsfájl/funkció</comment>
- <comment xml:lang="ia">Script/function MATLAB</comment>
- <comment xml:lang="id">Skrip/fungsi MATLAB</comment>
- <comment xml:lang="it">Script/Funzione MATLAB</comment>
- <comment xml:lang="ja">MATLAB スクリプト/関数</comment>
- <comment xml:lang="kk">MATLAB сценарий/функциясы</comment>
- <comment xml:lang="ko">MATLAB 스크립트/함수</comment>
- <comment xml:lang="lt">MATLAB scenarijus / funkcija</comment>
- <comment xml:lang="lv">MATLAB skripts/funkcija</comment>
- <comment xml:lang="nb">Skript/funksjon for MATLAB</comment>
- <comment xml:lang="nl">MATLAB-script/functie</comment>
- <comment xml:lang="nn">MATLAB-skript/funksjon</comment>
- <comment xml:lang="oc">escript/fonction MATLAB</comment>
- <comment xml:lang="pl">Skrypt/funkcja MATLAB</comment>
- <comment xml:lang="pt">script/função MATLAB</comment>
- <comment xml:lang="pt_BR">Script/função do MATLAB</comment>
- <comment xml:lang="ro">Funcție/script MATLAB</comment>
- <comment xml:lang="ru">Сценарий/функция MATLAB</comment>
- <comment xml:lang="sk">Skript/funkcia MATLAB</comment>
- <comment xml:lang="sl">Skriptna datoteka MATLAB</comment>
- <comment xml:lang="sq">Script/Funksion MATLAB</comment>
- <comment xml:lang="sr">скрипта/функција МАТЛАБ-а</comment>
- <comment xml:lang="sv">MATLAB-skript/funktion</comment>
- <comment xml:lang="tr">MATLAB betiği/fonksiyonu</comment>
- <comment xml:lang="uk">скрипт/функція MATLAB</comment>
- <comment xml:lang="vi">Văn lệnh/chức năng MATLAB</comment>
- <comment xml:lang="zh_CN">MATLAB 脚本/函数</comment>
- <comment xml:lang="zh_TW">MATLAB 指令稿/函式</comment>
+ <comment>MATLAB file</comment>
+ <comment xml:lang="zh_TW">MATLAB 檔</comment>
+ <comment xml:lang="zh_CN">MATLAB 文件</comment>
+ <comment xml:lang="uk">файл MATLAB</comment>
+ <comment xml:lang="tr">MATLAB dosyası</comment>
+ <comment xml:lang="sv">MATLAB-fil</comment>
+ <comment xml:lang="sq">kartelë MATLAB</comment>
+ <comment xml:lang="sl">Datoteka MATLAB</comment>
+ <comment xml:lang="si">MATLAB ගොනුව</comment>
+ <comment xml:lang="sk">Súbor MATLAB</comment>
+ <comment xml:lang="ru">Файл MATLAB</comment>
+ <comment xml:lang="pt_BR">Arquivo do MATLAB</comment>
+ <comment xml:lang="pl">Plik MATLAB</comment>
+ <comment xml:lang="nl">MATLAB-bestand</comment>
+ <comment xml:lang="ko">MATLAB 파일</comment>
+ <comment xml:lang="kk">MATLAB файлы</comment>
+ <comment xml:lang="ja">MATLAB ファイル</comment>
+ <comment xml:lang="it">File MATLAB</comment>
+ <comment xml:lang="is">MATLAB-skrá</comment>
+ <comment xml:lang="id">Berkas MATLAB</comment>
+ <comment xml:lang="hu">MATLAB fájl</comment>
+ <comment xml:lang="hr">MATLAB datoteka</comment>
+ <comment xml:lang="he">קובץ MATLAB</comment>
+ <comment xml:lang="gl">Ficheiro de MATLAB</comment>
+ <comment xml:lang="fr">fichier MATLAB</comment>
+ <comment xml:lang="fi">MATLAB-tiedosto</comment>
+ <comment xml:lang="eu">MATLAB fitxategia</comment>
+ <comment xml:lang="es">archivo de MATLAB</comment>
+ <comment xml:lang="en_GB">MATLAB file</comment>
+ <comment xml:lang="de">MATLAB-Datei</comment>
+ <comment xml:lang="da">MATLAB-fil</comment>
+ <comment xml:lang="ca">fitxer MATLAB</comment>
+ <comment xml:lang="bg">Файл — MATLAB</comment>
+ <comment xml:lang="be">файл MATLAB</comment>
+ <comment xml:lang="ar">ملف ماتلاب</comment>
<sub-class-of type="text/plain"/>
<magic priority="10">
- <match value="%" type="string" offset="0"/>
- </magic>
- <magic priority="10">
- <match value="##" type="string" offset="0"/>
+ <match type="string" value="%" offset="0"/>
</magic>
- <magic priority="50">
- <match value="function" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="function" offset="0"/>
</magic>
<glob pattern="*.m"/>
<alias type="text/x-octave"/>
</mime-type>
<mime-type type="text/x-meson">
<comment>Meson source code</comment>
- <comment xml:lang="ca">codi font en Meson</comment>
- <comment xml:lang="cs">zdrojový kód Meson</comment>
- <comment xml:lang="da">Meson-kildekode</comment>
- <comment xml:lang="de">Meson-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Meson</comment>
- <comment xml:lang="en_GB">Meson source code</comment>
- <comment xml:lang="es">código fuente en Meson</comment>
- <comment xml:lang="eu">Meson iturburu-kodea</comment>
- <comment xml:lang="fi">Meson-lähdekoodi</comment>
- <comment xml:lang="fr">code source Meson</comment>
- <comment xml:lang="ga">cód foinseach Meson</comment>
- <comment xml:lang="he">קוד מקור Meson</comment>
- <comment xml:lang="hr">Meson izvorni kôd</comment>
- <comment xml:lang="hu">Meson forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Meson</comment>
- <comment xml:lang="id">Kode sumber Meson</comment>
- <comment xml:lang="it">Codice sorgente Meson</comment>
- <comment xml:lang="kk">Meson бастапқы коды</comment>
- <comment xml:lang="ko">Meson 소스 코드</comment>
- <comment xml:lang="oc">còde font Meson</comment>
- <comment xml:lang="pl">Kod źródłowy Meson</comment>
- <comment xml:lang="pt">código origem Meson</comment>
- <comment xml:lang="pt_BR">Código-fonte Meson</comment>
- <comment xml:lang="ru">Исходный код Meson</comment>
- <comment xml:lang="sk">Zdrojový kód Meson</comment>
- <comment xml:lang="sr">Месон изворни ко̂д</comment>
- <comment xml:lang="sv">Meson-källkod</comment>
- <comment xml:lang="tr">Meson kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Meson</comment>
- <comment xml:lang="zh_CN">Meson 源代码</comment>
<comment xml:lang="zh_TW">Meson 源碼</comment>
+ <comment xml:lang="zh_CN">Meson 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Meson</comment>
+ <comment xml:lang="tr">Meson kaynak kodu</comment>
+ <comment xml:lang="sv">Meson-källkod</comment>
+ <comment xml:lang="sr">Месон изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Meson</comment>
+ <comment xml:lang="sl">Izvorna koda Meson</comment>
+ <comment xml:lang="si">Meson මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Meson</comment>
+ <comment xml:lang="ru">Исходный код Meson</comment>
+ <comment xml:lang="pt_BR">Código-fonte Meson</comment>
+ <comment xml:lang="pt">código origem Meson</comment>
+ <comment xml:lang="pl">Kod źródłowy Meson</comment>
+ <comment xml:lang="oc">còde font Meson</comment>
+ <comment xml:lang="nl">Meson-broncode</comment>
+ <comment xml:lang="ko">Meson 소스 코드</comment>
+ <comment xml:lang="kk">Meson бастапқы коды</comment>
+ <comment xml:lang="ja">Meson ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Meson</comment>
+ <comment xml:lang="is">Meson frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Meson</comment>
+ <comment xml:lang="ia">Codice-fonte Meson</comment>
+ <comment xml:lang="hu">Meson forráskód</comment>
+ <comment xml:lang="hr">Meson izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור Meson</comment>
+ <comment xml:lang="gl">Código fonte Meson</comment>
+ <comment xml:lang="ga">cód foinseach Meson</comment>
+ <comment xml:lang="fur">codiç sorzint Meson</comment>
+ <comment xml:lang="fr">code source Meson</comment>
+ <comment xml:lang="fi">Meson-lähdekoodi</comment>
+ <comment xml:lang="eu">Meson iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Meson</comment>
+ <comment xml:lang="en_GB">Meson source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Meson</comment>
+ <comment xml:lang="de">Meson-Quelltext</comment>
+ <comment xml:lang="da">Meson-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód Meson</comment>
+ <comment xml:lang="ca">codi font en Meson</comment>
+ <comment xml:lang="bg">Изходен код — Meson</comment>
+ <comment xml:lang="be">зыходны код Meson</comment>
+ <comment xml:lang="ar">شفرة مصدر Meson</comment>
+ <comment xml:lang="af">Meson-bronkode</comment>
<glob pattern="meson.build"/>
<glob pattern="meson_options.txt"/>
<sub-class-of type="text/plain"/>
</mime-type>
<mime-type type="text/x-modelica">
<comment>Modelica model</comment>
- <comment xml:lang="ca">model de Modelica</comment>
- <comment xml:lang="cs">model Modelica</comment>
- <comment xml:lang="da">Modelica-model</comment>
- <comment xml:lang="de">Modelica-Modell</comment>
- <comment xml:lang="el">Μοντέλο Modelica</comment>
- <comment xml:lang="en_GB">Modelica model</comment>
- <comment xml:lang="es">modelo de Modelica</comment>
- <comment xml:lang="eu">Modelica modeloa</comment>
- <comment xml:lang="fi">Modelica-malli</comment>
- <comment xml:lang="fr">modèle Modelica</comment>
- <comment xml:lang="ga">samhail Modelica</comment>
- <comment xml:lang="gl">Modelo de Modelica</comment>
- <comment xml:lang="he">דגם של Modelica</comment>
- <comment xml:lang="hr">Modelica model</comment>
- <comment xml:lang="hu">Modelica modell</comment>
- <comment xml:lang="ia">Modello Modelica</comment>
- <comment xml:lang="id">Model Modelica</comment>
- <comment xml:lang="it">Modello Modelica</comment>
- <comment xml:lang="ja">Modelica モデル</comment>
- <comment xml:lang="kk">Modelica моделі</comment>
- <comment xml:lang="ko">Modelica 모델</comment>
- <comment xml:lang="lv">Modelica modelis</comment>
- <comment xml:lang="oc">modèl Modelica</comment>
- <comment xml:lang="pl">Model Modelica</comment>
- <comment xml:lang="pt">modelo Modelica</comment>
- <comment xml:lang="pt_BR">Modelo da Modelica</comment>
- <comment xml:lang="ru">Модель Modelica</comment>
- <comment xml:lang="sk">Model Modelica</comment>
- <comment xml:lang="sl">Model Modelica</comment>
- <comment xml:lang="sr">модел Моделике</comment>
- <comment xml:lang="sv">Modelica-modell</comment>
- <comment xml:lang="tr">Modelica modeli</comment>
- <comment xml:lang="uk">модель Modelica</comment>
- <comment xml:lang="zh_CN">Modelica 模型</comment>
<comment xml:lang="zh_TW">Modelica 模型</comment>
+ <comment xml:lang="zh_CN">Modelica 模型</comment>
+ <comment xml:lang="uk">модель Modelica</comment>
+ <comment xml:lang="tr">Modelica modeli</comment>
+ <comment xml:lang="sv">Modelica-modell</comment>
+ <comment xml:lang="sr">модел Моделике</comment>
+ <comment xml:lang="sq">model Modelica</comment>
+ <comment xml:lang="sl">Model Modelica</comment>
+ <comment xml:lang="si">Modelica ආකෘතිය</comment>
+ <comment xml:lang="sk">Model Modelica</comment>
+ <comment xml:lang="ru">Модель Modelica</comment>
+ <comment xml:lang="pt_BR">Modelo da Modelica</comment>
+ <comment xml:lang="pt">modelo Modelica</comment>
+ <comment xml:lang="pl">Model Modelica</comment>
+ <comment xml:lang="oc">modèl Modelica</comment>
+ <comment xml:lang="nl">Modelica-model</comment>
+ <comment xml:lang="lv">Modelica modelis</comment>
+ <comment xml:lang="ko">Modelica 모델</comment>
+ <comment xml:lang="kk">Modelica моделі</comment>
+ <comment xml:lang="ja">Modelica モデル</comment>
+ <comment xml:lang="it">Modello Modelica</comment>
+ <comment xml:lang="is">Modelica líkan</comment>
+ <comment xml:lang="id">Model Modelica</comment>
+ <comment xml:lang="ia">Modello Modelica</comment>
+ <comment xml:lang="hu">Modelica modell</comment>
+ <comment xml:lang="hr">Modelica model</comment>
+ <comment xml:lang="he">דגם של Modelica</comment>
+ <comment xml:lang="gl">Modelo de Modelica</comment>
+ <comment xml:lang="ga">samhail Modelica</comment>
+ <comment xml:lang="fur">model Modelica</comment>
+ <comment xml:lang="fr">modèle Modelica</comment>
+ <comment xml:lang="fi">Modelica-malli</comment>
+ <comment xml:lang="eu">Modelica modeloa</comment>
+ <comment xml:lang="es">modelo de Modelica</comment>
+ <comment xml:lang="en_GB">Modelica model</comment>
+ <comment xml:lang="el">Μοντέλο Modelica</comment>
+ <comment xml:lang="de">Modelica-Modell</comment>
+ <comment xml:lang="da">Modelica-model</comment>
+ <comment xml:lang="cs">model Modelica</comment>
+ <comment xml:lang="ca">model de Modelica</comment>
+ <comment xml:lang="bg">Модел — Modelica</comment>
+ <comment xml:lang="be">мадэль Modelica</comment>
+ <comment xml:lang="ar">نموذج Modelica</comment>
+ <comment xml:lang="af">Modelica-model</comment>
<sub-class-of type="text/plain"/>
<magic priority="10">
- <match value="//" type="string" offset="0"/>
+ <match type="string" value="//" offset="0"/>
</magic>
- <magic priority="50">
- <match value="function" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="function" offset="0"/>
</magic>
- <magic priority="50">
- <match value="class" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="class" offset="0"/>
</magic>
- <magic priority="50">
- <match value="model" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="model" offset="0"/>
</magic>
- <magic priority="50">
- <match value="record" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="record" offset="0"/>
</magic>
<glob pattern="*.mo"/>
</mime-type>
<mime-type type="text/x-pascal">
<comment>Pascal source code</comment>
- <comment xml:lang="ar">شفرة مصدر باسكال</comment>
- <comment xml:lang="be@latin">Kryničny kod Pascal</comment>
- <comment xml:lang="bg">Изходен код — Pascal</comment>
- <comment xml:lang="ca">codi font en Pascal</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Pascal</comment>
- <comment xml:lang="da">Pascalkildekode</comment>
- <comment xml:lang="de">Pascal-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Pascal</comment>
- <comment xml:lang="en_GB">Pascal source code</comment>
- <comment xml:lang="eo">Pascal-fontkodo</comment>
- <comment xml:lang="es">código fuente en Pascal</comment>
- <comment xml:lang="eu">Pascal iturburu-kodea</comment>
- <comment xml:lang="fi">Pascal-lähdekoodi</comment>
- <comment xml:lang="fo">Pascal keldukota</comment>
- <comment xml:lang="fr">code source Pascal</comment>
- <comment xml:lang="ga">cód foinseach Pascal</comment>
- <comment xml:lang="gl">código fonte en Pascal</comment>
- <comment xml:lang="he">קוד מקור של Pascal</comment>
- <comment xml:lang="hr">Pascal izvorni kôd</comment>
- <comment xml:lang="hu">Pascal-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Pascal</comment>
- <comment xml:lang="id">Kode sumber Pascal</comment>
- <comment xml:lang="it">Codice sorgente Pascal</comment>
- <comment xml:lang="ja">Pascal ソースコード</comment>
- <comment xml:lang="kk">Pascal бастапқы коды</comment>
- <comment xml:lang="ko">파스칼 소스 코드</comment>
- <comment xml:lang="lt">Pascal pradinis kodas</comment>
- <comment xml:lang="lv">Pascal pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Pascal</comment>
- <comment xml:lang="nb">Pascal-kildekode</comment>
- <comment xml:lang="nl">Pascal-broncode</comment>
- <comment xml:lang="nn">Pascal-kjeldekode</comment>
- <comment xml:lang="oc">còde font Pascal</comment>
- <comment xml:lang="pl">Kod źródłowy Pascal</comment>
- <comment xml:lang="pt">código origem Pascal</comment>
- <comment xml:lang="pt_BR">Código-fonte Pascal</comment>
- <comment xml:lang="ro">Cod sursă Pascal</comment>
- <comment xml:lang="ru">Исходный код Pascal</comment>
- <comment xml:lang="sk">Zdrojový kód Pascal</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Pascal</comment>
- <comment xml:lang="sq">Kod burues Pascal</comment>
- <comment xml:lang="sr">Паскалов изворни ко̂д</comment>
- <comment xml:lang="sv">Pascal-källkod</comment>
- <comment xml:lang="tr">Pascal kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Pascal</comment>
- <comment xml:lang="vi">Mã nguồn Pascal</comment>
- <comment xml:lang="zh_CN">Pascal 源代码</comment>
<comment xml:lang="zh_TW">Pascal 源碼</comment>
+ <comment xml:lang="zh_CN">Pascal 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Pascal</comment>
+ <comment xml:lang="uk">початковий код мовою Pascal</comment>
+ <comment xml:lang="tr">Pascal kaynak kodu</comment>
+ <comment xml:lang="sv">Pascal-källkod</comment>
+ <comment xml:lang="sr">Паскалов изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Pascal</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Pascal</comment>
+ <comment xml:lang="si">පැස්කල් මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Pascal</comment>
+ <comment xml:lang="ru">Исходный код Pascal</comment>
+ <comment xml:lang="ro">Cod sursă Pascal</comment>
+ <comment xml:lang="pt_BR">Código-fonte Pascal</comment>
+ <comment xml:lang="pt">código origem Pascal</comment>
+ <comment xml:lang="pl">Kod źródłowy Pascal</comment>
+ <comment xml:lang="oc">còde font Pascal</comment>
+ <comment xml:lang="nn">Pascal-kjeldekode</comment>
+ <comment xml:lang="nl">Pascal-broncode</comment>
+ <comment xml:lang="nb">Pascal-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Pascal</comment>
+ <comment xml:lang="lv">Pascal pirmkods</comment>
+ <comment xml:lang="lt">Pascal pradinis kodas</comment>
+ <comment xml:lang="ko">파스칼 소스 코드</comment>
+ <comment xml:lang="kk">Pascal бастапқы коды</comment>
+ <comment xml:lang="ja">Pascal ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Pascal</comment>
+ <comment xml:lang="is">Pascal frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Pascal</comment>
+ <comment xml:lang="ia">Codice-fonte Pascal</comment>
+ <comment xml:lang="hu">Pascal-forráskód</comment>
+ <comment xml:lang="hr">Pascal izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Pascal</comment>
+ <comment xml:lang="gl">código fonte en Pascal</comment>
+ <comment xml:lang="ga">cód foinseach Pascal</comment>
+ <comment xml:lang="fur">codiç sorzint Pascal</comment>
+ <comment xml:lang="fr">code source Pascal</comment>
+ <comment xml:lang="fo">Pascal keldukota</comment>
+ <comment xml:lang="fi">Pascal-lähdekoodi</comment>
+ <comment xml:lang="eu">Pascal iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Pascal</comment>
+ <comment xml:lang="eo">Pascal-fontkodo</comment>
+ <comment xml:lang="en_GB">Pascal source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Pascal</comment>
+ <comment xml:lang="de">Pascal-Quelltext</comment>
+ <comment xml:lang="da">Pascal-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Pascal</comment>
+ <comment xml:lang="ca">codi font en Pascal</comment>
+ <comment xml:lang="bg">Изходен код — Pascal</comment>
+ <comment xml:lang="be@latin">Kryničny kod Pascal</comment>
+ <comment xml:lang="be">зыходны код Pascal</comment>
+ <comment xml:lang="ar">شفرة مصدر باسكال</comment>
+ <comment xml:lang="af">Pascal-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.p"/>
<glob pattern="*.pas"/>
</mime-type>
<mime-type type="text/x-patch">
- <comment>differences between files</comment>
- <comment xml:lang="ar">الاختلافات بين الملفات</comment>
- <comment xml:lang="be@latin">adroźnieńni pamiž fajłami</comment>
- <comment xml:lang="bg">Разлики между файлове</comment>
- <comment xml:lang="ca">diferències entre fitxers</comment>
- <comment xml:lang="cs">rozdíly mezi soubory</comment>
- <comment xml:lang="da">forskel mellem filer</comment>
- <comment xml:lang="de">Unterschiede zwischen Dateien</comment>
- <comment xml:lang="el">Διαφορές μεταξύ αρχείων</comment>
- <comment xml:lang="en_GB">differences between files</comment>
- <comment xml:lang="eo">diferencoj inter dosieroj</comment>
- <comment xml:lang="es">diferencias entre archivos</comment>
- <comment xml:lang="eu">fitxategien arteko ezberdintasunak</comment>
- <comment xml:lang="fi">tiedostojen väliset erot</comment>
- <comment xml:lang="fo">munur millum fílur</comment>
- <comment xml:lang="fr">différences entre fichiers</comment>
- <comment xml:lang="ga">difríochtaí idir chomhaid</comment>
- <comment xml:lang="gl">diferenzas entre ficheiros</comment>
- <comment xml:lang="he">הבדל בין קבצים</comment>
- <comment xml:lang="hr">Razlike između datoteka</comment>
- <comment xml:lang="hu">diff-különbségfájl</comment>
- <comment xml:lang="ia">Differentias inter files</comment>
- <comment xml:lang="id">perbedaan diantara berkas</comment>
- <comment xml:lang="it">Differenze tra file</comment>
- <comment xml:lang="ja">ファイル間差分</comment>
- <comment xml:lang="kk">файлдар арасындағы айырмашылықтары</comment>
- <comment xml:lang="ko">파일 사이의 차이점</comment>
- <comment xml:lang="lt">skirtumai tarp failų</comment>
- <comment xml:lang="lv">divu datņu atšķirība</comment>
- <comment xml:lang="ms">Perbezaan antara fail</comment>
- <comment xml:lang="nb">forskjeller mellom filer</comment>
- <comment xml:lang="nl">verschillen tussen bestanden</comment>
- <comment xml:lang="nn">skilnader mellom filer</comment>
- <comment xml:lang="oc">différences entre fichièrs</comment>
- <comment xml:lang="pl">Różnica pomiędzy plikami</comment>
- <comment xml:lang="pt">diferenças entre ficheiros</comment>
- <comment xml:lang="pt_BR">Diferenças entre arquivos</comment>
- <comment xml:lang="ro">diferențe între fișiere</comment>
- <comment xml:lang="ru">Различия между файлами</comment>
- <comment xml:lang="sk">Rozdiely medzi súbormi</comment>
- <comment xml:lang="sl">razlike med datotekami</comment>
- <comment xml:lang="sq">Diferencë midis file</comment>
- <comment xml:lang="sr">разлике између датотека</comment>
- <comment xml:lang="sv">skillnader mellan filer</comment>
- <comment xml:lang="tr">dosyalar arasındaki fark</comment>
+ <comment>Differences between files</comment>
<comment xml:lang="uk">різниця між файлами</comment>
- <comment xml:lang="vi">khác biệt giữa các tập tin</comment>
- <comment xml:lang="zh_CN">文件的区别</comment>
- <comment xml:lang="zh_TW">檔案內容差異</comment>
+ <comment xml:lang="sv">Skillnader mellan filer</comment>
+ <comment xml:lang="ru">Различия между файлами</comment>
+ <comment xml:lang="pl">Różnica pomiędzy plikami</comment>
+ <comment xml:lang="ja">差分文書</comment>
+ <comment xml:lang="it">Differenze tra file</comment>
+ <comment xml:lang="gl">Diferenzas entre ficheiros</comment>
+ <comment xml:lang="eu">Fitxategien arteko diferentziak</comment>
+ <comment xml:lang="es">diferencias entre archivos</comment>
+ <comment xml:lang="de">Unterschiede zwischen Dateien</comment>
+ <comment xml:lang="be">адрозненні паміж файламі</comment>
<alias type="text/x-diff"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="diff\t" type="string" offset="0"/>
- <match value="diff " type="string" offset="0"/>
- <match value="***\t" type="string" offset="0"/>
- <match value="*** " type="string" offset="0"/>
- <match value="=== " type="string" offset="0"/>
- <match value="--- " type="string" offset="0"/>
- <match value="Only in\t" type="string" offset="0"/>
- <match value="Only in " type="string" offset="0"/>
- <match value="Common subdirectories: " type="string" offset="0"/>
- <match value="Index:" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="diff\t" offset="0"/>
+ <match type="string" value="diff " offset="0"/>
+ <match type="string" value="***\t" offset="0"/>
+ <match type="string" value="*** " offset="0"/>
+ <match type="string" value="=== " offset="0"/>
+ <match type="string" value="--- " offset="0"/>
+ <match type="string" value="Only in\t" offset="0"/>
+ <match type="string" value="Only in " offset="0"/>
+ <match type="string" value="Common subdirectories: " offset="0"/>
+ <match type="string" value="Index:" offset="0"/>
</magic>
<glob pattern="*.diff"/>
<glob pattern="*.patch"/>
</mime-type>
+ <mime-type type="application/vnd.dart">
+ <comment>Dart source code</comment>
+ <comment xml:lang="zh_TW">Dart 原始碼</comment>
+ <comment xml:lang="zh_CN">Dart 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Dart</comment>
+ <comment xml:lang="tr">Dart kaynak kodu</comment>
+ <comment xml:lang="sv">Dart-källkod</comment>
+ <comment xml:lang="sl">Izvorna koda Dart</comment>
+ <comment xml:lang="si">ඩාර්ට් මූලාශ්‍ර කේතය</comment>
+ <comment xml:lang="ru">Исходный код Dart</comment>
+ <comment xml:lang="pt_BR">Código-fonte Dart</comment>
+ <comment xml:lang="pl">Kod źródłowy Dart</comment>
+ <comment xml:lang="nl">Dart-broncode</comment>
+ <comment xml:lang="ko">Dart 소스 코드</comment>
+ <comment xml:lang="kk">Dart бастапқы коды</comment>
+ <comment xml:lang="ja">Dart ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Dart</comment>
+ <comment xml:lang="hr">Dart izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור ב־Dart</comment>
+ <comment xml:lang="gl">Código fonte Dart</comment>
+ <comment xml:lang="fi">Dart-lähdekoodi</comment>
+ <comment xml:lang="eu">Dart iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente Dart</comment>
+ <comment xml:lang="en_GB">Dart source code</comment>
+ <comment xml:lang="de">Dart-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Dart</comment>
+ <comment xml:lang="ar">شفرة مصدر Dart</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.dart"/>
+ <alias type="text/x-dart"/>
+ </mime-type>
+ <mime-type type="text/x-nim">
+ <comment>Nim source code</comment>
+ <comment xml:lang="uk">початковий код мовою Nim</comment>
+ <comment xml:lang="sv">Nim-källkod</comment>
+ <comment xml:lang="ru">Исходный код Nim</comment>
+ <comment xml:lang="pl">Kod źródłowy Nim</comment>
+ <comment xml:lang="it">Codice sorgente Nim</comment>
+ <comment xml:lang="gl">Código fonte Nim</comment>
+ <comment xml:lang="eu">Nim iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Nim</comment>
+ <comment xml:lang="de">Nim-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Nim</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.nim"/>
+ </mime-type>
+ <mime-type type="text/x-nimscript">
+ <comment>Nimscript source code</comment>
+ <comment xml:lang="uk">початковий код мовою Nimscript</comment>
+ <comment xml:lang="sv">Nimscript-källkod</comment>
+ <comment xml:lang="ru">Исходный код Nimscript</comment>
+ <comment xml:lang="pl">Kod źródłowy NimScript</comment>
+ <comment xml:lang="it">Codice sorgente Nimscript</comment>
+ <comment xml:lang="gl">Código fonte Nimscript</comment>
+ <comment xml:lang="eu">Nimscript iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Nimscript</comment>
+ <comment xml:lang="de">Nimscript-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Nimscript</comment>
+ <sub-class-of type="text/x-nim"/>
+ <glob pattern="*.nims"/>
+ <glob pattern="*.nimble"/>
+ </mime-type>
<mime-type type="text/x-go">
<comment>Go source code</comment>
- <comment xml:lang="bg">Изходен код — Go</comment>
- <comment xml:lang="ca">codi font en Go</comment>
- <comment xml:lang="cs">zdrojový kód v jazyce Go</comment>
- <comment xml:lang="da">Go-kildekode</comment>
- <comment xml:lang="de">Go-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Go</comment>
- <comment xml:lang="en_GB">Go source code</comment>
- <comment xml:lang="eo">Go-fontkodo</comment>
- <comment xml:lang="es">código fuente en Go</comment>
- <comment xml:lang="eu">Go iturburu-kodea</comment>
- <comment xml:lang="fi">Go-lähdekoodi</comment>
- <comment xml:lang="fr">code source Go</comment>
- <comment xml:lang="ga">cód foinseach Go</comment>
- <comment xml:lang="gl">código fonte de Go</comment>
- <comment xml:lang="he">קוד מקור של Go</comment>
- <comment xml:lang="hr">Go izvorni kôd</comment>
- <comment xml:lang="hu">Go forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Go</comment>
- <comment xml:lang="id">Kode sumber Go</comment>
- <comment xml:lang="it">Codice sorgente Go</comment>
- <comment xml:lang="ja">Go ソースコード</comment>
- <comment xml:lang="ka">Go-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Go бастапқы коды</comment>
- <comment xml:lang="ko">Go 소스 코드</comment>
- <comment xml:lang="lv">Go pirmkods</comment>
- <comment xml:lang="nl">Go broncode</comment>
- <comment xml:lang="oc">còde font Go</comment>
- <comment xml:lang="pl">Kod źródłowy Go</comment>
- <comment xml:lang="pt">cigo origem Go</comment>
- <comment xml:lang="pt_BR">Código-fonte Go</comment>
- <comment xml:lang="ru">Исходный код Go</comment>
- <comment xml:lang="sk">Zdrojový kód Go</comment>
- <comment xml:lang="sl">Izvorna koda Go</comment>
- <comment xml:lang="sr">Гоу изворни ко̂д</comment>
- <comment xml:lang="sv">Go-källkod</comment>
- <comment xml:lang="tr">Go kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Go</comment>
- <comment xml:lang="zh_CN">Go 源代码</comment>
<comment xml:lang="zh_TW">Go 源碼</comment>
+ <comment xml:lang="zh_CN">Go 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Go</comment>
+ <comment xml:lang="tr">Go kaynak kodu</comment>
+ <comment xml:lang="sv">Go-källkod</comment>
+ <comment xml:lang="sr">Гоу изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Go</comment>
+ <comment xml:lang="sl">Izvorna koda Go</comment>
+ <comment xml:lang="si">මූල කේතය වෙත යන්න</comment>
+ <comment xml:lang="sk">Zdrojový kód Go</comment>
+ <comment xml:lang="ru">Исходный код Go</comment>
+ <comment xml:lang="pt_BR">Código-fonte Go</comment>
+ <comment xml:lang="pt">cigo origem Go</comment>
+ <comment xml:lang="pl">Kod źródłowy Go</comment>
+ <comment xml:lang="oc">còde font Go</comment>
+ <comment xml:lang="nl">Go-broncode</comment>
+ <comment xml:lang="lv">Go pirmkods</comment>
+ <comment xml:lang="ko">Go 소스 코드</comment>
+ <comment xml:lang="kk">Go бастапқы коды</comment>
+ <comment xml:lang="ka">Go-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Go ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Go</comment>
+ <comment xml:lang="is">Go frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Go</comment>
+ <comment xml:lang="ia">Codice-fonte Go</comment>
+ <comment xml:lang="hu">Go forráskód</comment>
+ <comment xml:lang="hr">Go izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Go</comment>
+ <comment xml:lang="gl">código fonte de Go</comment>
+ <comment xml:lang="ga">cód foinseach Go</comment>
+ <comment xml:lang="fur">codiç sorzint Go</comment>
+ <comment xml:lang="fr">code source Go</comment>
+ <comment xml:lang="fi">Go-lähdekoodi</comment>
+ <comment xml:lang="eu">Go iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Go</comment>
+ <comment xml:lang="eo">Go-fontkodo</comment>
+ <comment xml:lang="en_GB">Go source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Go</comment>
+ <comment xml:lang="de">Go-Quelltext</comment>
+ <comment xml:lang="da">Go-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód v jazyce Go</comment>
+ <comment xml:lang="ca">codi font en Go</comment>
+ <comment xml:lang="bg">Изходен код — Go</comment>
+ <comment xml:lang="be">зыходны код Go</comment>
+ <comment xml:lang="ar">شفرة مصدر غو</comment>
+ <comment xml:lang="af">Go-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.go"/>
</mime-type>
<mime-type type="text/x-scons">
<comment>SCons configuration file</comment>
- <comment xml:lang="ca">fitxer de configuració de SCons</comment>
- <comment xml:lang="cs">konfigurační soubor SCons</comment>
- <comment xml:lang="da">SCons-konfigurationsfil</comment>
- <comment xml:lang="de">SCons-Konfigurationsdatei</comment>
- <comment xml:lang="el">Αρχείο ρυθμίσεων SCons</comment>
- <comment xml:lang="en_GB">SCons configuration file</comment>
- <comment xml:lang="es">archivo de configuración de SCons</comment>
- <comment xml:lang="eu">SCons konfigurazio-fitxategia</comment>
- <comment xml:lang="fi">SCons-asetustiedosto</comment>
- <comment xml:lang="fr">fichier de configuration SCons</comment>
- <comment xml:lang="ga">comhad cumraíochta SCons</comment>
- <comment xml:lang="he">קובץ תצורה של SCons</comment>
- <comment xml:lang="hr">SCons datoteka podešavanja</comment>
- <comment xml:lang="hu">SCons beállítófájl</comment>
- <comment xml:lang="ia">File de cofniguration SCons</comment>
- <comment xml:lang="id">Berkas konfigurasi SCons</comment>
- <comment xml:lang="it">File configurazione SCons</comment>
- <comment xml:lang="kk">SCons баптаулар файлы</comment>
- <comment xml:lang="ko">SCons 설정 파일</comment>
- <comment xml:lang="oc">fichièr de configuracion SCons</comment>
- <comment xml:lang="pl">Plik konfiguracji SCons</comment>
- <comment xml:lang="pt">ficheiro de configuração SCons</comment>
- <comment xml:lang="pt_BR">Arquivo de configuração do SCons</comment>
- <comment xml:lang="ru">Файл настроек SCons</comment>
- <comment xml:lang="sk">Konfiguračný súbor SCons</comment>
- <comment xml:lang="sl">Prilagoditvena datoteka SCons</comment>
- <comment xml:lang="sr">СКонс датотека подешавања</comment>
- <comment xml:lang="sv">SCons-konfigurationsfil</comment>
- <comment xml:lang="tr">SCons yapılandırma dosyası</comment>
- <comment xml:lang="uk">файл налаштувань SCons</comment>
- <comment xml:lang="zh_CN">SCons 配置文件</comment>
<comment xml:lang="zh_TW">SCons 組態檔</comment>
+ <comment xml:lang="zh_CN">SCons 配置文件</comment>
+ <comment xml:lang="uk">файл налаштувань SCons</comment>
+ <comment xml:lang="tr">SCons yapılandırma dosyası</comment>
+ <comment xml:lang="sv">SCons-konfigurationsfil</comment>
+ <comment xml:lang="sr">СКонс датотека подешавања</comment>
+ <comment xml:lang="sq">kartelë formësimi SCons</comment>
+ <comment xml:lang="sl">Prilagoditvena datoteka SCons</comment>
+ <comment xml:lang="si">SCons වින්‍යාස ගොනුව</comment>
+ <comment xml:lang="sk">Konfiguračný súbor SCons</comment>
+ <comment xml:lang="ru">Файл настроек SCons</comment>
+ <comment xml:lang="pt_BR">Arquivo de configuração do SCons</comment>
+ <comment xml:lang="pt">ficheiro de configuração SCons</comment>
+ <comment xml:lang="pl">Plik konfiguracji SCons</comment>
+ <comment xml:lang="oc">fichièr de configuracion SCons</comment>
+ <comment xml:lang="nl">SCons-configuratiebestand</comment>
+ <comment xml:lang="ko">SCons 설정 파일</comment>
+ <comment xml:lang="kk">SCons баптаулар файлы</comment>
+ <comment xml:lang="ja">SCons 設定ファイル</comment>
+ <comment xml:lang="it">File configurazione SCons</comment>
+ <comment xml:lang="is">SCons stillingaskrá</comment>
+ <comment xml:lang="id">Berkas konfigurasi SCons</comment>
+ <comment xml:lang="ia">File de cofniguration SCons</comment>
+ <comment xml:lang="hu">SCons beállítófájl</comment>
+ <comment xml:lang="hr">SCons datoteka podešavanja</comment>
+ <comment xml:lang="he">קובץ תצורה של SCons</comment>
+ <comment xml:lang="gl">Ficheiro de configuración SCons</comment>
+ <comment xml:lang="ga">comhad cumraíochta SCons</comment>
+ <comment xml:lang="fur">file di configurazion SCons</comment>
+ <comment xml:lang="fr">fichier de configuration SCons</comment>
+ <comment xml:lang="fi">SCons-asetustiedosto</comment>
+ <comment xml:lang="eu">SCons konfigurazio-fitxategia</comment>
+ <comment xml:lang="es">archivo de configuración de SCons</comment>
+ <comment xml:lang="en_GB">SCons configuration file</comment>
+ <comment xml:lang="el">Αρχείο ρυθμίσεων SCons</comment>
+ <comment xml:lang="de">SCons-Konfigurationsdatei</comment>
+ <comment xml:lang="da">SCons-konfigurationsfil</comment>
+ <comment xml:lang="cs">konfigurační soubor SCons</comment>
+ <comment xml:lang="ca">fitxer de configuració de SCons</comment>
+ <comment xml:lang="bg">Настройки — SCons</comment>
+ <comment xml:lang="be">файл канфігурацыі SCons</comment>
+ <comment xml:lang="ar">ملف إعداد SCons</comment>
+ <comment xml:lang="af">SCons-opstellingslêer</comment>
<sub-class-of type="text/x-python"/>
<glob pattern="SConstruct"/>
<glob pattern="SConscript"/>
@@ -35771,715 +37901,869 @@
</mime-type>
<mime-type type="text/x-python3">
<comment>Python 3 script</comment>
- <comment xml:lang="ca">script Python 3</comment>
- <comment xml:lang="cs">skript v jazyce Python 3</comment>
- <comment xml:lang="de">Python-3-Skript</comment>
- <comment xml:lang="en_GB">Python 3 script</comment>
- <comment xml:lang="es">secuencia de órdenes en Python 3</comment>
- <comment xml:lang="fi">Python 3 -skripti</comment>
- <comment xml:lang="hr">Python3 skripta</comment>
- <comment xml:lang="hu">Python 3 parancsfájl</comment>
- <comment xml:lang="id">Skrip Python 3</comment>
- <comment xml:lang="it">Script Python 3</comment>
- <comment xml:lang="kk">Python 3 скрипті</comment>
- <comment xml:lang="ko">파이썬 3 스크립트</comment>
- <comment xml:lang="pl">Skrypt Python 3</comment>
- <comment xml:lang="pt_BR">Script Python 3</comment>
- <comment xml:lang="ru">Сценарий Python 3</comment>
- <comment xml:lang="sk">Skript Python 3</comment>
- <comment xml:lang="sv">Python 3-skript</comment>
- <comment xml:lang="uk">скрипт мовою Python 3</comment>
- <comment xml:lang="zh_CN">Python 3 脚本</comment>
<comment xml:lang="zh_TW">Python 3 指令稿</comment>
- <sub-class-of type='text/x-python'/>
+ <comment xml:lang="zh_CN">Python 3 脚本</comment>
+ <comment xml:lang="uk">скрипт мовою Python 3</comment>
+ <comment xml:lang="tr">Python 3 betiği</comment>
+ <comment xml:lang="sv">Python 3-skript</comment>
+ <comment xml:lang="sq">programth Python 3</comment>
+ <comment xml:lang="sl">Skript Python 3</comment>
+ <comment xml:lang="si">Python 3 පිටපත</comment>
+ <comment xml:lang="sk">Skript Python 3</comment>
+ <comment xml:lang="ru">Сценарий Python 3</comment>
+ <comment xml:lang="pt_BR">Script Python 3</comment>
+ <comment xml:lang="pl">Skrypt Python 3</comment>
+ <comment xml:lang="oc">script Python 3</comment>
+ <comment xml:lang="nl">Python 3-script</comment>
+ <comment xml:lang="ko">파이썬 3 스크립트</comment>
+ <comment xml:lang="kk">Python 3 скрипті</comment>
+ <comment xml:lang="ja">Python 3 スクリプト</comment>
+ <comment xml:lang="it">Script Python 3</comment>
+ <comment xml:lang="is">Python 3 skrifta</comment>
+ <comment xml:lang="id">Skrip Python 3</comment>
+ <comment xml:lang="hu">Python 3 parancsfájl</comment>
+ <comment xml:lang="hr">Python3 skripta</comment>
+ <comment xml:lang="he">סקריפט Python 3</comment>
+ <comment xml:lang="ga">script Python 3</comment>
+ <comment xml:lang="fur">script Python 3</comment>
+ <comment xml:lang="fr">script Python 3</comment>
+ <comment xml:lang="fi">Python 3 -komentotiedosto</comment>
+ <comment xml:lang="eu">Python 3 script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Python 3</comment>
+ <comment xml:lang="en_GB">Python 3 script</comment>
+ <comment xml:lang="de">Python-3-Skript</comment>
+ <comment xml:lang="da">Python 3-program</comment>
+ <comment xml:lang="cs">skript v jazyce Python 3</comment>
+ <comment xml:lang="ca">script Python 3</comment>
+ <comment xml:lang="bg">Скрипт — Python 3</comment>
+ <comment xml:lang="be">скрыпт Python 3</comment>
+ <comment xml:lang="ar">سكربت بايثون٣</comment>
+ <comment xml:lang="af">Python 3-skrip</comment>
+ <sub-class-of type="text/x-python"/>
<magic priority="60">
- <match value="#!/bin/python3" type="string" offset="0"/>
- <match value="#! /bin/python3" type="string" offset="0"/>
- <match value='eval \"exec /bin/python3' type="string" offset="0"/>
- <match value="#!/usr/bin/python3" type="string" offset="0"/>
- <match value="#! /usr/bin/python3" type="string" offset="0"/>
- <match value='eval \"exec /usr/bin/python3' type="string" offset="0"/>
- <match value="#!/usr/local/bin/python3" type="string" offset="0"/>
- <match value="#! /usr/local/bin/python3" type="string" offset="0"/>
- <match value='eval \"exec /usr/local/bin/python3' type="string" offset="0"/>
- <match value='/bin/env python3' type="string" offset="2:16"/>
- </magic>
- <glob weight="50" pattern="*.py"/>
- <glob weight="60" pattern="*.py3"/>
- <glob weight="60" pattern="*.py3x"/>
+ <!-- higher priority than text/x-python -->
+ <match type="string" value="#!/bin/python3" offset="0"/>
+ <match type="string" value="#! /bin/python3" offset="0"/>
+ <match type="string" value="eval \&quot;exec /bin/python3" offset="0"/>
+ <match type="string" value="#!/usr/bin/python3" offset="0"/>
+ <match type="string" value="#! /usr/bin/python3" offset="0"/>
+ <match type="string" value="eval \&quot;exec /usr/bin/python3" offset="0"/>
+ <match type="string" value="#!/usr/local/bin/python3" offset="0"/>
+ <match type="string" value="#! /usr/local/bin/python3" offset="0"/>
+ <match type="string" value="eval \&quot;exec /usr/local/bin/python3" offset="0"/>
+ <match type="string" value="/bin/env python3" offset="2:16"/>
+ </magic>
+ <glob pattern="*.py"/>
+ <!-- lower priority than in text/x-python -->
+ <glob pattern="*.py3" weight="60"/>
+ <glob pattern="*.py3x" weight="60"/>
+ <glob pattern="*.pyi" weight="60"/>
</mime-type>
<mime-type type="text/x-python">
<comment>Python script</comment>
- <comment xml:lang="ar">سكربت بايثون</comment>
- <comment xml:lang="be@latin">Skrypt Python</comment>
- <comment xml:lang="bg">Скрипт — Python</comment>
- <comment xml:lang="ca">script Python</comment>
- <comment xml:lang="cs">skript v jazyce Python</comment>
- <comment xml:lang="da">Pythonprogram</comment>
- <comment xml:lang="de">Python-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών Python</comment>
- <comment xml:lang="en_GB">Python script</comment>
- <comment xml:lang="eo">Python-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en Python</comment>
- <comment xml:lang="eu">Python script-a</comment>
- <comment xml:lang="fi">Python-komentotiedosto</comment>
- <comment xml:lang="fo">Python boðrøð</comment>
- <comment xml:lang="fr">script Python</comment>
- <comment xml:lang="ga">script Python</comment>
- <comment xml:lang="gl">Script en Python</comment>
- <comment xml:lang="he">תסריט Python</comment>
- <comment xml:lang="hr">Python skripta</comment>
- <comment xml:lang="hu">Python-parancsfájl</comment>
- <comment xml:lang="ia">Script Python</comment>
- <comment xml:lang="id">Skrip Python</comment>
- <comment xml:lang="it">Script Python</comment>
- <comment xml:lang="ja">Python スクリプト</comment>
- <comment xml:lang="kk">Python сценарийі</comment>
- <comment xml:lang="ko">파이썬 스크립트</comment>
- <comment xml:lang="lt">Python scenarijus</comment>
- <comment xml:lang="lv">Python skripts</comment>
- <comment xml:lang="ms">Skrip Python</comment>
- <comment xml:lang="nb">Python-skript</comment>
- <comment xml:lang="nl">Python-script</comment>
- <comment xml:lang="nn">Python-skript</comment>
- <comment xml:lang="oc">escript Python</comment>
- <comment xml:lang="pl">Skrypt Python</comment>
- <comment xml:lang="pt">script Python</comment>
- <comment xml:lang="pt_BR">Script Python</comment>
- <comment xml:lang="ro">Script Python</comment>
- <comment xml:lang="ru">Сценарий Python</comment>
- <comment xml:lang="sk">Skript Python</comment>
- <comment xml:lang="sl">Skriptna datoteka Python</comment>
- <comment xml:lang="sq">Script Python</comment>
- <comment xml:lang="sr">Питонова скрипта</comment>
- <comment xml:lang="sv">Pythonskript</comment>
- <comment xml:lang="tr">Python betiği</comment>
- <comment xml:lang="uk">скрипт мовою Python</comment>
- <comment xml:lang="vi">Văn lệnh Python</comment>
- <comment xml:lang="zh_CN">Python 脚本</comment>
<comment xml:lang="zh_TW">Python 指令稿</comment>
- <sub-class-of type='application/x-executable'/>
+ <comment xml:lang="zh_CN">Python 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh Python</comment>
+ <comment xml:lang="uk">скрипт мовою Python</comment>
+ <comment xml:lang="tr">Python betiği</comment>
+ <comment xml:lang="sv">Pythonskript</comment>
+ <comment xml:lang="sr">Питонова скрипта</comment>
+ <comment xml:lang="sq">programth Python</comment>
+ <comment xml:lang="sl">Skriptna datoteka Python</comment>
+ <comment xml:lang="si">පයිතන් පිටපත</comment>
+ <comment xml:lang="sk">Skript Python</comment>
+ <comment xml:lang="ru">Сценарий Python</comment>
+ <comment xml:lang="ro">Script Python</comment>
+ <comment xml:lang="pt_BR">Script Python</comment>
+ <comment xml:lang="pt">script Python</comment>
+ <comment xml:lang="pl">Skrypt Python</comment>
+ <comment xml:lang="oc">escript Python</comment>
+ <comment xml:lang="nn">Python-skript</comment>
+ <comment xml:lang="nl">Python-script</comment>
+ <comment xml:lang="nb">Python-skript</comment>
+ <comment xml:lang="ms">Skrip Python</comment>
+ <comment xml:lang="lv">Python skripts</comment>
+ <comment xml:lang="lt">Python scenarijus</comment>
+ <comment xml:lang="ko">파이썬 스크립트</comment>
+ <comment xml:lang="kk">Python сценарийі</comment>
+ <comment xml:lang="ja">Python スクリプト</comment>
+ <comment xml:lang="it">Script Python</comment>
+ <comment xml:lang="is">Python skrifta</comment>
+ <comment xml:lang="id">Skrip Python</comment>
+ <comment xml:lang="ia">Script Python</comment>
+ <comment xml:lang="hu">Python-parancsfájl</comment>
+ <comment xml:lang="hr">Python skripta</comment>
+ <comment xml:lang="he">תסריט Python</comment>
+ <comment xml:lang="gl">Script en Python</comment>
+ <comment xml:lang="ga">script Python</comment>
+ <comment xml:lang="fur">script Python</comment>
+ <comment xml:lang="fr">script Python</comment>
+ <comment xml:lang="fo">Python boðrøð</comment>
+ <comment xml:lang="fi">Python-komentotiedosto</comment>
+ <comment xml:lang="eu">Python script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Python</comment>
+ <comment xml:lang="eo">Python-skripto</comment>
+ <comment xml:lang="en_GB">Python script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών Python</comment>
+ <comment xml:lang="de">Python-Skript</comment>
+ <comment xml:lang="da">Python-program</comment>
+ <comment xml:lang="cs">skript v jazyce Python</comment>
+ <comment xml:lang="ca">script Python</comment>
+ <comment xml:lang="bg">Скрипт — Python</comment>
+ <comment xml:lang="be@latin">Skrypt Python</comment>
+ <comment xml:lang="be">скрыпт Python</comment>
+ <comment xml:lang="ar">سكربت بايثون</comment>
+ <comment xml:lang="af">Python-skrip</comment>
+ <sub-class-of type="application/x-executable"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="#!/bin/python" type="string" offset="0"/>
- <match value="#! /bin/python" type="string" offset="0"/>
- <match value='eval \"exec /bin/python' type="string" offset="0"/>
- <match value="#!/usr/bin/python" type="string" offset="0"/>
- <match value="#! /usr/bin/python" type="string" offset="0"/>
- <match value='eval \"exec /usr/bin/python' type="string" offset="0"/>
- <match value="#!/usr/local/bin/python" type="string" offset="0"/>
- <match value="#! /usr/local/bin/python" type="string" offset="0"/>
- <match value='eval \"exec /usr/local/bin/python' type="string" offset="0"/>
- <match value='/bin/env python' type="string" offset="2:16"/>
- </magic>
- <glob weight="60" pattern="*.py"/>
- <glob weight="60" pattern="*.pyx"/>
- <glob weight="60" pattern="*.wsgi"/>
+ <magic>
+ <match type="string" value="#!/bin/python" offset="0"/>
+ <match type="string" value="#! /bin/python" offset="0"/>
+ <match type="string" value="eval \&quot;exec /bin/python" offset="0"/>
+ <match type="string" value="#!/usr/bin/python" offset="0"/>
+ <match type="string" value="#! /usr/bin/python" offset="0"/>
+ <match type="string" value="eval \&quot;exec /usr/bin/python" offset="0"/>
+ <match type="string" value="#!/usr/local/bin/python" offset="0"/>
+ <match type="string" value="#! /usr/local/bin/python" offset="0"/>
+ <match type="string" value="eval \&quot;exec /usr/local/bin/python" offset="0"/>
+ <match type="string" value="/bin/env python" offset="2:16"/>
+ </magic>
+ <glob pattern="*.py" weight="60"/>
+ <glob pattern="*.pyx" weight="60"/>
+ <glob pattern="*.wsgi" weight="60"/>
+ </mime-type>
+ <mime-type type="text/x-sagemath">
+ <comment>SageMath script</comment>
+ <comment xml:lang="zh_TW">SageMath 指令稿</comment>
+ <comment xml:lang="zh_CN">SageMath 脚本</comment>
+ <comment xml:lang="uk">скрипт SageMath</comment>
+ <comment xml:lang="tr">SageMath betiği</comment>
+ <comment xml:lang="sv">SageMath-skript</comment>
+ <comment xml:lang="sl">Skript SageMath</comment>
+ <comment xml:lang="si">SageMath පිටපත</comment>
+ <comment xml:lang="ru">Сценарий SageMath</comment>
+ <comment xml:lang="pt_BR">Script SageMath</comment>
+ <comment xml:lang="pl">Skrypt SageMath</comment>
+ <comment xml:lang="nl">SageMath-script</comment>
+ <comment xml:lang="ko">SageMath 스크립트</comment>
+ <comment xml:lang="kk">SageMath сценарийі</comment>
+ <comment xml:lang="ja">SageMath スクリプト</comment>
+ <comment xml:lang="it">Script SageMath</comment>
+ <comment xml:lang="is">SageMath skrifta</comment>
+ <comment xml:lang="id">skrip SageMath</comment>
+ <comment xml:lang="hu">SageMath parancsfájl</comment>
+ <comment xml:lang="hr">SageMath skripta</comment>
+ <comment xml:lang="he">סקריפט SageMath</comment>
+ <comment xml:lang="fr">Script SageMath</comment>
+ <comment xml:lang="fi">SageMath-komentotiedosto</comment>
+ <comment xml:lang="eu">SageMath script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes de SageMath</comment>
+ <comment xml:lang="en_GB">SageMath script</comment>
+ <comment xml:lang="de">SageMath-Skript</comment>
+ <comment xml:lang="da">SageMath-program</comment>
+ <comment xml:lang="ca">script SageMath</comment>
+ <comment xml:lang="be">скрыпт SageMath</comment>
+ <comment xml:lang="ar">سكربت SageMath</comment>
+ <sub-class-of type="text/x-python"/>
+ <glob pattern="*.sage" weight="60"/>
</mime-type>
<mime-type type="text/x-lua">
<comment>Lua script</comment>
- <comment xml:lang="ar">سكربت Lua</comment>
- <comment xml:lang="be@latin">Skrypt Lua</comment>
- <comment xml:lang="bg">Скрипт на Lua</comment>
- <comment xml:lang="ca">script Lua</comment>
- <comment xml:lang="cs">skript v jazyce Lua</comment>
- <comment xml:lang="da">Luaprogram</comment>
- <comment xml:lang="de">Lua-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών Lua</comment>
- <comment xml:lang="en_GB">Lua script</comment>
- <comment xml:lang="eo">Lua-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en Lua</comment>
- <comment xml:lang="eu">Lua script-a</comment>
- <comment xml:lang="fi">Lua-komentotiedosto</comment>
- <comment xml:lang="fo">Lua boðrøð</comment>
- <comment xml:lang="fr">script Lua</comment>
- <comment xml:lang="ga">script Lua</comment>
- <comment xml:lang="gl">script de Lua</comment>
- <comment xml:lang="he">תסריט Lua</comment>
- <comment xml:lang="hr">Lua skripta</comment>
- <comment xml:lang="hu">Lua parancsfájl</comment>
- <comment xml:lang="ia">Script Lua</comment>
- <comment xml:lang="id">Skrip Lua</comment>
- <comment xml:lang="it">Script Lua</comment>
- <comment xml:lang="ja">Lua スクリプト</comment>
- <comment xml:lang="kk">Lua сценарийі</comment>
- <comment xml:lang="ko">Lua 스크립트</comment>
- <comment xml:lang="lt">Lua scenarijus</comment>
- <comment xml:lang="lv">Lua skripts</comment>
- <comment xml:lang="nb">Lua-skript</comment>
- <comment xml:lang="nl">Lua-script</comment>
- <comment xml:lang="nn">Lua-skript</comment>
- <comment xml:lang="oc">escript Lua</comment>
- <comment xml:lang="pl">Skrypt Lua</comment>
- <comment xml:lang="pt">script Lua</comment>
- <comment xml:lang="pt_BR">Script Lua</comment>
- <comment xml:lang="ro">Script Lua</comment>
- <comment xml:lang="ru">Сценарий Lua</comment>
- <comment xml:lang="sk">Skript Lua</comment>
- <comment xml:lang="sl">Skriptna datoteka Lua</comment>
- <comment xml:lang="sq">Script Lua</comment>
- <comment xml:lang="sr">Луа скрипта</comment>
- <comment xml:lang="sv">Lua-skript</comment>
- <comment xml:lang="tr">Lua betiği</comment>
- <comment xml:lang="uk">скрипт Lua</comment>
- <comment xml:lang="vi">Văn lệnh Lua</comment>
- <comment xml:lang="zh_CN">Lua 脚本</comment>
<comment xml:lang="zh_TW">Lua 指令稿</comment>
- <sub-class-of type='application/x-executable'/>
+ <comment xml:lang="zh_CN">Lua 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh Lua</comment>
+ <comment xml:lang="uk">скрипт Lua</comment>
+ <comment xml:lang="tr">Lua betiği</comment>
+ <comment xml:lang="sv">Lua-skript</comment>
+ <comment xml:lang="sr">Луа скрипта</comment>
+ <comment xml:lang="sq">programth Lua</comment>
+ <comment xml:lang="sl">Skriptna datoteka Lua</comment>
+ <comment xml:lang="si">Lua පිටපත</comment>
+ <comment xml:lang="sk">Skript Lua</comment>
+ <comment xml:lang="ru">Сценарий Lua</comment>
+ <comment xml:lang="ro">Script Lua</comment>
+ <comment xml:lang="pt_BR">Script Lua</comment>
+ <comment xml:lang="pt">script Lua</comment>
+ <comment xml:lang="pl">Skrypt Lua</comment>
+ <comment xml:lang="oc">escript Lua</comment>
+ <comment xml:lang="nn">Lua-skript</comment>
+ <comment xml:lang="nl">Lua-script</comment>
+ <comment xml:lang="nb">Lua-skript</comment>
+ <comment xml:lang="lv">Lua skripts</comment>
+ <comment xml:lang="lt">Lua scenarijus</comment>
+ <comment xml:lang="ko">Lua 스크립트</comment>
+ <comment xml:lang="kk">Lua сценарийі</comment>
+ <comment xml:lang="ja">Lua スクリプト</comment>
+ <comment xml:lang="it">Script Lua</comment>
+ <comment xml:lang="is">Lua skrifta</comment>
+ <comment xml:lang="id">Skrip Lua</comment>
+ <comment xml:lang="ia">Script Lua</comment>
+ <comment xml:lang="hu">Lua parancsfájl</comment>
+ <comment xml:lang="hr">Lua skripta</comment>
+ <comment xml:lang="he">תסריט Lua</comment>
+ <comment xml:lang="gl">script de Lua</comment>
+ <comment xml:lang="ga">script Lua</comment>
+ <comment xml:lang="fur">script Lua</comment>
+ <comment xml:lang="fr">script Lua</comment>
+ <comment xml:lang="fo">Lua boðrøð</comment>
+ <comment xml:lang="fi">Lua-komentotiedosto</comment>
+ <comment xml:lang="eu">Lua script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Lua</comment>
+ <comment xml:lang="eo">Lua-skripto</comment>
+ <comment xml:lang="en_GB">Lua script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών Lua</comment>
+ <comment xml:lang="de">Lua-Skript</comment>
+ <comment xml:lang="da">Lua-program</comment>
+ <comment xml:lang="cs">skript v jazyce Lua</comment>
+ <comment xml:lang="ca">script Lua</comment>
+ <comment xml:lang="bg">Скрипт на Lua</comment>
+ <comment xml:lang="be@latin">Skrypt Lua</comment>
+ <comment xml:lang="be">скрыпт Lua</comment>
+ <comment xml:lang="ar">سكربت Lua</comment>
+ <comment xml:lang="af">Lua-skrip</comment>
+ <sub-class-of type="application/x-executable"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="/bin/lua" type="string" offset="2:16"/>
- <match value="/bin/luajit" type="string" offset="2:16"/>
- <match value="/bin/env lua" type="string" offset="2:16"/>
- <match value="/bin/env luajit" type="string" offset="2:16"/>
+ <magic>
+ <match type="string" value="/bin/lua" offset="2:16"/>
+ <match type="string" value="/bin/luajit" offset="2:16"/>
+ <match type="string" value="/bin/env lua" offset="2:16"/>
+ <match type="string" value="/bin/env luajit" offset="2:16"/>
</magic>
<glob pattern="*.lua"/>
</mime-type>
<mime-type type="text/x-readme">
<comment>README document</comment>
- <comment xml:lang="ar">مستند README</comment>
- <comment xml:lang="ast">Documentu LLEIME</comment>
- <comment xml:lang="az">README sənədi</comment>
- <comment xml:lang="be@latin">Dakument README</comment>
- <comment xml:lang="bg">Документ — „Да се прочете“</comment>
- <comment xml:lang="ca">document README</comment>
- <comment xml:lang="cs">dokument README</comment>
- <comment xml:lang="cy">Dogfen README</comment>
- <comment xml:lang="da">README-dokument</comment>
- <comment xml:lang="de">README-Dokument</comment>
- <comment xml:lang="el">Έγγραφο README</comment>
- <comment xml:lang="en_GB">README document</comment>
- <comment xml:lang="eo">README-dokumento</comment>
- <comment xml:lang="es">documento README</comment>
- <comment xml:lang="eu">README dokumentua</comment>
- <comment xml:lang="fi">LUEMINUT-asiakirja</comment>
- <comment xml:lang="fo">README skjal</comment>
- <comment xml:lang="fr">document LISEZ-MOI</comment>
- <comment xml:lang="ga">cáipéis README</comment>
- <comment xml:lang="gl">documento README</comment>
- <comment xml:lang="he">מסמך README</comment>
- <comment xml:lang="hr">README dokument</comment>
- <comment xml:lang="hu">README-dokumentum</comment>
- <comment xml:lang="ia">Documento LEGE-ME</comment>
- <comment xml:lang="id">Dokumen README</comment>
- <comment xml:lang="it">Documento README</comment>
- <comment xml:lang="ja">README ドキュメント</comment>
- <comment xml:lang="kk">README құжаты</comment>
- <comment xml:lang="ko">README 문서</comment>
- <comment xml:lang="lt">README dokumentas</comment>
- <comment xml:lang="lv">README dokuments</comment>
- <comment xml:lang="ms">Dokumen README</comment>
- <comment xml:lang="nb">README-dokument</comment>
- <comment xml:lang="nl">LEESMIJ-document</comment>
- <comment xml:lang="nn">README-dokument</comment>
- <comment xml:lang="oc">document LISEZ-MOI</comment>
- <comment xml:lang="pl">Dokument README</comment>
- <comment xml:lang="pt">documento LEIA-ME</comment>
- <comment xml:lang="pt_BR">Documento README</comment>
- <comment xml:lang="ro">Document README</comment>
- <comment xml:lang="ru">Документ README</comment>
- <comment xml:lang="sk">Dokument README</comment>
- <comment xml:lang="sl">Dokument README</comment>
- <comment xml:lang="sq">Dokument README</comment>
- <comment xml:lang="sr">документ ПРОЧИТАЈМЕ</comment>
- <comment xml:lang="sv">README-dokument</comment>
- <comment xml:lang="tr">BENİOKU belgesi</comment>
- <comment xml:lang="uk">документ README</comment>
- <comment xml:lang="vi">Tài liệu Đọc Đi (README)</comment>
- <comment xml:lang="zh_CN">README 文档</comment>
<comment xml:lang="zh_TW">README 說明文件</comment>
+ <comment xml:lang="zh_CN">README 文档</comment>
+ <comment xml:lang="vi">Tài liệu Đọc Đi (README)</comment>
+ <comment xml:lang="uk">документ README</comment>
+ <comment xml:lang="tr">README belgesi</comment>
+ <comment xml:lang="sv">README-dokument</comment>
+ <comment xml:lang="sr">документ ПРОЧИТАЈМЕ</comment>
+ <comment xml:lang="sq">dokument README</comment>
+ <comment xml:lang="sl">Dokument README</comment>
+ <comment xml:lang="si">README ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument README</comment>
+ <comment xml:lang="ru">Документ README</comment>
+ <comment xml:lang="ro">Document README</comment>
+ <comment xml:lang="pt_BR">Documento README</comment>
+ <comment xml:lang="pt">documento LEIA-ME</comment>
+ <comment xml:lang="pl">Dokument README</comment>
+ <comment xml:lang="oc">document LISEZ-MOI</comment>
+ <comment xml:lang="nn">README-dokument</comment>
+ <comment xml:lang="nl">LEESMIJ-document</comment>
+ <comment xml:lang="nb">README-dokument</comment>
+ <comment xml:lang="ms">Dokumen README</comment>
+ <comment xml:lang="lv">README dokuments</comment>
+ <comment xml:lang="lt">README dokumentas</comment>
+ <comment xml:lang="ko">README 문서</comment>
+ <comment xml:lang="kk">README құжаты</comment>
+ <comment xml:lang="ja">README ドキュメント</comment>
+ <comment xml:lang="it">Documento README</comment>
+ <comment xml:lang="is">README skjal</comment>
+ <comment xml:lang="id">Dokumen README</comment>
+ <comment xml:lang="ia">Documento LEGE-ME</comment>
+ <comment xml:lang="hu">README-dokumentum</comment>
+ <comment xml:lang="hr">README dokument</comment>
+ <comment xml:lang="he">מסמך README</comment>
+ <comment xml:lang="gl">documento README</comment>
+ <comment xml:lang="ga">cáipéis README</comment>
+ <comment xml:lang="fur">document README</comment>
+ <comment xml:lang="fr">document LISEZ-MOI</comment>
+ <comment xml:lang="fo">README skjal</comment>
+ <comment xml:lang="fi">LUEMINUT-asiakirja</comment>
+ <comment xml:lang="eu">README dokumentua</comment>
+ <comment xml:lang="es">documento README</comment>
+ <comment xml:lang="eo">README-dokumento</comment>
+ <comment xml:lang="en_GB">README document</comment>
+ <comment xml:lang="el">Έγγραφο README</comment>
+ <comment xml:lang="de">README-Dokument</comment>
+ <comment xml:lang="da">README-dokument</comment>
+ <comment xml:lang="cy">Dogfen README</comment>
+ <comment xml:lang="cs">dokument README</comment>
+ <comment xml:lang="ca">document README</comment>
+ <comment xml:lang="bg">Документ — „Да се прочете“</comment>
+ <comment xml:lang="be@latin">Dakument README</comment>
+ <comment xml:lang="be">дакумент README</comment>
+ <comment xml:lang="az">README sənədi</comment>
+ <comment xml:lang="ast">Documentu LLEIME</comment>
+ <comment xml:lang="ar">مستند README</comment>
+ <comment xml:lang="af">README-dokument</comment>
<sub-class-of type="text/plain"/>
<glob weight="10" pattern="README*"/>
</mime-type>
<mime-type type="text/x-nfo">
<comment>NFO document</comment>
- <comment xml:lang="ar">مستند NFO</comment>
- <comment xml:lang="ast">Documentu NFO</comment>
- <comment xml:lang="be@latin">Dakument NFO</comment>
- <comment xml:lang="bg">Документ — NFO</comment>
- <comment xml:lang="ca">document NFO</comment>
- <comment xml:lang="cs">dokument NFO</comment>
- <comment xml:lang="da">NFO-dokument</comment>
- <comment xml:lang="de">NFO-Dokument</comment>
- <comment xml:lang="el">Έγγραφο NFO</comment>
- <comment xml:lang="en_GB">NFO document</comment>
- <comment xml:lang="eo">NFO-dokumento</comment>
- <comment xml:lang="es">documento NFO</comment>
- <comment xml:lang="eu">NFO dokumentua</comment>
- <comment xml:lang="fi">NFO-asiakirja</comment>
- <comment xml:lang="fo">NFO skjal</comment>
- <comment xml:lang="fr">document NFO</comment>
- <comment xml:lang="ga">cáipéis NFO</comment>
- <comment xml:lang="gl">documento NFO</comment>
- <comment xml:lang="he">מסמך NFO</comment>
- <comment xml:lang="hr">NFO dokument</comment>
- <comment xml:lang="hu">NFO-dokumentum</comment>
- <comment xml:lang="ia">Documento NFO</comment>
- <comment xml:lang="id">Dokumen NFO</comment>
- <comment xml:lang="it">Documento NFO</comment>
- <comment xml:lang="ja">NFO ドキュメント</comment>
- <comment xml:lang="kk">NFO құжаты</comment>
- <comment xml:lang="ko">NFO 문서</comment>
- <comment xml:lang="lt">NFO dokumentas</comment>
- <comment xml:lang="lv">NFO dokuments</comment>
- <comment xml:lang="nb">NFO-dokument</comment>
- <comment xml:lang="nl">NFO-document</comment>
- <comment xml:lang="nn">NFO-dokument</comment>
- <comment xml:lang="oc">document NFO</comment>
- <comment xml:lang="pl">Dokument NFO</comment>
- <comment xml:lang="pt">documento NFO</comment>
- <comment xml:lang="pt_BR">Documento NFO</comment>
- <comment xml:lang="ro">Document NFO</comment>
- <comment xml:lang="ru">Документ NFO</comment>
- <comment xml:lang="sk">Dokument NFO</comment>
- <comment xml:lang="sl">Dokument NFO</comment>
- <comment xml:lang="sq">Dokument NFO</comment>
- <comment xml:lang="sr">документ НФО</comment>
- <comment xml:lang="sv">NFO-dokument</comment>
- <comment xml:lang="tr">NFO belgesi</comment>
- <comment xml:lang="uk">документ NFO</comment>
- <comment xml:lang="vi">Tài liệu NFO</comment>
- <comment xml:lang="zh_CN">NFO 文档</comment>
<comment xml:lang="zh_TW">NFO 文件</comment>
+ <comment xml:lang="zh_CN">NFO 文档</comment>
+ <comment xml:lang="vi">Tài liệu NFO</comment>
+ <comment xml:lang="uk">документ NFO</comment>
+ <comment xml:lang="tr">NFO belgesi</comment>
+ <comment xml:lang="sv">NFO-dokument</comment>
+ <comment xml:lang="sr">документ НФО</comment>
+ <comment xml:lang="sq">dokument NFO</comment>
+ <comment xml:lang="sl">Dokument NFO</comment>
+ <comment xml:lang="si">NFO ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument NFO</comment>
+ <comment xml:lang="ru">Документ NFO</comment>
+ <comment xml:lang="ro">Document NFO</comment>
+ <comment xml:lang="pt_BR">Documento NFO</comment>
+ <comment xml:lang="pt">documento NFO</comment>
+ <comment xml:lang="pl">Dokument NFO</comment>
+ <comment xml:lang="oc">document NFO</comment>
+ <comment xml:lang="nn">NFO-dokument</comment>
+ <comment xml:lang="nl">NFO-document</comment>
+ <comment xml:lang="nb">NFO-dokument</comment>
+ <comment xml:lang="lv">NFO dokuments</comment>
+ <comment xml:lang="lt">NFO dokumentas</comment>
+ <comment xml:lang="ko">NFO 문서</comment>
+ <comment xml:lang="kk">NFO құжаты</comment>
+ <comment xml:lang="ja">NFO ドキュメント</comment>
+ <comment xml:lang="it">Documento NFO</comment>
+ <comment xml:lang="is">NFO skjal</comment>
+ <comment xml:lang="id">Dokumen NFO</comment>
+ <comment xml:lang="ia">Documento NFO</comment>
+ <comment xml:lang="hu">NFO-dokumentum</comment>
+ <comment xml:lang="hr">NFO dokument</comment>
+ <comment xml:lang="he">מסמך NFO</comment>
+ <comment xml:lang="gl">documento NFO</comment>
+ <comment xml:lang="ga">cáipéis NFO</comment>
+ <comment xml:lang="fur">document NFO</comment>
+ <comment xml:lang="fr">document NFO</comment>
+ <comment xml:lang="fo">NFO skjal</comment>
+ <comment xml:lang="fi">NFO-asiakirja</comment>
+ <comment xml:lang="eu">NFO dokumentua</comment>
+ <comment xml:lang="es">documento NFO</comment>
+ <comment xml:lang="eo">NFO-dokumento</comment>
+ <comment xml:lang="en_GB">NFO document</comment>
+ <comment xml:lang="el">Έγγραφο NFO</comment>
+ <comment xml:lang="de">NFO-Dokument</comment>
+ <comment xml:lang="da">NFO-dokument</comment>
+ <comment xml:lang="cs">dokument NFO</comment>
+ <comment xml:lang="ca">document NFO</comment>
+ <comment xml:lang="bg">Документ — NFO</comment>
+ <comment xml:lang="be@latin">Dakument NFO</comment>
+ <comment xml:lang="be">дакумент NFO</comment>
+ <comment xml:lang="ast">Documentu NFO</comment>
+ <comment xml:lang="ar">مستند NFO</comment>
+ <comment xml:lang="af">NFO-dokument</comment>
<sub-class-of type="text/x-readme"/>
<glob pattern="*.nfo"/>
</mime-type>
+ <mime-type type="text/x-todo-txt">
+ <comment>Todo.txt file</comment>
+ <comment xml:lang="uk">файл Todo.txt</comment>
+ <comment xml:lang="sv">Todo.txt-fil</comment>
+ <comment xml:lang="ru">Файл Todo.txt</comment>
+ <comment xml:lang="pl">Plik Todo.txt</comment>
+ <comment xml:lang="ja">TODO文書</comment>
+ <comment xml:lang="it">File todo.txt</comment>
+ <comment xml:lang="es">archivo Todo.txt</comment>
+ <comment xml:lang="de">Todo.txt-Datei</comment>
+ <sub-class-of type="text/plain"/>
+ <magic priority="10">
+ <match type="string" value="(A) " offset="0"/>
+ <match type="string" value="x " offset="0"/>
+ </magic>
+ <glob weight="10" pattern="todo.txt"/>
+ </mime-type>
<mime-type type="text/x-rpm-spec">
<comment>RPM spec file</comment>
- <comment xml:lang="ar">ملف مواصفات RPM</comment>
- <comment xml:lang="be@latin">Specyfikacyjny fajł RPM</comment>
- <comment xml:lang="bg">Файл — спецификация за RPM</comment>
- <comment xml:lang="ca">fitxer spec RPM</comment>
- <comment xml:lang="cs">soubor specifikace RPM</comment>
- <comment xml:lang="da">RPM spec-fil</comment>
- <comment xml:lang="de">RPM-Spezifikationsdatei</comment>
- <comment xml:lang="el">Αρχείο spec RPM</comment>
- <comment xml:lang="en_GB">RPM spec file</comment>
- <comment xml:lang="es">archivo de especificaciones RPM</comment>
- <comment xml:lang="eu">RPM espezifikazio fitxategia</comment>
- <comment xml:lang="fi">RPM spec -tiedosto</comment>
- <comment xml:lang="fo">RPM tøknilýsingarfíla</comment>
- <comment xml:lang="fr">fichier de spécification RPM</comment>
- <comment xml:lang="ga">comhad spec RPM</comment>
- <comment xml:lang="gl">ficheiro de especificacións RPM</comment>
- <comment xml:lang="he">קובץ מפרט RPM</comment>
- <comment xml:lang="hr">RPM određena datoteka</comment>
- <comment xml:lang="hu">RPM spec fájl</comment>
- <comment xml:lang="ia">File de specification RPM</comment>
- <comment xml:lang="id">Berkas spesifikasi RPM</comment>
- <comment xml:lang="it">File specifica RPM</comment>
- <comment xml:lang="ja">RPM spec ファイル</comment>
- <comment xml:lang="kk">RPM анықтама файлы</comment>
- <comment xml:lang="ko">RPM spec 파일</comment>
- <comment xml:lang="lt">RPM spec failas</comment>
- <comment xml:lang="lv">RPM specifikācijas datne</comment>
- <comment xml:lang="nb">RPM-spesifikasjonsfil</comment>
- <comment xml:lang="nl">RPM-spec-bestand</comment>
- <comment xml:lang="nn">RPM spec-fil</comment>
- <comment xml:lang="oc">fichièr d'especificacion RPM</comment>
- <comment xml:lang="pl">Plik spec RPM</comment>
- <comment xml:lang="pt">ficheiro de especificações RPM</comment>
- <comment xml:lang="pt_BR">Arquivo de especificação RPM</comment>
- <comment xml:lang="ro">Fișier RPM spec</comment>
- <comment xml:lang="ru">Файл описания RPM</comment>
- <comment xml:lang="sk">Súbor RPM spec</comment>
- <comment xml:lang="sl">Določilna datoteka RPM</comment>
- <comment xml:lang="sq">File specifikimi RPM</comment>
- <comment xml:lang="sr">РПМ посебна датотека</comment>
- <comment xml:lang="sv">RPM spec-fil</comment>
- <comment xml:lang="tr">RPM spec dosyası</comment>
- <comment xml:lang="uk">spec-файл RPM</comment>
- <comment xml:lang="vi">Tập tin đặc tả RPM</comment>
- <comment xml:lang="zh_CN">RPM spec 文件</comment>
<comment xml:lang="zh_TW">RPM spec 規格檔</comment>
+ <comment xml:lang="zh_CN">RPM spec 文件</comment>
+ <comment xml:lang="vi">Tập tin đặc tả RPM</comment>
+ <comment xml:lang="uk">spec-файл RPM</comment>
+ <comment xml:lang="tr">RPM spec dosyası</comment>
+ <comment xml:lang="sv">RPM spec-fil</comment>
+ <comment xml:lang="sr">РПМ посебна датотека</comment>
+ <comment xml:lang="sq">kartelë specifikimesh RPM</comment>
+ <comment xml:lang="sl">Določilna datoteka RPM</comment>
+ <comment xml:lang="si">RPM පිරිවිතර ගොනුව</comment>
+ <comment xml:lang="sk">Súbor RPM spec</comment>
+ <comment xml:lang="ru">Файл описания RPM</comment>
+ <comment xml:lang="ro">Fișier RPM spec</comment>
+ <comment xml:lang="pt_BR">Arquivo de especificação RPM</comment>
+ <comment xml:lang="pt">ficheiro de especificações RPM</comment>
+ <comment xml:lang="pl">Plik spec RPM</comment>
+ <comment xml:lang="oc">fichièr d'especificacion RPM</comment>
+ <comment xml:lang="nn">RPM spec-fil</comment>
+ <comment xml:lang="nl">RPM-spec-bestand</comment>
+ <comment xml:lang="nb">RPM-spesifikasjonsfil</comment>
+ <comment xml:lang="lv">RPM specifikācijas datne</comment>
+ <comment xml:lang="lt">RPM spec failas</comment>
+ <comment xml:lang="ko">RPM spec 파일</comment>
+ <comment xml:lang="kk">RPM анықтама файлы</comment>
+ <comment xml:lang="ja">RPM spec ファイル</comment>
+ <comment xml:lang="it">File specifica RPM</comment>
+ <comment xml:lang="is">RPM spec-skrá</comment>
+ <comment xml:lang="id">Berkas spesifikasi RPM</comment>
+ <comment xml:lang="ia">File de specification RPM</comment>
+ <comment xml:lang="hu">RPM spec fájl</comment>
+ <comment xml:lang="hr">RPM određena datoteka</comment>
+ <comment xml:lang="he">קובץ מפרט RPM</comment>
+ <comment xml:lang="gl">ficheiro de especificacións RPM</comment>
+ <comment xml:lang="ga">comhad spec RPM</comment>
+ <comment xml:lang="fur">file di specifiche RPM</comment>
+ <comment xml:lang="fr">fichier de spécification RPM</comment>
+ <comment xml:lang="fo">RPM tøknilýsingarfíla</comment>
+ <comment xml:lang="fi">RPM spec -tiedosto</comment>
+ <comment xml:lang="eu">RPM espezifikazio fitxategia</comment>
+ <comment xml:lang="es">archivo de especificaciones RPM</comment>
+ <comment xml:lang="en_GB">RPM spec file</comment>
+ <comment xml:lang="el">Αρχείο spec RPM</comment>
+ <comment xml:lang="de">RPM-Spezifikationsdatei</comment>
+ <comment xml:lang="da">RPM spec-fil</comment>
+ <comment xml:lang="cs">soubor specifikace RPM</comment>
+ <comment xml:lang="ca">fitxer spec RPM</comment>
+ <comment xml:lang="bg">Файл — спецификация за RPM</comment>
+ <comment xml:lang="be@latin">Specyfikacyjny fajł RPM</comment>
+ <comment xml:lang="be">файл спецыфікацыі RPM</comment>
+ <comment xml:lang="ar">ملف مواصفات RPM</comment>
+ <comment xml:lang="af">RPM-spesifikasielêer</comment>
<acronym>RPM</acronym>
<expanded-acronym>Red Hat Package Manager</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.spec"/>
- <magic priority="50">
- <match value="Summary: " type="string" offset="0"/>
- <match value="%define " type="string" offset="0"/>
+ <magic>
+ <match type="string" value="Summary: " offset="0"/>
+ <match type="string" value="%define " offset="0"/>
</magic>
</mime-type>
<mime-type type="text/x-sass">
<comment>Sass CSS pre-processor file</comment>
- <comment xml:lang="ca">fitxer preprocessador CSS Sass</comment>
- <comment xml:lang="cs">soubor preprocesoru Sass CSS</comment>
- <comment xml:lang="da">Sass CSS-forbrænderfil</comment>
- <comment xml:lang="de">Sass-CSS-Präprozessordatei</comment>
- <comment xml:lang="en_GB">Sass CSS pre-processor file</comment>
- <comment xml:lang="es">archivo de preprocesador de CSS Sass</comment>
- <comment xml:lang="fr">fichier de prétraitement CSS Sass</comment>
- <comment xml:lang="ga">comhad réamhphróiseálaí CSS Sass</comment>
- <comment xml:lang="he">קובץ קדם עיבוד Sass CSS</comment>
- <comment xml:lang="hr">Sass CSS datoteka predobrade</comment>
- <comment xml:lang="hu">Sass CSS előfeldolgozó fájl</comment>
- <comment xml:lang="id">berkas pre-processor Sass CSS</comment>
- <comment xml:lang="it">File CSS Sass</comment>
- <comment xml:lang="kk">Sass CSS препроцессор файлы</comment>
- <comment xml:lang="ko">Sass CSS 전처리기 파일</comment>
- <comment xml:lang="pl">Plik preprocesora CSS Sass</comment>
- <comment xml:lang="pt_BR">Arquivo de pré-processamento Sass CSS</comment>
- <comment xml:lang="ru">Файл препроцессора Sass CSS</comment>
- <comment xml:lang="sk">Súbor Sass CSS pre-procesora</comment>
- <comment xml:lang="sr">датотека Сас ЦСС пре-процесора</comment>
- <comment xml:lang="sv">Sass CSS-preprocessorfil</comment>
- <comment xml:lang="tr">Sass CSS önişlemci dosyası</comment>
- <comment xml:lang="uk">файл препроцесора CSS Sass</comment>
- <comment xml:lang="zh_CN">Sass CSS 预处理器文件</comment>
<comment xml:lang="zh_TW">Sass CSS 處理器前檔案</comment>
+ <comment xml:lang="zh_CN">Sass CSS 预处理器文件</comment>
+ <comment xml:lang="uk">файл препроцесора CSS Sass</comment>
+ <comment xml:lang="tr">Sass CSS önişlemci dosyası</comment>
+ <comment xml:lang="sv">Sass CSS-preprocessorfil</comment>
+ <comment xml:lang="sr">датотека Сас ЦСС пре-процесора</comment>
+ <comment xml:lang="sq">kartelë pre-procesori CSS Sass</comment>
+ <comment xml:lang="si">Sass CSS පෙර-ප්‍රොසෙසර ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Sass CSS pre-procesora</comment>
+ <comment xml:lang="ru">Файл препроцессора Sass CSS</comment>
+ <comment xml:lang="pt_BR">Arquivo de pré-processamento Sass CSS</comment>
+ <comment xml:lang="pl">Plik preprocesora CSS Sass</comment>
+ <comment xml:lang="nl">SaSS CSS-voorverwerkersbestand</comment>
+ <comment xml:lang="ko">Sass CSS 전처리기 파일</comment>
+ <comment xml:lang="kk">Sass CSS препроцессор файлы</comment>
+ <comment xml:lang="ja">Sass CSS プリプロセッサファイル</comment>
+ <comment xml:lang="it">File CSS Sass</comment>
+ <comment xml:lang="is">Sass CSS pre-processor skrá</comment>
+ <comment xml:lang="id">Berkas pre-processor Sass CSS</comment>
+ <comment xml:lang="hu">Sass CSS előfeldolgozó fájl</comment>
+ <comment xml:lang="hr">Sass CSS datoteka predobrade</comment>
+ <comment xml:lang="he">קובץ קדם עיבוד Sass CSS</comment>
+ <comment xml:lang="ga">comhad réamhphróiseálaí CSS Sass</comment>
+ <comment xml:lang="fur">file di pre-elaborazion di CSS Sass</comment>
+ <comment xml:lang="fr">fichier de prétraitement CSS Sass</comment>
+ <comment xml:lang="fi">Sass CSS esikäsittelijä -tiedosto</comment>
+ <comment xml:lang="eu">Sass CSS fitxategi prozesatu gabea</comment>
+ <comment xml:lang="es">archivo de preprocesador de CSS Sass</comment>
+ <comment xml:lang="en_GB">Sass CSS pre-processor file</comment>
+ <comment xml:lang="de">Sass-CSS-Präprozessordatei</comment>
+ <comment xml:lang="da">Sass CSS pre-processor-fil</comment>
+ <comment xml:lang="cs">soubor preprocesoru Sass CSS</comment>
+ <comment xml:lang="ca">fitxer preprocessador CSS Sass</comment>
+ <comment xml:lang="bg">Директиви за препроцесора — Sass CSS</comment>
+ <comment xml:lang="be">файл прэпрацэсара Sass CSS</comment>
+ <comment xml:lang="ar">ملف Sass CSS قبل المعالج</comment>
+ <comment xml:lang="af">Sass CSS-voorverwerkerlêer</comment>
+ <acronym>Sass</acronym>
+ <expanded-acronym>Syntactically Awesome Style Sheets</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.sass"/>
<generic-icon name="text-x-generic"/>
</mime-type>
<mime-type type="text/x-scala">
<comment>Scala source code</comment>
- <comment xml:lang="bg">Изходен код — Scala</comment>
- <comment xml:lang="ca">codi font en Scala</comment>
- <comment xml:lang="cs">zdrojový kód Scala</comment>
- <comment xml:lang="da">Scala-kildekode</comment>
- <comment xml:lang="de">Scala-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Scala</comment>
- <comment xml:lang="en_GB">Scala source code</comment>
- <comment xml:lang="es">código fuente en Scala</comment>
- <comment xml:lang="eu">Scala iturburu-kodea</comment>
- <comment xml:lang="fi">Scala-lähdekoodi</comment>
- <comment xml:lang="fr">code source Scala</comment>
- <comment xml:lang="ga">cód foinseach Scala</comment>
- <comment xml:lang="gl">código fnote en Scala</comment>
- <comment xml:lang="he">קוד מקור של Scala</comment>
- <comment xml:lang="hr">Scala izvorni kôd</comment>
- <comment xml:lang="hu">Scala forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Scala</comment>
- <comment xml:lang="id">Kode sumber Scala</comment>
- <comment xml:lang="it">Codice sorgente Scala</comment>
- <comment xml:lang="ja">Scala ソースコード</comment>
- <comment xml:lang="ka">Scala-ის საწყისი კოდი</comment>
- <comment xml:lang="kk">Scala бастапқы коды</comment>
- <comment xml:lang="ko">Scala 소스 코드</comment>
- <comment xml:lang="lv">Scala pirmkods</comment>
- <comment xml:lang="nl">Scala broncode</comment>
- <comment xml:lang="oc">còde font Scala</comment>
- <comment xml:lang="pl">Kod źródłowy Scala</comment>
- <comment xml:lang="pt">código origem Scala</comment>
- <comment xml:lang="pt_BR">Código-fonte Scala</comment>
- <comment xml:lang="ru">Исходный код Scala</comment>
- <comment xml:lang="sk">Zdrojový kód Scala</comment>
- <comment xml:lang="sl">Izvorna koda Scala</comment>
- <comment xml:lang="sr">Скала изворни ко̂д</comment>
- <comment xml:lang="sv">Scala-källkod</comment>
- <comment xml:lang="tr">Scala kaynak kodu</comment>
- <comment xml:lang="uk">вихідний код мовою Scala</comment>
- <comment xml:lang="zh_CN">Scala 源代码</comment>
<comment xml:lang="zh_TW">Scala 源碼</comment>
+ <comment xml:lang="zh_CN">Scala 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Scala</comment>
+ <comment xml:lang="tr">Scala kaynak kodu</comment>
+ <comment xml:lang="sv">Scala-källkod</comment>
+ <comment xml:lang="sr">Скала изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Scala</comment>
+ <comment xml:lang="sl">Izvorna koda Scala</comment>
+ <comment xml:lang="si">Scala මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Scala</comment>
+ <comment xml:lang="ru">Исходный код Scala</comment>
+ <comment xml:lang="pt_BR">Código-fonte Scala</comment>
+ <comment xml:lang="pt">código origem Scala</comment>
+ <comment xml:lang="pl">Kod źródłowy Scala</comment>
+ <comment xml:lang="oc">còde font Scala</comment>
+ <comment xml:lang="nl">Scala broncode</comment>
+ <comment xml:lang="lv">Scala pirmkods</comment>
+ <comment xml:lang="ko">Scala 소스 코드</comment>
+ <comment xml:lang="kk">Scala бастапқы коды</comment>
+ <comment xml:lang="ka">Scala-ის საწყისი კოდი</comment>
+ <comment xml:lang="ja">Scala ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Scala</comment>
+ <comment xml:lang="is">Scala frumkóði</comment>
+ <comment xml:lang="id">Kode sumber Scala</comment>
+ <comment xml:lang="ia">Codice-fonte Scala</comment>
+ <comment xml:lang="hu">Scala forráskód</comment>
+ <comment xml:lang="hr">Scala izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Scala</comment>
+ <comment xml:lang="gl">código fnote en Scala</comment>
+ <comment xml:lang="ga">cód foinseach Scala</comment>
+ <comment xml:lang="fur">codiç sorzint Scala</comment>
+ <comment xml:lang="fr">code source Scala</comment>
+ <comment xml:lang="fi">Scala-lähdekoodi</comment>
+ <comment xml:lang="eu">Scala iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Scala</comment>
+ <comment xml:lang="en_GB">Scala source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Scala</comment>
+ <comment xml:lang="de">Scala-Quelltext</comment>
+ <comment xml:lang="da">Scala-kildekode</comment>
+ <comment xml:lang="cs">zdrojový kód Scala</comment>
+ <comment xml:lang="ca">codi font en Scala</comment>
+ <comment xml:lang="bg">Изходен код — Scala</comment>
+ <comment xml:lang="be">зыходны код Scala</comment>
+ <comment xml:lang="ar">شفرة مصدر Scala</comment>
+ <comment xml:lang="af">Scala-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.scala"/>
+ <glob pattern="*.sc"/>
</mime-type>
<mime-type type="text/x-scheme">
<comment>Scheme source code</comment>
- <comment xml:lang="ar">شفرة مصدر Scheme</comment>
- <comment xml:lang="az">Sxem mənbə kodu</comment>
- <comment xml:lang="be@latin">Kryničny kod Scheme</comment>
- <comment xml:lang="bg">Изходен код — Scheme</comment>
- <comment xml:lang="ca">codi font en Scheme</comment>
- <comment xml:lang="cs">zdrojový kód Scheme</comment>
- <comment xml:lang="cy">Ffynhonnell Rhaglen Scheme</comment>
- <comment xml:lang="da">Schemekildekode</comment>
- <comment xml:lang="de">Scheme-Quelltext</comment>
- <comment xml:lang="el">Πηγαίος κώδικας Scheme</comment>
- <comment xml:lang="en_GB">Scheme source code</comment>
- <comment xml:lang="eo">Scheme-fontkodo</comment>
- <comment xml:lang="es">código fuente en Scheme</comment>
- <comment xml:lang="eu">Scheme iturburu-kodea</comment>
- <comment xml:lang="fi">Scheme-lähdekoodi</comment>
- <comment xml:lang="fo">Scheme keldukota</comment>
- <comment xml:lang="fr">code source Scheme</comment>
- <comment xml:lang="ga">cód foinseach Scheme</comment>
- <comment xml:lang="gl">código fonte en Scheme</comment>
- <comment xml:lang="he">קוד מקור של Scheme</comment>
- <comment xml:lang="hr">Scheme izvorni kôd</comment>
- <comment xml:lang="hu">Scheme-forráskód</comment>
- <comment xml:lang="ia">Codice-fonte Scheme</comment>
- <comment xml:lang="id">Kode program Scheme</comment>
- <comment xml:lang="it">Codice sorgente Scheme</comment>
- <comment xml:lang="ja">Scheme ソースコード</comment>
- <comment xml:lang="kk">Scheme бастапқы коды</comment>
- <comment xml:lang="ko">Scheme 소스 코드</comment>
- <comment xml:lang="lt">Scheme pradinis kodas</comment>
- <comment xml:lang="lv">Scheme pirmkods</comment>
- <comment xml:lang="ms">Kod sumber Scheme</comment>
- <comment xml:lang="nb">Scheme-kildekode</comment>
- <comment xml:lang="nl">Scheme-broncode</comment>
- <comment xml:lang="nn">Scheme-kjeldekode</comment>
- <comment xml:lang="oc">còde font Scheme</comment>
- <comment xml:lang="pl">Kod źródłowy Scheme</comment>
- <comment xml:lang="pt">código origem Scheme</comment>
- <comment xml:lang="pt_BR">Código-fonte Scheme</comment>
- <comment xml:lang="ro">Cod sursă Scheme</comment>
- <comment xml:lang="ru">Исходный код Scheme</comment>
- <comment xml:lang="sk">Zdrojový kód Scheme</comment>
- <comment xml:lang="sl">Datoteka izvorne kode Scheme</comment>
- <comment xml:lang="sq">Kod burues Scheme</comment>
- <comment xml:lang="sr">Шемски изворни ко̂д</comment>
- <comment xml:lang="sv">Scheme-källkod</comment>
- <comment xml:lang="tr">Scheme kaynak kodu</comment>
- <comment xml:lang="uk">вихідний файл мовою Scheme</comment>
- <comment xml:lang="vi">Mã nguồn Scheme</comment>
- <comment xml:lang="zh_CN">Scheme 源代码</comment>
<comment xml:lang="zh_TW">Scheme 源碼</comment>
+ <comment xml:lang="zh_CN">Scheme 源代码</comment>
+ <comment xml:lang="vi">Mã nguồn Scheme</comment>
+ <comment xml:lang="uk">початковий код мовою Scheme</comment>
+ <comment xml:lang="tr">Scheme kaynak kodu</comment>
+ <comment xml:lang="sv">Scheme-källkod</comment>
+ <comment xml:lang="sr">Шемски изворни ко̂д</comment>
+ <comment xml:lang="sq">kod burim Scheme</comment>
+ <comment xml:lang="sl">Datoteka izvorne kode Scheme</comment>
+ <comment xml:lang="si">යෝජනා ක්‍රම මූල කේතය</comment>
+ <comment xml:lang="sk">Zdrojový kód Scheme</comment>
+ <comment xml:lang="ru">Исходный код Scheme</comment>
+ <comment xml:lang="ro">Cod sursă Scheme</comment>
+ <comment xml:lang="pt_BR">Código-fonte Scheme</comment>
+ <comment xml:lang="pt">código origem Scheme</comment>
+ <comment xml:lang="pl">Kod źródłowy Scheme</comment>
+ <comment xml:lang="oc">còde font Scheme</comment>
+ <comment xml:lang="nn">Scheme-kjeldekode</comment>
+ <comment xml:lang="nl">Scheme-broncode</comment>
+ <comment xml:lang="nb">Scheme-kildekode</comment>
+ <comment xml:lang="ms">Kod sumber Scheme</comment>
+ <comment xml:lang="lv">Scheme pirmkods</comment>
+ <comment xml:lang="lt">Scheme pradinis kodas</comment>
+ <comment xml:lang="ko">Scheme 소스 코드</comment>
+ <comment xml:lang="kk">Scheme бастапқы коды</comment>
+ <comment xml:lang="ja">Scheme ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Scheme</comment>
+ <comment xml:lang="is">Scheme frumkóði</comment>
+ <comment xml:lang="id">Kode program Scheme</comment>
+ <comment xml:lang="ia">Codice-fonte Scheme</comment>
+ <comment xml:lang="hu">Scheme-forráskód</comment>
+ <comment xml:lang="hr">Scheme izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Scheme</comment>
+ <comment xml:lang="gl">código fonte en Scheme</comment>
+ <comment xml:lang="ga">cód foinseach Scheme</comment>
+ <comment xml:lang="fur">codiç sorzint Scheme</comment>
+ <comment xml:lang="fr">code source Scheme</comment>
+ <comment xml:lang="fo">Scheme keldukota</comment>
+ <comment xml:lang="fi">Scheme-lähdekoodi</comment>
+ <comment xml:lang="eu">Scheme iturburu-kodea</comment>
+ <comment xml:lang="es">código fuente en Scheme</comment>
+ <comment xml:lang="eo">Scheme-fontkodo</comment>
+ <comment xml:lang="en_GB">Scheme source code</comment>
+ <comment xml:lang="el">Πηγαίος κώδικας Scheme</comment>
+ <comment xml:lang="de">Scheme-Quelltext</comment>
+ <comment xml:lang="da">Scheme-kildekode</comment>
+ <comment xml:lang="cy">Ffynhonnell Rhaglen Scheme</comment>
+ <comment xml:lang="cs">zdrojový kód Scheme</comment>
+ <comment xml:lang="ca">codi font en Scheme</comment>
+ <comment xml:lang="bg">Изходен код — Scheme</comment>
+ <comment xml:lang="be@latin">Kryničny kod Scheme</comment>
+ <comment xml:lang="be">зыходны код Scheme</comment>
+ <comment xml:lang="az">Sxem mənbə kodu</comment>
+ <comment xml:lang="ar">شفرة مصدر Scheme</comment>
+ <comment xml:lang="af">Scheme-bronkode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.scm"/>
<glob pattern="*.ss"/>
</mime-type>
<mime-type type="text/x-scss">
- <comment>Sass CSS pre-processor file</comment>
- <comment xml:lang="ca">fitxer preprocessador CSS Sass</comment>
- <comment xml:lang="cs">soubor preprocesoru Sass CSS</comment>
- <comment xml:lang="da">Sass CSS-forbrænderfil</comment>
- <comment xml:lang="de">Sass-CSS-Präprozessordatei</comment>
- <comment xml:lang="en_GB">Sass CSS pre-processor file</comment>
- <comment xml:lang="es">archivo de preprocesador de CSS Sass</comment>
- <comment xml:lang="fr">fichier de prétraitement CSS Sass</comment>
- <comment xml:lang="ga">comhad réamhphróiseálaí CSS Sass</comment>
- <comment xml:lang="he">קובץ קדם עיבוד Sass CSS</comment>
- <comment xml:lang="hr">Sass CSS datoteka predobrade</comment>
- <comment xml:lang="hu">Sass CSS előfeldolgozó fájl</comment>
- <comment xml:lang="id">berkas pre-processor Sass CSS</comment>
- <comment xml:lang="it">File CSS Sass</comment>
- <comment xml:lang="kk">Sass CSS препроцессор файлы</comment>
- <comment xml:lang="ko">Sass CSS 전처리기 파일</comment>
- <comment xml:lang="pl">Plik preprocesora CSS Sass</comment>
- <comment xml:lang="pt_BR">Arquivo de pré-processamento Sass CSS</comment>
- <comment xml:lang="ru">Файл препроцессора Sass CSS</comment>
- <comment xml:lang="sk">Súbor Sass CSS pre-procesora</comment>
- <comment xml:lang="sr">датотека Сас ЦСС пре-процесора</comment>
- <comment xml:lang="sv">Sass CSS-preprocessorfil</comment>
- <comment xml:lang="tr">Sass CSS önişlemci dosyası</comment>
- <comment xml:lang="uk">файл препроцесора CSS Sass</comment>
- <comment xml:lang="zh_CN">Sass CSS 预处理器文件</comment>
- <comment xml:lang="zh_TW">Sass CSS 處理器前檔案</comment>
+ <comment>SCSS pre-processor file</comment>
+ <comment xml:lang="zh_TW">SCSS 前處理器檔</comment>
+ <comment xml:lang="zh_CN">SCSS 预处理文件</comment>
+ <comment xml:lang="uk">файл засобу попередньої обробки SCSS</comment>
+ <comment xml:lang="tr">SCSS ön işleyici dosyası</comment>
+ <comment xml:lang="sv">SCSS förprocessorfil</comment>
+ <comment xml:lang="sq">kartelë pre-procesori SCSS</comment>
+ <comment xml:lang="si">SCSS පෙර සැකසුම් ගොනුව</comment>
+ <comment xml:lang="ru">Файл препроцессора SCSS</comment>
+ <comment xml:lang="pt_BR">Arquivo de pré-processamento SCSS</comment>
+ <comment xml:lang="pl">Plik preprocesora SCSS</comment>
+ <comment xml:lang="nl">SCSS-voorverwerkersbestand</comment>
+ <comment xml:lang="ko">SCSS 전처리 파일</comment>
+ <comment xml:lang="kk">SCSS препроцессор файлы</comment>
+ <comment xml:lang="ja">SCSS プリプロセッサファイル</comment>
+ <comment xml:lang="it">File SCSS</comment>
+ <comment xml:lang="is">SCSS pre-processor skrá</comment>
+ <comment xml:lang="id">Berkas preprosesor SCSS</comment>
+ <comment xml:lang="hu">SCSS előfeldolgozófájl</comment>
+ <comment xml:lang="hr">SCSS datoteka predobrade</comment>
+ <comment xml:lang="he">קובץ עיבוד קדם SCSS</comment>
+ <comment xml:lang="fr">fichier de prétraitement SCSS</comment>
+ <comment xml:lang="fi">SCSS esikäsittelijä -tiedosto</comment>
+ <comment xml:lang="eu">SCSS fitxategi prozesatu gabea</comment>
+ <comment xml:lang="es">archivo de preprocesador SCSS</comment>
+ <comment xml:lang="en_GB">SCSS pre-processor file</comment>
+ <comment xml:lang="de">SCSS-Präprozessordatei</comment>
+ <comment xml:lang="da">SCSS pre-processor-fil</comment>
+ <comment xml:lang="ca">fitxer preprocessador SCSS</comment>
+ <comment xml:lang="bg">Директиви за препроцесора — SCSS</comment>
+ <comment xml:lang="be">файл прэпрацэсара SCSS</comment>
+ <comment xml:lang="ar">ملف SCSS قبل المعالج</comment>
+ <acronym>SCSS</acronym>
+ <expanded-acronym>Sassy CSS</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.scss"/>
<generic-icon name="text-x-generic"/>
</mime-type>
<mime-type type="text/x-setext">
<comment>Setext document</comment>
- <comment xml:lang="ar">مستند Setext</comment>
- <comment xml:lang="ast">Documentu Setext</comment>
- <comment xml:lang="az">Setext sənədi</comment>
- <comment xml:lang="be@latin">Dakument Setext</comment>
- <comment xml:lang="bg">Документ — Setext</comment>
- <comment xml:lang="ca">document Setext</comment>
- <comment xml:lang="cs">dokument Setext</comment>
- <comment xml:lang="cy">Dogfen Setext</comment>
- <comment xml:lang="da">Setextdokument</comment>
- <comment xml:lang="de">Setext-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Setext</comment>
- <comment xml:lang="en_GB">Setext document</comment>
- <comment xml:lang="eo">Setext-dokumento</comment>
- <comment xml:lang="es">documento Setext</comment>
- <comment xml:lang="eu">Setext dokumentua</comment>
- <comment xml:lang="fi">Setext-asiakirja</comment>
- <comment xml:lang="fo">Setext skjal</comment>
- <comment xml:lang="fr">document Setext</comment>
- <comment xml:lang="ga">cáipéis Setext</comment>
- <comment xml:lang="gl">documento Settext</comment>
- <comment xml:lang="he">מסמך של Setext</comment>
- <comment xml:lang="hr">Setext dokument</comment>
- <comment xml:lang="hu">Setext-dokumentum</comment>
- <comment xml:lang="ia">Documento Setext</comment>
- <comment xml:lang="id">Dokumen Setext</comment>
- <comment xml:lang="it">Documento Setext</comment>
- <comment xml:lang="ja">Setext ドキュメント</comment>
- <comment xml:lang="kk">Setext құжаты</comment>
- <comment xml:lang="ko">Setext 문서</comment>
- <comment xml:lang="lt">Setext dokumentas</comment>
- <comment xml:lang="lv">Setext dokuments</comment>
- <comment xml:lang="ms">Dokumen Setext</comment>
- <comment xml:lang="nb">Setext-dokument</comment>
- <comment xml:lang="nl">Setext-document</comment>
- <comment xml:lang="nn">Setext-dokument</comment>
- <comment xml:lang="oc">document Setext</comment>
- <comment xml:lang="pl">Dokument Setext</comment>
- <comment xml:lang="pt">documento Setext</comment>
- <comment xml:lang="pt_BR">Documento Setext</comment>
- <comment xml:lang="ro">Document Setext</comment>
- <comment xml:lang="ru">Документ Setext</comment>
- <comment xml:lang="sk">Dokument Setext</comment>
- <comment xml:lang="sl">Dokument Setext</comment>
- <comment xml:lang="sq">Dokument Setext</comment>
- <comment xml:lang="sr">Сетекст документ</comment>
- <comment xml:lang="sv">Setext-dokument</comment>
- <comment xml:lang="tr">Setext belgesi</comment>
- <comment xml:lang="uk">документ Setext</comment>
- <comment xml:lang="vi">Tài liệu Setext</comment>
- <comment xml:lang="zh_CN">Setext 文档</comment>
<comment xml:lang="zh_TW">Setext 文件</comment>
+ <comment xml:lang="zh_CN">Setext 文档</comment>
+ <comment xml:lang="vi">Tài liệu Setext</comment>
+ <comment xml:lang="uk">документ Setext</comment>
+ <comment xml:lang="tr">Setext belgesi</comment>
+ <comment xml:lang="sv">Setext-dokument</comment>
+ <comment xml:lang="sr">Сетекст документ</comment>
+ <comment xml:lang="sq">dokument Setext</comment>
+ <comment xml:lang="sl">Dokument Setext</comment>
+ <comment xml:lang="si">පෙළ ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Setext</comment>
+ <comment xml:lang="ru">Документ Setext</comment>
+ <comment xml:lang="ro">Document Setext</comment>
+ <comment xml:lang="pt_BR">Documento Setext</comment>
+ <comment xml:lang="pt">documento Setext</comment>
+ <comment xml:lang="pl">Dokument Setext</comment>
+ <comment xml:lang="oc">document Setext</comment>
+ <comment xml:lang="nn">Setext-dokument</comment>
+ <comment xml:lang="nl">Setext-document</comment>
+ <comment xml:lang="nb">Setext-dokument</comment>
+ <comment xml:lang="ms">Dokumen Setext</comment>
+ <comment xml:lang="lv">Setext dokuments</comment>
+ <comment xml:lang="lt">Setext dokumentas</comment>
+ <comment xml:lang="ko">Setext 문서</comment>
+ <comment xml:lang="kk">Setext құжаты</comment>
+ <comment xml:lang="ja">Setext ドキュメント</comment>
+ <comment xml:lang="it">Documento Setext</comment>
+ <comment xml:lang="is">Setext skjal</comment>
+ <comment xml:lang="id">Dokumen Setext</comment>
+ <comment xml:lang="ia">Documento Setext</comment>
+ <comment xml:lang="hu">Setext-dokumentum</comment>
+ <comment xml:lang="hr">Setext dokument</comment>
+ <comment xml:lang="he">מסמך של Setext</comment>
+ <comment xml:lang="gl">documento Settext</comment>
+ <comment xml:lang="ga">cáipéis Setext</comment>
+ <comment xml:lang="fur">document Setext</comment>
+ <comment xml:lang="fr">document Setext</comment>
+ <comment xml:lang="fo">Setext skjal</comment>
+ <comment xml:lang="fi">Setext-asiakirja</comment>
+ <comment xml:lang="eu">Setext dokumentua</comment>
+ <comment xml:lang="es">documento Setext</comment>
+ <comment xml:lang="eo">Setext-dokumento</comment>
+ <comment xml:lang="en_GB">Setext document</comment>
+ <comment xml:lang="el">Έγγραφο Setext</comment>
+ <comment xml:lang="de">Setext-Dokument</comment>
+ <comment xml:lang="da">Setextdokument</comment>
+ <comment xml:lang="cy">Dogfen Setext</comment>
+ <comment xml:lang="cs">dokument Setext</comment>
+ <comment xml:lang="ca">document Setext</comment>
+ <comment xml:lang="bg">Документ — Setext</comment>
+ <comment xml:lang="be@latin">Dakument Setext</comment>
+ <comment xml:lang="be">дакумент Setext</comment>
+ <comment xml:lang="az">Setext sənədi</comment>
+ <comment xml:lang="ast">Documentu Setext</comment>
+ <comment xml:lang="ar">مستند Setext</comment>
+ <comment xml:lang="af">Setext-dokument</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.etx"/>
</mime-type>
<mime-type type="application/sql">
<comment>SQL code</comment>
- <comment xml:lang="ar">شفرة SQL</comment>
- <comment xml:lang="az">SQL kodu</comment>
- <comment xml:lang="be@latin">Kod SQL</comment>
- <comment xml:lang="bg">Код — SQL</comment>
- <comment xml:lang="ca">codi en SQL</comment>
- <comment xml:lang="cs">kód SQL</comment>
- <comment xml:lang="cy">Côd SQL</comment>
- <comment xml:lang="da">SQL-kode</comment>
- <comment xml:lang="de">SQL-Befehle</comment>
- <comment xml:lang="el">Κώδικας SQL</comment>
- <comment xml:lang="en_GB">SQL code</comment>
- <comment xml:lang="eo">SQL-kodo</comment>
- <comment xml:lang="es">código SQL</comment>
- <comment xml:lang="eu">SQL kodea</comment>
- <comment xml:lang="fi">SQL-koodi</comment>
- <comment xml:lang="fo">SQL kota</comment>
- <comment xml:lang="fr">code SQL</comment>
- <comment xml:lang="ga">cód SQL</comment>
- <comment xml:lang="gl">código SQL</comment>
- <comment xml:lang="he">קוד SQL</comment>
- <comment xml:lang="hr">SQL kôd</comment>
- <comment xml:lang="hu">SQL-kód</comment>
- <comment xml:lang="ia">Codice SQL</comment>
- <comment xml:lang="id">Kode SQL</comment>
- <comment xml:lang="it">Codice SQL</comment>
- <comment xml:lang="ja">SQL コード</comment>
- <comment xml:lang="kk">SQL коды</comment>
- <comment xml:lang="ko">SQL 코드</comment>
- <comment xml:lang="lt">SQL kodas</comment>
- <comment xml:lang="lv">SQL kods</comment>
- <comment xml:lang="ms">Kod SQL</comment>
- <comment xml:lang="nb">SQL-kildekode</comment>
- <comment xml:lang="nl">SQL-code</comment>
- <comment xml:lang="nn">SQL-kode</comment>
- <comment xml:lang="oc">còde SQL</comment>
- <comment xml:lang="pl">Kod SQL</comment>
- <comment xml:lang="pt">código SQL</comment>
- <comment xml:lang="pt_BR">Código SQL</comment>
- <comment xml:lang="ro">Cod SQL</comment>
- <comment xml:lang="ru">Код SQL</comment>
- <comment xml:lang="sk">Kód SQL</comment>
- <comment xml:lang="sl">Datoteka kode SQL</comment>
- <comment xml:lang="sq">Kod SQL</comment>
- <comment xml:lang="sr">СКуЛ ко̂д</comment>
- <comment xml:lang="sv">SQL-kod</comment>
- <comment xml:lang="tr">SQL kodu</comment>
- <comment xml:lang="uk">код SQL</comment>
- <comment xml:lang="vi">Mã SQL</comment>
- <comment xml:lang="zh_CN">SQL 代码</comment>
<comment xml:lang="zh_TW">SQL 程式碼</comment>
+ <comment xml:lang="zh_CN">SQL 代码</comment>
+ <comment xml:lang="vi">Mã SQL</comment>
+ <comment xml:lang="uk">код SQL</comment>
+ <comment xml:lang="tr">SQL kodu</comment>
+ <comment xml:lang="sv">SQL-kod</comment>
+ <comment xml:lang="sr">СКуЛ ко̂д</comment>
+ <comment xml:lang="sq">kod SQL</comment>
+ <comment xml:lang="sl">Datoteka kode SQL</comment>
+ <comment xml:lang="si">SQL කේතය</comment>
+ <comment xml:lang="sk">Kód SQL</comment>
+ <comment xml:lang="ru">Код SQL</comment>
+ <comment xml:lang="ro">Cod SQL</comment>
+ <comment xml:lang="pt_BR">Código SQL</comment>
+ <comment xml:lang="pt">código SQL</comment>
+ <comment xml:lang="pl">Kod SQL</comment>
+ <comment xml:lang="oc">còde SQL</comment>
+ <comment xml:lang="nn">SQL-kode</comment>
+ <comment xml:lang="nl">SQL-code</comment>
+ <comment xml:lang="nb">SQL-kildekode</comment>
+ <comment xml:lang="ms">Kod SQL</comment>
+ <comment xml:lang="lv">SQL kods</comment>
+ <comment xml:lang="lt">SQL kodas</comment>
+ <comment xml:lang="ko">SQL 코드</comment>
+ <comment xml:lang="kk">SQL коды</comment>
+ <comment xml:lang="ja">SQL コード</comment>
+ <comment xml:lang="it">Codice SQL</comment>
+ <comment xml:lang="is">SQL kóði</comment>
+ <comment xml:lang="id">Kode SQL</comment>
+ <comment xml:lang="ia">Codice SQL</comment>
+ <comment xml:lang="hu">SQL-kód</comment>
+ <comment xml:lang="hr">SQL kôd</comment>
+ <comment xml:lang="he">קוד SQL</comment>
+ <comment xml:lang="gl">código SQL</comment>
+ <comment xml:lang="ga">cód SQL</comment>
+ <comment xml:lang="fur">codiç SQL</comment>
+ <comment xml:lang="fr">code SQL</comment>
+ <comment xml:lang="fo">SQL kota</comment>
+ <comment xml:lang="fi">SQL-koodi</comment>
+ <comment xml:lang="eu">SQL kodea</comment>
+ <comment xml:lang="es">código SQL</comment>
+ <comment xml:lang="eo">SQL-kodo</comment>
+ <comment xml:lang="en_GB">SQL code</comment>
+ <comment xml:lang="el">Κώδικας SQL</comment>
+ <comment xml:lang="de">SQL-Befehle</comment>
+ <comment xml:lang="da">SQL-kode</comment>
+ <comment xml:lang="cy">Côd SQL</comment>
+ <comment xml:lang="cs">kód SQL</comment>
+ <comment xml:lang="ca">codi en SQL</comment>
+ <comment xml:lang="bg">Код — SQL</comment>
+ <comment xml:lang="be@latin">Kod SQL</comment>
+ <comment xml:lang="be">код SQL</comment>
+ <comment xml:lang="az">SQL kodu</comment>
+ <comment xml:lang="ar">شفرة SQL</comment>
+ <comment xml:lang="af">SQL-kode</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.sql"/>
<alias type="text/x-sql"/>
</mime-type>
- <mime-type type="text/x-tcl">
+ <mime-type type="text/tcl">
<comment>Tcl script</comment>
- <comment xml:lang="ar">سكربت Tcl</comment>
- <comment xml:lang="be@latin">Skrypt Tcl</comment>
- <comment xml:lang="bg">Скрипт — Tcl</comment>
- <comment xml:lang="ca">script Tcl</comment>
- <comment xml:lang="cs">skript Tcl</comment>
- <comment xml:lang="da">Tcl-program</comment>
- <comment xml:lang="de">Tcl-Skript</comment>
- <comment xml:lang="el">Δέσμη ενεργειών Tcl</comment>
- <comment xml:lang="en_GB">Tcl script</comment>
- <comment xml:lang="eo">Tcl-skripto</comment>
- <comment xml:lang="es">secuencia de órdenes en Tcl</comment>
- <comment xml:lang="eu">Tcl script-a</comment>
- <comment xml:lang="fi">Tcl-komentotiedosto</comment>
- <comment xml:lang="fo">Tcl boðrøð</comment>
- <comment xml:lang="fr">script Tcl</comment>
- <comment xml:lang="ga">script Tcl</comment>
- <comment xml:lang="gl">Script en Tcl</comment>
- <comment xml:lang="he">תסריט Tcl</comment>
- <comment xml:lang="hr">Tcl skripta</comment>
- <comment xml:lang="hu">Tcl-parancsfájl</comment>
- <comment xml:lang="ia">Script Tcl</comment>
- <comment xml:lang="id">Skrip Tcl</comment>
- <comment xml:lang="it">Script Tcl</comment>
- <comment xml:lang="ja">Tcl スクリプト</comment>
- <comment xml:lang="kk">Tcl сценарийі</comment>
- <comment xml:lang="ko">Tcl 스크립트</comment>
- <comment xml:lang="lt">Tcl scenarijus</comment>
- <comment xml:lang="lv">Tcl skripts</comment>
- <comment xml:lang="ms">Skrip Tcl</comment>
- <comment xml:lang="nb">Tcl-skript</comment>
- <comment xml:lang="nl">Tcl-script</comment>
- <comment xml:lang="nn">Tcl-skript</comment>
- <comment xml:lang="oc">escript Tcl</comment>
- <comment xml:lang="pl">Skrypt Tcl</comment>
- <comment xml:lang="pt">script Tcl</comment>
- <comment xml:lang="pt_BR">Script Tcl</comment>
- <comment xml:lang="ro">Script Tcl</comment>
- <comment xml:lang="ru">Сценарий Tcl</comment>
- <comment xml:lang="sk">Skript Tcl</comment>
- <comment xml:lang="sl">Skriptna datoteka Tcl</comment>
- <comment xml:lang="sq">Script Tcl</comment>
- <comment xml:lang="sr">Тцл скрипта</comment>
- <comment xml:lang="sv">Tcl-skript</comment>
- <comment xml:lang="tr">Tcl betiği</comment>
- <comment xml:lang="uk">скрипт Tcl</comment>
- <comment xml:lang="vi">Văn lệnh Tcl</comment>
- <comment xml:lang="zh_CN">Tcl 脚本</comment>
<comment xml:lang="zh_TW">Tcl 描述語言檔</comment>
+ <comment xml:lang="zh_CN">Tcl 脚本</comment>
+ <comment xml:lang="vi">Văn lệnh Tcl</comment>
+ <comment xml:lang="uk">скрипт Tcl</comment>
+ <comment xml:lang="tr">Tcl betiği</comment>
+ <comment xml:lang="sv">Tcl-skript</comment>
+ <comment xml:lang="sr">Тцл скрипта</comment>
+ <comment xml:lang="sq">programth Tcl</comment>
+ <comment xml:lang="sl">Skriptna datoteka Tcl</comment>
+ <comment xml:lang="si">Tcl පිටපත</comment>
+ <comment xml:lang="sk">Skript Tcl</comment>
+ <comment xml:lang="ru">Сценарий Tcl</comment>
+ <comment xml:lang="ro">Script Tcl</comment>
+ <comment xml:lang="pt_BR">Script Tcl</comment>
+ <comment xml:lang="pt">script Tcl</comment>
+ <comment xml:lang="pl">Skrypt Tcl</comment>
+ <comment xml:lang="oc">escript Tcl</comment>
+ <comment xml:lang="nn">Tcl-skript</comment>
+ <comment xml:lang="nl">Tcl-script</comment>
+ <comment xml:lang="nb">Tcl-skript</comment>
+ <comment xml:lang="ms">Skrip Tcl</comment>
+ <comment xml:lang="lv">Tcl skripts</comment>
+ <comment xml:lang="lt">Tcl scenarijus</comment>
+ <comment xml:lang="ko">Tcl 스크립트</comment>
+ <comment xml:lang="kk">Tcl сценарийі</comment>
+ <comment xml:lang="ja">Tcl スクリプト</comment>
+ <comment xml:lang="it">Script Tcl</comment>
+ <comment xml:lang="is">Tcl skrifta</comment>
+ <comment xml:lang="id">Skrip Tcl</comment>
+ <comment xml:lang="ia">Script Tcl</comment>
+ <comment xml:lang="hu">Tcl-parancsfájl</comment>
+ <comment xml:lang="hr">Tcl skripta</comment>
+ <comment xml:lang="he">תסריט Tcl</comment>
+ <comment xml:lang="gl">Script en Tcl</comment>
+ <comment xml:lang="ga">script Tcl</comment>
+ <comment xml:lang="fur">script Tcl</comment>
+ <comment xml:lang="fr">script Tcl</comment>
+ <comment xml:lang="fo">Tcl boðrøð</comment>
+ <comment xml:lang="fi">Tcl-komentotiedosto</comment>
+ <comment xml:lang="eu">Tcl script-a</comment>
+ <comment xml:lang="es">secuencia de órdenes en Tcl</comment>
+ <comment xml:lang="eo">Tcl-skripto</comment>
+ <comment xml:lang="en_GB">Tcl script</comment>
+ <comment xml:lang="el">Δέσμη ενεργειών Tcl</comment>
+ <comment xml:lang="de">Tcl-Skript</comment>
+ <comment xml:lang="da">Tcl-program</comment>
+ <comment xml:lang="cs">skript Tcl</comment>
+ <comment xml:lang="ca">script Tcl</comment>
+ <comment xml:lang="bg">Скрипт — Tcl</comment>
+ <comment xml:lang="be@latin">Skrypt Tcl</comment>
+ <comment xml:lang="be">скрыпт Tcl</comment>
+ <comment xml:lang="ar">سكربت Tcl</comment>
+ <comment xml:lang="af">Tcl-skrip</comment>
+ <alias type="text/x-tcl"/>
<sub-class-of type="text/plain"/>
<glob pattern="*.tcl"/>
<glob pattern="*.tk"/>
</mime-type>
<mime-type type="text/x-tex">
<comment>TeX document</comment>
- <comment xml:lang="ar">مستند TeX</comment>
- <comment xml:lang="ast">Documentu TeX</comment>
- <comment xml:lang="be@latin">Dakument TeX</comment>
- <comment xml:lang="bg">Документ — TeX</comment>
- <comment xml:lang="ca">document TeX</comment>
- <comment xml:lang="cs">dokument TeX</comment>
- <comment xml:lang="cy">Dogfen TeX </comment>
- <comment xml:lang="da">TeX-dokument</comment>
- <comment xml:lang="de">TeX-Dokument</comment>
- <comment xml:lang="el">Έγγραφο TeX</comment>
- <comment xml:lang="en_GB">TeX document</comment>
- <comment xml:lang="eo">TeX-dokumento</comment>
- <comment xml:lang="es">documento de TeX</comment>
- <comment xml:lang="eu">TeX dokumentua</comment>
- <comment xml:lang="fi">TeX-asiakirja</comment>
- <comment xml:lang="fo">TeX skjal</comment>
- <comment xml:lang="fr">document TeX</comment>
- <comment xml:lang="ga">cáipéis TeX</comment>
- <comment xml:lang="gl">documenton TeX</comment>
- <comment xml:lang="he">מסמך TeX</comment>
- <comment xml:lang="hr">TeX dokument</comment>
- <comment xml:lang="hu">TeX-dokumentum</comment>
- <comment xml:lang="ia">Documento TeX</comment>
- <comment xml:lang="id">Dokumen TeX</comment>
- <comment xml:lang="it">Documento TeX</comment>
- <comment xml:lang="ja">TeX ドキュメント</comment>
- <comment xml:lang="kk">TeX құжаты</comment>
- <comment xml:lang="ko">TeX 문서</comment>
- <comment xml:lang="lt">TeX dokumentas</comment>
- <comment xml:lang="lv">TeX dokuments</comment>
- <comment xml:lang="ms">Dokumen TeX</comment>
- <comment xml:lang="nb">TeX-dokument</comment>
- <comment xml:lang="nl">TeX-document</comment>
- <comment xml:lang="nn">TeX-dokument</comment>
- <comment xml:lang="oc">document TeX</comment>
- <comment xml:lang="pl">Dokument TeX</comment>
- <comment xml:lang="pt">documento TeX</comment>
- <comment xml:lang="pt_BR">Documento TeX</comment>
- <comment xml:lang="ro">Document TeX</comment>
- <comment xml:lang="ru">Документ TeX</comment>
- <comment xml:lang="sk">Dokument TeX</comment>
- <comment xml:lang="sl">Dokument TeX</comment>
- <comment xml:lang="sq">Dokument TeX</comment>
- <comment xml:lang="sr">ТеКс документ</comment>
- <comment xml:lang="sv">TeX-dokument</comment>
- <comment xml:lang="tr">TeX belgesi</comment>
- <comment xml:lang="uk">документ TeX</comment>
- <comment xml:lang="vi">Tài liệu TeX</comment>
- <comment xml:lang="zh_CN">TeX 文档</comment>
<comment xml:lang="zh_TW">TeX 文件</comment>
+ <comment xml:lang="zh_CN">TeX 文档</comment>
+ <comment xml:lang="vi">Tài liệu TeX</comment>
+ <comment xml:lang="uk">документ TeX</comment>
+ <comment xml:lang="tr">TeX belgesi</comment>
+ <comment xml:lang="sv">TeX-dokument</comment>
+ <comment xml:lang="sr">ТеКс документ</comment>
+ <comment xml:lang="sq">dokument TeX</comment>
+ <comment xml:lang="sl">Dokument TeX</comment>
+ <comment xml:lang="si">TeX ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument TeX</comment>
+ <comment xml:lang="ru">Документ TeX</comment>
+ <comment xml:lang="ro">Document TeX</comment>
+ <comment xml:lang="pt_BR">Documento TeX</comment>
+ <comment xml:lang="pt">documento TeX</comment>
+ <comment xml:lang="pl">Dokument TeX</comment>
+ <comment xml:lang="oc">document TeX</comment>
+ <comment xml:lang="nn">TeX-dokument</comment>
+ <comment xml:lang="nl">TeX-document</comment>
+ <comment xml:lang="nb">TeX-dokument</comment>
+ <comment xml:lang="ms">Dokumen TeX</comment>
+ <comment xml:lang="lv">TeX dokuments</comment>
+ <comment xml:lang="lt">TeX dokumentas</comment>
+ <comment xml:lang="ko">TeX 문서</comment>
+ <comment xml:lang="kk">TeX құжаты</comment>
+ <comment xml:lang="ja">TeX ドキュメント</comment>
+ <comment xml:lang="it">Documento TeX</comment>
+ <comment xml:lang="is">TeX skjal</comment>
+ <comment xml:lang="id">Dokumen TeX</comment>
+ <comment xml:lang="ia">Documento TeX</comment>
+ <comment xml:lang="hu">TeX-dokumentum</comment>
+ <comment xml:lang="hr">TeX dokument</comment>
+ <comment xml:lang="he">מסמך TeX</comment>
+ <comment xml:lang="gl">documenton TeX</comment>
+ <comment xml:lang="ga">cáipéis TeX</comment>
+ <comment xml:lang="fur">document TeX</comment>
+ <comment xml:lang="fr">document TeX</comment>
+ <comment xml:lang="fo">TeX skjal</comment>
+ <comment xml:lang="fi">TeX-asiakirja</comment>
+ <comment xml:lang="eu">TeX dokumentua</comment>
+ <comment xml:lang="es">documento de TeX</comment>
+ <comment xml:lang="eo">TeX-dokumento</comment>
+ <comment xml:lang="en_GB">TeX document</comment>
+ <comment xml:lang="el">Έγγραφο TeX</comment>
+ <comment xml:lang="de">TeX-Dokument</comment>
+ <comment xml:lang="da">TeX-dokument</comment>
+ <comment xml:lang="cy">Dogfen TeX </comment>
+ <comment xml:lang="cs">dokument TeX</comment>
+ <comment xml:lang="ca">document TeX</comment>
+ <comment xml:lang="bg">Документ — TeX</comment>
+ <comment xml:lang="be@latin">Dakument TeX</comment>
+ <comment xml:lang="be">дакумент TeX</comment>
+ <comment xml:lang="ast">Documentu TeX</comment>
+ <comment xml:lang="ar">مستند TeX</comment>
+ <comment xml:lang="af">TeX-dokument</comment>
<sub-class-of type="text/plain"/>
<alias type="application/x-tex"/>
<glob pattern="*.tex"/>
@@ -36490,460 +38774,573 @@
<glob pattern="*.ins"/>
<glob pattern="*.latex"/>
<magic priority="10">
- <match value="%" type="string" offset="0"/>
+ <match type="string" value="%" offset="0"/>
</magic>
- <magic priority="50">
- <match value="documentclass" type="string" offset="1"/>
+ <magic>
+ <match type="string" value="documentclass" offset="1"/>
</magic>
</mime-type>
<mime-type type="text/x-texinfo">
<comment>TeXInfo document</comment>
- <comment xml:lang="ar">مستند TeXInfo</comment>
- <comment xml:lang="ast">Documentu TeXInfo</comment>
- <comment xml:lang="az">TeXInfo sənədi</comment>
- <comment xml:lang="be@latin">Dakument TeXInfo</comment>
- <comment xml:lang="bg">Документ — TeXInfo</comment>
- <comment xml:lang="ca">document TeXInfo</comment>
- <comment xml:lang="cs">dokument TeXInfo</comment>
- <comment xml:lang="cy">Dogfen TeXInfo</comment>
- <comment xml:lang="da">TeXInfo-dokument</comment>
- <comment xml:lang="de">TeXInfo-Dokument</comment>
- <comment xml:lang="el">Έγγραφο TeXInfo</comment>
- <comment xml:lang="en_GB">TeXInfo document</comment>
- <comment xml:lang="eo">TeXInfo-dokumento</comment>
- <comment xml:lang="es">documento de TeXInfo</comment>
- <comment xml:lang="eu">TeXInfo dokumentua</comment>
- <comment xml:lang="fi">TeXInfo-asiakirja</comment>
- <comment xml:lang="fo">TeXInfo skjal</comment>
- <comment xml:lang="fr">document TeXInfo</comment>
- <comment xml:lang="ga">cáipéis TeXInfo</comment>
- <comment xml:lang="gl">documento TeXInfo</comment>
- <comment xml:lang="he">מסמך של TeXInfo</comment>
- <comment xml:lang="hr">TeXInfo dokument</comment>
- <comment xml:lang="hu">TeXInfo-dokumentum</comment>
- <comment xml:lang="ia">Documento TeXInfo</comment>
- <comment xml:lang="id">Dokumen TeXInfo</comment>
- <comment xml:lang="it">Documento TeXInfo</comment>
- <comment xml:lang="ja">TeXInfo ドキュメント</comment>
- <comment xml:lang="kk">TeXInfo құжаты</comment>
- <comment xml:lang="ko">TeXInfo 문서</comment>
- <comment xml:lang="lt">TeXInfo dokumentas</comment>
- <comment xml:lang="lv">TeXInfo dokuments</comment>
- <comment xml:lang="ms">Dokumen TeXInfo</comment>
- <comment xml:lang="nb">TeXInfo-dokument</comment>
- <comment xml:lang="nl">TeXInfo-document</comment>
- <comment xml:lang="nn">TeXInfo-dokument</comment>
- <comment xml:lang="oc">document TeXInfo</comment>
- <comment xml:lang="pl">Dokument TeXInfo</comment>
- <comment xml:lang="pt">documento TeXInfo</comment>
- <comment xml:lang="pt_BR">Documento TeXInfo</comment>
- <comment xml:lang="ro">Document TexInfo</comment>
- <comment xml:lang="ru">Документ TeXInfo</comment>
- <comment xml:lang="sk">Dokument TeXInfo</comment>
- <comment xml:lang="sl">Dokument TeXInfo</comment>
- <comment xml:lang="sq">Dokument TeXInfo</comment>
- <comment xml:lang="sr">ТеКсинфо документ</comment>
- <comment xml:lang="sv">TeXInfo-dokument</comment>
- <comment xml:lang="tr">TeXInfo belgesi</comment>
- <comment xml:lang="uk">документ TeXInfo</comment>
- <comment xml:lang="vi">Tài liệu TeXInfo</comment>
- <comment xml:lang="zh_CN">TeXInfo 文档</comment>
<comment xml:lang="zh_TW">TeXInfo 文件</comment>
+ <comment xml:lang="zh_CN">TeXInfo 文档</comment>
+ <comment xml:lang="vi">Tài liệu TeXInfo</comment>
+ <comment xml:lang="uk">документ TeXInfo</comment>
+ <comment xml:lang="tr">TeXInfo belgesi</comment>
+ <comment xml:lang="sv">TeXInfo-dokument</comment>
+ <comment xml:lang="sr">ТеКсинфо документ</comment>
+ <comment xml:lang="sq">dokument TeXInfo</comment>
+ <comment xml:lang="sl">Dokument TeXInfo</comment>
+ <comment xml:lang="si">TeXInfo ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument TeXInfo</comment>
+ <comment xml:lang="ru">Документ TeXInfo</comment>
+ <comment xml:lang="ro">Document TexInfo</comment>
+ <comment xml:lang="pt_BR">Documento TeXInfo</comment>
+ <comment xml:lang="pt">documento TeXInfo</comment>
+ <comment xml:lang="pl">Dokument TeXInfo</comment>
+ <comment xml:lang="oc">document TeXInfo</comment>
+ <comment xml:lang="nn">TeXInfo-dokument</comment>
+ <comment xml:lang="nl">TeXInfo-document</comment>
+ <comment xml:lang="nb">TeXInfo-dokument</comment>
+ <comment xml:lang="ms">Dokumen TeXInfo</comment>
+ <comment xml:lang="lv">TeXInfo dokuments</comment>
+ <comment xml:lang="lt">TeXInfo dokumentas</comment>
+ <comment xml:lang="ko">TeXInfo 문서</comment>
+ <comment xml:lang="kk">TeXInfo құжаты</comment>
+ <comment xml:lang="ja">TeXInfo ドキュメント</comment>
+ <comment xml:lang="it">Documento TeXInfo</comment>
+ <comment xml:lang="is">TeXInfo skjal</comment>
+ <comment xml:lang="id">Dokumen TeXInfo</comment>
+ <comment xml:lang="ia">Documento TeXInfo</comment>
+ <comment xml:lang="hu">TeXInfo-dokumentum</comment>
+ <comment xml:lang="hr">TeXInfo dokument</comment>
+ <comment xml:lang="he">מסמך של TeXInfo</comment>
+ <comment xml:lang="gl">documento TeXInfo</comment>
+ <comment xml:lang="ga">cáipéis TeXInfo</comment>
+ <comment xml:lang="fur">document TeXInfo</comment>
+ <comment xml:lang="fr">document TeXInfo</comment>
+ <comment xml:lang="fo">TeXInfo skjal</comment>
+ <comment xml:lang="fi">TeXInfo-asiakirja</comment>
+ <comment xml:lang="eu">TeXInfo dokumentua</comment>
+ <comment xml:lang="es">documento de TeXInfo</comment>
+ <comment xml:lang="eo">TeXInfo-dokumento</comment>
+ <comment xml:lang="en_GB">TeXInfo document</comment>
+ <comment xml:lang="el">Έγγραφο TeXInfo</comment>
+ <comment xml:lang="de">TeXInfo-Dokument</comment>
+ <comment xml:lang="da">TeXInfo-dokument</comment>
+ <comment xml:lang="cy">Dogfen TeXInfo</comment>
+ <comment xml:lang="cs">dokument TeXInfo</comment>
+ <comment xml:lang="ca">document TeXInfo</comment>
+ <comment xml:lang="bg">Документ — TeXInfo</comment>
+ <comment xml:lang="be@latin">Dakument TeXInfo</comment>
+ <comment xml:lang="be">дакумент TeXInfo</comment>
+ <comment xml:lang="az">TeXInfo sənədi</comment>
+ <comment xml:lang="ast">Documentu TeXInfo</comment>
+ <comment xml:lang="ar">مستند TeXInfo</comment>
+ <comment xml:lang="af">TeXInfo-dokument</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.texi"/>
<glob pattern="*.texinfo"/>
</mime-type>
+ <mime-type type="text/x-typst">
+ <comment>Typst document</comment>
+ <comment xml:lang="uk">документ Typst</comment>
+ <comment xml:lang="sv">Typst-dokument</comment>
+ <comment xml:lang="ru">Документ Typst</comment>
+ <comment xml:lang="pl">Dokument Typst</comment>
+ <comment xml:lang="it">Documento Typst</comment>
+ <comment xml:lang="gl">Documento de Typst</comment>
+ <comment xml:lang="eu">Typst dokumentua</comment>
+ <comment xml:lang="es">documento de Typst</comment>
+ <comment xml:lang="de">Typst-Dokument</comment>
+ <comment xml:lang="be">дакумент Typst</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.typ"/>
+ </mime-type>
<mime-type type="text/x-troff-me">
<comment>Troff ME input document</comment>
- <comment xml:lang="ar">مستند Troff ME input</comment>
- <comment xml:lang="ast">Documentu d'entrada de Troff ME</comment>
- <comment xml:lang="be@latin">Uvodny dakument Troff ME</comment>
- <comment xml:lang="bg">Изходен документ — Troff ME</comment>
- <comment xml:lang="ca">document d'entrada Troff ME</comment>
- <comment xml:lang="cs">vstupní dokument Troff ME</comment>
- <comment xml:lang="da">Troff ME inddata-dokument</comment>
- <comment xml:lang="de">Troff-ME-Eingabedokument</comment>
- <comment xml:lang="el">Έγγραφο εντολών troff ME</comment>
- <comment xml:lang="en_GB">Troff ME input document</comment>
- <comment xml:lang="eo">eniga dokumento de Troff ME</comment>
- <comment xml:lang="es">documento de entrada Troff ME</comment>
- <comment xml:lang="eu">Troff ME sarrerako dokumentua</comment>
- <comment xml:lang="fi">Troff ME -syöteasiakirja</comment>
- <comment xml:lang="fo">Troff ME inntaksskjal</comment>
- <comment xml:lang="fr">document d'entrée Troff ME</comment>
- <comment xml:lang="ga">cáipéis ionchurtha Troff ME</comment>
- <comment xml:lang="gl">documento de entrada Troff ME</comment>
- <comment xml:lang="he">מסמך קלט של Troff ME</comment>
- <comment xml:lang="hr">Troff ME ulazni dokument</comment>
- <comment xml:lang="hu">Troff ME bemeneti dokumentum</comment>
- <comment xml:lang="ia">Documento de entrata Troff ME</comment>
- <comment xml:lang="id">Dokumen masukan Troff ME</comment>
- <comment xml:lang="it">Documento di input Troff ME</comment>
- <comment xml:lang="ja">Troff ME 入力ドキュメント</comment>
- <comment xml:lang="kk">Troff ME кіріс құжаты</comment>
- <comment xml:lang="ko">Troff ME 입력 문서</comment>
- <comment xml:lang="lt">Troff ME įvesties dokumentas</comment>
- <comment xml:lang="lv">Troff ME ievades dokuments</comment>
- <comment xml:lang="ms">Dokumen input Troff ME</comment>
- <comment xml:lang="nb">Troff ME-inndatadokument</comment>
- <comment xml:lang="nl">Troff ME-invoerdocument</comment>
- <comment xml:lang="nn">Troff ME inndata-dokument</comment>
- <comment xml:lang="oc">document d'entrada Troff ME</comment>
- <comment xml:lang="pl">Dokument wejściowy Troff ME</comment>
- <comment xml:lang="pt">documento origem Troff ME</comment>
- <comment xml:lang="pt_BR">Documento de entrada Troff ME</comment>
- <comment xml:lang="ro">Document intrare Troff ME</comment>
- <comment xml:lang="ru">Входной документ Troff ME</comment>
- <comment xml:lang="sk">Vstupný dokument Troff ME</comment>
- <comment xml:lang="sl">Vnosni dokument Troff ME</comment>
- <comment xml:lang="sq">Dokument i input Troff ME</comment>
- <comment xml:lang="sr">Трофф МЕ улазни документ</comment>
- <comment xml:lang="sv">Troff ME-indatadokument</comment>
- <comment xml:lang="tr">Troff ME girdi belgesi</comment>
- <comment xml:lang="uk">вхідний документ Troff ME</comment>
- <comment xml:lang="vi">Tài liệu nhập ME Troff</comment>
- <comment xml:lang="zh_CN">Troff ME 输入文档</comment>
<comment xml:lang="zh_TW">Troff ME 輸入文件</comment>
+ <comment xml:lang="zh_CN">Troff ME 输入文档</comment>
+ <comment xml:lang="vi">Tài liệu nhập ME Troff</comment>
+ <comment xml:lang="uk">вхідний документ Troff ME</comment>
+ <comment xml:lang="tr">Troff ME girdi belgesi</comment>
+ <comment xml:lang="sv">Troff ME-indatadokument</comment>
+ <comment xml:lang="sr">Трофф МЕ улазни документ</comment>
+ <comment xml:lang="sq">dokument ME input-i për Troff</comment>
+ <comment xml:lang="sl">Vnosni dokument Troff ME</comment>
+ <comment xml:lang="si">ට්‍රොෆ් ME ආදාන ලේඛනය</comment>
+ <comment xml:lang="sk">Vstupný dokument Troff ME</comment>
+ <comment xml:lang="ru">Входной документ Troff ME</comment>
+ <comment xml:lang="ro">Document intrare Troff ME</comment>
+ <comment xml:lang="pt_BR">Documento de entrada Troff ME</comment>
+ <comment xml:lang="pt">documento origem Troff ME</comment>
+ <comment xml:lang="pl">Dokument wejściowy Troff ME</comment>
+ <comment xml:lang="oc">document d'entrada Troff ME</comment>
+ <comment xml:lang="nn">Troff ME inndata-dokument</comment>
+ <comment xml:lang="nl">Troff ME-invoerdocument</comment>
+ <comment xml:lang="nb">Troff ME-inndatadokument</comment>
+ <comment xml:lang="ms">Dokumen input Troff ME</comment>
+ <comment xml:lang="lv">Troff ME ievades dokuments</comment>
+ <comment xml:lang="lt">Troff ME įvesties dokumentas</comment>
+ <comment xml:lang="ko">Troff ME 입력 문서</comment>
+ <comment xml:lang="kk">Troff ME кіріс құжаты</comment>
+ <comment xml:lang="ja">Troff ME 入力ドキュメント</comment>
+ <comment xml:lang="it">Documento di input Troff ME</comment>
+ <comment xml:lang="is">Troff ME inngangsskjal</comment>
+ <comment xml:lang="id">Dokumen masukan Troff ME</comment>
+ <comment xml:lang="ia">Documento de entrata Troff ME</comment>
+ <comment xml:lang="hu">Troff ME bemeneti dokumentum</comment>
+ <comment xml:lang="hr">Troff ME ulazni dokument</comment>
+ <comment xml:lang="he">מסמך קלט של Troff ME</comment>
+ <comment xml:lang="gl">documento de entrada Troff ME</comment>
+ <comment xml:lang="ga">cáipéis ionchurtha Troff ME</comment>
+ <comment xml:lang="fur">document di jentrade Troff ME</comment>
+ <comment xml:lang="fr">document d'entrée Troff ME</comment>
+ <comment xml:lang="fo">Troff ME inntaksskjal</comment>
+ <comment xml:lang="fi">Troff ME -syöteasiakirja</comment>
+ <comment xml:lang="eu">Troff ME sarrerako dokumentua</comment>
+ <comment xml:lang="es">documento de entrada Troff ME</comment>
+ <comment xml:lang="eo">eniga dokumento de Troff ME</comment>
+ <comment xml:lang="en_GB">Troff ME input document</comment>
+ <comment xml:lang="el">Έγγραφο εντολών troff ME</comment>
+ <comment xml:lang="de">Troff-ME-Eingabedokument</comment>
+ <comment xml:lang="da">Troff ME inddata-dokument</comment>
+ <comment xml:lang="cs">vstupní dokument Troff ME</comment>
+ <comment xml:lang="ca">document d'entrada Troff ME</comment>
+ <comment xml:lang="bg">Изходен документ — Troff ME</comment>
+ <comment xml:lang="be@latin">Uvodny dakument Troff ME</comment>
+ <comment xml:lang="be">уваходны дакумент Troff ME</comment>
+ <comment xml:lang="ast">Documentu d'entrada de Troff ME</comment>
+ <comment xml:lang="ar">مستند Troff ME input</comment>
+ <comment xml:lang="af">Troff ME-toevoerdokument</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.me"/>
</mime-type>
<mime-type type="text/x-troff-mm">
<comment>Troff MM input document</comment>
- <comment xml:lang="ar">مستند Troff MM input</comment>
- <comment xml:lang="ast">Documentu d'entrada de Troff MM</comment>
- <comment xml:lang="be@latin">Uvodny dakument Troff MM</comment>
- <comment xml:lang="bg">Изходен документ — Troff MM</comment>
- <comment xml:lang="ca">document d'entrada Troff MM</comment>
- <comment xml:lang="cs">vstupní dokument Troff MM</comment>
- <comment xml:lang="da">Troff MM inddata-dokument</comment>
- <comment xml:lang="de">Troff-MM-Eingabedokument</comment>
- <comment xml:lang="el">Έγγραφο εντολών troff MM</comment>
- <comment xml:lang="en_GB">Troff MM input document</comment>
- <comment xml:lang="eo">eniga dokumento de Troff MM</comment>
- <comment xml:lang="es">documento de entrada Troff MM</comment>
- <comment xml:lang="eu">Troff MM sarrerako dokumentua</comment>
- <comment xml:lang="fi">Troff MM -syöteasiakirja</comment>
- <comment xml:lang="fo">Troff MM inntaksskjal</comment>
- <comment xml:lang="fr">document d'entrée Troff MM</comment>
- <comment xml:lang="ga">cáipéis ionchurtha Troff MM</comment>
- <comment xml:lang="gl">documento de entrada Troff MM</comment>
- <comment xml:lang="he">מסמך קלט של Troff MM</comment>
- <comment xml:lang="hr">Troff MM ulazni dokument</comment>
- <comment xml:lang="hu">Troff MM bemeneti dokumentum</comment>
- <comment xml:lang="ia">Documento de entrata Troff MM</comment>
- <comment xml:lang="id">Dokumen masukan Troff MM</comment>
- <comment xml:lang="it">Documento di input Troff MM</comment>
- <comment xml:lang="ja">Troff MM 入力ドキュメント</comment>
- <comment xml:lang="kk">Troff MM кіріс құжаты</comment>
- <comment xml:lang="ko">Troff MM 입력 문서</comment>
- <comment xml:lang="lt">Troff MM įvesties dokumentas</comment>
- <comment xml:lang="lv">Troff MM ievades dokuments</comment>
- <comment xml:lang="ms">Dokumen input Troff MM</comment>
- <comment xml:lang="nb">Troff MM-inndatadokument</comment>
- <comment xml:lang="nl">Troff MM-invoerdocument</comment>
- <comment xml:lang="nn">Troff MM inndata-dokument</comment>
- <comment xml:lang="oc">document d'entrada Troff MM</comment>
- <comment xml:lang="pl">Dokument wejściowy Troff MM</comment>
- <comment xml:lang="pt">documento origem Troff MM</comment>
- <comment xml:lang="pt_BR">Documento de entrada Troff MM</comment>
- <comment xml:lang="ro">Document intrare Troff MM</comment>
- <comment xml:lang="ru">Входной документ Troff MM</comment>
- <comment xml:lang="sk">Vstupný dokument Troff MM</comment>
- <comment xml:lang="sl">Vnosni dokument Troff MM</comment>
- <comment xml:lang="sq">Dokument i input Troff MM</comment>
- <comment xml:lang="sr">Трофф ММ улазни документ</comment>
- <comment xml:lang="sv">Troff MM-indatadokument</comment>
- <comment xml:lang="tr">Troff MM girdi belgesi</comment>
- <comment xml:lang="uk">вхідний документ Troff MM</comment>
- <comment xml:lang="vi">Tài liệu nhập MM Troff</comment>
- <comment xml:lang="zh_CN">Troff MM 输入文档</comment>
<comment xml:lang="zh_TW">Troff MM 輸入文件</comment>
- <sub-class-of type="text/plain"/>
+ <comment xml:lang="zh_CN">Troff MM 输入文档</comment>
+ <comment xml:lang="vi">Tài liệu nhập MM Troff</comment>
+ <comment xml:lang="uk">вхідний документ Troff MM</comment>
+ <comment xml:lang="tr">Troff MM girdi belgesi</comment>
+ <comment xml:lang="sv">Troff MM-indatadokument</comment>
+ <comment xml:lang="sr">Трофф ММ улазни документ</comment>
+ <comment xml:lang="sq">dokument MM input-i për Troff</comment>
+ <comment xml:lang="sl">Vnosni dokument Troff MM</comment>
+ <comment xml:lang="si">Troff MM ආදාන ලේඛනය</comment>
+ <comment xml:lang="sk">Vstupný dokument Troff MM</comment>
+ <comment xml:lang="ru">Входной документ Troff MM</comment>
+ <comment xml:lang="ro">Document intrare Troff MM</comment>
+ <comment xml:lang="pt_BR">Documento de entrada Troff MM</comment>
+ <comment xml:lang="pt">documento origem Troff MM</comment>
+ <comment xml:lang="pl">Dokument wejściowy Troff MM</comment>
+ <comment xml:lang="oc">document d'entrada Troff MM</comment>
+ <comment xml:lang="nn">Troff MM inndata-dokument</comment>
+ <comment xml:lang="nl">Troff MM-invoerdocument</comment>
+ <comment xml:lang="nb">Troff MM-inndatadokument</comment>
+ <comment xml:lang="ms">Dokumen input Troff MM</comment>
+ <comment xml:lang="lv">Troff MM ievades dokuments</comment>
+ <comment xml:lang="lt">Troff MM įvesties dokumentas</comment>
+ <comment xml:lang="ko">Troff MM 입력 문서</comment>
+ <comment xml:lang="kk">Troff MM кіріс құжаты</comment>
+ <comment xml:lang="ja">Troff MM 入力ドキュメント</comment>
+ <comment xml:lang="it">Documento di input Troff MM</comment>
+ <comment xml:lang="is">Troff MM inngangsskjal</comment>
+ <comment xml:lang="id">Dokumen masukan Troff MM</comment>
+ <comment xml:lang="ia">Documento de entrata Troff MM</comment>
+ <comment xml:lang="hu">Troff MM bemeneti dokumentum</comment>
+ <comment xml:lang="hr">Troff MM ulazni dokument</comment>
+ <comment xml:lang="he">מסמך קלט של Troff MM</comment>
+ <comment xml:lang="gl">documento de entrada Troff MM</comment>
+ <comment xml:lang="ga">cáipéis ionchurtha Troff MM</comment>
+ <comment xml:lang="fur">document di jentrade Troff MM</comment>
+ <comment xml:lang="fr">document d'entrée Troff MM</comment>
+ <comment xml:lang="fo">Troff MM inntaksskjal</comment>
+ <comment xml:lang="fi">Troff MM -syöteasiakirja</comment>
+ <comment xml:lang="eu">Troff MM sarrerako dokumentua</comment>
+ <comment xml:lang="es">documento de entrada Troff MM</comment>
+ <comment xml:lang="eo">eniga dokumento de Troff MM</comment>
+ <comment xml:lang="en_GB">Troff MM input document</comment>
+ <comment xml:lang="el">Έγγραφο εντολών troff MM</comment>
+ <comment xml:lang="de">Troff-MM-Eingabedokument</comment>
+ <comment xml:lang="da">Troff MM inddata-dokument</comment>
+ <comment xml:lang="cs">vstupní dokument Troff MM</comment>
+ <comment xml:lang="ca">document d'entrada Troff MM</comment>
+ <comment xml:lang="bg">Изходен документ — Troff MM</comment>
+ <comment xml:lang="be@latin">Uvodny dakument Troff MM</comment>
+ <comment xml:lang="be">уваходны дакумент Troff MM</comment>
+ <comment xml:lang="ast">Documentu d'entrada de Troff MM</comment>
+ <comment xml:lang="ar">مستند Troff MM input</comment>
+ <comment xml:lang="af">Troff MM-toevoerdokument</comment>
+ <sub-class-of type="text/troff"/>
<glob pattern="*.mm"/>
</mime-type>
<mime-type type="text/x-troff-ms">
<comment>Troff MS input document</comment>
- <comment xml:lang="ar">مستند Troff MS input</comment>
- <comment xml:lang="ast">Documentu d'entrada de Troff MS</comment>
- <comment xml:lang="be@latin">Uvodny dakument Troff MS</comment>
- <comment xml:lang="bg">Изходен документ — Troff MS</comment>
- <comment xml:lang="ca">document d'entrada Troff MS</comment>
- <comment xml:lang="cs">vstupní dokument Troff MS</comment>
- <comment xml:lang="da">Troff MS inddata-dokument</comment>
- <comment xml:lang="de">Troff-MS-Eingabedokument</comment>
- <comment xml:lang="el">Έγγραφο εντολών troff MS</comment>
- <comment xml:lang="en_GB">Troff MS input document</comment>
- <comment xml:lang="eo">eniga dokumento de Troff MS</comment>
- <comment xml:lang="es">documento de entrada Troff MS</comment>
- <comment xml:lang="eu">Troff MS sarrerako dokumentua</comment>
- <comment xml:lang="fi">Troff MS -syöteasiakirja</comment>
- <comment xml:lang="fo">Troff MS inntaksskjal</comment>
- <comment xml:lang="fr">document d'entrée Troff MS</comment>
- <comment xml:lang="ga">cáipéis ionchurtha Troff MS</comment>
- <comment xml:lang="gl">documento de entrada Troff MS</comment>
- <comment xml:lang="he">מסמך קלט של Troff MS</comment>
- <comment xml:lang="hr">Troff MS ulazni dokument</comment>
- <comment xml:lang="hu">Troff MS bemeneti dokumentum</comment>
- <comment xml:lang="ia">Documento de entrata Troff MS</comment>
- <comment xml:lang="id">Dokumen masukan Troff MS</comment>
- <comment xml:lang="it">Documento di input Troff MS</comment>
- <comment xml:lang="ja">Troff MS 入力ドキュメント</comment>
- <comment xml:lang="kk">Troff MS кіріс құжаты</comment>
- <comment xml:lang="ko">Troff MS 입력 문서</comment>
- <comment xml:lang="lt">Troff MS įvesties dokumentas</comment>
- <comment xml:lang="lv">Troff MS ievades dokuments</comment>
- <comment xml:lang="ms">Dokumen input Troff MS</comment>
- <comment xml:lang="nb">Troff MS-inndatadokument</comment>
- <comment xml:lang="nl">Troff MS-invoerdocument</comment>
- <comment xml:lang="nn">Troff MS inndata-dokument</comment>
- <comment xml:lang="oc">document d'entrada Troff MS</comment>
- <comment xml:lang="pl">Dokument wejściowy Troff MS</comment>
- <comment xml:lang="pt">documento origem Troff MS</comment>
- <comment xml:lang="pt_BR">Documento de entrada Troff MS</comment>
- <comment xml:lang="ro">Document intrare Troff MS</comment>
- <comment xml:lang="ru">Входной документ Troff MS</comment>
- <comment xml:lang="sk">Vstupný dokument Troff MS</comment>
- <comment xml:lang="sl">Vnosni dokument Troff MS</comment>
- <comment xml:lang="sq">Dokument i input Troff MS</comment>
- <comment xml:lang="sr">Трофф МС улазни документ</comment>
- <comment xml:lang="sv">Troff MS-indatadokument</comment>
- <comment xml:lang="tr">Troff MS girdi belgesi</comment>
- <comment xml:lang="uk">вхідний документ Troff MS</comment>
- <comment xml:lang="vi">Tài liệu nhập MS Troff</comment>
- <comment xml:lang="zh_CN">Troff MS 输入文档</comment>
<comment xml:lang="zh_TW">Troff MS 輸入文件</comment>
+ <comment xml:lang="zh_CN">Troff MS 输入文档</comment>
+ <comment xml:lang="vi">Tài liệu nhập MS Troff</comment>
+ <comment xml:lang="uk">вхідний документ Troff MS</comment>
+ <comment xml:lang="tr">Troff MS girdi belgesi</comment>
+ <comment xml:lang="sv">Troff MS-indatadokument</comment>
+ <comment xml:lang="sr">Трофф МС улазни документ</comment>
+ <comment xml:lang="sq">dokument MS input-i për Troff</comment>
+ <comment xml:lang="sl">Vnosni dokument Troff MS</comment>
+ <comment xml:lang="si">Troff MS ආදාන ලේඛනය</comment>
+ <comment xml:lang="sk">Vstupný dokument Troff MS</comment>
+ <comment xml:lang="ru">Входной документ Troff MS</comment>
+ <comment xml:lang="ro">Document intrare Troff MS</comment>
+ <comment xml:lang="pt_BR">Documento de entrada Troff MS</comment>
+ <comment xml:lang="pt">documento origem Troff MS</comment>
+ <comment xml:lang="pl">Dokument wejściowy Troff MS</comment>
+ <comment xml:lang="oc">document d'entrada Troff MS</comment>
+ <comment xml:lang="nn">Troff MS inndata-dokument</comment>
+ <comment xml:lang="nl">Troff MS-invoerdocument</comment>
+ <comment xml:lang="nb">Troff MS-inndatadokument</comment>
+ <comment xml:lang="ms">Dokumen input Troff MS</comment>
+ <comment xml:lang="lv">Troff MS ievades dokuments</comment>
+ <comment xml:lang="lt">Troff MS įvesties dokumentas</comment>
+ <comment xml:lang="ko">Troff MS 입력 문서</comment>
+ <comment xml:lang="kk">Troff MS кіріс құжаты</comment>
+ <comment xml:lang="ja">Troff MS 入力ドキュメント</comment>
+ <comment xml:lang="it">Documento di input Troff MS</comment>
+ <comment xml:lang="is">Troff MS inngangsskjal</comment>
+ <comment xml:lang="id">Dokumen masukan Troff MS</comment>
+ <comment xml:lang="ia">Documento de entrata Troff MS</comment>
+ <comment xml:lang="hu">Troff MS bemeneti dokumentum</comment>
+ <comment xml:lang="hr">Troff MS ulazni dokument</comment>
+ <comment xml:lang="he">מסמך קלט של Troff MS</comment>
+ <comment xml:lang="gl">documento de entrada Troff MS</comment>
+ <comment xml:lang="ga">cáipéis ionchurtha Troff MS</comment>
+ <comment xml:lang="fur">document di jentrade Troff MS</comment>
+ <comment xml:lang="fr">document d'entrée Troff MS</comment>
+ <comment xml:lang="fo">Troff MS inntaksskjal</comment>
+ <comment xml:lang="fi">Troff MS -syöteasiakirja</comment>
+ <comment xml:lang="eu">Troff MS sarrerako dokumentua</comment>
+ <comment xml:lang="es">documento de entrada Troff MS</comment>
+ <comment xml:lang="eo">eniga dokumento de Troff MS</comment>
+ <comment xml:lang="en_GB">Troff MS input document</comment>
+ <comment xml:lang="el">Έγγραφο εντολών troff MS</comment>
+ <comment xml:lang="de">Troff-MS-Eingabedokument</comment>
+ <comment xml:lang="da">Troff MS inddata-dokument</comment>
+ <comment xml:lang="cs">vstupní dokument Troff MS</comment>
+ <comment xml:lang="ca">document d'entrada Troff MS</comment>
+ <comment xml:lang="bg">Изходен документ — Troff MS</comment>
+ <comment xml:lang="be@latin">Uvodny dakument Troff MS</comment>
+ <comment xml:lang="be">уваходны дакумент Troff MS</comment>
+ <comment xml:lang="ast">Documentu d'entrada de Troff MS</comment>
+ <comment xml:lang="ar">مستند Troff MS input</comment>
+ <comment xml:lang="af">Troff MS-toevoerdokument</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.ms"/>
</mime-type>
<mime-type type="text/x-twig">
<comment>Twig template</comment>
- <comment xml:lang="ca">plantilla Twig</comment>
- <comment xml:lang="cs">šablona Twig</comment>
- <comment xml:lang="da">Twig-skabelon</comment>
- <comment xml:lang="de">Twig-Vorlage</comment>
- <comment xml:lang="en_GB">Twig template</comment>
- <comment xml:lang="es">plantilla de Twig</comment>
- <comment xml:lang="eu">Twig txantiloia</comment>
- <comment xml:lang="fr">modèle Twig</comment>
- <comment xml:lang="ga">teimpléad Twig</comment>
- <comment xml:lang="he">תבנית Twig</comment>
- <comment xml:lang="hr">Twig predložak</comment>
- <comment xml:lang="hu">Twig-sablon</comment>
- <comment xml:lang="id">templat Twig</comment>
- <comment xml:lang="it">Modello twig</comment>
- <comment xml:lang="kk">Twig үлгісі</comment>
- <comment xml:lang="ko">Twig 문서 서식</comment>
- <comment xml:lang="pl">Szablon Twig</comment>
- <comment xml:lang="pt_BR">Modelo Twig</comment>
- <comment xml:lang="ru">Шаблон Twig</comment>
- <comment xml:lang="sk">Šablóna Twig</comment>
- <comment xml:lang="sr">Твиг шаблон</comment>
- <comment xml:lang="sv">Twig-mall</comment>
- <comment xml:lang="tr">Twig şablonu</comment>
- <comment xml:lang="uk">шаблон twig</comment>
- <comment xml:lang="zh_CN">Twig 模板</comment>
<comment xml:lang="zh_TW">Twig 範本</comment>
+ <comment xml:lang="zh_CN">Twig 模板</comment>
+ <comment xml:lang="uk">шаблон twig</comment>
+ <comment xml:lang="tr">Twig şablonu</comment>
+ <comment xml:lang="sv">Twig-mall</comment>
+ <comment xml:lang="sr">Твиг шаблон</comment>
+ <comment xml:lang="sq">gjedhe Twig</comment>
+ <comment xml:lang="sl">Predloga Twig</comment>
+ <comment xml:lang="si">අතු අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna Twig</comment>
+ <comment xml:lang="ru">Шаблон Twig</comment>
+ <comment xml:lang="pt_BR">Modelo Twig</comment>
+ <comment xml:lang="pl">Szablon Twig</comment>
+ <comment xml:lang="oc">modèl Twig</comment>
+ <comment xml:lang="nl">Twig-sjabloon</comment>
+ <comment xml:lang="ko">Twig 문서 서식</comment>
+ <comment xml:lang="kk">Twig үлгісі</comment>
+ <comment xml:lang="ja">Twig テンプレート</comment>
+ <comment xml:lang="it">Modello twig</comment>
+ <comment xml:lang="is">Twig-sniðmát</comment>
+ <comment xml:lang="id">Templat Twig</comment>
+ <comment xml:lang="hu">Twig-sablon</comment>
+ <comment xml:lang="hr">Twig predložak</comment>
+ <comment xml:lang="he">תבנית Twig</comment>
+ <comment xml:lang="gl">Plantilla de Twig</comment>
+ <comment xml:lang="ga">teimpléad Twig</comment>
+ <comment xml:lang="fur">model Twig</comment>
+ <comment xml:lang="fr">modèle Twig</comment>
+ <comment xml:lang="fi">Twig-malli</comment>
+ <comment xml:lang="eu">Twig txantiloia</comment>
+ <comment xml:lang="es">plantilla de Twig</comment>
+ <comment xml:lang="en_GB">Twig template</comment>
+ <comment xml:lang="de">Twig-Vorlage</comment>
+ <comment xml:lang="da">Twig-skabelon</comment>
+ <comment xml:lang="cs">šablona Twig</comment>
+ <comment xml:lang="ca">plantilla Twig</comment>
+ <comment xml:lang="bg">Шаблон — Twig</comment>
+ <comment xml:lang="be">шаблон Twig</comment>
+ <comment xml:lang="ar">قالب Twig</comment>
+ <comment xml:lang="af">Twig-sjabloon</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.twig"/>
<generic-icon name="text-x-generic-template"/>
</mime-type>
<mime-type type="text/x-uil">
<comment>X-Motif UIL table</comment>
- <comment xml:lang="ar">جدول X-Motif UIL</comment>
- <comment xml:lang="be@latin">Tablica X-Motif UIL</comment>
- <comment xml:lang="bg">Таблица — X-Motif UIL</comment>
- <comment xml:lang="ca">taula UIL de X-Motif</comment>
- <comment xml:lang="cs">tabulka X-Motif UIL</comment>
- <comment xml:lang="da">X-Motif UIL-tabel</comment>
- <comment xml:lang="de">X-Motif-UIL-Tabelle</comment>
- <comment xml:lang="el">Πίνακας X-Motif UIL</comment>
- <comment xml:lang="en_GB">X-Motif UIL table</comment>
- <comment xml:lang="es">tabla de X-Motif UIL</comment>
- <comment xml:lang="eu">X-Motif UIL taula</comment>
- <comment xml:lang="fi">X-Motif UIL -taulukko</comment>
- <comment xml:lang="fo">X-Motif UIL talva</comment>
- <comment xml:lang="fr">table X-Motif UIL</comment>
- <comment xml:lang="ga">tábla X-Motif UIL</comment>
- <comment xml:lang="gl">Táboa de X-Motif UIL</comment>
- <comment xml:lang="he">טבלה של X-Motif UIL</comment>
- <comment xml:lang="hr">X-Motif UIL tablica</comment>
- <comment xml:lang="hu">X-Motif UIL-táblázat</comment>
- <comment xml:lang="ia">Tabella X-Motif UIL</comment>
- <comment xml:lang="id">Tabel X-Motif UIL</comment>
- <comment xml:lang="it">Tabella UIL X-Motif</comment>
- <comment xml:lang="ja">X-Motif UIL 表</comment>
- <comment xml:lang="kk">X-Motif UIL кестесі</comment>
- <comment xml:lang="ko">X-Motif UIL 테이블</comment>
- <comment xml:lang="lt">X-Motif UIL lentelė</comment>
- <comment xml:lang="lv">X-Motif UIL tabula</comment>
- <comment xml:lang="ms">Jadual X-Motif UIL</comment>
- <comment xml:lang="nb">X-Motif UIL-tabell</comment>
- <comment xml:lang="nl">X-Motif UIL-tabel</comment>
- <comment xml:lang="nn">X-Motif UIL-tabell</comment>
- <comment xml:lang="oc">taula X-Motif UIL</comment>
- <comment xml:lang="pl">Tabela UIL X-Motif</comment>
- <comment xml:lang="pt">tabela UIL do X-Motif</comment>
- <comment xml:lang="pt_BR">Tabela UIL do X-Motif</comment>
- <comment xml:lang="ro">Tabel X-Motif UIL</comment>
- <comment xml:lang="ru">Таблица UIL X-Motif</comment>
- <comment xml:lang="sk">Tabuľka X-Motif UIL</comment>
- <comment xml:lang="sl">Preglednica X-Motif UIL</comment>
- <comment xml:lang="sq">Tabelë X-Motif UIL</comment>
- <comment xml:lang="sr">Икс-Мотиф УИЛ табела</comment>
- <comment xml:lang="sv">X-Motif UIL-tabell</comment>
- <comment xml:lang="tr">X-Motif UIL tablosu</comment>
- <comment xml:lang="uk">таблиця X-Motif UIL</comment>
- <comment xml:lang="vi">Bảng UIL X-Motif</comment>
- <comment xml:lang="zh_CN">X-Motif UIL 表</comment>
<comment xml:lang="zh_TW">X-Motif UIL 表格</comment>
+ <comment xml:lang="zh_CN">X-Motif UIL 表</comment>
+ <comment xml:lang="vi">Bảng UIL X-Motif</comment>
+ <comment xml:lang="uk">таблиця X-Motif UIL</comment>
+ <comment xml:lang="tr">X-Motif UIL tablosu</comment>
+ <comment xml:lang="sv">X-Motif UIL-tabell</comment>
+ <comment xml:lang="sr">Икс-Мотиф УИЛ табела</comment>
+ <comment xml:lang="sq">tabelë X-Motif UIL</comment>
+ <comment xml:lang="sl">Preglednica X-Motif UIL</comment>
+ <comment xml:lang="si">X-Motif UIL වගුව</comment>
+ <comment xml:lang="sk">Tabuľka X-Motif UIL</comment>
+ <comment xml:lang="ru">Таблица UIL X-Motif</comment>
+ <comment xml:lang="ro">Tabel X-Motif UIL</comment>
+ <comment xml:lang="pt_BR">Tabela UIL do X-Motif</comment>
+ <comment xml:lang="pt">tabela UIL do X-Motif</comment>
+ <comment xml:lang="pl">Tabela UIL X-Motif</comment>
+ <comment xml:lang="oc">taula X-Motif UIL</comment>
+ <comment xml:lang="nn">X-Motif UIL-tabell</comment>
+ <comment xml:lang="nl">X-Motif UIL-tabel</comment>
+ <comment xml:lang="nb">X-Motif UIL-tabell</comment>
+ <comment xml:lang="ms">Jadual X-Motif UIL</comment>
+ <comment xml:lang="lv">X-Motif UIL tabula</comment>
+ <comment xml:lang="lt">X-Motif UIL lentelė</comment>
+ <comment xml:lang="ko">X-Motif UIL 테이블</comment>
+ <comment xml:lang="kk">X-Motif UIL кестесі</comment>
+ <comment xml:lang="ja">X-Motif UIL 表</comment>
+ <comment xml:lang="it">Tabella UIL X-Motif</comment>
+ <comment xml:lang="is">X-Motif UIL tafla</comment>
+ <comment xml:lang="id">Tabel X-Motif UIL</comment>
+ <comment xml:lang="ia">Tabella X-Motif UIL</comment>
+ <comment xml:lang="hu">X-Motif UIL-táblázat</comment>
+ <comment xml:lang="hr">X-Motif UIL tablica</comment>
+ <comment xml:lang="he">טבלה של X-Motif UIL</comment>
+ <comment xml:lang="gl">Táboa de X-Motif UIL</comment>
+ <comment xml:lang="ga">tábla X-Motif UIL</comment>
+ <comment xml:lang="fur">tabele X-Motif UIL</comment>
+ <comment xml:lang="fr">table X-Motif UIL</comment>
+ <comment xml:lang="fo">X-Motif UIL talva</comment>
+ <comment xml:lang="fi">X-Motif UIL -taulukko</comment>
+ <comment xml:lang="eu">X-Motif UIL taula</comment>
+ <comment xml:lang="es">tabla de X-Motif UIL</comment>
+ <comment xml:lang="en_GB">X-Motif UIL table</comment>
+ <comment xml:lang="el">Πίνακας X-Motif UIL</comment>
+ <comment xml:lang="de">X-Motif-UIL-Tabelle</comment>
+ <comment xml:lang="da">X-Motif UIL-tabel</comment>
+ <comment xml:lang="cs">tabulka X-Motif UIL</comment>
+ <comment xml:lang="ca">taula UIL de X-Motif</comment>
+ <comment xml:lang="bg">Таблица — X-Motif UIL</comment>
+ <comment xml:lang="be@latin">Tablica X-Motif UIL</comment>
+ <comment xml:lang="be">табліца X-Motif UIL</comment>
+ <comment xml:lang="ar">جدول X-Motif UIL</comment>
+ <comment xml:lang="af">X-Motif UIL-tabel</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.uil"/>
</mime-type>
<mime-type type="text/x-uri">
- <comment>resource location</comment>
- <comment xml:lang="ar">موقع المورد</comment>
- <comment xml:lang="be@latin">pałažeńnie resursu</comment>
- <comment xml:lang="bg">Местоположение на ресурс</comment>
- <comment xml:lang="ca">localització de recurs</comment>
- <comment xml:lang="cs">umístění prostředku</comment>
- <comment xml:lang="da">resurseplacering</comment>
- <comment xml:lang="de">Ressourcenort</comment>
- <comment xml:lang="el">Τοποθεσία πόρου</comment>
- <comment xml:lang="en_GB">resource location</comment>
- <comment xml:lang="eo">loko de risurco</comment>
- <comment xml:lang="es">ubicación del recurso</comment>
- <comment xml:lang="eu">baliabidearen kokalekua</comment>
- <comment xml:lang="fi">resurssisijainti</comment>
- <comment xml:lang="fo">tilfeingisstaður</comment>
- <comment xml:lang="fr">localisation de ressource</comment>
- <comment xml:lang="ga">suíomh acmhainne</comment>
- <comment xml:lang="gl">localización do recurso</comment>
- <comment xml:lang="he">מיקום של משאב</comment>
- <comment xml:lang="hr">Lokacija resursa</comment>
- <comment xml:lang="hu">erőforrás-hely</comment>
- <comment xml:lang="ia">Loco de ressources</comment>
- <comment xml:lang="id">lokasi sumber daya</comment>
- <comment xml:lang="it">Posizione risorsa</comment>
- <comment xml:lang="ja">リソースの場所</comment>
- <comment xml:lang="kk">ресурс орналасуы</comment>
- <comment xml:lang="ko">자원 위치</comment>
- <comment xml:lang="lt">resurso vieta</comment>
- <comment xml:lang="lv">resursa atrašanās vieta</comment>
- <comment xml:lang="ms">Lokasi sumber</comment>
- <comment xml:lang="nb">ressurslokasjon</comment>
- <comment xml:lang="nl">bronlocatie</comment>
- <comment xml:lang="nn">ressursplassering</comment>
- <comment xml:lang="oc">localizacion de ressorsa</comment>
- <comment xml:lang="pl">Położenie zasobu</comment>
- <comment xml:lang="pt">localização de recurso</comment>
- <comment xml:lang="pt_BR">Localização de recurso</comment>
- <comment xml:lang="ro">locație de resursă</comment>
- <comment xml:lang="ru">Расположение ресурса</comment>
- <comment xml:lang="sk">Umiestnenie zdroja</comment>
- <comment xml:lang="sl">mesto vira</comment>
- <comment xml:lang="sq">Pozicion rezerve</comment>
- <comment xml:lang="sr">путања изворишта</comment>
- <comment xml:lang="sv">resursplats</comment>
- <comment xml:lang="tr">kaynak ayırma</comment>
+ <comment>Resource location</comment>
<comment xml:lang="uk">розташування ресурсу</comment>
- <comment xml:lang="vi">địa điểm tài nguyên</comment>
- <comment xml:lang="zh_CN">资源位置</comment>
- <comment xml:lang="zh_TW">資源位置</comment>
+ <comment xml:lang="sv">Resursplats</comment>
+ <comment xml:lang="ru">Расположение ресурса</comment>
+ <comment xml:lang="pl">Położenie zasobu</comment>
+ <comment xml:lang="it">Posizione risorsa</comment>
+ <comment xml:lang="gl">Localización de recurso</comment>
+ <comment xml:lang="eu">Baliabideen kokalekua</comment>
+ <comment xml:lang="es">ubicación de recurso</comment>
+ <comment xml:lang="de">Ressourcenort</comment>
+ <comment xml:lang="be">размяшчэнне рэсурсу</comment>
<sub-class-of type="text/plain"/>
-
+ <!-- Note: text/uri-list is reserved by the XDND protocol! -->
</mime-type>
<mime-type type="text/x-uuencode">
<comment>uuencoded file</comment>
- <comment xml:lang="ca">fitxer uuencoded</comment>
- <comment xml:lang="cs">soubor kódovaný pomocí uuencoding</comment>
- <comment xml:lang="da">uuencodede-fil</comment>
- <comment xml:lang="de">Datei im uuencode-Format</comment>
- <comment xml:lang="el">Αρχείο κωδικοποιημένο unix σε unix (uuencoded)</comment>
- <comment xml:lang="en_GB">uuencoded file</comment>
- <comment xml:lang="es">archivo codificado con uuencode</comment>
- <comment xml:lang="eu">uuencode-aturiko fitxategia</comment>
- <comment xml:lang="fr">fichier uuencodé</comment>
- <comment xml:lang="ga">comhad uuencoded</comment>
- <comment xml:lang="gl">Ficheiro uuencoded</comment>
- <comment xml:lang="he">קובץ בקידוד uu</comment>
- <comment xml:lang="hr">uuencoded datoteka</comment>
- <comment xml:lang="hu">uuencode-olt fájl</comment>
- <comment xml:lang="ia">File in uuencode</comment>
- <comment xml:lang="id">Berkas ter-uuencode</comment>
- <comment xml:lang="it">File uuencoded</comment>
- <comment xml:lang="ja">未エンコードファイル</comment>
- <comment xml:lang="kk">uuencode кодталған файлы</comment>
- <comment xml:lang="ko">uuencoded 파일</comment>
- <comment xml:lang="lv">uu kodējuma datne</comment>
- <comment xml:lang="oc">fichièr uuencodat</comment>
- <comment xml:lang="pl">Plik zakodowany za pomocą uuencode</comment>
- <comment xml:lang="pt">ficheiro uuencoded</comment>
- <comment xml:lang="pt_BR">Arquivo codificado UUE</comment>
- <comment xml:lang="ru">Файл, кодированный uuencode</comment>
- <comment xml:lang="sk">Súbor v kódovaní uuencode</comment>
- <comment xml:lang="sl">Datoteka uuencode</comment>
- <comment xml:lang="sr">уукодирана датотека</comment>
- <comment xml:lang="sv">uuencode-fil</comment>
- <comment xml:lang="tr">uuencoded dosyası</comment>
- <comment xml:lang="uk">файл даних у форматі UUE</comment>
- <comment xml:lang="zh_CN">Uuencode 文件</comment>
<comment xml:lang="zh_TW">uuencoded 檔</comment>
+ <comment xml:lang="zh_CN">Uuencode 文件</comment>
+ <comment xml:lang="uk">файл даних у форматі UUE</comment>
+ <comment xml:lang="tr">uuencoded dosyası</comment>
+ <comment xml:lang="sv">uuencode-fil</comment>
+ <comment xml:lang="sr">уукодирана датотека</comment>
+ <comment xml:lang="sl">Datoteka uuencode</comment>
+ <comment xml:lang="si">uuencoded ගොනුව</comment>
+ <comment xml:lang="sk">Súbor v kódovaní uuencode</comment>
+ <comment xml:lang="ru">Файл, кодированный uuencode</comment>
+ <comment xml:lang="pt_BR">Arquivo codificado UUE</comment>
+ <comment xml:lang="pt">ficheiro uuencoded</comment>
+ <comment xml:lang="pl">Plik zakodowany za pomocą uuencode</comment>
+ <comment xml:lang="oc">fichièr uuencodat</comment>
+ <comment xml:lang="nl">uuencoded bestand</comment>
+ <comment xml:lang="lv">uu kodējuma datne</comment>
+ <comment xml:lang="ko">uuencoded 파일</comment>
+ <comment xml:lang="kk">uuencode кодталған файлы</comment>
+ <comment xml:lang="ja">未エンコードファイル</comment>
+ <comment xml:lang="it">File uuencoded</comment>
+ <comment xml:lang="is">uuencoded skrá</comment>
+ <comment xml:lang="id">berkas ter-uuencode</comment>
+ <comment xml:lang="ia">File in uuencode</comment>
+ <comment xml:lang="hu">uuencode-olt fájl</comment>
+ <comment xml:lang="hr">uuencoded datoteka</comment>
+ <comment xml:lang="he">קובץ בקידוד uu</comment>
+ <comment xml:lang="gl">Ficheiro uuencoded</comment>
+ <comment xml:lang="ga">comhad uuencoded</comment>
+ <comment xml:lang="fur">file codificât cun uuencode</comment>
+ <comment xml:lang="fr">fichier uuencodé</comment>
+ <comment xml:lang="fi">uuenkoodattu tiedosto</comment>
+ <comment xml:lang="eu">uuencode-aturiko fitxategia</comment>
+ <comment xml:lang="es">archivo codificado con uuencode</comment>
+ <comment xml:lang="en_GB">uuencoded file</comment>
+ <comment xml:lang="el">Αρχείο κωδικοποιημένο unix σε unix (uuencoded)</comment>
+ <comment xml:lang="de">Datei im uuencode-Format</comment>
+ <comment xml:lang="da">uuencodede-fil</comment>
+ <comment xml:lang="cs">soubor kódovaný pomocí uuencoding</comment>
+ <comment xml:lang="ca">fitxer uuencoded</comment>
+ <comment xml:lang="bg">Файл — кодиран с uuencode</comment>
+ <comment xml:lang="be">файл, закадаваны uuencode</comment>
+ <comment xml:lang="ar">ملف uuencoded</comment>
+ <comment xml:lang="af">uu-geënkodeerde lêer</comment>
<sub-class-of type="text/plain"/>
<glob pattern="*.uue"/>
- <magic priority="50">
- <match value="begin " type="string" offset="0"/>
+ <magic>
+ <match type="string" value="begin " offset="0"/>
</magic>
<alias type="zz-application/zz-winassoc-uu"/>
</mime-type>
+ <mime-type type="text/x-basic">
+ <comment>BASIC program</comment>
+ <comment xml:lang="uk">програма BASIC</comment>
+ <comment xml:lang="sv">BASIC-program</comment>
+ <comment xml:lang="ru">Программа BASIC</comment>
+ <comment xml:lang="pl">Program BASIC</comment>
+ <comment xml:lang="es">programa en BASIC</comment>
+ <comment xml:lang="de">BASIC-Programm</comment>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-script"/>
+ <glob pattern="*.bas"/>
+ </mime-type>
+ <mime-type type="text/x-vb">
+ <comment>Visual Basic .NET source code</comment>
+ <comment xml:lang="uk">початковий код Visual Basic .NET</comment>
+ <comment xml:lang="sv">Visual Basic .NET-källkod</comment>
+ <comment xml:lang="ru">Исходный код Visual Basic .NET</comment>
+ <comment xml:lang="pl">Kod źródłowy Visual Basic .NET</comment>
+ <comment xml:lang="es">código fuente en Visual Basic .NET</comment>
+ <comment xml:lang="de">Visual-Basic-.NET-Quelltext</comment>
+ <sub-class-of type="text/plain"/>
+ <magic>
+ <match type="string" value="Imports" offset="0"/>
+ <match type="string" value="Module" offset="0"/>
+ <match type="string" value="REM" offset="0"/>
+ </magic>
+ <glob pattern="*.vb"/>
+ </mime-type>
+ <mime-type type="text/vbscript">
+ <comment>VBScript program</comment>
+ <comment xml:lang="zh_TW">VBScript 程式</comment>
+ <comment xml:lang="zh_CN">VBScript 程序</comment>
+ <comment xml:lang="uk">програма мовою VBScript</comment>
+ <comment xml:lang="tr">VBScript programı</comment>
+ <comment xml:lang="sv">VBScript-program</comment>
+ <comment xml:lang="sl">Programska datoteka VBScript</comment>
+ <comment xml:lang="si">VBScript වැඩසටහන</comment>
+ <comment xml:lang="ru">Программа VBScript</comment>
+ <comment xml:lang="pt_BR">Programa VBScript</comment>
+ <comment xml:lang="pl">Pogram VBScript</comment>
+ <comment xml:lang="oc">programa VBScript</comment>
+ <comment xml:lang="nl">VBScript-programma</comment>
+ <comment xml:lang="ko">VBScript 프로그램</comment>
+ <comment xml:lang="kk">VBScript бағдарламасы</comment>
+ <comment xml:lang="ja">VBScript プログラム</comment>
+ <comment xml:lang="it">Programma VBScript</comment>
+ <comment xml:lang="is">VBScript forrit</comment>
+ <comment xml:lang="id">program VBScript</comment>
+ <comment xml:lang="hu">VBScript program</comment>
+ <comment xml:lang="hr">VBScript program</comment>
+ <comment xml:lang="he">תכנית VBScript</comment>
+ <comment xml:lang="gl">Programa VBScript</comment>
+ <comment xml:lang="fr">programme VBScript</comment>
+ <comment xml:lang="fi">VBScript-ohjelma</comment>
+ <comment xml:lang="eu">VBScript programa</comment>
+ <comment xml:lang="es">programa en VBScript</comment>
+ <comment xml:lang="en_GB">VBScript program</comment>
+ <comment xml:lang="de">VBScript-Programm</comment>
+ <comment xml:lang="da">VBScript-program</comment>
+ <comment xml:lang="ca">programa VBScript</comment>
+ <comment xml:lang="be">праграма VBScript</comment>
+ <comment xml:lang="ar">برنامج في بي سكريبت</comment>
+ <alias type="text/vbs"/>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-script"/>
+ <glob pattern="*.vbs"/>
+ </mime-type>
+ <mime-type type="text/vbscript.encode">
+ <comment>Encoded VBScript program</comment>
+ <comment xml:lang="uk">кодована програма VBScript</comment>
+ <comment xml:lang="sv">Kodat VBScript-program</comment>
+ <comment xml:lang="ru">Зашифрованная программа на VBScript</comment>
+ <comment xml:lang="pl">Zakodowany program VBScript</comment>
+ <comment xml:lang="es">Programa en VBScript codificado</comment>
+ <comment xml:lang="de">Verschlüsseltes VBScript-Programm</comment>
+ <sub-class-of type="application/x-executable"/>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-script"/>
+ <magic>
+ <match type="string" value="#@~^" offset="0"/>
+ </magic>
+ <glob pattern="*.vbe"/>
+ </mime-type>
<mime-type type="text/x-xmi">
<comment>XMI file</comment>
- <comment xml:lang="ar">ملف XMI</comment>
- <comment xml:lang="be@latin">Fajł XMI</comment>
- <comment xml:lang="bg">Файл — XMI</comment>
- <comment xml:lang="ca">fitxer XMI</comment>
- <comment xml:lang="cs">soubor XMI</comment>
- <comment xml:lang="da">XMI-fil</comment>
- <comment xml:lang="de">XMI-Datei</comment>
- <comment xml:lang="el">Αρχείο XML</comment>
- <comment xml:lang="en_GB">XMI file</comment>
- <comment xml:lang="eo">XMI-dosiero</comment>
- <comment xml:lang="es">archivo XMI</comment>
- <comment xml:lang="eu">XMI fitxategia</comment>
- <comment xml:lang="fi">XMI-tiedosto</comment>
- <comment xml:lang="fo">XMI fíla</comment>
- <comment xml:lang="fr">fichier XMI</comment>
- <comment xml:lang="ga">comhad XMI</comment>
- <comment xml:lang="gl">ficheiro XMI</comment>
- <comment xml:lang="he">קובץ XMI</comment>
- <comment xml:lang="hr">XMI datoteka</comment>
- <comment xml:lang="hu">XMI fájl</comment>
- <comment xml:lang="ia">File XMI</comment>
- <comment xml:lang="id">Berkas XMI</comment>
- <comment xml:lang="it">File XMI</comment>
- <comment xml:lang="ja">XMI ファイル</comment>
- <comment xml:lang="kk">XMI файлы</comment>
- <comment xml:lang="ko">XMI 파일</comment>
- <comment xml:lang="lt">XMI failas</comment>
- <comment xml:lang="lv">XMI datne</comment>
- <comment xml:lang="nb">XMI-fil</comment>
- <comment xml:lang="nl">XMI-bestand</comment>
- <comment xml:lang="nn">XMI-fil</comment>
- <comment xml:lang="oc">fichièr XMI</comment>
- <comment xml:lang="pl">Plik XMI</comment>
- <comment xml:lang="pt">ficheiro XMI</comment>
- <comment xml:lang="pt_BR">Arquivo XMI</comment>
- <comment xml:lang="ro">Fișier XMI</comment>
- <comment xml:lang="ru">Файл XMI</comment>
- <comment xml:lang="sk">Súbor XMI</comment>
- <comment xml:lang="sl">Datoteka XMI</comment>
- <comment xml:lang="sq">File XMI</comment>
- <comment xml:lang="sr">ИксМИ датотека</comment>
- <comment xml:lang="sv">XMI-fil</comment>
- <comment xml:lang="tr">XMI dosyası</comment>
- <comment xml:lang="uk">файл XMI</comment>
- <comment xml:lang="vi">Tập tin XMI</comment>
- <comment xml:lang="zh_CN">XMI 文件</comment>
<comment xml:lang="zh_TW">XMI 檔</comment>
+ <comment xml:lang="zh_CN">XMI 文件</comment>
+ <comment xml:lang="vi">Tập tin XMI</comment>
+ <comment xml:lang="uk">файл XMI</comment>
+ <comment xml:lang="tr">XMI dosyası</comment>
+ <comment xml:lang="sv">XMI-fil</comment>
+ <comment xml:lang="sr">ИксМИ датотека</comment>
+ <comment xml:lang="sq">kartelë XMI</comment>
+ <comment xml:lang="sl">Datoteka XMI</comment>
+ <comment xml:lang="si">XMI ගොනුව</comment>
+ <comment xml:lang="sk">Súbor XMI</comment>
+ <comment xml:lang="ru">Файл XMI</comment>
+ <comment xml:lang="ro">Fișier XMI</comment>
+ <comment xml:lang="pt_BR">Arquivo XMI</comment>
+ <comment xml:lang="pt">ficheiro XMI</comment>
+ <comment xml:lang="pl">Plik XMI</comment>
+ <comment xml:lang="oc">fichièr XMI</comment>
+ <comment xml:lang="nn">XMI-fil</comment>
+ <comment xml:lang="nl">XMI-bestand</comment>
+ <comment xml:lang="nb">XMI-fil</comment>
+ <comment xml:lang="lv">XMI datne</comment>
+ <comment xml:lang="lt">XMI failas</comment>
+ <comment xml:lang="ko">XMI 파일</comment>
+ <comment xml:lang="kk">XMI файлы</comment>
+ <comment xml:lang="ja">XMI ファイル</comment>
+ <comment xml:lang="it">File XMI</comment>
+ <comment xml:lang="is">XMI-skrá</comment>
+ <comment xml:lang="id">Berkas XMI</comment>
+ <comment xml:lang="ia">File XMI</comment>
+ <comment xml:lang="hu">XMI fájl</comment>
+ <comment xml:lang="hr">XMI datoteka</comment>
+ <comment xml:lang="he">קובץ XMI</comment>
+ <comment xml:lang="gl">ficheiro XMI</comment>
+ <comment xml:lang="ga">comhad XMI</comment>
+ <comment xml:lang="fur">file XMI</comment>
+ <comment xml:lang="fr">fichier XMI</comment>
+ <comment xml:lang="fo">XMI fíla</comment>
+ <comment xml:lang="fi">XMI-tiedosto</comment>
+ <comment xml:lang="eu">XMI fitxategia</comment>
+ <comment xml:lang="es">archivo XMI</comment>
+ <comment xml:lang="eo">XMI-dosiero</comment>
+ <comment xml:lang="en_GB">XMI file</comment>
+ <comment xml:lang="el">Αρχείο XML</comment>
+ <comment xml:lang="de">XMI-Datei</comment>
+ <comment xml:lang="da">XMI-fil</comment>
+ <comment xml:lang="cs">soubor XMI</comment>
+ <comment xml:lang="ca">fitxer XMI</comment>
+ <comment xml:lang="bg">Файл — XMI</comment>
+ <comment xml:lang="be@latin">Fajł XMI</comment>
+ <comment xml:lang="be">файл XMI</comment>
+ <comment xml:lang="ar">ملف XMI</comment>
+ <comment xml:lang="af">XMI-lêer</comment>
<acronym>XMI</acronym>
<expanded-acronym>XML Metadata Interchange</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -36953,53 +39350,58 @@
</mime-type>
<mime-type type="text/x-xslfo">
<comment>XSL FO file</comment>
- <comment xml:lang="ar">ملف XSL FO</comment>
- <comment xml:lang="be@latin">Fajł XSL FO</comment>
- <comment xml:lang="bg">Форматиращ файл — XSL FO</comment>
- <comment xml:lang="ca">fitxer FO XSL</comment>
- <comment xml:lang="cs">soubor XSL FO</comment>
- <comment xml:lang="da">XML FO-fil</comment>
- <comment xml:lang="de">XSL-FO-Datei</comment>
- <comment xml:lang="el">Αρχείο XSL FO</comment>
- <comment xml:lang="en_GB">XSL FO file</comment>
- <comment xml:lang="eo">XSL-FO-dosiero</comment>
- <comment xml:lang="es">archivo XSL FO</comment>
- <comment xml:lang="eu">XSL FO fitxategia</comment>
- <comment xml:lang="fi">XSL FO -tiedosto</comment>
- <comment xml:lang="fo">XSL FO fíla</comment>
- <comment xml:lang="fr">fichier XSL FO</comment>
- <comment xml:lang="ga">comhad XSL FO</comment>
- <comment xml:lang="gl">ficheiro XSL FO</comment>
- <comment xml:lang="he">קובץ XSL FO</comment>
- <comment xml:lang="hr">XSL FO datoteka</comment>
- <comment xml:lang="hu">XSL FO fájl</comment>
- <comment xml:lang="ia">File XSL FO</comment>
- <comment xml:lang="id">Berkas XSL FO</comment>
- <comment xml:lang="it">File XSL FO</comment>
- <comment xml:lang="ja">XSL FO ファイル</comment>
- <comment xml:lang="kk">XSL FO файлы</comment>
- <comment xml:lang="ko">XSL 포매팅 개체 파일</comment>
- <comment xml:lang="lt">XSL FO failas</comment>
- <comment xml:lang="lv">XSL FO datne</comment>
- <comment xml:lang="nb">FO-fil for XSL</comment>
- <comment xml:lang="nl">XSL FO-bestand</comment>
- <comment xml:lang="nn">XSL FO-fil</comment>
- <comment xml:lang="oc">fichièr XSL FO</comment>
- <comment xml:lang="pl">Plik XSL FO</comment>
- <comment xml:lang="pt">ficheiro XSL FO</comment>
- <comment xml:lang="pt_BR">Arquivo XSL FO</comment>
- <comment xml:lang="ro">Fișier XSL FO</comment>
- <comment xml:lang="ru">Файл XSL FO</comment>
- <comment xml:lang="sk">Súbor XSL FO</comment>
- <comment xml:lang="sl">Datoteka XSL FO</comment>
- <comment xml:lang="sq">File XSL FO</comment>
- <comment xml:lang="sr">ИксСЛ ФО датотека</comment>
- <comment xml:lang="sv">XSL FO-fil</comment>
- <comment xml:lang="tr">XSL FO dosyası</comment>
- <comment xml:lang="uk">файл XSL FO</comment>
- <comment xml:lang="vi">Tập tin FO của XSL (XFO)</comment>
- <comment xml:lang="zh_CN">XSL 格式化对象文件</comment>
<comment xml:lang="zh_TW">XSL FO 檔</comment>
+ <comment xml:lang="zh_CN">XSL 格式化对象文件</comment>
+ <comment xml:lang="vi">Tập tin FO của XSL (XFO)</comment>
+ <comment xml:lang="uk">файл XSL FO</comment>
+ <comment xml:lang="tr">XSL FO dosyası</comment>
+ <comment xml:lang="sv">XSL FO-fil</comment>
+ <comment xml:lang="sr">ИксСЛ ФО датотека</comment>
+ <comment xml:lang="sq">kartelë XSL FO</comment>
+ <comment xml:lang="sl">Datoteka XSL FO</comment>
+ <comment xml:lang="si">XSL FO ගොනුව</comment>
+ <comment xml:lang="sk">Súbor XSL FO</comment>
+ <comment xml:lang="ru">Файл XSL FO</comment>
+ <comment xml:lang="ro">Fișier XSL FO</comment>
+ <comment xml:lang="pt_BR">Arquivo XSL FO</comment>
+ <comment xml:lang="pt">ficheiro XSL FO</comment>
+ <comment xml:lang="pl">Plik XSL FO</comment>
+ <comment xml:lang="oc">fichièr XSL FO</comment>
+ <comment xml:lang="nn">XSL FO-fil</comment>
+ <comment xml:lang="nl">XSL FO-bestand</comment>
+ <comment xml:lang="nb">FO-fil for XSL</comment>
+ <comment xml:lang="lv">XSL FO datne</comment>
+ <comment xml:lang="lt">XSL FO failas</comment>
+ <comment xml:lang="ko">XSL 포매팅 개체 파일</comment>
+ <comment xml:lang="kk">XSL FO файлы</comment>
+ <comment xml:lang="ja">XSL FO ファイル</comment>
+ <comment xml:lang="it">File XSL FO</comment>
+ <comment xml:lang="is">XSL FO skrá</comment>
+ <comment xml:lang="id">Berkas XSL FO</comment>
+ <comment xml:lang="ia">File XSL FO</comment>
+ <comment xml:lang="hu">XSL FO fájl</comment>
+ <comment xml:lang="hr">XSL FO datoteka</comment>
+ <comment xml:lang="he">קובץ XSL FO</comment>
+ <comment xml:lang="gl">ficheiro XSL FO</comment>
+ <comment xml:lang="ga">comhad XSL FO</comment>
+ <comment xml:lang="fur">file XSL FO</comment>
+ <comment xml:lang="fr">fichier XSL FO</comment>
+ <comment xml:lang="fo">XSL FO fíla</comment>
+ <comment xml:lang="fi">XSL FO -tiedosto</comment>
+ <comment xml:lang="eu">XSL FO fitxategia</comment>
+ <comment xml:lang="es">archivo XSL FO</comment>
+ <comment xml:lang="eo">XSL-FO-dosiero</comment>
+ <comment xml:lang="en_GB">XSL FO file</comment>
+ <comment xml:lang="el">Αρχείο XSL FO</comment>
+ <comment xml:lang="de">XSL-FO-Datei</comment>
+ <comment xml:lang="da">XML FO-fil</comment>
+ <comment xml:lang="cs">soubor XSL FO</comment>
+ <comment xml:lang="ca">fitxer FO XSL</comment>
+ <comment xml:lang="bg">Форматиращ файл — XSL FO</comment>
+ <comment xml:lang="be@latin">Fajł XSL FO</comment>
+ <comment xml:lang="be">файл XSL FO</comment>
+ <comment xml:lang="ar">ملف XSL FO</comment>
+ <comment xml:lang="af">XSL FO-lêer</comment>
<acronym>XSL FO</acronym>
<expanded-acronym>XSL Formatting Objects</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -37009,71 +39411,76 @@
</mime-type>
<mime-type type="text/x-iptables">
<comment>iptables configuration file</comment>
- <comment xml:lang="ar">ملف تضبيط iptables</comment>
- <comment xml:lang="ast">ficheru de configuración d'iptables</comment>
- <comment xml:lang="be@latin">kanfihuracyjny fajł iptables</comment>
- <comment xml:lang="bg">Настройки за iptables</comment>
- <comment xml:lang="ca">fitxer de configuració d'iptables</comment>
- <comment xml:lang="cs">soubor nastavení iptables</comment>
- <comment xml:lang="da">iptableskonfigurationsfil</comment>
- <comment xml:lang="de">iptables-Konfigurationsdatei</comment>
- <comment xml:lang="el">Αρχείο ρυθμίσεων iptables</comment>
- <comment xml:lang="en_GB">iptables configuration file</comment>
- <comment xml:lang="es">archivo de configuración de iptables</comment>
- <comment xml:lang="eu">iptables konfigurazio-fitxategia</comment>
- <comment xml:lang="fi">iptables-asetustiedosto</comment>
- <comment xml:lang="fo">iptables samansetingarfíla</comment>
- <comment xml:lang="fr">fichier de configuration iptables</comment>
- <comment xml:lang="ga">comhad cumraíochta iptables</comment>
- <comment xml:lang="gl">ficheiro de configuración de iptables</comment>
- <comment xml:lang="he">קובץ הגדרה של iptables</comment>
- <comment xml:lang="hr">iptables datoteka podešavanja</comment>
- <comment xml:lang="hu">iptables beállítófájl</comment>
- <comment xml:lang="ia">File de configuration IPTables</comment>
- <comment xml:lang="id">berkas konfigurasi iptables</comment>
- <comment xml:lang="it">File configurazione iptables</comment>
- <comment xml:lang="ja">iptables 設定ファイル</comment>
- <comment xml:lang="kk">iptables баптаулар файлы</comment>
- <comment xml:lang="ko">iptables 설정 파일</comment>
- <comment xml:lang="lt">iptables konfigūracijos failas</comment>
- <comment xml:lang="lv">iptables konfigurācijas datne</comment>
- <comment xml:lang="nb">konfigurasjonsfil for iptables</comment>
- <comment xml:lang="nl">iptables-configuratiebestand</comment>
- <comment xml:lang="nn">iptables oppsettfil</comment>
- <comment xml:lang="oc">fichièr de configuracion iptables</comment>
- <comment xml:lang="pl">Plik konfiguracji iptables</comment>
- <comment xml:lang="pt">ficheiro de configuração iptables</comment>
- <comment xml:lang="pt_BR">Arquivo de configuração do iptables</comment>
- <comment xml:lang="ro">fișier configurare iptables</comment>
- <comment xml:lang="ru">Файл настроек iptables</comment>
- <comment xml:lang="sk">Súbor nastavení iptables</comment>
- <comment xml:lang="sl">nastavitvena datoteka iptables</comment>
- <comment xml:lang="sq">File konfigurimi iptables</comment>
- <comment xml:lang="sr">датотека подешавања иптабела</comment>
- <comment xml:lang="sv">iptables-konfigurationsfil</comment>
- <comment xml:lang="tr">iptables yapılandırma dosyası</comment>
- <comment xml:lang="uk">файл налаштувань iptables</comment>
- <comment xml:lang="vi">tập tin cấu hình iptables</comment>
- <comment xml:lang="zh_CN">iptables 防火墙配置文件</comment>
<comment xml:lang="zh_TW">iptables 組態檔</comment>
+ <comment xml:lang="zh_CN">iptables 防火墙配置文件</comment>
+ <comment xml:lang="vi">tập tin cấu hình iptables</comment>
+ <comment xml:lang="uk">файл налаштувань iptables</comment>
+ <comment xml:lang="tr">iptables yapılandırma dosyası</comment>
+ <comment xml:lang="sv">iptables-konfigurationsfil</comment>
+ <comment xml:lang="sr">датотека подешавања иптабела</comment>
+ <comment xml:lang="sq">kartelë formësimi iptables</comment>
+ <comment xml:lang="sl">nastavitvena datoteka iptables</comment>
+ <comment xml:lang="si">iptables වින්‍යාස ගොනුව</comment>
+ <comment xml:lang="sk">Súbor nastavení iptables</comment>
+ <comment xml:lang="ru">Файл настроек iptables</comment>
+ <comment xml:lang="ro">fișier configurare iptables</comment>
+ <comment xml:lang="pt_BR">Arquivo de configuração do iptables</comment>
+ <comment xml:lang="pt">ficheiro de configuração iptables</comment>
+ <comment xml:lang="pl">Plik konfiguracji iptables</comment>
+ <comment xml:lang="oc">fichièr de configuracion iptables</comment>
+ <comment xml:lang="nn">iptables oppsettfil</comment>
+ <comment xml:lang="nl">iptables-configuratiebestand</comment>
+ <comment xml:lang="nb">konfigurasjonsfil for iptables</comment>
+ <comment xml:lang="lv">iptables konfigurācijas datne</comment>
+ <comment xml:lang="lt">iptables konfigūracijos failas</comment>
+ <comment xml:lang="ko">iptables 설정 파일</comment>
+ <comment xml:lang="kk">iptables баптаулар файлы</comment>
+ <comment xml:lang="ja">iptables 設定ファイル</comment>
+ <comment xml:lang="it">File configurazione iptables</comment>
+ <comment xml:lang="is">iptables stillingaskrá</comment>
+ <comment xml:lang="id">berkas konfigurasi iptables</comment>
+ <comment xml:lang="ia">File de configuration IPTables</comment>
+ <comment xml:lang="hu">iptables beállítófájl</comment>
+ <comment xml:lang="hr">iptables datoteka podešavanja</comment>
+ <comment xml:lang="he">קובץ הגדרה של iptables</comment>
+ <comment xml:lang="gl">ficheiro de configuración de iptables</comment>
+ <comment xml:lang="ga">comhad cumraíochta iptables</comment>
+ <comment xml:lang="fur">file di configurazion di iptables</comment>
+ <comment xml:lang="fr">fichier de configuration iptables</comment>
+ <comment xml:lang="fo">iptables samansetingarfíla</comment>
+ <comment xml:lang="fi">iptables-asetustiedosto</comment>
+ <comment xml:lang="eu">iptables konfigurazio-fitxategia</comment>
+ <comment xml:lang="es">archivo de configuración de iptables</comment>
+ <comment xml:lang="en_GB">iptables configuration file</comment>
+ <comment xml:lang="el">Αρχείο ρυθμίσεων iptables</comment>
+ <comment xml:lang="de">iptables-Konfigurationsdatei</comment>
+ <comment xml:lang="da">iptableskonfigurationsfil</comment>
+ <comment xml:lang="cs">soubor nastavení iptables</comment>
+ <comment xml:lang="ca">fitxer de configuració d'iptables</comment>
+ <comment xml:lang="bg">Настройки за iptables</comment>
+ <comment xml:lang="be@latin">kanfihuracyjny fajł iptables</comment>
+ <comment xml:lang="be">файл канфігурацыі iptables</comment>
+ <comment xml:lang="ast">ficheru de configuración d'iptables</comment>
+ <comment xml:lang="ar">ملف إعداد iptables</comment>
+ <comment xml:lang="af">iptables-opstellingslêer</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="/etc/sysconfig/iptables" type="string" offset="0:256"/>
- <match value="*filter" type="string" offset="0:256">
- <match value=":INPUT" type="string" offset="0:256">
- <match value=":FORWARD" type="string" offset="0:256">
- <match value=":OUTPUT" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="/etc/sysconfig/iptables" offset="0:256"/>
+ <match type="string" value="*filter" offset="0:256">
+ <match type="string" value=":INPUT" offset="0:256">
+ <match type="string" value=":FORWARD" offset="0:256">
+ <match type="string" value=":OUTPUT" offset="0:256"/>
</match>
</match>
</match>
- <match value="-A INPUT" type="string" offset="0:256">
- <match value="-A FORWARD" type="string" offset="0:256">
- <match value="-A OUTPUT" type="string" offset="0:256"/>
+ <match type="string" value="-A INPUT" offset="0:256">
+ <match type="string" value="-A FORWARD" offset="0:256">
+ <match type="string" value="-A OUTPUT" offset="0:256"/>
</match>
</match>
- <match value="-P INPUT" type="string" offset="0:256">
- <match value="-P FORWARD" type="string" offset="0:256">
- <match value="-P OUTPUT" type="string" offset="0:256"/>
+ <match type="string" value="-P INPUT" offset="0:256">
+ <match type="string" value="-P FORWARD" offset="0:256">
+ <match type="string" value="-P OUTPUT" offset="0:256"/>
</match>
</match>
</magic>
@@ -37081,95 +39488,92 @@
</mime-type>
<mime-type type="text/x-dbus-service">
<comment>D-Bus service file</comment>
- <comment xml:lang="ca">fitxer de servei de D-Bus</comment>
- <comment xml:lang="cs">soubor služby D-Bus</comment>
- <comment xml:lang="de">D-Bus-Dienstdatei</comment>
- <comment xml:lang="en_GB">D-Bus service file</comment>
- <comment xml:lang="es">archivo de servicio de D-Bus</comment>
- <comment xml:lang="eu">D-Bus zerbitzu fitxategia</comment>
- <comment xml:lang="fi">D-Bus-palvelutiedosto</comment>
- <comment xml:lang="fr">fichier de service D-Bus</comment>
- <comment xml:lang="ga">comhad seirbhíse D-Bus</comment>
- <comment xml:lang="hr">Datoteka D-Bus usluge</comment>
- <comment xml:lang="hu">D-Bus szolgáltatás fájl</comment>
- <comment xml:lang="id">berkas layanan D-Bus</comment>
- <comment xml:lang="it">File servizio D-Bus</comment>
- <comment xml:lang="kk">D-Bus қызметтік файлы</comment>
- <comment xml:lang="ko">D-Bus 서비스 파일</comment>
- <comment xml:lang="pl">Plik usługi D-Bus</comment>
- <comment xml:lang="pt_BR">Arquivo de serviço do D-Bus</comment>
- <comment xml:lang="ru">Файл службы D-Bus</comment>
- <comment xml:lang="sk">Súbor služby D-Bus</comment>
- <comment xml:lang="sr">датотека услуге Д-сабирнице</comment>
- <comment xml:lang="sv">D-BUS-tjänstfil</comment>
- <comment xml:lang="tr">D-Bus hizmeti dosyası</comment>
- <comment xml:lang="uk">файл служби D-Bus</comment>
- <comment xml:lang="zh_CN">D-Bus 服务文件</comment>
<comment xml:lang="zh_TW">D-Bus 服務檔</comment>
+ <comment xml:lang="zh_CN">D-Bus 服务文件</comment>
+ <comment xml:lang="uk">файл служби D-Bus</comment>
+ <comment xml:lang="tr">D-Bus hizmeti dosyası</comment>
+ <comment xml:lang="sv">D-BUS-tjänstfil</comment>
+ <comment xml:lang="sr">датотека услуге Д-сабирнице</comment>
+ <comment xml:lang="sq">kartelë shërbimi D-Bus</comment>
+ <comment xml:lang="si">D-බස් සේවා ගොනුව</comment>
+ <comment xml:lang="sk">Súbor služby D-Bus</comment>
+ <comment xml:lang="ru">Файл службы D-Bus</comment>
+ <comment xml:lang="pt_BR">Arquivo de serviço do D-Bus</comment>
+ <comment xml:lang="pl">Plik usługi D-Bus</comment>
+ <comment xml:lang="nl">D-Bus-servicebestand</comment>
+ <comment xml:lang="ko">D-Bus 서비스 파일</comment>
+ <comment xml:lang="kk">D-Bus қызметтік файлы</comment>
+ <comment xml:lang="ja">D-Bus サービスファイル</comment>
+ <comment xml:lang="it">File servizio D-Bus</comment>
+ <comment xml:lang="is">D-Bus þjónustuskrá</comment>
+ <comment xml:lang="id">Berkas layanan D-Bus</comment>
+ <comment xml:lang="hu">D-Bus szolgáltatás fájl</comment>
+ <comment xml:lang="hr">Datoteka D-Bus usluge</comment>
+ <comment xml:lang="he">קובץ שירות D-Bus</comment>
+ <comment xml:lang="gl">Ficheiro de servizo D-Bus</comment>
+ <comment xml:lang="ga">comhad seirbhíse D-Bus</comment>
+ <comment xml:lang="fur">file di servizi D-Bus</comment>
+ <comment xml:lang="fr">fichier de service D-Bus</comment>
+ <comment xml:lang="fi">D-Bus-palvelutiedosto</comment>
+ <comment xml:lang="eu">D-Bus zerbitzu fitxategia</comment>
+ <comment xml:lang="es">archivo de servicio de D-Bus</comment>
+ <comment xml:lang="en_GB">D-Bus service file</comment>
+ <comment xml:lang="de">D-Bus-Dienstdatei</comment>
+ <comment xml:lang="da">D-Bus-tjenestefil</comment>
+ <comment xml:lang="cs">soubor služby D-Bus</comment>
+ <comment xml:lang="ca">fitxer de servei de D-Bus</comment>
+ <comment xml:lang="bg">Услуга — D-Bus</comment>
+ <comment xml:lang="be">файл сэрвісу D-Bus</comment>
+ <comment xml:lang="ar">ملف خدمة دي-باص</comment>
+ <comment xml:lang="af">D-Bus-dienslêer</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="\n[D-BUS Service]\n" type="string" offset="0:256"/>
- <match value="[D-BUS Service]\n" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\n[D-BUS Service]\n" offset="0:256"/>
+ <match type="string" value="[D-BUS Service]\n" offset="0"/>
</magic>
<glob pattern="*.service"/>
</mime-type>
<mime-type type="text/x-systemd-unit">
- <comment>systemd unit file</comment>
- <comment xml:lang="ast">ficheru d'unidaes de systemd</comment>
- <comment xml:lang="ca">fitxer d'unitat de systemd</comment>
- <comment xml:lang="cs">jednotkový soubor systemd</comment>
- <comment xml:lang="de">systemd-Einheitsdatei</comment>
- <comment xml:lang="en_GB">systemd unit file</comment>
- <comment xml:lang="es">archivo de unidad de systemd</comment>
- <comment xml:lang="eu">systemd unitate fitxategia</comment>
- <comment xml:lang="fi">systemd-yksikkötiedosto</comment>
- <comment xml:lang="fr">fichier d'unité systemd</comment>
- <comment xml:lang="ga">comhad aonaid systemd</comment>
- <comment xml:lang="hr">Datoteka systemd jedinice</comment>
- <comment xml:lang="hu">systemd egység fájl</comment>
- <comment xml:lang="id">berkas unit systemd</comment>
- <comment xml:lang="it">File unità systemd</comment>
- <comment xml:lang="kk">systemd юнит файлы</comment>
- <comment xml:lang="ko">systemd 유닛 파일</comment>
- <comment xml:lang="pl">Plik jednostki systemd</comment>
- <comment xml:lang="pt_BR">Arquivo de unit do systemd</comment>
- <comment xml:lang="ru">Модульный файл Systemd</comment>
- <comment xml:lang="sk">Súbor jednotky systemd</comment>
- <comment xml:lang="sr">датотека јединице системд-а</comment>
- <comment xml:lang="sv">systemd-enhetsfil</comment>
- <comment xml:lang="tr">systemd birim dosyası</comment>
+ <comment>Systemd unit file</comment>
<comment xml:lang="uk">файл модуля systemd</comment>
- <comment xml:lang="zh_CN">systemd 单元文件</comment>
- <comment xml:lang="zh_TW">systemd 單位檔</comment>
+ <comment xml:lang="sv">Systemd-enhetsfil</comment>
+ <comment xml:lang="ru">Модульный файл Systemd</comment>
+ <comment xml:lang="pl">Plik jednostki systemd</comment>
+ <comment xml:lang="ja">systemdのunitファイル</comment>
+ <comment xml:lang="it">File unità systemd</comment>
+ <comment xml:lang="gl">Ficheiro de unidade de Systemd</comment>
+ <comment xml:lang="eu">Systemd unitate-fitxategia</comment>
+ <comment xml:lang="es">archivo de unidad de Systemd</comment>
+ <comment xml:lang="de">Systemd-Einheitendatei</comment>
+ <comment xml:lang="be">файл адзінкі systemd</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
-
- <match value="\n[Unit]\n" type="string" offset="0:256"/>
- <match value="\n[Install]\n" type="string" offset="0:256"/>
- <match value="\n[Automount]\n" type="string" offset="0:256"/>
-
- <match value="\n[Mount]\n" type="string" offset="0:256"/>
- <match value="\n[Path]\n" type="string" offset="0:256"/>
- <match value="\n[Scope]\n" type="string" offset="0:256"/>
- <match value="\n[Service]\n" type="string" offset="0:256"/>
- <match value="\n[Slice]\n" type="string" offset="0:256"/>
- <match value="\n[Socket]\n" type="string" offset="0:256"/>
- <match value="\n[Swap]\n" type="string" offset="0:256"/>
-
- <match value="\n[Timer]\n" type="string" offset="0:256"/>
-
-
- <match value="[Unit]\n" type="string" offset="0"/>
- <match value="[Install]\n" type="string" offset="0"/>
- <match value="[Automount]\n" type="string" offset="0"/>
- <match value="[Mount]\n" type="string" offset="0"/>
- <match value="[Path]\n" type="string" offset="0"/>
- <match value="[Scope]\n" type="string" offset="0"/>
- <match value="[Service]\n" type="string" offset="0"/>
- <match value="[Slice]\n" type="string" offset="0"/>
- <match value="[Socket]\n" type="string" offset="0"/>
- <match value="[Swap]\n" type="string" offset="0"/>
- <match value="[Timer]\n" type="string" offset="0"/>
+ <magic>
+ <!-- Matches part-way through the file. -->
+ <match type="string" value="\n[Unit]\n" offset="0:256"/>
+ <match type="string" value="\n[Install]\n" offset="0:256"/>
+ <match type="string" value="\n[Automount]\n" offset="0:256"/>
+ <!-- Note no [Device] section exists (https://www.freedesktop.org/software/systemd/man/systemd.device.html) -->
+ <match type="string" value="\n[Mount]\n" offset="0:256"/>
+ <match type="string" value="\n[Path]\n" offset="0:256"/>
+ <match type="string" value="\n[Scope]\n" offset="0:256"/>
+ <match type="string" value="\n[Service]\n" offset="0:256"/>
+ <match type="string" value="\n[Slice]\n" offset="0:256"/>
+ <match type="string" value="\n[Socket]\n" offset="0:256"/>
+ <match type="string" value="\n[Swap]\n" offset="0:256"/>
+ <!-- Note no [Target] section exists (https://www.freedesktop.org/software/systemd/man/systemd.target.html) -->
+ <match type="string" value="\n[Timer]\n" offset="0:256"/>
+ <!-- Matches at the start of the file. -->
+ <match type="string" value="[Unit]\n" offset="0"/>
+ <match type="string" value="[Install]\n" offset="0"/>
+ <match type="string" value="[Automount]\n" offset="0"/>
+ <match type="string" value="[Mount]\n" offset="0"/>
+ <match type="string" value="[Path]\n" offset="0"/>
+ <match type="string" value="[Scope]\n" offset="0"/>
+ <match type="string" value="[Service]\n" offset="0"/>
+ <match type="string" value="[Slice]\n" offset="0"/>
+ <match type="string" value="[Socket]\n" offset="0"/>
+ <match type="string" value="[Swap]\n" offset="0"/>
+ <match type="string" value="[Timer]\n" offset="0"/>
</magic>
<glob pattern="*.automount"/>
<glob pattern="*.device"/>
@@ -37185,175 +39589,234 @@
</mime-type>
<mime-type type="application/xslt+xml">
<comment>XSLT stylesheet</comment>
- <comment xml:lang="ar">نمط XSLT</comment>
- <comment xml:lang="be@latin">Arkuš stylaŭ XSLT</comment>
- <comment xml:lang="bg">Стилове — XSLT</comment>
- <comment xml:lang="ca">full d'estil XSLT</comment>
- <comment xml:lang="cs">stylopis XSLT</comment>
- <comment xml:lang="da">XSLT-stilark</comment>
- <comment xml:lang="de">XSLT-Stylesheet</comment>
- <comment xml:lang="el">Φύλλο στυλ XSLT</comment>
- <comment xml:lang="en_GB">XSLT stylesheet</comment>
- <comment xml:lang="eo">XSLT-stilfolio</comment>
- <comment xml:lang="es">hoja de estilos XSLT</comment>
- <comment xml:lang="eu">XSLT estilo-orria</comment>
- <comment xml:lang="fi">XSLT-tyylitiedosto</comment>
- <comment xml:lang="fo">XSLT sniðark</comment>
- <comment xml:lang="fr">feuille de style XSLT</comment>
- <comment xml:lang="ga">stílbhileog XSLT</comment>
- <comment xml:lang="gl">folla de estilo XSLT</comment>
- <comment xml:lang="he">גליון סגנון XSLT</comment>
- <comment xml:lang="hr">XSLT stilska tablica</comment>
- <comment xml:lang="hu">XSLT-stíluslap</comment>
- <comment xml:lang="ia">Folio de stilo XSLT</comment>
- <comment xml:lang="id">Lembar gaya XSLT</comment>
- <comment xml:lang="it">Foglio di stile XSLT</comment>
- <comment xml:lang="ja">XSLT スタイルシート</comment>
- <comment xml:lang="kk">XSLT стильдер кестесі</comment>
- <comment xml:lang="ko">XSLT 스타일시트</comment>
- <comment xml:lang="lt">XSLT stiliaus aprašas</comment>
- <comment xml:lang="lv">XSLT izklājlapa</comment>
- <comment xml:lang="ms">Helaian Gaya XSLT</comment>
- <comment xml:lang="nb">XSLT-stilark</comment>
- <comment xml:lang="nl">XSLT-stijlblad</comment>
- <comment xml:lang="nn">XSLT-stilark</comment>
- <comment xml:lang="oc">fuèlh d'estil XSLT</comment>
- <comment xml:lang="pl">Arkusz stylów XSLT</comment>
- <comment xml:lang="pt">folha de estilos XSLT</comment>
- <comment xml:lang="pt_BR">Folha de estilo XSLT</comment>
- <comment xml:lang="ro">Fișă de stil XSLT</comment>
- <comment xml:lang="ru">Таблица стилей XSLT</comment>
- <comment xml:lang="sk">Štýl XSLT</comment>
- <comment xml:lang="sl">Slogovna predloga XSLT</comment>
- <comment xml:lang="sq">Fletë stili XSLT</comment>
- <comment xml:lang="sr">ИксСЛТ стилски лист</comment>
- <comment xml:lang="sv">XSLT-stilmall</comment>
- <comment xml:lang="tr">XSLT çalışma sayfası</comment>
- <comment xml:lang="uk">таблиця стилів XSLT</comment>
- <comment xml:lang="vi">Tờ kiểu dáng XSLT</comment>
- <comment xml:lang="zh_CN">XSLT 样式表</comment>
<comment xml:lang="zh_TW">XSLT 樣式表</comment>
+ <comment xml:lang="zh_CN">XSLT 样式表</comment>
+ <comment xml:lang="vi">Tờ kiểu dáng XSLT</comment>
+ <comment xml:lang="uk">таблиця стилів XSLT</comment>
+ <comment xml:lang="tr">XSLT çalışma sayfası</comment>
+ <comment xml:lang="sv">XSLT-stilmall</comment>
+ <comment xml:lang="sr">ИксСЛТ стилски лист</comment>
+ <comment xml:lang="sq">fletëstil XSLT</comment>
+ <comment xml:lang="sl">Slogovna predloga XSLT</comment>
+ <comment xml:lang="si">XSLT මෝස්තර පත්‍රිකාව</comment>
+ <comment xml:lang="sk">Štýl XSLT</comment>
+ <comment xml:lang="ru">Таблица стилей XSLT</comment>
+ <comment xml:lang="ro">Fișă de stil XSLT</comment>
+ <comment xml:lang="pt_BR">Folha de estilo XSLT</comment>
+ <comment xml:lang="pt">folha de estilos XSLT</comment>
+ <comment xml:lang="pl">Arkusz stylów XSLT</comment>
+ <comment xml:lang="oc">fuèlh d'estil XSLT</comment>
+ <comment xml:lang="nn">XSLT-stilark</comment>
+ <comment xml:lang="nl">XSLT-stijlblad</comment>
+ <comment xml:lang="nb">XSLT-stilark</comment>
+ <comment xml:lang="ms">Helaian Gaya XSLT</comment>
+ <comment xml:lang="lv">XSLT izklājlapa</comment>
+ <comment xml:lang="lt">XSLT stiliaus aprašas</comment>
+ <comment xml:lang="ko">XSLT 스타일시트</comment>
+ <comment xml:lang="kk">XSLT стильдер кестесі</comment>
+ <comment xml:lang="ja">XSLT スタイルシート</comment>
+ <comment xml:lang="it">Foglio di stile XSLT</comment>
+ <comment xml:lang="is">XSLT stílblað</comment>
+ <comment xml:lang="id">Lembar gaya XSLT</comment>
+ <comment xml:lang="ia">Folio de stilo XSLT</comment>
+ <comment xml:lang="hu">XSLT-stíluslap</comment>
+ <comment xml:lang="hr">XSLT stilska tablica</comment>
+ <comment xml:lang="he">גיליון סגנון XSLT</comment>
+ <comment xml:lang="gl">folla de estilo XSLT</comment>
+ <comment xml:lang="ga">stílbhileog XSLT</comment>
+ <comment xml:lang="fur">sfuei di calcul XSLT</comment>
+ <comment xml:lang="fr">feuille de style XSLT</comment>
+ <comment xml:lang="fo">XSLT sniðark</comment>
+ <comment xml:lang="fi">XSLT-tyylitiedosto</comment>
+ <comment xml:lang="eu">XSLT estilo-orria</comment>
+ <comment xml:lang="es">hoja de estilos XSLT</comment>
+ <comment xml:lang="eo">XSLT-stilfolio</comment>
+ <comment xml:lang="en_GB">XSLT stylesheet</comment>
+ <comment xml:lang="el">Φύλλο στυλ XSLT</comment>
+ <comment xml:lang="de">XSLT-Stilvorlage</comment>
+ <comment xml:lang="da">XSLT-stilark</comment>
+ <comment xml:lang="cs">stylopis XSLT</comment>
+ <comment xml:lang="ca">full d'estil XSLT</comment>
+ <comment xml:lang="bg">Стилове — XSLT</comment>
+ <comment xml:lang="be@latin">Arkuš stylaŭ XSLT</comment>
+ <comment xml:lang="be">табліца стыляў XSLT</comment>
+ <comment xml:lang="ar">نمط XSLT</comment>
+ <comment xml:lang="af">XSLT-stylblad</comment>
<acronym>XSLT</acronym>
<expanded-acronym>eXtensible Stylesheet Language Transformation</expanded-acronym>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="&lt;xsl:stylesheet" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="&lt;xsl:stylesheet" offset="0:256"/>
</magic>
<glob pattern="*.xsl"/>
<glob pattern="*.xslt"/>
<root-XML namespaceURI="http://www.w3.org/1999/XSL/Transform" localName="stylesheet"/>
<sub-class-of type="application/xml"/>
</mime-type>
+ <mime-type type="text/x-maven+xml">
+ <comment>Maven description file</comment>
+ <comment xml:lang="zh_TW">Maven 描述檔</comment>
+ <comment xml:lang="zh_CN">Maven 描述文件</comment>
+ <comment xml:lang="uk">файл опису Maven</comment>
+ <comment xml:lang="tr">Maven açıklama dosyası</comment>
+ <comment xml:lang="sv">Maven-beskrivningsfil</comment>
+ <comment xml:lang="sq">kartelë përshkrimi Maven</comment>
+ <comment xml:lang="sl">Opisna datoteka Maven</comment>
+ <comment xml:lang="si">Maven විස්තර ගොනුව</comment>
+ <comment xml:lang="sk">Súbor popisu Maven</comment>
+ <comment xml:lang="ru">Файл описания Maven</comment>
+ <comment xml:lang="pt_BR">Arquivo de descrição Maven</comment>
+ <comment xml:lang="pl">Plik opisu Maven</comment>
+ <comment xml:lang="nl">Maven-omschrijvingsbestand</comment>
+ <comment xml:lang="ko">Maven 설명 파일</comment>
+ <comment xml:lang="kk">Maven сипаттама файлы</comment>
+ <comment xml:lang="ja">Maven 説明ファイル</comment>
+ <comment xml:lang="it">File descrizione Mave</comment>
+ <comment xml:lang="is">Maven lýsingarskrá</comment>
+ <comment xml:lang="id">Berkas deskripsi Maven</comment>
+ <comment xml:lang="hu">Maven leírófájl</comment>
+ <comment xml:lang="hr">Maven datoteka opisa</comment>
+ <comment xml:lang="he">קובץ תיאור Maven</comment>
+ <comment xml:lang="gl">Ficheiro de descrición de Maven</comment>
+ <comment xml:lang="ga">cur síos Maven</comment>
+ <comment xml:lang="fur">file di descrizion Maven</comment>
+ <comment xml:lang="fr">fichier de description Maven</comment>
+ <comment xml:lang="fi">Maven-kuvaustiedosto</comment>
+ <comment xml:lang="eu">Maven azalpen fitxategia</comment>
+ <comment xml:lang="es">archivo de descripción de Maven</comment>
+ <comment xml:lang="en_GB">Maven description file</comment>
+ <comment xml:lang="de">Maven-Beschreibungsdatei</comment>
+ <comment xml:lang="da">Maven-beskrivelsesfil</comment>
+ <comment xml:lang="cs">popisný soubor Maven</comment>
+ <comment xml:lang="ca">fitxer de descripció Maven</comment>
+ <comment xml:lang="bg">Модел — Maven</comment>
+ <comment xml:lang="be">файл апісання Maven</comment>
+ <comment xml:lang="ar">ملف وصف Maven</comment>
+ <comment xml:lang="af">Maven-beskrywingslêer</comment>
+ <generic-icon name="text-x-generic"/>
+ <glob pattern="pom.xml"/>
+ <glob pattern="settings.xml"/>
+ <sub-class-of type="application/xml"/>
+ </mime-type>
<mime-type type="text/xmcd">
<comment>XMCD CD database</comment>
- <comment xml:lang="ar">قاعدة بيانات XMCD CD</comment>
- <comment xml:lang="be@latin">Baza źviestak ab dyskach XMCD</comment>
- <comment xml:lang="bg">База от данни за CD-та — XMCD</comment>
- <comment xml:lang="ca">base de dades de CD XMCD</comment>
- <comment xml:lang="cs">databáze XMCD CD</comment>
- <comment xml:lang="da">XMCD-cd-database</comment>
- <comment xml:lang="de">XMCD-CD-Datenbank</comment>
- <comment xml:lang="el">Βάση δεδομένων CD XMCD</comment>
- <comment xml:lang="en_GB">XMCD CD database</comment>
- <comment xml:lang="es">base de datos de CD XMCD</comment>
- <comment xml:lang="eu">XMCD CD datu-basea</comment>
- <comment xml:lang="fi">XMCD CD -tietokanta</comment>
- <comment xml:lang="fo">XMCD fløgu dátustovnur</comment>
- <comment xml:lang="fr">base de données de CD XMCD</comment>
- <comment xml:lang="ga">bunachar sonraí XMCD CD</comment>
- <comment xml:lang="gl">base de datos de CD XMCD</comment>
- <comment xml:lang="he">מסד נתונים XMCD CD</comment>
- <comment xml:lang="hr">XMCD CD baza podataka</comment>
- <comment xml:lang="hu">XMCD CD-adatbázis</comment>
- <comment xml:lang="ia">Base de datos de CD XMCD</comment>
- <comment xml:lang="id">Basis data XMCD CD</comment>
- <comment xml:lang="it">Database XMCD CD</comment>
- <comment xml:lang="ja">XMCD CD データベース</comment>
- <comment xml:lang="kk">XMCD CD дерекқоры</comment>
- <comment xml:lang="ko">XMCD CD 데이터베이스</comment>
- <comment xml:lang="lt">XMCD CD duomenų bazė</comment>
- <comment xml:lang="lv">XMCD CD datubāze</comment>
- <comment xml:lang="nb">XMCD CD-database</comment>
- <comment xml:lang="nl">XMCD CD-gegevensbank</comment>
- <comment xml:lang="nn">XMCD CD-database</comment>
- <comment xml:lang="oc">banca de donadas de CD XMCD</comment>
- <comment xml:lang="pl">Baza danych CD XMCD</comment>
- <comment xml:lang="pt">base de dados XMCD CD</comment>
- <comment xml:lang="pt_BR">Banco de dados de CD XMCD</comment>
- <comment xml:lang="ro">Bază de date XMCD CD</comment>
- <comment xml:lang="ru">База данных компакт-дисков XMCD</comment>
- <comment xml:lang="sk">Databáza XMCD CD</comment>
- <comment xml:lang="sl">Podatkovna zbirka XMCD CD</comment>
- <comment xml:lang="sq">Bazë me të dhëna XMCD CD</comment>
- <comment xml:lang="sr">ИксМЦД ЦД база података</comment>
- <comment xml:lang="sv">XMCD cd-databas</comment>
- <comment xml:lang="tr">XMCD CD veritabanı</comment>
- <comment xml:lang="uk">база даних XMCD CD</comment>
- <comment xml:lang="vi">Cơ sở dữ liệu CD XMCD</comment>
- <comment xml:lang="zh_CN">XMCD CD 数据库</comment>
<comment xml:lang="zh_TW">XMCD CD 資料庫</comment>
+ <comment xml:lang="zh_CN">XMCD CD 数据库</comment>
+ <comment xml:lang="vi">Cơ sở dữ liệu CD XMCD</comment>
+ <comment xml:lang="uk">база даних XMCD CD</comment>
+ <comment xml:lang="tr">XMCD CD veri tabanı</comment>
+ <comment xml:lang="sv">XMCD cd-databas</comment>
+ <comment xml:lang="sr">ИксМЦД ЦД база података</comment>
+ <comment xml:lang="sq">bazë të dhënash XMCD CD</comment>
+ <comment xml:lang="sl">Podatkovna zbirka XMCD CD</comment>
+ <comment xml:lang="si">XMCD CD දත්ත ගබඩාව</comment>
+ <comment xml:lang="sk">Databáza XMCD CD</comment>
+ <comment xml:lang="ru">База данных компакт-дисков XMCD</comment>
+ <comment xml:lang="ro">Bază de date XMCD CD</comment>
+ <comment xml:lang="pt_BR">Banco de dados de CD XMCD</comment>
+ <comment xml:lang="pt">base de dados XMCD CD</comment>
+ <comment xml:lang="pl">Baza danych CD XMCD</comment>
+ <comment xml:lang="oc">banca de donadas de CD XMCD</comment>
+ <comment xml:lang="nn">XMCD CD-database</comment>
+ <comment xml:lang="nl">XMCD CD-gegevensbank</comment>
+ <comment xml:lang="nb">XMCD CD-database</comment>
+ <comment xml:lang="lv">XMCD CD datubāze</comment>
+ <comment xml:lang="lt">XMCD CD duomenų bazė</comment>
+ <comment xml:lang="ko">XMCD CD 데이터베이스</comment>
+ <comment xml:lang="kk">XMCD CD дерекқоры</comment>
+ <comment xml:lang="ja">XMCD CD データベース</comment>
+ <comment xml:lang="it">Database XMCD CD</comment>
+ <comment xml:lang="is">XMCD CD gagnagrunnur</comment>
+ <comment xml:lang="id">Basis data XMCD CD</comment>
+ <comment xml:lang="ia">Base de datos de CD XMCD</comment>
+ <comment xml:lang="hu">XMCD CD-adatbázis</comment>
+ <comment xml:lang="hr">XMCD CD baza podataka</comment>
+ <comment xml:lang="he">מסד נתונים XMCD CD</comment>
+ <comment xml:lang="gl">base de datos de CD XMCD</comment>
+ <comment xml:lang="ga">bunachar sonraí XMCD CD</comment>
+ <comment xml:lang="fur">base di dâts XMCD CD</comment>
+ <comment xml:lang="fr">base de données de CD XMCD</comment>
+ <comment xml:lang="fo">XMCD fløgu dátustovnur</comment>
+ <comment xml:lang="fi">XMCD CD -tietokanta</comment>
+ <comment xml:lang="eu">XMCD CD datu-basea</comment>
+ <comment xml:lang="es">base de datos de CD XMCD</comment>
+ <comment xml:lang="en_GB">XMCD CD database</comment>
+ <comment xml:lang="el">Βάση δεδομένων CD XMCD</comment>
+ <comment xml:lang="de">XMCD-CD-Datenbank</comment>
+ <comment xml:lang="da">XMCD-cd-database</comment>
+ <comment xml:lang="cs">databáze XMCD CD</comment>
+ <comment xml:lang="ca">base de dades de CD XMCD</comment>
+ <comment xml:lang="bg">База от данни за CD-та — XMCD</comment>
+ <comment xml:lang="be@latin">Baza źviestak ab dyskach XMCD</comment>
+ <comment xml:lang="be">база даных кампакт-дыскаў XMCD</comment>
+ <comment xml:lang="ar">قاعدة بيانات XMCD CD</comment>
+ <comment xml:lang="af">XMCD CD-databasis</comment>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="# xmcd" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="# xmcd" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/xml">
<comment>XML document</comment>
- <comment xml:lang="ar">مستند XML</comment>
- <comment xml:lang="ast">Documentu XML</comment>
- <comment xml:lang="be@latin">Dakument XML</comment>
- <comment xml:lang="bg">Документ — XML</comment>
- <comment xml:lang="ca">document XML</comment>
- <comment xml:lang="cs">dokument XML</comment>
- <comment xml:lang="da">XML-dokument</comment>
- <comment xml:lang="de">XML-Dokument</comment>
- <comment xml:lang="el">Έγγραφο XML</comment>
- <comment xml:lang="en_GB">XML document</comment>
- <comment xml:lang="eo">XML-dokumento</comment>
- <comment xml:lang="es">documento XML</comment>
- <comment xml:lang="eu">XML dokumentua</comment>
- <comment xml:lang="fi">XML-asiakirja</comment>
- <comment xml:lang="fo">XML skjal</comment>
- <comment xml:lang="fr">document XML</comment>
- <comment xml:lang="ga">cáipéis XML</comment>
- <comment xml:lang="gl">documento XML</comment>
- <comment xml:lang="he">מסמך XML</comment>
- <comment xml:lang="hr">XML dokument</comment>
- <comment xml:lang="hu">XML dokumentum</comment>
- <comment xml:lang="ia">Documento XML</comment>
- <comment xml:lang="id">Dokumen XML</comment>
- <comment xml:lang="it">Documento XML</comment>
- <comment xml:lang="ja">XML ドキュメント</comment>
- <comment xml:lang="kk">XML құжаты</comment>
- <comment xml:lang="ko">XML 문서</comment>
- <comment xml:lang="lt">XML dokumentas</comment>
- <comment xml:lang="lv">XML dokuments</comment>
- <comment xml:lang="nb">XML-dokument</comment>
- <comment xml:lang="nl">XML-document</comment>
- <comment xml:lang="nn">XML-dokument</comment>
- <comment xml:lang="oc">document XML</comment>
- <comment xml:lang="pl">Dokument XML</comment>
- <comment xml:lang="pt">documento XML</comment>
- <comment xml:lang="pt_BR">Documento XML</comment>
- <comment xml:lang="ro">Document XML</comment>
- <comment xml:lang="ru">Документ XML</comment>
- <comment xml:lang="sk">Dokument XML</comment>
- <comment xml:lang="sl">Dokument XML</comment>
- <comment xml:lang="sq">Dokument XML</comment>
- <comment xml:lang="sr">ИксМЛ документ</comment>
- <comment xml:lang="sv">XML-dokument</comment>
- <comment xml:lang="tr">XML belgesi</comment>
- <comment xml:lang="uk">документ XML</comment>
- <comment xml:lang="vi">Tài liệu XML</comment>
- <comment xml:lang="zh_CN">XML 文档</comment>
<comment xml:lang="zh_TW">XML 文件</comment>
+ <comment xml:lang="zh_CN">XML 文档</comment>
+ <comment xml:lang="vi">Tài liệu XML</comment>
+ <comment xml:lang="uk">документ XML</comment>
+ <comment xml:lang="tr">XML belgesi</comment>
+ <comment xml:lang="sv">XML-dokument</comment>
+ <comment xml:lang="sr">ИксМЛ документ</comment>
+ <comment xml:lang="sq">dokument XML</comment>
+ <comment xml:lang="sl">Dokument XML</comment>
+ <comment xml:lang="si">XML ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument XML</comment>
+ <comment xml:lang="ru">Документ XML</comment>
+ <comment xml:lang="ro">Document XML</comment>
+ <comment xml:lang="pt_BR">Documento XML</comment>
+ <comment xml:lang="pt">documento XML</comment>
+ <comment xml:lang="pl">Dokument XML</comment>
+ <comment xml:lang="oc">document XML</comment>
+ <comment xml:lang="nn">XML-dokument</comment>
+ <comment xml:lang="nl">XML-document</comment>
+ <comment xml:lang="nb">XML-dokument</comment>
+ <comment xml:lang="lv">XML dokuments</comment>
+ <comment xml:lang="lt">XML dokumentas</comment>
+ <comment xml:lang="ko">XML 문서</comment>
+ <comment xml:lang="kk">XML құжаты</comment>
+ <comment xml:lang="ja">XML ドキュメント</comment>
+ <comment xml:lang="it">Documento XML</comment>
+ <comment xml:lang="is">XML skjal</comment>
+ <comment xml:lang="id">Dokumen XML</comment>
+ <comment xml:lang="ia">Documento XML</comment>
+ <comment xml:lang="hu">XML dokumentum</comment>
+ <comment xml:lang="hr">XML dokument</comment>
+ <comment xml:lang="he">מסמך XML</comment>
+ <comment xml:lang="gl">documento XML</comment>
+ <comment xml:lang="ga">cáipéis XML</comment>
+ <comment xml:lang="fur">document XML</comment>
+ <comment xml:lang="fr">document XML</comment>
+ <comment xml:lang="fo">XML skjal</comment>
+ <comment xml:lang="fi">XML-asiakirja</comment>
+ <comment xml:lang="eu">XML dokumentua</comment>
+ <comment xml:lang="es">documento XML</comment>
+ <comment xml:lang="eo">XML-dokumento</comment>
+ <comment xml:lang="en_GB">XML document</comment>
+ <comment xml:lang="el">Έγγραφο XML</comment>
+ <comment xml:lang="de">XML-Dokument</comment>
+ <comment xml:lang="da">XML-dokument</comment>
+ <comment xml:lang="cs">dokument XML</comment>
+ <comment xml:lang="ca">document XML</comment>
+ <comment xml:lang="bg">Документ — XML</comment>
+ <comment xml:lang="be@latin">Dakument XML</comment>
+ <comment xml:lang="be">дакумент XML</comment>
+ <comment xml:lang="ast">Documentu XML</comment>
+ <comment xml:lang="ar">مستند XML</comment>
+ <comment xml:lang="af">XML-dokument</comment>
<acronym>XML</acronym>
<expanded-acronym>eXtensible Markup Language</expanded-acronym>
<sub-class-of type="text/plain"/>
<generic-icon name="text-html"/>
<magic priority="40">
- <match value="&lt;?xml" type="string" offset="0"/>
- <match value="&lt;!--" type="string" offset="0"/>
+ <match type="string" value="&lt;?xml" offset="0"/>
</magic>
<glob pattern="*.xml"/>
<glob pattern="*.xbl"/>
@@ -37363,53 +39826,58 @@
</mime-type>
<mime-type type="application/xml-external-parsed-entity">
<comment>XML entities document</comment>
- <comment xml:lang="ar">مستند كيانات XML</comment>
- <comment xml:lang="ast">Documentu d'entidaes XML</comment>
- <comment xml:lang="be@latin">Dakument elementaŭ XML</comment>
- <comment xml:lang="bg">Документ — заместващи последователности в XML</comment>
- <comment xml:lang="ca">document d'entitats XML</comment>
- <comment xml:lang="cs">dokument entit XML</comment>
- <comment xml:lang="da">XML-enhedsdokument</comment>
- <comment xml:lang="de">XML-Dokument-Entitäten</comment>
- <comment xml:lang="el">Έγγραφο οντοτήτων XML</comment>
- <comment xml:lang="en_GB">XML entities document</comment>
- <comment xml:lang="es">documento de entidades XML</comment>
- <comment xml:lang="eu">XML entitateen dokumentua</comment>
- <comment xml:lang="fi">XML-entiteettiasiakirja</comment>
- <comment xml:lang="fo">XML einindisskjal</comment>
- <comment xml:lang="fr">document d'entités XML</comment>
- <comment xml:lang="ga">cáipéis aonán XML</comment>
- <comment xml:lang="gl">documento de entidades XML</comment>
- <comment xml:lang="he">מסמך ישויות XML</comment>
- <comment xml:lang="hr">Dokument XML subjekata</comment>
- <comment xml:lang="hu">XML egyeddokumentum</comment>
- <comment xml:lang="ia">Documento de entitates XML</comment>
- <comment xml:lang="id">Dokumen entitas XML</comment>
- <comment xml:lang="it">Documento entità XML</comment>
- <comment xml:lang="ja">XML エントリドキュメント</comment>
- <comment xml:lang="kk">XML мәндер құжаты</comment>
- <comment xml:lang="ko">XML 엔티티 문서</comment>
- <comment xml:lang="lt">XML esybių dokumentas</comment>
- <comment xml:lang="lv">XML vienību dokuments</comment>
- <comment xml:lang="nb">XML-entitetsdokument</comment>
- <comment xml:lang="nl">XML entiteiten-document</comment>
- <comment xml:lang="nn">XML-entitet-dokument</comment>
- <comment xml:lang="oc">document d'entitats XML</comment>
- <comment xml:lang="pl">Dokument jednostek XML</comment>
- <comment xml:lang="pt">documento de entidades XML</comment>
- <comment xml:lang="pt_BR">Documento de entidades XML</comment>
- <comment xml:lang="ro">Document entități XML</comment>
- <comment xml:lang="ru">Файл сущностей XML</comment>
- <comment xml:lang="sk">Dokument entít XML</comment>
- <comment xml:lang="sl">Dokument XML določil</comment>
- <comment xml:lang="sq">Dokument njësish XML</comment>
- <comment xml:lang="sr">документ ИксМЛ ставки</comment>
- <comment xml:lang="sv">XML-entitetsdokument</comment>
- <comment xml:lang="tr">XML varlıklar belgesi</comment>
- <comment xml:lang="uk">документ об’єктів XML</comment>
- <comment xml:lang="vi">Tài liệu thực thể XML</comment>
- <comment xml:lang="zh_CN">XML 特征文档</comment>
<comment xml:lang="zh_TW">XML 實體文件</comment>
+ <comment xml:lang="zh_CN">XML 特征文档</comment>
+ <comment xml:lang="vi">Tài liệu thực thể XML</comment>
+ <comment xml:lang="uk">документ об’єктів XML</comment>
+ <comment xml:lang="tr">XML varlıklar belgesi</comment>
+ <comment xml:lang="sv">XML-entitetsdokument</comment>
+ <comment xml:lang="sr">документ ИксМЛ ставки</comment>
+ <comment xml:lang="sq">dokument njësish XML</comment>
+ <comment xml:lang="sl">Dokument XML določil</comment>
+ <comment xml:lang="si">XML ආයතන ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument entít XML</comment>
+ <comment xml:lang="ru">Файл сущностей XML</comment>
+ <comment xml:lang="ro">Document entități XML</comment>
+ <comment xml:lang="pt_BR">Documento de entidades XML</comment>
+ <comment xml:lang="pt">documento de entidades XML</comment>
+ <comment xml:lang="pl">Dokument jednostek XML</comment>
+ <comment xml:lang="oc">document d'entitats XML</comment>
+ <comment xml:lang="nn">XML-entitet-dokument</comment>
+ <comment xml:lang="nl">XML entiteiten-document</comment>
+ <comment xml:lang="nb">XML-entitetsdokument</comment>
+ <comment xml:lang="lv">XML vienību dokuments</comment>
+ <comment xml:lang="lt">XML esybių dokumentas</comment>
+ <comment xml:lang="ko">XML 엔티티 문서</comment>
+ <comment xml:lang="kk">XML мәндер құжаты</comment>
+ <comment xml:lang="ja">XML エントリドキュメント</comment>
+ <comment xml:lang="it">Documento entità XML</comment>
+ <comment xml:lang="is">XML-eininda skjal</comment>
+ <comment xml:lang="id">Dokumen entitas XML</comment>
+ <comment xml:lang="ia">Documento de entitates XML</comment>
+ <comment xml:lang="hu">XML egyeddokumentum</comment>
+ <comment xml:lang="hr">Dokument XML subjekata</comment>
+ <comment xml:lang="he">מסמך ישויות XML</comment>
+ <comment xml:lang="gl">documento de entidades XML</comment>
+ <comment xml:lang="ga">cáipéis aonán XML</comment>
+ <comment xml:lang="fur">document entitâts XML</comment>
+ <comment xml:lang="fr">document d'entités XML</comment>
+ <comment xml:lang="fo">XML einindisskjal</comment>
+ <comment xml:lang="fi">XML-entiteettiasiakirja</comment>
+ <comment xml:lang="eu">XML entitateen dokumentua</comment>
+ <comment xml:lang="es">documento de entidades XML</comment>
+ <comment xml:lang="en_GB">XML entities document</comment>
+ <comment xml:lang="el">Έγγραφο οντοτήτων XML</comment>
+ <comment xml:lang="de">XML-Entitätendokument</comment>
+ <comment xml:lang="da">XML-enhedsdokument</comment>
+ <comment xml:lang="cs">dokument entit XML</comment>
+ <comment xml:lang="ca">document d'entitats XML</comment>
+ <comment xml:lang="bg">Документ — заместващи последователности в XML</comment>
+ <comment xml:lang="be@latin">Dakument elementaŭ XML</comment>
+ <comment xml:lang="be">дакумент сутнасцей XML</comment>
+ <comment xml:lang="ast">Documentu d'entidaes XML</comment>
+ <comment xml:lang="ar">مستند كيانات XML</comment>
+ <comment xml:lang="af">XML-entiteitedokument</comment>
<acronym>XML</acronym>
<expanded-acronym>eXtensible Markup Language</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -37419,177 +39887,192 @@
</mime-type>
<mime-type type="video/dv">
<comment>DV video</comment>
- <comment xml:lang="ar">DV مرئي</comment>
- <comment xml:lang="ast">Videu en DV</comment>
- <comment xml:lang="be@latin">Videa DV</comment>
- <comment xml:lang="bg">Видео — DV</comment>
- <comment xml:lang="ca">vídeo DV</comment>
- <comment xml:lang="cs">video DV</comment>
- <comment xml:lang="da">DV-video</comment>
- <comment xml:lang="de">DV-Video</comment>
- <comment xml:lang="el">Βίντεο DV</comment>
- <comment xml:lang="en_GB">DV video</comment>
- <comment xml:lang="eo">DV-video</comment>
- <comment xml:lang="es">vídeo DV</comment>
- <comment xml:lang="eu">DV bideoa</comment>
- <comment xml:lang="fi">DV-video</comment>
- <comment xml:lang="fo">DV video</comment>
- <comment xml:lang="fr">vidéo DV</comment>
- <comment xml:lang="ga">físeán DV</comment>
- <comment xml:lang="gl">vídeo DV</comment>
- <comment xml:lang="he">וידאו DV</comment>
- <comment xml:lang="hr">DV video snimka</comment>
- <comment xml:lang="hu">DV videó</comment>
- <comment xml:lang="ia">Video DV</comment>
- <comment xml:lang="id">Video DV</comment>
- <comment xml:lang="it">Video DV</comment>
- <comment xml:lang="ja">DV 動画</comment>
- <comment xml:lang="ka">DV ვიდეო</comment>
- <comment xml:lang="kk">DV видеосы</comment>
- <comment xml:lang="ko">DV 동영상</comment>
- <comment xml:lang="lt">DV vaizdo įrašas</comment>
- <comment xml:lang="lv">DV video</comment>
- <comment xml:lang="nb">DV-film</comment>
- <comment xml:lang="nl">DV-video</comment>
- <comment xml:lang="nn">DV-video</comment>
- <comment xml:lang="oc">vidèo DV</comment>
- <comment xml:lang="pl">Plik wideo DV</comment>
- <comment xml:lang="pt">vídeo DV</comment>
- <comment xml:lang="pt_BR">Vídeo DV</comment>
- <comment xml:lang="ro">Video DV</comment>
- <comment xml:lang="ru">Видео DV</comment>
- <comment xml:lang="sk">Video DV</comment>
- <comment xml:lang="sl">Video datoteka DV</comment>
- <comment xml:lang="sq">Video DV</comment>
- <comment xml:lang="sr">ДВ видео</comment>
- <comment xml:lang="sv">DV-video</comment>
- <comment xml:lang="tr">DV video</comment>
- <comment xml:lang="uk">відеокліп DV</comment>
- <comment xml:lang="vi">Ảnh động DV</comment>
- <comment xml:lang="zh_CN">DV 视频</comment>
<comment xml:lang="zh_TW">DV 視訊</comment>
+ <comment xml:lang="zh_CN">DV 视频</comment>
+ <comment xml:lang="vi">Ảnh động DV</comment>
+ <comment xml:lang="uk">відеокліп DV</comment>
+ <comment xml:lang="tr">DV video</comment>
+ <comment xml:lang="sv">DV-video</comment>
+ <comment xml:lang="sr">ДВ видео</comment>
+ <comment xml:lang="sq">video DV</comment>
+ <comment xml:lang="sl">Video datoteka DV</comment>
+ <comment xml:lang="si">DV වීඩියෝ</comment>
+ <comment xml:lang="sk">Video DV</comment>
+ <comment xml:lang="ru">Видео DV</comment>
+ <comment xml:lang="ro">Video DV</comment>
+ <comment xml:lang="pt_BR">Vídeo DV</comment>
+ <comment xml:lang="pt">vídeo DV</comment>
+ <comment xml:lang="pl">Plik wideo DV</comment>
+ <comment xml:lang="oc">vidèo DV</comment>
+ <comment xml:lang="nn">DV-video</comment>
+ <comment xml:lang="nl">DV-video</comment>
+ <comment xml:lang="nb">DV-film</comment>
+ <comment xml:lang="lv">DV video</comment>
+ <comment xml:lang="lt">DV vaizdo įrašas</comment>
+ <comment xml:lang="ko">DV 동영상</comment>
+ <comment xml:lang="kk">DV видеосы</comment>
+ <comment xml:lang="ka">DV ვიდეო</comment>
+ <comment xml:lang="ja">DV 動画</comment>
+ <comment xml:lang="it">Video DV</comment>
+ <comment xml:lang="is">DV myndskeið</comment>
+ <comment xml:lang="id">Video DV</comment>
+ <comment xml:lang="ia">Video DV</comment>
+ <comment xml:lang="hu">DV videó</comment>
+ <comment xml:lang="hr">DV video snimka</comment>
+ <comment xml:lang="he">וידאו DV</comment>
+ <comment xml:lang="gl">vídeo DV</comment>
+ <comment xml:lang="ga">físeán DV</comment>
+ <comment xml:lang="fur">video DV</comment>
+ <comment xml:lang="fr">vidéo DV</comment>
+ <comment xml:lang="fo">DV video</comment>
+ <comment xml:lang="fi">DV-video</comment>
+ <comment xml:lang="eu">DV bideoa</comment>
+ <comment xml:lang="es">vídeo DV</comment>
+ <comment xml:lang="eo">DV-video</comment>
+ <comment xml:lang="en_GB">DV video</comment>
+ <comment xml:lang="el">Βίντεο DV</comment>
+ <comment xml:lang="de">DV-Video</comment>
+ <comment xml:lang="da">DV-video</comment>
+ <comment xml:lang="cs">video DV</comment>
+ <comment xml:lang="ca">vídeo DV</comment>
+ <comment xml:lang="bg">Видео — DV</comment>
+ <comment xml:lang="be@latin">Videa DV</comment>
+ <comment xml:lang="be">відэа DV</comment>
+ <comment xml:lang="ast">Videu en DV</comment>
+ <comment xml:lang="ar">فيديو DV</comment>
+ <comment xml:lang="af">DV-video</comment>
<acronym>DV</acronym>
<expanded-acronym>Digital Video</expanded-acronym>
- <magic priority="50">
- <match value="0x1f070000" type="big32" offset="0" mask="0xffffff00"/>
+ <magic>
+ <match type="big32" value="0x1f070000" mask="0xffffff00" offset="0"/>
</magic>
<glob pattern="*.dv"/>
</mime-type>
<mime-type type="video/isivideo">
<comment>ISI video</comment>
- <comment xml:lang="ar">مرئي ISI</comment>
- <comment xml:lang="ast">Videu n'ISI</comment>
- <comment xml:lang="az">ISI video faylı</comment>
- <comment xml:lang="be@latin">Videa ISI</comment>
- <comment xml:lang="bg">Видео — ISI</comment>
- <comment xml:lang="ca">vídeo ISI</comment>
- <comment xml:lang="cs">video ISI</comment>
- <comment xml:lang="cy">Fideo ISI</comment>
- <comment xml:lang="da">ISI-video</comment>
- <comment xml:lang="de">ISI-Video</comment>
- <comment xml:lang="el">Βίντεο ISI</comment>
- <comment xml:lang="en_GB">ISI video</comment>
- <comment xml:lang="eo">ISI-video</comment>
- <comment xml:lang="es">vídeo ISI</comment>
- <comment xml:lang="eu">ISI bideoa</comment>
- <comment xml:lang="fi">ISI-video</comment>
- <comment xml:lang="fo">ISI video</comment>
- <comment xml:lang="fr">vidéo ISI</comment>
- <comment xml:lang="ga">físeán ISI</comment>
- <comment xml:lang="gl">vídeo ISI</comment>
- <comment xml:lang="he">וידאו ISI</comment>
- <comment xml:lang="hr">ISI video snimka</comment>
- <comment xml:lang="hu">ISI-videó</comment>
- <comment xml:lang="ia">Video ISI</comment>
- <comment xml:lang="id">Video ISI</comment>
- <comment xml:lang="it">Video ISI</comment>
- <comment xml:lang="ja">ISI 動画</comment>
- <comment xml:lang="kk">ISI видеосы</comment>
- <comment xml:lang="ko">ISI 동영상</comment>
- <comment xml:lang="lt">ISI vaizdo įrašas</comment>
- <comment xml:lang="lv">ISI video</comment>
- <comment xml:lang="ms">Video ISI</comment>
- <comment xml:lang="nb">ISI-film</comment>
- <comment xml:lang="nl">ISI-video</comment>
- <comment xml:lang="nn">ISI video</comment>
- <comment xml:lang="oc">vidèo ISI</comment>
- <comment xml:lang="pl">Plik wideo ISI</comment>
- <comment xml:lang="pt">vídeo ISI</comment>
- <comment xml:lang="pt_BR">Vídeo ISI</comment>
- <comment xml:lang="ro">Video ISI</comment>
- <comment xml:lang="ru">Видео ISI</comment>
- <comment xml:lang="sk">Video ISI</comment>
- <comment xml:lang="sl">Video datoteka ISI</comment>
- <comment xml:lang="sq">Video ISI</comment>
- <comment xml:lang="sr">ИСИ видео</comment>
- <comment xml:lang="sv">ISI-video</comment>
- <comment xml:lang="tr">ISI videosu</comment>
- <comment xml:lang="uk">відеокліп ISI</comment>
- <comment xml:lang="vi">Ảnh động ISI</comment>
- <comment xml:lang="zh_CN">ISI 视频</comment>
<comment xml:lang="zh_TW">ISI 視訊</comment>
+ <comment xml:lang="zh_CN">ISI 视频</comment>
+ <comment xml:lang="vi">Ảnh động ISI</comment>
+ <comment xml:lang="uk">відеокліп ISI</comment>
+ <comment xml:lang="tr">ISI videosu</comment>
+ <comment xml:lang="sv">ISI-video</comment>
+ <comment xml:lang="sr">ИСИ видео</comment>
+ <comment xml:lang="sq">video ISI</comment>
+ <comment xml:lang="sl">Video datoteka ISI</comment>
+ <comment xml:lang="si">ISI වීඩියෝව</comment>
+ <comment xml:lang="sk">Video ISI</comment>
+ <comment xml:lang="ru">Видео ISI</comment>
+ <comment xml:lang="ro">Video ISI</comment>
+ <comment xml:lang="pt_BR">Vídeo ISI</comment>
+ <comment xml:lang="pt">vídeo ISI</comment>
+ <comment xml:lang="pl">Plik wideo ISI</comment>
+ <comment xml:lang="oc">vidèo ISI</comment>
+ <comment xml:lang="nn">ISI video</comment>
+ <comment xml:lang="nl">ISI-video</comment>
+ <comment xml:lang="nb">ISI-film</comment>
+ <comment xml:lang="ms">Video ISI</comment>
+ <comment xml:lang="lv">ISI video</comment>
+ <comment xml:lang="lt">ISI vaizdo įrašas</comment>
+ <comment xml:lang="ko">ISI 동영상</comment>
+ <comment xml:lang="kk">ISI видеосы</comment>
+ <comment xml:lang="ja">ISI 動画</comment>
+ <comment xml:lang="it">Video ISI</comment>
+ <comment xml:lang="is">ISI myndskeið</comment>
+ <comment xml:lang="id">Video ISI</comment>
+ <comment xml:lang="ia">Video ISI</comment>
+ <comment xml:lang="hu">ISI-videó</comment>
+ <comment xml:lang="hr">ISI video snimka</comment>
+ <comment xml:lang="he">וידאו ISI</comment>
+ <comment xml:lang="gl">vídeo ISI</comment>
+ <comment xml:lang="ga">físeán ISI</comment>
+ <comment xml:lang="fur">video ISI</comment>
+ <comment xml:lang="fr">vidéo ISI</comment>
+ <comment xml:lang="fo">ISI video</comment>
+ <comment xml:lang="fi">ISI-video</comment>
+ <comment xml:lang="eu">ISI bideoa</comment>
+ <comment xml:lang="es">vídeo ISI</comment>
+ <comment xml:lang="eo">ISI-video</comment>
+ <comment xml:lang="en_GB">ISI video</comment>
+ <comment xml:lang="el">Βίντεο ISI</comment>
+ <comment xml:lang="de">ISI-Video</comment>
+ <comment xml:lang="da">ISI-video</comment>
+ <comment xml:lang="cy">Fideo ISI</comment>
+ <comment xml:lang="cs">video ISI</comment>
+ <comment xml:lang="ca">vídeo ISI</comment>
+ <comment xml:lang="bg">Видео — ISI</comment>
+ <comment xml:lang="be@latin">Videa ISI</comment>
+ <comment xml:lang="be">відэа ISI</comment>
+ <comment xml:lang="az">ISI video faylı</comment>
+ <comment xml:lang="ast">Videu n'ISI</comment>
+ <comment xml:lang="ar">فيديو ISI</comment>
+ <comment xml:lang="af">ISI-video</comment>
</mime-type>
<mime-type type="video/mp2t">
<comment>MPEG-2 transport stream</comment>
- <comment xml:lang="ar">بث نقل MPEG-2</comment>
- <comment xml:lang="bg">Поток — транспорт по MPEG-2</comment>
- <comment xml:lang="ca">flux de transport MPEG-2</comment>
- <comment xml:lang="cs">přenosový proud MPEG-2</comment>
- <comment xml:lang="da">MPEG-2-transportstrøm</comment>
- <comment xml:lang="de">MPEG-2-Transportstrom</comment>
- <comment xml:lang="el">Ροή μεταφοράς MPEG-2</comment>
- <comment xml:lang="en_GB">MPEG-2 transport stream</comment>
- <comment xml:lang="es">flujo de transporte MPEG-2</comment>
- <comment xml:lang="eu">MPEG-2 korronte garraioa</comment>
- <comment xml:lang="fi">MPEG-2 -siirtobittivirta</comment>
- <comment xml:lang="fo">MPEG-2 flutningsstreymur</comment>
- <comment xml:lang="fr">flux de transport MPEG-2</comment>
- <comment xml:lang="ga">sruth aistrithe MPEG-2</comment>
- <comment xml:lang="gl">fluxo de transporte MPEG-2</comment>
- <comment xml:lang="he">העברת זרימה של MPEG-2</comment>
- <comment xml:lang="hr">MPEG-2 transportno strujanje</comment>
- <comment xml:lang="hu">MPEG-2 átviteli adatfolyam</comment>
- <comment xml:lang="ia">Fluxo de transporto MPEG-2</comment>
- <comment xml:lang="id">Stream transport MPEG-2</comment>
- <comment xml:lang="it">Stream di trasporto MPEG-2</comment>
- <comment xml:lang="ja">MPEG-2 トランスポートストリーム</comment>
- <comment xml:lang="ka">MPEG-2-ის ტრანსპორტული ნაკადი</comment>
- <comment xml:lang="kk">MPEG-2 көліктік ағыны</comment>
- <comment xml:lang="ko">MPEG-2 전송 스트림</comment>
- <comment xml:lang="lt">MPEG-2 transportavimo srautas</comment>
- <comment xml:lang="lv">MPEG-2 transporta straume</comment>
- <comment xml:lang="nl">MPEG-2 transport stream</comment>
- <comment xml:lang="oc">flux de transpòrt MPEG-2</comment>
- <comment xml:lang="pl">Strumień przesyłania MPEG-2</comment>
- <comment xml:lang="pt">fluxo de transporte MPEG-2</comment>
- <comment xml:lang="pt_BR">Fluxo de transporte de MPEG-2</comment>
- <comment xml:lang="ro">Flux transport MPEG-2</comment>
- <comment xml:lang="ru">Транспортный поток MPEG-2</comment>
- <comment xml:lang="sk">MPEG-2 Transport Stream</comment>
- <comment xml:lang="sl">Pretočni vir prenosega MPEG</comment>
- <comment xml:lang="sr">МПЕГ-2 ток преноса</comment>
- <comment xml:lang="sv">MPEG-2 transportström</comment>
- <comment xml:lang="tr">MPEG-2 aktarım akışı</comment>
- <comment xml:lang="uk">потік передавання даних MPEG-2</comment>
- <comment xml:lang="zh_CN">MPEG-2 传输流</comment>
<comment xml:lang="zh_TW">MPEG-2 傳輸串流</comment>
+ <comment xml:lang="zh_CN">MPEG-2 传输流</comment>
+ <comment xml:lang="uk">потік передавання даних MPEG-2</comment>
+ <comment xml:lang="tr">MPEG-2 aktarım akışı</comment>
+ <comment xml:lang="sv">MPEG-2 transportström</comment>
+ <comment xml:lang="sr">МПЕГ-2 ток преноса</comment>
+ <comment xml:lang="sl">Pretočni vir prenosega MPEG</comment>
+ <comment xml:lang="si">MPEG-2 ප්රවාහන ප්රවාහය</comment>
+ <comment xml:lang="sk">MPEG-2 Transport Stream</comment>
+ <comment xml:lang="ru">Транспортный поток MPEG-2</comment>
+ <comment xml:lang="ro">Flux transport MPEG-2</comment>
+ <comment xml:lang="pt_BR">Fluxo de transporte de MPEG-2</comment>
+ <comment xml:lang="pt">fluxo de transporte MPEG-2</comment>
+ <comment xml:lang="pl">Strumień przesyłania MPEG-2</comment>
+ <comment xml:lang="oc">flux de transpòrt MPEG-2</comment>
+ <comment xml:lang="nl">MPEG-2 transport stream</comment>
+ <comment xml:lang="lv">MPEG-2 transporta straume</comment>
+ <comment xml:lang="lt">MPEG-2 transportavimo srautas</comment>
+ <comment xml:lang="ko">MPEG-2 전송 스트림</comment>
+ <comment xml:lang="kk">MPEG-2 көліктік ағыны</comment>
+ <comment xml:lang="ka">MPEG-2-ის ტრანსპორტული ნაკადი</comment>
+ <comment xml:lang="ja">MPEG-2 トランスポートストリーム</comment>
+ <comment xml:lang="it">Stream di trasporto MPEG-2</comment>
+ <comment xml:lang="is">MPEG-2 Transport streymi</comment>
+ <comment xml:lang="id">Stream transport MPEG-2</comment>
+ <comment xml:lang="ia">Fluxo de transporto MPEG-2</comment>
+ <comment xml:lang="hu">MPEG-2 átviteli adatfolyam</comment>
+ <comment xml:lang="hr">MPEG-2 transportno strujanje</comment>
+ <comment xml:lang="he">העברת זרימה של MPEG-2</comment>
+ <comment xml:lang="gl">fluxo de transporte MPEG-2</comment>
+ <comment xml:lang="ga">sruth aistrithe MPEG-2</comment>
+ <comment xml:lang="fur">flus di traspuart MPEG-2</comment>
+ <comment xml:lang="fr">flux de transport MPEG-2</comment>
+ <comment xml:lang="fo">MPEG-2 flutningsstreymur</comment>
+ <comment xml:lang="fi">MPEG-2 -siirtobittivirta</comment>
+ <comment xml:lang="eu">MPEG-2 korronte garraioa</comment>
+ <comment xml:lang="es">flujo de transporte MPEG-2</comment>
+ <comment xml:lang="en_GB">MPEG-2 transport stream</comment>
+ <comment xml:lang="el">Ροή μεταφοράς MPEG-2</comment>
+ <comment xml:lang="de">MPEG-2-Transportstrom</comment>
+ <comment xml:lang="da">MPEG-2-transportstrøm</comment>
+ <comment xml:lang="cs">přenosový proud MPEG-2</comment>
+ <comment xml:lang="ca">flux de transport MPEG-2</comment>
+ <comment xml:lang="bg">Поток — транспорт по MPEG-2</comment>
+ <comment xml:lang="be">транспартная плынь MPEG-2</comment>
+ <comment xml:lang="ar">بث نقل MPEG-2</comment>
+ <comment xml:lang="af">MPEG-2-vervoerstroom</comment>
<acronym>MPEG-2 TS</acronym>
<expanded-acronym>Moving Picture Experts Group 2 Transport Stream</expanded-acronym>
- <magic priority="50">
- <match value="0x47" type="byte" offset="0">
- <match value="0x47" type="byte" offset="188">
- <match value="0x47" type="byte" offset="376">
- <match value="0x47" type="byte" offset="564">
- <match value="0x47" type="byte" offset="752"/>
+ <magic>
+ <match type="byte" value="0x47" offset="0">
+ <match type="byte" value="0x47" offset="188">
+ <match type="byte" value="0x47" offset="376">
+ <match type="byte" value="0x47" offset="564">
+ <match type="byte" value="0x47" offset="752"/>
</match>
</match>
</match>
</match>
- <match value="0x47" type="byte" offset="4">
- <match value="0x47" type="byte" offset="196">
- <match value="0x47" type="byte" offset="388">
- <match value="0x47" type="byte" offset="580">
- <match value="0x47" type="byte" offset="772"/>
+ <match type="byte" value="0x47" offset="4">
+ <match type="byte" value="0x47" offset="196">
+ <match type="byte" value="0x47" offset="388">
+ <match type="byte" value="0x47" offset="580">
+ <match type="byte" value="0x47" offset="772"/>
</match>
</match>
</match>
@@ -37608,66 +40091,71 @@
</mime-type>
<mime-type type="video/mpeg">
<comment>MPEG video</comment>
- <comment xml:lang="ar">MPEG مرئي</comment>
- <comment xml:lang="ast">Videu en MPEG</comment>
- <comment xml:lang="be@latin">Videa MPEG</comment>
- <comment xml:lang="bg">Видео — MPEG</comment>
- <comment xml:lang="ca">vídeo MPEG</comment>
- <comment xml:lang="cs">video MPEG</comment>
- <comment xml:lang="da">MPEG-video</comment>
- <comment xml:lang="de">MPEG-Video</comment>
- <comment xml:lang="el">Βίντεο MPEG</comment>
- <comment xml:lang="en_GB">MPEG video</comment>
- <comment xml:lang="eo">MPEG-video</comment>
- <comment xml:lang="es">vídeo MPEG</comment>
- <comment xml:lang="eu">MPEG bideoa</comment>
- <comment xml:lang="fi">MPEG-video</comment>
- <comment xml:lang="fo">MPEG video</comment>
- <comment xml:lang="fr">vidéo MPEG</comment>
- <comment xml:lang="ga">físeán MPEG</comment>
- <comment xml:lang="gl">vídeo MPEG</comment>
- <comment xml:lang="he">וידאו MPEG</comment>
- <comment xml:lang="hr">MPEG video snimka</comment>
- <comment xml:lang="hu">MPEG-videó</comment>
- <comment xml:lang="ia">Video MPEG</comment>
- <comment xml:lang="id">Video MPEG</comment>
- <comment xml:lang="it">Video MPEG</comment>
- <comment xml:lang="ja">MPEG 動画</comment>
- <comment xml:lang="ka">MPEG ვიდეო</comment>
- <comment xml:lang="kk">MPEG видеосы</comment>
- <comment xml:lang="ko">MPEG 동영상</comment>
- <comment xml:lang="lt">MPEG vaizdo įrašas</comment>
- <comment xml:lang="lv">MPEG video</comment>
- <comment xml:lang="ms">Video MPEG</comment>
- <comment xml:lang="nb">MPEG-film</comment>
- <comment xml:lang="nl">MPEG-video</comment>
- <comment xml:lang="nn">MPEG-video</comment>
- <comment xml:lang="oc">vidèo MPEG</comment>
- <comment xml:lang="pl">Plik wideo MPEG</comment>
- <comment xml:lang="pt">vídeo MPEG</comment>
- <comment xml:lang="pt_BR">Vídeo MPEG</comment>
- <comment xml:lang="ro">Video MPEG</comment>
- <comment xml:lang="ru">Видео MPEG</comment>
- <comment xml:lang="sk">Video MPEG</comment>
- <comment xml:lang="sl">Video datoteka MPEG</comment>
- <comment xml:lang="sq">Video MPEG</comment>
- <comment xml:lang="sr">МПЕГ видео</comment>
- <comment xml:lang="sv">MPEG-video</comment>
- <comment xml:lang="tr">MPEG videosu</comment>
- <comment xml:lang="uk">відеокліп MPEG</comment>
- <comment xml:lang="vi">Ảnh động MPEG</comment>
- <comment xml:lang="zh_CN">MPEG 视频</comment>
<comment xml:lang="zh_TW">MPEG 視訊</comment>
+ <comment xml:lang="zh_CN">MPEG 视频</comment>
+ <comment xml:lang="vi">Ảnh động MPEG</comment>
+ <comment xml:lang="uk">відеокліп MPEG</comment>
+ <comment xml:lang="tr">MPEG videosu</comment>
+ <comment xml:lang="sv">MPEG-video</comment>
+ <comment xml:lang="sr">МПЕГ видео</comment>
+ <comment xml:lang="sq">video MPEG</comment>
+ <comment xml:lang="sl">Video datoteka MPEG</comment>
+ <comment xml:lang="si">MPEG වීඩියෝව</comment>
+ <comment xml:lang="sk">Video MPEG</comment>
+ <comment xml:lang="ru">Видео MPEG</comment>
+ <comment xml:lang="ro">Video MPEG</comment>
+ <comment xml:lang="pt_BR">Vídeo MPEG</comment>
+ <comment xml:lang="pt">vídeo MPEG</comment>
+ <comment xml:lang="pl">Plik wideo MPEG</comment>
+ <comment xml:lang="oc">vidèo MPEG</comment>
+ <comment xml:lang="nn">MPEG-video</comment>
+ <comment xml:lang="nl">MPEG-video</comment>
+ <comment xml:lang="nb">MPEG-film</comment>
+ <comment xml:lang="ms">Video MPEG</comment>
+ <comment xml:lang="lv">MPEG video</comment>
+ <comment xml:lang="lt">MPEG vaizdo įrašas</comment>
+ <comment xml:lang="ko">MPEG 동영상</comment>
+ <comment xml:lang="kk">MPEG видеосы</comment>
+ <comment xml:lang="ka">MPEG ვიდეო</comment>
+ <comment xml:lang="ja">MPEG 動画</comment>
+ <comment xml:lang="it">Video MPEG</comment>
+ <comment xml:lang="is">MPEG myndskeið</comment>
+ <comment xml:lang="id">Video MPEG</comment>
+ <comment xml:lang="ia">Video MPEG</comment>
+ <comment xml:lang="hu">MPEG-videó</comment>
+ <comment xml:lang="hr">MPEG video snimka</comment>
+ <comment xml:lang="he">וידאו MPEG</comment>
+ <comment xml:lang="gl">vídeo MPEG</comment>
+ <comment xml:lang="ga">físeán MPEG</comment>
+ <comment xml:lang="fur">video MPEG</comment>
+ <comment xml:lang="fr">vidéo MPEG</comment>
+ <comment xml:lang="fo">MPEG video</comment>
+ <comment xml:lang="fi">MPEG-video</comment>
+ <comment xml:lang="eu">MPEG bideoa</comment>
+ <comment xml:lang="es">vídeo MPEG</comment>
+ <comment xml:lang="eo">MPEG-video</comment>
+ <comment xml:lang="en_GB">MPEG video</comment>
+ <comment xml:lang="el">Βίντεο MPEG</comment>
+ <comment xml:lang="de">MPEG-Video</comment>
+ <comment xml:lang="da">MPEG-video</comment>
+ <comment xml:lang="cs">video MPEG</comment>
+ <comment xml:lang="ca">vídeo MPEG</comment>
+ <comment xml:lang="bg">Видео — MPEG</comment>
+ <comment xml:lang="be@latin">Videa MPEG</comment>
+ <comment xml:lang="be">відэа MPEG</comment>
+ <comment xml:lang="ast">Videu en MPEG</comment>
+ <comment xml:lang="ar">فيديو MPEG</comment>
+ <comment xml:lang="af">MPEG-video</comment>
<acronym>MPEG</acronym>
<expanded-acronym>Moving Picture Experts Group</expanded-acronym>
<alias type="video/x-mpeg"/>
<alias type="video/mpeg-system"/>
<alias type="video/x-mpeg-system"/>
<alias type="video/x-mpeg2"/>
- <magic priority="50">
- <match value="\x47\x3f\xff\x10" type="string" offset="0"/>
- <match value="0x000001b3" type="big32" offset="0"/>
- <match value="0x000001ba" type="big32" offset="0"/>
+ <magic>
+ <match type="string" value="\x47\x3f\xff\x10" offset="0"/>
+ <match type="big32" value="0x000001b3" offset="0"/>
+ <match type="big32" value="0x000001ba" offset="0"/>
</magic>
<glob pattern="*.mpeg"/>
<glob pattern="*.mpg"/>
@@ -37677,50 +40165,35 @@
<glob pattern="[0-9][0-9][0-9].vdr"/>
</mime-type>
<mime-type type="video/vnd.mpegurl">
- <comment>MPEG video (streamed)</comment>
- <comment xml:lang="ast">Videu en MPEG (tresmitíu)</comment>
- <comment xml:lang="bg">Видео — MPEG, поточно</comment>
- <comment xml:lang="ca">vídeo MPEG (flux)</comment>
- <comment xml:lang="cs">video MPEG (proud)</comment>
- <comment xml:lang="da">MPEG-video (streamet)</comment>
- <comment xml:lang="de">MPEG-Video (Datenstrom)</comment>
- <comment xml:lang="el">Βίντεο MPEG (εκπεμπόμενο)</comment>
- <comment xml:lang="en_GB">MPEG video (streamed)</comment>
- <comment xml:lang="es">vídeo MPEG (transmisión)</comment>
- <comment xml:lang="eu">MPEG bideoa (korronte bidez)</comment>
- <comment xml:lang="fi">MPEG-video (virtaus)</comment>
- <comment xml:lang="fr">vidéo MPEG (flux)</comment>
- <comment xml:lang="ga">físeán MPEG (sruthaithe)</comment>
- <comment xml:lang="gl">vídeo MPEG (en stream)</comment>
- <comment xml:lang="he">קובץ MPEG (בהזרמה)</comment>
- <comment xml:lang="hr">MPEG video snimka (strujanje)</comment>
- <comment xml:lang="hu">MPEG videó (szórt)</comment>
- <comment xml:lang="ia">Video MPEG (in fluxo)</comment>
- <comment xml:lang="id">Video MPEG (di-stream-kan)</comment>
- <comment xml:lang="it">Video MPEG (streamed)</comment>
- <comment xml:lang="ja">MPEG ビデオ(ストリーム)</comment>
- <comment xml:lang="ka">MPEG ვიდეო (ნაკადი)</comment>
- <comment xml:lang="kk">MPEG видео (ағымдық)</comment>
- <comment xml:lang="ko">MPEG 동영상(스트리밍)</comment>
- <comment xml:lang="lv">MPEG video (straumēts)</comment>
- <comment xml:lang="nl">MPEG video (streamed)</comment>
- <comment xml:lang="oc">vidèo MPEG (flux)</comment>
- <comment xml:lang="pl">Plik wideo MPEG (strumień)</comment>
- <comment xml:lang="pt">vídeo MPEG (em fluxo)</comment>
- <comment xml:lang="pt_BR">Vídeo MPEG (fluxo)</comment>
- <comment xml:lang="ru">Видео MPEG (потоковое)</comment>
- <comment xml:lang="sk">MPEG video (streamované)</comment>
- <comment xml:lang="sl">MPEG-video (pretočni)</comment>
- <comment xml:lang="sr">МПЕГ видео (проточни)</comment>
- <comment xml:lang="sv">MPEG-video (strömmad)</comment>
- <comment xml:lang="tr">MPEG videosu (akış)</comment>
- <comment xml:lang="uk">відеокліп MPEG (потоковий)</comment>
- <comment xml:lang="zh_CN">MPEG 视频流媒体</comment>
- <comment xml:lang="zh_TW">MPEG 視訊 (串流)</comment>
+ <comment>Video playlist</comment>
+ <comment xml:lang="zh_CN">视频播放列表</comment>
+ <comment xml:lang="uk">список відтворення відео</comment>
+ <comment xml:lang="tr">Video çalma listesi</comment>
+ <comment xml:lang="sv">Videospellista</comment>
+ <comment xml:lang="sl">Seznam predvajanja videoposnetkov</comment>
+ <comment xml:lang="si">වීඩියෝ ධාවන ලැයිස්තුව</comment>
+ <comment xml:lang="ru">Список воспроизведения видео-данных</comment>
+ <comment xml:lang="pl">Lista odtwarzania wideo</comment>
+ <comment xml:lang="oc">lista de lectura vidèo</comment>
+ <comment xml:lang="nl">Video-afspeellijst</comment>
+ <comment xml:lang="ko">동영상 재생 목록</comment>
+ <comment xml:lang="kk">Видео ойнату тізімі</comment>
+ <comment xml:lang="ka">ვიდეო დასაკრავი სია</comment>
+ <comment xml:lang="ja">ビデオ再生リスト</comment>
+ <comment xml:lang="it">Playlist video</comment>
+ <comment xml:lang="hr">Video popis izvođenja</comment>
+ <comment xml:lang="gl">Lista de reprodución de vídeos</comment>
+ <comment xml:lang="fi">Video-soittolista</comment>
+ <comment xml:lang="eu">Bideoen erreprodukzio-zerrenda</comment>
+ <comment xml:lang="es">lista de reproducción de vídeo</comment>
+ <comment xml:lang="en_GB">Video playlist</comment>
+ <comment xml:lang="de">Video-Wiedergabeliste</comment>
+ <comment xml:lang="be">плэй-ліст відэа</comment>
+ <comment xml:lang="ar">قائمة تشغيل فيديو</comment>
<sub-class-of type="text/plain"/>
<alias type="video/x-mpegurl"/>
- <magic priority="50">
- <match value="#EXTM4U" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="#EXTM4U" offset="0"/>
</magic>
<glob pattern="*.m1u"/>
<glob pattern="*.m4u"/>
@@ -37728,60 +40201,65 @@
</mime-type>
<mime-type type="video/quicktime">
<comment>QuickTime video</comment>
- <comment xml:lang="ar">QuickTime مرئي</comment>
- <comment xml:lang="ast">Videu en QuickTime</comment>
- <comment xml:lang="be@latin">Videa QuickTime</comment>
- <comment xml:lang="bg">Видео — QuickTime</comment>
- <comment xml:lang="ca">vídeo QuickTime</comment>
- <comment xml:lang="cs">video QuickTime</comment>
- <comment xml:lang="da">QuickTime-video</comment>
- <comment xml:lang="de">QuickTime-Video</comment>
- <comment xml:lang="el">Βίντεο QuickTime</comment>
- <comment xml:lang="en_GB">QuickTime video</comment>
- <comment xml:lang="eo">QuickTime-video</comment>
- <comment xml:lang="es">vídeo QuickTime</comment>
- <comment xml:lang="eu">QuickTime bideoa</comment>
- <comment xml:lang="fi">QuickTime-video</comment>
- <comment xml:lang="fo">QuickTime video</comment>
- <comment xml:lang="fr">vidéo QuickTime</comment>
- <comment xml:lang="ga">físeán QuickTime</comment>
- <comment xml:lang="gl">vídeo QuickTime</comment>
- <comment xml:lang="he">וידאו של QuickTime</comment>
- <comment xml:lang="hr">QuickTime video snimka</comment>
- <comment xml:lang="hu">QuickTime videó</comment>
- <comment xml:lang="ia">Video QuickTime</comment>
- <comment xml:lang="id">Video QuickTime</comment>
- <comment xml:lang="it">Video QuickTime</comment>
- <comment xml:lang="ja">QuickTime 動画</comment>
- <comment xml:lang="kk">QuickTime видеосы</comment>
- <comment xml:lang="ko">퀵타임 동영상</comment>
- <comment xml:lang="lt">QuickTime vaizdo įrašas</comment>
- <comment xml:lang="lv">QuickTime video</comment>
- <comment xml:lang="ms">Video QuickTime</comment>
- <comment xml:lang="nb">Quicktime film</comment>
- <comment xml:lang="nl">QuickTime-video</comment>
- <comment xml:lang="nn">QuickTime-video</comment>
- <comment xml:lang="oc">vidèo QuickTime</comment>
- <comment xml:lang="pl">Plik wideo QuickTime</comment>
- <comment xml:lang="pt">vídeo QuickTime</comment>
- <comment xml:lang="pt_BR">Vídeo do QuickTime</comment>
- <comment xml:lang="ro">Video QuickTime</comment>
- <comment xml:lang="ru">Видео QuickTime</comment>
- <comment xml:lang="sk">Video QuickTime</comment>
- <comment xml:lang="sl">Video datoteka QuickTime</comment>
- <comment xml:lang="sq">Video QuickTime</comment>
- <comment xml:lang="sr">Квик Тајм видео</comment>
- <comment xml:lang="sv">QuickTime-video</comment>
- <comment xml:lang="tr">QuickTime videosu</comment>
- <comment xml:lang="uk">відеокліп QuickTime</comment>
- <comment xml:lang="vi">Ảnh động QuickTime</comment>
- <comment xml:lang="zh_CN">QuickTime 视频</comment>
<comment xml:lang="zh_TW">QuickTime 視訊</comment>
- <magic priority="50">
- <match value="mdat" type="string" offset="12"/>
- <match value="mdat" type="string" offset="4"/>
- <match value="moov" type="string" offset="4"/>
- <match value="ftypqt" type="string" offset="4"/>
+ <comment xml:lang="zh_CN">QuickTime 视频</comment>
+ <comment xml:lang="vi">Ảnh động QuickTime</comment>
+ <comment xml:lang="uk">відеокліп QuickTime</comment>
+ <comment xml:lang="tr">QuickTime videosu</comment>
+ <comment xml:lang="sv">QuickTime-video</comment>
+ <comment xml:lang="sr">Квик Тајм видео</comment>
+ <comment xml:lang="sq">video QuickTime</comment>
+ <comment xml:lang="sl">Video datoteka QuickTime</comment>
+ <comment xml:lang="si">QuickTime වීඩියෝව</comment>
+ <comment xml:lang="sk">Video QuickTime</comment>
+ <comment xml:lang="ru">Видео QuickTime</comment>
+ <comment xml:lang="ro">Video QuickTime</comment>
+ <comment xml:lang="pt_BR">Vídeo do QuickTime</comment>
+ <comment xml:lang="pt">vídeo QuickTime</comment>
+ <comment xml:lang="pl">Plik wideo QuickTime</comment>
+ <comment xml:lang="oc">vidèo QuickTime</comment>
+ <comment xml:lang="nn">QuickTime-video</comment>
+ <comment xml:lang="nl">QuickTime-video</comment>
+ <comment xml:lang="nb">Quicktime film</comment>
+ <comment xml:lang="ms">Video QuickTime</comment>
+ <comment xml:lang="lv">QuickTime video</comment>
+ <comment xml:lang="lt">QuickTime vaizdo įrašas</comment>
+ <comment xml:lang="ko">퀵타임 동영상</comment>
+ <comment xml:lang="kk">QuickTime видеосы</comment>
+ <comment xml:lang="ja">QuickTime 動画</comment>
+ <comment xml:lang="it">Video QuickTime</comment>
+ <comment xml:lang="is">QuickTime myndskeið</comment>
+ <comment xml:lang="id">Video QuickTime</comment>
+ <comment xml:lang="ia">Video QuickTime</comment>
+ <comment xml:lang="hu">QuickTime videó</comment>
+ <comment xml:lang="hr">QuickTime video snimka</comment>
+ <comment xml:lang="he">וידאו של QuickTime</comment>
+ <comment xml:lang="gl">vídeo QuickTime</comment>
+ <comment xml:lang="ga">físeán QuickTime</comment>
+ <comment xml:lang="fur">video QuickTime</comment>
+ <comment xml:lang="fr">vidéo QuickTime</comment>
+ <comment xml:lang="fo">QuickTime video</comment>
+ <comment xml:lang="fi">QuickTime-video</comment>
+ <comment xml:lang="eu">QuickTime bideoa</comment>
+ <comment xml:lang="es">vídeo QuickTime</comment>
+ <comment xml:lang="eo">QuickTime-video</comment>
+ <comment xml:lang="en_GB">QuickTime video</comment>
+ <comment xml:lang="el">Βίντεο QuickTime</comment>
+ <comment xml:lang="de">QuickTime-Video</comment>
+ <comment xml:lang="da">QuickTime-video</comment>
+ <comment xml:lang="cs">video QuickTime</comment>
+ <comment xml:lang="ca">vídeo QuickTime</comment>
+ <comment xml:lang="bg">Видео — QuickTime</comment>
+ <comment xml:lang="be@latin">Videa QuickTime</comment>
+ <comment xml:lang="be">відэа QuickTime</comment>
+ <comment xml:lang="ast">Videu en QuickTime</comment>
+ <comment xml:lang="ar">فيديو QuickTime</comment>
+ <comment xml:lang="af">QuickTime-video</comment>
+ <magic>
+ <match type="string" value="mdat" offset="12"/>
+ <match type="string" value="mdat" offset="4"/>
+ <match type="string" value="moov" offset="4"/>
+ <match type="string" value="ftypqt" offset="4"/>
</magic>
<glob pattern="*.qt"/>
<glob pattern="*.mov"/>
@@ -37790,706 +40268,867 @@
</mime-type>
<mime-type type="image/x-quicktime">
<comment>QuickTime image</comment>
- <comment xml:lang="ar">صورة QuickTime</comment>
- <comment xml:lang="be@latin">Vyjava QuickTime</comment>
- <comment xml:lang="bg">Изображение — QuickTime</comment>
- <comment xml:lang="ca">imatge QuickTime</comment>
- <comment xml:lang="cs">obrázek QuickTime</comment>
- <comment xml:lang="da">QuickTime-billede</comment>
- <comment xml:lang="de">QuickTime-Bild</comment>
- <comment xml:lang="el">Εικόνα QuickTime</comment>
- <comment xml:lang="en_GB">QuickTime image</comment>
- <comment xml:lang="eo">QuickTime-bildo</comment>
- <comment xml:lang="es">imagen de QuickTime</comment>
- <comment xml:lang="eu">QuickTime irudia</comment>
- <comment xml:lang="fi">QuickTime-kuva</comment>
- <comment xml:lang="fo">QuickTime mynd</comment>
- <comment xml:lang="fr">image QuickTime</comment>
- <comment xml:lang="ga">íomhá QuickTime</comment>
- <comment xml:lang="gl">imaxe QuickTime</comment>
- <comment xml:lang="he">תמונה של QuickTime</comment>
- <comment xml:lang="hr">QuickTime slika</comment>
- <comment xml:lang="hu">QuickTime kép</comment>
- <comment xml:lang="ia">Imagine QuickTime</comment>
- <comment xml:lang="id">Citra QuickTime</comment>
- <comment xml:lang="it">Immagine QuickTime</comment>
- <comment xml:lang="ja">QuickTime 画像</comment>
- <comment xml:lang="kk">QuickTime суреті</comment>
- <comment xml:lang="ko">퀵타임 그림</comment>
- <comment xml:lang="lt">QuickTime paveikslėlis</comment>
- <comment xml:lang="lv">QuickTime attēls</comment>
- <comment xml:lang="nb">Quicktime bilde</comment>
- <comment xml:lang="nl">QuickTime-afbeelding</comment>
- <comment xml:lang="nn">QuickTime-bilete</comment>
- <comment xml:lang="oc">imatge QuickTime</comment>
- <comment xml:lang="pl">Obraz QuickTime</comment>
- <comment xml:lang="pt">imagem QuickTime</comment>
- <comment xml:lang="pt_BR">Imagem do QuickTime</comment>
- <comment xml:lang="ro">Imagine QuickTime</comment>
- <comment xml:lang="ru">Изображение QuickTime</comment>
- <comment xml:lang="sk">Obrázok QuickTime</comment>
- <comment xml:lang="sl">Slikovna datoteka QuickTime</comment>
- <comment xml:lang="sq">Figurë QuickTime</comment>
- <comment xml:lang="sr">Квик Тајм слика</comment>
- <comment xml:lang="sv">QuickTime-bild</comment>
- <comment xml:lang="tr">QuickTime görüntüsü</comment>
- <comment xml:lang="uk">зображення QuickTime</comment>
- <comment xml:lang="vi">Ảnh QuickTime</comment>
- <comment xml:lang="zh_CN">QuickTime 图像</comment>
<comment xml:lang="zh_TW">QuickTime 影像</comment>
- <magic priority="50">
- <match value="idat" type="string" offset="4"/>
+ <comment xml:lang="zh_CN">QuickTime 图像</comment>
+ <comment xml:lang="vi">Ảnh QuickTime</comment>
+ <comment xml:lang="uk">зображення QuickTime</comment>
+ <comment xml:lang="tr">QuickTime görüntüsü</comment>
+ <comment xml:lang="sv">QuickTime-bild</comment>
+ <comment xml:lang="sr">Квик Тајм слика</comment>
+ <comment xml:lang="sq">figurë QuickTime</comment>
+ <comment xml:lang="sl">Slikovna datoteka QuickTime</comment>
+ <comment xml:lang="si">QuickTime රූපය</comment>
+ <comment xml:lang="sk">Obrázok QuickTime</comment>
+ <comment xml:lang="ru">Изображение QuickTime</comment>
+ <comment xml:lang="ro">Imagine QuickTime</comment>
+ <comment xml:lang="pt_BR">Imagem do QuickTime</comment>
+ <comment xml:lang="pt">imagem QuickTime</comment>
+ <comment xml:lang="pl">Obraz QuickTime</comment>
+ <comment xml:lang="oc">imatge QuickTime</comment>
+ <comment xml:lang="nn">QuickTime-bilete</comment>
+ <comment xml:lang="nl">QuickTime-afbeelding</comment>
+ <comment xml:lang="nb">Quicktime bilde</comment>
+ <comment xml:lang="lv">QuickTime attēls</comment>
+ <comment xml:lang="lt">QuickTime paveikslėlis</comment>
+ <comment xml:lang="ko">퀵타임 그림</comment>
+ <comment xml:lang="kk">QuickTime суреті</comment>
+ <comment xml:lang="ja">QuickTime 画像</comment>
+ <comment xml:lang="it">Immagine QuickTime</comment>
+ <comment xml:lang="is">QuickTime mynd</comment>
+ <comment xml:lang="id">Citra QuickTime</comment>
+ <comment xml:lang="ia">Imagine QuickTime</comment>
+ <comment xml:lang="hu">QuickTime kép</comment>
+ <comment xml:lang="hr">QuickTime slika</comment>
+ <comment xml:lang="he">תמונה של QuickTime</comment>
+ <comment xml:lang="gl">imaxe QuickTime</comment>
+ <comment xml:lang="ga">íomhá QuickTime</comment>
+ <comment xml:lang="fur">imagjin QuickTime</comment>
+ <comment xml:lang="fr">image QuickTime</comment>
+ <comment xml:lang="fo">QuickTime mynd</comment>
+ <comment xml:lang="fi">QuickTime-kuva</comment>
+ <comment xml:lang="eu">QuickTime irudia</comment>
+ <comment xml:lang="es">imagen de QuickTime</comment>
+ <comment xml:lang="eo">QuickTime-bildo</comment>
+ <comment xml:lang="en_GB">QuickTime image</comment>
+ <comment xml:lang="el">Εικόνα QuickTime</comment>
+ <comment xml:lang="de">QuickTime-Bild</comment>
+ <comment xml:lang="da">QuickTime-billede</comment>
+ <comment xml:lang="cs">obrázek QuickTime</comment>
+ <comment xml:lang="ca">imatge QuickTime</comment>
+ <comment xml:lang="bg">Изображение — QuickTime</comment>
+ <comment xml:lang="be@latin">Vyjava QuickTime</comment>
+ <comment xml:lang="be">выява QuickTime</comment>
+ <comment xml:lang="ar">صورة QuickTime</comment>
+ <comment xml:lang="af">QuickTime-beeld</comment>
+ <magic>
+ <match type="string" value="idat" offset="4"/>
</magic>
<glob pattern="*.qtif"/>
<glob pattern="*.qif"/>
</mime-type>
<mime-type type="image/ktx">
<comment>Khronos texture image</comment>
- <comment xml:lang="ca">imatge de textura de Khronos</comment>
- <comment xml:lang="cs">obrázek s texturou Khronos</comment>
- <comment xml:lang="de">Khronos-Texturbild</comment>
- <comment xml:lang="en_GB">Khronos texture image</comment>
- <comment xml:lang="es">imagen de textura de Khronos</comment>
- <comment xml:lang="fr">image de texture Khronos</comment>
- <comment xml:lang="ga">íomhá uigeachta Khronos</comment>
- <comment xml:lang="hr">Khronos tekstura slika</comment>
- <comment xml:lang="hu">Khronos textúra kép</comment>
- <comment xml:lang="id">citra tekstur Khronos</comment>
- <comment xml:lang="it">Immagine texture Khronos</comment>
- <comment xml:lang="kk">Khronos текстура суреті</comment>
- <comment xml:lang="ko">크로노스 텍스처 파일</comment>
- <comment xml:lang="pl">Obraz tekstury Khronos</comment>
- <comment xml:lang="pt_BR">Imagem de textura do Khronos</comment>
- <comment xml:lang="ru">Изображение текстуры Khronos</comment>
- <comment xml:lang="sk">Obrázok textúry Khronos</comment>
- <comment xml:lang="sr">слика Кронос текстуре</comment>
- <comment xml:lang="sv">Khronos-texturbild</comment>
- <comment xml:lang="tr">Khronos kaplama görüntüsü</comment>
- <comment xml:lang="uk">зображення текстури Khronos</comment>
- <comment xml:lang="zh_CN">Khronos 纹理图像</comment>
<comment xml:lang="zh_TW">Khronos 紋理影像</comment>
+ <comment xml:lang="zh_CN">Khronos 纹理图像</comment>
+ <comment xml:lang="uk">зображення текстури Khronos</comment>
+ <comment xml:lang="tr">Khronos kaplama görüntüsü</comment>
+ <comment xml:lang="sv">Khronos-texturbild</comment>
+ <comment xml:lang="sr">слика Кронос текстуре</comment>
+ <comment xml:lang="sl">Slika teksture Khronos</comment>
+ <comment xml:lang="si">ක්‍රොනොස් වයනය රූපය</comment>
+ <comment xml:lang="sk">Obrázok textúry Khronos</comment>
+ <comment xml:lang="ru">Изображение текстуры Khronos</comment>
+ <comment xml:lang="pt_BR">Imagem de textura do Khronos</comment>
+ <comment xml:lang="pl">Obraz tekstury Khronos</comment>
+ <comment xml:lang="nl">Khronos-textuurafbeelding</comment>
+ <comment xml:lang="ko">크로노스 텍스처 파일</comment>
+ <comment xml:lang="kk">Khronos текстура суреті</comment>
+ <comment xml:lang="ja">Khronos テクスチャ画像</comment>
+ <comment xml:lang="it">Immagine texture Khronos</comment>
+ <comment xml:lang="is">Khronos efnisáferðarmynd</comment>
+ <comment xml:lang="id">Citra tekstur Khronos</comment>
+ <comment xml:lang="hu">Khronos textúra kép</comment>
+ <comment xml:lang="hr">Khronos tekstura slika</comment>
+ <comment xml:lang="he">תמונת מרקם של Khronos</comment>
+ <comment xml:lang="gl">Imaxe de textura Khronos</comment>
+ <comment xml:lang="ga">íomhá uigeachta Khronos</comment>
+ <comment xml:lang="fur">imagjin di struture/texture Khronos</comment>
+ <comment xml:lang="fr">image de texture Khronos</comment>
+ <comment xml:lang="fi">Khronos-tekstuurikuva</comment>
+ <comment xml:lang="eu">Khronos testura irudia</comment>
+ <comment xml:lang="es">imagen de textura de Khronos</comment>
+ <comment xml:lang="en_GB">Khronos texture image</comment>
+ <comment xml:lang="de">Khronos-Texturbild</comment>
+ <comment xml:lang="da">Khronos-strukturbillede</comment>
+ <comment xml:lang="cs">obrázek s texturou Khronos</comment>
+ <comment xml:lang="ca">imatge de textura de Khronos</comment>
+ <comment xml:lang="bg">Изображение — текстура за Khronos</comment>
+ <comment xml:lang="be">выява тэкстуры Khronos</comment>
+ <comment xml:lang="ar">صور نسيج Khronos</comment>
+ <comment xml:lang="af">Khronos-tekstuurbeeld</comment>
<magic priority="80">
- <match value="0xAB4B5458" type="big32" offset="0">
- <match value="0x203131BB" type="big32" offset="4">
- <match value="0x0D0A1A0A" type="big32" offset="8"/>
+ <match type="big32" value="0xAB4B5458" offset="0">
+ <match type="big32" value="0x203131BB" offset="4">
+ <match type="big32" value="0x0D0A1A0A" offset="8"/>
</match>
</match>
</magic>
<glob pattern="*.ktx"/>
</mime-type>
+ <mime-type type="image/ktx2">
+ <comment>Khronos texture image</comment>
+ <comment xml:lang="zh_TW">Khronos 紋理影像</comment>
+ <comment xml:lang="zh_CN">Khronos 纹理图像</comment>
+ <comment xml:lang="uk">зображення текстури Khronos</comment>
+ <comment xml:lang="tr">Khronos kaplama görüntüsü</comment>
+ <comment xml:lang="sv">Khronos-texturbild</comment>
+ <comment xml:lang="sr">слика Кронос текстуре</comment>
+ <comment xml:lang="sl">Slika teksture Khronos</comment>
+ <comment xml:lang="si">ක්‍රොනොස් වයනය රූපය</comment>
+ <comment xml:lang="sk">Obrázok textúry Khronos</comment>
+ <comment xml:lang="ru">Изображение текстуры Khronos</comment>
+ <comment xml:lang="pt_BR">Imagem de textura do Khronos</comment>
+ <comment xml:lang="pl">Obraz tekstury Khronos</comment>
+ <comment xml:lang="nl">Khronos-textuurafbeelding</comment>
+ <comment xml:lang="ko">크로노스 텍스처 파일</comment>
+ <comment xml:lang="kk">Khronos текстура суреті</comment>
+ <comment xml:lang="ja">Khronos テクスチャ画像</comment>
+ <comment xml:lang="it">Immagine texture Khronos</comment>
+ <comment xml:lang="is">Khronos efnisáferðarmynd</comment>
+ <comment xml:lang="id">Citra tekstur Khronos</comment>
+ <comment xml:lang="hu">Khronos textúra kép</comment>
+ <comment xml:lang="hr">Khronos tekstura slika</comment>
+ <comment xml:lang="he">תמונת מרקם של Khronos</comment>
+ <comment xml:lang="gl">Imaxe de textura Khronos</comment>
+ <comment xml:lang="ga">íomhá uigeachta Khronos</comment>
+ <comment xml:lang="fur">imagjin di struture/texture Khronos</comment>
+ <comment xml:lang="fr">image de texture Khronos</comment>
+ <comment xml:lang="fi">Khronos-tekstuurikuva</comment>
+ <comment xml:lang="eu">Khronos testura irudia</comment>
+ <comment xml:lang="es">imagen de textura de Khronos</comment>
+ <comment xml:lang="en_GB">Khronos texture image</comment>
+ <comment xml:lang="de">Khronos-Texturbild</comment>
+ <comment xml:lang="da">Khronos-strukturbillede</comment>
+ <comment xml:lang="cs">obrázek s texturou Khronos</comment>
+ <comment xml:lang="ca">imatge de textura de Khronos</comment>
+ <comment xml:lang="bg">Изображение — текстура за Khronos</comment>
+ <comment xml:lang="be">выява тэкстуры Khronos</comment>
+ <comment xml:lang="ar">صور نسيج Khronos</comment>
+ <comment xml:lang="af">Khronos-tekstuurbeeld</comment>
+ <magic priority="80">
+ <match type="big32" value="0xAB4B5458" offset="0">
+ <match type="big32" value="0x203230BB" offset="4">
+ <match type="big32" value="0x0D0A1A0A" offset="8"/>
+ </match>
+ </match>
+ </magic>
+ <glob pattern="*.ktx2"/>
+ </mime-type>
+ <mime-type type="image/astc">
+ <comment>ASTC texture</comment>
+ <comment xml:lang="uk">текстура ASTC</comment>
+ <comment xml:lang="tr">ASTC dokusu</comment>
+ <comment xml:lang="sv">ASTC-textur</comment>
+ <comment xml:lang="sl">Tekstura ASTC</comment>
+ <comment xml:lang="si">ASTC වයනය</comment>
+ <comment xml:lang="ru">Текстура ASTC</comment>
+ <comment xml:lang="pt_BR">Textura ASTC</comment>
+ <comment xml:lang="pl">Tekstura ASTC</comment>
+ <comment xml:lang="nl">ASTC-textuur</comment>
+ <comment xml:lang="ko">ASTC 텍스처</comment>
+ <comment xml:lang="kk">ASTC текстурасы</comment>
+ <comment xml:lang="ja">ASTC テクスチャ</comment>
+ <comment xml:lang="it">Texture ASTC</comment>
+ <comment xml:lang="is">ASTC efnisáferð</comment>
+ <comment xml:lang="id">tekstur ASTC</comment>
+ <comment xml:lang="hu">ASTC textúra</comment>
+ <comment xml:lang="hr">ASTC tekstura</comment>
+ <comment xml:lang="he">מרקם של ASTC</comment>
+ <comment xml:lang="gl">Textura ASTC</comment>
+ <comment xml:lang="fr">Texture ASTC</comment>
+ <comment xml:lang="fi">ASTC-tekstuuri</comment>
+ <comment xml:lang="es">textura ASTC</comment>
+ <comment xml:lang="en_GB">ASTC texture</comment>
+ <comment xml:lang="de">ASTC-Textur</comment>
+ <comment xml:lang="da">ASTC-struktur</comment>
+ <comment xml:lang="ca">textura ASTC</comment>
+ <comment xml:lang="be">тэкстура ASTC</comment>
+ <comment xml:lang="ar">نسيج ASTC</comment>
+ <acronym>ASTC</acronym>
+ <expanded-acronym>Advanced Scalable Texture Compression</expanded-acronym>
+ <glob pattern="*.astc"/>
+ <magic priority="80">
+ <match type="little32" value="0x5CA1AB13" offset="0"/>
+ </magic>
+ </mime-type>
<mime-type type="video/vnd.vivo">
<comment>Vivo video</comment>
- <comment xml:lang="ar">Vivo مرئي</comment>
- <comment xml:lang="ast">Videu en Vivo</comment>
- <comment xml:lang="az">Vivo video faylı</comment>
- <comment xml:lang="be@latin">Videa Vivo</comment>
- <comment xml:lang="bg">Видео — Vivo</comment>
- <comment xml:lang="ca">vídeo Vivo</comment>
- <comment xml:lang="cs">video Vivo</comment>
- <comment xml:lang="cy">Fideo Vivo</comment>
- <comment xml:lang="da">Vivo-video</comment>
- <comment xml:lang="de">Vivo-Video</comment>
- <comment xml:lang="el">Βίντεο Vivo</comment>
- <comment xml:lang="en_GB">Vivo video</comment>
- <comment xml:lang="eo">Vivo-video</comment>
- <comment xml:lang="es">vídeo Vivo</comment>
- <comment xml:lang="eu">Vivo bideoa</comment>
- <comment xml:lang="fi">Vivo-video</comment>
- <comment xml:lang="fo">Vivo video</comment>
- <comment xml:lang="fr">vidéo Vivo</comment>
- <comment xml:lang="ga">físeán Vivo</comment>
- <comment xml:lang="gl">vídeo Vivo</comment>
- <comment xml:lang="he">וידאו של Vivo</comment>
- <comment xml:lang="hr">Vivo video snimka</comment>
- <comment xml:lang="hu">Vivo-videó</comment>
- <comment xml:lang="ia">Video Vivo</comment>
- <comment xml:lang="id">Video Vivo</comment>
- <comment xml:lang="it">Video Vivo</comment>
- <comment xml:lang="ja">Vivo 動画</comment>
- <comment xml:lang="kk">Vivo видеосы</comment>
- <comment xml:lang="ko">Vivo 동영상</comment>
- <comment xml:lang="lt">Vivo vaizdo įrašas</comment>
- <comment xml:lang="lv">Vivo video</comment>
- <comment xml:lang="ms">Video Vivo</comment>
- <comment xml:lang="nb">Vivo-film</comment>
- <comment xml:lang="nl">Vivo-video</comment>
- <comment xml:lang="nn">Vivo-film</comment>
- <comment xml:lang="oc">vidèo Vivo</comment>
- <comment xml:lang="pl">Plik wideo Vivo</comment>
- <comment xml:lang="pt">vídeo Vivo</comment>
- <comment xml:lang="pt_BR">Vídeo Vivo</comment>
- <comment xml:lang="ro">Video Vivo</comment>
- <comment xml:lang="ru">Видео Vivo</comment>
- <comment xml:lang="sk">Video Vivo</comment>
- <comment xml:lang="sl">Video datoteka Vivo</comment>
- <comment xml:lang="sq">Video Vivo</comment>
- <comment xml:lang="sr">Виво видео</comment>
- <comment xml:lang="sv">Vivo-video</comment>
- <comment xml:lang="tr">Vivo videosu</comment>
- <comment xml:lang="uk">відео Vivo</comment>
- <comment xml:lang="vi">Ảnh động Vivo</comment>
- <comment xml:lang="zh_CN">Vivo 视频</comment>
<comment xml:lang="zh_TW">Vivo 視訊</comment>
+ <comment xml:lang="zh_CN">Vivo 视频</comment>
+ <comment xml:lang="vi">Ảnh động Vivo</comment>
+ <comment xml:lang="uk">відео Vivo</comment>
+ <comment xml:lang="tr">Vivo videosu</comment>
+ <comment xml:lang="sv">Vivo-video</comment>
+ <comment xml:lang="sr">Виво видео</comment>
+ <comment xml:lang="sq">video Vivo</comment>
+ <comment xml:lang="sl">Video datoteka Vivo</comment>
+ <comment xml:lang="si">Vivo වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Vivo</comment>
+ <comment xml:lang="ru">Видео Vivo</comment>
+ <comment xml:lang="ro">Video Vivo</comment>
+ <comment xml:lang="pt_BR">Vídeo Vivo</comment>
+ <comment xml:lang="pt">vídeo Vivo</comment>
+ <comment xml:lang="pl">Plik wideo Vivo</comment>
+ <comment xml:lang="oc">vidèo Vivo</comment>
+ <comment xml:lang="nn">Vivo-film</comment>
+ <comment xml:lang="nl">Vivo-video</comment>
+ <comment xml:lang="nb">Vivo-film</comment>
+ <comment xml:lang="ms">Video Vivo</comment>
+ <comment xml:lang="lv">Vivo video</comment>
+ <comment xml:lang="lt">Vivo vaizdo įrašas</comment>
+ <comment xml:lang="ko">Vivo 동영상</comment>
+ <comment xml:lang="kk">Vivo видеосы</comment>
+ <comment xml:lang="ja">Vivo 動画</comment>
+ <comment xml:lang="it">Video Vivo</comment>
+ <comment xml:lang="is">Vivo myndskeið</comment>
+ <comment xml:lang="id">Video Vivo</comment>
+ <comment xml:lang="ia">Video Vivo</comment>
+ <comment xml:lang="hu">Vivo-videó</comment>
+ <comment xml:lang="hr">Vivo video snimka</comment>
+ <comment xml:lang="he">וידאו של Vivo</comment>
+ <comment xml:lang="gl">vídeo Vivo</comment>
+ <comment xml:lang="ga">físeán Vivo</comment>
+ <comment xml:lang="fur">video Vivo</comment>
+ <comment xml:lang="fr">vidéo Vivo</comment>
+ <comment xml:lang="fo">Vivo video</comment>
+ <comment xml:lang="fi">Vivo-video</comment>
+ <comment xml:lang="eu">Vivo bideoa</comment>
+ <comment xml:lang="es">vídeo Vivo</comment>
+ <comment xml:lang="eo">Vivo-video</comment>
+ <comment xml:lang="en_GB">Vivo video</comment>
+ <comment xml:lang="el">Βίντεο Vivo</comment>
+ <comment xml:lang="de">Vivo-Video</comment>
+ <comment xml:lang="da">Vivo-video</comment>
+ <comment xml:lang="cy">Fideo Vivo</comment>
+ <comment xml:lang="cs">video Vivo</comment>
+ <comment xml:lang="ca">vídeo Vivo</comment>
+ <comment xml:lang="bg">Видео — Vivo</comment>
+ <comment xml:lang="be@latin">Videa Vivo</comment>
+ <comment xml:lang="be">відэа Vivo</comment>
+ <comment xml:lang="az">Vivo video faylı</comment>
+ <comment xml:lang="ast">Videu en Vivo</comment>
+ <comment xml:lang="ar">فيديو Vivo</comment>
+ <comment xml:lang="af">Vivo-video</comment>
<alias type="video/vivo"/>
<glob pattern="*.viv"/>
<glob pattern="*.vivo"/>
</mime-type>
<mime-type type="video/wavelet">
<comment>Wavelet video</comment>
- <comment xml:lang="ar">Wavelet مرئي</comment>
- <comment xml:lang="ast">Videu en Wavelet</comment>
- <comment xml:lang="az">Wavelet video faylı</comment>
- <comment xml:lang="be@latin">Videa Wavelet</comment>
- <comment xml:lang="bg">Видео — Wavelet</comment>
- <comment xml:lang="ca">vídeo Wavelet</comment>
- <comment xml:lang="cs">video Wavelet</comment>
- <comment xml:lang="cy">Fideo Wavelet</comment>
- <comment xml:lang="da">Waveletvideo</comment>
- <comment xml:lang="de">Wavelet-Video</comment>
- <comment xml:lang="el">Βίντεο Wavelet</comment>
- <comment xml:lang="en_GB">Wavelet video</comment>
- <comment xml:lang="eo">Wavelet-video</comment>
- <comment xml:lang="es">vídeo Wavelet</comment>
- <comment xml:lang="eu">Wavelet bideoa</comment>
- <comment xml:lang="fi">Wavelet-video</comment>
- <comment xml:lang="fo">Wavelet video</comment>
- <comment xml:lang="fr">vidéo Wavelet</comment>
- <comment xml:lang="ga">físeán Wavelet</comment>
- <comment xml:lang="gl">vídeo Wavelet</comment>
- <comment xml:lang="he">וידאו של Wavelet</comment>
- <comment xml:lang="hr">Wavelet video snimka</comment>
- <comment xml:lang="hu">Wavelet-videó</comment>
- <comment xml:lang="ia">Video Wavelet</comment>
- <comment xml:lang="id">Video Wavelet</comment>
- <comment xml:lang="it">Video Wavelet</comment>
- <comment xml:lang="ja">Wavelet 動画</comment>
- <comment xml:lang="kk">Wavelet видеосы</comment>
- <comment xml:lang="ko">Wavelet 동영상</comment>
- <comment xml:lang="lt">Wavelet vaizdo įrašas</comment>
- <comment xml:lang="lv">Wavelet video</comment>
- <comment xml:lang="ms">Video Wavelet</comment>
- <comment xml:lang="nb">Wavelet-film</comment>
- <comment xml:lang="nl">Wavelet-video</comment>
- <comment xml:lang="nn">Wavelet video</comment>
- <comment xml:lang="oc">vidèo Wavelet</comment>
- <comment xml:lang="pl">Plik wideo Wavelet</comment>
- <comment xml:lang="pt">vídeo Wavelet</comment>
- <comment xml:lang="pt_BR">Vídeo Wavelet</comment>
- <comment xml:lang="ro">Video Wavelet</comment>
- <comment xml:lang="ru">Видео Wavelet</comment>
- <comment xml:lang="sk">Video Wavelet</comment>
- <comment xml:lang="sl">Video datoteka Wavelet</comment>
- <comment xml:lang="sq">Video Wavelet</comment>
- <comment xml:lang="sr">Вејвелет видео</comment>
- <comment xml:lang="sv">Wavelet-video</comment>
- <comment xml:lang="tr">Wavelet videosu</comment>
- <comment xml:lang="uk">відеокліп Wavelet</comment>
- <comment xml:lang="vi">Ảnh động Wavelet</comment>
- <comment xml:lang="zh_CN">Wavelet 视频</comment>
<comment xml:lang="zh_TW">Wavelet 視訊</comment>
+ <comment xml:lang="zh_CN">Wavelet 视频</comment>
+ <comment xml:lang="vi">Ảnh động Wavelet</comment>
+ <comment xml:lang="uk">відеокліп Wavelet</comment>
+ <comment xml:lang="tr">Wavelet videosu</comment>
+ <comment xml:lang="sv">Wavelet-video</comment>
+ <comment xml:lang="sr">Вејвелет видео</comment>
+ <comment xml:lang="sq">video Wavelet</comment>
+ <comment xml:lang="sl">Video datoteka Wavelet</comment>
+ <comment xml:lang="si">Wavelet වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Wavelet</comment>
+ <comment xml:lang="ru">Видео Wavelet</comment>
+ <comment xml:lang="ro">Video Wavelet</comment>
+ <comment xml:lang="pt_BR">Vídeo Wavelet</comment>
+ <comment xml:lang="pt">vídeo Wavelet</comment>
+ <comment xml:lang="pl">Plik wideo Wavelet</comment>
+ <comment xml:lang="oc">vidèo Wavelet</comment>
+ <comment xml:lang="nn">Wavelet video</comment>
+ <comment xml:lang="nl">Wavelet-video</comment>
+ <comment xml:lang="nb">Wavelet-film</comment>
+ <comment xml:lang="ms">Video Wavelet</comment>
+ <comment xml:lang="lv">Wavelet video</comment>
+ <comment xml:lang="lt">Wavelet vaizdo įrašas</comment>
+ <comment xml:lang="ko">Wavelet 동영상</comment>
+ <comment xml:lang="kk">Wavelet видеосы</comment>
+ <comment xml:lang="ja">Wavelet 動画</comment>
+ <comment xml:lang="it">Video Wavelet</comment>
+ <comment xml:lang="is">Wavelet myndskeið</comment>
+ <comment xml:lang="id">Video Wavelet</comment>
+ <comment xml:lang="ia">Video Wavelet</comment>
+ <comment xml:lang="hu">Wavelet-videó</comment>
+ <comment xml:lang="hr">Wavelet video snimka</comment>
+ <comment xml:lang="he">וידאו של Wavelet</comment>
+ <comment xml:lang="gl">vídeo Wavelet</comment>
+ <comment xml:lang="ga">físeán Wavelet</comment>
+ <comment xml:lang="fur">video Wavelet</comment>
+ <comment xml:lang="fr">vidéo Wavelet</comment>
+ <comment xml:lang="fo">Wavelet video</comment>
+ <comment xml:lang="fi">Wavelet-video</comment>
+ <comment xml:lang="eu">Wavelet bideoa</comment>
+ <comment xml:lang="es">vídeo Wavelet</comment>
+ <comment xml:lang="eo">Wavelet-video</comment>
+ <comment xml:lang="en_GB">Wavelet video</comment>
+ <comment xml:lang="el">Βίντεο Wavelet</comment>
+ <comment xml:lang="de">Wavelet-Video</comment>
+ <comment xml:lang="da">Wavelet-video</comment>
+ <comment xml:lang="cy">Fideo Wavelet</comment>
+ <comment xml:lang="cs">video Wavelet</comment>
+ <comment xml:lang="ca">vídeo Wavelet</comment>
+ <comment xml:lang="bg">Видео — Wavelet</comment>
+ <comment xml:lang="be@latin">Videa Wavelet</comment>
+ <comment xml:lang="be">відэа Wavelet</comment>
+ <comment xml:lang="az">Wavelet video faylı</comment>
+ <comment xml:lang="ast">Videu en Wavelet</comment>
+ <comment xml:lang="ar">فيديو Wavelet</comment>
+ <comment xml:lang="af">Wavelet-video</comment>
</mime-type>
<mime-type type="video/x-anim">
<comment>ANIM animation</comment>
- <comment xml:lang="ar">تحريكة ANIM</comment>
- <comment xml:lang="az">ANIM animasiyası</comment>
- <comment xml:lang="be@latin">Animacyja ANIM</comment>
- <comment xml:lang="bg">Анимация — ANIM</comment>
- <comment xml:lang="ca">animació ANIM</comment>
- <comment xml:lang="cs">animace ANIM</comment>
- <comment xml:lang="cy">Animeiddiad ANIM</comment>
- <comment xml:lang="da">ANIM-animation</comment>
- <comment xml:lang="de">ANIM-Animation</comment>
- <comment xml:lang="el">Κινούμενο σχέδιο ANIM</comment>
- <comment xml:lang="en_GB">ANIM animation</comment>
- <comment xml:lang="eo">ANIM-animacio</comment>
- <comment xml:lang="es">animación ANIM</comment>
- <comment xml:lang="eu">ANIM animazioa</comment>
- <comment xml:lang="fi">ANIM-animaatio</comment>
- <comment xml:lang="fo">ANIM teknmyndagerð</comment>
- <comment xml:lang="fr">animation ANIM</comment>
- <comment xml:lang="ga">beochan ANIM</comment>
- <comment xml:lang="gl">animación ANIM</comment>
- <comment xml:lang="he">הנפשת ANIM</comment>
- <comment xml:lang="hr">ANIM animacija</comment>
- <comment xml:lang="hu">ANIM-animáció</comment>
- <comment xml:lang="ia">Animation ANIM</comment>
- <comment xml:lang="id">Animasi ANIM</comment>
- <comment xml:lang="it">Animazione ANIM</comment>
- <comment xml:lang="ja">ANIM アニメーション</comment>
- <comment xml:lang="ka">ANIM ანიმაცია</comment>
- <comment xml:lang="kk">ANIM анимациясы</comment>
- <comment xml:lang="ko">ANIM 동화상</comment>
- <comment xml:lang="lt">ANIM animacija</comment>
- <comment xml:lang="lv">ANIM animācija</comment>
- <comment xml:lang="ms">Animasi ANIM</comment>
- <comment xml:lang="nb">ANIM-animasjon</comment>
- <comment xml:lang="nl">ANIM-animatie</comment>
- <comment xml:lang="nn">ANIM-animasjon</comment>
- <comment xml:lang="oc">animacion ANIM</comment>
- <comment xml:lang="pl">Plik animacji ANIM</comment>
- <comment xml:lang="pt">animação ANIM</comment>
- <comment xml:lang="pt_BR">Animação ANIM</comment>
- <comment xml:lang="ro">Animație ANIM</comment>
- <comment xml:lang="ru">Анимация ANIM</comment>
- <comment xml:lang="sk">Animácia ANIM</comment>
- <comment xml:lang="sl">Datoteka animacije ANIM</comment>
- <comment xml:lang="sq">Animim ANIM</comment>
- <comment xml:lang="sr">АНИМ анимација</comment>
- <comment xml:lang="sv">ANIM-animering</comment>
- <comment xml:lang="tr">ANIM canlandırması</comment>
- <comment xml:lang="uk">анімація ANIM</comment>
- <comment xml:lang="vi">Hoạt ảnh ANIM</comment>
- <comment xml:lang="zh_CN">ANIM 动画</comment>
<comment xml:lang="zh_TW">ANIM 動畫</comment>
+ <comment xml:lang="zh_CN">ANIM 动画</comment>
+ <comment xml:lang="vi">Hoạt ảnh ANIM</comment>
+ <comment xml:lang="uk">анімація ANIM</comment>
+ <comment xml:lang="tr">ANIM canlandırması</comment>
+ <comment xml:lang="sv">ANIM-animering</comment>
+ <comment xml:lang="sr">АНИМ анимација</comment>
+ <comment xml:lang="sq">animacion ANIM</comment>
+ <comment xml:lang="sl">Datoteka animacije ANIM</comment>
+ <comment xml:lang="si">ANIM සජීවිකරණය</comment>
+ <comment xml:lang="sk">Animácia ANIM</comment>
+ <comment xml:lang="ru">Анимация ANIM</comment>
+ <comment xml:lang="ro">Animație ANIM</comment>
+ <comment xml:lang="pt_BR">Animação ANIM</comment>
+ <comment xml:lang="pt">animação ANIM</comment>
+ <comment xml:lang="pl">Plik animacji ANIM</comment>
+ <comment xml:lang="oc">animacion ANIM</comment>
+ <comment xml:lang="nn">ANIM-animasjon</comment>
+ <comment xml:lang="nl">ANIM-animatie</comment>
+ <comment xml:lang="nb">ANIM-animasjon</comment>
+ <comment xml:lang="ms">Animasi ANIM</comment>
+ <comment xml:lang="lv">ANIM animācija</comment>
+ <comment xml:lang="lt">ANIM animacija</comment>
+ <comment xml:lang="ko">ANIM 동화상</comment>
+ <comment xml:lang="kk">ANIM анимациясы</comment>
+ <comment xml:lang="ka">ANIM ანიმაცია</comment>
+ <comment xml:lang="ja">ANIM アニメーション</comment>
+ <comment xml:lang="it">Animazione ANIM</comment>
+ <comment xml:lang="is">ANIM hreyfimynd</comment>
+ <comment xml:lang="id">Animasi ANIM</comment>
+ <comment xml:lang="ia">Animation ANIM</comment>
+ <comment xml:lang="hu">ANIM-animáció</comment>
+ <comment xml:lang="hr">ANIM animacija</comment>
+ <comment xml:lang="he">הנפשת ANIM</comment>
+ <comment xml:lang="gl">animación ANIM</comment>
+ <comment xml:lang="ga">beochan ANIM</comment>
+ <comment xml:lang="fur">animazion ANIM</comment>
+ <comment xml:lang="fr">animation ANIM</comment>
+ <comment xml:lang="fo">ANIM teknmyndagerð</comment>
+ <comment xml:lang="fi">ANIM-animaatio</comment>
+ <comment xml:lang="eu">ANIM animazioa</comment>
+ <comment xml:lang="es">animación ANIM</comment>
+ <comment xml:lang="eo">ANIM-animacio</comment>
+ <comment xml:lang="en_GB">ANIM animation</comment>
+ <comment xml:lang="el">Κινούμενο σχέδιο ANIM</comment>
+ <comment xml:lang="de">ANIM-Animation</comment>
+ <comment xml:lang="da">ANIM-animation</comment>
+ <comment xml:lang="cy">Animeiddiad ANIM</comment>
+ <comment xml:lang="cs">animace ANIM</comment>
+ <comment xml:lang="ca">animació ANIM</comment>
+ <comment xml:lang="bg">Анимация — ANIM</comment>
+ <comment xml:lang="be@latin">Animacyja ANIM</comment>
+ <comment xml:lang="be">анімацыя ANIM</comment>
+ <comment xml:lang="az">ANIM animasiyası</comment>
+ <comment xml:lang="ar">تحريكة ANIM</comment>
+ <comment xml:lang="af">ANIM-animasie</comment>
<glob pattern="*.anim[1-9j]"/>
</mime-type>
<mime-type type="video/x-flic">
<comment>FLIC animation</comment>
- <comment xml:lang="ar">تحريكة FLIC</comment>
- <comment xml:lang="be@latin">Animacyja FLIC</comment>
- <comment xml:lang="bg">Анимация — FLIC</comment>
- <comment xml:lang="ca">animació FLIC</comment>
- <comment xml:lang="cs">animace FLIC</comment>
- <comment xml:lang="da">FLIC-animation</comment>
- <comment xml:lang="de">FLIC-Animation</comment>
- <comment xml:lang="el">Κινούμενο σχέδιο FLIC</comment>
- <comment xml:lang="en_GB">FLIC animation</comment>
- <comment xml:lang="es">animación FLIC</comment>
- <comment xml:lang="eu">FLIC animazioa</comment>
- <comment xml:lang="fi">FLIC-animaatio</comment>
- <comment xml:lang="fo">FLIC teknimyndagerð</comment>
- <comment xml:lang="fr">animation FLIC</comment>
- <comment xml:lang="ga">beochan FLIC</comment>
- <comment xml:lang="gl">animación FLIC</comment>
- <comment xml:lang="he">הנפשת FLIC</comment>
- <comment xml:lang="hr">FLIC animacija</comment>
- <comment xml:lang="hu">FLIC animáció</comment>
- <comment xml:lang="ia">Animation FLIC</comment>
- <comment xml:lang="id">Animasi FLIC</comment>
- <comment xml:lang="it">Animazione FLIC</comment>
- <comment xml:lang="ja">FLIC アニメーション</comment>
- <comment xml:lang="ka">FLIC ანიმაცია</comment>
- <comment xml:lang="kk">FLIC анимациясы</comment>
- <comment xml:lang="ko">FLIC 동화상</comment>
- <comment xml:lang="lt">FLIC animacija</comment>
- <comment xml:lang="lv">FLIC animācija</comment>
- <comment xml:lang="nb">FLIC-animasjon</comment>
- <comment xml:lang="nl">FLIC-animatie</comment>
- <comment xml:lang="nn">FLIC-animasjon</comment>
- <comment xml:lang="oc">animacion FLIC</comment>
- <comment xml:lang="pl">Plik animacji FLIC</comment>
- <comment xml:lang="pt">animação FLIC</comment>
- <comment xml:lang="pt_BR">Animação FLIC</comment>
- <comment xml:lang="ro">Animație FLIC</comment>
- <comment xml:lang="ru">Анимация FLIC</comment>
- <comment xml:lang="sk">Animácia FLIC</comment>
- <comment xml:lang="sl">Datoteka animacije FLIC</comment>
- <comment xml:lang="sq">Animim FLIC</comment>
- <comment xml:lang="sr">ФЛИЦ анимација</comment>
- <comment xml:lang="sv">FLIC-animering</comment>
- <comment xml:lang="tr">FLIC animasyonu</comment>
- <comment xml:lang="uk">анімація FLIC</comment>
- <comment xml:lang="vi">Hoạt ảnh FLIC</comment>
- <comment xml:lang="zh_CN">FLIC 动画</comment>
<comment xml:lang="zh_TW">FLIC 動畫</comment>
+ <comment xml:lang="zh_CN">FLIC 动画</comment>
+ <comment xml:lang="vi">Hoạt ảnh FLIC</comment>
+ <comment xml:lang="uk">анімація FLIC</comment>
+ <comment xml:lang="tr">FLIC animasyonu</comment>
+ <comment xml:lang="sv">FLIC-animering</comment>
+ <comment xml:lang="sr">ФЛИЦ анимација</comment>
+ <comment xml:lang="sq">animacion FLIC</comment>
+ <comment xml:lang="sl">Datoteka animacije FLIC</comment>
+ <comment xml:lang="si">FLIC සජීවිකරණය</comment>
+ <comment xml:lang="sk">Animácia FLIC</comment>
+ <comment xml:lang="ru">Анимация FLIC</comment>
+ <comment xml:lang="ro">Animație FLIC</comment>
+ <comment xml:lang="pt_BR">Animação FLIC</comment>
+ <comment xml:lang="pt">animação FLIC</comment>
+ <comment xml:lang="pl">Plik animacji FLIC</comment>
+ <comment xml:lang="oc">animacion FLIC</comment>
+ <comment xml:lang="nn">FLIC-animasjon</comment>
+ <comment xml:lang="nl">FLIC-animatie</comment>
+ <comment xml:lang="nb">FLIC-animasjon</comment>
+ <comment xml:lang="lv">FLIC animācija</comment>
+ <comment xml:lang="lt">FLIC animacija</comment>
+ <comment xml:lang="ko">FLIC 동화상</comment>
+ <comment xml:lang="kk">FLIC анимациясы</comment>
+ <comment xml:lang="ka">FLIC ანიმაცია</comment>
+ <comment xml:lang="ja">FLIC アニメーション</comment>
+ <comment xml:lang="it">Animazione FLIC</comment>
+ <comment xml:lang="is">FLIC-hreyfimynd</comment>
+ <comment xml:lang="id">Animasi FLIC</comment>
+ <comment xml:lang="ia">Animation FLIC</comment>
+ <comment xml:lang="hu">FLIC animáció</comment>
+ <comment xml:lang="hr">FLIC animacija</comment>
+ <comment xml:lang="he">הנפשת FLIC</comment>
+ <comment xml:lang="gl">animación FLIC</comment>
+ <comment xml:lang="ga">beochan FLIC</comment>
+ <comment xml:lang="fur">animazion FLIC</comment>
+ <comment xml:lang="fr">animation FLIC</comment>
+ <comment xml:lang="fo">FLIC teknimyndagerð</comment>
+ <comment xml:lang="fi">FLIC-animaatio</comment>
+ <comment xml:lang="eu">FLIC animazioa</comment>
+ <comment xml:lang="es">animación FLIC</comment>
+ <comment xml:lang="en_GB">FLIC animation</comment>
+ <comment xml:lang="el">Κινούμενο σχέδιο FLIC</comment>
+ <comment xml:lang="de">FLIC-Animation</comment>
+ <comment xml:lang="da">FLIC-animation</comment>
+ <comment xml:lang="cs">animace FLIC</comment>
+ <comment xml:lang="ca">animació FLIC</comment>
+ <comment xml:lang="bg">Анимация — FLIC</comment>
+ <comment xml:lang="be@latin">Animacyja FLIC</comment>
+ <comment xml:lang="be">анімацыя FLIC</comment>
+ <comment xml:lang="ar">تحريكة FLIC</comment>
+ <comment xml:lang="af">FLIC-animasie</comment>
<alias type="video/fli"/>
<alias type="video/x-fli"/>
- <magic priority="50">
- <match value="0xAF11" type="little16" offset="0"/>
- <match value="0xAF12" type="little16" offset="0"/>
+ <magic>
+ <match type="little16" value="0xAF11" offset="0"/>
+ <match type="little16" value="0xAF12" offset="0"/>
</magic>
<glob pattern="*.fli"/>
<glob pattern="*.flc"/>
</mime-type>
<mime-type type="application/x-hwp">
<comment>Haansoft Hangul document</comment>
- <comment xml:lang="ar">مستند Haansoft Hangul</comment>
- <comment xml:lang="ast">Documentu de Haansoft Hangul</comment>
- <comment xml:lang="be@latin">Dakument Haansoft Hangul</comment>
- <comment xml:lang="bg">Документ — Haansoft Hangul</comment>
- <comment xml:lang="ca">document d'Haansoft Hangul</comment>
- <comment xml:lang="cs">dokument Haansoft Hangul</comment>
- <comment xml:lang="da">Haansoft Hangul-dokument</comment>
- <comment xml:lang="de">Haansoft-Hangul-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Haansoft Hangul</comment>
- <comment xml:lang="en_GB">Haansoft Hangul document</comment>
- <comment xml:lang="es">documento de Haansoft Hangul</comment>
- <comment xml:lang="eu">Haansoft Hangul dokumentua</comment>
- <comment xml:lang="fi">Haansoft Hangul -asiakirja</comment>
- <comment xml:lang="fo">Haansoft Hangul skjal</comment>
- <comment xml:lang="fr">document Haansoft Hangul</comment>
- <comment xml:lang="ga">cáipéis Haansoft Hangul</comment>
- <comment xml:lang="gl">documento de Haansoft Hangul</comment>
- <comment xml:lang="he">מסמך Haansoft Hangul</comment>
- <comment xml:lang="hr">Haansoft Hangul dokument</comment>
- <comment xml:lang="hu">Haansoft hangul dokumentum</comment>
- <comment xml:lang="ia">Documento Haansoft Hangul</comment>
- <comment xml:lang="id">Dokumen Haansoft Hangul</comment>
- <comment xml:lang="it">Documento Haansoft Hangul</comment>
- <comment xml:lang="ja">Haansoft Hangul ドキュメント</comment>
- <comment xml:lang="kk">Haansoft Hangul құжаты</comment>
- <comment xml:lang="ko">한소프트 한글 문서</comment>
- <comment xml:lang="lt">Haansoft Hangul dokumentas</comment>
- <comment xml:lang="lv">Haansoft Hangul dokuments</comment>
- <comment xml:lang="nb">Haansoft Hangul-dokument</comment>
- <comment xml:lang="nl">Haansoft Hangul-document</comment>
- <comment xml:lang="nn">Haansoft Hangul-dokument</comment>
- <comment xml:lang="oc">document Haansoft Hangul</comment>
- <comment xml:lang="pl">Dokument Haansoft Hangul</comment>
- <comment xml:lang="pt">documento Haansoft Hangul</comment>
- <comment xml:lang="pt_BR">Documento do Haansoft Hangul</comment>
- <comment xml:lang="ro">Document Haansoft Hangul</comment>
- <comment xml:lang="ru">Документ Haansoft Hangul</comment>
- <comment xml:lang="sk">Dokument Haansoft Hangul</comment>
- <comment xml:lang="sl">Dokument Haansoft Hangul</comment>
- <comment xml:lang="sq">Dokument Haansoft Hangul</comment>
- <comment xml:lang="sr">Хансофт Хангул документ</comment>
- <comment xml:lang="sv">Haansoft Hangul-dokument</comment>
- <comment xml:lang="tr">Haansoft Hangul belgesi</comment>
- <comment xml:lang="uk">документ Haansoft Hangul</comment>
- <comment xml:lang="vi">Tài liệu Hangul Haansoft</comment>
- <comment xml:lang="zh_CN">Haansoft Hangul 文档</comment>
<comment xml:lang="zh_TW">Haansoft 韓文文件</comment>
+ <comment xml:lang="zh_CN">Haansoft Hangul 文档</comment>
+ <comment xml:lang="vi">Tài liệu Hangul Haansoft</comment>
+ <comment xml:lang="uk">документ Haansoft Hangul</comment>
+ <comment xml:lang="tr">Haansoft Hangul belgesi</comment>
+ <comment xml:lang="sv">Haansoft Hangul-dokument</comment>
+ <comment xml:lang="sr">Хансофт Хангул документ</comment>
+ <comment xml:lang="sq">dokument Haansoft Hangul</comment>
+ <comment xml:lang="sl">Dokument Haansoft Hangul</comment>
+ <comment xml:lang="si">Haansoft Hangul ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Haansoft Hangul</comment>
+ <comment xml:lang="ru">Документ Haansoft Hangul</comment>
+ <comment xml:lang="ro">Document Haansoft Hangul</comment>
+ <comment xml:lang="pt_BR">Documento do Haansoft Hangul</comment>
+ <comment xml:lang="pt">documento Haansoft Hangul</comment>
+ <comment xml:lang="pl">Dokument Haansoft Hangul</comment>
+ <comment xml:lang="oc">document Haansoft Hangul</comment>
+ <comment xml:lang="nn">Haansoft Hangul-dokument</comment>
+ <comment xml:lang="nl">Haansoft Hangul-document</comment>
+ <comment xml:lang="nb">Haansoft Hangul-dokument</comment>
+ <comment xml:lang="lv">Haansoft Hangul dokuments</comment>
+ <comment xml:lang="lt">Haansoft Hangul dokumentas</comment>
+ <comment xml:lang="ko">한소프트 한글 문서</comment>
+ <comment xml:lang="kk">Haansoft Hangul құжаты</comment>
+ <comment xml:lang="ja">Haansoft Hangul ドキュメント</comment>
+ <comment xml:lang="it">Documento Haansoft Hangul</comment>
+ <comment xml:lang="is">Haansoft Hangul skjal</comment>
+ <comment xml:lang="id">Dokumen Haansoft Hangul</comment>
+ <comment xml:lang="ia">Documento Haansoft Hangul</comment>
+ <comment xml:lang="hu">Haansoft hangul dokumentum</comment>
+ <comment xml:lang="hr">Haansoft Hangul dokument</comment>
+ <comment xml:lang="he">מסמך Haansoft Hangul</comment>
+ <comment xml:lang="gl">documento de Haansoft Hangul</comment>
+ <comment xml:lang="ga">cáipéis Haansoft Hangul</comment>
+ <comment xml:lang="fur">document Haansoft Hangul</comment>
+ <comment xml:lang="fr">document Haansoft Hangul</comment>
+ <comment xml:lang="fo">Haansoft Hangul skjal</comment>
+ <comment xml:lang="fi">Haansoft Hangul -asiakirja</comment>
+ <comment xml:lang="eu">Haansoft Hangul dokumentua</comment>
+ <comment xml:lang="es">documento de Haansoft Hangul</comment>
+ <comment xml:lang="en_GB">Haansoft Hangul document</comment>
+ <comment xml:lang="el">Έγγραφο Haansoft Hangul</comment>
+ <comment xml:lang="de">Haansoft-Hangul-Dokument</comment>
+ <comment xml:lang="da">Haansoft Hangul-dokument</comment>
+ <comment xml:lang="cs">dokument Haansoft Hangul</comment>
+ <comment xml:lang="ca">document d'Haansoft Hangul</comment>
+ <comment xml:lang="bg">Документ — Haansoft Hangul</comment>
+ <comment xml:lang="be@latin">Dakument Haansoft Hangul</comment>
+ <comment xml:lang="be">дакумент Haansoft Hangul</comment>
+ <comment xml:lang="ast">Documentu de Haansoft Hangul</comment>
+ <comment xml:lang="ar">مستند Haansoft Hangul</comment>
+ <comment xml:lang="af">Haansoft Hangul-dokument</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="HWP Document File" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="HWP Document File" offset="0"/>
</magic>
<glob pattern="*.hwp"/>
<alias type="application/vnd.haansoft-hwp"/>
</mime-type>
<mime-type type="application/x-hwt">
<comment>Haansoft Hangul document template</comment>
- <comment xml:lang="ar">قالب مستند Haansoft Hangul</comment>
- <comment xml:lang="ast">Plantía de documentu de Haansoft Hangul</comment>
- <comment xml:lang="be@latin">Šablon dakumentu Haansoft Hangul</comment>
- <comment xml:lang="bg">Шаблон за документи — Haansoft Hangul</comment>
- <comment xml:lang="ca">plantilla de document d'Haansoft Hangul</comment>
- <comment xml:lang="cs">šablona dokumentu Haansoft Hangul</comment>
- <comment xml:lang="da">Haansoft Hangul-dokumentskabelon</comment>
- <comment xml:lang="de">Haansoft-Hangul-Dokumentvorlage</comment>
- <comment xml:lang="el">Πρότυπο εγγράφου Haansoft Hangul</comment>
- <comment xml:lang="en_GB">Haansoft Hangul document template</comment>
- <comment xml:lang="es">plantilla de documento de Haansoft Hangul</comment>
- <comment xml:lang="eu">Haansoft Hangul dokumentuaren txantiloia</comment>
- <comment xml:lang="fi">Haansoft Hangul -asiakirjamalli</comment>
- <comment xml:lang="fo">Haansoft Hangul skjalaformur</comment>
- <comment xml:lang="fr">modèle de document Haansoft Hangul</comment>
- <comment xml:lang="ga">teimpléad cháipéis Haansoft Hangul</comment>
- <comment xml:lang="gl">modelo de documento de Haansoft Hangul</comment>
- <comment xml:lang="he">תבנית מסמך של Haansoft Hangul</comment>
- <comment xml:lang="hr">Haansoft Hangul predložak dokumenta</comment>
- <comment xml:lang="hu">Haansoft hangul dokumentumsablon</comment>
- <comment xml:lang="ia">Patrono de documento Haansoft Hangul</comment>
- <comment xml:lang="id">Templat dokumen Haansoft Hangul</comment>
- <comment xml:lang="it">Modello documento Haansoft Hangul</comment>
- <comment xml:lang="ja">Haansoft Hangul ドキュメントテンプレート</comment>
- <comment xml:lang="kk">Haansoft Hangul құжат үлгісі</comment>
- <comment xml:lang="ko">한소프트 한글 문서 서식</comment>
- <comment xml:lang="lt">Haansoft Hangul dokumento šablonas</comment>
- <comment xml:lang="lv">Haansoft Hangul dokumentu veidne</comment>
- <comment xml:lang="nb">Haansoft Hangul-dokumentmal</comment>
- <comment xml:lang="nl">Haansoft Hangul-documentsjabloon</comment>
- <comment xml:lang="nn">Haansoft Hangul-dokumentmal</comment>
- <comment xml:lang="oc">modèl de document Haansoft Hangul</comment>
- <comment xml:lang="pl">Szablon dokumentu Haansoft Hangul</comment>
- <comment xml:lang="pt">modelo de documento Haansoft Hangul</comment>
- <comment xml:lang="pt_BR">Modelo de documento do Haansoft Hangul</comment>
- <comment xml:lang="ro">Document șablon Haansoft Hangul</comment>
- <comment xml:lang="ru">Шаблон документа Haansoft Hangul</comment>
- <comment xml:lang="sk">Šablóna dokumentu Haansoft Hangul</comment>
- <comment xml:lang="sl">Predloga dokumenta Haansoft Hangul</comment>
- <comment xml:lang="sq">Model dokumenti Haansoft Hangul</comment>
- <comment xml:lang="sr">шаблон Хансофт Хангул документа</comment>
- <comment xml:lang="sv">Haansoft Hangul-dokumentmall</comment>
- <comment xml:lang="tr">Haansoft Hangul belge şablonu</comment>
- <comment xml:lang="uk">шаблон документа Haansoft Hangul</comment>
- <comment xml:lang="vi">Mẫu tài liệu Hangul Haansoft</comment>
- <comment xml:lang="zh_CN">Haansoft Hangul 文档模板</comment>
<comment xml:lang="zh_TW">Haansoft 韓文文件範本</comment>
+ <comment xml:lang="zh_CN">Haansoft Hangul 文档模板</comment>
+ <comment xml:lang="vi">Mẫu tài liệu Hangul Haansoft</comment>
+ <comment xml:lang="uk">шаблон документа Haansoft Hangul</comment>
+ <comment xml:lang="tr">Haansoft Hangul belge şablonu</comment>
+ <comment xml:lang="sv">Haansoft Hangul-dokumentmall</comment>
+ <comment xml:lang="sr">шаблон Хансофт Хангул документа</comment>
+ <comment xml:lang="sq">gjedhe dokumentesh Haansoft Hangul</comment>
+ <comment xml:lang="sl">Predloga dokumenta Haansoft Hangul</comment>
+ <comment xml:lang="si">Haansoft Hangul ලේඛන අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna dokumentu Haansoft Hangul</comment>
+ <comment xml:lang="ru">Шаблон документа Haansoft Hangul</comment>
+ <comment xml:lang="ro">Document șablon Haansoft Hangul</comment>
+ <comment xml:lang="pt_BR">Modelo de documento do Haansoft Hangul</comment>
+ <comment xml:lang="pt">modelo de documento Haansoft Hangul</comment>
+ <comment xml:lang="pl">Szablon dokumentu Haansoft Hangul</comment>
+ <comment xml:lang="oc">modèl de document Haansoft Hangul</comment>
+ <comment xml:lang="nn">Haansoft Hangul-dokumentmal</comment>
+ <comment xml:lang="nl">Haansoft Hangul-documentsjabloon</comment>
+ <comment xml:lang="nb">Haansoft Hangul-dokumentmal</comment>
+ <comment xml:lang="lv">Haansoft Hangul dokumentu veidne</comment>
+ <comment xml:lang="lt">Haansoft Hangul dokumento šablonas</comment>
+ <comment xml:lang="ko">한소프트 한글 문서 서식</comment>
+ <comment xml:lang="kk">Haansoft Hangul құжат үлгісі</comment>
+ <comment xml:lang="ja">Haansoft Hangul ドキュメントテンプレート</comment>
+ <comment xml:lang="it">Modello documento Haansoft Hangul</comment>
+ <comment xml:lang="is">Haansoft Hangul sniðskjal</comment>
+ <comment xml:lang="id">Templat dokumen Haansoft Hangul</comment>
+ <comment xml:lang="ia">Patrono de documento Haansoft Hangul</comment>
+ <comment xml:lang="hu">Haansoft hangul dokumentumsablon</comment>
+ <comment xml:lang="hr">Haansoft Hangul predložak dokumenta</comment>
+ <comment xml:lang="he">תבנית מסמך של Haansoft Hangul</comment>
+ <comment xml:lang="gl">modelo de documento de Haansoft Hangul</comment>
+ <comment xml:lang="ga">teimpléad cháipéis Haansoft Hangul</comment>
+ <comment xml:lang="fur">model document Haansoft Hangul</comment>
+ <comment xml:lang="fr">modèle de document Haansoft Hangul</comment>
+ <comment xml:lang="fo">Haansoft Hangul skjalaformur</comment>
+ <comment xml:lang="fi">Haansoft Hangul -asiakirjamalli</comment>
+ <comment xml:lang="eu">Haansoft Hangul dokumentuaren txantiloia</comment>
+ <comment xml:lang="es">plantilla de documento de Haansoft Hangul</comment>
+ <comment xml:lang="en_GB">Haansoft Hangul document template</comment>
+ <comment xml:lang="el">Πρότυπο εγγράφου Haansoft Hangul</comment>
+ <comment xml:lang="de">Haansoft-Hangul-Dokumentvorlage</comment>
+ <comment xml:lang="da">Haansoft Hangul-dokumentskabelon</comment>
+ <comment xml:lang="cs">šablona dokumentu Haansoft Hangul</comment>
+ <comment xml:lang="ca">plantilla de document d'Haansoft Hangul</comment>
+ <comment xml:lang="bg">Шаблон за документи — Haansoft Hangul</comment>
+ <comment xml:lang="be@latin">Šablon dakumentu Haansoft Hangul</comment>
+ <comment xml:lang="be">шаблон дакумента Haansoft Hangul</comment>
+ <comment xml:lang="ast">Plantía de documentu de Haansoft Hangul</comment>
+ <comment xml:lang="ar">قالب مستند Haansoft Hangul</comment>
+ <comment xml:lang="af">Haansoft Hangul-dokumentsjabloon</comment>
<generic-icon name="x-office-document"/>
<glob pattern="*.hwt"/>
<alias type="application/vnd.haansoft-hwt"/>
</mime-type>
<mime-type type="video/x-mng">
<comment>MNG animation</comment>
- <comment xml:lang="ar">تحريكة MNG</comment>
- <comment xml:lang="be@latin">Animacyja MNG</comment>
- <comment xml:lang="bg">Анимация — MNG</comment>
- <comment xml:lang="ca">animació MNG</comment>
- <comment xml:lang="cs">animace MNG</comment>
- <comment xml:lang="da">MNG-animation</comment>
- <comment xml:lang="de">MNG-Animation</comment>
- <comment xml:lang="el">Κινούμενο σχέδιο MNG</comment>
- <comment xml:lang="en_GB">MNG animation</comment>
- <comment xml:lang="eo">MNG-animacio</comment>
- <comment xml:lang="es">animación MNG</comment>
- <comment xml:lang="eu">MNG animazioa</comment>
- <comment xml:lang="fi">MNG-animaatio</comment>
- <comment xml:lang="fo">MNG teknimyndagerð</comment>
- <comment xml:lang="fr">animation MNG</comment>
- <comment xml:lang="ga">beochan MNG</comment>
- <comment xml:lang="gl">animación MNG</comment>
- <comment xml:lang="he">הנפשת MNG</comment>
- <comment xml:lang="hr">MNG animacija</comment>
- <comment xml:lang="hu">MNG-animáció</comment>
- <comment xml:lang="ia">Animation MNG</comment>
- <comment xml:lang="id">Animasi MNG</comment>
- <comment xml:lang="it">Animazione MNG</comment>
- <comment xml:lang="ja">MNG アニメーション</comment>
- <comment xml:lang="kk">MNG анимациясы</comment>
- <comment xml:lang="ko">MNG 동화상</comment>
- <comment xml:lang="lt">MNG animacija</comment>
- <comment xml:lang="lv">MNG animācija</comment>
- <comment xml:lang="ms">Animasi MNG</comment>
- <comment xml:lang="nb">MNG-animasjon</comment>
- <comment xml:lang="nl">MNG-animatie</comment>
- <comment xml:lang="nn">MNG-animasjon</comment>
- <comment xml:lang="oc">animacion MNG</comment>
- <comment xml:lang="pl">Animacja MNG</comment>
- <comment xml:lang="pt">animação MNG</comment>
- <comment xml:lang="pt_BR">Animação MNG</comment>
- <comment xml:lang="ro">Animație MNG</comment>
- <comment xml:lang="ru">Анимация MNG</comment>
- <comment xml:lang="sk">Animácia MNG</comment>
- <comment xml:lang="sl">Datoteka animacije MNG</comment>
- <comment xml:lang="sq">Animim MNG</comment>
- <comment xml:lang="sr">МНГ анимација</comment>
- <comment xml:lang="sv">MNG-animering</comment>
- <comment xml:lang="tr">MNG canlandırması</comment>
- <comment xml:lang="uk">анімація MNG</comment>
- <comment xml:lang="vi">Hoạt ảnh MNG</comment>
- <comment xml:lang="zh_CN">MNG 动画</comment>
<comment xml:lang="zh_TW">MNG 動畫</comment>
+ <comment xml:lang="zh_CN">MNG 动画</comment>
+ <comment xml:lang="vi">Hoạt ảnh MNG</comment>
+ <comment xml:lang="uk">анімація MNG</comment>
+ <comment xml:lang="tr">MNG canlandırması</comment>
+ <comment xml:lang="sv">MNG-animering</comment>
+ <comment xml:lang="sr">МНГ анимација</comment>
+ <comment xml:lang="sq">animacion MNG</comment>
+ <comment xml:lang="sl">Datoteka animacije MNG</comment>
+ <comment xml:lang="si">MNG සජීවිකරණය</comment>
+ <comment xml:lang="sk">Animácia MNG</comment>
+ <comment xml:lang="ru">Анимация MNG</comment>
+ <comment xml:lang="ro">Animație MNG</comment>
+ <comment xml:lang="pt_BR">Animação MNG</comment>
+ <comment xml:lang="pt">animação MNG</comment>
+ <comment xml:lang="pl">Animacja MNG</comment>
+ <comment xml:lang="oc">animacion MNG</comment>
+ <comment xml:lang="nn">MNG-animasjon</comment>
+ <comment xml:lang="nl">MNG-animatie</comment>
+ <comment xml:lang="nb">MNG-animasjon</comment>
+ <comment xml:lang="ms">Animasi MNG</comment>
+ <comment xml:lang="lv">MNG animācija</comment>
+ <comment xml:lang="lt">MNG animacija</comment>
+ <comment xml:lang="ko">MNG 동화상</comment>
+ <comment xml:lang="kk">MNG анимациясы</comment>
+ <comment xml:lang="ja">MNG アニメーション</comment>
+ <comment xml:lang="it">Animazione MNG</comment>
+ <comment xml:lang="is">MNG hreyfimynd</comment>
+ <comment xml:lang="id">Animasi MNG</comment>
+ <comment xml:lang="ia">Animation MNG</comment>
+ <comment xml:lang="hu">MNG-animáció</comment>
+ <comment xml:lang="hr">MNG animacija</comment>
+ <comment xml:lang="he">הנפשת MNG</comment>
+ <comment xml:lang="gl">animación MNG</comment>
+ <comment xml:lang="ga">beochan MNG</comment>
+ <comment xml:lang="fur">animazion MNG</comment>
+ <comment xml:lang="fr">animation MNG</comment>
+ <comment xml:lang="fo">MNG teknimyndagerð</comment>
+ <comment xml:lang="fi">MNG-animaatio</comment>
+ <comment xml:lang="eu">MNG animazioa</comment>
+ <comment xml:lang="es">animación MNG</comment>
+ <comment xml:lang="eo">MNG-animacio</comment>
+ <comment xml:lang="en_GB">MNG animation</comment>
+ <comment xml:lang="el">Κινούμενο σχέδιο MNG</comment>
+ <comment xml:lang="de">MNG-Animation</comment>
+ <comment xml:lang="da">MNG-animation</comment>
+ <comment xml:lang="cs">animace MNG</comment>
+ <comment xml:lang="ca">animació MNG</comment>
+ <comment xml:lang="bg">Анимация — MNG</comment>
+ <comment xml:lang="be@latin">Animacyja MNG</comment>
+ <comment xml:lang="be">анімацыя MNG</comment>
+ <comment xml:lang="ar">تحريكة MNG</comment>
+ <comment xml:lang="af">MNG-animasie</comment>
<acronym>MNG</acronym>
<expanded-acronym>Multiple-Image Network Graphics</expanded-acronym>
- <magic priority="50">
- <match value="\x8AMNG\x0D\x0A\x1A\x0A" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="\x8AMNG\x0D\x0A\x1A\x0A" offset="0"/>
</magic>
<glob pattern="*.mng"/>
</mime-type>
<mime-type type="application/vnd.ms-asf">
<comment>ASF video</comment>
- <comment xml:lang="ar">ASF مرئي</comment>
- <comment xml:lang="ast">Videu n'ASF</comment>
- <comment xml:lang="be@latin">Videa ASF</comment>
- <comment xml:lang="bg">Видео — ASF</comment>
- <comment xml:lang="ca">vídeo ASF</comment>
- <comment xml:lang="cs">video ASF</comment>
- <comment xml:lang="da">ASF-video</comment>
- <comment xml:lang="de">ASF-Video</comment>
- <comment xml:lang="el">Βίντεο ASF</comment>
- <comment xml:lang="en_GB">ASF video</comment>
- <comment xml:lang="eo">ASF-video</comment>
- <comment xml:lang="es">vídeo ASF</comment>
- <comment xml:lang="eu">ASF bideoa</comment>
- <comment xml:lang="fi">ASF-video</comment>
- <comment xml:lang="fo">ASF video</comment>
- <comment xml:lang="fr">vidéo ASF</comment>
- <comment xml:lang="ga">físeán ASF</comment>
- <comment xml:lang="gl">vídeo ASF</comment>
- <comment xml:lang="he">וידאו ASF</comment>
- <comment xml:lang="hr">ASF video snimka</comment>
- <comment xml:lang="hu">ASF videó</comment>
- <comment xml:lang="ia">Video ASF</comment>
- <comment xml:lang="id">Video ASF</comment>
- <comment xml:lang="it">Video ASF</comment>
- <comment xml:lang="ja">ASF 動画</comment>
- <comment xml:lang="ka">ASF ვიდეო</comment>
- <comment xml:lang="kk">ASF видеосы</comment>
- <comment xml:lang="ko">ASF 동영상</comment>
- <comment xml:lang="lt">ASF vaizdo įrašas</comment>
- <comment xml:lang="lv">ASF video</comment>
- <comment xml:lang="nb">ASF-film</comment>
- <comment xml:lang="nl">ASF-video</comment>
- <comment xml:lang="nn">ASF-video</comment>
- <comment xml:lang="oc">vidèo ASF</comment>
- <comment xml:lang="pl">Plik wideo ASF</comment>
- <comment xml:lang="pt">vídeo ASF</comment>
- <comment xml:lang="pt_BR">Vídeo ASF</comment>
- <comment xml:lang="ro">Video ASF</comment>
- <comment xml:lang="ru">Видео ASF</comment>
- <comment xml:lang="sk">Video ASF</comment>
- <comment xml:lang="sl">Video datoteka ASF</comment>
- <comment xml:lang="sq">Video ASF</comment>
- <comment xml:lang="sr">АСФ видео</comment>
- <comment xml:lang="sv">ASF-video</comment>
- <comment xml:lang="tr">ASF videosu</comment>
- <comment xml:lang="uk">відеокліп ASF</comment>
- <comment xml:lang="vi">Ảnh động ASF</comment>
- <comment xml:lang="zh_CN">ASF 视频</comment>
<comment xml:lang="zh_TW">ASF 視訊</comment>
+ <comment xml:lang="zh_CN">ASF 视频</comment>
+ <comment xml:lang="vi">Ảnh động ASF</comment>
+ <comment xml:lang="uk">відеокліп ASF</comment>
+ <comment xml:lang="tr">ASF videosu</comment>
+ <comment xml:lang="sv">ASF-video</comment>
+ <comment xml:lang="sr">АСФ видео</comment>
+ <comment xml:lang="sq">video ASF</comment>
+ <comment xml:lang="sl">Video datoteka ASF</comment>
+ <comment xml:lang="si">ASF වීඩියෝව</comment>
+ <comment xml:lang="sk">Video ASF</comment>
+ <comment xml:lang="ru">Видео ASF</comment>
+ <comment xml:lang="ro">Video ASF</comment>
+ <comment xml:lang="pt_BR">Vídeo ASF</comment>
+ <comment xml:lang="pt">vídeo ASF</comment>
+ <comment xml:lang="pl">Plik wideo ASF</comment>
+ <comment xml:lang="oc">vidèo ASF</comment>
+ <comment xml:lang="nn">ASF-video</comment>
+ <comment xml:lang="nl">ASF-video</comment>
+ <comment xml:lang="nb">ASF-film</comment>
+ <comment xml:lang="lv">ASF video</comment>
+ <comment xml:lang="lt">ASF vaizdo įrašas</comment>
+ <comment xml:lang="ko">ASF 동영상</comment>
+ <comment xml:lang="kk">ASF видеосы</comment>
+ <comment xml:lang="ka">ASF ვიდეო</comment>
+ <comment xml:lang="ja">ASF 動画</comment>
+ <comment xml:lang="it">Video ASF</comment>
+ <comment xml:lang="is">ASF myndskeið</comment>
+ <comment xml:lang="id">Video ASF</comment>
+ <comment xml:lang="ia">Video ASF</comment>
+ <comment xml:lang="hu">ASF videó</comment>
+ <comment xml:lang="hr">ASF video snimka</comment>
+ <comment xml:lang="he">וידאו ASF</comment>
+ <comment xml:lang="gl">vídeo ASF</comment>
+ <comment xml:lang="ga">físeán ASF</comment>
+ <comment xml:lang="fur">video ASF</comment>
+ <comment xml:lang="fr">vidéo ASF</comment>
+ <comment xml:lang="fo">ASF video</comment>
+ <comment xml:lang="fi">ASF-video</comment>
+ <comment xml:lang="eu">ASF bideoa</comment>
+ <comment xml:lang="es">vídeo ASF</comment>
+ <comment xml:lang="eo">ASF-video</comment>
+ <comment xml:lang="en_GB">ASF video</comment>
+ <comment xml:lang="el">Βίντεο ASF</comment>
+ <comment xml:lang="de">ASF-Video</comment>
+ <comment xml:lang="da">ASF-video</comment>
+ <comment xml:lang="cs">video ASF</comment>
+ <comment xml:lang="ca">vídeo ASF</comment>
+ <comment xml:lang="bg">Видео — ASF</comment>
+ <comment xml:lang="be@latin">Videa ASF</comment>
+ <comment xml:lang="be">відэа ASF</comment>
+ <comment xml:lang="ast">Videu n'ASF</comment>
+ <comment xml:lang="ar">فيديو ASF</comment>
+ <comment xml:lang="af">ASF-video</comment>
<acronym>ASF</acronym>
<expanded-acronym>Advanced Streaming Format</expanded-acronym>
<alias type="video/x-ms-wm"/>
<alias type="video/x-ms-asf"/>
<alias type="video/x-ms-asf-plugin"/>
<glob pattern="*.asf"/>
- <magic priority="50">
- <match value="0x3026b275" type="big32" offset="0"/>
- <match value="[Reference]" type="string" offset="0"/>
+ <magic>
+ <match type="big32" value="0x3026b275" offset="0"/>
+ <match type="string" value="[Reference]" offset="0"/>
</magic>
</mime-type>
<mime-type type="application/x-netshow-channel">
<comment>Windows Media Station file</comment>
- <comment xml:lang="ar">ملف محطة Windows Media</comment>
- <comment xml:lang="be@latin">Fajł Windows Media Station</comment>
- <comment xml:lang="bg">Файл — Windows Media Station</comment>
- <comment xml:lang="ca">fitxer de Windows Media Station</comment>
- <comment xml:lang="cs">soubor Windows Media Station</comment>
- <comment xml:lang="da">Windows Media Station-fil</comment>
- <comment xml:lang="de">Windows-Media-Streamingbeschreibung</comment>
- <comment xml:lang="el">Αρχείο Windows Media Station</comment>
- <comment xml:lang="en_GB">Windows Media Station file</comment>
- <comment xml:lang="es">archivo de emisora de Windows Media</comment>
- <comment xml:lang="eu">Windows Media Station fitxategia</comment>
- <comment xml:lang="fi">Windows Media Station-tiedosto</comment>
- <comment xml:lang="fo">Windows Media Station fíla</comment>
- <comment xml:lang="fr">fichier Windows Media Station</comment>
- <comment xml:lang="ga">comhad Windows Media Station</comment>
- <comment xml:lang="gl">ficheiro de emisora de Windows Media</comment>
- <comment xml:lang="he">קובץ תחנה של Windows Media</comment>
- <comment xml:lang="hr">Windows Media Station datoteka</comment>
- <comment xml:lang="hu">Windows Media Station fájl</comment>
- <comment xml:lang="ia">File de station Windows Media</comment>
- <comment xml:lang="id">Berkas Windows Media Station</comment>
- <comment xml:lang="it">File Windows Media Station</comment>
- <comment xml:lang="ja">Windows Media Station ファイル</comment>
- <comment xml:lang="kk">Windows Media Station файлы</comment>
- <comment xml:lang="ko">Windows Media Station 파일</comment>
- <comment xml:lang="lt">Windows Media Station failas</comment>
- <comment xml:lang="lv">Windows Media Station datne</comment>
- <comment xml:lang="nb">Windows Media Station-fil</comment>
- <comment xml:lang="nl">Windows Media Station-bestand</comment>
- <comment xml:lang="nn">Windows Media Station-fil</comment>
- <comment xml:lang="oc">fichièr Windows Media Station</comment>
- <comment xml:lang="pl">Plik Windows Media Station</comment>
- <comment xml:lang="pt">ficheiro Windows Media Station</comment>
- <comment xml:lang="pt_BR">Arquivo de estação do Windows Media</comment>
- <comment xml:lang="ro">Fișier Windows Media Station</comment>
- <comment xml:lang="ru">Файл Windows Media Station</comment>
- <comment xml:lang="sk">Súbor Windows Media Station</comment>
- <comment xml:lang="sl">Datoteka Windows Media Station</comment>
- <comment xml:lang="sq">File Windows Media Station</comment>
- <comment xml:lang="sr">датотека станице Виндоузовог Медија</comment>
- <comment xml:lang="sv">Windows Media Station-fil</comment>
- <comment xml:lang="tr">Windows Media Station dosyası</comment>
- <comment xml:lang="uk">файл Windows Media Station</comment>
- <comment xml:lang="vi">Tập tin Windows Media Station</comment>
- <comment xml:lang="zh_CN">Windows 媒体工作站文件</comment>
<comment xml:lang="zh_TW">Windows Media Station 檔</comment>
+ <comment xml:lang="zh_CN">Windows 媒体工作站文件</comment>
+ <comment xml:lang="vi">Tập tin Windows Media Station</comment>
+ <comment xml:lang="uk">файл Windows Media Station</comment>
+ <comment xml:lang="tr">Windows Media Station dosyası</comment>
+ <comment xml:lang="sv">Windows Media Station-fil</comment>
+ <comment xml:lang="sr">датотека станице Виндоузовог Медија</comment>
+ <comment xml:lang="sq">kartelë Windows Media Station</comment>
+ <comment xml:lang="sl">Datoteka Windows Media Station</comment>
+ <comment xml:lang="si">Windows Media Station ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Windows Media Station</comment>
+ <comment xml:lang="ru">Файл Windows Media Station</comment>
+ <comment xml:lang="ro">Fișier Windows Media Station</comment>
+ <comment xml:lang="pt_BR">Arquivo de estação do Windows Media</comment>
+ <comment xml:lang="pt">ficheiro Windows Media Station</comment>
+ <comment xml:lang="pl">Plik Windows Media Station</comment>
+ <comment xml:lang="oc">fichièr Windows Media Station</comment>
+ <comment xml:lang="nn">Windows Media Station-fil</comment>
+ <comment xml:lang="nl">Windows Media Station-bestand</comment>
+ <comment xml:lang="nb">Windows Media Station-fil</comment>
+ <comment xml:lang="lv">Windows Media Station datne</comment>
+ <comment xml:lang="lt">Windows Media Station failas</comment>
+ <comment xml:lang="ko">Windows Media Station 파일</comment>
+ <comment xml:lang="kk">Windows Media Station файлы</comment>
+ <comment xml:lang="ja">Windows Media Station ファイル</comment>
+ <comment xml:lang="it">File Windows Media Station</comment>
+ <comment xml:lang="is">Windows Media Station skrá</comment>
+ <comment xml:lang="id">Berkas Windows Media Station</comment>
+ <comment xml:lang="ia">File de station Windows Media</comment>
+ <comment xml:lang="hu">Windows Media Station fájl</comment>
+ <comment xml:lang="hr">Windows Media Station datoteka</comment>
+ <comment xml:lang="he">קובץ תחנה של Windows Media</comment>
+ <comment xml:lang="gl">ficheiro de emisora de Windows Media</comment>
+ <comment xml:lang="ga">comhad Windows Media Station</comment>
+ <comment xml:lang="fur">file Windows Media Station</comment>
+ <comment xml:lang="fr">fichier Windows Media Station</comment>
+ <comment xml:lang="fo">Windows Media Station fíla</comment>
+ <comment xml:lang="fi">Windows Media Station -tiedosto</comment>
+ <comment xml:lang="eu">Windows Media Station fitxategia</comment>
+ <comment xml:lang="es">archivo de emisora de Windows Media</comment>
+ <comment xml:lang="en_GB">Windows Media Station file</comment>
+ <comment xml:lang="el">Αρχείο Windows Media Station</comment>
+ <comment xml:lang="de">Windows-Media-Station-Datei</comment>
+ <comment xml:lang="da">Windows Media Station-fil</comment>
+ <comment xml:lang="cs">soubor Windows Media Station</comment>
+ <comment xml:lang="ca">fitxer de Windows Media Station</comment>
+ <comment xml:lang="bg">Файл — Windows Media Station</comment>
+ <comment xml:lang="be@latin">Fajł Windows Media Station</comment>
+ <comment xml:lang="be">файл Windows Media Station</comment>
+ <comment xml:lang="ar">ملف محطة ويندوز ميديا</comment>
+ <comment xml:lang="af">Windows Media Station-lêer</comment>
<sub-class-of type="application/vnd.ms-asf"/>
<generic-icon name="video-x-generic"/>
<glob pattern="*.nsc"/>
- <magic priority="50">
- <match value="[Address]" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="[Address]" offset="0"/>
</magic>
</mime-type>
<mime-type type="video/x-ms-wmv">
<comment>Windows Media video</comment>
- <comment xml:lang="ar">Windows Media مرئي</comment>
- <comment xml:lang="ast">Videu de Windows Media</comment>
- <comment xml:lang="be@latin">Videa Windows Media</comment>
- <comment xml:lang="bg">Видео — Windows Media</comment>
- <comment xml:lang="ca">vídeo de Windows Media</comment>
- <comment xml:lang="cs">video Windows Media</comment>
- <comment xml:lang="da">Windows Medie-video</comment>
- <comment xml:lang="de">Windows-Media-Video</comment>
- <comment xml:lang="el">Βίντεο Windows Media</comment>
- <comment xml:lang="en_GB">Windows Media video</comment>
- <comment xml:lang="es">vídeo de Windows Media</comment>
- <comment xml:lang="eu">Windows Media bideoa</comment>
- <comment xml:lang="fi">Windows Media -video</comment>
- <comment xml:lang="fo">Windows Media video</comment>
- <comment xml:lang="fr">vidéo Windows Media</comment>
- <comment xml:lang="ga">físeán Windows Media</comment>
- <comment xml:lang="gl">vídeo de Windows Media</comment>
- <comment xml:lang="he">וידאו של Windows Media</comment>
- <comment xml:lang="hr">Windows Media video snimka</comment>
- <comment xml:lang="hu">Windows Media videó</comment>
- <comment xml:lang="ia">Video Windows Media</comment>
- <comment xml:lang="id">Video Windows Media</comment>
- <comment xml:lang="it">Video Windows Media</comment>
- <comment xml:lang="ja">Windows Media 動画</comment>
- <comment xml:lang="kk">Windows Media видеосы</comment>
- <comment xml:lang="ko">Windows 미디어 오디오</comment>
- <comment xml:lang="lt">Windows Media vaizdo įrašas</comment>
- <comment xml:lang="lv">Windows Media video</comment>
- <comment xml:lang="nb">Windows Media film</comment>
- <comment xml:lang="nl">Windows Media-video</comment>
- <comment xml:lang="nn">Windows Media-video</comment>
- <comment xml:lang="oc">vidèo Windows Media</comment>
- <comment xml:lang="pl">Plik wideo Windows Media</comment>
- <comment xml:lang="pt">vídeo Windows Media</comment>
- <comment xml:lang="pt_BR">Vídeo do Windows Media</comment>
- <comment xml:lang="ro">Video Windows Media</comment>
- <comment xml:lang="ru">Видео Windows Media</comment>
- <comment xml:lang="sk">Video Windows Media</comment>
- <comment xml:lang="sl">Video datoteka Windows Media</comment>
- <comment xml:lang="sq">Video Windows Media</comment>
- <comment xml:lang="sr">Виндоуз Медија видео</comment>
- <comment xml:lang="sv">Windows Media-video</comment>
- <comment xml:lang="tr">Windows Media videosu</comment>
- <comment xml:lang="uk">відеокліп Windows Media</comment>
- <comment xml:lang="vi">Ảnh động Windows Media</comment>
- <comment xml:lang="zh_CN">Windows Media 视频</comment>
<comment xml:lang="zh_TW">Windows Media 視訊</comment>
+ <comment xml:lang="zh_CN">Windows Media 视频</comment>
+ <comment xml:lang="vi">Ảnh động Windows Media</comment>
+ <comment xml:lang="uk">відеокліп Windows Media</comment>
+ <comment xml:lang="tr">Windows Media videosu</comment>
+ <comment xml:lang="sv">Windows Media-video</comment>
+ <comment xml:lang="sr">Виндоуз Медија видео</comment>
+ <comment xml:lang="sq">video Windows Media</comment>
+ <comment xml:lang="sl">Video datoteka Windows Media</comment>
+ <comment xml:lang="si">වින්ඩෝස් මීඩියා වීඩියෝව</comment>
+ <comment xml:lang="sk">Video Windows Media</comment>
+ <comment xml:lang="ru">Видео Windows Media</comment>
+ <comment xml:lang="ro">Video Windows Media</comment>
+ <comment xml:lang="pt_BR">Vídeo do Windows Media</comment>
+ <comment xml:lang="pt">vídeo Windows Media</comment>
+ <comment xml:lang="pl">Plik wideo Windows Media</comment>
+ <comment xml:lang="oc">vidèo Windows Media</comment>
+ <comment xml:lang="nn">Windows Media-video</comment>
+ <comment xml:lang="nl">Windows Media-video</comment>
+ <comment xml:lang="nb">Windows Media film</comment>
+ <comment xml:lang="lv">Windows Media video</comment>
+ <comment xml:lang="lt">Windows Media vaizdo įrašas</comment>
+ <comment xml:lang="ko">Windows 미디어 오디오</comment>
+ <comment xml:lang="kk">Windows Media видеосы</comment>
+ <comment xml:lang="ja">Windows Media 動画</comment>
+ <comment xml:lang="it">Video Windows Media</comment>
+ <comment xml:lang="is">Windows Media myndskeið</comment>
+ <comment xml:lang="id">Video Windows Media</comment>
+ <comment xml:lang="ia">Video Windows Media</comment>
+ <comment xml:lang="hu">Windows Media videó</comment>
+ <comment xml:lang="hr">Windows Media video snimka</comment>
+ <comment xml:lang="he">וידאו של Windows Media</comment>
+ <comment xml:lang="gl">vídeo de Windows Media</comment>
+ <comment xml:lang="ga">físeán Windows Media</comment>
+ <comment xml:lang="fur">video Windows Media</comment>
+ <comment xml:lang="fr">vidéo Windows Media</comment>
+ <comment xml:lang="fo">Windows Media video</comment>
+ <comment xml:lang="fi">Windows Media -video</comment>
+ <comment xml:lang="eu">Windows Media bideoa</comment>
+ <comment xml:lang="es">vídeo de Windows Media</comment>
+ <comment xml:lang="en_GB">Windows Media video</comment>
+ <comment xml:lang="el">Βίντεο Windows Media</comment>
+ <comment xml:lang="de">Windows-Media-Video</comment>
+ <comment xml:lang="da">Windows Medie-video</comment>
+ <comment xml:lang="cs">video Windows Media</comment>
+ <comment xml:lang="ca">vídeo de Windows Media</comment>
+ <comment xml:lang="bg">Видео — Windows Media</comment>
+ <comment xml:lang="be@latin">Videa Windows Media</comment>
+ <comment xml:lang="be">відэа Windows Media</comment>
+ <comment xml:lang="ast">Videu de Windows Media</comment>
+ <comment xml:lang="ar">فيديو ويندوز ميديا</comment>
+ <comment xml:lang="af">Windows Media-video</comment>
<sub-class-of type="application/vnd.ms-asf"/>
<glob pattern="*.wmv"/>
</mime-type>
- <mime-type type="video/x-msvideo">
+ <mime-type type="video/vnd.avi">
<comment>AVI video</comment>
- <comment xml:lang="ar">AVI مرئي</comment>
- <comment xml:lang="ast">Videu n'AVI</comment>
- <comment xml:lang="az">AVI video faylı</comment>
- <comment xml:lang="be@latin">Videa AVI</comment>
- <comment xml:lang="bg">Видео — AVI</comment>
- <comment xml:lang="ca">vídeo AVI</comment>
- <comment xml:lang="cs">video AVI</comment>
- <comment xml:lang="cy">Fideo AVI</comment>
- <comment xml:lang="da">AVI-video</comment>
- <comment xml:lang="de">AVI-Video</comment>
- <comment xml:lang="el">Βίντεο AVI</comment>
- <comment xml:lang="en_GB">AVI video</comment>
- <comment xml:lang="eo">AVI-video</comment>
- <comment xml:lang="es">vídeo AVI</comment>
- <comment xml:lang="eu">AVI bideoa</comment>
- <comment xml:lang="fi">AVI-video</comment>
- <comment xml:lang="fo">AVI video</comment>
- <comment xml:lang="fr">vidéo AVI</comment>
- <comment xml:lang="ga">físeán AVI</comment>
- <comment xml:lang="gl">vídeo AVI</comment>
- <comment xml:lang="he">וידאו AVI</comment>
- <comment xml:lang="hr">AVI video snimka</comment>
- <comment xml:lang="hu">AVI-videó</comment>
- <comment xml:lang="ia">Video AVI</comment>
- <comment xml:lang="id">Video AVI</comment>
- <comment xml:lang="it">Video AVI</comment>
- <comment xml:lang="ja">AVI 動画</comment>
- <comment xml:lang="ka">AVI ვიდეო</comment>
- <comment xml:lang="kk">AVI видеосы</comment>
- <comment xml:lang="ko">AVI 동영상</comment>
- <comment xml:lang="lt">AVI vaizdo įrašas</comment>
- <comment xml:lang="lv">AVI video</comment>
- <comment xml:lang="ms">Video AVI</comment>
- <comment xml:lang="nb">AVI-film</comment>
- <comment xml:lang="nl">AVI-video</comment>
- <comment xml:lang="nn">AVI-video</comment>
- <comment xml:lang="oc">vidèo AVI</comment>
- <comment xml:lang="pl">Plik wideo AVI</comment>
- <comment xml:lang="pt">vídeo AVI</comment>
- <comment xml:lang="pt_BR">Vídeo AVI</comment>
- <comment xml:lang="ro">Video AVI</comment>
- <comment xml:lang="ru">Видео AVI</comment>
- <comment xml:lang="sk">Video AVI</comment>
- <comment xml:lang="sl">Video datoteka AVI</comment>
- <comment xml:lang="sq">Video AVI</comment>
- <comment xml:lang="sr">АВИ видео</comment>
- <comment xml:lang="sv">AVI-video</comment>
- <comment xml:lang="tr">AVI videosu</comment>
- <comment xml:lang="uk">відеокліп AVI</comment>
- <comment xml:lang="vi">Ảnh động AVI</comment>
- <comment xml:lang="zh_CN">AVI 视频</comment>
<comment xml:lang="zh_TW">AVI 視訊</comment>
+ <comment xml:lang="zh_CN">AVI 视频</comment>
+ <comment xml:lang="vi">Ảnh động AVI</comment>
+ <comment xml:lang="uk">відеокліп AVI</comment>
+ <comment xml:lang="tr">AVI videosu</comment>
+ <comment xml:lang="sv">AVI-video</comment>
+ <comment xml:lang="sr">АВИ видео</comment>
+ <comment xml:lang="sq">video AVI</comment>
+ <comment xml:lang="sl">Video datoteka AVI</comment>
+ <comment xml:lang="si">AVI වීඩියෝ</comment>
+ <comment xml:lang="sk">Video AVI</comment>
+ <comment xml:lang="ru">Видео AVI</comment>
+ <comment xml:lang="ro">Video AVI</comment>
+ <comment xml:lang="pt_BR">Vídeo AVI</comment>
+ <comment xml:lang="pt">vídeo AVI</comment>
+ <comment xml:lang="pl">Plik wideo AVI</comment>
+ <comment xml:lang="oc">vidèo AVI</comment>
+ <comment xml:lang="nn">AVI-video</comment>
+ <comment xml:lang="nl">AVI-video</comment>
+ <comment xml:lang="nb">AVI-film</comment>
+ <comment xml:lang="ms">Video AVI</comment>
+ <comment xml:lang="lv">AVI video</comment>
+ <comment xml:lang="lt">AVI vaizdo įrašas</comment>
+ <comment xml:lang="ko">AVI 동영상</comment>
+ <comment xml:lang="kk">AVI видеосы</comment>
+ <comment xml:lang="ka">AVI ვიდეო</comment>
+ <comment xml:lang="ja">AVI 動画</comment>
+ <comment xml:lang="it">Video AVI</comment>
+ <comment xml:lang="is">AVI myndskeið</comment>
+ <comment xml:lang="id">Video AVI</comment>
+ <comment xml:lang="ia">Video AVI</comment>
+ <comment xml:lang="hu">AVI-videó</comment>
+ <comment xml:lang="hr">AVI video snimka</comment>
+ <comment xml:lang="he">וידאו AVI</comment>
+ <comment xml:lang="gl">vídeo AVI</comment>
+ <comment xml:lang="ga">físeán AVI</comment>
+ <comment xml:lang="fur">video AVI</comment>
+ <comment xml:lang="fr">vidéo AVI</comment>
+ <comment xml:lang="fo">AVI video</comment>
+ <comment xml:lang="fi">AVI-video</comment>
+ <comment xml:lang="eu">AVI bideoa</comment>
+ <comment xml:lang="es">vídeo AVI</comment>
+ <comment xml:lang="eo">AVI-video</comment>
+ <comment xml:lang="en_GB">AVI video</comment>
+ <comment xml:lang="el">Βίντεο AVI</comment>
+ <comment xml:lang="de">AVI-Video</comment>
+ <comment xml:lang="da">AVI-video</comment>
+ <comment xml:lang="cy">Fideo AVI</comment>
+ <comment xml:lang="cs">video AVI</comment>
+ <comment xml:lang="ca">vídeo AVI</comment>
+ <comment xml:lang="bg">Видео — AVI</comment>
+ <comment xml:lang="be@latin">Videa AVI</comment>
+ <comment xml:lang="be">відэа AVI</comment>
+ <comment xml:lang="az">AVI video faylı</comment>
+ <comment xml:lang="ast">Videu n'AVI</comment>
+ <comment xml:lang="ar">فيديو AVI</comment>
+ <comment xml:lang="af">AVI-video</comment>
<acronym>AVI</acronym>
<expanded-acronym>Audio Video Interleave</expanded-acronym>
<alias type="video/x-avi"/>
@@ -38497,12 +41136,13 @@
<alias type="video/divx"/>
<alias type="video/msvideo"/>
<alias type="video/vnd.divx"/>
- <magic priority="50">
- <match value="RIFF" type="string" offset="0">
- <match value="AVI " type="string" offset="8"/>
+ <alias type="video/x-msvideo"/>
+ <magic>
+ <match type="string" value="RIFF" offset="0">
+ <match type="string" value="AVI " offset="8"/>
</match>
- <match value="AVF0" type="string" offset="0">
- <match value="AVI " type="string" offset="8"/>
+ <match type="string" value="AVF0" offset="0">
+ <match type="string" value="AVI " offset="8"/>
</match>
</magic>
<glob pattern="*.avi"/>
@@ -38511,275 +41151,300 @@
</mime-type>
<mime-type type="video/x-nsv">
<comment>NullSoft video</comment>
- <comment xml:lang="ar">NullSoft مرئي</comment>
- <comment xml:lang="ast">Videu de NullSoft</comment>
- <comment xml:lang="be@latin">Videa NullSoft</comment>
- <comment xml:lang="bg">Видео — NullSoft</comment>
- <comment xml:lang="ca">vídeo NullSoft</comment>
- <comment xml:lang="cs">video NullSoft</comment>
- <comment xml:lang="da">NullSoft-video</comment>
- <comment xml:lang="de">NullSoft-Video</comment>
- <comment xml:lang="el">Βίντεο Nullsoft</comment>
- <comment xml:lang="en_GB">NullSoft video</comment>
- <comment xml:lang="eo">NullSoft-video</comment>
- <comment xml:lang="es">vídeo NullSoft</comment>
- <comment xml:lang="eu">NullSoft bideoa</comment>
- <comment xml:lang="fi">NullSoft-video</comment>
- <comment xml:lang="fo">NullSoft video</comment>
- <comment xml:lang="fr">vidéo NullSoft</comment>
- <comment xml:lang="ga">físeán NullSoft</comment>
- <comment xml:lang="gl">vídeo de NullSoft</comment>
- <comment xml:lang="he">וידאו של NullSot</comment>
- <comment xml:lang="hr">NullSoft video snimka</comment>
- <comment xml:lang="hu">NullSoft videó</comment>
- <comment xml:lang="ia">Video NullSoft</comment>
- <comment xml:lang="id">Video NullSoft</comment>
- <comment xml:lang="it">Video NullSoft</comment>
- <comment xml:lang="ja">NullSoft 動画</comment>
- <comment xml:lang="kk">NullSoft видеосы</comment>
- <comment xml:lang="ko">널소프트 동영상</comment>
- <comment xml:lang="lt">NullSoft vaizdo įrašas</comment>
- <comment xml:lang="lv">NullSoft video</comment>
- <comment xml:lang="nb">Nullsoft-film</comment>
- <comment xml:lang="nl">NullSoft-video</comment>
- <comment xml:lang="nn">NullSoft-video</comment>
- <comment xml:lang="oc">vidèo NullSoft</comment>
- <comment xml:lang="pl">Plik wideo NullSoft</comment>
- <comment xml:lang="pt">vídeo NullSoft</comment>
- <comment xml:lang="pt_BR">Vídeo do NullSoft</comment>
- <comment xml:lang="ro">Video NullSoft</comment>
- <comment xml:lang="ru">Видео Nullsoft</comment>
- <comment xml:lang="sk">Video NullSoft</comment>
- <comment xml:lang="sl">Video datoteka NullSoft</comment>
- <comment xml:lang="sq">Video NullSoft</comment>
- <comment xml:lang="sr">Нул Софт видео</comment>
- <comment xml:lang="sv">NullSoft-video</comment>
- <comment xml:lang="tr">Nullsoft videosu</comment>
- <comment xml:lang="uk">відеокліп NullSoft</comment>
- <comment xml:lang="vi">Ảnh động NullSoft</comment>
- <comment xml:lang="zh_CN">NullSoft 视频</comment>
<comment xml:lang="zh_TW">NullSoft 視訊</comment>
- <magic priority="50">
- <match value="NSVf" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">NullSoft 视频</comment>
+ <comment xml:lang="vi">Ảnh động NullSoft</comment>
+ <comment xml:lang="uk">відеокліп NullSoft</comment>
+ <comment xml:lang="tr">Nullsoft videosu</comment>
+ <comment xml:lang="sv">NullSoft-video</comment>
+ <comment xml:lang="sr">Нул Софт видео</comment>
+ <comment xml:lang="sq">video NullSoft</comment>
+ <comment xml:lang="sl">Video datoteka NullSoft</comment>
+ <comment xml:lang="si">NullSoft වීඩියෝව</comment>
+ <comment xml:lang="sk">Video NullSoft</comment>
+ <comment xml:lang="ru">Видео Nullsoft</comment>
+ <comment xml:lang="ro">Video NullSoft</comment>
+ <comment xml:lang="pt_BR">Vídeo do NullSoft</comment>
+ <comment xml:lang="pt">vídeo NullSoft</comment>
+ <comment xml:lang="pl">Plik wideo NullSoft</comment>
+ <comment xml:lang="oc">vidèo NullSoft</comment>
+ <comment xml:lang="nn">NullSoft-video</comment>
+ <comment xml:lang="nl">NullSoft-video</comment>
+ <comment xml:lang="nb">Nullsoft-film</comment>
+ <comment xml:lang="lv">NullSoft video</comment>
+ <comment xml:lang="lt">NullSoft vaizdo įrašas</comment>
+ <comment xml:lang="ko">널소프트 동영상</comment>
+ <comment xml:lang="kk">NullSoft видеосы</comment>
+ <comment xml:lang="ja">NullSoft 動画</comment>
+ <comment xml:lang="it">Video NullSoft</comment>
+ <comment xml:lang="is">Nullsoft myndskeið</comment>
+ <comment xml:lang="id">Video NullSoft</comment>
+ <comment xml:lang="ia">Video NullSoft</comment>
+ <comment xml:lang="hu">NullSoft videó</comment>
+ <comment xml:lang="hr">NullSoft video snimka</comment>
+ <comment xml:lang="he">וידאו של NullSot</comment>
+ <comment xml:lang="gl">vídeo de NullSoft</comment>
+ <comment xml:lang="ga">físeán NullSoft</comment>
+ <comment xml:lang="fur">video NullSoft</comment>
+ <comment xml:lang="fr">vidéo NullSoft</comment>
+ <comment xml:lang="fo">NullSoft video</comment>
+ <comment xml:lang="fi">NullSoft-video</comment>
+ <comment xml:lang="eu">NullSoft bideoa</comment>
+ <comment xml:lang="es">vídeo NullSoft</comment>
+ <comment xml:lang="eo">NullSoft-video</comment>
+ <comment xml:lang="en_GB">NullSoft video</comment>
+ <comment xml:lang="el">Βίντεο Nullsoft</comment>
+ <comment xml:lang="de">NullSoft-Video</comment>
+ <comment xml:lang="da">NullSoft-video</comment>
+ <comment xml:lang="cs">video NullSoft</comment>
+ <comment xml:lang="ca">vídeo NullSoft</comment>
+ <comment xml:lang="bg">Видео — NullSoft</comment>
+ <comment xml:lang="be@latin">Videa NullSoft</comment>
+ <comment xml:lang="be">відэа NullSoft</comment>
+ <comment xml:lang="ast">Videu de NullSoft</comment>
+ <comment xml:lang="ar">فيديو NullSoft</comment>
+ <comment xml:lang="af">NullSoft-video</comment>
+ <magic>
+ <match type="string" value="NSVf" offset="0"/>
</magic>
<glob pattern="*.nsv"/>
</mime-type>
<mime-type type="application/sdp">
<comment>SDP multicast stream file</comment>
- <comment xml:lang="ar">ملف دفق متعدد البث SDP</comment>
- <comment xml:lang="be@latin">Šmatadrasny płynievy fajł SDP</comment>
- <comment xml:lang="bg">Файл за поток — SDP multicast</comment>
- <comment xml:lang="ca">fitxer de flux de multidifusió SDP</comment>
- <comment xml:lang="cs">soubor vícesměrového vysílání proudu SDP</comment>
- <comment xml:lang="da">SDP multicast-strømfil</comment>
- <comment xml:lang="de">SDP-Multicast-Datenstromdatei</comment>
- <comment xml:lang="el">Αρχείο ροής πολλαπλής αναμετάδοσης SDP</comment>
- <comment xml:lang="en_GB">SDP multicast stream file</comment>
- <comment xml:lang="es">archivo de flujo multicast SDP</comment>
- <comment xml:lang="eu">SDP multicast korrontearen fitxategia</comment>
- <comment xml:lang="fi">SDP-monilähetysvirran tiedosto</comment>
- <comment xml:lang="fo">SDP margvarpað streymafíla</comment>
- <comment xml:lang="fr">fichier de flux multidiffusion SDP</comment>
- <comment xml:lang="ga">comhad shruth ilchraolacháin SDP</comment>
- <comment xml:lang="gl">ficheiro de fluxo multicast SDP</comment>
- <comment xml:lang="he">קובץ שידור בזרימה SDP</comment>
- <comment xml:lang="hr">SDP datoteka strujanja emitiranja</comment>
- <comment xml:lang="hu">SDP multicast műsorfájl</comment>
- <comment xml:lang="ia">File de fluxo multidiffusion SDP</comment>
- <comment xml:lang="id">Berkas SDP multicast stream</comment>
- <comment xml:lang="it">File stream multicast SDP</comment>
- <comment xml:lang="ja">SDP マルチキャストストリームファイル</comment>
- <comment xml:lang="kk">SDP мультикаст ағым файлы</comment>
- <comment xml:lang="ko">SDP 멀티캐스트 스트림 파일</comment>
- <comment xml:lang="lt">SDP daugiaadresio srauto failas</comment>
- <comment xml:lang="lv">SDP multiraides straumes datne</comment>
- <comment xml:lang="nb">SDP-multicaststrøm</comment>
- <comment xml:lang="nl">SDP-multicast-streambestand</comment>
- <comment xml:lang="nn">SDP multicast straumfil</comment>
- <comment xml:lang="oc">fichièr de flux multidifusion SDP</comment>
- <comment xml:lang="pl">Plik strumienia multicast SDP</comment>
- <comment xml:lang="pt">ficheiro de fluxo SDP multicast</comment>
- <comment xml:lang="pt_BR">Arquivo de canal multicast SDP</comment>
- <comment xml:lang="ro">Fișier flux multicast SDP</comment>
- <comment xml:lang="ru">Файл мультикаст-потока SDP</comment>
- <comment xml:lang="sk">Súbor viacsmerového vysielania prúdu SDP</comment>
- <comment xml:lang="sl">Pretočni vir večsmernega oddajanja</comment>
- <comment xml:lang="sq">File stream multicast SDP</comment>
- <comment xml:lang="sr">СДП датотека тока вишеструког емитовања</comment>
- <comment xml:lang="sv">SDP multicast stream-fil</comment>
- <comment xml:lang="tr">SDP çoklu yayın akışı dosyası</comment>
- <comment xml:lang="uk">файл потокової трансляції SDP</comment>
- <comment xml:lang="vi">Tập tin luồng truyền một-nhiều SDP</comment>
- <comment xml:lang="zh_CN">SDP 多播流文件</comment>
<comment xml:lang="zh_TW">SDP multicast 串流檔</comment>
+ <comment xml:lang="zh_CN">SDP 多播流文件</comment>
+ <comment xml:lang="vi">Tập tin luồng truyền một-nhiều SDP</comment>
+ <comment xml:lang="uk">файл потокової трансляції SDP</comment>
+ <comment xml:lang="tr">SDP çoklu yayın akışı dosyası</comment>
+ <comment xml:lang="sv">SDP multicast stream-fil</comment>
+ <comment xml:lang="sr">СДП датотека тока вишеструког емитовања</comment>
+ <comment xml:lang="sq">kartelë transmetimi multicast SDP</comment>
+ <comment xml:lang="sl">Pretočni vir večsmernega oddajanja</comment>
+ <comment xml:lang="si">SDP බහු විකාශන ප්‍රවාහ ගොනුව</comment>
+ <comment xml:lang="sk">Súbor viacsmerového vysielania prúdu SDP</comment>
+ <comment xml:lang="ru">Файл мультикаст-потока SDP</comment>
+ <comment xml:lang="ro">Fișier flux multicast SDP</comment>
+ <comment xml:lang="pt_BR">Arquivo de canal multicast SDP</comment>
+ <comment xml:lang="pt">ficheiro de fluxo SDP multicast</comment>
+ <comment xml:lang="pl">Plik strumienia multicast SDP</comment>
+ <comment xml:lang="oc">fichièr de flux multidifusion SDP</comment>
+ <comment xml:lang="nn">SDP multicast straumfil</comment>
+ <comment xml:lang="nl">SDP-multicast-streambestand</comment>
+ <comment xml:lang="nb">SDP-multicaststrøm</comment>
+ <comment xml:lang="lv">SDP multiraides straumes datne</comment>
+ <comment xml:lang="lt">SDP daugiaadresio srauto failas</comment>
+ <comment xml:lang="ko">SDP 멀티캐스트 스트림 파일</comment>
+ <comment xml:lang="kk">SDP мультикаст ағым файлы</comment>
+ <comment xml:lang="ja">SDP マルチキャストストリームファイル</comment>
+ <comment xml:lang="it">File stream multicast SDP</comment>
+ <comment xml:lang="is">SDP multicast streymisskrá</comment>
+ <comment xml:lang="id">Berkas SDP multicast stream</comment>
+ <comment xml:lang="ia">File de fluxo multidiffusion SDP</comment>
+ <comment xml:lang="hu">SDP multicast műsorfájl</comment>
+ <comment xml:lang="hr">SDP datoteka strujanja emitiranja</comment>
+ <comment xml:lang="he">קובץ שידור בזרימה SDP</comment>
+ <comment xml:lang="gl">ficheiro de fluxo multicast SDP</comment>
+ <comment xml:lang="ga">comhad shruth ilchraolacháin SDP</comment>
+ <comment xml:lang="fur">file di flus a trasmission multiple SDP</comment>
+ <comment xml:lang="fr">fichier de flux multidiffusion SDP</comment>
+ <comment xml:lang="fo">SDP margvarpað streymafíla</comment>
+ <comment xml:lang="fi">SDP-monilähetysvirran tiedosto</comment>
+ <comment xml:lang="eu">SDP multicast korrontearen fitxategia</comment>
+ <comment xml:lang="es">archivo de flujo multicast SDP</comment>
+ <comment xml:lang="en_GB">SDP multicast stream file</comment>
+ <comment xml:lang="el">Αρχείο ροής πολλαπλής αναμετάδοσης SDP</comment>
+ <comment xml:lang="de">SDP-Multicast-Datenstromdatei</comment>
+ <comment xml:lang="da">SDP multicast-strømfil</comment>
+ <comment xml:lang="cs">soubor vícesměrového vysílání proudu SDP</comment>
+ <comment xml:lang="ca">fitxer de flux de multidifusió SDP</comment>
+ <comment xml:lang="bg">Поток — SDP multicast</comment>
+ <comment xml:lang="be@latin">Šmatadrasny płynievy fajł SDP</comment>
+ <comment xml:lang="be">файл шматадраснай плыні SDP</comment>
+ <comment xml:lang="ar">ملف دفق متعدد البث SDP</comment>
<acronym>SDP</acronym>
<expanded-acronym>Session Description Protocol</expanded-acronym>
<sub-class-of type="text/plain"/>
<alias type="application/x-sdp"/>
<alias type="application/vnd.sdp"/>
<generic-icon name="video-x-generic"/>
- <magic priority="50">
- <match value="v=" type="string" offset="0">
- <match value="s=" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="v=" offset="0">
+ <match type="string" value="s=" offset="0:256"/>
</match>
</magic>
<glob pattern="*.sdp"/>
</mime-type>
<mime-type type="video/x-sgi-movie">
<comment>SGI video</comment>
- <comment xml:lang="ar">SGI مرئي</comment>
- <comment xml:lang="ast">Videu en SGI</comment>
- <comment xml:lang="az">SGI video faylı</comment>
- <comment xml:lang="be@latin">Videa SGI</comment>
- <comment xml:lang="bg">Видео — SGI</comment>
- <comment xml:lang="ca">vídeo SGI</comment>
- <comment xml:lang="cs">video SGI</comment>
- <comment xml:lang="cy">Video SGI</comment>
- <comment xml:lang="da">SGI-video</comment>
- <comment xml:lang="de">SGI-Video</comment>
- <comment xml:lang="el">Βίντεο SGI</comment>
- <comment xml:lang="en_GB">SGI video</comment>
- <comment xml:lang="eo">SGI-video</comment>
- <comment xml:lang="es">vídeo SGI</comment>
- <comment xml:lang="eu">SGI bideoa</comment>
- <comment xml:lang="fi">SGI-video</comment>
- <comment xml:lang="fo">SGI video</comment>
- <comment xml:lang="fr">vidéo SGI</comment>
- <comment xml:lang="ga">físeán SGI</comment>
- <comment xml:lang="gl">vídeo SGI</comment>
- <comment xml:lang="he">וידאו SGI</comment>
- <comment xml:lang="hr">SGI video snimka</comment>
- <comment xml:lang="hu">SGI-videó</comment>
- <comment xml:lang="ia">Video SGI</comment>
- <comment xml:lang="id">Video SGI</comment>
- <comment xml:lang="it">Video SGI</comment>
- <comment xml:lang="ja">SGI 動画</comment>
- <comment xml:lang="kk">SGI видеосы</comment>
- <comment xml:lang="ko">SGI 동영상</comment>
- <comment xml:lang="lt">SGI vaizdo įrašas</comment>
- <comment xml:lang="lv">SGI video</comment>
- <comment xml:lang="ms">Video SGI</comment>
- <comment xml:lang="nb">SGI-film</comment>
- <comment xml:lang="nl">SGI-video</comment>
- <comment xml:lang="nn">SGI-video</comment>
- <comment xml:lang="oc">vidèo SGI</comment>
- <comment xml:lang="pl">Plik wideo SGI</comment>
- <comment xml:lang="pt">vídeo SGI</comment>
- <comment xml:lang="pt_BR">Vídeo SGI</comment>
- <comment xml:lang="ro">Video SGI</comment>
- <comment xml:lang="ru">Видео SGI</comment>
- <comment xml:lang="sk">Video SGI</comment>
- <comment xml:lang="sl">Video datoteka SGI</comment>
- <comment xml:lang="sq">Video SGI</comment>
- <comment xml:lang="sr">СГИ видео</comment>
- <comment xml:lang="sv">SGI-video</comment>
- <comment xml:lang="tr">SGI videosu</comment>
- <comment xml:lang="uk">відеокліп SGI</comment>
- <comment xml:lang="vi">Ảnh động SGI</comment>
- <comment xml:lang="zh_CN">SGI 视频</comment>
<comment xml:lang="zh_TW">SGI 視訊</comment>
- <magic priority="50">
- <match value="MOVI" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">SGI 视频</comment>
+ <comment xml:lang="vi">Ảnh động SGI</comment>
+ <comment xml:lang="uk">відеокліп SGI</comment>
+ <comment xml:lang="tr">SGI videosu</comment>
+ <comment xml:lang="sv">SGI-video</comment>
+ <comment xml:lang="sr">СГИ видео</comment>
+ <comment xml:lang="sq">video SGI</comment>
+ <comment xml:lang="sl">Video datoteka SGI</comment>
+ <comment xml:lang="si">SGI වීඩියෝව</comment>
+ <comment xml:lang="sk">Video SGI</comment>
+ <comment xml:lang="ru">Видео SGI</comment>
+ <comment xml:lang="ro">Video SGI</comment>
+ <comment xml:lang="pt_BR">Vídeo SGI</comment>
+ <comment xml:lang="pt">vídeo SGI</comment>
+ <comment xml:lang="pl">Plik wideo SGI</comment>
+ <comment xml:lang="oc">vidèo SGI</comment>
+ <comment xml:lang="nn">SGI-video</comment>
+ <comment xml:lang="nl">SGI-video</comment>
+ <comment xml:lang="nb">SGI-film</comment>
+ <comment xml:lang="ms">Video SGI</comment>
+ <comment xml:lang="lv">SGI video</comment>
+ <comment xml:lang="lt">SGI vaizdo įrašas</comment>
+ <comment xml:lang="ko">SGI 동영상</comment>
+ <comment xml:lang="kk">SGI видеосы</comment>
+ <comment xml:lang="ja">SGI 動画</comment>
+ <comment xml:lang="it">Video SGI</comment>
+ <comment xml:lang="is">SGI myndskeið</comment>
+ <comment xml:lang="id">Video SGI</comment>
+ <comment xml:lang="ia">Video SGI</comment>
+ <comment xml:lang="hu">SGI-videó</comment>
+ <comment xml:lang="hr">SGI video snimka</comment>
+ <comment xml:lang="he">וידאו SGI</comment>
+ <comment xml:lang="gl">vídeo SGI</comment>
+ <comment xml:lang="ga">físeán SGI</comment>
+ <comment xml:lang="fur">video SGI</comment>
+ <comment xml:lang="fr">vidéo SGI</comment>
+ <comment xml:lang="fo">SGI video</comment>
+ <comment xml:lang="fi">SGI-video</comment>
+ <comment xml:lang="eu">SGI bideoa</comment>
+ <comment xml:lang="es">vídeo SGI</comment>
+ <comment xml:lang="eo">SGI-video</comment>
+ <comment xml:lang="en_GB">SGI video</comment>
+ <comment xml:lang="el">Βίντεο SGI</comment>
+ <comment xml:lang="de">SGI-Video</comment>
+ <comment xml:lang="da">SGI-video</comment>
+ <comment xml:lang="cy">Video SGI</comment>
+ <comment xml:lang="cs">video SGI</comment>
+ <comment xml:lang="ca">vídeo SGI</comment>
+ <comment xml:lang="bg">Видео — SGI</comment>
+ <comment xml:lang="be@latin">Videa SGI</comment>
+ <comment xml:lang="be">відэа SGI</comment>
+ <comment xml:lang="az">SGI video faylı</comment>
+ <comment xml:lang="ast">Videu en SGI</comment>
+ <comment xml:lang="ar">فيديو SGI</comment>
+ <comment xml:lang="af">SGI-video</comment>
+ <magic>
+ <match type="string" value="MOVI" offset="0"/>
</magic>
<glob pattern="*.movie"/>
</mime-type>
<mime-type type="application/vnd.emusic-emusic_package">
<comment>eMusic download package</comment>
- <comment xml:lang="ar">حزمة تنزيل eMusic</comment>
- <comment xml:lang="be@latin">pakunak zahruzki eMusic</comment>
- <comment xml:lang="bg">Пакет за сваляне — eMusic</comment>
- <comment xml:lang="ca">paquet de descàrrega eMusic</comment>
- <comment xml:lang="cs">balíček stahování eMusic</comment>
- <comment xml:lang="da">eMusic-hentpakke</comment>
- <comment xml:lang="de">eMusic-Download-Paket</comment>
- <comment xml:lang="el">Πακέτο λήψης eMusic</comment>
- <comment xml:lang="en_GB">eMusic download package</comment>
- <comment xml:lang="es">paquete de descarga eMusic</comment>
- <comment xml:lang="eu">eMusic deskargaren paketea</comment>
- <comment xml:lang="fi">eMusic-imurointipaketti</comment>
- <comment xml:lang="fo">eMusic niðurtøkupakki</comment>
- <comment xml:lang="fr">paquet de téléchargement eMusic</comment>
- <comment xml:lang="ga">pacáiste íosluchtú eMusic</comment>
- <comment xml:lang="gl">paquete de descarga de eMusic</comment>
- <comment xml:lang="he">חבילת הורדה של eMusic</comment>
- <comment xml:lang="hr">eMusic preuzeti paket</comment>
- <comment xml:lang="hu">eMusic letöltési csomag</comment>
- <comment xml:lang="ia">Pacchetto de discargamento eMusic</comment>
- <comment xml:lang="id">paket unduh eMusic</comment>
- <comment xml:lang="it">Pacchetto scaricamento eMusic</comment>
- <comment xml:lang="ja">eMusic ダウンロードパッケージ</comment>
- <comment xml:lang="kk">eMusic жүктемелер дестесі</comment>
- <comment xml:lang="ko">eMusic 다운로드 패키지</comment>
- <comment xml:lang="lt">eMusic atsiuntimo paketas</comment>
- <comment xml:lang="lv">eMusic lejupielādes paciņa</comment>
- <comment xml:lang="nb">eMusic nedlastingspakke</comment>
- <comment xml:lang="nl">eMusic-downloadpakket</comment>
- <comment xml:lang="nn">eMusic nedlastingspakke</comment>
- <comment xml:lang="oc">paquet de telecargament eMusic</comment>
- <comment xml:lang="pl">Pobrany pakiet eMusic</comment>
- <comment xml:lang="pt">pacote transferido eMusic</comment>
- <comment xml:lang="pt_BR">Pacote de download do eMusic</comment>
- <comment xml:lang="ro">pachet descărcare eMusic</comment>
- <comment xml:lang="ru">Пакет загрузок eMusic</comment>
- <comment xml:lang="sk">Balíček sťahovania eMusic</comment>
- <comment xml:lang="sl">Datoteka paketa eMusic</comment>
- <comment xml:lang="sq">Paketë shkarkimi eMusic</comment>
- <comment xml:lang="sr">пакет преузимања еМузике</comment>
- <comment xml:lang="sv">eMusic-hämtningspaket</comment>
- <comment xml:lang="tr">eMusic indirme paketi</comment>
- <comment xml:lang="uk">пакунок завантаження eMusic</comment>
- <comment xml:lang="vi">gói nhạc tải xuống eMusic</comment>
- <comment xml:lang="zh_CN">eMusic 下载包</comment>
<comment xml:lang="zh_TW">eMusic 下載包</comment>
+ <comment xml:lang="zh_CN">eMusic 下载包</comment>
+ <comment xml:lang="vi">gói nhạc tải xuống eMusic</comment>
+ <comment xml:lang="uk">пакунок завантаження eMusic</comment>
+ <comment xml:lang="tr">eMusic indirme paketi</comment>
+ <comment xml:lang="sv">eMusic-hämtningspaket</comment>
+ <comment xml:lang="sr">пакет преузимања еМузике</comment>
+ <comment xml:lang="sq">paketë shkarkimi eMusic</comment>
+ <comment xml:lang="sl">Datoteka paketa eMusic</comment>
+ <comment xml:lang="si">eMusic බාගත කිරීමේ පැකේජය</comment>
+ <comment xml:lang="sk">Balíček sťahovania eMusic</comment>
+ <comment xml:lang="ru">Пакет загрузок eMusic</comment>
+ <comment xml:lang="ro">pachet descărcare eMusic</comment>
+ <comment xml:lang="pt_BR">Pacote de download do eMusic</comment>
+ <comment xml:lang="pt">pacote transferido eMusic</comment>
+ <comment xml:lang="pl">Pobrany pakiet eMusic</comment>
+ <comment xml:lang="oc">paquet de telecargament eMusic</comment>
+ <comment xml:lang="nn">eMusic nedlastingspakke</comment>
+ <comment xml:lang="nl">eMusic-downloadpakket</comment>
+ <comment xml:lang="nb">eMusic nedlastingspakke</comment>
+ <comment xml:lang="lv">eMusic lejupielādes paciņa</comment>
+ <comment xml:lang="lt">eMusic atsiuntimo paketas</comment>
+ <comment xml:lang="ko">eMusic 다운로드 패키지</comment>
+ <comment xml:lang="kk">eMusic жүктемелер дестесі</comment>
+ <comment xml:lang="ja">eMusic ダウンロードパッケージ</comment>
+ <comment xml:lang="it">Pacchetto scaricamento eMusic</comment>
+ <comment xml:lang="is">eMusic niðurhalspakki</comment>
+ <comment xml:lang="id">paket unduh eMusic</comment>
+ <comment xml:lang="ia">Pacchetto de discargamento eMusic</comment>
+ <comment xml:lang="hu">eMusic letöltési csomag</comment>
+ <comment xml:lang="hr">eMusic preuzeti paket</comment>
+ <comment xml:lang="he">חבילת הורדה של eMusic</comment>
+ <comment xml:lang="gl">paquete de descarga de eMusic</comment>
+ <comment xml:lang="ga">pacáiste íosluchtú eMusic</comment>
+ <comment xml:lang="fur">pachet di discjariament eMusic</comment>
+ <comment xml:lang="fr">paquet de téléchargement eMusic</comment>
+ <comment xml:lang="fo">eMusic niðurtøkupakki</comment>
+ <comment xml:lang="fi">eMusic-imurointipaketti</comment>
+ <comment xml:lang="eu">eMusic deskargaren paketea</comment>
+ <comment xml:lang="es">paquete de descarga eMusic</comment>
+ <comment xml:lang="en_GB">eMusic download package</comment>
+ <comment xml:lang="el">Πακέτο λήψης eMusic</comment>
+ <comment xml:lang="de">eMusic-Download-Paket</comment>
+ <comment xml:lang="da">eMusic-downloadpakke</comment>
+ <comment xml:lang="cs">balíček stahování eMusic</comment>
+ <comment xml:lang="ca">paquet de baixades d'eMusic</comment>
+ <comment xml:lang="bg">Пакет за сваляне — eMusic</comment>
+ <comment xml:lang="be@latin">pakunak zahruzki eMusic</comment>
+ <comment xml:lang="be">пакет спампоўвання eMusic</comment>
+ <comment xml:lang="ar">حزمة تنزيل eMusic</comment>
+ <comment xml:lang="af">eMusic-aflaaipakket</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="nF7YLao" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="nF7YLao" offset="0"/>
</magic>
<glob pattern="*.emp"/>
</mime-type>
<mime-type type="application/vnd.google-earth.kml+xml">
<comment>KML geographic data</comment>
- <comment xml:lang="ar">بيانات جغرافية KML</comment>
- <comment xml:lang="bg">Географски данни — KML</comment>
- <comment xml:lang="ca">dades geogràfiques KML</comment>
- <comment xml:lang="cs">geografická data KML</comment>
- <comment xml:lang="da">Geografiske data i KML-format</comment>
- <comment xml:lang="de">KML geographische Daten</comment>
- <comment xml:lang="el">Γεωγραφικά δεδομένα KML</comment>
- <comment xml:lang="en_GB">KML geographic data</comment>
- <comment xml:lang="es">datos geográficos KML</comment>
- <comment xml:lang="eu">KML datu geografikoak</comment>
- <comment xml:lang="fi">KML-paikkatieto</comment>
- <comment xml:lang="fo">KML landafrøðilig dáta</comment>
- <comment xml:lang="fr">données géographiques KML</comment>
- <comment xml:lang="ga">sonraí geografacha KML</comment>
- <comment xml:lang="gl">datos xeográficos KML</comment>
- <comment xml:lang="he">מידע גאוגרפי KML</comment>
- <comment xml:lang="hr">KML geografski podaci</comment>
- <comment xml:lang="hu">KML földrajzi adatok</comment>
- <comment xml:lang="ia">Datos geographic KML</comment>
- <comment xml:lang="id">Data geografis KML</comment>
- <comment xml:lang="it">Dati geografici KML</comment>
- <comment xml:lang="ja">KML 地理データ</comment>
- <comment xml:lang="kk">KML географилық ақпараты</comment>
- <comment xml:lang="ko">KML 지리 정보 데이터</comment>
- <comment xml:lang="lt">KML geografiniai duomenys</comment>
- <comment xml:lang="lv">KML ģeogrāfiskie dati</comment>
- <comment xml:lang="nl">KML geographic data</comment>
- <comment xml:lang="oc">donadas geograficas KML</comment>
- <comment xml:lang="pl">Dane geograficzne KML</comment>
- <comment xml:lang="pt">dados geográficos KML</comment>
- <comment xml:lang="pt_BR">Dados geográficos KML</comment>
- <comment xml:lang="ro">Date geografice KML</comment>
- <comment xml:lang="ru">Географические данные KML</comment>
- <comment xml:lang="sk">Zemepisné údaje KML</comment>
- <comment xml:lang="sl">Datoteka geografskih podatkov KML</comment>
- <comment xml:lang="sr">КМЛ географски подаци</comment>
- <comment xml:lang="sv">KML geografisk data</comment>
- <comment xml:lang="tr">KML coğrafi verisi</comment>
- <comment xml:lang="uk">географічні дані KML</comment>
- <comment xml:lang="zh_CN">KML 地理数据</comment>
<comment xml:lang="zh_TW">KML 地理資料</comment>
+ <comment xml:lang="zh_CN">KML 地理数据</comment>
+ <comment xml:lang="uk">географічні дані KML</comment>
+ <comment xml:lang="tr">KML coğrafi verisi</comment>
+ <comment xml:lang="sv">KML geografisk data</comment>
+ <comment xml:lang="sr">КМЛ географски подаци</comment>
+ <comment xml:lang="sq">të dhëna gjeografike KML</comment>
+ <comment xml:lang="sl">Datoteka geografskih podatkov KML</comment>
+ <comment xml:lang="si">KML භූගෝලීය දත්ත</comment>
+ <comment xml:lang="sk">Zemepisné údaje KML</comment>
+ <comment xml:lang="ru">Географические данные KML</comment>
+ <comment xml:lang="ro">Date geografice KML</comment>
+ <comment xml:lang="pt_BR">Dados geográficos KML</comment>
+ <comment xml:lang="pt">dados geográficos KML</comment>
+ <comment xml:lang="pl">Dane geograficzne KML</comment>
+ <comment xml:lang="oc">donadas geograficas KML</comment>
+ <comment xml:lang="nl">KML geografische gegevens</comment>
+ <comment xml:lang="lv">KML ģeogrāfiskie dati</comment>
+ <comment xml:lang="lt">KML geografiniai duomenys</comment>
+ <comment xml:lang="ko">KML 지리 정보 데이터</comment>
+ <comment xml:lang="kk">KML географилық ақпараты</comment>
+ <comment xml:lang="ja">KML 地理データ</comment>
+ <comment xml:lang="it">Dati geografici KML</comment>
+ <comment xml:lang="is">KML hnattstaðsetningargögn</comment>
+ <comment xml:lang="id">Data geografis KML</comment>
+ <comment xml:lang="ia">Datos geographic KML</comment>
+ <comment xml:lang="hu">KML földrajzi adatok</comment>
+ <comment xml:lang="hr">KML geografski podaci</comment>
+ <comment xml:lang="he">מידע גאוגרפי KML</comment>
+ <comment xml:lang="gl">datos xeográficos KML</comment>
+ <comment xml:lang="ga">sonraí geografacha KML</comment>
+ <comment xml:lang="fur">dâts gjeografics KML</comment>
+ <comment xml:lang="fr">données géographiques KML</comment>
+ <comment xml:lang="fo">KML landafrøðilig dáta</comment>
+ <comment xml:lang="fi">KML-paikkatieto</comment>
+ <comment xml:lang="eu">KML datu geografikoak</comment>
+ <comment xml:lang="es">datos geográficos KML</comment>
+ <comment xml:lang="en_GB">KML geographic data</comment>
+ <comment xml:lang="el">Γεωγραφικά δεδομένα KML</comment>
+ <comment xml:lang="de">KML-Geodaten</comment>
+ <comment xml:lang="da">Geografiske data i KML-format</comment>
+ <comment xml:lang="cs">geografická data KML</comment>
+ <comment xml:lang="ca">dades geogràfiques KML</comment>
+ <comment xml:lang="bg">Географски данни — KML</comment>
+ <comment xml:lang="be">геаграфічныя даныя KML</comment>
+ <comment xml:lang="ar">بيانات جغرافية KML</comment>
+ <comment xml:lang="af">KML geografiese data</comment>
<acronym>KML</acronym>
<expanded-acronym>Keyhole Markup Language</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -38788,47 +41453,53 @@
</mime-type>
<mime-type type="application/vnd.google-earth.kmz">
<comment>KML geographic compressed data</comment>
- <comment xml:lang="ar">بيانات جغرافية مضغوطة KML</comment>
- <comment xml:lang="bg">Географски данни — KML, компресирани</comment>
- <comment xml:lang="ca">dades geogràfiques KML amb compressió</comment>
- <comment xml:lang="cs">komprimovaná geografická data KML</comment>
- <comment xml:lang="da">KML-geografiske komprimerede data</comment>
- <comment xml:lang="de">KML geographische komprimierte Daten</comment>
- <comment xml:lang="el">Γεωγραφικά συμπιεσμένα δεδομένα KML</comment>
- <comment xml:lang="en_GB">KML geographic compressed data</comment>
- <comment xml:lang="es">datos geográficos comprimidos KML</comment>
- <comment xml:lang="eu">KML datu geografiko konprimituak</comment>
- <comment xml:lang="fi">Pakattu KML-paikkatieto</comment>
- <comment xml:lang="fo">KML landafrøðilig stappað dáta</comment>
- <comment xml:lang="fr">données géographiques KML compressées</comment>
- <comment xml:lang="ga">sonraí comhbhrúite geografacha KML</comment>
- <comment xml:lang="gl">datos xeográficos KML comprimidos </comment>
- <comment xml:lang="he">מידע גאוגרפי דחוס KML</comment>
- <comment xml:lang="hr">KML sažeti geografski podaci</comment>
- <comment xml:lang="hu">KML tömörített földrajzi adatok</comment>
- <comment xml:lang="ia">Datos geographic KML comprimite</comment>
- <comment xml:lang="id">Data geografis KML terkompresi</comment>
- <comment xml:lang="it">Dati geografici KML compressi</comment>
- <comment xml:lang="ja">KML 地理圧縮データ</comment>
- <comment xml:lang="kk">KML географиялық сығылған ақпарат</comment>
- <comment xml:lang="ko">KML 지리 정보 압축 데이터</comment>
- <comment xml:lang="lt">KML geografiniai suglaudinti duomenys</comment>
- <comment xml:lang="lv">KML saspiesti ģeogrāfiskie dati</comment>
- <comment xml:lang="nl">KML geographic compressed data</comment>
- <comment xml:lang="oc">donadas geograficas KML compressats</comment>
- <comment xml:lang="pl">Skompresowane dane geograficzne KML</comment>
- <comment xml:lang="pt">dados geográficos comprimidos KML</comment>
- <comment xml:lang="pt_BR">Dados geográficos KML compactados</comment>
- <comment xml:lang="ro">Date geografice comprimate KML</comment>
- <comment xml:lang="ru">Сжатые географические данные KML</comment>
- <comment xml:lang="sk">Komprimované zemepisné údaje KML</comment>
- <comment xml:lang="sl">Skrčeni geografski podatki KML</comment>
- <comment xml:lang="sr">КМЛ географски запаковани подаци</comment>
- <comment xml:lang="sv">KML geografiskt komprimerat data</comment>
- <comment xml:lang="tr">KML sıkıştırılmış coğrafi verisi</comment>
- <comment xml:lang="uk">стиснуті географічні дані KML</comment>
- <comment xml:lang="zh_CN">KML 地理压缩数据</comment>
<comment xml:lang="zh_TW">KML 地理壓縮資料</comment>
+ <comment xml:lang="zh_CN">KML 地理压缩数据</comment>
+ <comment xml:lang="uk">стиснуті географічні дані KML</comment>
+ <comment xml:lang="tr">KML sıkıştırılmış coğrafi verisi</comment>
+ <comment xml:lang="sv">KML geografiskt komprimerat data</comment>
+ <comment xml:lang="sr">КМЛ географски запаковани подаци</comment>
+ <comment xml:lang="sq">të dhëna gjeografike KML të ngjeshura</comment>
+ <comment xml:lang="sl">Skrčeni geografski podatki KML</comment>
+ <comment xml:lang="si">KML භූගෝලීය සම්පීඩිත දත්ත</comment>
+ <comment xml:lang="sk">Komprimované zemepisné údaje KML</comment>
+ <comment xml:lang="ru">Сжатые географические данные KML</comment>
+ <comment xml:lang="ro">Date geografice comprimate KML</comment>
+ <comment xml:lang="pt_BR">Dados geográficos KML compactados</comment>
+ <comment xml:lang="pt">dados geográficos comprimidos KML</comment>
+ <comment xml:lang="pl">Skompresowane dane geograficzne KML</comment>
+ <comment xml:lang="oc">donadas geograficas KML compressats</comment>
+ <comment xml:lang="nl">KML geografische gecomprimeerde gegevens</comment>
+ <comment xml:lang="lv">KML saspiesti ģeogrāfiskie dati</comment>
+ <comment xml:lang="lt">KML geografiniai suglaudinti duomenys</comment>
+ <comment xml:lang="ko">KML 지리 정보 압축 데이터</comment>
+ <comment xml:lang="kk">KML географиялық сығылған ақпарат</comment>
+ <comment xml:lang="ja">KML 地理圧縮データ</comment>
+ <comment xml:lang="it">Dati geografici KML compressi</comment>
+ <comment xml:lang="is">KML þjöppuð hnattstaðsetningargögn</comment>
+ <comment xml:lang="id">Data geografis KML terkompresi</comment>
+ <comment xml:lang="ia">Datos geographic KML comprimite</comment>
+ <comment xml:lang="hu">KML tömörített földrajzi adatok</comment>
+ <comment xml:lang="hr">KML sažeti geografski podaci</comment>
+ <comment xml:lang="he">מידע גאוגרפי דחוס KML</comment>
+ <comment xml:lang="gl">datos xeográficos KML comprimidos </comment>
+ <comment xml:lang="ga">sonraí comhbhrúite geografacha KML</comment>
+ <comment xml:lang="fur">dâts gjeografics KML comprimûts</comment>
+ <comment xml:lang="fr">données géographiques KML compressées</comment>
+ <comment xml:lang="fo">KML landafrøðilig stappað dáta</comment>
+ <comment xml:lang="fi">pakattu KML-paikkatieto</comment>
+ <comment xml:lang="eu">KML datu geografiko konprimituak</comment>
+ <comment xml:lang="es">datos geográficos comprimidos KML</comment>
+ <comment xml:lang="en_GB">KML geographic compressed data</comment>
+ <comment xml:lang="el">Γεωγραφικά συμπιεσμένα δεδομένα KML</comment>
+ <comment xml:lang="de">Komprimierte KML-Geodaten</comment>
+ <comment xml:lang="da">KML-geografiske komprimerede data</comment>
+ <comment xml:lang="cs">komprimovaná geografická data KML</comment>
+ <comment xml:lang="ca">dades geogràfiques KML amb compressió</comment>
+ <comment xml:lang="bg">Географски данни — KML, компресирани</comment>
+ <comment xml:lang="be">сціснутыя геаграфічныя даныя KML</comment>
+ <comment xml:lang="ar">بيانات جغرافية مضغوطة KML</comment>
+ <comment xml:lang="af">KML saamgepersde geografiese data</comment>
<acronym>KML</acronym>
<expanded-acronym>Keyhole Markup Language</expanded-acronym>
<sub-class-of type="application/zip"/>
@@ -38836,30 +41507,44 @@
</mime-type>
<mime-type type="application/geo+json">
<comment>GeoJSON geospatial data</comment>
- <comment xml:lang="ca">dades geomàtiques GeoJSON</comment>
- <comment xml:lang="cs">geoprostorová data GeoJSON</comment>
- <comment xml:lang="da">GEoJSON-geospatiale data</comment>
- <comment xml:lang="de">GeoJSON raumbezogene Daten</comment>
- <comment xml:lang="en_GB">GeoJSON geospatial data</comment>
- <comment xml:lang="es">datos geoespaciales en GeoJSON</comment>
- <comment xml:lang="fr">données géospatiales GeoJSON</comment>
- <comment xml:lang="ga">sonraí geospásúla GeoJSON</comment>
- <comment xml:lang="hr">GeoJSON geoprostorni podaci</comment>
- <comment xml:lang="hu">GeoJSON téradatok</comment>
- <comment xml:lang="id">Data geospasial GeoJSON</comment>
- <comment xml:lang="it">Dati geo-spaziali GeoJSON</comment>
- <comment xml:lang="kk">GeoJSON геокеңістіктік деректері</comment>
- <comment xml:lang="ko">GeoJSON 지리 정보 데이터</comment>
- <comment xml:lang="pl">Dane geoprzestrzenne GeoJSON</comment>
- <comment xml:lang="pt_BR">Dados geoespaciais GeoJSON</comment>
- <comment xml:lang="ru">Геопространственные данные GeoJSON</comment>
- <comment xml:lang="sk">Geopriestorové údaje GeoJSON</comment>
- <comment xml:lang="sr">ГеоЈСОН геопросторни подаци</comment>
- <comment xml:lang="sv">Geospatialt GeoJSON-data</comment>
- <comment xml:lang="tr">GeoJSON coğrafi veriler</comment>
- <comment xml:lang="uk">геопросторові дані GeoJSON</comment>
- <comment xml:lang="zh_CN">GeoJSON 地理空间数据</comment>
<comment xml:lang="zh_TW">GeoJSON 地理空間資料</comment>
+ <comment xml:lang="zh_CN">GeoJSON 地理空间数据</comment>
+ <comment xml:lang="uk">геопросторові дані GeoJSON</comment>
+ <comment xml:lang="tr">GeoJSON coğrafi verileri</comment>
+ <comment xml:lang="sv">Geospatialt GeoJSON-data</comment>
+ <comment xml:lang="sr">ГеоЈСОН геопросторни подаци</comment>
+ <comment xml:lang="sq">të dhëna gjeohapësinore GeoJSON</comment>
+ <comment xml:lang="si">GeoJSON භූගෝලීය දත්ත</comment>
+ <comment xml:lang="sk">Geopriestorové údaje GeoJSON</comment>
+ <comment xml:lang="ru">Геопространственные данные GeoJSON</comment>
+ <comment xml:lang="pt_BR">Dados geoespaciais GeoJSON</comment>
+ <comment xml:lang="pl">Dane geoprzestrzenne GeoJSON</comment>
+ <comment xml:lang="nl">GeoJSON geospatiële gegevens</comment>
+ <comment xml:lang="ko">GeoJSON 지리 정보 데이터</comment>
+ <comment xml:lang="kk">GeoJSON геокеңістіктік деректері</comment>
+ <comment xml:lang="ja">GeoJSON 地理空間データ</comment>
+ <comment xml:lang="it">Dati geo-spaziali GeoJSON</comment>
+ <comment xml:lang="is">GeoJSON landupplýsingagögn</comment>
+ <comment xml:lang="id">Data geospasial GeoJSON</comment>
+ <comment xml:lang="hu">GeoJSON téradatok</comment>
+ <comment xml:lang="hr">GeoJSON geoprostorni podaci</comment>
+ <comment xml:lang="he">נתונים מרחביים ב־GeoJSON</comment>
+ <comment xml:lang="gl">Datos xeoespaciais GeoJSON</comment>
+ <comment xml:lang="ga">sonraí geospásúla GeoJSON</comment>
+ <comment xml:lang="fur">dâts gjeo-spaziâls GeoJSON</comment>
+ <comment xml:lang="fr">données géospatiales GeoJSON</comment>
+ <comment xml:lang="fi">GeoJSON-paikkatieto</comment>
+ <comment xml:lang="eu">GeoJSON geomatika datua</comment>
+ <comment xml:lang="es">datos geoespaciales en GeoJSON</comment>
+ <comment xml:lang="en_GB">GeoJSON geospatial data</comment>
+ <comment xml:lang="de">GeoJSON raumbezogene Daten</comment>
+ <comment xml:lang="da">GEoJSON-geospatiale data</comment>
+ <comment xml:lang="cs">geoprostorová data GeoJSON</comment>
+ <comment xml:lang="ca">dades geomàtiques GeoJSON</comment>
+ <comment xml:lang="bg">Географски данни — GeoJSON</comment>
+ <comment xml:lang="be">геапрасторавыя даныя GeoJSON</comment>
+ <comment xml:lang="ar">بيانات جغرافية مكانية GeoJSON</comment>
+ <comment xml:lang="af">GeoJSON georuimtelike data</comment>
<sub-class-of type="application/json"/>
<glob pattern="*.geojson"/>
<glob pattern="*.geo.json"/>
@@ -38867,34 +41552,46 @@
</mime-type>
<mime-type type="application/gpx+xml">
<comment>GPX geographic data</comment>
- <comment xml:lang="ca">dades geogràfiques GPX</comment>
- <comment xml:lang="cs">geografická data GPX</comment>
- <comment xml:lang="da">GPX-geografiske data</comment>
- <comment xml:lang="de">GPX geographische Daten</comment>
- <comment xml:lang="en_GB">GPX geographic data</comment>
- <comment xml:lang="es">datos geográficos en GPX</comment>
- <comment xml:lang="eu">GPX datu geografikoak</comment>
- <comment xml:lang="fi">GPX-paikkatieto</comment>
- <comment xml:lang="fr">données géographiques GPX</comment>
- <comment xml:lang="ga">sonraí geografacha GPX</comment>
- <comment xml:lang="he">נתונים גאוגרפיים GPX</comment>
- <comment xml:lang="hr">GPX geografski podaci</comment>
- <comment xml:lang="hu">GPX földrajzi adatok</comment>
- <comment xml:lang="id">Data geografis GPX</comment>
- <comment xml:lang="it">Dati geografici GPX</comment>
- <comment xml:lang="kk">GPX географикалық деректері</comment>
- <comment xml:lang="ko">GPX 지리 공간정보 데이터</comment>
- <comment xml:lang="oc">Donadas geograficas GPX</comment>
- <comment xml:lang="pl">Dane geograficzne GPX</comment>
- <comment xml:lang="pt_BR">Dados geográficos GPX</comment>
- <comment xml:lang="ru">Географические данные GPX</comment>
- <comment xml:lang="sk">Zemepisné údaje GPX</comment>
- <comment xml:lang="sr">ГПИкс географски подаци</comment>
- <comment xml:lang="sv">GPX geografisk data</comment>
- <comment xml:lang="tr">GPX coğrafi verileri</comment>
- <comment xml:lang="uk">географічні дані GPX</comment>
- <comment xml:lang="zh_CN">GPX 地理数据</comment>
<comment xml:lang="zh_TW">GPX 地理資料</comment>
+ <comment xml:lang="zh_CN">GPX 地理数据</comment>
+ <comment xml:lang="uk">географічні дані GPX</comment>
+ <comment xml:lang="tr">GPX coğrafi verileri</comment>
+ <comment xml:lang="sv">GPX geografisk data</comment>
+ <comment xml:lang="sr">ГПИкс географски подаци</comment>
+ <comment xml:lang="sq">të dhëna gjeografike GPX</comment>
+ <comment xml:lang="sl">Zemljepisni podatki GPX</comment>
+ <comment xml:lang="si">GPX භූගෝලීය දත්ත</comment>
+ <comment xml:lang="sk">Zemepisné údaje GPX</comment>
+ <comment xml:lang="ru">Географические данные GPX</comment>
+ <comment xml:lang="pt_BR">Dados geográficos GPX</comment>
+ <comment xml:lang="pl">Dane geograficzne GPX</comment>
+ <comment xml:lang="oc">Donadas geograficas GPX</comment>
+ <comment xml:lang="nl">GPX geografische gegevens</comment>
+ <comment xml:lang="ko">GPX 지리 공간정보 데이터</comment>
+ <comment xml:lang="kk">GPX географикалық деректері</comment>
+ <comment xml:lang="ja">GPX 地理データ</comment>
+ <comment xml:lang="it">Dati geografici GPX</comment>
+ <comment xml:lang="is">GPX hnattstaðsetningargögn</comment>
+ <comment xml:lang="id">Data geografis GPX</comment>
+ <comment xml:lang="hu">GPX földrajzi adatok</comment>
+ <comment xml:lang="hr">GPX geografski podaci</comment>
+ <comment xml:lang="he">נתונים גאוגרפיים GPX</comment>
+ <comment xml:lang="gl">Datos xeográficos GPX</comment>
+ <comment xml:lang="ga">sonraí geografacha GPX</comment>
+ <comment xml:lang="fur">dâts gjeografics GPX</comment>
+ <comment xml:lang="fr">données géographiques GPX</comment>
+ <comment xml:lang="fi">GPX-paikkatieto</comment>
+ <comment xml:lang="eu">GPX datu geografikoak</comment>
+ <comment xml:lang="es">datos geográficos en GPX</comment>
+ <comment xml:lang="en_GB">GPX geographic data</comment>
+ <comment xml:lang="de">GPX geographische Daten</comment>
+ <comment xml:lang="da">GPX-geografiske data</comment>
+ <comment xml:lang="cs">geografická data GPX</comment>
+ <comment xml:lang="ca">dades geogràfiques GPX</comment>
+ <comment xml:lang="bg">Географски данни — GPX</comment>
+ <comment xml:lang="be">геаграфічныя даныя GPX</comment>
+ <comment xml:lang="ar">بيانات جغرافية GPX</comment>
+ <comment xml:lang="af">GPX geografiese data</comment>
<acronym>GPX</acronym>
<expanded-acronym>GPS Exchange Format</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -38907,53 +41604,58 @@
</mime-type>
<mime-type type="application/x-ica">
<comment>Citrix ICA settings file</comment>
- <comment xml:lang="ar">ملف إعدادات Citrix ICA</comment>
- <comment xml:lang="be@latin">Fajł naładaŭ Citrix ICA</comment>
- <comment xml:lang="bg">Настройки — Citrix ICA</comment>
- <comment xml:lang="ca">fitxer d'ajusts de Citrix ICA</comment>
- <comment xml:lang="cs">soubor nastavení Citrix ICA</comment>
- <comment xml:lang="da">Citrix ICA-opsætningsfil</comment>
- <comment xml:lang="de">Citrix-ICA-Einstellungsdatei</comment>
- <comment xml:lang="el">Αρχείο ρυθμίσεων Citrix ICA</comment>
- <comment xml:lang="en_GB">Citrix ICA settings file</comment>
- <comment xml:lang="es">archivo de configuración de Citrix ICA</comment>
- <comment xml:lang="eu">Citrix ICA ezarpenen fitxategia</comment>
- <comment xml:lang="fi">Citrix ICA -asetustiedosto</comment>
- <comment xml:lang="fo">Citrix ICA stillingarfíla</comment>
- <comment xml:lang="fr">fichier de paramètres ICA Citrix</comment>
- <comment xml:lang="ga">comhad socruithe Citrix ICA</comment>
- <comment xml:lang="gl">ficheiro de configuracións de Citrix ICA</comment>
- <comment xml:lang="he">קובץ הגדרות של Citrix ICA</comment>
- <comment xml:lang="hr">Citrix ICA datoteka postavki</comment>
- <comment xml:lang="hu">Citrix ICA beállításfájl</comment>
- <comment xml:lang="ia">File de configuration ICA Citrix</comment>
- <comment xml:lang="id">Berkas penataan Citrix ICA</comment>
- <comment xml:lang="it">File impostazioni Citrix ICA</comment>
- <comment xml:lang="ja">Citrix ICA 設定ファイル</comment>
- <comment xml:lang="ka">Citrix ICA-ის პარამეტრების ფაილი</comment>
- <comment xml:lang="kk">Citrix ICA баптаулар файлы</comment>
- <comment xml:lang="ko">시트릭스 ICA 설정 파일</comment>
- <comment xml:lang="lt">Citrix ICA parametrų failas</comment>
- <comment xml:lang="lv">Citrix ICA iestatījumu datne</comment>
- <comment xml:lang="nb">Innstillingsfil for Citrix ICA</comment>
- <comment xml:lang="nl">Citrix ICA-instellingen</comment>
- <comment xml:lang="nn">Citrix ICA-innstillingsfil</comment>
- <comment xml:lang="oc">fichièr de paramètres ICA Citrix</comment>
- <comment xml:lang="pl">Plik ustawień Citrix ICA</comment>
- <comment xml:lang="pt">ficheiro de definições Citrix ICA</comment>
- <comment xml:lang="pt_BR">Arquivo de configuração do Citrix ICA</comment>
- <comment xml:lang="ro">Fișier de configurări Citrix ICA</comment>
- <comment xml:lang="ru">Файл настроек Citrix ICA</comment>
- <comment xml:lang="sk">Súbor nastavení Citrix ICA</comment>
- <comment xml:lang="sl">Nastavitvena datoteka Citrix ICA</comment>
- <comment xml:lang="sq">File rregullimesh Citrix ICA</comment>
- <comment xml:lang="sr">датотека подешавања Цитрикс ИЦА-а</comment>
- <comment xml:lang="sv">Citrix ICA-inställningsfil</comment>
- <comment xml:lang="tr">Citrix ICA ayar dosyası</comment>
- <comment xml:lang="uk">файл параметрів ICA Citrix</comment>
- <comment xml:lang="vi">Tập tin thiết lập ICA Citrix</comment>
- <comment xml:lang="zh_CN">Citrix ICA 设置文件</comment>
<comment xml:lang="zh_TW">Citrix ICA 設定值檔案</comment>
+ <comment xml:lang="zh_CN">Citrix ICA 设置文件</comment>
+ <comment xml:lang="vi">Tập tin thiết lập ICA Citrix</comment>
+ <comment xml:lang="uk">файл параметрів ICA Citrix</comment>
+ <comment xml:lang="tr">Citrix ICA ayar dosyası</comment>
+ <comment xml:lang="sv">Citrix ICA-inställningsfil</comment>
+ <comment xml:lang="sr">датотека подешавања Цитрикс ИЦА-а</comment>
+ <comment xml:lang="sq">kartelë rregullimesh Citrix ICA</comment>
+ <comment xml:lang="sl">Nastavitvena datoteka Citrix ICA</comment>
+ <comment xml:lang="si">Citrix ICA සැකසුම් ගොනුව</comment>
+ <comment xml:lang="sk">Súbor nastavení Citrix ICA</comment>
+ <comment xml:lang="ru">Файл настроек Citrix ICA</comment>
+ <comment xml:lang="ro">Fișier de configurări Citrix ICA</comment>
+ <comment xml:lang="pt_BR">Arquivo de configuração do Citrix ICA</comment>
+ <comment xml:lang="pt">ficheiro de definições Citrix ICA</comment>
+ <comment xml:lang="pl">Plik ustawień Citrix ICA</comment>
+ <comment xml:lang="oc">fichièr de paramètres ICA Citrix</comment>
+ <comment xml:lang="nn">Citrix ICA-innstillingsfil</comment>
+ <comment xml:lang="nl">Citrix ICA-instellingen</comment>
+ <comment xml:lang="nb">Innstillingsfil for Citrix ICA</comment>
+ <comment xml:lang="lv">Citrix ICA iestatījumu datne</comment>
+ <comment xml:lang="lt">Citrix ICA parametrų failas</comment>
+ <comment xml:lang="ko">시트릭스 ICA 설정 파일</comment>
+ <comment xml:lang="kk">Citrix ICA баптаулар файлы</comment>
+ <comment xml:lang="ka">Citrix ICA-ის პარამეტრების ფაილი</comment>
+ <comment xml:lang="ja">Citrix ICA 設定ファイル</comment>
+ <comment xml:lang="it">File impostazioni Citrix ICA</comment>
+ <comment xml:lang="is">Citrix ICA stillingaskrá</comment>
+ <comment xml:lang="id">Berkas penataan Citrix ICA</comment>
+ <comment xml:lang="ia">File de configuration ICA Citrix</comment>
+ <comment xml:lang="hu">Citrix ICA beállításfájl</comment>
+ <comment xml:lang="hr">Citrix ICA datoteka postavki</comment>
+ <comment xml:lang="he">קובץ הגדרות של Citrix ICA</comment>
+ <comment xml:lang="gl">ficheiro de configuracións de Citrix ICA</comment>
+ <comment xml:lang="ga">comhad socruithe Citrix ICA</comment>
+ <comment xml:lang="fur">file impostazions Citrix ICA</comment>
+ <comment xml:lang="fr">fichier de paramètres ICA Citrix</comment>
+ <comment xml:lang="fo">Citrix ICA stillingarfíla</comment>
+ <comment xml:lang="fi">Citrix ICA -asetustiedosto</comment>
+ <comment xml:lang="eu">Citrix ICA ezarpenen fitxategia</comment>
+ <comment xml:lang="es">archivo de configuración de Citrix ICA</comment>
+ <comment xml:lang="en_GB">Citrix ICA settings file</comment>
+ <comment xml:lang="el">Αρχείο ρυθμίσεων Citrix ICA</comment>
+ <comment xml:lang="de">Citrix-ICA-Einstellungsdatei</comment>
+ <comment xml:lang="da">Citrix ICA-opsætningsfil</comment>
+ <comment xml:lang="cs">soubor nastavení Citrix ICA</comment>
+ <comment xml:lang="ca">fitxer d'ajusts de Citrix ICA</comment>
+ <comment xml:lang="bg">Настройки — Citrix ICA</comment>
+ <comment xml:lang="be@latin">Fajł naładaŭ Citrix ICA</comment>
+ <comment xml:lang="be">файл налад Citrix ICA</comment>
+ <comment xml:lang="ar">ملف إعدادات Citrix ICA</comment>
+ <comment xml:lang="af">Citrix ICA-instellingslêer</comment>
<acronym>ICA</acronym>
<expanded-acronym>Independent Computing Architecture</expanded-acronym>
<sub-class-of type="text/plain"/>
@@ -38962,53 +41664,58 @@
</mime-type>
<mime-type type="application/vnd.mozilla.xul+xml">
<comment>XUL interface document</comment>
- <comment xml:lang="ar">مستند واجهة XUL</comment>
- <comment xml:lang="ast">Documentu d'interfaz XUL</comment>
- <comment xml:lang="be@latin">Interfejsny dakument XUL</comment>
- <comment xml:lang="bg">Документ — интерфейс за XUL</comment>
- <comment xml:lang="ca">document d'interfície XUL</comment>
- <comment xml:lang="cs">dokument rozhraní XUL</comment>
- <comment xml:lang="da">XUL-grænsefladedokument</comment>
- <comment xml:lang="de">XUL-Oberflächendokument</comment>
- <comment xml:lang="el">Έγγραφο διεπαφής XUL</comment>
- <comment xml:lang="en_GB">XUL interface document</comment>
- <comment xml:lang="es">documento de interfaz XUL</comment>
- <comment xml:lang="eu">XUL interfazearen dokumentua</comment>
- <comment xml:lang="fi">XUL-käyttöliittymäasiakirja</comment>
- <comment xml:lang="fo">XUL markamótsskjal</comment>
- <comment xml:lang="fr">document d'interface XUL</comment>
- <comment xml:lang="ga">cáipéis chomhéadan XUL</comment>
- <comment xml:lang="gl">documento de interface XUL</comment>
- <comment xml:lang="he">מסמך ממשק XUL</comment>
- <comment xml:lang="hr">XUL dokument sučelja</comment>
- <comment xml:lang="hu">XUL-felületdokumentum</comment>
- <comment xml:lang="ia">Documento de interfacie XUL</comment>
- <comment xml:lang="id">Dokumen antarmuka XUL</comment>
- <comment xml:lang="it">Documento interfaccia XUL</comment>
- <comment xml:lang="ja">XUL インターフェイスドキュメント</comment>
- <comment xml:lang="kk">XUL интерфейс құжаты</comment>
- <comment xml:lang="ko">XUL 인터페이스 문서</comment>
- <comment xml:lang="lt">XUL sąsajos dokumentas</comment>
- <comment xml:lang="lv">XUL saskarnes dokuments</comment>
- <comment xml:lang="nb">XUL-grensesnittdokument</comment>
- <comment xml:lang="nl">XUL-interface-document</comment>
- <comment xml:lang="nn">XUL-grensesnitt-dokument</comment>
- <comment xml:lang="oc">document d'interfàcia XUL</comment>
- <comment xml:lang="pl">Dokument interfejsu XUL</comment>
- <comment xml:lang="pt">documento de ambiente XUL</comment>
- <comment xml:lang="pt_BR">Documento de interface XUL</comment>
- <comment xml:lang="ro">Document interfață XUL</comment>
- <comment xml:lang="ru">Документ интерфейса XUL</comment>
- <comment xml:lang="sk">Dokument rozhrania XUL</comment>
- <comment xml:lang="sl">Dokument vmesnika XUL</comment>
- <comment xml:lang="sq">Dokument interfaqe XUL</comment>
- <comment xml:lang="sr">документ ИксУЛ сучеља</comment>
- <comment xml:lang="sv">XUL-gränssnittsdokument</comment>
- <comment xml:lang="tr">XUL arayüz belgesi</comment>
- <comment xml:lang="uk">документ інтерфейсу XUL</comment>
- <comment xml:lang="vi">Tài liệu giao diện XUL</comment>
- <comment xml:lang="zh_CN">XUL 界面文档</comment>
<comment xml:lang="zh_TW">XUL 介面文件</comment>
+ <comment xml:lang="zh_CN">XUL 界面文档</comment>
+ <comment xml:lang="vi">Tài liệu giao diện XUL</comment>
+ <comment xml:lang="uk">документ інтерфейсу XUL</comment>
+ <comment xml:lang="tr">XUL arayüz belgesi</comment>
+ <comment xml:lang="sv">XUL-gränssnittsdokument</comment>
+ <comment xml:lang="sr">документ ИксУЛ сучеља</comment>
+ <comment xml:lang="sq">dokument ndërfaqeje XUL</comment>
+ <comment xml:lang="sl">Dokument vmesnika XUL</comment>
+ <comment xml:lang="si">XUL අතුරුමුහුණත් ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument rozhrania XUL</comment>
+ <comment xml:lang="ru">Документ интерфейса XUL</comment>
+ <comment xml:lang="ro">Document interfață XUL</comment>
+ <comment xml:lang="pt_BR">Documento de interface XUL</comment>
+ <comment xml:lang="pt">documento de ambiente XUL</comment>
+ <comment xml:lang="pl">Dokument interfejsu XUL</comment>
+ <comment xml:lang="oc">document d'interfàcia XUL</comment>
+ <comment xml:lang="nn">XUL-grensesnitt-dokument</comment>
+ <comment xml:lang="nl">XUL-interface-document</comment>
+ <comment xml:lang="nb">XUL-grensesnittdokument</comment>
+ <comment xml:lang="lv">XUL saskarnes dokuments</comment>
+ <comment xml:lang="lt">XUL sąsajos dokumentas</comment>
+ <comment xml:lang="ko">XUL 인터페이스 문서</comment>
+ <comment xml:lang="kk">XUL интерфейс құжаты</comment>
+ <comment xml:lang="ja">XUL インターフェイスドキュメント</comment>
+ <comment xml:lang="it">Documento interfaccia XUL</comment>
+ <comment xml:lang="is">XUL viðmótsskjal</comment>
+ <comment xml:lang="id">Dokumen antarmuka XUL</comment>
+ <comment xml:lang="ia">Documento de interfacie XUL</comment>
+ <comment xml:lang="hu">XUL-felületdokumentum</comment>
+ <comment xml:lang="hr">XUL dokument sučelja</comment>
+ <comment xml:lang="he">מסמך ממשק XUL</comment>
+ <comment xml:lang="gl">documento de interface XUL</comment>
+ <comment xml:lang="ga">cáipéis chomhéadan XUL</comment>
+ <comment xml:lang="fur">document di interface XUL</comment>
+ <comment xml:lang="fr">document d'interface XUL</comment>
+ <comment xml:lang="fo">XUL markamótsskjal</comment>
+ <comment xml:lang="fi">XUL-käyttöliittymäasiakirja</comment>
+ <comment xml:lang="eu">XUL interfazearen dokumentua</comment>
+ <comment xml:lang="es">documento de interfaz XUL</comment>
+ <comment xml:lang="en_GB">XUL interface document</comment>
+ <comment xml:lang="el">Έγγραφο διεπαφής XUL</comment>
+ <comment xml:lang="de">XUL-Benutzeroberflächendokument</comment>
+ <comment xml:lang="da">XUL-grænsefladedokument</comment>
+ <comment xml:lang="cs">dokument rozhraní XUL</comment>
+ <comment xml:lang="ca">document d'interfície XUL</comment>
+ <comment xml:lang="bg">Документ — интерфейс, XUL</comment>
+ <comment xml:lang="be@latin">Interfejsny dakument XUL</comment>
+ <comment xml:lang="be">дакумент інтэрфейсу XUL</comment>
+ <comment xml:lang="ast">Documentu d'interfaz XUL</comment>
+ <comment xml:lang="ar">مستند واجهة XUL</comment>
+ <comment xml:lang="af">XUL-koppelvlakdokument</comment>
<acronym>XUL</acronym>
<expanded-acronym>XML User interface markup Language</expanded-acronym>
<sub-class-of type="application/xml"/>
@@ -39018,631 +41725,711 @@
</mime-type>
<mime-type type="application/x-xpinstall">
<comment>XPInstall installer module</comment>
- <comment xml:lang="ar">وحدة مثبت XPInstall </comment>
- <comment xml:lang="bg">Пакет — инсталация XPInstall</comment>
- <comment xml:lang="ca">mòdul de l'instal·lador XPinstall</comment>
- <comment xml:lang="cs">modul instalátoru XPInstall</comment>
- <comment xml:lang="da">XPInstall-installationsmodul</comment>
- <comment xml:lang="de">XPInstall-Installationsmodul</comment>
- <comment xml:lang="el">Άρθρωμα εγκατάστασης XPInstall</comment>
- <comment xml:lang="en_GB">XPInstall installer module</comment>
- <comment xml:lang="es">módulo del instalador XPInstall</comment>
- <comment xml:lang="eu">XPInstall instalatzailearen modulua</comment>
- <comment xml:lang="fi">XPInstall-asennuspaketti</comment>
- <comment xml:lang="fo">XPInstall innleggjaramótul</comment>
- <comment xml:lang="fr">module d'installation XPInstall</comment>
- <comment xml:lang="ga">modúl suiteála XPInstall</comment>
- <comment xml:lang="gl">Módulo do instalador XPInstall</comment>
- <comment xml:lang="he">מודול התקנה של XPInstall</comment>
- <comment xml:lang="hr">XPInstall instalacijski modul</comment>
- <comment xml:lang="hu">XPInstall telepítőmodul</comment>
- <comment xml:lang="ia">Modulo de installation XPInstall</comment>
- <comment xml:lang="id">Modul installer XPInstall</comment>
- <comment xml:lang="it">Modulo installatore XPInstall</comment>
- <comment xml:lang="ja">XPInstall インストーラモジュール</comment>
- <comment xml:lang="kk">XPInstall орнату модулі</comment>
- <comment xml:lang="ko">XPInstall 설치 프로그램 모듈</comment>
- <comment xml:lang="lt">XPInstall įdiegiklio modulis</comment>
- <comment xml:lang="lv">XPInstall instalatora modulis</comment>
- <comment xml:lang="nl">XPInstall installeer module</comment>
- <comment xml:lang="oc">modul d'installacion XPInstall</comment>
- <comment xml:lang="pl">Moduł instalatora XPInstall</comment>
- <comment xml:lang="pt">módulo de instalador XPInstall</comment>
- <comment xml:lang="pt_BR">Módulo de instalador XPInstall</comment>
- <comment xml:lang="ro">Modul de instalare XPInstall</comment>
- <comment xml:lang="ru">Модуль установщика XPInstall</comment>
- <comment xml:lang="sk">Modul inštalátora XPInstall</comment>
- <comment xml:lang="sl">modul namestilnika XPInstall</comment>
- <comment xml:lang="sr">модул инсталатера Инсталирања ИксПе-а</comment>
- <comment xml:lang="sv">XPInstall-installeringsmodul</comment>
- <comment xml:lang="tr">XPInstall kurulum modülü</comment>
- <comment xml:lang="uk">модуль засобу встановлення XPInstall</comment>
- <comment xml:lang="zh_CN">XPInstall 安装工具模块</comment>
<comment xml:lang="zh_TW">XPInstall 安裝程式模組</comment>
+ <comment xml:lang="zh_CN">XPInstall 安装工具模块</comment>
+ <comment xml:lang="uk">модуль засобу встановлення XPInstall</comment>
+ <comment xml:lang="tr">XPInstall kurulum modülü</comment>
+ <comment xml:lang="sv">XPInstall-installeringsmodul</comment>
+ <comment xml:lang="sr">модул инсталатера Инсталирања ИксПе-а</comment>
+ <comment xml:lang="sq">modul instaluesi XPInstall</comment>
+ <comment xml:lang="sl">modul namestilnika XPInstall</comment>
+ <comment xml:lang="si">XPI ස්ථාපක මොඩියුලය ස්ථාපනය කරන්න</comment>
+ <comment xml:lang="sk">Modul inštalátora XPInstall</comment>
+ <comment xml:lang="ru">Модуль установщика XPInstall</comment>
+ <comment xml:lang="ro">Modul de instalare XPInstall</comment>
+ <comment xml:lang="pt_BR">Módulo de instalador XPInstall</comment>
+ <comment xml:lang="pt">módulo de instalador XPInstall</comment>
+ <comment xml:lang="pl">Moduł instalatora XPInstall</comment>
+ <comment xml:lang="oc">modul d'installacion XPInstall</comment>
+ <comment xml:lang="nl">XPInstall installeer module</comment>
+ <comment xml:lang="lv">XPInstall instalatora modulis</comment>
+ <comment xml:lang="lt">XPInstall įdiegiklio modulis</comment>
+ <comment xml:lang="ko">XPInstall 설치 프로그램 모듈</comment>
+ <comment xml:lang="kk">XPInstall орнату модулі</comment>
+ <comment xml:lang="ja">XPInstall インストーラモジュール</comment>
+ <comment xml:lang="it">Modulo installatore XPInstall</comment>
+ <comment xml:lang="is">XPInstall uppsetningareining</comment>
+ <comment xml:lang="id">Modul installer XPInstall</comment>
+ <comment xml:lang="ia">Modulo de installation XPInstall</comment>
+ <comment xml:lang="hu">XPInstall telepítőmodul</comment>
+ <comment xml:lang="hr">XPInstall instalacijski modul</comment>
+ <comment xml:lang="he">מודול התקנה של XPInstall</comment>
+ <comment xml:lang="gl">Módulo do instalador XPInstall</comment>
+ <comment xml:lang="ga">modúl suiteála XPInstall</comment>
+ <comment xml:lang="fur">modul instaladôr XPInstall</comment>
+ <comment xml:lang="fr">module d'installation XPInstall</comment>
+ <comment xml:lang="fo">XPInstall innleggjaramótul</comment>
+ <comment xml:lang="fi">XPInstall-asennuspaketti</comment>
+ <comment xml:lang="eu">XPInstall instalatzailearen modulua</comment>
+ <comment xml:lang="es">módulo del instalador XPInstall</comment>
+ <comment xml:lang="en_GB">XPInstall installer module</comment>
+ <comment xml:lang="el">Άρθρωμα εγκατάστασης XPInstall</comment>
+ <comment xml:lang="de">XPInstall-Installationsmodul</comment>
+ <comment xml:lang="da">XPInstall-installationsmodul</comment>
+ <comment xml:lang="cs">modul instalátoru XPInstall</comment>
+ <comment xml:lang="ca">mòdul de l'instal·lador XPinstall</comment>
+ <comment xml:lang="bg">Пакет — инсталация XPInstall</comment>
+ <comment xml:lang="be">модуль усталёўшчыка XPInstall</comment>
+ <comment xml:lang="ar">وحدة مثبت XPInstall</comment>
+ <comment xml:lang="af">XPInstall-installasiemodule</comment>
<sub-class-of type="application/zip"/>
<glob pattern="*.xpi"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.wordprocessingml.document">
<comment>Word 2007 document</comment>
- <comment xml:lang="ar">مستند Word 2007</comment>
- <comment xml:lang="ast">Documentu de Word 2007</comment>
- <comment xml:lang="bg">Документ — Word 2007</comment>
- <comment xml:lang="ca">document de Word 2007</comment>
- <comment xml:lang="cs">dokument Word 2007</comment>
- <comment xml:lang="da">Word 2007-dokument</comment>
- <comment xml:lang="de">Word-2007-Dokument</comment>
- <comment xml:lang="el">Έγγραφο Word 2007</comment>
- <comment xml:lang="en_GB">Word 2007 document</comment>
- <comment xml:lang="es">documento de Word 2007</comment>
- <comment xml:lang="eu">Word 2007 dokumentua</comment>
- <comment xml:lang="fi">Word 2007 -asiakirja</comment>
- <comment xml:lang="fo">Word 2007 skjal</comment>
- <comment xml:lang="fr">document Word 2007</comment>
- <comment xml:lang="ga">cáipéis Word 2007</comment>
- <comment xml:lang="gl">documento de Word 2007</comment>
- <comment xml:lang="he">מסמך Word 2007</comment>
- <comment xml:lang="hr">Word 2007 dokument</comment>
- <comment xml:lang="hu">Word 2007 dokumentum</comment>
- <comment xml:lang="ia">Documento Word 2007</comment>
- <comment xml:lang="id">Dokumen Word 2007</comment>
- <comment xml:lang="it">Documento Word 2007</comment>
- <comment xml:lang="ja">Word 2007 ドキュメント</comment>
- <comment xml:lang="kk">Word 2007 құжаты</comment>
- <comment xml:lang="ko">Word 2007 문서</comment>
- <comment xml:lang="lt">Word 2007 dokumentas</comment>
- <comment xml:lang="lv">Word 2007 dokuments</comment>
- <comment xml:lang="nl">Word 2007-document</comment>
- <comment xml:lang="oc">document Word 2007</comment>
- <comment xml:lang="pl">Dokument Word 2007</comment>
- <comment xml:lang="pt">documento Word 2007</comment>
- <comment xml:lang="pt_BR">Documento do Word 2007</comment>
- <comment xml:lang="ro">Document Word 2007</comment>
- <comment xml:lang="ru">Документ Word 2007</comment>
- <comment xml:lang="sk">Dokument Word 2007</comment>
- <comment xml:lang="sl">Dokument Word 2007</comment>
- <comment xml:lang="sr">документ Ворда 2007</comment>
- <comment xml:lang="sv">Word 2007-dokument</comment>
- <comment xml:lang="tr">Word 2007 belgesi</comment>
- <comment xml:lang="uk">документ Word 2007</comment>
- <comment xml:lang="vi">Tài liệu Word 2007</comment>
- <comment xml:lang="zh_CN">Word 2007 文档</comment>
<comment xml:lang="zh_TW">Word 2007 文件</comment>
+ <comment xml:lang="zh_CN">Word 2007 文档</comment>
+ <comment xml:lang="vi">Tài liệu Word 2007</comment>
+ <comment xml:lang="uk">документ Word 2007</comment>
+ <comment xml:lang="tr">Word 2007 belgesi</comment>
+ <comment xml:lang="sv">Word 2007-dokument</comment>
+ <comment xml:lang="sr">документ Ворда 2007</comment>
+ <comment xml:lang="sq">dokument Word 2007</comment>
+ <comment xml:lang="sl">Dokument Word 2007</comment>
+ <comment xml:lang="si">Word 2007 ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Word 2007</comment>
+ <comment xml:lang="ru">Документ Word 2007</comment>
+ <comment xml:lang="ro">Document Word 2007</comment>
+ <comment xml:lang="pt_BR">Documento do Word 2007</comment>
+ <comment xml:lang="pt">documento Word 2007</comment>
+ <comment xml:lang="pl">Dokument Word 2007</comment>
+ <comment xml:lang="oc">document Word 2007</comment>
+ <comment xml:lang="nl">Word 2007-document</comment>
+ <comment xml:lang="lv">Word 2007 dokuments</comment>
+ <comment xml:lang="lt">Word 2007 dokumentas</comment>
+ <comment xml:lang="ko">Word 2007 문서</comment>
+ <comment xml:lang="kk">Word 2007 құжаты</comment>
+ <comment xml:lang="ja">Word 2007 ドキュメント</comment>
+ <comment xml:lang="it">Documento Word 2007</comment>
+ <comment xml:lang="is">Word 2007 skjal</comment>
+ <comment xml:lang="id">Dokumen Word 2007</comment>
+ <comment xml:lang="ia">Documento Word 2007</comment>
+ <comment xml:lang="hu">Word 2007 dokumentum</comment>
+ <comment xml:lang="hr">Word 2007 dokument</comment>
+ <comment xml:lang="he">מסמך Word 2007</comment>
+ <comment xml:lang="gl">documento de Word 2007</comment>
+ <comment xml:lang="ga">cáipéis Word 2007</comment>
+ <comment xml:lang="fur">document Word 2007</comment>
+ <comment xml:lang="fr">document Word 2007</comment>
+ <comment xml:lang="fo">Word 2007 skjal</comment>
+ <comment xml:lang="fi">Word 2007 -asiakirja</comment>
+ <comment xml:lang="eu">Word 2007 dokumentua</comment>
+ <comment xml:lang="es">documento de Word 2007</comment>
+ <comment xml:lang="en_GB">Word 2007 document</comment>
+ <comment xml:lang="el">Έγγραφο Word 2007</comment>
+ <comment xml:lang="de">Word-2007-Dokument</comment>
+ <comment xml:lang="da">Word 2007-dokument</comment>
+ <comment xml:lang="cs">dokument Word 2007</comment>
+ <comment xml:lang="ca">document de Word 2007</comment>
+ <comment xml:lang="bg">Документ — Word 2007</comment>
+ <comment xml:lang="be">дакумент Word 2007</comment>
+ <comment xml:lang="ast">Documentu de Word 2007</comment>
+ <comment xml:lang="ar">مستند ورد 2007</comment>
+ <comment xml:lang="af">Word 2007-dokument</comment>
<glob pattern="*.docx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.wordprocessingml.template">
<comment>Word 2007 document template</comment>
- <comment xml:lang="ast">Plantía de documentu de Word 2007</comment>
- <comment xml:lang="bg">Шаблон за документи — Word 2007</comment>
- <comment xml:lang="ca">plantilla de document de Word 2007</comment>
- <comment xml:lang="cs">šablona dokumentu Word 2007</comment>
- <comment xml:lang="da">Word 2007-dokumentskabelon</comment>
- <comment xml:lang="de">Word-2007-Dokumentvorlage</comment>
- <comment xml:lang="el">Πρότυπο έγγραφο Word 2007</comment>
- <comment xml:lang="en_GB">Word 2007 document template</comment>
- <comment xml:lang="es">plantilla de documento de Word 2007</comment>
- <comment xml:lang="eu">Word 2007 dokumentuaren txantiloia</comment>
- <comment xml:lang="fi">Word 2007 -asiakirjamalli</comment>
- <comment xml:lang="fr">modèle de document Word 2007</comment>
- <comment xml:lang="ga">teimpléad cháipéis Word 2007</comment>
- <comment xml:lang="gl">Plantilla de documento de Word 2007</comment>
- <comment xml:lang="he">תבנית מסמך של Word 2007</comment>
- <comment xml:lang="hr">Word 2007 predložak dokumenta</comment>
- <comment xml:lang="hu">Word 2007 dokumentumsablon</comment>
- <comment xml:lang="ia">Patrono de documento Word 2007</comment>
- <comment xml:lang="id">Templat dokumen Word 2007</comment>
- <comment xml:lang="it">Modello documento Word 2007</comment>
- <comment xml:lang="ja">Word 2007 文書テンプレート</comment>
- <comment xml:lang="ka">Word 2007-ის დოკუმენტის შაბლონი</comment>
- <comment xml:lang="kk">Word 2007 құжатының үлгісі</comment>
- <comment xml:lang="ko">Word 2007 문서 서식</comment>
- <comment xml:lang="lv">Word 2007 dokumenta veidne</comment>
- <comment xml:lang="nl">Word 2007 document sjabloon</comment>
- <comment xml:lang="oc">modèl de document Word 2007</comment>
- <comment xml:lang="pl">Szablon dokumentu Word 2007</comment>
- <comment xml:lang="pt">modelo de documento Word 2007</comment>
- <comment xml:lang="pt_BR">Modelo de documento do Word 2007</comment>
- <comment xml:lang="ru">Шаблон документа Word 2007</comment>
- <comment xml:lang="sk">Šablóna dokumentu Word 2007</comment>
- <comment xml:lang="sl">Predloga dokumenta Word 2007</comment>
- <comment xml:lang="sr">шаблон документа Ворда 2007</comment>
- <comment xml:lang="sv">Word 2007-dokumentmall</comment>
- <comment xml:lang="tr">Word 2007 belge şablonu</comment>
- <comment xml:lang="uk">шаблон документа Word 2007</comment>
- <comment xml:lang="zh_CN">Word 2007 文档模板</comment>
<comment xml:lang="zh_TW">Word 2007 文件範本</comment>
+ <comment xml:lang="zh_CN">Word 2007 文档模板</comment>
+ <comment xml:lang="uk">шаблон документа Word 2007</comment>
+ <comment xml:lang="tr">Word 2007 belge şablonu</comment>
+ <comment xml:lang="sv">Word 2007-dokumentmall</comment>
+ <comment xml:lang="sr">шаблон документа Ворда 2007</comment>
+ <comment xml:lang="sq">gjedhe dokumentesh Word 2007</comment>
+ <comment xml:lang="sl">Predloga dokumenta Word 2007</comment>
+ <comment xml:lang="si">Word 2007 ලේඛන සැකිල්ල</comment>
+ <comment xml:lang="sk">Šablóna dokumentu Word 2007</comment>
+ <comment xml:lang="ru">Шаблон документа Word 2007</comment>
+ <comment xml:lang="pt_BR">Modelo de documento do Word 2007</comment>
+ <comment xml:lang="pt">modelo de documento Word 2007</comment>
+ <comment xml:lang="pl">Szablon dokumentu Word 2007</comment>
+ <comment xml:lang="oc">modèl de document Word 2007</comment>
+ <comment xml:lang="nl">Word 2007-documentsjabloon</comment>
+ <comment xml:lang="lv">Word 2007 dokumenta veidne</comment>
+ <comment xml:lang="ko">Word 2007 문서 서식</comment>
+ <comment xml:lang="kk">Word 2007 құжатының үлгісі</comment>
+ <comment xml:lang="ka">Word 2007-ის დოკუმენტის შაბლონი</comment>
+ <comment xml:lang="ja">Word 2007 ドキュメントテンプレート</comment>
+ <comment xml:lang="it">Modello documento Word 2007</comment>
+ <comment xml:lang="is">Word sniðmát fyrir textaskjal</comment>
+ <comment xml:lang="id">Templat dokumen Word 2007</comment>
+ <comment xml:lang="ia">Patrono de documento Word 2007</comment>
+ <comment xml:lang="hu">Word 2007 dokumentumsablon</comment>
+ <comment xml:lang="hr">Word 2007 predložak dokumenta</comment>
+ <comment xml:lang="he">תבנית מסמך של Word 2007</comment>
+ <comment xml:lang="gl">Plantilla de documento de Word 2007</comment>
+ <comment xml:lang="ga">teimpléad cháipéis Word 2007</comment>
+ <comment xml:lang="fur">model document Word 2007</comment>
+ <comment xml:lang="fr">modèle de document Word 2007</comment>
+ <comment xml:lang="fi">Word 2007 -asiakirjamalli</comment>
+ <comment xml:lang="eu">Word 2007 dokumentuaren txantiloia</comment>
+ <comment xml:lang="es">plantilla de documento de Word 2007</comment>
+ <comment xml:lang="en_GB">Word 2007 document template</comment>
+ <comment xml:lang="el">Πρότυπο έγγραφο Word 2007</comment>
+ <comment xml:lang="de">Word-2007-Dokumentvorlage</comment>
+ <comment xml:lang="da">Word 2007-dokumentskabelon</comment>
+ <comment xml:lang="cs">šablona dokumentu Word 2007</comment>
+ <comment xml:lang="ca">plantilla de document de Word 2007</comment>
+ <comment xml:lang="bg">Шаблон за документи — Word 2007</comment>
+ <comment xml:lang="be">шаблон дакумента Word 2007</comment>
+ <comment xml:lang="ast">Plantía de documentu de Word 2007</comment>
+ <comment xml:lang="ar">قالب مستند ورد 2007</comment>
+ <comment xml:lang="af">Word 2007-dokumentsjabloon</comment>
<glob pattern="*.dotx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-document"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.presentationml.presentation">
<comment>PowerPoint 2007 presentation</comment>
- <comment xml:lang="ar">عرض تقديمي PowerPoint 2007</comment>
- <comment xml:lang="bg">Презентация — PowerPoint 2007</comment>
- <comment xml:lang="ca">presentació de PowerPoint 2007</comment>
- <comment xml:lang="cs">prezentace PowerPoint 2007</comment>
- <comment xml:lang="da">PowerPoint 2007-præsentation</comment>
- <comment xml:lang="de">PowerPoint-2007-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση PowerPoint 2007</comment>
- <comment xml:lang="en_GB">PowerPoint 2007 presentation</comment>
- <comment xml:lang="es">presentación de PowerPoint 2007</comment>
- <comment xml:lang="eu">PowerPoint 2007 aurkezpena</comment>
- <comment xml:lang="fi">PowerPoint 2007 -esitys</comment>
- <comment xml:lang="fo">PowerPoint 2007 framløga</comment>
- <comment xml:lang="fr">présentation PowerPoint 2007</comment>
- <comment xml:lang="ga">láithreoireacht PowerPoint 2007</comment>
- <comment xml:lang="gl">presentación de PowerPoint 2007</comment>
- <comment xml:lang="he">מצגת של PowerPoint 2007</comment>
- <comment xml:lang="hr">PowerPoint 2007 prezentacija</comment>
- <comment xml:lang="hu">PowerPoint 2007 prezentáció</comment>
- <comment xml:lang="ia">Presentation PowerPoint 2007</comment>
- <comment xml:lang="id">Presentasi PowerPoint 2007</comment>
- <comment xml:lang="it">Presentazione standard PowerPoint 2007</comment>
- <comment xml:lang="ja">PowerPoint 2007 プレゼンテーション</comment>
- <comment xml:lang="kk">PowerPoint 2007 презентациясы</comment>
- <comment xml:lang="ko">PowerPoint 2007 프레젠테이션</comment>
- <comment xml:lang="lt">PowerPoint 2007 pateiktis</comment>
- <comment xml:lang="lv">PowerPoint 2007 prezentācija</comment>
- <comment xml:lang="nl">PowerPoint 2007-presentatie</comment>
- <comment xml:lang="oc">presentacion PowerPoint 2007</comment>
- <comment xml:lang="pl">Prezentacja PowerPoint 2007</comment>
- <comment xml:lang="pt">apresentação PowerPoint 2007</comment>
- <comment xml:lang="pt_BR">Apresentação do PowerPoint 2007</comment>
- <comment xml:lang="ro">Prezentare PowerPoint 2007</comment>
- <comment xml:lang="ru">Презентация PowerPoint 2007</comment>
- <comment xml:lang="sk">Prezentácia PowerPoint 2007</comment>
- <comment xml:lang="sl">Predstavitev Microsoft PowerPoint 2007</comment>
- <comment xml:lang="sr">презентација Пауер Поинта 2007</comment>
- <comment xml:lang="sv">PowerPoint 2007-presentation</comment>
- <comment xml:lang="tr">PowerPoint 2007 sunumu</comment>
- <comment xml:lang="uk">презентація PowerPoint 2007</comment>
- <comment xml:lang="vi">Trình diễn PowerPoint 2007</comment>
- <comment xml:lang="zh_CN">PowerPoint 2007 演示文稿</comment>
<comment xml:lang="zh_TW">PowerPoint 2007 簡報</comment>
+ <comment xml:lang="zh_CN">PowerPoint 2007 演示文稿</comment>
+ <comment xml:lang="vi">Trình diễn PowerPoint 2007</comment>
+ <comment xml:lang="uk">презентація PowerPoint 2007</comment>
+ <comment xml:lang="tr">PowerPoint 2007 sunumu</comment>
+ <comment xml:lang="sv">PowerPoint 2007-presentation</comment>
+ <comment xml:lang="sr">презентација Пауер Поинта 2007</comment>
+ <comment xml:lang="sq">paraqitje PowerPoint 2007</comment>
+ <comment xml:lang="sl">Predstavitev Microsoft PowerPoint 2007</comment>
+ <comment xml:lang="si">PowerPoint 2007 ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia PowerPoint 2007</comment>
+ <comment xml:lang="ru">Презентация PowerPoint 2007</comment>
+ <comment xml:lang="ro">Prezentare PowerPoint 2007</comment>
+ <comment xml:lang="pt_BR">Apresentação do PowerPoint 2007</comment>
+ <comment xml:lang="pt">apresentação PowerPoint 2007</comment>
+ <comment xml:lang="pl">Prezentacja PowerPoint 2007</comment>
+ <comment xml:lang="oc">presentacion PowerPoint 2007</comment>
+ <comment xml:lang="nl">PowerPoint 2007-presentatie</comment>
+ <comment xml:lang="lv">PowerPoint 2007 prezentācija</comment>
+ <comment xml:lang="lt">PowerPoint 2007 pateiktis</comment>
+ <comment xml:lang="ko">PowerPoint 2007 프레젠테이션</comment>
+ <comment xml:lang="kk">PowerPoint 2007 презентациясы</comment>
+ <comment xml:lang="ja">PowerPoint 2007 プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione standard PowerPoint 2007</comment>
+ <comment xml:lang="is">PowerPoint 2007 kynning</comment>
+ <comment xml:lang="id">Presentasi PowerPoint 2007</comment>
+ <comment xml:lang="ia">Presentation PowerPoint 2007</comment>
+ <comment xml:lang="hu">PowerPoint 2007 prezentáció</comment>
+ <comment xml:lang="hr">PowerPoint 2007 prezentacija</comment>
+ <comment xml:lang="he">מצגת של PowerPoint 2007</comment>
+ <comment xml:lang="gl">presentación de PowerPoint 2007</comment>
+ <comment xml:lang="ga">láithreoireacht PowerPoint 2007</comment>
+ <comment xml:lang="fur">presentazion PowerPoint 2007</comment>
+ <comment xml:lang="fr">présentation PowerPoint 2007</comment>
+ <comment xml:lang="fo">PowerPoint 2007 framløga</comment>
+ <comment xml:lang="fi">PowerPoint 2007 -esitys</comment>
+ <comment xml:lang="eu">PowerPoint 2007 aurkezpena</comment>
+ <comment xml:lang="es">presentación de PowerPoint 2007</comment>
+ <comment xml:lang="en_GB">PowerPoint 2007 presentation</comment>
+ <comment xml:lang="el">Παρουσίαση PowerPoint 2007</comment>
+ <comment xml:lang="de">PowerPoint-2007-Präsentation</comment>
+ <comment xml:lang="da">PowerPoint 2007-præsentation</comment>
+ <comment xml:lang="cs">prezentace PowerPoint 2007</comment>
+ <comment xml:lang="ca">presentació de PowerPoint 2007</comment>
+ <comment xml:lang="bg">Презентация — PowerPoint 2007</comment>
+ <comment xml:lang="be">прэзентацыя PowerPoint 2007</comment>
+ <comment xml:lang="ar">عرض تقديمي بوربوينت 2007</comment>
+ <comment xml:lang="af">PowerPoint 2007-voorlegging</comment>
<glob pattern="*.pptx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.presentationml.slide">
<comment>PowerPoint 2007 slide</comment>
- <comment xml:lang="bg">Кадър — PoerPoint 2007</comment>
- <comment xml:lang="ca">dispositiva de PowerPoint 2007</comment>
- <comment xml:lang="cs">snímek PowerPoint 2007</comment>
- <comment xml:lang="da">PowerPoint 2007-slide</comment>
- <comment xml:lang="de">PowerPoint 2007-Folie</comment>
- <comment xml:lang="el">Διαφάνεια PowerPoint 2007</comment>
- <comment xml:lang="en_GB">PowerPoint 2007 slide</comment>
- <comment xml:lang="es">diapositiva de PowerPoint 2007</comment>
- <comment xml:lang="eu">PowerPoint 2007 diapositiba</comment>
- <comment xml:lang="fi">PowerPoint 2007 -dia</comment>
- <comment xml:lang="fr">diapositive PowerPoint 2007</comment>
- <comment xml:lang="ga">sleamhnán PowerPoint 2007</comment>
- <comment xml:lang="gl">Diaporama de PowerPoint 2007</comment>
- <comment xml:lang="he">שקופית של PowerPoint 2007</comment>
- <comment xml:lang="hr">PowerPoint 2007 slikovna prezentacija</comment>
- <comment xml:lang="hu">PowerPoint 2007 dia</comment>
- <comment xml:lang="ia">Diapositiva PowerPoint 2007</comment>
- <comment xml:lang="id">Slide PowerPoint 2007</comment>
- <comment xml:lang="it">Diapositiva PowerPoint 2007</comment>
- <comment xml:lang="ja">PowerPoint 2007 スライド</comment>
- <comment xml:lang="ka">PowerPoint 2007-ის სლაიდი</comment>
- <comment xml:lang="kk">PowerPoint 2007 слайды</comment>
- <comment xml:lang="ko">PowerPoint 2007 슬라이드</comment>
- <comment xml:lang="lv">PowerPoint 2007 slaids</comment>
- <comment xml:lang="nl">PowerPoint 2007 dia</comment>
- <comment xml:lang="oc">diapositive PowerPoint 2007</comment>
- <comment xml:lang="pl">Slajd PowerPoint 2007</comment>
- <comment xml:lang="pt">diapositivo PowerPoint 2007</comment>
- <comment xml:lang="pt_BR">Slide do PowerPoint 2007</comment>
- <comment xml:lang="ru">Слайд PowerPoint 2007</comment>
- <comment xml:lang="sk">Snímka PowerPoint 2007</comment>
- <comment xml:lang="sl">Prosojnica PowerPoint 2007</comment>
- <comment xml:lang="sr">слајд Пауер Поинта 2007</comment>
- <comment xml:lang="sv">PowerPoint 2007-bildspel</comment>
- <comment xml:lang="tr">PowerPoint 2007 slaytı</comment>
- <comment xml:lang="uk">слайд PowerPoint 2007</comment>
- <comment xml:lang="zh_CN">PowerPoint 2007 幻灯片</comment>
<comment xml:lang="zh_TW">PowerPoint 2007 投影片</comment>
+ <comment xml:lang="zh_CN">PowerPoint 2007 幻灯片</comment>
+ <comment xml:lang="uk">слайд PowerPoint 2007</comment>
+ <comment xml:lang="tr">PowerPoint 2007 slaytı</comment>
+ <comment xml:lang="sv">PowerPoint 2007-bildspel</comment>
+ <comment xml:lang="sr">слајд Пауер Поинта 2007</comment>
+ <comment xml:lang="sq">diapozitiv PowerPoint 2007</comment>
+ <comment xml:lang="sl">Prosojnica PowerPoint 2007</comment>
+ <comment xml:lang="si">PowerPoint 2007 ස්ලයිඩය</comment>
+ <comment xml:lang="sk">Snímka PowerPoint 2007</comment>
+ <comment xml:lang="ru">Слайд PowerPoint 2007</comment>
+ <comment xml:lang="pt_BR">Slide do PowerPoint 2007</comment>
+ <comment xml:lang="pt">diapositivo PowerPoint 2007</comment>
+ <comment xml:lang="pl">Slajd PowerPoint 2007</comment>
+ <comment xml:lang="oc">diapositive PowerPoint 2007</comment>
+ <comment xml:lang="nl">PowerPoint 2007-dia</comment>
+ <comment xml:lang="lv">PowerPoint 2007 slaids</comment>
+ <comment xml:lang="ko">PowerPoint 2007 슬라이드</comment>
+ <comment xml:lang="kk">PowerPoint 2007 слайды</comment>
+ <comment xml:lang="ka">PowerPoint 2007-ის სლაიდი</comment>
+ <comment xml:lang="ja">PowerPoint 2007 スライド</comment>
+ <comment xml:lang="it">Diapositiva PowerPoint 2007</comment>
+ <comment xml:lang="is">PowerPoint 2007 skyggna</comment>
+ <comment xml:lang="id">Slide PowerPoint 2007</comment>
+ <comment xml:lang="ia">Diapositiva PowerPoint 2007</comment>
+ <comment xml:lang="hu">PowerPoint 2007 dia</comment>
+ <comment xml:lang="hr">PowerPoint 2007 slikovna prezentacija</comment>
+ <comment xml:lang="he">שקופית של PowerPoint 2007</comment>
+ <comment xml:lang="gl">Diaporama de PowerPoint 2007</comment>
+ <comment xml:lang="ga">sleamhnán PowerPoint 2007</comment>
+ <comment xml:lang="fur">diapositive PowerPoint 2007</comment>
+ <comment xml:lang="fr">diapositive PowerPoint 2007</comment>
+ <comment xml:lang="fi">PowerPoint 2007 -dia</comment>
+ <comment xml:lang="eu">PowerPoint 2007 diapositiba</comment>
+ <comment xml:lang="es">diapositiva de PowerPoint 2007</comment>
+ <comment xml:lang="en_GB">PowerPoint 2007 slide</comment>
+ <comment xml:lang="el">Διαφάνεια PowerPoint 2007</comment>
+ <comment xml:lang="de">PowerPoint-2007-Folie</comment>
+ <comment xml:lang="da">PowerPoint 2007-slide</comment>
+ <comment xml:lang="cs">snímek PowerPoint 2007</comment>
+ <comment xml:lang="ca">dispositiva de PowerPoint 2007</comment>
+ <comment xml:lang="bg">Кадър — PoerPoint 2007</comment>
+ <comment xml:lang="be">слайд PowerPoint 2007</comment>
+ <comment xml:lang="ar">شريحة بوربوينت 2007</comment>
+ <comment xml:lang="af">PowerPoint 2007-skyfie</comment>
<glob pattern="*.sldx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.presentationml.slideshow">
<comment>PowerPoint 2007 show</comment>
- <comment xml:lang="ar">عرض PowerPoint 2007</comment>
- <comment xml:lang="bg">Презентация-шоу — PowerPoint 2007</comment>
- <comment xml:lang="ca">exposició de PowerPoint 2007</comment>
- <comment xml:lang="cs">prezentace PowerPoint 2007</comment>
- <comment xml:lang="da">PowerPoint 2007-dias</comment>
- <comment xml:lang="de">PowerPoint-2007-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση PowerPoint 2007</comment>
- <comment xml:lang="en_GB">PowerPoint 2007 show</comment>
- <comment xml:lang="es">presentación autoejecutable de PowerPoint 2007</comment>
- <comment xml:lang="eu">PowerPoint 2007 ikuskizuna</comment>
- <comment xml:lang="fi">PowerPoint 2007 -diaesitys</comment>
- <comment xml:lang="fo">PowerPoint 2007 framsýning</comment>
- <comment xml:lang="fr">diaporama PowerPoint 2007</comment>
- <comment xml:lang="ga">taispeántas PowerPoint 2007</comment>
- <comment xml:lang="gl">Exposición de PowerPoint 2007</comment>
- <comment xml:lang="he">תצוגה של PowerPoint 2007</comment>
- <comment xml:lang="hr">PowerPoint 2007 prezentacija</comment>
- <comment xml:lang="hu">PowerPoint 2007 bemutató</comment>
- <comment xml:lang="ia">Projection de diapositivas PowerPoint 2007</comment>
- <comment xml:lang="id">Presentasi PowerPoint 2007</comment>
- <comment xml:lang="it">Solo presentazione PowerPoint 2007</comment>
- <comment xml:lang="ja">PowerPoint 2007 プレゼンテーション</comment>
- <comment xml:lang="kk">PowerPoint 2007 көрсетілімі</comment>
- <comment xml:lang="ko">PowerPoint 2007 쇼</comment>
- <comment xml:lang="lt">PowerPoint 2007 pateiktis</comment>
- <comment xml:lang="lv">PowerPoint 2007 slīdrāde</comment>
- <comment xml:lang="nl">PowerPoint 2007 show</comment>
- <comment xml:lang="oc">diaporama PowerPoint 2007</comment>
- <comment xml:lang="pl">Pokaz PowerPoint 2007</comment>
- <comment xml:lang="pt">espetáculo PowerPoint 2007</comment>
- <comment xml:lang="pt_BR">Apresentação do PowerPoint 2007</comment>
- <comment xml:lang="ro">Prezentare PowerPoint 2007</comment>
- <comment xml:lang="ru">Презентация PowerPoint 2007</comment>
- <comment xml:lang="sk">Ukážka PowerPoint 2007</comment>
- <comment xml:lang="sl">Zagonska predstavitev PowerPoint 2007</comment>
- <comment xml:lang="sr">приказ Пауер Поинта 2007</comment>
- <comment xml:lang="sv">PowerPoint 2007-visning</comment>
- <comment xml:lang="tr">PowerPoint 2007 gösterisi</comment>
- <comment xml:lang="uk">показ слайдів PowerPoint 2007</comment>
- <comment xml:lang="zh_CN">PowerPoint 2007 放映</comment>
<comment xml:lang="zh_TW">PowerPoint 2007 展示</comment>
+ <comment xml:lang="zh_CN">PowerPoint 2007 放映</comment>
+ <comment xml:lang="uk">показ слайдів PowerPoint 2007</comment>
+ <comment xml:lang="tr">PowerPoint 2007 gösterisi</comment>
+ <comment xml:lang="sv">PowerPoint 2007-visning</comment>
+ <comment xml:lang="sr">приказ Пауер Поинта 2007</comment>
+ <comment xml:lang="sl">Zagonska predstavitev PowerPoint 2007</comment>
+ <comment xml:lang="si">PowerPoint 2007 ප්රදර්ශනය</comment>
+ <comment xml:lang="sk">Ukážka PowerPoint 2007</comment>
+ <comment xml:lang="ru">Презентация PowerPoint 2007</comment>
+ <comment xml:lang="ro">Prezentare PowerPoint 2007</comment>
+ <comment xml:lang="pt_BR">Apresentação do PowerPoint 2007</comment>
+ <comment xml:lang="pt">espetáculo PowerPoint 2007</comment>
+ <comment xml:lang="pl">Pokaz PowerPoint 2007</comment>
+ <comment xml:lang="oc">diaporama PowerPoint 2007</comment>
+ <comment xml:lang="nl">PowerPoint 2007-show</comment>
+ <comment xml:lang="lv">PowerPoint 2007 slīdrāde</comment>
+ <comment xml:lang="lt">PowerPoint 2007 pateiktis</comment>
+ <comment xml:lang="ko">PowerPoint 2007 쇼</comment>
+ <comment xml:lang="kk">PowerPoint 2007 көрсетілімі</comment>
+ <comment xml:lang="ja">PowerPoint 2007 プレゼンテーション</comment>
+ <comment xml:lang="it">Solo presentazione PowerPoint 2007</comment>
+ <comment xml:lang="is">PowerPoint 2007 glærukynning</comment>
+ <comment xml:lang="id">Presentasi PowerPoint 2007</comment>
+ <comment xml:lang="ia">Projection de diapositivas PowerPoint 2007</comment>
+ <comment xml:lang="hu">PowerPoint 2007 bemutató</comment>
+ <comment xml:lang="hr">PowerPoint 2007 prezentacija</comment>
+ <comment xml:lang="he">תצוגה של PowerPoint 2007</comment>
+ <comment xml:lang="gl">Exposición de PowerPoint 2007</comment>
+ <comment xml:lang="ga">taispeántas PowerPoint 2007</comment>
+ <comment xml:lang="fur">esecuzion presentazion PowerPoint 2007</comment>
+ <comment xml:lang="fr">diaporama PowerPoint 2007</comment>
+ <comment xml:lang="fo">PowerPoint 2007 framsýning</comment>
+ <comment xml:lang="fi">PowerPoint 2007 -diaesitys</comment>
+ <comment xml:lang="eu">PowerPoint 2007 ikuskizuna</comment>
+ <comment xml:lang="es">presentación autoejecutable de PowerPoint 2007</comment>
+ <comment xml:lang="en_GB">PowerPoint 2007 show</comment>
+ <comment xml:lang="el">Παρουσίαση PowerPoint 2007</comment>
+ <comment xml:lang="de">PowerPoint-2007-Präsentation</comment>
+ <comment xml:lang="da">PowerPoint 2007-dias</comment>
+ <comment xml:lang="cs">prezentace PowerPoint 2007</comment>
+ <comment xml:lang="ca">exposició de PowerPoint 2007</comment>
+ <comment xml:lang="bg">Презентация-шоу — PowerPoint 2007</comment>
+ <comment xml:lang="be">паказ слайдаў PowerPoint 2007</comment>
+ <comment xml:lang="ar">عرض بوربوينت 2007</comment>
+ <comment xml:lang="af">PowerPoint 2007-vertoning</comment>
<glob pattern="*.ppsx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.presentationml.template">
<comment>PowerPoint 2007 presentation template</comment>
- <comment xml:lang="bg">Шаблон за презентации — PowerPoint 2007</comment>
- <comment xml:lang="ca">plantilla de presentació de PowerPoint 2007</comment>
- <comment xml:lang="cs">šablona prezentace PowerPoint 2007</comment>
- <comment xml:lang="da">PowerPoint 2007-præsentationsskabelon</comment>
- <comment xml:lang="de">PowerPoint 2007-Präsentationsvorlage</comment>
- <comment xml:lang="el">Πρότυπο παρουσίασης PowerPoint 2007</comment>
- <comment xml:lang="en_GB">PowerPoint 2007 presentation template</comment>
- <comment xml:lang="es">plantilla de presentación de PowerPoint 2007</comment>
- <comment xml:lang="eu">PowerPoint 2007 aurkezpen txantiloia</comment>
- <comment xml:lang="fi">PowerPoint 2007 -esitysmalli</comment>
- <comment xml:lang="fr">modèle de présentation PowerPoint 2007</comment>
- <comment xml:lang="ga">teimpléad láithreoireachta PowerPoint 2007</comment>
- <comment xml:lang="gl">modelo de presentación de PowerPoint 2007</comment>
- <comment xml:lang="he">תבנית למצגת של PowerPoint 2007</comment>
- <comment xml:lang="hr">PowerPoint 2007 predložak prezentacije</comment>
- <comment xml:lang="hu">PowerPoint 2007 bemutatósablon</comment>
- <comment xml:lang="ia">Patrono de presentation PowerPoint 2007</comment>
- <comment xml:lang="id">Templat presentasi PowerPoint 2007</comment>
- <comment xml:lang="it">Modello presentazione PowerPoint 2007</comment>
- <comment xml:lang="ja">PowerPoint 2007 プレゼンテーションテンプレート</comment>
- <comment xml:lang="ka">PowerPoint 2007-ის პრეზენტაციის შაბლონი</comment>
- <comment xml:lang="kk">PowerPoint 2007 презентация шаблоны</comment>
- <comment xml:lang="ko">PowerPoint 2007 프레젠테이션 서식</comment>
- <comment xml:lang="lv">PowerPoint 2007 prezentācijas veidne</comment>
- <comment xml:lang="nl">PowerPoint 2007 presentation sjabloon</comment>
- <comment xml:lang="oc">modèl de presentacion PowerPoint 2007</comment>
- <comment xml:lang="pl">Szablon prezentacji PowerPoint 2007</comment>
- <comment xml:lang="pt">modelo de apresentação PowerPoint 2007</comment>
- <comment xml:lang="pt_BR">Modelo de apresentação do PowerPoint 2007</comment>
- <comment xml:lang="ru">Шаблон презентации PowerPoint 2007</comment>
- <comment xml:lang="sk">Šablóna prezentácie PowerPoint 2007</comment>
- <comment xml:lang="sl">Predloga predstavitve PowerPoint 2007</comment>
- <comment xml:lang="sr">шаблон презентације Пауер Поинта 2007</comment>
- <comment xml:lang="sv">PowerPoint 2007-presentationsmall</comment>
- <comment xml:lang="tr">PowerPoint 2007 sunum şablonu</comment>
- <comment xml:lang="uk">шаблон презентації PowerPoint 2007</comment>
- <comment xml:lang="zh_CN">PowerPoint 2007 演示文稿模板</comment>
<comment xml:lang="zh_TW">PowerPoint 2007 簡報範本</comment>
+ <comment xml:lang="zh_CN">PowerPoint 2007 演示文稿模板</comment>
+ <comment xml:lang="uk">шаблон презентації PowerPoint 2007</comment>
+ <comment xml:lang="tr">PowerPoint 2007 sunum şablonu</comment>
+ <comment xml:lang="sv">PowerPoint 2007-presentationsmall</comment>
+ <comment xml:lang="sr">шаблон презентације Пауер Поинта 2007</comment>
+ <comment xml:lang="sq">gjedhe paraqitjesh PowerPoint 2007</comment>
+ <comment xml:lang="sl">Predloga predstavitve PowerPoint 2007</comment>
+ <comment xml:lang="si">PowerPoint 2007 ඉදිරිපත් කිරීමේ අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna prezentácie PowerPoint 2007</comment>
+ <comment xml:lang="ru">Шаблон презентации PowerPoint 2007</comment>
+ <comment xml:lang="pt_BR">Modelo de apresentação do PowerPoint 2007</comment>
+ <comment xml:lang="pt">modelo de apresentação PowerPoint 2007</comment>
+ <comment xml:lang="pl">Szablon prezentacji PowerPoint 2007</comment>
+ <comment xml:lang="oc">modèl de presentacion PowerPoint 2007</comment>
+ <comment xml:lang="nl">PowerPoint 2007-presentatiesjabloon</comment>
+ <comment xml:lang="lv">PowerPoint 2007 prezentācijas veidne</comment>
+ <comment xml:lang="ko">PowerPoint 2007 프레젠테이션 서식</comment>
+ <comment xml:lang="kk">PowerPoint 2007 презентация шаблоны</comment>
+ <comment xml:lang="ka">PowerPoint 2007-ის პრეზენტაციის შაბლონი</comment>
+ <comment xml:lang="ja">PowerPoint 2007 プレゼンテーションテンプレート</comment>
+ <comment xml:lang="it">Modello presentazione PowerPoint 2007</comment>
+ <comment xml:lang="is">PowerPoint 2007 sniðmát fyrir glærukynningu</comment>
+ <comment xml:lang="id">Templat presentasi PowerPoint 2007</comment>
+ <comment xml:lang="ia">Patrono de presentation PowerPoint 2007</comment>
+ <comment xml:lang="hu">PowerPoint 2007 bemutatósablon</comment>
+ <comment xml:lang="hr">PowerPoint 2007 predložak prezentacije</comment>
+ <comment xml:lang="he">תבנית למצגת של PowerPoint 2007</comment>
+ <comment xml:lang="gl">modelo de presentación de PowerPoint 2007</comment>
+ <comment xml:lang="ga">teimpléad láithreoireachta PowerPoint 2007</comment>
+ <comment xml:lang="fur">model presentazion PowerPoint 2007</comment>
+ <comment xml:lang="fr">modèle de présentation PowerPoint 2007</comment>
+ <comment xml:lang="fi">PowerPoint 2007 -esitysmalli</comment>
+ <comment xml:lang="eu">PowerPoint 2007 aurkezpen txantiloia</comment>
+ <comment xml:lang="es">plantilla de presentación de PowerPoint 2007</comment>
+ <comment xml:lang="en_GB">PowerPoint 2007 presentation template</comment>
+ <comment xml:lang="el">Πρότυπο παρουσίασης PowerPoint 2007</comment>
+ <comment xml:lang="de">PowerPoint-2007-Präsentationsvorlage</comment>
+ <comment xml:lang="da">PowerPoint 2007-præsentationsskabelon</comment>
+ <comment xml:lang="cs">šablona prezentace PowerPoint 2007</comment>
+ <comment xml:lang="ca">plantilla de presentació de PowerPoint 2007</comment>
+ <comment xml:lang="bg">Шаблон за презентации — PowerPoint 2007</comment>
+ <comment xml:lang="be">шаблон прэзентацыі PowerPoint 2007</comment>
+ <comment xml:lang="ar">قالب عرض بوربوينت 2007</comment>
+ <comment xml:lang="af">PowerPoint 2007-voorleggingsjabloon</comment>
<glob pattern="*.potx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
<comment>Excel 2007 spreadsheet</comment>
- <comment xml:lang="ar">جدول Excel 2007</comment>
- <comment xml:lang="bg">Таблица — Excel 2007</comment>
- <comment xml:lang="ca">full de càlcul d'Excel 2007</comment>
- <comment xml:lang="cs">sešit Excel 2007</comment>
- <comment xml:lang="da">Excel 2007-regneark</comment>
- <comment xml:lang="de">Excel-2007-Tabelle</comment>
- <comment xml:lang="el">Λογιστικό φύλλο Excel 2007</comment>
- <comment xml:lang="en_GB">Excel 2007 spreadsheet</comment>
- <comment xml:lang="es">hoja de cálculo de Excel 2007</comment>
- <comment xml:lang="eu">Excel 2007 kalkulu-orria</comment>
- <comment xml:lang="fi">Excel 2007 -taulukko</comment>
- <comment xml:lang="fo">Excel 2007 rokniark</comment>
- <comment xml:lang="fr">feuille de calcul Excel 2007</comment>
- <comment xml:lang="ga">scarbhileog Excel 2007</comment>
- <comment xml:lang="gl">folla de cálculo de Excel 2007</comment>
- <comment xml:lang="he">גליון נתונים של Excel 2007</comment>
- <comment xml:lang="hr">Excel 2007 proračunska tablica</comment>
- <comment xml:lang="hu">Excel 2007 táblázat</comment>
- <comment xml:lang="ia">Folio de calculo Excel 2007</comment>
- <comment xml:lang="id">Lembar sebar Excel 2007</comment>
- <comment xml:lang="it">Foglio di calcolo Excel 2007</comment>
- <comment xml:lang="ja">Excel 2007 スプレッドシート</comment>
- <comment xml:lang="ka">Excel 2007-ის ცხრილი</comment>
- <comment xml:lang="kk">Excel 2007 электрондық кестесі</comment>
- <comment xml:lang="ko">Excel 2007 스프레드시트</comment>
- <comment xml:lang="lt">Excel 2007 skaičialentė</comment>
- <comment xml:lang="lv">Excel 2007 izklājlapa</comment>
- <comment xml:lang="nl">Excel 2007-rekenblad</comment>
- <comment xml:lang="oc">fuèlh de calcul Excel 2007</comment>
- <comment xml:lang="pl">Arkusz Excel 2007</comment>
- <comment xml:lang="pt">folha de cálculo Excel 2007</comment>
- <comment xml:lang="pt_BR">Planilha do Excel 2007</comment>
- <comment xml:lang="ro">Foaie de calcul Excel 2007</comment>
- <comment xml:lang="ru">Электронная таблица Excel 2007</comment>
- <comment xml:lang="sk">Zošit Excel 2007</comment>
- <comment xml:lang="sl">Razpredelnica Microsoft Excel 2007</comment>
- <comment xml:lang="sr">табела Ексела 2007</comment>
- <comment xml:lang="sv">Excel 2007-kalkylblad</comment>
- <comment xml:lang="tr">Excel 2007 çalışma sayfası</comment>
- <comment xml:lang="uk">ел. таблиця Excel 2007</comment>
- <comment xml:lang="vi">Bảng tính Excel 2007</comment>
- <comment xml:lang="zh_CN">Excel 2007 电子表格</comment>
<comment xml:lang="zh_TW">Excel 2007 試算表</comment>
+ <comment xml:lang="zh_CN">Excel 2007 电子表格</comment>
+ <comment xml:lang="vi">Bảng tính Excel 2007</comment>
+ <comment xml:lang="uk">електронна таблиця Excel 2007</comment>
+ <comment xml:lang="tr">Excel 2007 hesap çizelgesi sayfası</comment>
+ <comment xml:lang="sv">Excel 2007-kalkylblad</comment>
+ <comment xml:lang="sr">табела Ексела 2007</comment>
+ <comment xml:lang="sq">fletëllogaritje Excel 2007</comment>
+ <comment xml:lang="sl">Razpredelnica Microsoft Excel 2007</comment>
+ <comment xml:lang="si">Excel 2007 පැතුරුම්පත</comment>
+ <comment xml:lang="sk">Zošit Excel 2007</comment>
+ <comment xml:lang="ru">Электронная таблица Excel 2007</comment>
+ <comment xml:lang="ro">Foaie de calcul Excel 2007</comment>
+ <comment xml:lang="pt_BR">Planilha do Excel 2007</comment>
+ <comment xml:lang="pt">folha de cálculo Excel 2007</comment>
+ <comment xml:lang="pl">Arkusz Excel 2007</comment>
+ <comment xml:lang="oc">fuèlh de calcul Excel 2007</comment>
+ <comment xml:lang="nl">Excel 2007-rekenblad</comment>
+ <comment xml:lang="lv">Excel 2007 izklājlapa</comment>
+ <comment xml:lang="lt">Excel 2007 skaičialentė</comment>
+ <comment xml:lang="ko">Excel 2007 스프레드시트</comment>
+ <comment xml:lang="kk">Excel 2007 электрондық кестесі</comment>
+ <comment xml:lang="ka">Excel 2007-ის ცხრილი</comment>
+ <comment xml:lang="ja">Excel 2007 スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Excel 2007</comment>
+ <comment xml:lang="is">Excel 2007 töflureikniskjal</comment>
+ <comment xml:lang="id">Lembar sebar Excel 2007</comment>
+ <comment xml:lang="ia">Folio de calculo Excel 2007</comment>
+ <comment xml:lang="hu">Excel 2007 táblázat</comment>
+ <comment xml:lang="hr">Excel 2007 proračunska tablica</comment>
+ <comment xml:lang="he">גיליון נתונים של Excel 2007</comment>
+ <comment xml:lang="gl">folla de cálculo de Excel 2007</comment>
+ <comment xml:lang="ga">scarbhileog Excel 2007</comment>
+ <comment xml:lang="fur">sfuei di calcul Excel 2007</comment>
+ <comment xml:lang="fr">feuille de calcul Excel 2007</comment>
+ <comment xml:lang="fo">Excel 2007 rokniark</comment>
+ <comment xml:lang="fi">Excel 2007 -taulukko</comment>
+ <comment xml:lang="eu">Excel 2007 kalkulu-orria</comment>
+ <comment xml:lang="es">hoja de cálculo de Excel 2007</comment>
+ <comment xml:lang="en_GB">Excel 2007 spreadsheet</comment>
+ <comment xml:lang="el">Λογιστικό φύλλο Excel 2007</comment>
+ <comment xml:lang="de">Excel-2007-Tabelle</comment>
+ <comment xml:lang="da">Excel 2007-regneark</comment>
+ <comment xml:lang="cs">sešit Excel 2007</comment>
+ <comment xml:lang="ca">full de càlcul d'Excel 2007</comment>
+ <comment xml:lang="bg">Таблица — Excel 2007</comment>
+ <comment xml:lang="be">электронная табліца Excel 2007</comment>
+ <comment xml:lang="ar">جدول اكسل 2007</comment>
+ <comment xml:lang="af">Excel 2007-sigblad</comment>
<glob pattern="*.xlsx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
</mime-type>
<mime-type type="application/vnd.openxmlformats-officedocument.spreadsheetml.template">
<comment>Excel 2007 spreadsheet template</comment>
- <comment xml:lang="bg">Шаблон за таблици — Excel 2007</comment>
- <comment xml:lang="ca">plantilla de full de càlcul d'Excel 2007</comment>
- <comment xml:lang="cs">šablona sešitu Excel 2007</comment>
- <comment xml:lang="da">Excel 2007-regnearksskabelon</comment>
- <comment xml:lang="de">Excel 2007-Tabellenvorlage</comment>
- <comment xml:lang="el">Πρότυπο λογιστικού φύλλου Excel 2007</comment>
- <comment xml:lang="en_GB">Excel 2007 spreadsheet template</comment>
- <comment xml:lang="es">plantilla de hoja de cálculo de Excel 2007</comment>
- <comment xml:lang="eu">Excel 2007 kalkulu-orri txantiloia</comment>
- <comment xml:lang="fi">Excel 2007 -taulukkomalli</comment>
- <comment xml:lang="fr">modèle de feuille de calcul Excel 2007</comment>
- <comment xml:lang="ga">teimpléad scarbhileoige Excel 2007</comment>
- <comment xml:lang="gl">modelo de folla de cálculo Excel 2007</comment>
- <comment xml:lang="he">תבנית של גיליון נתונים של Excel 2007</comment>
- <comment xml:lang="hr">Excel 2007 predložak proračunske tablice</comment>
- <comment xml:lang="hu">Excel 2007 táblázatsablon</comment>
- <comment xml:lang="ia">Patrono de folio de calculo Excel 2007</comment>
- <comment xml:lang="id">Templat lembar kerja Excel 2007</comment>
- <comment xml:lang="it">Modello foglio di calcolo Excel 2007</comment>
- <comment xml:lang="ja">Excel 2007 スプレッドシートテンプレート</comment>
- <comment xml:lang="ka">Excel 2007-ის ცხრილის შაბლონი</comment>
- <comment xml:lang="kk">Excel 2007 кесте шаблоны</comment>
- <comment xml:lang="ko">Excel 2007 스프레드시트 서식</comment>
- <comment xml:lang="lv">Excel 2007 izklājlapas veidne</comment>
- <comment xml:lang="nl">Excel 2007 spreadsheet sjabloon</comment>
- <comment xml:lang="oc">modèl de fuèlh de calcul Excel 2007</comment>
- <comment xml:lang="pl">Szablon arkusza Excel 2007</comment>
- <comment xml:lang="pt">modelo de folha de cálculo Excel 2007</comment>
- <comment xml:lang="pt_BR">Modelo de planilha do Excel 2007</comment>
- <comment xml:lang="ru">Шаблон электронной таблицы Excel 2007</comment>
- <comment xml:lang="sk">Šablóna zošitu Excel 2007</comment>
- <comment xml:lang="sl">Predloga razpredelnice Excel 2007</comment>
- <comment xml:lang="sr">шаблон табеле Ексела 2007</comment>
- <comment xml:lang="sv">Excel 2007-kalkylarksmall</comment>
- <comment xml:lang="tr">Excel 2007 çalışma sayfası şablonu</comment>
- <comment xml:lang="uk">шаблон електронної таблиці Excel 2007</comment>
- <comment xml:lang="zh_CN">Excel 2007 电子表格模板</comment>
<comment xml:lang="zh_TW">Excel 2007 試算表範本</comment>
+ <comment xml:lang="zh_CN">Excel 2007 电子表格模板</comment>
+ <comment xml:lang="uk">шаблон електронної таблиці Excel 2007</comment>
+ <comment xml:lang="tr">Excel 2007 hesap çizelgesi şablonu</comment>
+ <comment xml:lang="sv">Excel 2007-kalkylarksmall</comment>
+ <comment xml:lang="sr">шаблон табеле Ексела 2007</comment>
+ <comment xml:lang="sq">gjedhe fletëllogaritjesh Excel 2007</comment>
+ <comment xml:lang="sl">Predloga razpredelnice Excel 2007</comment>
+ <comment xml:lang="si">Excel 2007 පැතුරුම්පත් අච්චුව</comment>
+ <comment xml:lang="sk">Šablóna zošitu Excel 2007</comment>
+ <comment xml:lang="ru">Шаблон электронной таблицы Excel 2007</comment>
+ <comment xml:lang="pt_BR">Modelo de planilha do Excel 2007</comment>
+ <comment xml:lang="pt">modelo de folha de cálculo Excel 2007</comment>
+ <comment xml:lang="pl">Szablon arkusza Excel 2007</comment>
+ <comment xml:lang="oc">modèl de fuèlh de calcul Excel 2007</comment>
+ <comment xml:lang="nl">Excel 2007 spreadsheet sjabloon</comment>
+ <comment xml:lang="lv">Excel 2007 izklājlapas veidne</comment>
+ <comment xml:lang="ko">Excel 2007 스프레드시트 서식</comment>
+ <comment xml:lang="kk">Excel 2007 кесте шаблоны</comment>
+ <comment xml:lang="ka">Excel 2007-ის ცხრილის შაბლონი</comment>
+ <comment xml:lang="ja">Excel 2007 スプレッドシートテンプレート</comment>
+ <comment xml:lang="it">Modello foglio di calcolo Excel 2007</comment>
+ <comment xml:lang="is">Excel 2007 töflureiknisniðmát</comment>
+ <comment xml:lang="id">Templat lembar kerja Excel 2007</comment>
+ <comment xml:lang="ia">Patrono de folio de calculo Excel 2007</comment>
+ <comment xml:lang="hu">Excel 2007 táblázatsablon</comment>
+ <comment xml:lang="hr">Excel 2007 predložak proračunske tablice</comment>
+ <comment xml:lang="he">תבנית של גיליון נתונים של Excel 2007</comment>
+ <comment xml:lang="gl">modelo de folla de cálculo Excel 2007</comment>
+ <comment xml:lang="ga">teimpléad scarbhileoige Excel 2007</comment>
+ <comment xml:lang="fur">model sfuei di calcul Excel 2007</comment>
+ <comment xml:lang="fr">modèle de feuille de calcul Excel 2007</comment>
+ <comment xml:lang="fi">Excel 2007 -taulukkomalli</comment>
+ <comment xml:lang="eu">Excel 2007 kalkulu-orri txantiloia</comment>
+ <comment xml:lang="es">plantilla de hoja de cálculo de Excel 2007</comment>
+ <comment xml:lang="en_GB">Excel 2007 spreadsheet template</comment>
+ <comment xml:lang="el">Πρότυπο λογιστικού φύλλου Excel 2007</comment>
+ <comment xml:lang="de">Excel-2007-Tabellenvorlage</comment>
+ <comment xml:lang="da">Excel 2007-regnearksskabelon</comment>
+ <comment xml:lang="cs">šablona sešitu Excel 2007</comment>
+ <comment xml:lang="ca">plantilla de full de càlcul d'Excel 2007</comment>
+ <comment xml:lang="bg">Шаблон за таблици — Excel 2007</comment>
+ <comment xml:lang="be">шаблон электроннай табліцы Excel 2007</comment>
+ <comment xml:lang="ar">قالب جدول اكسل 2007</comment>
+ <comment xml:lang="af">Excel 2007-sigbladsjabloon</comment>
<glob pattern="*.xltx"/>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-spreadsheet"/>
</mime-type>
+ <mime-type type="application/vnd.ms-officetheme">
+ <comment>Microsoft Office 2007 theme</comment>
+ <comment xml:lang="uk">тема Microsoft Office 2007</comment>
+ <comment xml:lang="sv">Microsoft Office 2007-tema</comment>
+ <comment xml:lang="ru">Тема Microsoft Office 2007</comment>
+ <comment xml:lang="pl">Motyw Microsoft Office 2007</comment>
+ <comment xml:lang="it">Tema Microsoft Office 2007</comment>
+ <comment xml:lang="eu">Microsoft Office 2007 gaia</comment>
+ <comment xml:lang="es">tema de Microsoft Office 2007</comment>
+ <comment xml:lang="de">Microsoft-Office-2007-Thema</comment>
+ <comment xml:lang="be">тэма Microsoft Office 2007</comment>
+ <glob pattern="*.thmx"/>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="text-x-generic-template"/>
+ </mime-type>
<mime-type type="application/x-t602">
<comment>T602 document</comment>
- <comment xml:lang="ar">مستند T602</comment>
- <comment xml:lang="ast">Documentu T602</comment>
- <comment xml:lang="be@latin">Dakument T602</comment>
- <comment xml:lang="bg">Документ — T602</comment>
- <comment xml:lang="ca">document T602</comment>
- <comment xml:lang="cs">dokument T602</comment>
- <comment xml:lang="da">T602-dokument</comment>
- <comment xml:lang="de">T602-Dokument</comment>
- <comment xml:lang="el">Έγγραφο T602</comment>
- <comment xml:lang="en_GB">T602 document</comment>
- <comment xml:lang="eo">T602-dokumento</comment>
- <comment xml:lang="es">documento T602</comment>
- <comment xml:lang="eu">T602 dokumentua</comment>
- <comment xml:lang="fi">T602-asiakirja</comment>
- <comment xml:lang="fo">T602 skjal</comment>
- <comment xml:lang="fr">document T602</comment>
- <comment xml:lang="ga">cáipéis T602</comment>
- <comment xml:lang="gl">documento T602</comment>
- <comment xml:lang="he">מסמך T602</comment>
- <comment xml:lang="hr">T602 dokument</comment>
- <comment xml:lang="hu">T602 dokumentum</comment>
- <comment xml:lang="ia">Documento T602</comment>
- <comment xml:lang="id">Dokumen T602</comment>
- <comment xml:lang="it">Documento T602</comment>
- <comment xml:lang="ja">T602 ドキュメント</comment>
- <comment xml:lang="kk">T602 құжаты</comment>
- <comment xml:lang="ko">T602 문서</comment>
- <comment xml:lang="lt">T602 dokumentas</comment>
- <comment xml:lang="lv">T602 dokuments</comment>
- <comment xml:lang="nb">T602-dokument</comment>
- <comment xml:lang="nl">T602-document</comment>
- <comment xml:lang="nn">T602-dokument</comment>
- <comment xml:lang="oc">document T602</comment>
- <comment xml:lang="pl">Dokument T602</comment>
- <comment xml:lang="pt">documento T602</comment>
- <comment xml:lang="pt_BR">Documento T602</comment>
- <comment xml:lang="ro">Document T602</comment>
- <comment xml:lang="ru">Документ T602</comment>
- <comment xml:lang="sk">Dokument T602</comment>
- <comment xml:lang="sl">Dokument T602</comment>
- <comment xml:lang="sq">Dokument T602</comment>
- <comment xml:lang="sr">Т602 документ</comment>
- <comment xml:lang="sv">T602-dokument</comment>
- <comment xml:lang="tr">T602 belgesi</comment>
- <comment xml:lang="uk">документ T602</comment>
- <comment xml:lang="vi">Tài liệu T602</comment>
- <comment xml:lang="zh_CN">T602 文档</comment>
<comment xml:lang="zh_TW">T602 文件</comment>
+ <comment xml:lang="zh_CN">T602 文档</comment>
+ <comment xml:lang="vi">Tài liệu T602</comment>
+ <comment xml:lang="uk">документ T602</comment>
+ <comment xml:lang="tr">T602 belgesi</comment>
+ <comment xml:lang="sv">T602-dokument</comment>
+ <comment xml:lang="sr">Т602 документ</comment>
+ <comment xml:lang="sq">dokument T602</comment>
+ <comment xml:lang="sl">Dokument T602</comment>
+ <comment xml:lang="si">T602 ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument T602</comment>
+ <comment xml:lang="ru">Документ T602</comment>
+ <comment xml:lang="ro">Document T602</comment>
+ <comment xml:lang="pt_BR">Documento T602</comment>
+ <comment xml:lang="pt">documento T602</comment>
+ <comment xml:lang="pl">Dokument T602</comment>
+ <comment xml:lang="oc">document T602</comment>
+ <comment xml:lang="nn">T602-dokument</comment>
+ <comment xml:lang="nl">T602-document</comment>
+ <comment xml:lang="nb">T602-dokument</comment>
+ <comment xml:lang="lv">T602 dokuments</comment>
+ <comment xml:lang="lt">T602 dokumentas</comment>
+ <comment xml:lang="ko">T602 문서</comment>
+ <comment xml:lang="kk">T602 құжаты</comment>
+ <comment xml:lang="ja">T602 ドキュメント</comment>
+ <comment xml:lang="it">Documento T602</comment>
+ <comment xml:lang="is">T602 skjal</comment>
+ <comment xml:lang="id">Dokumen T602</comment>
+ <comment xml:lang="ia">Documento T602</comment>
+ <comment xml:lang="hu">T602 dokumentum</comment>
+ <comment xml:lang="hr">T602 dokument</comment>
+ <comment xml:lang="he">מסמך T602</comment>
+ <comment xml:lang="gl">documento T602</comment>
+ <comment xml:lang="ga">cáipéis T602</comment>
+ <comment xml:lang="fur">document T602</comment>
+ <comment xml:lang="fr">document T602</comment>
+ <comment xml:lang="fo">T602 skjal</comment>
+ <comment xml:lang="fi">T602-asiakirja</comment>
+ <comment xml:lang="eu">T602 dokumentua</comment>
+ <comment xml:lang="es">documento T602</comment>
+ <comment xml:lang="eo">T602-dokumento</comment>
+ <comment xml:lang="en_GB">T602 document</comment>
+ <comment xml:lang="el">Έγγραφο T602</comment>
+ <comment xml:lang="de">T602-Dokument</comment>
+ <comment xml:lang="da">T602-dokument</comment>
+ <comment xml:lang="cs">dokument T602</comment>
+ <comment xml:lang="ca">document T602</comment>
+ <comment xml:lang="bg">Документ — T602</comment>
+ <comment xml:lang="be@latin">Dakument T602</comment>
+ <comment xml:lang="be">дакумент T602</comment>
+ <comment xml:lang="ast">Documentu T602</comment>
+ <comment xml:lang="ar">مستند T602</comment>
+ <comment xml:lang="af">T602-dokument</comment>
<generic-icon name="x-office-document"/>
- <magic priority="50">
- <match value="@CT 0" type="string" offset="0"/>
- <match value="@CT 1" type="string" offset="0"/>
- <match value="@CT 2" type="string" offset="0"/>
+ <magic>
+ <match offset="0" type="string" value="@CT 0"/>
+ <match offset="0" type="string" value="@CT 1"/>
+ <match offset="0" type="string" value="@CT 2"/>
</magic>
<glob pattern="*.602"/>
</mime-type>
<mime-type type="application/x-cisco-vpn-settings">
- <comment>Cisco VPN Settings</comment>
- <comment xml:lang="ar">إعدادات Cisco VPN</comment>
- <comment xml:lang="be@latin">Nałady Cisco VPN</comment>
- <comment xml:lang="bg">Настройки — ВЧМ на Cisco</comment>
- <comment xml:lang="ca">ajusts VPN de Cisco</comment>
- <comment xml:lang="cs">nastavení Cisco VPN</comment>
- <comment xml:lang="da">Cisco VPN-opsætning</comment>
- <comment xml:lang="de">Cisco-VPN-Einstellungen</comment>
- <comment xml:lang="el">Ρυθμίσεις Cisco VPN</comment>
- <comment xml:lang="en_GB">Cisco VPN Settings</comment>
- <comment xml:lang="es">configuración de VPN de Cisco</comment>
- <comment xml:lang="eu">Cisco VPN ezarpenak</comment>
- <comment xml:lang="fi">Cisco VPN -asetukset</comment>
- <comment xml:lang="fo">Cisco VPN stillingar</comment>
- <comment xml:lang="fr">paramètres VPN Cisco</comment>
- <comment xml:lang="ga">socruithe VPN Cisco</comment>
- <comment xml:lang="gl">configuracións de VPN de Cisco</comment>
- <comment xml:lang="he">הגדרות של Cisco VPN</comment>
- <comment xml:lang="hr">Cisco VPN postavke</comment>
- <comment xml:lang="hu">Cisco VPN beállítások</comment>
- <comment xml:lang="ia">Configuration VPN Cisco</comment>
- <comment xml:lang="id">Penataan Cisco VPN</comment>
- <comment xml:lang="it">Impostazioni VPN Cisco</comment>
- <comment xml:lang="ja">Cisco VPN 設定</comment>
- <comment xml:lang="ka">Cisco VPN-ის პარამეტრები</comment>
- <comment xml:lang="kk">Cisco VPN баптаулары</comment>
- <comment xml:lang="ko">Cisco VPN 설정</comment>
- <comment xml:lang="lt">Cisco VPN parametrai</comment>
- <comment xml:lang="lv">Cisco VPN iestatījumi</comment>
- <comment xml:lang="nb">Cisco VPN-innstillinger</comment>
- <comment xml:lang="nl">Cisco VPN-instellingen</comment>
- <comment xml:lang="nn">Cisco VPN-innstillingar</comment>
- <comment xml:lang="oc">paramètres VPN Cisco</comment>
- <comment xml:lang="pl">Ustawienia VPN Cisco</comment>
- <comment xml:lang="pt">definições de Cisco VPN</comment>
- <comment xml:lang="pt_BR">Configurações de VPN da Cisco</comment>
- <comment xml:lang="ro">Configurări VPN Cisco</comment>
- <comment xml:lang="ru">Файл настроек Cisco VPN</comment>
- <comment xml:lang="sk">Nastavenia Cisco VPN</comment>
- <comment xml:lang="sl">Datoteka nastavitev Cisco VPN</comment>
- <comment xml:lang="sq">Rregullime VPN Cisco</comment>
- <comment xml:lang="sr">подешавања Циско ВПН-а</comment>
- <comment xml:lang="sv">Cisco VPN-inställningar</comment>
- <comment xml:lang="tr">Cisco VPN Ayarları</comment>
- <comment xml:lang="uk">параметри VPN Cisco</comment>
- <comment xml:lang="vi">Thiết lập VPN Cisco</comment>
+ <comment>Cisco VPN settings</comment>
+ <comment xml:lang="zh_TW">Cisco VPN 設定</comment>
<comment xml:lang="zh_CN">Cisco VPN 设置</comment>
- <comment xml:lang="zh_TW">Cisco VPN 設定值</comment>
+ <comment xml:lang="uk">параметри VPN Cisco</comment>
+ <comment xml:lang="tr">Cisco VPN ayarları</comment>
+ <comment xml:lang="sv">Cisco VPN-inställningar</comment>
+ <comment xml:lang="sq">rregullime VPN-je Cisco</comment>
+ <comment xml:lang="sl">Nastavitve Cisco VPN</comment>
+ <comment xml:lang="si">Cisco VPN සැකසුම්</comment>
+ <comment xml:lang="sk">Nastavenia Cisco VPN</comment>
+ <comment xml:lang="ru">Файл настроек Cisco VPN</comment>
+ <comment xml:lang="pt_BR">Configurações de VPN da Cisco</comment>
+ <comment xml:lang="pl">Ustawienia VPN Cisco</comment>
+ <comment xml:lang="oc">paramètres VPN Cisco</comment>
+ <comment xml:lang="nl">Cisco VPN-instellingen</comment>
+ <comment xml:lang="ko">시스코 VPN 설정</comment>
+ <comment xml:lang="kk">Cisco VPN баптаулары</comment>
+ <comment xml:lang="ja">Cisco VPN 設定</comment>
+ <comment xml:lang="it">Impostazioni VPN Cisco</comment>
+ <comment xml:lang="is">Cisco VPN-stillingar</comment>
+ <comment xml:lang="id">Pengaturan VPN Cisco</comment>
+ <comment xml:lang="hu">Cisco VPN beállítások</comment>
+ <comment xml:lang="hr">Cisco VPN postavke</comment>
+ <comment xml:lang="he">הגדרות VPN של Cisco</comment>
+ <comment xml:lang="gl">Configuracións de Cisco VPN</comment>
+ <comment xml:lang="fr">paramètres VPN Cisco</comment>
+ <comment xml:lang="fi">Ciscon VPN-asetukset</comment>
+ <comment xml:lang="eu">Cisco VPN ezarpenak</comment>
+ <comment xml:lang="es">configuración de Cisco VPN</comment>
+ <comment xml:lang="en_GB">Cisco VPN settings</comment>
+ <comment xml:lang="de">Cisco-VPN-Einstellungen</comment>
+ <comment xml:lang="da">Cisco VPN-indstillinger</comment>
+ <comment xml:lang="ca">ajusts VPN de Cisco</comment>
+ <comment xml:lang="bg">Настройки — ВЧМ на Cisco</comment>
+ <comment xml:lang="be">налады Cisco VPN</comment>
+ <comment xml:lang="ar">إعدادات Cisco VPN</comment>
+ <sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
- <magic priority="50">
- <match value="[main]" type="string" offset="0">
- <match value="AuthType=" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="[main]" offset="0">
+ <match type="string" value="AuthType=" offset="0:256"/>
</match>
</magic>
<glob pattern="*.pcf"/>
</mime-type>
<mime-type type="application/vnd.iccprofile">
<comment>ICC profile</comment>
- <comment xml:lang="ar">تشكيلة OCL</comment>
- <comment xml:lang="ast">Perfil ICC</comment>
- <comment xml:lang="bg">Цветови профил — OCL</comment>
- <comment xml:lang="ca">perfil ICC</comment>
- <comment xml:lang="cs">profil ICC</comment>
- <comment xml:lang="da">ICC-profil</comment>
- <comment xml:lang="de">ICC-Profil</comment>
- <comment xml:lang="el">Προφίλ ICC</comment>
- <comment xml:lang="en_GB">ICC profile</comment>
- <comment xml:lang="eo">ICC-profilo</comment>
- <comment xml:lang="es">perfil ICC</comment>
- <comment xml:lang="eu">ICC profila</comment>
- <comment xml:lang="fi">ICC-profiili</comment>
- <comment xml:lang="fo">ICC umhvarv</comment>
- <comment xml:lang="fr">profil ICC</comment>
- <comment xml:lang="ga">próifíl ICC</comment>
- <comment xml:lang="gl">perfíl ICC</comment>
- <comment xml:lang="he">פרופיל ICC</comment>
- <comment xml:lang="hr">ICC profil</comment>
- <comment xml:lang="hu">ICC profil</comment>
- <comment xml:lang="ia">Profilo ICC</comment>
- <comment xml:lang="id">Profil ICC</comment>
- <comment xml:lang="it">Profilo ICC</comment>
- <comment xml:lang="ja">ICC プロファイル</comment>
- <comment xml:lang="kk">ICC профайлы</comment>
- <comment xml:lang="ko">ICC 프로필</comment>
- <comment xml:lang="lt">ICC profilis</comment>
- <comment xml:lang="lv">ICC profils</comment>
- <comment xml:lang="nl">ICC profiel</comment>
- <comment xml:lang="oc">perfil ICC</comment>
- <comment xml:lang="pl">Profil ICC</comment>
- <comment xml:lang="pt">perfil ICC</comment>
- <comment xml:lang="pt_BR">Perfil ICC</comment>
- <comment xml:lang="ro">Profil ICC</comment>
- <comment xml:lang="ru">Профиль ICC</comment>
- <comment xml:lang="sk">Profil farieb ICC</comment>
- <comment xml:lang="sl">Datoteka profila ICC</comment>
- <comment xml:lang="sr">ИЦЦ профил</comment>
- <comment xml:lang="sv">ICC-profil</comment>
- <comment xml:lang="tr">ICC profili</comment>
- <comment xml:lang="uk">профіль ICC</comment>
+ <comment xml:lang="zh_TW">ICC 設定組合</comment>
<comment xml:lang="zh_CN">ICC 配置文件</comment>
- <comment xml:lang="zh_TW">ICC 設定檔</comment>
- <magic priority="50">
- <match value="acsp" type="string" offset="36"/>
+ <comment xml:lang="uk">профіль ICC</comment>
+ <comment xml:lang="tr">ICC profili</comment>
+ <comment xml:lang="sv">ICC-profil</comment>
+ <comment xml:lang="sr">ИЦЦ профил</comment>
+ <comment xml:lang="sq">profil ICC</comment>
+ <comment xml:lang="sl">Datoteka profila ICC</comment>
+ <comment xml:lang="si">ICC පැතිකඩ</comment>
+ <comment xml:lang="sk">Profil farieb ICC</comment>
+ <comment xml:lang="ru">Профиль ICC</comment>
+ <comment xml:lang="ro">Profil ICC</comment>
+ <comment xml:lang="pt_BR">Perfil ICC</comment>
+ <comment xml:lang="pt">perfil ICC</comment>
+ <comment xml:lang="pl">Profil ICC</comment>
+ <comment xml:lang="oc">perfil ICC</comment>
+ <comment xml:lang="nl">ICC-profiel</comment>
+ <comment xml:lang="lv">ICC profils</comment>
+ <comment xml:lang="lt">ICC profilis</comment>
+ <comment xml:lang="ko">ICC 프로필</comment>
+ <comment xml:lang="kk">ICC профайлы</comment>
+ <comment xml:lang="ka">ICC პროფილი</comment>
+ <comment xml:lang="ja">ICC プロファイル</comment>
+ <comment xml:lang="it">Profilo ICC</comment>
+ <comment xml:lang="is">ICC snið</comment>
+ <comment xml:lang="id">Profil ICC</comment>
+ <comment xml:lang="ia">Profilo ICC</comment>
+ <comment xml:lang="hu">ICC profil</comment>
+ <comment xml:lang="hr">ICC profil</comment>
+ <comment xml:lang="he">פרופיל ICC</comment>
+ <comment xml:lang="gl">perfíl ICC</comment>
+ <comment xml:lang="ga">próifíl ICC</comment>
+ <comment xml:lang="fur">profîl ICC</comment>
+ <comment xml:lang="fr">profil ICC</comment>
+ <comment xml:lang="fo">ICC umhvarv</comment>
+ <comment xml:lang="fi">ICC-profiili</comment>
+ <comment xml:lang="eu">ICC profila</comment>
+ <comment xml:lang="es">perfil ICC</comment>
+ <comment xml:lang="eo">ICC-profilo</comment>
+ <comment xml:lang="en_GB">ICC profile</comment>
+ <comment xml:lang="el">Προφίλ ICC</comment>
+ <comment xml:lang="de">ICC-Profil</comment>
+ <comment xml:lang="da">ICC-profil</comment>
+ <comment xml:lang="cs">profil ICC</comment>
+ <comment xml:lang="ca">perfil ICC</comment>
+ <comment xml:lang="bg">Цветови профил — OCL</comment>
+ <comment xml:lang="be">профіль ICC</comment>
+ <comment xml:lang="ast">Perfil ICC</comment>
+ <comment xml:lang="ar">تشكيلة ICC</comment>
+ <comment xml:lang="af">ICC-profiel</comment>
+ <acronym>ICC</acronym>
+ <expanded-acronym>International Color Consortium</expanded-acronym>
+ <magic>
+ <match type="string" value="acsp" offset="36"/>
</magic>
<glob pattern="*.icc"/>
<glob pattern="*.icm"/>
</mime-type>
<mime-type type="application/x-it87">
<comment>IT 8.7 color calibration file</comment>
- <comment xml:lang="ar">ملف ضبط ألوان IT 8.7</comment>
- <comment xml:lang="bg">Файл за цветово калибриране — IT 8.7</comment>
- <comment xml:lang="ca">fitxer de calibratge de color IT 8.7</comment>
- <comment xml:lang="cs">soubor kalibrace barev IT 8.7</comment>
- <comment xml:lang="da">IT 8.7 farvekalibreringsfil</comment>
- <comment xml:lang="de">IT 8.7-Farbkalibrierungsdatei</comment>
- <comment xml:lang="el">Αρχείο βαθμονόμησης χρώματος ΙΤ 8.7</comment>
- <comment xml:lang="en_GB">IT 8.7 color calibration file</comment>
- <comment xml:lang="es">archivo de calibración de color IT 8.7</comment>
- <comment xml:lang="eu">IT 8.7 kolore-kalibrazioaren fitxategia</comment>
- <comment xml:lang="fi">IT 8.7 -värikalibrointitiedosto</comment>
- <comment xml:lang="fo">IT 8.7 litstillingarfíla</comment>
- <comment xml:lang="fr">fichier de calibration couleur IT 8.7</comment>
- <comment xml:lang="ga">comhad calabraithe dathanna IT 8.7</comment>
- <comment xml:lang="gl">ficheiro de calibración de cor IT 8.7</comment>
- <comment xml:lang="he">קובץ כיול צבע IT 8.7</comment>
- <comment xml:lang="hr">IT 8.7 datoteka kalibracije boja</comment>
- <comment xml:lang="hu">IT 8.7 színkalibrációs fájl</comment>
- <comment xml:lang="ia">File de calibration de colores IT 8.7</comment>
- <comment xml:lang="id">Berkas kalibrasi warna IT 8.7</comment>
- <comment xml:lang="it">File calibrazione colore IT 8.7</comment>
- <comment xml:lang="ja">IT 8.7 カラーキャリブレーションファイル</comment>
- <comment xml:lang="kk">IT 8.7 түс баптау файлы</comment>
- <comment xml:lang="ko">IT 8.7 색 조율 파일</comment>
- <comment xml:lang="lt">IT 8.7 spalvų kalibravimo failas</comment>
- <comment xml:lang="lv">IT 8.7 krāsu kalibrācijas datne</comment>
- <comment xml:lang="nl">IT 8.7 kleurcalibratie bestand</comment>
- <comment xml:lang="oc">fichièr de calibracion color IT 8.7</comment>
- <comment xml:lang="pl">Plik kalibracji kolorów IT 8.7</comment>
- <comment xml:lang="pt">ficheiro de calibração de cor IT 8.7</comment>
- <comment xml:lang="pt_BR">Arquivo de calibração de cor IT 8.7</comment>
- <comment xml:lang="ro">Fișier de calibrare a culorii IT 8.7</comment>
- <comment xml:lang="ru">Файл калибровки цвета IT 8.7</comment>
- <comment xml:lang="sk">Súbor kalibrácie farieb IT 8.7</comment>
- <comment xml:lang="sl">Umeritvena datoteka barve IT 8.7</comment>
- <comment xml:lang="sr">ИТ 8.7 датотека калибрације боје</comment>
- <comment xml:lang="sv">IT 8.7-färgkalibreringsfil</comment>
- <comment xml:lang="tr">IT 8.7 renk kalibrasyon dosyası</comment>
- <comment xml:lang="uk">файл калібрування кольорів IT 8.7</comment>
- <comment xml:lang="zh_CN">IT 8.7 色彩校准文件</comment>
<comment xml:lang="zh_TW">IT 8.7 色彩校正檔</comment>
- <magic priority="50">
- <match value="IT8.7" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">IT 8.7 色彩校准文件</comment>
+ <comment xml:lang="uk">файл калібрування кольорів IT 8.7</comment>
+ <comment xml:lang="tr">IT 8.7 renk kalibrasyon dosyası</comment>
+ <comment xml:lang="sv">IT 8.7-färgkalibreringsfil</comment>
+ <comment xml:lang="sr">ИТ 8.7 датотека калибрације боје</comment>
+ <comment xml:lang="sq">kartelë kalibrimi ngjyrash IT 8.7</comment>
+ <comment xml:lang="sl">Umeritvena datoteka barve IT 8.7</comment>
+ <comment xml:lang="si">IT 8.7 වර්ණ ක්‍රමාංකන ගොනුව</comment>
+ <comment xml:lang="sk">Súbor kalibrácie farieb IT 8.7</comment>
+ <comment xml:lang="ru">Файл калибровки цвета IT 8.7</comment>
+ <comment xml:lang="ro">Fișier de calibrare a culorii IT 8.7</comment>
+ <comment xml:lang="pt_BR">Arquivo de calibração de cor IT 8.7</comment>
+ <comment xml:lang="pt">ficheiro de calibração de cor IT 8.7</comment>
+ <comment xml:lang="pl">Plik kalibracji kolorów IT 8.7</comment>
+ <comment xml:lang="oc">fichièr de calibracion color IT 8.7</comment>
+ <comment xml:lang="nl">IT 8.7-kleurcalibratiebestand</comment>
+ <comment xml:lang="lv">IT 8.7 krāsu kalibrācijas datne</comment>
+ <comment xml:lang="lt">IT 8.7 spalvų kalibravimo failas</comment>
+ <comment xml:lang="ko">IT 8.7 색 조율 파일</comment>
+ <comment xml:lang="kk">IT 8.7 түс баптау файлы</comment>
+ <comment xml:lang="ja">IT 8.7 カラーキャリブレーションファイル</comment>
+ <comment xml:lang="it">File calibrazione colore IT 8.7</comment>
+ <comment xml:lang="is">IT 8.7 litkvörðunarskrá</comment>
+ <comment xml:lang="id">Berkas kalibrasi warna IT 8.7</comment>
+ <comment xml:lang="ia">File de calibration de colores IT 8.7</comment>
+ <comment xml:lang="hu">IT 8.7 színkalibrációs fájl</comment>
+ <comment xml:lang="hr">IT 8.7 datoteka kalibracije boja</comment>
+ <comment xml:lang="he">קובץ כיול צבע IT 8.7</comment>
+ <comment xml:lang="gl">ficheiro de calibración de cor IT 8.7</comment>
+ <comment xml:lang="ga">comhad calabraithe dathanna IT 8.7</comment>
+ <comment xml:lang="fur">file calibradure colôr IT 8.7</comment>
+ <comment xml:lang="fr">fichier de calibration couleur IT 8.7</comment>
+ <comment xml:lang="fo">IT 8.7 litstillingarfíla</comment>
+ <comment xml:lang="fi">IT 8.7 -värikalibrointitiedosto</comment>
+ <comment xml:lang="eu">IT 8.7 kolore-kalibrazioaren fitxategia</comment>
+ <comment xml:lang="es">archivo de calibración de color IT 8.7</comment>
+ <comment xml:lang="en_GB">IT 8.7 color calibration file</comment>
+ <comment xml:lang="el">Αρχείο βαθμονόμησης χρώματος ΙΤ 8.7</comment>
+ <comment xml:lang="de">IT-8.7-Farbkalibrierungsdatei</comment>
+ <comment xml:lang="da">IT 8.7 farvekalibreringsfil</comment>
+ <comment xml:lang="cs">soubor kalibrace barev IT 8.7</comment>
+ <comment xml:lang="ca">fitxer de calibratge de color IT 8.7</comment>
+ <comment xml:lang="bg">Цветово калибриране — IT 8.7</comment>
+ <comment xml:lang="be">файл каліброўкі колеру IT 8.7</comment>
+ <comment xml:lang="ar">ملف ضبط ألوان IT 8.7</comment>
+ <magic>
+ <match type="string" value="IT8.7" offset="0"/>
</magic>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
@@ -39650,43 +42437,51 @@
</mime-type>
<mime-type type="application/x-ccmx">
<comment>CCMX color correction file</comment>
- <comment xml:lang="ca">fitxer de correcció de color CCMX</comment>
- <comment xml:lang="cs">soubor korekce barev CCMX</comment>
- <comment xml:lang="da">CCMX-farvekorrektionsfil</comment>
- <comment xml:lang="de">CCMX-Farbkorrekturdatei</comment>
- <comment xml:lang="el">Αρχείο διόρθωσης χρωμάτων CCMX</comment>
- <comment xml:lang="en_GB">CCMX colour correction file</comment>
- <comment xml:lang="es">archivo de corrección de color CCMX</comment>
- <comment xml:lang="eu">CCMX kolore-kalibrazioaren fitxategia</comment>
- <comment xml:lang="fi">CCMX-värikorjaustiedosto</comment>
- <comment xml:lang="fr">fichier de correction colorimétrique CCMX</comment>
- <comment xml:lang="ga">comhad ceartúchán dathanna CCMX</comment>
- <comment xml:lang="gl">Ficheiro de corrección de cor CCMX</comment>
- <comment xml:lang="he">קובץ תיקון צבע מסוג CCMX</comment>
- <comment xml:lang="hr">CCMX datotkea ispravka boja</comment>
- <comment xml:lang="hu">CCMX színjavítási fájl</comment>
- <comment xml:lang="ia">File de correction de colores CCMX</comment>
- <comment xml:lang="id">Berkas koreksi warna CCMX</comment>
- <comment xml:lang="it">File correzione colore CCMX</comment>
- <comment xml:lang="ja">CCMX カラー訂正ファイル</comment>
- <comment xml:lang="kk">CCMX түсті келтіру файлы</comment>
- <comment xml:lang="ko">CCMX 색상 보정 파일</comment>
- <comment xml:lang="lv">CCMX krāsu korekciju datne</comment>
- <comment xml:lang="oc">fichièr de correccion colorimetrica CCMX</comment>
- <comment xml:lang="pl">Plik korekcji kolorów CCMX</comment>
- <comment xml:lang="pt">ficheiro de correção de cor CCMX</comment>
- <comment xml:lang="pt_BR">Arquivo de correção de cor CCMX</comment>
- <comment xml:lang="ru">Файл цветовой коррекции CCMX</comment>
- <comment xml:lang="sk">Súbor korekcie farieb CCMX</comment>
- <comment xml:lang="sl">Datoteka barvne poprave CCMX</comment>
- <comment xml:lang="sr">ЦЦМИкс датотека поправке боје</comment>
- <comment xml:lang="sv">CCMX-färgkorrigeringsfil</comment>
- <comment xml:lang="tr">CCMX renk düzeltme dosyası</comment>
- <comment xml:lang="uk">файл даних виправлення кольорів CCMX</comment>
- <comment xml:lang="zh_CN">CCMX 色彩校准文件</comment>
<comment xml:lang="zh_TW">CCMX 色彩校正檔</comment>
- <magic priority="50">
- <match value="CCMX" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">CCMX 色彩校准文件</comment>
+ <comment xml:lang="uk">файл даних виправлення кольорів CCMX</comment>
+ <comment xml:lang="tr">CCMX renk düzeltme dosyası</comment>
+ <comment xml:lang="sv">CCMX-färgkorrigeringsfil</comment>
+ <comment xml:lang="sr">ЦЦМИкс датотека поправке боје</comment>
+ <comment xml:lang="sq">kartelë saktësimi ngjyrash CCMX</comment>
+ <comment xml:lang="sl">Datoteka barvne poprave CCMX</comment>
+ <comment xml:lang="si">CCMX වර්ණ නිවැරදි කිරීමේ ගොනුව</comment>
+ <comment xml:lang="sk">Súbor korekcie farieb CCMX</comment>
+ <comment xml:lang="ru">Файл цветовой коррекции CCMX</comment>
+ <comment xml:lang="pt_BR">Arquivo de correção de cor CCMX</comment>
+ <comment xml:lang="pt">ficheiro de correção de cor CCMX</comment>
+ <comment xml:lang="pl">Plik korekcji kolorów CCMX</comment>
+ <comment xml:lang="oc">fichièr de correccion colorimetrica CCMX</comment>
+ <comment xml:lang="nl">CCMX-kleurcorrectiebestand</comment>
+ <comment xml:lang="lv">CCMX krāsu korekciju datne</comment>
+ <comment xml:lang="ko">CCMX 색상 보정 파일</comment>
+ <comment xml:lang="kk">CCMX түсті келтіру файлы</comment>
+ <comment xml:lang="ja">CCMX カラー訂正ファイル</comment>
+ <comment xml:lang="it">File correzione colore CCMX</comment>
+ <comment xml:lang="is">CCMX litleiðréttingarskrá</comment>
+ <comment xml:lang="id">Berkas koreksi warna CCMX</comment>
+ <comment xml:lang="ia">File de correction de colores CCMX</comment>
+ <comment xml:lang="hu">CCMX színjavítási fájl</comment>
+ <comment xml:lang="hr">CCMX datotkea ispravka boja</comment>
+ <comment xml:lang="he">קובץ תיקון צבע מסוג CCMX</comment>
+ <comment xml:lang="gl">Ficheiro de corrección de cor CCMX</comment>
+ <comment xml:lang="ga">comhad ceartúchán dathanna CCMX</comment>
+ <comment xml:lang="fur">file corezion colôr CCMX</comment>
+ <comment xml:lang="fr">fichier de correction colorimétrique CCMX</comment>
+ <comment xml:lang="fi">CCMX-värikorjaustiedosto</comment>
+ <comment xml:lang="eu">CCMX kolore-kalibrazioaren fitxategia</comment>
+ <comment xml:lang="es">archivo de corrección de color CCMX</comment>
+ <comment xml:lang="en_GB">CCMX colour correction file</comment>
+ <comment xml:lang="el">Αρχείο διόρθωσης χρωμάτων CCMX</comment>
+ <comment xml:lang="de">CCMX-Farbkorrekturdatei</comment>
+ <comment xml:lang="da">CCMX-farvekorrektionsfil</comment>
+ <comment xml:lang="cs">soubor korekce barev CCMX</comment>
+ <comment xml:lang="ca">fitxer de correcció de color CCMX</comment>
+ <comment xml:lang="bg">Цветови поправки — CCMX</comment>
+ <comment xml:lang="be">файл карэкцыі колеру CCMX</comment>
+ <comment xml:lang="ar">ملف تصحيح لون CCMX</comment>
+ <magic>
+ <match type="string" value="CCMX" offset="0"/>
</magic>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
@@ -39694,1150 +42489,962 @@
</mime-type>
<mime-type type="application/winhlp">
<comment>WinHelp help file</comment>
- <comment xml:lang="ca">fitxer d'ajuda WinHelp</comment>
- <comment xml:lang="cs">soubor nápovědy WinHelp</comment>
- <comment xml:lang="da">WinHelp-hjælpefil</comment>
- <comment xml:lang="de">WinHelp-Hilfedatei</comment>
- <comment xml:lang="el">Αρχείο βοήθειας WinHelp</comment>
- <comment xml:lang="en_GB">WinHelp help file</comment>
- <comment xml:lang="es">archivo de ayuda de WinHelp</comment>
- <comment xml:lang="eu">WinHelp laguntza fitxategia</comment>
- <comment xml:lang="fi">WinHelp-ohjetiedosto</comment>
- <comment xml:lang="fr">fichier d'aide WinHelp</comment>
- <comment xml:lang="ga">comhad cabhrach WinHelp</comment>
- <comment xml:lang="gl">Ficheiro de axuda WinHelp</comment>
- <comment xml:lang="he">קובץ עזרה מסוג WinHelp</comment>
- <comment xml:lang="hr">WinHelp datoteka pomoći</comment>
- <comment xml:lang="hu">WinHelp súgófájl</comment>
- <comment xml:lang="ia">File de adjuta WinHelp</comment>
- <comment xml:lang="id">Berkas bantuan WinHelp</comment>
- <comment xml:lang="it">File aiuto WInHelp</comment>
- <comment xml:lang="ja">WinHelp ヘルプファイル</comment>
- <comment xml:lang="kk">WinHelp көмек файлы</comment>
- <comment xml:lang="ko">WinHelp 도움말 파일</comment>
- <comment xml:lang="lv">WinHelp palīdzības datne</comment>
- <comment xml:lang="oc">fichièr d'ajuda WinHelp</comment>
- <comment xml:lang="pl">Plik pomocy WinHelp</comment>
- <comment xml:lang="pt">ficheiro de ajuda WinHelp</comment>
- <comment xml:lang="pt_BR">Arquivo de ajuda WinHelp</comment>
- <comment xml:lang="ru">Файл справки WinHelp</comment>
- <comment xml:lang="sk">Súbor Pomocníka WinHelp</comment>
- <comment xml:lang="sl">Datoteka pomoči WinHelp</comment>
- <comment xml:lang="sr">датотека помоћи Вин хелпа</comment>
- <comment xml:lang="sv">WinHelp-hjälpfil</comment>
- <comment xml:lang="tr">WinHelp yardım dosyası</comment>
- <comment xml:lang="uk">файл довідки WinHelp</comment>
- <comment xml:lang="zh_CN">WinHelp 帮助文件</comment>
<comment xml:lang="zh_TW">WinHelp 說明檔</comment>
- <magic priority="50">
- <match value="0x00035f3f" type="little32" offset="0"/>
+ <comment xml:lang="zh_CN">WinHelp 帮助文件</comment>
+ <comment xml:lang="uk">файл довідки WinHelp</comment>
+ <comment xml:lang="tr">WinHelp yardım dosyası</comment>
+ <comment xml:lang="sv">WinHelp-hjälpfil</comment>
+ <comment xml:lang="sr">датотека помоћи Вин хелпа</comment>
+ <comment xml:lang="sq">kartelë ndihme WinHelp</comment>
+ <comment xml:lang="sl">Datoteka pomoči WinHelp</comment>
+ <comment xml:lang="si">WinHelp උදව් ගොනුව</comment>
+ <comment xml:lang="sk">Súbor Pomocníka WinHelp</comment>
+ <comment xml:lang="ru">Файл справки WinHelp</comment>
+ <comment xml:lang="pt_BR">Arquivo de ajuda WinHelp</comment>
+ <comment xml:lang="pt">ficheiro de ajuda WinHelp</comment>
+ <comment xml:lang="pl">Plik pomocy WinHelp</comment>
+ <comment xml:lang="oc">fichièr d'ajuda WinHelp</comment>
+ <comment xml:lang="nl">WinHelp-hulpbestand</comment>
+ <comment xml:lang="lv">WinHelp palīdzības datne</comment>
+ <comment xml:lang="ko">WinHelp 도움말 파일</comment>
+ <comment xml:lang="kk">WinHelp көмек файлы</comment>
+ <comment xml:lang="ja">WinHelp ヘルプファイル</comment>
+ <comment xml:lang="it">File aiuto WInHelp</comment>
+ <comment xml:lang="is">WinHelp-hjálparskrá</comment>
+ <comment xml:lang="id">Berkas bantuan WinHelp</comment>
+ <comment xml:lang="ia">File de adjuta WinHelp</comment>
+ <comment xml:lang="hu">WinHelp súgófájl</comment>
+ <comment xml:lang="hr">WinHelp datoteka pomoći</comment>
+ <comment xml:lang="he">קובץ עזרה מסוג WinHelp</comment>
+ <comment xml:lang="gl">Ficheiro de axuda WinHelp</comment>
+ <comment xml:lang="ga">comhad cabhrach WinHelp</comment>
+ <comment xml:lang="fur">file di jutori WinHelp</comment>
+ <comment xml:lang="fr">fichier d'aide WinHelp</comment>
+ <comment xml:lang="fi">WinHelp-ohjetiedosto</comment>
+ <comment xml:lang="eu">WinHelp laguntza fitxategia</comment>
+ <comment xml:lang="es">archivo de ayuda de WinHelp</comment>
+ <comment xml:lang="en_GB">WinHelp help file</comment>
+ <comment xml:lang="el">Αρχείο βοήθειας WinHelp</comment>
+ <comment xml:lang="de">WinHelp-Hilfedatei</comment>
+ <comment xml:lang="da">WinHelp-hjælpefil</comment>
+ <comment xml:lang="cs">soubor nápovědy WinHelp</comment>
+ <comment xml:lang="ca">fitxer d'ajuda WinHelp</comment>
+ <comment xml:lang="bg">Помощен файл — WinHelp</comment>
+ <comment xml:lang="be">файл даведкі WinHelp</comment>
+ <comment xml:lang="ar">ملف مساعدة ويندوز</comment>
+ <comment xml:lang="af">WinHelp-hulplêer</comment>
+ <magic>
+ <match type="little32" value="0x00035f3f" offset="0"/>
</magic>
<glob pattern="*.hlp"/>
<alias type="zz-application/zz-winassoc-hlp"/>
</mime-type>
<mime-type type="application/x-bsdiff">
- <comment>binary differences between files</comment>
- <comment xml:lang="ca">diferencies binàries entre fitxers</comment>
- <comment xml:lang="cs">binární rozdíl mezi soubory</comment>
- <comment xml:lang="da">binære forskelle mellem filer</comment>
- <comment xml:lang="de">binäre Unterschiede zwischen Dateien</comment>
- <comment xml:lang="en_GB">binary differences between files</comment>
- <comment xml:lang="es">diferencias entre archivos binarios</comment>
- <comment xml:lang="eu">fitxategi binarioen arteko ezberdinstasunak</comment>
- <comment xml:lang="fr">différences binaires entre fichiers</comment>
- <comment xml:lang="ga">difríochtaí dénártha idir comhaid</comment>
- <comment xml:lang="he">הבדלים בינריים בין קבצים</comment>
- <comment xml:lang="hr">Binarne razlike između datoteka</comment>
- <comment xml:lang="hu">bináris különbségfájl</comment>
- <comment xml:lang="id">perbedaan biner antar berkas</comment>
- <comment xml:lang="it">Differenze binarie tra file</comment>
- <comment xml:lang="kk">файлдар арасындағы бинарлық айырмашылықтар</comment>
- <comment xml:lang="ko">바이너리 차이 비교 파일</comment>
- <comment xml:lang="pl">Binarna różnica pomiędzy plikami</comment>
- <comment xml:lang="pt_BR">Diferenças binárias entre arquivos</comment>
- <comment xml:lang="ru">Двоичные различия между файлами</comment>
- <comment xml:lang="sk">Binárne rozdiely medzi súbormi</comment>
- <comment xml:lang="sr">бинарне разлике датотека</comment>
- <comment xml:lang="sv">binära skillnader mellan filer</comment>
- <comment xml:lang="tr">dosyalar arasındaki ikilik farklar</comment>
+ <comment>Binary differences between files</comment>
<comment xml:lang="uk">двійкова різниця між файлами</comment>
- <comment xml:lang="zh_CN">文件的二进制区别</comment>
- <comment xml:lang="zh_TW">檔案間的二進位差異</comment>
+ <comment xml:lang="sv">Binära skillnader mellan filer</comment>
+ <comment xml:lang="ru">Двоичные различия между файлами</comment>
+ <comment xml:lang="pl">Binarna różnica pomiędzy plikami</comment>
+ <comment xml:lang="it">Differenze binarie tra file</comment>
+ <comment xml:lang="eu">Fitxategien arteko diferentzia bitarra</comment>
+ <comment xml:lang="es">diferencias binarias entre archivos</comment>
+ <comment xml:lang="de">Binäre Unterschiede zwischen Dateien</comment>
+ <comment xml:lang="be">бінарныя адрозненні паміж файламі</comment>
<magic>
- <match value="BSDIFF40" type="string" offset="0"/>
- <match value="BSDIFN40" type="string" offset="0"/>
+ <match type="string" value="BSDIFF40" offset="0"/>
+ <match type="string" value="BSDIFN40" offset="0"/>
</magic>
<glob pattern="*.bsdiff"/>
</mime-type>
-
-
+ <!-- Tree content-types -->
<mime-type type="x-content/image-dcf">
-
- <comment>digital photos</comment>
- <comment xml:lang="ar">الصور الرقمية</comment>
- <comment xml:lang="be@latin">ličbavyja zdymki</comment>
- <comment xml:lang="bg">Цифрови фотографии</comment>
- <comment xml:lang="ca">fotos digitals</comment>
- <comment xml:lang="cs">digitální fotografie</comment>
- <comment xml:lang="da">digitale billeder</comment>
- <comment xml:lang="de">Digitale Fotos</comment>
- <comment xml:lang="el">Ψηφιακές φωτογραφίες</comment>
- <comment xml:lang="en_GB">digital photos</comment>
- <comment xml:lang="es">fotos digitales</comment>
- <comment xml:lang="eu">argazki digitalak</comment>
- <comment xml:lang="fi">digivalokuvia</comment>
- <comment xml:lang="fo">talgildar myndir</comment>
- <comment xml:lang="fr">photos numériques</comment>
- <comment xml:lang="ga">grianghraif dhigiteacha</comment>
- <comment xml:lang="gl">fotos dixitais</comment>
- <comment xml:lang="he">תמונות דיגיטליות</comment>
- <comment xml:lang="hr">Digitalne fotografije</comment>
- <comment xml:lang="hu">digitális fényképek</comment>
- <comment xml:lang="ia">Photos digital</comment>
- <comment xml:lang="id">foto digital</comment>
- <comment xml:lang="it">Foto digitali</comment>
- <comment xml:lang="ja">デジタルフォト</comment>
- <comment xml:lang="kk">сандық фотосуреттер</comment>
- <comment xml:lang="ko">디지털 사진</comment>
- <comment xml:lang="lt">skaitmeninės nuotraukos</comment>
- <comment xml:lang="lv">digitāla fotogrāfija</comment>
- <comment xml:lang="nl">digitale foto's</comment>
- <comment xml:lang="nn">digitale fotografi</comment>
- <comment xml:lang="oc">fòtos numericas</comment>
- <comment xml:lang="pl">Zdjęcia cyfrowe</comment>
- <comment xml:lang="pt">fotografias digitais</comment>
- <comment xml:lang="pt_BR">Fotos digitais</comment>
- <comment xml:lang="ro">fotografii digitale</comment>
- <comment xml:lang="ru">Цифровые фотографии</comment>
- <comment xml:lang="sk">Digitálne fotografie</comment>
- <comment xml:lang="sl">digitalne fotografije</comment>
- <comment xml:lang="sq">Fotografi dixhitale</comment>
- <comment xml:lang="sr">дигиталне фотографије</comment>
- <comment xml:lang="sv">digitalbilder</comment>
- <comment xml:lang="tr">sayısal fotoğraflar</comment>
+ <!-- http://en.wikipedia.org/wiki/Design_rule_for_Camera_File_system -->
+ <comment>Digital photos</comment>
<comment xml:lang="uk">цифрові фотографії</comment>
- <comment xml:lang="vi">ảnh chụp số</comment>
- <comment xml:lang="zh_CN">数字化图像</comment>
- <comment xml:lang="zh_TW">數位相片</comment>
+ <comment xml:lang="sv">Digitalbilder</comment>
+ <comment xml:lang="ru">Цифровые фотографии</comment>
+ <comment xml:lang="pt_BR">Fotos digitais</comment>
+ <comment xml:lang="pl">Zdjęcia cyfrowe</comment>
+ <comment xml:lang="it">Foto digitali</comment>
+ <comment xml:lang="gl">Fotos dixitais</comment>
+ <comment xml:lang="eu">Argazki digitalak</comment>
+ <comment xml:lang="es">fotografías digitales</comment>
+ <comment xml:lang="de">Digitale Fotos</comment>
+ <comment xml:lang="be">лічбавыя фатаграфіі</comment>
<treemagic>
- <treematch type="directory" path="dcim" non-empty="true"/>
+ <treematch path="dcim" type="directory" non-empty="true"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/video-vcd">
-
+ <!-- TRANSLATORS: This is a brand-name, not a generic term. Please see
+ http://en.wikipedia.org/wiki/Video_CD
+ http://www.herongyang.com/CD-DVD/VCD-Movie-File-Directory-Structure.html -->
<comment>Video CD</comment>
- <comment xml:lang="ar">Video CD</comment>
- <comment xml:lang="ast">CD de videu</comment>
- <comment xml:lang="be@latin">Videa CD</comment>
- <comment xml:lang="bg">CD — видео</comment>
- <comment xml:lang="ca">Video CD</comment>
- <comment xml:lang="cs">Video CD</comment>
- <comment xml:lang="da">Video-cd</comment>
- <comment xml:lang="de">Video-CD</comment>
- <comment xml:lang="el">Video CD</comment>
- <comment xml:lang="en_GB">Video CD</comment>
- <comment xml:lang="eo">Video-KD</comment>
- <comment xml:lang="es">Video CD</comment>
- <comment xml:lang="eu">Bideo CDa</comment>
- <comment xml:lang="fi">Video CD</comment>
- <comment xml:lang="fo">Video CD</comment>
- <comment xml:lang="fr">CD vidéo</comment>
- <comment xml:lang="ga">dlúthdhiosca físe</comment>
- <comment xml:lang="gl">Video CD</comment>
- <comment xml:lang="he">תקליטור וידאו</comment>
- <comment xml:lang="hr">Video CD</comment>
- <comment xml:lang="hu">Video CD</comment>
- <comment xml:lang="ia">Video CD</comment>
- <comment xml:lang="id">Video CD</comment>
- <comment xml:lang="it">Video CD</comment>
- <comment xml:lang="ja">ビデオ CD</comment>
- <comment xml:lang="kk">видео CD</comment>
- <comment xml:lang="ko">비디오 CD</comment>
- <comment xml:lang="lt">Vaizdo CD</comment>
- <comment xml:lang="lv">Video CD</comment>
- <comment xml:lang="nl">video-CD</comment>
- <comment xml:lang="nn">Video-CD</comment>
- <comment xml:lang="oc">CD vidèo</comment>
- <comment xml:lang="pl">Video CD</comment>
- <comment xml:lang="pt">Video CD</comment>
- <comment xml:lang="pt_BR">CD de vídeo</comment>
- <comment xml:lang="ro">CD video</comment>
- <comment xml:lang="ru">Видео CD</comment>
- <comment xml:lang="sk">Video CD</comment>
- <comment xml:lang="sl">Video CD</comment>
- <comment xml:lang="sq">CD Video</comment>
- <comment xml:lang="sr">Видео ЦД</comment>
- <comment xml:lang="sv">Video-cd</comment>
- <comment xml:lang="tr">Video CD</comment>
- <comment xml:lang="uk">Video CD</comment>
- <comment xml:lang="vi">Đĩa CD ảnh động</comment>
- <comment xml:lang="zh_CN">VCD</comment>
<comment xml:lang="zh_TW">Video CD</comment>
+ <comment xml:lang="zh_CN">VCD</comment>
+ <comment xml:lang="vi">Đĩa CD ảnh động</comment>
+ <comment xml:lang="uk">Video CD</comment>
+ <comment xml:lang="tr">Video CD</comment>
+ <comment xml:lang="sv">Video-cd</comment>
+ <comment xml:lang="sr">Видео ЦД</comment>
+ <comment xml:lang="sq">CD Video</comment>
+ <comment xml:lang="sl">Video CD</comment>
+ <comment xml:lang="si">වීඩියෝ සීඩී</comment>
+ <comment xml:lang="sk">Video CD</comment>
+ <comment xml:lang="ru">Видео CD</comment>
+ <comment xml:lang="ro">CD video</comment>
+ <comment xml:lang="pt_BR">CD de vídeo</comment>
+ <comment xml:lang="pt">Video CD</comment>
+ <comment xml:lang="pl">Video CD</comment>
+ <comment xml:lang="oc">CD vidèo</comment>
+ <comment xml:lang="nn">Video-CD</comment>
+ <comment xml:lang="nl">video-CD</comment>
+ <comment xml:lang="lv">Video CD</comment>
+ <comment xml:lang="lt">Vaizdo CD</comment>
+ <comment xml:lang="ko">비디오 CD</comment>
+ <comment xml:lang="kk">видео CD</comment>
+ <comment xml:lang="ka">ვიდეო CD</comment>
+ <comment xml:lang="ja">ビデオ CD</comment>
+ <comment xml:lang="it">Video CD</comment>
+ <comment xml:lang="is">Video CD-mynddiskur</comment>
+ <comment xml:lang="id">Video CD</comment>
+ <comment xml:lang="ia">Video CD</comment>
+ <comment xml:lang="hu">Video CD</comment>
+ <comment xml:lang="hr">Video CD</comment>
+ <comment xml:lang="he">תקליטור וידאו</comment>
+ <comment xml:lang="gl">Video CD</comment>
+ <comment xml:lang="ga">dlúthdhiosca físe</comment>
+ <comment xml:lang="fur">Video CD</comment>
+ <comment xml:lang="fr">CD vidéo</comment>
+ <comment xml:lang="fo">Video CD</comment>
+ <comment xml:lang="fi">Video CD</comment>
+ <comment xml:lang="eu">Bideo CDa</comment>
+ <comment xml:lang="es">Video CD</comment>
+ <comment xml:lang="eo">Video-KD</comment>
+ <comment xml:lang="en_GB">Video CD</comment>
+ <comment xml:lang="el">Video CD</comment>
+ <comment xml:lang="de">Video-CD</comment>
+ <comment xml:lang="da">Video-cd</comment>
+ <comment xml:lang="cs">Video CD</comment>
+ <comment xml:lang="ca">Video CD</comment>
+ <comment xml:lang="bg">CD — видео</comment>
+ <comment xml:lang="be@latin">Videa CD</comment>
+ <comment xml:lang="be">відэа CD</comment>
+ <comment xml:lang="ast">CD de videu</comment>
+ <comment xml:lang="ar">سي دي فيديو</comment>
+ <comment xml:lang="af">Video-CD</comment>
<treemagic>
- <treematch type="file" path="mpegav/AVSEQ01.DAT"/>
+ <treematch path="mpegav/AVSEQ01.DAT" type="file"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/video-svcd">
-
+ <!-- TRANSLATORS: This is a brand-name, not a generic term. Please see
+ http://en.wikipedia.org/wiki/Super_Video_CD
+ http://everything2.com/index.pl?node_id=1009222 -->
<comment>Super Video CD</comment>
- <comment xml:lang="ar">Super Video CD</comment>
- <comment xml:lang="ast">CD de Super Video</comment>
- <comment xml:lang="be@latin">Super Video CD</comment>
- <comment xml:lang="bg">CD — супер видео</comment>
- <comment xml:lang="ca">Super Video CD</comment>
- <comment xml:lang="cs">Super Video CD</comment>
- <comment xml:lang="da">Super Video-cd</comment>
- <comment xml:lang="de">Super-Video-CD</comment>
- <comment xml:lang="el">Super Video CD</comment>
- <comment xml:lang="en_GB">Super Video CD</comment>
- <comment xml:lang="eo">Super-Video-KD</comment>
- <comment xml:lang="es">Super Video CD</comment>
- <comment xml:lang="eu">Super Bideo CDa</comment>
- <comment xml:lang="fi">Super Video CD</comment>
- <comment xml:lang="fo">Super Video CD</comment>
- <comment xml:lang="fr">Super VCD</comment>
- <comment xml:lang="ga">dlúthdhiosca Super Video</comment>
- <comment xml:lang="gl">Super vídeo CD</comment>
- <comment xml:lang="he">Super Video CD</comment>
- <comment xml:lang="hr">Super Video CD</comment>
- <comment xml:lang="hu">Super Video CD</comment>
- <comment xml:lang="ia">Super Video CD</comment>
- <comment xml:lang="id">Super Video CD</comment>
- <comment xml:lang="it">Super Video CD</comment>
- <comment xml:lang="ja">スーパービデオ CD</comment>
- <comment xml:lang="kk">Super Video CD</comment>
- <comment xml:lang="ko">수퍼 비디오 CD</comment>
- <comment xml:lang="lt">Super vaizdo CD</comment>
- <comment xml:lang="lv">Super Video CD</comment>
- <comment xml:lang="nl">super-video-CD</comment>
- <comment xml:lang="nn">Super Video-CD</comment>
- <comment xml:lang="oc">Super VCD</comment>
- <comment xml:lang="pl">Super Video CD</comment>
- <comment xml:lang="pt">Super Video CD</comment>
- <comment xml:lang="pt_BR">CD de Super Vídeo (SVCD)</comment>
- <comment xml:lang="ro">Super Video CD</comment>
- <comment xml:lang="ru">Super Video CD</comment>
- <comment xml:lang="sk">Super Video CD</comment>
- <comment xml:lang="sl">Super Video CD</comment>
- <comment xml:lang="sq">CD Super Video</comment>
- <comment xml:lang="sr">Супер видео ЦД</comment>
- <comment xml:lang="sv">Super Video CD</comment>
- <comment xml:lang="tr">Super Video CD</comment>
- <comment xml:lang="uk">Super Video CD</comment>
- <comment xml:lang="vi">Đĩa CD siêu ảnh động</comment>
- <comment xml:lang="zh_CN">SVCD</comment>
<comment xml:lang="zh_TW">Super Video CD</comment>
+ <comment xml:lang="zh_CN">SVCD</comment>
+ <comment xml:lang="vi">Đĩa CD siêu ảnh động</comment>
+ <comment xml:lang="uk">Super Video CD</comment>
+ <comment xml:lang="tr">Super Video CD</comment>
+ <comment xml:lang="sv">Super Video CD</comment>
+ <comment xml:lang="sr">Супер видео ЦД</comment>
+ <comment xml:lang="sq">CD Super Video</comment>
+ <comment xml:lang="sl">Super Video CD</comment>
+ <comment xml:lang="si">සුපිරි වීඩියෝ CD</comment>
+ <comment xml:lang="sk">Super Video CD</comment>
+ <comment xml:lang="ru">Super Video CD</comment>
+ <comment xml:lang="ro">Super Video CD</comment>
+ <comment xml:lang="pt_BR">CD de Super Vídeo (SVCD)</comment>
+ <comment xml:lang="pt">Super Video CD</comment>
+ <comment xml:lang="pl">Super Video CD</comment>
+ <comment xml:lang="oc">Super VCD</comment>
+ <comment xml:lang="nn">Super Video-CD</comment>
+ <comment xml:lang="nl">super-video-CD</comment>
+ <comment xml:lang="lv">Super Video CD</comment>
+ <comment xml:lang="lt">Super vaizdo CD</comment>
+ <comment xml:lang="ko">수퍼 비디오 CD</comment>
+ <comment xml:lang="kk">Super Video CD</comment>
+ <comment xml:lang="ka">Super Video CD</comment>
+ <comment xml:lang="ja">スーパービデオ CD</comment>
+ <comment xml:lang="it">Super Video CD</comment>
+ <comment xml:lang="is">Super Video CD-mynddiskur</comment>
+ <comment xml:lang="id">Super Video CD</comment>
+ <comment xml:lang="ia">Super Video CD</comment>
+ <comment xml:lang="hu">Super Video CD</comment>
+ <comment xml:lang="hr">Super Video CD</comment>
+ <comment xml:lang="he">Super Video CD</comment>
+ <comment xml:lang="gl">Super vídeo CD</comment>
+ <comment xml:lang="ga">dlúthdhiosca Super Video</comment>
+ <comment xml:lang="fur">Super Video CD</comment>
+ <comment xml:lang="fr">Super VCD</comment>
+ <comment xml:lang="fo">Super Video CD</comment>
+ <comment xml:lang="fi">Super Video CD</comment>
+ <comment xml:lang="eu">Super Bideo CDa</comment>
+ <comment xml:lang="es">Super Video CD</comment>
+ <comment xml:lang="eo">Super-Video-KD</comment>
+ <comment xml:lang="en_GB">Super Video CD</comment>
+ <comment xml:lang="el">Super Video CD</comment>
+ <comment xml:lang="de">Super-Video-CD</comment>
+ <comment xml:lang="da">Super Video-cd</comment>
+ <comment xml:lang="cs">Super Video CD</comment>
+ <comment xml:lang="ca">Super Video CD</comment>
+ <comment xml:lang="bg">CD — супер видео</comment>
+ <comment xml:lang="be@latin">Super Video CD</comment>
+ <comment xml:lang="be">Super Video CD</comment>
+ <comment xml:lang="ast">CD de Super Video</comment>
+ <comment xml:lang="ar">سي دي فيديو فائق</comment>
+ <comment xml:lang="af">Super Video-CD</comment>
<treemagic>
- <treematch type="file" path="MPEG2/AVSEQ01.MPG"/>
+ <treematch path="MPEG2/AVSEQ01.MPG" type="file"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/video-dvd">
-
- <comment>video DVD</comment>
- <comment xml:lang="ar">DVD مرئي</comment>
- <comment xml:lang="ast">DVD de videu</comment>
- <comment xml:lang="be@latin">videa DVD</comment>
- <comment xml:lang="bg">DVD — видео</comment>
- <comment xml:lang="ca">DVD-Video</comment>
- <comment xml:lang="cs">videodisk DVD</comment>
- <comment xml:lang="da">video-dvd</comment>
- <comment xml:lang="de">Video-DVD</comment>
- <comment xml:lang="el">Βίντεο DVD</comment>
- <comment xml:lang="en_GB">video DVD</comment>
- <comment xml:lang="eo">video-DVD</comment>
- <comment xml:lang="es">DVD de vídeo</comment>
- <comment xml:lang="eu">bideo DVDa</comment>
- <comment xml:lang="fi">video-DVD</comment>
- <comment xml:lang="fo">video DVD</comment>
- <comment xml:lang="fr">DVD vidéo</comment>
- <comment xml:lang="ga">DVD físe</comment>
- <comment xml:lang="gl">DVD de vídeo</comment>
- <comment xml:lang="he">DVD וידאו</comment>
- <comment xml:lang="hr">Video DVD</comment>
- <comment xml:lang="hu">video DVD</comment>
- <comment xml:lang="ia">DVD video</comment>
- <comment xml:lang="id">DVD video</comment>
- <comment xml:lang="it">DVD video</comment>
- <comment xml:lang="ja">ビデオ DVD</comment>
- <comment xml:lang="ka">ვიდეო DVD</comment>
- <comment xml:lang="kk">видео DVD</comment>
- <comment xml:lang="ko">동영상 DVD</comment>
- <comment xml:lang="lt">vaizdo DVD</comment>
- <comment xml:lang="lv">video DVD</comment>
- <comment xml:lang="nl">video-DVD</comment>
- <comment xml:lang="nn">Video-DVD</comment>
- <comment xml:lang="oc">DVD vidèo</comment>
- <comment xml:lang="pl">DVD-Video</comment>
- <comment xml:lang="pt">DVD vídeo</comment>
- <comment xml:lang="pt_BR">DVD de vídeo</comment>
- <comment xml:lang="ro">DVD video</comment>
+ <!-- http://en.wikipedia.org/wiki/DVD-Video -->
+ <comment>Video DVD</comment>
+ <comment xml:lang="uk">DVD з відеозаписами</comment>
+ <comment xml:lang="sv">Video-dvd</comment>
<comment xml:lang="ru">Видео DVD</comment>
- <comment xml:lang="sk">DVD-Video</comment>
- <comment xml:lang="sl">video DVD</comment>
- <comment xml:lang="sq">DVD video</comment>
- <comment xml:lang="sr">видео ДВД</comment>
- <comment xml:lang="sv">video-dvd</comment>
- <comment xml:lang="tr">video DVD</comment>
- <comment xml:lang="uk">відео-DVD</comment>
- <comment xml:lang="vi">đĩa DVD ảnh động</comment>
- <comment xml:lang="zh_CN">视频 DVD</comment>
- <comment xml:lang="zh_TW">視訊 DVD</comment>
+ <comment xml:lang="pt_BR">DVD de vídeo</comment>
+ <comment xml:lang="pl">DVD-Video</comment>
+ <comment xml:lang="ja">動画DVD</comment>
+ <comment xml:lang="it">DVD video</comment>
+ <comment xml:lang="gl">DVD de vídeo</comment>
+ <comment xml:lang="eu">Bideoko DVDa</comment>
+ <comment xml:lang="es">DVD de vídeo</comment>
+ <comment xml:lang="de">Video-DVD</comment>
+ <comment xml:lang="be">відэа DVD</comment>
<treemagic>
- <treematch type="file" path="VIDEO_TS/VIDEO_TS.IFO"/>
- <treematch type="file" path="VIDEO_TS/VIDEO_TS.IFO;1"/>
- <treematch type="file" path="VIDEO_TS.IFO"/>
- <treematch type="file" path="VIDEO_TS.IFO;1"/>
+ <treematch path="VIDEO_TS/VIDEO_TS.IFO" type="file"/>
+ <treematch path="VIDEO_TS/VIDEO_TS.IFO;1" type="file"/>
+ <treematch path="VIDEO_TS.IFO" type="file"/>
+ <treematch path="VIDEO_TS.IFO;1" type="file"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/audio-cdda">
-
- <comment>audio CD</comment>
- <comment xml:lang="ar">CD سمعي</comment>
- <comment xml:lang="be@latin">aŭdyjo CD</comment>
- <comment xml:lang="bg">CD — аудио</comment>
- <comment xml:lang="ca">CD d'àudio</comment>
- <comment xml:lang="cs">zvukové CD</comment>
- <comment xml:lang="da">lyd-cd</comment>
- <comment xml:lang="de">Audio-CD</comment>
- <comment xml:lang="el">CD ήχου</comment>
- <comment xml:lang="en_GB">audio CD</comment>
- <comment xml:lang="eo">Son-KD</comment>
- <comment xml:lang="es">CD de sonido</comment>
- <comment xml:lang="eu">Audio CDa</comment>
- <comment xml:lang="fi">ääni-CD</comment>
- <comment xml:lang="fo">audio CD</comment>
- <comment xml:lang="fr">CD audio</comment>
- <comment xml:lang="ga">dlúthdhiosca fuaime</comment>
- <comment xml:lang="gl">CD de son</comment>
- <comment xml:lang="he">תקליטור שמע</comment>
- <comment xml:lang="hr">Glazbeni CD</comment>
- <comment xml:lang="hu">hang CD</comment>
- <comment xml:lang="ia">CD audio</comment>
- <comment xml:lang="id">CD audio</comment>
- <comment xml:lang="it">CD audio</comment>
- <comment xml:lang="ja">オーディオ CD</comment>
- <comment xml:lang="kk">аудио CD</comment>
- <comment xml:lang="ko">오디오 CD</comment>
- <comment xml:lang="lt">garso CD</comment>
- <comment xml:lang="lv">audio CD</comment>
- <comment xml:lang="nl">audio-CD</comment>
- <comment xml:lang="nn">lyd-CD</comment>
- <comment xml:lang="oc">CD àudio</comment>
- <comment xml:lang="pl">CD-Audio</comment>
- <comment xml:lang="pt">CD áudio</comment>
- <comment xml:lang="pt_BR">CD de áudio</comment>
- <comment xml:lang="ro">CD audio</comment>
+ <!-- http://en.wikipedia.org/wiki/Red_Book_(audio_CD_standard) -->
+ <comment>Audio CD</comment>
+ <comment xml:lang="uk">звуковий компакт-диск</comment>
+ <comment xml:lang="sv">Ljud-cd</comment>
<comment xml:lang="ru">Аудио CD</comment>
- <comment xml:lang="sk">Zvukové CD</comment>
- <comment xml:lang="sl">zvočni CD</comment>
- <comment xml:lang="sq">CD audio</comment>
- <comment xml:lang="sr">звучни ЦД</comment>
- <comment xml:lang="sv">ljud-cd</comment>
- <comment xml:lang="tr">Müzik CD'si</comment>
- <comment xml:lang="uk">звуковий CD</comment>
- <comment xml:lang="vi">đĩa CD âm thanh</comment>
- <comment xml:lang="zh_CN">音频 CD</comment>
- <comment xml:lang="zh_TW">音訊 CD</comment>
+ <comment xml:lang="pt_BR">CD de áudio</comment>
+ <comment xml:lang="pl">CD-Audio</comment>
+ <comment xml:lang="ja">音声CD</comment>
+ <comment xml:lang="it">CD audio</comment>
+ <comment xml:lang="gl">CD de son</comment>
+ <comment xml:lang="eu">Audioko CDa</comment>
+ <comment xml:lang="es">CD de audio</comment>
+ <comment xml:lang="de">Audio-CD</comment>
+ <comment xml:lang="be">аўдыя CD</comment>
</mime-type>
-
<mime-type type="x-content/blank-cd">
-
- <comment>blank CD disc</comment>
- <comment xml:lang="ar">قرص CD فارغ</comment>
- <comment xml:lang="be@latin">čysty dysk CD</comment>
- <comment xml:lang="bg">CD — празно</comment>
- <comment xml:lang="ca">disc CD en blanc</comment>
- <comment xml:lang="cs">prázdný disk CD</comment>
- <comment xml:lang="da">tom cd-disk</comment>
- <comment xml:lang="de">Leere CD</comment>
- <comment xml:lang="el">Κενό CD</comment>
- <comment xml:lang="en_GB">blank CD disc</comment>
- <comment xml:lang="es">disco CD en blanco</comment>
- <comment xml:lang="eu">CD disko hutsa</comment>
- <comment xml:lang="fi">tyhjä CD-levy</comment>
- <comment xml:lang="fo">blonk fløga</comment>
- <comment xml:lang="fr">CD vierge</comment>
- <comment xml:lang="ga">dlúthdhiosca folamh</comment>
- <comment xml:lang="gl">disco de CD en brancho</comment>
- <comment xml:lang="he">תקליטור ריק</comment>
- <comment xml:lang="hr">Prazni CD disk</comment>
- <comment xml:lang="hu">üres CD-lemez</comment>
- <comment xml:lang="ia">Disco CD vacue</comment>
- <comment xml:lang="id">cakram CD kosong</comment>
- <comment xml:lang="it">Disco vuoto CD</comment>
- <comment xml:lang="ja">ブランク CD ディスク</comment>
- <comment xml:lang="kk">таза CD дискі</comment>
- <comment xml:lang="ko">빈 CD 디스크</comment>
- <comment xml:lang="lt">tuščias CD diskas</comment>
- <comment xml:lang="lv">tukšs CD disks</comment>
- <comment xml:lang="nl">blanco CD</comment>
- <comment xml:lang="nn">tom CD-plate</comment>
- <comment xml:lang="oc">CD verge</comment>
- <comment xml:lang="pl">Pusta płyta CD</comment>
- <comment xml:lang="pt">CD vazio</comment>
- <comment xml:lang="pt_BR">Disco CD vazio</comment>
- <comment xml:lang="ro">disc gol CD</comment>
- <comment xml:lang="ru">Чистый диск CD</comment>
- <comment xml:lang="sk">Prázdny disk CD</comment>
- <comment xml:lang="sl">prazen CD disk</comment>
- <comment xml:lang="sq">Disk bosh CD</comment>
- <comment xml:lang="sr">празан ЦД диск</comment>
- <comment xml:lang="sv">tom cd-skiva</comment>
- <comment xml:lang="tr">boş CD diski</comment>
+ <!-- http://en.wikipedia.org/wiki/Compact_Disc -->
+ <comment>Blank CD disc</comment>
<comment xml:lang="uk">порожній компакт-диск</comment>
- <comment xml:lang="vi">đĩa CD trống</comment>
- <comment xml:lang="zh_CN">空 CD 光盘</comment>
- <comment xml:lang="zh_TW">空白 CD 光碟</comment>
+ <comment xml:lang="sv">Tom cd-skiva</comment>
+ <comment xml:lang="ru">Чистый диск CD</comment>
+ <comment xml:lang="pt_BR">Disco CD vazio</comment>
+ <comment xml:lang="pl">Pusta płyta CD</comment>
+ <comment xml:lang="ja">空CD</comment>
+ <comment xml:lang="it">Disco vuoto CD</comment>
+ <comment xml:lang="gl">Disco de CD en branco</comment>
+ <comment xml:lang="eu">CD disko hutsa</comment>
+ <comment xml:lang="es">disco CD vacío</comment>
+ <comment xml:lang="de">Leere CD</comment>
+ <comment xml:lang="be">чысты дыск CD</comment>
</mime-type>
-
<mime-type type="x-content/blank-dvd">
-
- <comment>blank DVD disc</comment>
- <comment xml:lang="ar">قرص DVD فارغ</comment>
- <comment xml:lang="be@latin">čysty dysk DVD</comment>
- <comment xml:lang="bg">DVD — празно</comment>
- <comment xml:lang="ca">disc DVD en blanc</comment>
- <comment xml:lang="cs">prázdný disk DVD</comment>
- <comment xml:lang="da">tom dvd-disk</comment>
- <comment xml:lang="de">Leere DVD</comment>
- <comment xml:lang="el">Κενό DVD</comment>
- <comment xml:lang="en_GB">blank DVD disc</comment>
- <comment xml:lang="es">disco DVD en blanco</comment>
- <comment xml:lang="eu">DVD disko hutsa</comment>
- <comment xml:lang="fi">tyhjä DVD-levy</comment>
- <comment xml:lang="fo">blonk margfløga</comment>
- <comment xml:lang="fr">DVD vierge</comment>
- <comment xml:lang="ga">DVD folamh</comment>
- <comment xml:lang="gl">disco de DVD en branco</comment>
- <comment xml:lang="he">תקליטור DVD ריק</comment>
- <comment xml:lang="hr">Prazni DVD disk</comment>
- <comment xml:lang="hu">üres DVD-lemez</comment>
- <comment xml:lang="ia">Disco DVD vacue</comment>
- <comment xml:lang="id">cakram DVD kosong</comment>
- <comment xml:lang="it">Disco vuoto DVD</comment>
- <comment xml:lang="ja">ブランク DVD ディスク</comment>
- <comment xml:lang="kk">таза DVD дискі</comment>
- <comment xml:lang="ko">빈 DVD 디스크</comment>
- <comment xml:lang="lt">tuščias DVD diskas</comment>
- <comment xml:lang="lv">tukšs DVD disks</comment>
- <comment xml:lang="nl">blanco DVD</comment>
- <comment xml:lang="nn">tom DVD-plate</comment>
- <comment xml:lang="oc">DVD verge</comment>
- <comment xml:lang="pl">Pusta płyta DVD</comment>
- <comment xml:lang="pt">DVD vazio</comment>
- <comment xml:lang="pt_BR">Disco DVD vazio</comment>
- <comment xml:lang="ro">disc gol DVD</comment>
- <comment xml:lang="ru">Чистый диск DVD</comment>
- <comment xml:lang="sk">Prázdny disk DVD</comment>
- <comment xml:lang="sl">prazen DVD disk</comment>
- <comment xml:lang="sq">Disk bosh DVD</comment>
- <comment xml:lang="sr">празан ДВД диск</comment>
- <comment xml:lang="sv">tom dvd-skiva</comment>
- <comment xml:lang="tr">boş DVD diski</comment>
+ <!-- http://en.wikipedia.org/wiki/DVD -->
+ <comment>Blank DVD disc</comment>
<comment xml:lang="uk">порожній диск DVD</comment>
- <comment xml:lang="vi">đĩa DVD trống</comment>
- <comment xml:lang="zh_CN">空 DVD 光盘</comment>
- <comment xml:lang="zh_TW">空白 DVD 光碟</comment>
+ <comment xml:lang="sv">Tom dvd-skiva</comment>
+ <comment xml:lang="ru">Чистый диск DVD</comment>
+ <comment xml:lang="pt_BR">Disco DVD vazio</comment>
+ <comment xml:lang="pl">Pusta płyta DVD</comment>
+ <comment xml:lang="ja">空DVD</comment>
+ <comment xml:lang="it">Disco vuoto DVD</comment>
+ <comment xml:lang="gl">Disco de DVD en branco</comment>
+ <comment xml:lang="eu">DVD disko hutsa</comment>
+ <comment xml:lang="es">disco DVD vacío</comment>
+ <comment xml:lang="de">Leere DVD</comment>
+ <comment xml:lang="be">чысты дыск DVD</comment>
</mime-type>
-
<mime-type type="x-content/blank-bd">
-
- <comment>blank Blu-ray disc</comment>
- <comment xml:lang="ar">قرص بلو-راي فارغ</comment>
- <comment xml:lang="be@latin">čysty dysk Blu-ray</comment>
- <comment xml:lang="bg">Blu-ray — празно</comment>
- <comment xml:lang="ca">disc Blu-Ray en blanc</comment>
- <comment xml:lang="cs">prázdný disk Blu-ray</comment>
- <comment xml:lang="da">tom Blu-ray-disk</comment>
- <comment xml:lang="de">Leere Blu-ray-Scheibe</comment>
- <comment xml:lang="el">Κενό Blu-ray</comment>
- <comment xml:lang="en_GB">blank Blu-ray disc</comment>
- <comment xml:lang="es">disco Blu-ray en blanco</comment>
- <comment xml:lang="eu">Blu-ray disko hutsa</comment>
- <comment xml:lang="fi">tyhjä Blu-ray-levy</comment>
- <comment xml:lang="fo">blankur Blu-ray diskur</comment>
- <comment xml:lang="fr">disque Blu-Ray vierge</comment>
- <comment xml:lang="ga">diosca folamh Blu-Ray</comment>
- <comment xml:lang="gl">disco Blu-ray en branco</comment>
- <comment xml:lang="he">תקליטור בלו־ריי ריק</comment>
- <comment xml:lang="hr">Prazni Blu-ray disk</comment>
- <comment xml:lang="hu">üres Blu-Ray lemez</comment>
- <comment xml:lang="ia">Disco Bly-ray vacue</comment>
- <comment xml:lang="id">cakram Blu-ray kosong</comment>
- <comment xml:lang="it">Disco vuoto Blu-ray</comment>
- <comment xml:lang="ja">ブランク Blu-ray ディスク</comment>
- <comment xml:lang="kk">таза Blu-ray дискі</comment>
- <comment xml:lang="ko">빈 블루레이 디스크</comment>
- <comment xml:lang="lt">tuščias Blu-ray diskas</comment>
- <comment xml:lang="lv">tukšs Blu-ray disks</comment>
- <comment xml:lang="nl">blanco Blu-ray-disk</comment>
- <comment xml:lang="nn">tom Blu-Ray-plate</comment>
- <comment xml:lang="oc">disc Blu-Ray verge</comment>
- <comment xml:lang="pl">Pusta płyta Blu-ray</comment>
- <comment xml:lang="pt">Blu-Ray vazio</comment>
- <comment xml:lang="pt_BR">Disco Blu-ray vazio</comment>
- <comment xml:lang="ro">disc gol Blu-ray</comment>
- <comment xml:lang="ru">Чистый диск Blu-ray</comment>
- <comment xml:lang="sk">Prázdny disk Blu-ray</comment>
- <comment xml:lang="sl">prazen Blu-Ray disk</comment>
- <comment xml:lang="sq">Disk bosh Blu-ray</comment>
- <comment xml:lang="sr">празан Блу-реј диск</comment>
- <comment xml:lang="sv">tom Blu-ray-skiva</comment>
- <comment xml:lang="tr">boş Blue-ray diski</comment>
+ <!-- http://en.wikipedia.org/wiki/Blu-ray_Disc -->
+ <comment>Blank Blu-ray disc</comment>
<comment xml:lang="uk">порожній диск Blu-ray</comment>
- <comment xml:lang="vi">đĩa Blu-ray trống</comment>
- <comment xml:lang="zh_CN">空蓝光 DVD</comment>
- <comment xml:lang="zh_TW">空白 Blu-ray 光碟</comment>
+ <comment xml:lang="sv">Tom Blu-ray-skiva</comment>
+ <comment xml:lang="ru">Чистый диск Blu-ray</comment>
+ <comment xml:lang="pt_BR">Disco Blu-ray vazio</comment>
+ <comment xml:lang="pl">Pusta płyta Blu-ray</comment>
+ <comment xml:lang="it">Disco vuoto Blu-ray</comment>
+ <comment xml:lang="gl">Disco Blu-ray en branco</comment>
+ <comment xml:lang="eu">Blu-ray disko hutsa</comment>
+ <comment xml:lang="es">disco Blu-ray vacío</comment>
+ <comment xml:lang="de">Leere Blu-ray</comment>
+ <comment xml:lang="be">чысты дыск Blu-ray</comment>
</mime-type>
-
<mime-type type="x-content/blank-hddvd">
-
- <comment>blank HD DVD disc</comment>
- <comment xml:lang="ar">قرص HD DVD فارغ</comment>
- <comment xml:lang="be@latin">čysty dysk HD DVD</comment>
- <comment xml:lang="bg">HD DVD — празно</comment>
- <comment xml:lang="ca">disc HD-DVD en blanc</comment>
- <comment xml:lang="cs">prázdný disk HD DVD</comment>
- <comment xml:lang="da">tom HD dvd-disk</comment>
- <comment xml:lang="de">Leere HD-DVD</comment>
- <comment xml:lang="el">Κενό HD DVD</comment>
- <comment xml:lang="en_GB">blank HD DVD disc</comment>
- <comment xml:lang="es">disco HD DVD en blanco</comment>
- <comment xml:lang="eu">HD DVD disko hutsa</comment>
- <comment xml:lang="fi">tyhjä HD DVD -levy</comment>
- <comment xml:lang="fo">blankur HD DVD diskur</comment>
- <comment xml:lang="fr">disque HD-DVD vierge</comment>
- <comment xml:lang="ga">HD DVD folamh</comment>
- <comment xml:lang="gl">disco de HD DVD en branco</comment>
- <comment xml:lang="he">דיסק HD DVD ריק</comment>
- <comment xml:lang="hr">Prazni HD DVD disk</comment>
- <comment xml:lang="hu">üres HD DVD-lemez</comment>
- <comment xml:lang="ia">Disco HD DVD vacue</comment>
- <comment xml:lang="id">cakram HD DVD kosong</comment>
- <comment xml:lang="it">Disco vuoto DVD HD</comment>
- <comment xml:lang="ja">ブランク HD DVD ディスク</comment>
- <comment xml:lang="kk">таза HD DVD дискі</comment>
- <comment xml:lang="ko">빈 HD DVD 디스크</comment>
- <comment xml:lang="lt">tuščias HD DVD diskas</comment>
- <comment xml:lang="lv">tukšs HD DVD disks</comment>
- <comment xml:lang="nl">blanco HD-DVD</comment>
- <comment xml:lang="nn">tom HD-DVD-plate</comment>
- <comment xml:lang="oc">disc HD-DVD verge</comment>
- <comment xml:lang="pl">Pusta płyta HD DVD</comment>
- <comment xml:lang="pt">HD DVD vazio</comment>
- <comment xml:lang="pt_BR">Disco HD DVD vazio</comment>
- <comment xml:lang="ro">disc gol HD DVD</comment>
- <comment xml:lang="ru">Чистый диск HD DVD</comment>
- <comment xml:lang="sk">Prázdny disk HD DVD</comment>
- <comment xml:lang="sl">prazen HD DVD disk</comment>
- <comment xml:lang="sq">Disk bosh DVD HD</comment>
- <comment xml:lang="sr">празан ХД ДВД диск</comment>
- <comment xml:lang="sv">tom HD DVD-skiva</comment>
- <comment xml:lang="tr">boş HD DVD diski</comment>
+ <!-- http://en.wikipedia.org/wiki/HD_DVD -->
+ <comment>Blank HD DVD disc</comment>
<comment xml:lang="uk">порожній диск HD DVD</comment>
- <comment xml:lang="vi">đĩa DVD HD trống</comment>
- <comment xml:lang="zh_CN">空 HD DVD 光盘</comment>
- <comment xml:lang="zh_TW">空白 HD DVD 光碟</comment>
+ <comment xml:lang="sv">Tom HD DVD-skiva</comment>
+ <comment xml:lang="ru">Чистый диск HD DVD</comment>
+ <comment xml:lang="pt_BR">Disco HD DVD vazio</comment>
+ <comment xml:lang="pl">Pusta płyta HD DVD</comment>
+ <comment xml:lang="it">Disco vuoto DVD HD</comment>
+ <comment xml:lang="gl">Disco de HD DVD en branco</comment>
+ <comment xml:lang="eu">HD DVD disko hutsa</comment>
+ <comment xml:lang="es">disco HD DVD vacío</comment>
+ <comment xml:lang="de">Leere HD-DVD</comment>
+ <comment xml:lang="be">чысты дыск HD DVD</comment>
</mime-type>
-
<mime-type type="x-content/audio-dvd">
-
- <comment>audio DVD</comment>
- <comment xml:lang="ar">DVD سمعي</comment>
- <comment xml:lang="be@latin">aŭdyjo DVD</comment>
- <comment xml:lang="bg">DVD — аудио</comment>
- <comment xml:lang="ca">DVD d'àudio</comment>
- <comment xml:lang="cs">zvukové DVD</comment>
- <comment xml:lang="da">lyd-dvd</comment>
- <comment xml:lang="de">Audio-DVD</comment>
- <comment xml:lang="el">DVD ήχου</comment>
- <comment xml:lang="en_GB">audio DVD</comment>
- <comment xml:lang="eo">Son-DVD</comment>
- <comment xml:lang="es">DVD de sonido</comment>
- <comment xml:lang="eu">audio DVDa</comment>
- <comment xml:lang="fi">ääni-DVD</comment>
- <comment xml:lang="fo">Ljóð DVD</comment>
- <comment xml:lang="fr">DVD audio</comment>
- <comment xml:lang="ga">DVD fuaime</comment>
- <comment xml:lang="gl">DVD de son</comment>
- <comment xml:lang="he">DVD שמע</comment>
- <comment xml:lang="hr">Glazbeni DVD</comment>
- <comment xml:lang="hu">hang DVD</comment>
- <comment xml:lang="ia">DVD audio</comment>
- <comment xml:lang="id">DVD audio</comment>
- <comment xml:lang="it">DVD audio</comment>
- <comment xml:lang="ja">オーディオ DVD</comment>
- <comment xml:lang="kk">аудио DVD</comment>
- <comment xml:lang="ko">오디오 DVD</comment>
- <comment xml:lang="lt">garso DVD</comment>
- <comment xml:lang="lv">audio DVD</comment>
- <comment xml:lang="nl">audio-DVD</comment>
- <comment xml:lang="nn">lyd-DVD</comment>
- <comment xml:lang="oc">DVD àudio</comment>
- <comment xml:lang="pl">DVD-Audio</comment>
- <comment xml:lang="pt">DVD áudio</comment>
- <comment xml:lang="pt_BR">DVD de áudio</comment>
- <comment xml:lang="ro">DVD audio</comment>
+ <!-- http://en.wikipedia.org/wiki/DVD-Audio -->
+ <comment>Audio DVD</comment>
+ <comment xml:lang="uk">Звуковий DVD</comment>
+ <comment xml:lang="sv">Ljud-dvd</comment>
<comment xml:lang="ru">Аудио DVD</comment>
- <comment xml:lang="sk">Zvukové DVD</comment>
- <comment xml:lang="sl">zvočni DVD</comment>
- <comment xml:lang="sq">DVD audio</comment>
- <comment xml:lang="sr">звучни ДВД</comment>
- <comment xml:lang="sv">ljud-dvd</comment>
- <comment xml:lang="tr">Müzik DVD'si</comment>
- <comment xml:lang="uk">звуковий DVD</comment>
- <comment xml:lang="vi">đĩa DVD âm thanh</comment>
- <comment xml:lang="zh_CN">音频 DVD</comment>
- <comment xml:lang="zh_TW">音訊 DVD</comment>
+ <comment xml:lang="pt_BR">DVD de áudio</comment>
+ <comment xml:lang="pl">DVD-Audio</comment>
+ <comment xml:lang="it">DVD audio</comment>
+ <comment xml:lang="gl">DVD de son</comment>
+ <comment xml:lang="eu">Audioko DVDa</comment>
+ <comment xml:lang="es">DVD de audio</comment>
+ <comment xml:lang="de">Audio-DVD</comment>
+ <comment xml:lang="be">аўдыя DVD</comment>
<treemagic>
- <treematch type="file" path="AUDIO_TS/AUDIO_TS.IFO"/>
- <treematch type="file" path="AUDIO_TS/AUDIO_TS.IFO;1"/>
+ <treematch path="AUDIO_TS/AUDIO_TS.IFO" type="file"/>
+ <treematch path="AUDIO_TS/AUDIO_TS.IFO;1" type="file"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/video-bluray">
-
+ <!-- http://en.wikipedia.org/wiki/Blu-ray_Disc
+ http://www.blu-raydisc.com/Section-13470/Section-13890/Index.html -->
<comment>Blu-ray video disc</comment>
- <comment xml:lang="ar">قرص بلو-راي مرئي</comment>
- <comment xml:lang="ast">Discu Blu-ray de videu</comment>
- <comment xml:lang="be@latin">Videadysk Blu-ray</comment>
- <comment xml:lang="bg">Blu-ray — видео</comment>
- <comment xml:lang="ca">disc de vídeo Blu-Ray</comment>
- <comment xml:lang="cs">videodisk Blu-ray</comment>
- <comment xml:lang="da">Blu-ray video-disk</comment>
- <comment xml:lang="de">Blu-ray-Videoscheibe</comment>
- <comment xml:lang="el">Δίσκος βίντεο Blu-ray</comment>
- <comment xml:lang="en_GB">Blu-ray video disc</comment>
- <comment xml:lang="es">disco de vídeo Blu-ray</comment>
- <comment xml:lang="eu">Blu-ray bideo-diskoa</comment>
- <comment xml:lang="fi">Blu-ray-videolevy</comment>
- <comment xml:lang="fo">Blu-ray diskur</comment>
- <comment xml:lang="fr">disque vidéo Blu-Ray</comment>
- <comment xml:lang="ga">diosca físe Blu-Ray</comment>
- <comment xml:lang="gl">disco de vídeo Blu-ray</comment>
- <comment xml:lang="he">תקליטור וידאו מסוג בלו־ריי</comment>
- <comment xml:lang="hr">Blu-ray video disk</comment>
- <comment xml:lang="hu">Blu-ray videolemez</comment>
- <comment xml:lang="ia">Disco video Blu-ray</comment>
- <comment xml:lang="id">Cakram video Blu-ray</comment>
- <comment xml:lang="it">Disco video Blu-ray</comment>
- <comment xml:lang="ja">Blu-ray ビデオディスク</comment>
- <comment xml:lang="ka">Blu-ray ვიდეო დისკი</comment>
- <comment xml:lang="kk">Blu-ray видео дискі</comment>
- <comment xml:lang="ko">블루레이 동영상 디스크</comment>
- <comment xml:lang="lt">Blu-ray vaizdo diskas</comment>
- <comment xml:lang="lv">Blu-ray video disks</comment>
- <comment xml:lang="nl">Blu-ray-videodisk</comment>
- <comment xml:lang="nn">Blu-Ray videoplate</comment>
- <comment xml:lang="oc">disc vidèo Blu-Ray</comment>
- <comment xml:lang="pl">Płyta wideo Blu-ray</comment>
- <comment xml:lang="pt">Blu-ray de vídeo</comment>
- <comment xml:lang="pt_BR">Disco de vídeo Blu-ray</comment>
- <comment xml:lang="ro">Disc video Blu-ray</comment>
- <comment xml:lang="ru">Видеодиск Blu-ray</comment>
- <comment xml:lang="sk">Videodisk Blu-ray</comment>
- <comment xml:lang="sl">Blu-ray video disk</comment>
- <comment xml:lang="sq">Disk video Blu-ray</comment>
- <comment xml:lang="sr">Блу-реј видео диск</comment>
- <comment xml:lang="sv">Blu-ray-videoskiva</comment>
- <comment xml:lang="tr">Blu-ray video diski</comment>
- <comment xml:lang="uk">відеодиск Blu-ray</comment>
- <comment xml:lang="vi">Đĩa ảnh động Blu-ray</comment>
- <comment xml:lang="zh_CN">蓝光视频光盘</comment>
<comment xml:lang="zh_TW">Blu-ray 視訊光碟</comment>
+ <comment xml:lang="zh_CN">蓝光视频光盘</comment>
+ <comment xml:lang="vi">Đĩa ảnh động Blu-ray</comment>
+ <comment xml:lang="uk">відеодиск Blu-ray</comment>
+ <comment xml:lang="tr">Blu-ray video diski</comment>
+ <comment xml:lang="sv">Blu-ray-videoskiva</comment>
+ <comment xml:lang="sr">Блу-реј видео диск</comment>
+ <comment xml:lang="sq">disk video Blu-ray</comment>
+ <comment xml:lang="sl">Blu-ray video disk</comment>
+ <comment xml:lang="si">Blu-ray වීඩියෝ තැටිය</comment>
+ <comment xml:lang="sk">Videodisk Blu-ray</comment>
+ <comment xml:lang="ru">Видеодиск Blu-ray</comment>
+ <comment xml:lang="ro">Disc video Blu-ray</comment>
+ <comment xml:lang="pt_BR">Disco de vídeo Blu-ray</comment>
+ <comment xml:lang="pt">Blu-ray de vídeo</comment>
+ <comment xml:lang="pl">Płyta wideo Blu-ray</comment>
+ <comment xml:lang="oc">disc vidèo Blu-Ray</comment>
+ <comment xml:lang="nn">Blu-Ray videoplate</comment>
+ <comment xml:lang="nl">Blu-ray-videodisk</comment>
+ <comment xml:lang="lv">Blu-ray video disks</comment>
+ <comment xml:lang="lt">Blu-ray vaizdo diskas</comment>
+ <comment xml:lang="ko">블루레이 동영상 디스크</comment>
+ <comment xml:lang="kk">Blu-ray видео дискі</comment>
+ <comment xml:lang="ka">Blu-ray ვიდეო დისკი</comment>
+ <comment xml:lang="ja">Blu-ray ビデオディスク</comment>
+ <comment xml:lang="it">Disco video Blu-ray</comment>
+ <comment xml:lang="is">Blu-Ray mynddiskur</comment>
+ <comment xml:lang="id">Cakram video Blu-ray</comment>
+ <comment xml:lang="ia">Disco video Blu-ray</comment>
+ <comment xml:lang="hu">Blu-ray videolemez</comment>
+ <comment xml:lang="hr">Blu-ray video disk</comment>
+ <comment xml:lang="he">תקליטור וידאו מסוג בלו־ריי</comment>
+ <comment xml:lang="gl">disco de vídeo Blu-ray</comment>
+ <comment xml:lang="ga">diosca físe Blu-Ray</comment>
+ <comment xml:lang="fur">disc video Blu-ray</comment>
+ <comment xml:lang="fr">disque vidéo Blu-Ray</comment>
+ <comment xml:lang="fo">Blu-ray diskur</comment>
+ <comment xml:lang="fi">Blu-ray-videolevy</comment>
+ <comment xml:lang="eu">Blu-ray bideo-diskoa</comment>
+ <comment xml:lang="es">disco de vídeo Blu-ray</comment>
+ <comment xml:lang="en_GB">Blu-ray video disc</comment>
+ <comment xml:lang="el">Δίσκος βίντεο Blu-ray</comment>
+ <comment xml:lang="de">Blu-ray-Video</comment>
+ <comment xml:lang="da">Blu-ray-videodisk</comment>
+ <comment xml:lang="cs">videodisk Blu-ray</comment>
+ <comment xml:lang="ca">disc de vídeo Blu-Ray</comment>
+ <comment xml:lang="bg">Blu-ray — видео</comment>
+ <comment xml:lang="be@latin">Videadysk Blu-ray</comment>
+ <comment xml:lang="be">відэадыск Blu-ray</comment>
+ <comment xml:lang="ast">Discu Blu-ray de videu</comment>
+ <comment xml:lang="ar">قرص فيديو بلو-راي</comment>
+ <comment xml:lang="af">Blu-ray-videoskyf</comment>
<treemagic>
- <treematch type="directory" path="BDAV" non-empty="true"/>
- <treematch type="directory" path="BDMV" non-empty="true"/>
+ <treematch path="BDAV" type="directory" non-empty="true"/>
+ <treematch path="BDMV" type="directory" non-empty="true"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/video-hddvd">
-
+ <!-- http://en.wikipedia.org/wiki/HD_DVD
+ http://www.dvdafteredit.com/wiki/The_HVDVD_TS_Folder -->
<comment>HD DVD video disc</comment>
- <comment xml:lang="ar">قرص HD DVD مرئي</comment>
- <comment xml:lang="ast">Discu HD DVD de videu</comment>
- <comment xml:lang="be@latin">Videadysk HD DVD</comment>
- <comment xml:lang="bg">HD DVD — видео</comment>
- <comment xml:lang="ca">disc de vídeo HD-DVD</comment>
- <comment xml:lang="cs">Videodisk HD DVD</comment>
- <comment xml:lang="da">HD DVD-videodisk</comment>
- <comment xml:lang="de">HD-DVD-Videoscheibe</comment>
- <comment xml:lang="el">Δίσκος βίντεο HD DVD</comment>
- <comment xml:lang="en_GB">HD DVD video disc</comment>
- <comment xml:lang="es">disco de vídeo HD DVD</comment>
- <comment xml:lang="eu">HD DVD bideo-diskoa</comment>
- <comment xml:lang="fi">HD DVD -videolevy</comment>
- <comment xml:lang="fo">HD DVD video diskur</comment>
- <comment xml:lang="fr">disque vidéo HD DVD</comment>
- <comment xml:lang="ga">diosca físe HD DVD</comment>
- <comment xml:lang="gl">disco de vídeo HD DVD</comment>
- <comment xml:lang="he">תקליטור וידאו HD DVD</comment>
- <comment xml:lang="hr">HD DVD video disk</comment>
- <comment xml:lang="hu">HD DVD videolemez</comment>
- <comment xml:lang="ia">Disco video HD DVD</comment>
- <comment xml:lang="id">Cakram video HD DVD</comment>
- <comment xml:lang="it">Disco video DVD HD</comment>
- <comment xml:lang="ja">HD DVD ビデオディスク</comment>
- <comment xml:lang="kk">HD DVD видео дискі</comment>
- <comment xml:lang="ko">HD DVD 동영상 디스크</comment>
- <comment xml:lang="lt">HD DVD vaizdo diskas</comment>
- <comment xml:lang="lv">HD DVD video disks</comment>
- <comment xml:lang="nl">HD-DVD-videodisk</comment>
- <comment xml:lang="nn">HD-DVD-videodisk</comment>
- <comment xml:lang="oc">disc vidèo HD DVD</comment>
- <comment xml:lang="pl">Płyta wideo HD DVD</comment>
- <comment xml:lang="pt">HD DVD de vídeo</comment>
- <comment xml:lang="pt_BR">Disco de vídeo HD DVD</comment>
- <comment xml:lang="ro">Disc video HD DVD</comment>
- <comment xml:lang="ru">Видеодиск HD DVD</comment>
- <comment xml:lang="sk">Videodisk HD DVD</comment>
- <comment xml:lang="sl">HD DVD video disk</comment>
- <comment xml:lang="sq">Disk video DVD HD</comment>
- <comment xml:lang="sr">ХД ДВД видео диск</comment>
- <comment xml:lang="sv">HD DVD-videoskiva</comment>
- <comment xml:lang="tr">HD DVD vidyo diski</comment>
- <comment xml:lang="uk">відеодиск HD DVD</comment>
- <comment xml:lang="vi">Đĩa ảnh động DVD HD</comment>
- <comment xml:lang="zh_CN">HD DVD 视频光盘</comment>
<comment xml:lang="zh_TW">HD DVD 視訊光碟</comment>
+ <comment xml:lang="zh_CN">HD DVD 视频光盘</comment>
+ <comment xml:lang="vi">Đĩa ảnh động DVD HD</comment>
+ <comment xml:lang="uk">відеодиск HD DVD</comment>
+ <comment xml:lang="tr">HD DVD vidyo diski</comment>
+ <comment xml:lang="sv">HD DVD-videoskiva</comment>
+ <comment xml:lang="sr">ХД ДВД видео диск</comment>
+ <comment xml:lang="sq">disk video DVD HD</comment>
+ <comment xml:lang="sl">HD DVD video disk</comment>
+ <comment xml:lang="si">HD DVD වීඩියෝ තැටිය</comment>
+ <comment xml:lang="sk">Videodisk HD DVD</comment>
+ <comment xml:lang="ru">Видеодиск HD DVD</comment>
+ <comment xml:lang="ro">Disc video HD DVD</comment>
+ <comment xml:lang="pt_BR">Disco de vídeo HD DVD</comment>
+ <comment xml:lang="pt">HD DVD de vídeo</comment>
+ <comment xml:lang="pl">Płyta wideo HD DVD</comment>
+ <comment xml:lang="oc">disc vidèo HD DVD</comment>
+ <comment xml:lang="nn">HD-DVD-videodisk</comment>
+ <comment xml:lang="nl">HD-DVD-videodisk</comment>
+ <comment xml:lang="lv">HD DVD video disks</comment>
+ <comment xml:lang="lt">HD DVD vaizdo diskas</comment>
+ <comment xml:lang="ko">HD DVD 동영상 디스크</comment>
+ <comment xml:lang="kk">HD DVD видео дискі</comment>
+ <comment xml:lang="ka">HD DVD ვიდეო დისკი</comment>
+ <comment xml:lang="ja">HD DVD ビデオディスク</comment>
+ <comment xml:lang="it">Disco video DVD HD</comment>
+ <comment xml:lang="is">HD DVD mynddiskur</comment>
+ <comment xml:lang="id">Cakram video HD DVD</comment>
+ <comment xml:lang="ia">Disco video HD DVD</comment>
+ <comment xml:lang="hu">HD DVD videolemez</comment>
+ <comment xml:lang="hr">HD DVD video disk</comment>
+ <comment xml:lang="he">תקליטור וידאו HD DVD</comment>
+ <comment xml:lang="gl">disco de vídeo HD DVD</comment>
+ <comment xml:lang="ga">diosca físe HD DVD</comment>
+ <comment xml:lang="fur">disc video HD DVD</comment>
+ <comment xml:lang="fr">disque vidéo HD DVD</comment>
+ <comment xml:lang="fo">HD DVD video diskur</comment>
+ <comment xml:lang="fi">HD DVD -videolevy</comment>
+ <comment xml:lang="eu">HD DVD bideo-diskoa</comment>
+ <comment xml:lang="es">disco de vídeo HD DVD</comment>
+ <comment xml:lang="en_GB">HD DVD video disc</comment>
+ <comment xml:lang="el">Δίσκος βίντεο HD DVD</comment>
+ <comment xml:lang="de">HD-DVD-Video</comment>
+ <comment xml:lang="da">HD DVD-videodisk</comment>
+ <comment xml:lang="cs">Videodisk HD DVD</comment>
+ <comment xml:lang="ca">disc de vídeo HD-DVD</comment>
+ <comment xml:lang="bg">HD DVD — видео</comment>
+ <comment xml:lang="be@latin">Videadysk HD DVD</comment>
+ <comment xml:lang="be">відэадыск HD DVD</comment>
+ <comment xml:lang="ast">Discu HD DVD de videu</comment>
+ <comment xml:lang="ar">قرص فيديو HD DVD</comment>
+ <comment xml:lang="af">HD-DVD-videoskyf</comment>
<treemagic>
- <treematch type="file" path="HVDVD_TS/HV000I01.IFO"/>
- <treematch type="file" path="HVDVD_TS/HV001I01.IFO"/>
- <treematch type="file" path="HVDVD_TS/HVA00001.VTI"/>
+ <treematch path="HVDVD_TS/HV000I01.IFO" type="file"/>
+ <treematch path="HVDVD_TS/HV001I01.IFO" type="file"/>
+ <treematch path="HVDVD_TS/HVA00001.VTI" type="file"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/ebook-reader">
-
- <comment>e-book reader</comment>
- <comment xml:lang="bg">Четец на е-книги</comment>
- <comment xml:lang="ca">lector de llibres electrònics</comment>
- <comment xml:lang="cs">čtečka elektronických knih</comment>
- <comment xml:lang="da">e-bogslæser</comment>
- <comment xml:lang="de">E-Book-Leser</comment>
- <comment xml:lang="el">Αναγνώστης ηλεκτρονικών βιβλίων</comment>
- <comment xml:lang="en_GB">e-book reader</comment>
- <comment xml:lang="es">lector de libros electrónicos</comment>
- <comment xml:lang="eu">e-book irakurlea</comment>
- <comment xml:lang="fi">e-kirjan lukulaite</comment>
- <comment xml:lang="fr">lecteur de livre numérique</comment>
- <comment xml:lang="ga">léitheoir r-leabhair</comment>
- <comment xml:lang="gl">lector de libros electrónicos</comment>
- <comment xml:lang="he">קורא ספרים אלקטרוניים</comment>
- <comment xml:lang="hr">Čitač e-knjiga</comment>
- <comment xml:lang="hu">e-könyvolvasó</comment>
- <comment xml:lang="ia">Lector de libro electronic</comment>
- <comment xml:lang="id">Pembaca e-book</comment>
- <comment xml:lang="it">Lettore e-book</comment>
- <comment xml:lang="ja">電子書籍リーダー</comment>
- <comment xml:lang="kk">электронды кітаптарды оқу құрылғысы</comment>
- <comment xml:lang="ko">전자책 리더</comment>
- <comment xml:lang="lv">e-grāmatu lasītājs</comment>
- <comment xml:lang="nl">e-book reader</comment>
- <comment xml:lang="oc">lector de libre numeric</comment>
- <comment xml:lang="pl">Czytnik e-booków</comment>
- <comment xml:lang="pt">leitor de ebooks</comment>
- <comment xml:lang="pt_BR">Leitor de e-book</comment>
+ <!-- see fd.o hal spec -->
+ <comment>E-book reader</comment>
+ <comment xml:lang="uk">пристрій для читання ел. книг</comment>
+ <comment xml:lang="sv">E-bokläsare</comment>
<comment xml:lang="ru">Устройство для чтения электронных книг</comment>
- <comment xml:lang="sk">Čítačka e-kníh</comment>
- <comment xml:lang="sl">Bralnik elektronskih knjig</comment>
- <comment xml:lang="sr">читач ел. књига</comment>
- <comment xml:lang="sv">e-bokläsare</comment>
- <comment xml:lang="tr">e-kitap okuyucu</comment>
- <comment xml:lang="uk">пристрій для читання електронних книг</comment>
- <comment xml:lang="zh_CN">电子书阅读器</comment>
- <comment xml:lang="zh_TW">e-book 閱讀器</comment>
+ <comment xml:lang="pt_BR">Leitor de e-book</comment>
+ <comment xml:lang="pl">Czytnik e-booków</comment>
+ <comment xml:lang="ja">電子書籍閲覧機</comment>
+ <comment xml:lang="it">Lettore e-book</comment>
+ <comment xml:lang="gl">Lector de libros electrónicos</comment>
+ <comment xml:lang="es">lector de libros electrónicos</comment>
+ <comment xml:lang="de">E-Book-Reader</comment>
+ <comment xml:lang="be">электронная кніга</comment>
<treemagic>
- <treematch type="directory" path=".kobo" non-empty="true"/>
+ <treematch path=".kobo" type="directory" non-empty="true"/>
<treematch path="system/com.amazon.ebook.booklet.reader" non-empty="false"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/image-picturecd">
-
+ <!-- TRANSLATORS: This is a brand-name, not a generic term. Please see
+ http://en.wikipedia.org/wiki/Picture_CD
+ http://www.re.org/kristin/picturecd.html -->
<comment>Picture CD</comment>
- <comment xml:lang="ar">Picture CD</comment>
- <comment xml:lang="be@latin">Picture CD</comment>
- <comment xml:lang="bg">CD — изображения</comment>
- <comment xml:lang="ca">Picture CD</comment>
- <comment xml:lang="cs">Picture CD</comment>
- <comment xml:lang="da">Billedcd</comment>
- <comment xml:lang="de">Picture CD</comment>
- <comment xml:lang="el">CD εικόνων</comment>
- <comment xml:lang="en_GB">Picture CD</comment>
- <comment xml:lang="es">Picture CD</comment>
- <comment xml:lang="eu">Picture CD</comment>
- <comment xml:lang="fi">Picture CD</comment>
- <comment xml:lang="fo">Picture CD</comment>
- <comment xml:lang="fr">CD Picture</comment>
- <comment xml:lang="ga">dlúthdhiosca grianghraf</comment>
- <comment xml:lang="gl">Picture CD</comment>
- <comment xml:lang="he">תקליטור תמונות</comment>
- <comment xml:lang="hr">Slikovni CD</comment>
- <comment xml:lang="hu">Picture CD</comment>
- <comment xml:lang="ia">Disco Picture CD</comment>
- <comment xml:lang="id">CD Gambar</comment>
- <comment xml:lang="it">Picture CD</comment>
- <comment xml:lang="ja">ピクチャー CD</comment>
- <comment xml:lang="kk">Picture CD</comment>
- <comment xml:lang="ko">Picture CD</comment>
- <comment xml:lang="lt">Paveikslėlių CD</comment>
- <comment xml:lang="lv">Attēlu CD</comment>
- <comment xml:lang="nl">foto-CD</comment>
- <comment xml:lang="nn">Bilete-CD</comment>
- <comment xml:lang="oc">CD Picture</comment>
- <comment xml:lang="pl">Picture CD</comment>
- <comment xml:lang="pt">Picture CD</comment>
- <comment xml:lang="pt_BR">CD de Fotos</comment>
- <comment xml:lang="ro">CD cu fotografii</comment>
- <comment xml:lang="ru">Picture CD</comment>
- <comment xml:lang="sk">Picture CD</comment>
- <comment xml:lang="sl">Slikovni CD</comment>
- <comment xml:lang="sq">Picture CD</comment>
- <comment xml:lang="sr">ЦД са сликама</comment>
- <comment xml:lang="sv">Picture CD</comment>
- <comment xml:lang="tr">Resim CD'si</comment>
- <comment xml:lang="uk">CD з зображеннями</comment>
- <comment xml:lang="vi">Đĩa CD ảnh</comment>
- <comment xml:lang="zh_CN">柯达 Picture CD</comment>
<comment xml:lang="zh_TW">圖片 CD</comment>
+ <comment xml:lang="zh_CN">柯达 Picture CD</comment>
+ <comment xml:lang="vi">Đĩa CD ảnh</comment>
+ <comment xml:lang="uk">CD з зображеннями</comment>
+ <comment xml:lang="tr">Resim CD'si</comment>
+ <comment xml:lang="sv">Picture CD</comment>
+ <comment xml:lang="sr">ЦД са сликама</comment>
+ <comment xml:lang="sq">Picture CD</comment>
+ <comment xml:lang="sl">Slikovni CD</comment>
+ <comment xml:lang="si">පින්තූර සීඩී</comment>
+ <comment xml:lang="sk">Picture CD</comment>
+ <comment xml:lang="ru">Picture CD</comment>
+ <comment xml:lang="ro">CD cu fotografii</comment>
+ <comment xml:lang="pt_BR">CD de Fotos</comment>
+ <comment xml:lang="pt">Picture CD</comment>
+ <comment xml:lang="pl">Picture CD</comment>
+ <comment xml:lang="oc">CD Picture</comment>
+ <comment xml:lang="nn">Bilete-CD</comment>
+ <comment xml:lang="nl">Picture CD</comment>
+ <comment xml:lang="lv">Attēlu CD</comment>
+ <comment xml:lang="lt">Paveikslėlių CD</comment>
+ <comment xml:lang="ko">Picture CD</comment>
+ <comment xml:lang="kk">Picture CD</comment>
+ <comment xml:lang="ka">ფოტო სურათებიანი CD</comment>
+ <comment xml:lang="ja">ピクチャー CD</comment>
+ <comment xml:lang="it">Picture CD</comment>
+ <comment xml:lang="is">Picture CD-mynddiskur</comment>
+ <comment xml:lang="id">CD Gambar</comment>
+ <comment xml:lang="ia">Disco Picture CD</comment>
+ <comment xml:lang="hu">Picture CD</comment>
+ <comment xml:lang="hr">Slikovni CD</comment>
+ <comment xml:lang="he">תקליטור תמונות</comment>
+ <comment xml:lang="gl">Picture CD</comment>
+ <comment xml:lang="ga">dlúthdhiosca grianghraf</comment>
+ <comment xml:lang="fur">Picture CD</comment>
+ <comment xml:lang="fr">CD Picture</comment>
+ <comment xml:lang="fo">Picture CD</comment>
+ <comment xml:lang="fi">Picture CD</comment>
+ <comment xml:lang="eu">Picture CD</comment>
+ <comment xml:lang="es">Picture CD</comment>
+ <comment xml:lang="en_GB">Picture CD</comment>
+ <comment xml:lang="el">CD εικόνων</comment>
+ <comment xml:lang="de">Kodak Picture-CD</comment>
+ <comment xml:lang="da">Billedcd</comment>
+ <comment xml:lang="cs">Picture CD</comment>
+ <comment xml:lang="ca">CD d'imatges</comment>
+ <comment xml:lang="bg">Picture CD — изображения</comment>
+ <comment xml:lang="be@latin">Picture CD</comment>
+ <comment xml:lang="be">Picture CD</comment>
+ <comment xml:lang="ar">سي دي صورة</comment>
+ <comment xml:lang="af">Picture CD</comment>
<treemagic>
- <treematch type="directory" path="PICTURES" non-empty="true" match-case="true"/>
+ <treematch path="PICTURES" type="directory" non-empty="true" match-case="true"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/audio-player">
-
- <comment>portable audio player</comment>
- <comment xml:lang="ar">مشغل الملفات المسموعة المحمولة</comment>
- <comment xml:lang="be@latin">pieranosny aŭdyjoplayer</comment>
- <comment xml:lang="bg">Преносим аудио плеър</comment>
- <comment xml:lang="ca">reproductor d'àudio portàtil</comment>
- <comment xml:lang="cs">přenosný zvukový přehrávač</comment>
- <comment xml:lang="da">bærbar lydafspiller</comment>
- <comment xml:lang="de">Portables Audio-Wiedergabegerät</comment>
- <comment xml:lang="el">Φορητός αναπαραγωγέας μουσικής</comment>
- <comment xml:lang="en_GB">portable audio player</comment>
- <comment xml:lang="es">dispositivo de sonido portátil</comment>
- <comment xml:lang="eu">audio erreproduzigailu eramangarria</comment>
- <comment xml:lang="fi">siirrettävä äänisoitin</comment>
- <comment xml:lang="fo">leysur ljóðavspælari</comment>
- <comment xml:lang="fr">lecteur audio portable</comment>
- <comment xml:lang="ga">seinnteoir iniompartha fuaime</comment>
- <comment xml:lang="gl">dispositivo de son portábel</comment>
- <comment xml:lang="he">נגן מוזיקה נייד</comment>
- <comment xml:lang="hr">Prenosivi glazbeni svirač</comment>
- <comment xml:lang="hu">hordozható zenelejátszó</comment>
- <comment xml:lang="ia">Lector audio portabile</comment>
- <comment xml:lang="id">pemutar audio portable</comment>
- <comment xml:lang="it">Lettore audio portabile</comment>
- <comment xml:lang="ja">ポータブルオーディオプレイヤー</comment>
- <comment xml:lang="kk">тасымалы аудио плеер</comment>
- <comment xml:lang="ko">휴대용 오디오 재생기</comment>
- <comment xml:lang="lt">nešiojamasis garso leistuvas</comment>
- <comment xml:lang="lv">portatīvais audio atskaņotājs</comment>
- <comment xml:lang="nl">draagbare audiospeler</comment>
- <comment xml:lang="nn">portable audio layer</comment>
- <comment xml:lang="oc">lector àudio portable</comment>
- <comment xml:lang="pl">Przenośny odtwarzacz dźwięku</comment>
- <comment xml:lang="pt">reprodutor áudio portátil</comment>
- <comment xml:lang="pt_BR">Reprodutor de áudio portátil</comment>
- <comment xml:lang="ro">player audio portabil</comment>
+ <!-- see fd.o hal spec -->
+ <comment>Portable audio player</comment>
+ <comment xml:lang="uk">портативний звуковий програвач</comment>
+ <comment xml:lang="sv">Bärbar ljudspelare</comment>
<comment xml:lang="ru">Портативный аудиопроигрыватель</comment>
- <comment xml:lang="sk">Prenosný hudobný prehrávač</comment>
- <comment xml:lang="sl">prenosni predvajalnik zvoka</comment>
- <comment xml:lang="sq">Lexues audio portativ</comment>
- <comment xml:lang="sr">преносна музичка справица</comment>
- <comment xml:lang="sv">bärbar ljudspelare</comment>
- <comment xml:lang="tr">taşınabilir ses oynatıcısı</comment>
- <comment xml:lang="uk">портативний аудіопрогравач</comment>
- <comment xml:lang="vi">bộ phát nhạc di động</comment>
- <comment xml:lang="zh_CN">便携式音频播放器</comment>
- <comment xml:lang="zh_TW">可攜式音訊播放程式</comment>
+ <comment xml:lang="pl">Przenośny odtwarzacz dźwięku</comment>
+ <comment xml:lang="it">Lettore audio portabile</comment>
+ <comment xml:lang="es">reproductor de audio portátil</comment>
+ <comment xml:lang="de">Portables Audio-Wiedergabegerät</comment>
+ <comment xml:lang="be">партатыўны аўдыяплэер</comment>
+ </mime-type>
+ <mime-type type="x-content/ostree-repository">
+ <!-- https://github.com/ostreedev/ostree/blob/master/man/ostree-create-usb.xml -->
+ <comment>OSTree software updates</comment>
+ <comment xml:lang="zh_TW">OSTree 軟體更新</comment>
+ <comment xml:lang="zh_CN">OSTree 软件更新</comment>
+ <comment xml:lang="uk">оновлення програмного забезпечення OSTree</comment>
+ <comment xml:lang="tr">OSTree yazılım güncellemeleri</comment>
+ <comment xml:lang="sv">OSTree programvaruuppdateringar</comment>
+ <comment xml:lang="sq">përditësime software-i OSTree</comment>
+ <comment xml:lang="sl">Posodobitve programja OSTree</comment>
+ <comment xml:lang="si">OSTree මෘදුකාංග යාවත්කාලීන</comment>
+ <comment xml:lang="ru">Обновления программного обеспечения OSTree</comment>
+ <comment xml:lang="pt_BR">Atualizações de software OSTree</comment>
+ <comment xml:lang="pl">Aktualizacje oprogramowania OSTree</comment>
+ <comment xml:lang="nl">OSTree-software-updates</comment>
+ <comment xml:lang="ko">OSTree 소프트웨어 업데이트</comment>
+ <comment xml:lang="kk">OSTree бағдарламалық қамтама жаңартулары</comment>
+ <comment xml:lang="ja">OSTree ソフトウェアアップデート</comment>
+ <comment xml:lang="it">Aggiornamenti software OSTree</comment>
+ <comment xml:lang="is">OSTree hugbúnaðaruppfærslur</comment>
+ <comment xml:lang="id">Pemutakhiran perangkat lunak OSTree</comment>
+ <comment xml:lang="hu">OSTree szoftverfrissítések</comment>
+ <comment xml:lang="hr">OSTree nadopune softvera</comment>
+ <comment xml:lang="he">עדכוני תכנה של OSTree</comment>
+ <comment xml:lang="fr">mises à jour logicielles OSTree</comment>
+ <comment xml:lang="fi">OSTree-ohjelmistopäivitykset</comment>
+ <comment xml:lang="eu">OSTree software eguneraketak</comment>
+ <comment xml:lang="es">actualizaciones de programas de OSTree</comment>
+ <comment xml:lang="en_GB">OSTree software updates</comment>
+ <comment xml:lang="de">OSTree-Softwareaktualisierungen</comment>
+ <comment xml:lang="da">OSTree-softwareopdateringer</comment>
+ <comment xml:lang="ca">actualitzacions de programari OSTree</comment>
+ <comment xml:lang="bg">Обновление — OSTree</comment>
+ <comment xml:lang="be">абнаўленні ПЗ OSTree</comment>
+ <comment xml:lang="ar">تحديثات برامج OSTree</comment>
+ <treemagic>
+ <treematch path=".ostree" type="directory" non-empty="true" match-case="true"/>
+ <treematch path="ostree/repo" type="directory" non-empty="true" match-case="true"/>
+ <treematch path="var/lib/flatpak/repo" type="directory" non-empty="true" match-case="true"/>
+ </treemagic>
</mime-type>
-
<mime-type type="x-content/software">
-
- <comment>software</comment>
- <comment xml:lang="ar">برنامج</comment>
- <comment xml:lang="be@latin">prahrama</comment>
- <comment xml:lang="bg">Софтуер</comment>
- <comment xml:lang="ca">programari</comment>
- <comment xml:lang="cs">software</comment>
- <comment xml:lang="da">software</comment>
- <comment xml:lang="de">Software</comment>
- <comment xml:lang="el">Λογισμικό</comment>
- <comment xml:lang="en_GB">software</comment>
- <comment xml:lang="es">software</comment>
- <comment xml:lang="eu">softwarea</comment>
- <comment xml:lang="fi">ohjelmisto</comment>
- <comment xml:lang="fo">ritbúnaður</comment>
- <comment xml:lang="fr">logiciel</comment>
- <comment xml:lang="ga">bogearraí</comment>
- <comment xml:lang="gl">software</comment>
- <comment xml:lang="he">תכנה</comment>
- <comment xml:lang="hr">Softver</comment>
- <comment xml:lang="hu">szoftver</comment>
- <comment xml:lang="ia">Software</comment>
- <comment xml:lang="id">peranti lunak</comment>
- <comment xml:lang="it">Software</comment>
- <comment xml:lang="ja">ソフトウェア</comment>
- <comment xml:lang="ka">პროგრამული უზრუნველყოფა</comment>
- <comment xml:lang="kk">бағдарламалық қамтама</comment>
- <comment xml:lang="ko">소프트웨어</comment>
- <comment xml:lang="lt">programinė įranga</comment>
- <comment xml:lang="lv">programmatūra</comment>
- <comment xml:lang="nl">software</comment>
- <comment xml:lang="nn">programvare</comment>
- <comment xml:lang="oc">logicial</comment>
- <comment xml:lang="pl">Oprogramowanie</comment>
- <comment xml:lang="pt">programa</comment>
- <comment xml:lang="pt_BR">Aplicativo</comment>
- <comment xml:lang="ro">software</comment>
- <comment xml:lang="ru">Программное обеспечение</comment>
- <comment xml:lang="sk">Softvér</comment>
- <comment xml:lang="sl">programska oprema</comment>
- <comment xml:lang="sq">Software</comment>
- <comment xml:lang="sr">софтвер</comment>
- <comment xml:lang="sv">programvara</comment>
- <comment xml:lang="tr">yazılım</comment>
+ <!-- http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
+ http://bugzilla.gnome.org/show_bug.cgi?id=509823#c3 -->
+ <comment>Software</comment>
<comment xml:lang="uk">програмне забезпечення</comment>
- <comment xml:lang="vi">phần mềm</comment>
- <comment xml:lang="zh_CN">软件</comment>
- <comment xml:lang="zh_TW">軟體</comment>
+ <comment xml:lang="sv">Programvara</comment>
+ <comment xml:lang="ru">Программное обеспечение</comment>
+ <comment xml:lang="pt_BR">Software</comment>
+ <comment xml:lang="pl">Oprogramowanie</comment>
+ <comment xml:lang="ja">ソフトウェア</comment>
+ <comment xml:lang="it">Software</comment>
+ <comment xml:lang="gl">Software</comment>
+ <comment xml:lang="eu">Softwarea</comment>
+ <comment xml:lang="es">sóftwer</comment>
+ <comment xml:lang="de">Software</comment>
+ <comment xml:lang="be">праграмнае забеспячэнне</comment>
</mime-type>
-
<mime-type type="x-content/unix-software">
-
+ <!-- http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
+ http://bugzilla.gnome.org/show_bug.cgi?id=509823#c3 -->
<comment>UNIX software</comment>
- <comment xml:lang="ar">برنامج يونكس</comment>
- <comment xml:lang="bg">Софтуер за UNIX</comment>
- <comment xml:lang="ca">programari d'UNIX</comment>
- <comment xml:lang="cs">software systému UNIX</comment>
- <comment xml:lang="da">UNIX-programmer</comment>
- <comment xml:lang="de">UNIX-Software</comment>
- <comment xml:lang="el">Λογισμικό UNIX</comment>
- <comment xml:lang="en_GB">UNIX software</comment>
- <comment xml:lang="es">software de UNIX</comment>
- <comment xml:lang="eu">UNIXeko softwarea</comment>
- <comment xml:lang="fi">UNIX-ohjelmisto</comment>
- <comment xml:lang="fo">UNIX ritbúnaður</comment>
- <comment xml:lang="fr">logiciel UNIX</comment>
- <comment xml:lang="ga">bogearraí UNIX</comment>
- <comment xml:lang="gl">Software de UNIX</comment>
- <comment xml:lang="he">תכנה ל־UNIX</comment>
- <comment xml:lang="hr">UNIX softver</comment>
- <comment xml:lang="hu">UNIX-szoftver</comment>
- <comment xml:lang="ia">Software pro UNIX</comment>
- <comment xml:lang="id">Peranti lunak UNIX</comment>
- <comment xml:lang="it">Software UNIX</comment>
- <comment xml:lang="ja">UNIX ソフトウェア</comment>
- <comment xml:lang="kk">UNIX бағдарламасы</comment>
- <comment xml:lang="ko">UNIX 소프트웨어</comment>
- <comment xml:lang="lt">UNIX programinė įranga</comment>
- <comment xml:lang="lv">UNIX programmatūra</comment>
- <comment xml:lang="nl">UNIX software</comment>
- <comment xml:lang="oc">logicial UNIX</comment>
- <comment xml:lang="pl">Oprogramowanie systemu UNIX</comment>
- <comment xml:lang="pt">programa UNIX</comment>
- <comment xml:lang="pt_BR">Aplicativo UNIX</comment>
- <comment xml:lang="ro">Software UNIX</comment>
- <comment xml:lang="ru">Программа UNIX</comment>
- <comment xml:lang="sk">Softvér UNIX</comment>
- <comment xml:lang="sl">Programska datoteka UNIX</comment>
- <comment xml:lang="sr">ЈУНИКС-ов софтвер</comment>
- <comment xml:lang="sv">UNIX-programvara</comment>
- <comment xml:lang="tr">UNIX yazılımı</comment>
- <comment xml:lang="uk">програмне забезпечення UNIX</comment>
- <comment xml:lang="zh_CN">UNIX 软件</comment>
<comment xml:lang="zh_TW">UNIX 軟體</comment>
+ <comment xml:lang="zh_CN">UNIX 软件</comment>
+ <comment xml:lang="uk">програмне забезпечення UNIX</comment>
+ <comment xml:lang="tr">UNIX yazılımı</comment>
+ <comment xml:lang="sv">UNIX-programvara</comment>
+ <comment xml:lang="sr">ЈУНИКС-ов софтвер</comment>
+ <comment xml:lang="sq">software UNIX</comment>
+ <comment xml:lang="sl">Programska datoteka UNIX</comment>
+ <comment xml:lang="si">UNIX මෘදුකාංගය</comment>
+ <comment xml:lang="sk">Softvér UNIX</comment>
+ <comment xml:lang="ru">Программа UNIX</comment>
+ <comment xml:lang="ro">Software UNIX</comment>
+ <comment xml:lang="pt_BR">Aplicativo UNIX</comment>
+ <comment xml:lang="pt">programa UNIX</comment>
+ <comment xml:lang="pl">Oprogramowanie systemu UNIX</comment>
+ <comment xml:lang="oc">logicial UNIX</comment>
+ <comment xml:lang="nl">UNIX-software</comment>
+ <comment xml:lang="lv">UNIX programmatūra</comment>
+ <comment xml:lang="lt">UNIX programinė įranga</comment>
+ <comment xml:lang="ko">UNIX 소프트웨어</comment>
+ <comment xml:lang="kk">UNIX бағдарламасы</comment>
+ <comment xml:lang="ja">UNIX ソフトウェア</comment>
+ <comment xml:lang="it">Software UNIX</comment>
+ <comment xml:lang="is">UNIX hugbúnaður</comment>
+ <comment xml:lang="id">Peranti lunak UNIX</comment>
+ <comment xml:lang="ia">Software pro UNIX</comment>
+ <comment xml:lang="hu">UNIX-szoftver</comment>
+ <comment xml:lang="hr">UNIX softver</comment>
+ <comment xml:lang="he">תכנה ל־UNIX</comment>
+ <comment xml:lang="gl">Software de UNIX</comment>
+ <comment xml:lang="ga">bogearraí UNIX</comment>
+ <comment xml:lang="fur">software UNIX</comment>
+ <comment xml:lang="fr">logiciel UNIX</comment>
+ <comment xml:lang="fo">UNIX ritbúnaður</comment>
+ <comment xml:lang="fi">UNIX-ohjelmisto</comment>
+ <comment xml:lang="eu">UNIXeko softwarea</comment>
+ <comment xml:lang="es">software de UNIX</comment>
+ <comment xml:lang="en_GB">UNIX software</comment>
+ <comment xml:lang="el">Λογισμικό UNIX</comment>
+ <comment xml:lang="de">UNIX-Software</comment>
+ <comment xml:lang="da">UNIX-programmer</comment>
+ <comment xml:lang="cs">software systému UNIX</comment>
+ <comment xml:lang="ca">programari d'UNIX</comment>
+ <comment xml:lang="bg">Софтуер — UNIX</comment>
+ <comment xml:lang="be">ПЗ UNIX</comment>
+ <comment xml:lang="ar">برنامج يونكس</comment>
+ <comment xml:lang="af">UNIX-sagteware</comment>
<sub-class-of type="x-content/software"/>
<treemagic>
- <treematch type="file" path=".autorun" match-case="true"/>
- <treematch type="file" path="autorun" match-case="true"/>
- <treematch type="file" path="autorun.sh" match-case="true"/>
+ <treematch path=".autorun" type="file" match-case="true"/>
+ <treematch path="autorun" type="file" match-case="true"/>
+ <treematch path="autorun.sh" type="file" match-case="true"/>
</treemagic>
</mime-type>
-
<mime-type type="x-content/win32-software">
-
+ <!-- http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
+ http://bugzilla.gnome.org/show_bug.cgi?id=509823#c3 -->
<comment>Windows software</comment>
- <comment xml:lang="ar">برنامج ويندوز</comment>
- <comment xml:lang="bg">Софтуер — Windows</comment>
- <comment xml:lang="ca">programari de Windows</comment>
- <comment xml:lang="cs">software systému Windows</comment>
- <comment xml:lang="da">Windowsprogram</comment>
- <comment xml:lang="de">Windows-Software</comment>
- <comment xml:lang="el">Λογισμικό Windows</comment>
- <comment xml:lang="en_GB">Windows software</comment>
- <comment xml:lang="es">software de Windows</comment>
- <comment xml:lang="eu">Windows-eko softwarea</comment>
- <comment xml:lang="fi">Windows-ohjelmisto</comment>
- <comment xml:lang="fo">Windows ritbúnaður</comment>
- <comment xml:lang="fr">logiciel Windows</comment>
- <comment xml:lang="ga">bogearraí Windows</comment>
- <comment xml:lang="gl">Software de Windows</comment>
- <comment xml:lang="he">תכנה ל־Windows</comment>
- <comment xml:lang="hr">Windows softver</comment>
- <comment xml:lang="hu">Windows-szoftver</comment>
- <comment xml:lang="ia">Software Windows</comment>
- <comment xml:lang="id">Piranti lunak Windows</comment>
- <comment xml:lang="it">Software Windows</comment>
- <comment xml:lang="ja">Windows ソフトウェア</comment>
- <comment xml:lang="kk">Windows бағдарламасы</comment>
- <comment xml:lang="ko">Windows 소프트웨어</comment>
- <comment xml:lang="lt">Windows programinė įranga</comment>
- <comment xml:lang="lv">Windows programmatūra</comment>
- <comment xml:lang="nl">Windows software</comment>
- <comment xml:lang="oc">logicial Windows</comment>
- <comment xml:lang="pl">Oprogramowanie systemu Windows</comment>
- <comment xml:lang="pt">programa Windows</comment>
- <comment xml:lang="pt_BR">Programa do Windows</comment>
- <comment xml:lang="ro">Software Windows</comment>
- <comment xml:lang="ru">Программа Windows</comment>
- <comment xml:lang="sk">Softvér Windows</comment>
- <comment xml:lang="sl">Programska oprema za okolje Windows</comment>
- <comment xml:lang="sr">Виндоузов софтвер</comment>
- <comment xml:lang="sv">Windows-program</comment>
- <comment xml:lang="tr">Windows yazılımı</comment>
- <comment xml:lang="uk">програмне забезпечення Windows</comment>
- <comment xml:lang="zh_CN">Windows 软件</comment>
<comment xml:lang="zh_TW">Windows 軟體</comment>
+ <comment xml:lang="zh_CN">Windows 软件</comment>
+ <comment xml:lang="uk">програмне забезпечення Windows</comment>
+ <comment xml:lang="tr">Windows yazılımı</comment>
+ <comment xml:lang="sv">Windows-program</comment>
+ <comment xml:lang="sr">Виндоузов софтвер</comment>
+ <comment xml:lang="sq">software Windows</comment>
+ <comment xml:lang="sl">Programska oprema za okolje Windows</comment>
+ <comment xml:lang="si">වින්ඩෝස් මෘදුකාංග</comment>
+ <comment xml:lang="sk">Softvér Windows</comment>
+ <comment xml:lang="ru">Программа Windows</comment>
+ <comment xml:lang="ro">Software Windows</comment>
+ <comment xml:lang="pt_BR">Programa do Windows</comment>
+ <comment xml:lang="pt">programa Windows</comment>
+ <comment xml:lang="pl">Oprogramowanie systemu Windows</comment>
+ <comment xml:lang="oc">logicial Windows</comment>
+ <comment xml:lang="nl">Windows-software</comment>
+ <comment xml:lang="lv">Windows programmatūra</comment>
+ <comment xml:lang="lt">Windows programinė įranga</comment>
+ <comment xml:lang="ko">Windows 소프트웨어</comment>
+ <comment xml:lang="kk">Windows бағдарламасы</comment>
+ <comment xml:lang="ka">Windows-ის პროგრამა</comment>
+ <comment xml:lang="ja">Windows ソフトウェア</comment>
+ <comment xml:lang="it">Software Windows</comment>
+ <comment xml:lang="is">Windows hugbúnaður</comment>
+ <comment xml:lang="id">Piranti lunak Windows</comment>
+ <comment xml:lang="ia">Software Windows</comment>
+ <comment xml:lang="hu">Windows-szoftver</comment>
+ <comment xml:lang="hr">Windows softver</comment>
+ <comment xml:lang="he">תכנה ל־Windows</comment>
+ <comment xml:lang="gl">Software de Windows</comment>
+ <comment xml:lang="ga">bogearraí Windows</comment>
+ <comment xml:lang="fur">software Windows</comment>
+ <comment xml:lang="fr">logiciel Windows</comment>
+ <comment xml:lang="fo">Windows ritbúnaður</comment>
+ <comment xml:lang="fi">Windows-ohjelmisto</comment>
+ <comment xml:lang="eu">Windows-eko softwarea</comment>
+ <comment xml:lang="es">software de Windows</comment>
+ <comment xml:lang="en_GB">Windows software</comment>
+ <comment xml:lang="el">Λογισμικό Windows</comment>
+ <comment xml:lang="de">Windows-Software</comment>
+ <comment xml:lang="da">Windowsprogram</comment>
+ <comment xml:lang="cs">software systému Windows</comment>
+ <comment xml:lang="ca">programari de Windows</comment>
+ <comment xml:lang="bg">Софтуер — Windows</comment>
+ <comment xml:lang="be">ПЗ Windows</comment>
+ <comment xml:lang="ar">برنامج ويندوز</comment>
+ <comment xml:lang="af">Windows-sagteware</comment>
<sub-class-of type="x-content/software"/>
<treemagic>
- <treematch type="file" path="autorun.exe" executable="true"/>
- <treematch type="file" path="autorun.inf"/>
+ <treematch path="autorun.exe" type="file" executable="true"/>
+ <treematch path="autorun.inf" type="file"/>
</treemagic>
</mime-type>
-
<mime-type type="application/trig">
<comment>TriG RDF document</comment>
- <comment xml:lang="ast">Documentu RDF TriG</comment>
- <comment xml:lang="ca">document TriG RDF</comment>
- <comment xml:lang="cs">dokument Trig RDF</comment>
- <comment xml:lang="da">TriG RDF-dokument</comment>
- <comment xml:lang="de">TriG-RDF-Dokument</comment>
- <comment xml:lang="el">Έγγραφο TriG RDF</comment>
- <comment xml:lang="en_GB">TriG RDF document</comment>
- <comment xml:lang="es">documento RDF de TriG</comment>
- <comment xml:lang="eu">TriG RDF dokumentua</comment>
- <comment xml:lang="fi">TriG RDF -asiakirja</comment>
- <comment xml:lang="fr">document RDF TriG</comment>
- <comment xml:lang="ga">cáipéis RDF TriG</comment>
- <comment xml:lang="gl">Documento RDF TriG</comment>
- <comment xml:lang="he">מסמך RDF של TriG</comment>
- <comment xml:lang="hr">TriG RDF dokument</comment>
- <comment xml:lang="hu">TriG RDF dokumentum</comment>
- <comment xml:lang="ia">Documento TriG RDF</comment>
- <comment xml:lang="id">Dokumen TriG RDF</comment>
- <comment xml:lang="it">Documento TriG RDF</comment>
- <comment xml:lang="kk">TriG RDF құжаты</comment>
- <comment xml:lang="ko">TriG RDF 문서</comment>
- <comment xml:lang="oc">document RDF TriG</comment>
- <comment xml:lang="pl">Dokument RDF TriG</comment>
- <comment xml:lang="pt">documento TriG RDF</comment>
- <comment xml:lang="pt_BR">Documento RDF do TriG</comment>
- <comment xml:lang="ru">Документ TriG RDF</comment>
- <comment xml:lang="sk">RDF dokument TriG</comment>
- <comment xml:lang="sl">Dokument TriG RDF</comment>
- <comment xml:lang="sr">ТриГ РДФ документ</comment>
- <comment xml:lang="sv">TriG RDF-dokument</comment>
- <comment xml:lang="tr">TriG RDF belgesi</comment>
- <comment xml:lang="uk">документ RDF TriG</comment>
- <comment xml:lang="zh_CN">TriG RDF 文档</comment>
<comment xml:lang="zh_TW">TriG RDF 文件</comment>
+ <comment xml:lang="zh_CN">TriG RDF 文档</comment>
+ <comment xml:lang="uk">документ RDF TriG</comment>
+ <comment xml:lang="tr">TriG RDF belgesi</comment>
+ <comment xml:lang="sv">TriG RDF-dokument</comment>
+ <comment xml:lang="sr">ТриГ РДФ документ</comment>
+ <comment xml:lang="sq">dokument TriG RDF</comment>
+ <comment xml:lang="sl">Dokument TriG RDF</comment>
+ <comment xml:lang="si">TriG RDF ලේඛනය</comment>
+ <comment xml:lang="sk">RDF dokument TriG</comment>
+ <comment xml:lang="ru">Документ TriG RDF</comment>
+ <comment xml:lang="pt_BR">Documento RDF do TriG</comment>
+ <comment xml:lang="pt">documento TriG RDF</comment>
+ <comment xml:lang="pl">Dokument RDF TriG</comment>
+ <comment xml:lang="oc">document RDF TriG</comment>
+ <comment xml:lang="nl">TriG RDF-document</comment>
+ <comment xml:lang="ko">TriG RDF 문서</comment>
+ <comment xml:lang="kk">TriG RDF құжаты</comment>
+ <comment xml:lang="ja">TriG RDF ドキュメント</comment>
+ <comment xml:lang="it">Documento TriG RDF</comment>
+ <comment xml:lang="is">TriG RDF skjal</comment>
+ <comment xml:lang="id">Dokumen TriG RDF</comment>
+ <comment xml:lang="ia">Documento TriG RDF</comment>
+ <comment xml:lang="hu">TriG RDF dokumentum</comment>
+ <comment xml:lang="hr">TriG RDF dokument</comment>
+ <comment xml:lang="he">מסמך RDF של TriG</comment>
+ <comment xml:lang="gl">Documento RDF TriG</comment>
+ <comment xml:lang="ga">cáipéis RDF TriG</comment>
+ <comment xml:lang="fur">document TriG RDF</comment>
+ <comment xml:lang="fr">document RDF TriG</comment>
+ <comment xml:lang="fi">TriG RDF -asiakirja</comment>
+ <comment xml:lang="eu">TriG RDF dokumentua</comment>
+ <comment xml:lang="es">documento RDF de TriG</comment>
+ <comment xml:lang="en_GB">TriG RDF document</comment>
+ <comment xml:lang="el">Έγγραφο TriG RDF</comment>
+ <comment xml:lang="de">TriG-RDF-Dokument</comment>
+ <comment xml:lang="da">TriG RDF-dokument</comment>
+ <comment xml:lang="cs">dokument Trig RDF</comment>
+ <comment xml:lang="ca">document TriG RDF</comment>
+ <comment xml:lang="bg">Документ — TriG RDF</comment>
+ <comment xml:lang="be">дакумент TriG RDF</comment>
+ <comment xml:lang="ast">Documentu RDF TriG</comment>
+ <comment xml:lang="ar">وثيقة TriG RDF</comment>
+ <comment xml:lang="af">TriG RDF-dokument</comment>
<acronym>TriG</acronym>
<expanded-acronym>TriG RDF Graph Triple Language</expanded-acronym>
<sub-class-of type="text/plain"/>
<glob pattern="*.trig"/>
<alias type="application/x-trig"/>
</mime-type>
-
- <mime-type type="application/x-iwork-keynote-sffkey">
+ <mime-type type="application/vnd.apple.keynote">
<comment>Apple Keynote 5 presentation</comment>
- <comment xml:lang="ca">presentació Keynote 5 d'Apple</comment>
- <comment xml:lang="cs">prezentace Apple Keynote 5</comment>
- <comment xml:lang="da">Apple Keynote 5-præsentation</comment>
- <comment xml:lang="de">Apple-Keynote-5-Präsentation</comment>
- <comment xml:lang="el">Παρουσίαση Apple Keynote 5</comment>
- <comment xml:lang="en_GB">Apple Keynote 5 presentation</comment>
- <comment xml:lang="es">presentación de Apple Keynote 5</comment>
- <comment xml:lang="eu">Apple Keynote 5 aurkezpena</comment>
- <comment xml:lang="fi">Apple Keynote 5 -esitys</comment>
- <comment xml:lang="fr">présentation Apple Keynote 5</comment>
- <comment xml:lang="ga">láithreoireacht Apple Keynote 5</comment>
- <comment xml:lang="gl">Presentación de Apple Keynote 5</comment>
- <comment xml:lang="he">מצגת Apple Keynote 5</comment>
- <comment xml:lang="hr">Apple Keynote 5 prezentacija</comment>
- <comment xml:lang="hu">Apple Keynote 5 prezentáció</comment>
- <comment xml:lang="ia">Presentation Apple Keynote 5</comment>
- <comment xml:lang="id">Presentasi Apple Keynote 5</comment>
- <comment xml:lang="it">Presentazione Apple Keynote 5</comment>
- <comment xml:lang="kk">Apple Keynote 5 презентациясы</comment>
- <comment xml:lang="ko">Apple 키노트 5 프레젠테이션</comment>
- <comment xml:lang="oc">presentacion Apple Keynote 5</comment>
- <comment xml:lang="pl">Prezentacja Apple Keynote 5</comment>
- <comment xml:lang="pt">apresentação Apple Keynote 5</comment>
- <comment xml:lang="pt_BR">Apresentação do Apple Keynote 5</comment>
- <comment xml:lang="ru">Презентация Apple Keynote 5</comment>
- <comment xml:lang="sk">Prezentácia Apple Keynote 5</comment>
- <comment xml:lang="sl">Predstavitev Apple Keynote 5</comment>
- <comment xml:lang="sr">презентација Епл Кинота 5</comment>
- <comment xml:lang="sv">Apple Keynote 5-presentation</comment>
- <comment xml:lang="tr">Apple Keynote 5 sunumu</comment>
- <comment xml:lang="uk">презентація Apple Keynote 5</comment>
- <comment xml:lang="zh_CN">Apple Keynote 5 演示文稿</comment>
<comment xml:lang="zh_TW">Apple Keynote 5 簡報</comment>
+ <comment xml:lang="zh_CN">Apple Keynote 5 演示文稿</comment>
+ <comment xml:lang="uk">презентація Apple Keynote 5</comment>
+ <comment xml:lang="tr">Apple Keynote 5 sunumu</comment>
+ <comment xml:lang="sv">Apple Keynote 5-presentation</comment>
+ <comment xml:lang="sr">презентација Епл Кинота 5</comment>
+ <comment xml:lang="sq">paraqitje Apple Keynote 5</comment>
+ <comment xml:lang="sl">Predstavitev Apple Keynote 5</comment>
+ <comment xml:lang="si">Apple Keynote 5 ඉදිරිපත් කිරීම</comment>
+ <comment xml:lang="sk">Prezentácia Apple Keynote 5</comment>
+ <comment xml:lang="ru">Презентация Apple Keynote 5</comment>
+ <comment xml:lang="pt_BR">Apresentação do Apple Keynote 5</comment>
+ <comment xml:lang="pt">apresentação Apple Keynote 5</comment>
+ <comment xml:lang="pl">Prezentacja Apple Keynote 5</comment>
+ <comment xml:lang="oc">presentacion Apple Keynote 5</comment>
+ <comment xml:lang="nl">Apple Keynote 5-presentatie</comment>
+ <comment xml:lang="ko">Apple 키노트 5 프레젠테이션</comment>
+ <comment xml:lang="kk">Apple Keynote 5 презентациясы</comment>
+ <comment xml:lang="ja">Apple Keynote 5 プレゼンテーション</comment>
+ <comment xml:lang="it">Presentazione Apple Keynote 5</comment>
+ <comment xml:lang="is">Apple Keynote 5 glærukynning</comment>
+ <comment xml:lang="id">Presentasi Apple Keynote 5</comment>
+ <comment xml:lang="ia">Presentation Apple Keynote 5</comment>
+ <comment xml:lang="hu">Apple Keynote 5 prezentáció</comment>
+ <comment xml:lang="hr">Apple Keynote 5 prezentacija</comment>
+ <comment xml:lang="he">מצגת Apple Keynote 5</comment>
+ <comment xml:lang="gl">Presentación de Apple Keynote 5</comment>
+ <comment xml:lang="ga">láithreoireacht Apple Keynote 5</comment>
+ <comment xml:lang="fur">presentazion Apple Keynote 5</comment>
+ <comment xml:lang="fr">présentation Apple Keynote 5</comment>
+ <comment xml:lang="fi">Apple Keynote 5 -esitys</comment>
+ <comment xml:lang="eu">Apple Keynote 5 aurkezpena</comment>
+ <comment xml:lang="es">presentación de Apple Keynote 5</comment>
+ <comment xml:lang="en_GB">Apple Keynote 5 presentation</comment>
+ <comment xml:lang="el">Παρουσίαση Apple Keynote 5</comment>
+ <comment xml:lang="de">Apple-Keynote-5-Präsentation</comment>
+ <comment xml:lang="da">Apple Keynote 5-præsentation</comment>
+ <comment xml:lang="cs">prezentace Apple Keynote 5</comment>
+ <comment xml:lang="ca">presentació d'Apple Keynote 5</comment>
+ <comment xml:lang="bg">Презентация — Apple Keynote 5</comment>
+ <comment xml:lang="be">прэзентацыя Apple Keynote 5</comment>
+ <comment xml:lang="ar">عرض أبل كي نوت ٥</comment>
+ <comment xml:lang="af">Apple Keynote 5-voorlegging</comment>
<sub-class-of type="application/zip"/>
<generic-icon name="x-office-presentation"/>
<magic priority="70">
- <match value="PK\003\004" type="string" offset="0">
- <match value="index.apxl" type="string" offset="30"/>
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="index.apxl" offset="30"/>
</match>
</magic>
- <glob pattern="*.key"/>
- <alias type="application/vnd.apple.keynote"/>
+ <glob pattern="*.key" weight="80"/>
+ <alias type="application/x-iwork-keynote-sffkey"/>
+ </mime-type>
+ <mime-type type="application/vnd.apple.numbers">
+ <comment>Apple Numbers spreadsheet</comment>
+ <comment xml:lang="zh_TW">Apple Numbers 試算表</comment>
+ <comment xml:lang="uk">електронні таблиці Apple Numbers</comment>
+ <comment xml:lang="tr">Apple Numbers hesap çizelgesi</comment>
+ <comment xml:lang="sv">Apple Numbers-kalkylblad</comment>
+ <comment xml:lang="sl">Razpredelnica Apple Numbers</comment>
+ <comment xml:lang="si">ඇපල් අංක පැතුරුම්පත</comment>
+ <comment xml:lang="ru">Электронная таблица Apple Numbers</comment>
+ <comment xml:lang="pl">Arkusz Apple Numbers</comment>
+ <comment xml:lang="nl">Apple Numbers-werkblad</comment>
+ <comment xml:lang="ko">애플 넘버스 스프레드시트</comment>
+ <comment xml:lang="kk">Apple Numbers электрондық кестесі</comment>
+ <comment xml:lang="ja">Apple Numbers スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Apple Numbers</comment>
+ <comment xml:lang="hr">Apple Numbers proračunska tablica</comment>
+ <comment xml:lang="fi">Apple Numbers-taulukko</comment>
+ <comment xml:lang="es">hoja de cálculo Apple Numbers</comment>
+ <comment xml:lang="en_GB">Apple Numbers spreadsheet</comment>
+ <comment xml:lang="de">Apple-Numbers-Tabelle</comment>
+ <comment xml:lang="be">электронная табліца Apple Numbers</comment>
+ <comment xml:lang="ar">جدول أرقام أبل</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="x-office-spreadsheet"/>
+ <magic priority="65">
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="index.xml" offset="30"/>
+ <match type="string" value="Index/Document.iwa" offset="30"/>
+ </match>
+ </magic>
+ <glob pattern="*.numbers"/>
+ <alias type="application/x-iwork-numbers-sffnumbers"/>
+ </mime-type>
+ <mime-type type="application/vnd.apple.pages">
+ <comment>Apple Pages document</comment>
+ <comment xml:lang="zh_TW">Apple Pages 文件</comment>
+ <comment xml:lang="uk">документ Apple Pages</comment>
+ <comment xml:lang="tr">Apple Pages belgesi</comment>
+ <comment xml:lang="sv">Apple Pages-dokument</comment>
+ <comment xml:lang="sl">Dokument Apple Pages</comment>
+ <comment xml:lang="si">Apple පිටු ලේඛනය</comment>
+ <comment xml:lang="ru">Документ Apple Pages</comment>
+ <comment xml:lang="pl">Dokument Apple Pages</comment>
+ <comment xml:lang="nl">Apple Pages-document</comment>
+ <comment xml:lang="ko">애플 페이지 문서</comment>
+ <comment xml:lang="kk">Apple Pages құжаты</comment>
+ <comment xml:lang="ja">Apple Pages ドキュメント</comment>
+ <comment xml:lang="it">Documento Apple Pages</comment>
+ <comment xml:lang="hr">Apple Pages dokument</comment>
+ <comment xml:lang="fi">Apple Pages-asiakirja</comment>
+ <comment xml:lang="eu">Apple Pages dokumentua</comment>
+ <comment xml:lang="es">documento de Apple Pages</comment>
+ <comment xml:lang="en_GB">Apple Pages document</comment>
+ <comment xml:lang="de">Apple-Pages-Dokument</comment>
+ <comment xml:lang="be">дакумент Apple Pages</comment>
+ <comment xml:lang="ar">مستند صفحات أبل</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="x-office-document"/>
+ <magic priority="70">
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="index.xml" offset="30"/>
+ <match type="string" value="Index/Document.iwa" offset="30"/>
+ </match>
+ </magic>
+ <glob pattern="*.pages"/>
+ <alias type="application/x-iwork-pages-sffpages"/>
+ </mime-type>
+ <mime-type type="application/vnd.apple.pkpass">
+ <comment>Apple Wallet pass</comment>
+ <comment xml:lang="uk">пропуск Apple Wallet</comment>
+ <comment xml:lang="tr">Apple Cüzdan geçişi</comment>
+ <comment xml:lang="sv">Apple Wallet-pass</comment>
+ <comment xml:lang="si">Apple Wallet පාස්</comment>
+ <comment xml:lang="ru">Пропуск Apple Wallet</comment>
+ <comment xml:lang="pl">Hasło Apple Wallet</comment>
+ <comment xml:lang="nl">Apple Wallet-pas</comment>
+ <comment xml:lang="ko">애플 지갑 인증</comment>
+ <comment xml:lang="kk">Apple Wallet рұқсатнамасы</comment>
+ <comment xml:lang="ja">Apple ウォレットパス</comment>
+ <comment xml:lang="it">Pass Apple Wallet</comment>
+ <comment xml:lang="hr">Apple Novčanik propusnica</comment>
+ <comment xml:lang="gl">Pase de Apple Wallet</comment>
+ <comment xml:lang="fi">Apple Wallet-kulkulupa</comment>
+ <comment xml:lang="es">monedero Apple Wallet</comment>
+ <comment xml:lang="en_GB">Apple Wallet pass</comment>
+ <comment xml:lang="de">Apple-Wallet-Pass</comment>
+ <comment xml:lang="be">пропуск Apple Wallet</comment>
+ <comment xml:lang="ar">بطاقة محفظة أبل</comment>
+ <sub-class-of type="application/zip"/>
+ <magic priority="65">
+ <match type="string" value="PK\003\004" offset="0">
+ <match type="string" value="pass.json" offset="30"/>
+ </match>
+ </magic>
+ <glob pattern="*.pkpass"/>
</mime-type>
-
<mime-type type="application/x-pagemaker">
- <comment>Adobe PageMaker</comment>
- <comment xml:lang="ca">Adobe PageMaker</comment>
- <comment xml:lang="cs">Adobe PageMaker</comment>
- <comment xml:lang="da">Adobe PageMaker</comment>
- <comment xml:lang="de">Adobe PageMaker</comment>
- <comment xml:lang="el">Adobe PageMaker</comment>
- <comment xml:lang="en_GB">Adobe PageMaker</comment>
- <comment xml:lang="es">Adobe PageMaker</comment>
- <comment xml:lang="eu">Adobe PageMaker</comment>
- <comment xml:lang="fi">Adobe PageMaker</comment>
- <comment xml:lang="fr">Adobe PageMaker</comment>
- <comment xml:lang="ga">Adobe PageMaker</comment>
- <comment xml:lang="gl">Adobe PageMaker</comment>
- <comment xml:lang="he">Adobe PageMaker</comment>
- <comment xml:lang="hr">Adobe PageMaker</comment>
- <comment xml:lang="hu">Adobe PageMaker</comment>
- <comment xml:lang="ia">Adobe PageMaker</comment>
- <comment xml:lang="id">Adobe PageMaker</comment>
- <comment xml:lang="it">Adobe PageMaker</comment>
- <comment xml:lang="kk">Adobe PageMaker</comment>
- <comment xml:lang="ko">Adobe 페이지메이커</comment>
- <comment xml:lang="oc">Adobe PageMaker</comment>
- <comment xml:lang="pl">Adobe PageMaker</comment>
- <comment xml:lang="pt">Adobe PageMaker</comment>
- <comment xml:lang="pt_BR">Adobe PageMaker</comment>
- <comment xml:lang="ru">Adobe PageMaker</comment>
- <comment xml:lang="sk">Adobe PageMaker</comment>
+ <comment>Adobe PageMaker document</comment>
+ <comment xml:lang="zh_TW">Adobe PageMaker 文件</comment>
+ <comment xml:lang="zh_CN">Adobe PageMaker 文档</comment>
+ <comment xml:lang="uk">документ Adobe PageMaker</comment>
+ <comment xml:lang="tr">Adobe PageMaker belgesi</comment>
+ <comment xml:lang="sv">Adobe PageMaker-dokument</comment>
+ <comment xml:lang="sq">dokument Adobe PageMaker</comment>
<comment xml:lang="sl">Dokument Adobe PageMaker</comment>
- <comment xml:lang="sr">Адобе Пејџ Мејкер</comment>
- <comment xml:lang="sv">Adobe PageMaker</comment>
- <comment xml:lang="tr">Adobe PageMaker</comment>
- <comment xml:lang="uk">Adobe PageMaker</comment>
- <comment xml:lang="zh_CN">Adobe PageMaker</comment>
- <comment xml:lang="zh_TW">Adobe PageMaker</comment>
+ <comment xml:lang="si">Adobe PageMaker ලේඛනය</comment>
+ <comment xml:lang="sk">Dokument Adobe PageMaker</comment>
+ <comment xml:lang="ru">Документ Adobe PageMaker</comment>
+ <comment xml:lang="pt_BR">Documento do Adobe PageMaker</comment>
+ <comment xml:lang="pl">Dokument Adobe PageMaker</comment>
+ <comment xml:lang="nl">Adobe PageMaker-document</comment>
+ <comment xml:lang="ko">어도비 페이지메이커 문서</comment>
+ <comment xml:lang="kk">Adobe PageMaker құжаты</comment>
+ <comment xml:lang="ja">Adobe PageMaker ドキュメント</comment>
+ <comment xml:lang="it">Documento Adobe PageMaker</comment>
+ <comment xml:lang="is">Adobe PageMaker skjal</comment>
+ <comment xml:lang="id">Dokume Adobe PageMaker</comment>
+ <comment xml:lang="hu">Adobe PageMaker dokumentum</comment>
+ <comment xml:lang="hr">Adobe PageMaker dokument</comment>
+ <comment xml:lang="he">מסמך Adobe PageMaker</comment>
+ <comment xml:lang="gl">Documento de Adobe Pagemaker</comment>
+ <comment xml:lang="fr">document Adobe PageMaker</comment>
+ <comment xml:lang="fi">Adobe PageMaker -asiakirja</comment>
+ <comment xml:lang="eu">Adobe PageMaker dokumentua</comment>
+ <comment xml:lang="es">documento de Adobe PageMaker</comment>
+ <comment xml:lang="en_GB">Adobe PageMaker document</comment>
+ <comment xml:lang="de">Adobe-PageMaker-Dokument</comment>
+ <comment xml:lang="da">Adobe PageMaker-dokument</comment>
+ <comment xml:lang="ca">document d'Adobe PageMaker</comment>
+ <comment xml:lang="bg">Документ — Adobe PageMaker</comment>
+ <comment xml:lang="be">дакумент Adobe PageMaker</comment>
+ <comment xml:lang="ar">مستند أدوبي بيج ميكر</comment>
<sub-class-of type="application/x-ole-storage"/>
<generic-icon name="x-office-document"/>
<glob pattern="*.p65"/>
@@ -40845,266 +43452,325 @@
<glob pattern="*.pm6"/>
<glob pattern="*.pmd"/>
</mime-type>
-
<mime-type type="application/x-doom-wad">
- <comment>Doom WAD</comment>
- <comment xml:lang="ca">WAD de Doom</comment>
- <comment xml:lang="cs">datový balík WAD hry Doom</comment>
- <comment xml:lang="da">Doom WAD</comment>
- <comment xml:lang="de">Doom WAD</comment>
- <comment xml:lang="en_GB">Doom WAD</comment>
- <comment xml:lang="es">WAD de Doom</comment>
- <comment xml:lang="eu">Doom WAD</comment>
- <comment xml:lang="fr">WAD Doom</comment>
- <comment xml:lang="ga">WAD Doom</comment>
- <comment xml:lang="hr">Doom WAD</comment>
- <comment xml:lang="hu">Doom WAD</comment>
- <comment xml:lang="ia">WAD pro Doom</comment>
- <comment xml:lang="id">WAD Doom</comment>
- <comment xml:lang="it">WAD Doom</comment>
- <comment xml:lang="kk">Doom WAD</comment>
- <comment xml:lang="ko">둠 WAD</comment>
+ <comment>Doom WAD file</comment>
+ <comment xml:lang="zh_TW">Doom WAD 檔</comment>
+ <comment xml:lang="zh_CN">Doom WAD 文件</comment>
+ <comment xml:lang="uk">файл WAD Doom</comment>
+ <comment xml:lang="tr">Doom WAD dosyası</comment>
+ <comment xml:lang="sv">Doom WAD-fil</comment>
+ <comment xml:lang="sq">kartelë Doom WAD</comment>
+ <comment xml:lang="sl">Datoteka Doom WAD</comment>
+ <comment xml:lang="si">Doom WAD ගොනුව</comment>
+ <comment xml:lang="ru">Файл Doom WAD</comment>
+ <comment xml:lang="pt_BR">Arquivo Doom WAD</comment>
<comment xml:lang="pl">Plik WAD gry Doom</comment>
- <comment xml:lang="pt">Doom WAD</comment>
- <comment xml:lang="pt_BR">Doom WAD</comment>
- <comment xml:lang="ru">WAD Doom</comment>
- <comment xml:lang="sk">Doom WAD</comment>
- <comment xml:lang="sr">Дум ВАД</comment>
- <comment xml:lang="sv">Doom-WAD</comment>
- <comment xml:lang="tr">Doom WAD</comment>
- <comment xml:lang="uk">WAD Doom</comment>
- <comment xml:lang="zh_CN">Doom WAD</comment>
- <comment xml:lang="zh_TW">Doom WAD</comment>
+ <comment xml:lang="nl">Doom WAD-bestand</comment>
+ <comment xml:lang="ko">둠 WAD 파일</comment>
+ <comment xml:lang="kk">Doom WAD файлы</comment>
+ <comment xml:lang="ja">Doom WAD ファイル</comment>
+ <comment xml:lang="it">File WAD Doom</comment>
+ <comment xml:lang="is">Doom WAD skrá</comment>
+ <comment xml:lang="id">Berkas WAD Doom</comment>
+ <comment xml:lang="hu">Doom WAD fájl</comment>
+ <comment xml:lang="hr">Doom WAD datoteka</comment>
+ <comment xml:lang="he">קובץ WAD של Doom</comment>
+ <comment xml:lang="gl">Ficheiro de Doom WAD</comment>
+ <comment xml:lang="fr">fichier Doom WAD</comment>
+ <comment xml:lang="fi">Doom WAD -tiedosto</comment>
+ <comment xml:lang="eu">Doom WAD fitxategia</comment>
+ <comment xml:lang="es">archivo WAD de Doom</comment>
+ <comment xml:lang="en_GB">Doom WAD file</comment>
+ <comment xml:lang="de">Doom-WAD-Datei</comment>
+ <comment xml:lang="da">Doom WAD-fil</comment>
+ <comment xml:lang="ca">fitxer WAD de Doom</comment>
+ <comment xml:lang="bg">Ниво — Doom</comment>
+ <comment xml:lang="be">файл Doom WAD</comment>
+ <comment xml:lang="ar">ملف Doom WAD</comment>
<acronym>WAD</acronym>
<expanded-acronym>Where's All the Data</expanded-acronym>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="IWAD" type="string" offset="0"/>
- <match value="PWAD" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="IWAD" offset="0"/>
+ <match type="string" value="PWAD" offset="0"/>
</magic>
- <glob weight="80" pattern="*.wad"/>
+ <glob pattern="*.wad" weight="80"/>
</mime-type>
-
<mime-type type="application/x-amiga-disk-format">
<comment>Amiga disk image</comment>
- <comment xml:lang="ca">imatge de disc d'Amiga</comment>
- <comment xml:lang="cs">obraz disku pro Amigu</comment>
- <comment xml:lang="da">Amiga-diskaftryk</comment>
- <comment xml:lang="de">Amiga-Datenträgerabbild</comment>
- <comment xml:lang="el">Εικόνα δίσκου Amiga</comment>
- <comment xml:lang="en_GB">Amiga disk image</comment>
- <comment xml:lang="es">imagen de disco de Amiga</comment>
- <comment xml:lang="eu">Amiga disko irudia</comment>
- <comment xml:lang="fi">Amiga-levytiedosto</comment>
- <comment xml:lang="fr">image disque Amiga</comment>
- <comment xml:lang="ga">íomhá diosca Amiga</comment>
- <comment xml:lang="he">דמות כונן Amiga</comment>
- <comment xml:lang="hr">Amiga slika diska</comment>
- <comment xml:lang="hu">Amiga lemezkép</comment>
- <comment xml:lang="ia">Imagine de disco Amiga</comment>
- <comment xml:lang="id">Image disk Amiga</comment>
- <comment xml:lang="it">Disco immagine Amiga</comment>
- <comment xml:lang="kk">Amiga диск бейнесі</comment>
- <comment xml:lang="ko">Amiga 디스크 이미지</comment>
- <comment xml:lang="oc">imatge disc Amiga</comment>
- <comment xml:lang="pl">Obraz dysku Amiga</comment>
- <comment xml:lang="pt">imagem de disco Amiga</comment>
- <comment xml:lang="pt_BR">Imagem de disco Amiga</comment>
- <comment xml:lang="ru">Образ диска Amiga</comment>
- <comment xml:lang="sk">Obraz disku Amiga</comment>
- <comment xml:lang="sr">слика диска Амиге</comment>
- <comment xml:lang="sv">Amiga-diskavbild</comment>
- <comment xml:lang="tr">Amiga disk kalıbı</comment>
- <comment xml:lang="uk">образ диска Amiga</comment>
- <comment xml:lang="zh_CN">Amiga 磁盘映像</comment>
<comment xml:lang="zh_TW">Amiga 磁碟映像檔</comment>
- <magic priority="50">
- <match value="DOS\x00" type="string" offset="0"/>
+ <comment xml:lang="zh_CN">Amiga 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска Amiga</comment>
+ <comment xml:lang="tr">Amiga disk görüntüsü</comment>
+ <comment xml:lang="sv">Amiga-diskavbild</comment>
+ <comment xml:lang="sr">слика диска Амиге</comment>
+ <comment xml:lang="sq">pamje disku Amiga</comment>
+ <comment xml:lang="sl">Slika diska Amiga</comment>
+ <comment xml:lang="si">Amiga තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku Amiga</comment>
+ <comment xml:lang="ru">Образ диска Amiga</comment>
+ <comment xml:lang="pt_BR">Imagem de disco Amiga</comment>
+ <comment xml:lang="pt">imagem de disco Amiga</comment>
+ <comment xml:lang="pl">Obraz dysku Amiga</comment>
+ <comment xml:lang="oc">imatge disc Amiga</comment>
+ <comment xml:lang="nl">Amiga-schijfkopiebestand</comment>
+ <comment xml:lang="ko">Amiga 디스크 이미지</comment>
+ <comment xml:lang="kk">Amiga диск бейнесі</comment>
+ <comment xml:lang="ja">Amiga ディスクイメージ</comment>
+ <comment xml:lang="it">Disco immagine Amiga</comment>
+ <comment xml:lang="is">Amiga diskmynd</comment>
+ <comment xml:lang="id">Image disk Amiga</comment>
+ <comment xml:lang="ia">Imagine de disco Amiga</comment>
+ <comment xml:lang="hu">Amiga lemezkép</comment>
+ <comment xml:lang="hr">Amiga slika diska</comment>
+ <comment xml:lang="he">דמות כונן Amiga</comment>
+ <comment xml:lang="gl">Imaxe de disco de Amiga</comment>
+ <comment xml:lang="ga">íomhá diosca Amiga</comment>
+ <comment xml:lang="fur">imagjin disc Amiga</comment>
+ <comment xml:lang="fr">image disque Amiga</comment>
+ <comment xml:lang="fi">Amiga-levytiedosto</comment>
+ <comment xml:lang="eu">Amiga disko irudia</comment>
+ <comment xml:lang="es">imagen de disco de Amiga</comment>
+ <comment xml:lang="en_GB">Amiga disk image</comment>
+ <comment xml:lang="el">Εικόνα δίσκου Amiga</comment>
+ <comment xml:lang="de">Amiga-Datenträgerabbild</comment>
+ <comment xml:lang="da">Amiga-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku pro Amigu</comment>
+ <comment xml:lang="ca">imatge de disc d'Amiga</comment>
+ <comment xml:lang="bg">Диск — Amiga</comment>
+ <comment xml:lang="be">вобраз дыска Amiga</comment>
+ <comment xml:lang="ar">صورة قرص Amiga</comment>
+ <comment xml:lang="af">Amiga-skyfbeeldlêer</comment>
+ <magic>
+ <match type="string" value="DOS\x00" offset="0"/>
</magic>
<glob pattern="*.adf"/>
</mime-type>
-
<mime-type type="application/vnd.flatpak">
<comment>Flatpak application bundle</comment>
- <comment xml:lang="ca">paquet d'aplicació Flatpak</comment>
- <comment xml:lang="cs">balíček Flatpak s aplikací</comment>
- <comment xml:lang="da">Flatpak-programsamling</comment>
- <comment xml:lang="de">Flatpak-Anwendungspaket</comment>
- <comment xml:lang="en_GB">Flatpak application bundle</comment>
- <comment xml:lang="es">paquete de aplicación Flatpak</comment>
- <comment xml:lang="eu">Flatpak aplikazio bilduma</comment>
- <comment xml:lang="fi">Flatpak-sovelluspaketti</comment>
- <comment xml:lang="fr">lot applicatif Flatpak</comment>
- <comment xml:lang="ga">burla feidhmchláir Flatpak</comment>
- <comment xml:lang="he">חבילת יישומי Flatpak</comment>
- <comment xml:lang="hr">Flatpak paket aplikacije</comment>
- <comment xml:lang="hu">Flatpak alkalmazáscsomag</comment>
- <comment xml:lang="id">bundel aplikasi Flatpak</comment>
- <comment xml:lang="it">Bundle applicazione Flatpak</comment>
- <comment xml:lang="kk">Flatpak қолданбалар дестесі</comment>
- <comment xml:lang="ko">Flatpak 프로그램 번들</comment>
- <comment xml:lang="pl">Pakiet programu Flatpak</comment>
- <comment xml:lang="pt_BR">Pacote de aplicativo Flatpak</comment>
- <comment xml:lang="ru">Пакет приложения Flatpak</comment>
- <comment xml:lang="sk">Balík aplikácií Flatpak</comment>
- <comment xml:lang="sr">скуп програма Флатпака</comment>
- <comment xml:lang="sv">Flatpak-programbunt</comment>
- <comment xml:lang="tr">Flatpak uygulama paketi</comment>
- <comment xml:lang="uk">пакунок із програмами Flatpak</comment>
- <comment xml:lang="zh_CN">Flatpak 应用组合包</comment>
<comment xml:lang="zh_TW">Flatpak 應用程式套組</comment>
+ <comment xml:lang="zh_CN">Flatpak 应用组合包</comment>
+ <comment xml:lang="uk">пакунок із програмами Flatpak</comment>
+ <comment xml:lang="tr">Flatpak uygulama paketi</comment>
+ <comment xml:lang="sv">Flatpak-programbunt</comment>
+ <comment xml:lang="sr">скуп програма Флатпака</comment>
+ <comment xml:lang="sq">paketë aplikacionesh Flatpak</comment>
+ <comment xml:lang="si">Flatpak යෙදුම් මිටියක්</comment>
+ <comment xml:lang="sk">Balík aplikácií Flatpak</comment>
+ <comment xml:lang="ru">Пакет приложения Flatpak</comment>
+ <comment xml:lang="pt_BR">Pacote de aplicativo Flatpak</comment>
+ <comment xml:lang="pl">Pakiet programu Flatpak</comment>
+ <comment xml:lang="nl">Flatpak-toepassingsbundel</comment>
+ <comment xml:lang="ko">Flatpak 프로그램 번들</comment>
+ <comment xml:lang="kk">Flatpak қолданбалар дестесі</comment>
+ <comment xml:lang="ja">Flatpak アプリケーションバンドル</comment>
+ <comment xml:lang="it">Bundle applicazione Flatpak</comment>
+ <comment xml:lang="is">Flatpak forritavöndull</comment>
+ <comment xml:lang="id">Bundel aplikasi Flatpak</comment>
+ <comment xml:lang="hu">Flatpak alkalmazáscsomag</comment>
+ <comment xml:lang="hr">Flatpak paket aplikacije</comment>
+ <comment xml:lang="he">חבילת יישומי Flatpak</comment>
+ <comment xml:lang="ga">burla feidhmchláir Flatpak</comment>
+ <comment xml:lang="fur">côl di aplicazions Flatpak</comment>
+ <comment xml:lang="fr">lot applicatif Flatpak</comment>
+ <comment xml:lang="fi">Flatpak-sovelluspaketti</comment>
+ <comment xml:lang="eu">Flatpak aplikazio bilduma</comment>
+ <comment xml:lang="es">paquete de aplicación Flatpak</comment>
+ <comment xml:lang="en_GB">Flatpak application bundle</comment>
+ <comment xml:lang="de">Flatpak-Anwendungspaket</comment>
+ <comment xml:lang="da">Flatpak-programsamling</comment>
+ <comment xml:lang="cs">balíček Flatpak s aplikací</comment>
+ <comment xml:lang="ca">paquet d'aplicació Flatpak</comment>
+ <comment xml:lang="bg">Програмен пакет — Flatpak</comment>
+ <comment xml:lang="be">пакет праграмы Flatpak</comment>
+ <comment xml:lang="ar">حزمة تطبيق Flatpak</comment>
+ <comment xml:lang="af">Flatpak-toepassingsbundel</comment>
<generic-icon name="package-x-generic"/>
- <magic priority="50">
- <match value="xdg-app\x00\x01\x00\x89\xe5" type="string" offset="0"/>
- <match value="flatpak\x00\x01\x00\x89\xe5" type="string" offset="0"/>
+ <magic>
+ <match type="string" value="xdg-app\x00\x01\x00\x89\xe5" offset="0"/>
+ <match type="string" value="flatpak\x00\x01\x00\x89\xe5" offset="0"/>
</magic>
<glob pattern="*.flatpak"/>
<glob pattern="*.xdgapp"/>
<alias type="application/vnd.xdgapp"/>
</mime-type>
-
<mime-type type="application/vnd.flatpak.repo">
<comment>Flatpak repository description</comment>
- <comment xml:lang="ca">descripció de dipòsit de Flatpak</comment>
- <comment xml:lang="cs">popis repozitáře Flatpak</comment>
- <comment xml:lang="da">Flatpak-arkivbeskrivelse</comment>
- <comment xml:lang="de">Flatpak-Repositoriumsbeschreibung</comment>
- <comment xml:lang="en_GB">Flatpak repository description</comment>
- <comment xml:lang="es">descripción de repositorio de Flatpak</comment>
- <comment xml:lang="eu">Flatpak biltegi deskribapena</comment>
- <comment xml:lang="fi">Flatpak-ohjelmistolähdekuvaus</comment>
- <comment xml:lang="fr">description de dépôt Flatpak</comment>
- <comment xml:lang="ga">cur síos ar stórlann Flatpak</comment>
- <comment xml:lang="he">תיאור מאגר Flatpak</comment>
- <comment xml:lang="hr">Flatpak opis repozitorija</comment>
- <comment xml:lang="hu">Flatpak tárolóleírás</comment>
- <comment xml:lang="id">deskripsi repositori Flatpak</comment>
- <comment xml:lang="it">Descrizione repository Flatpack</comment>
- <comment xml:lang="kk">Flatpak репозиторийі сипаттамасы</comment>
- <comment xml:lang="ko">Flatpak 저장소 디스크립션</comment>
- <comment xml:lang="pl">Opis repozytorium Flatpak</comment>
- <comment xml:lang="pt_BR">Descrição de repositório Flatpak</comment>
- <comment xml:lang="ru">Описание репозитория Flatpak</comment>
- <comment xml:lang="sk">Popis repozitára Flatpak</comment>
- <comment xml:lang="sr">опис ризнице Флатпака</comment>
- <comment xml:lang="sv">Flatpak-förrådsbeskrivning</comment>
- <comment xml:lang="tr">Flatpak depo açıklaması</comment>
- <comment xml:lang="uk">опис сховища Flatpak</comment>
- <comment xml:lang="zh_CN">Flatpak 软件库描述</comment>
<comment xml:lang="zh_TW">Flatpak 軟體庫描述</comment>
+ <comment xml:lang="zh_CN">Flatpak 软件库描述</comment>
+ <comment xml:lang="uk">опис сховища Flatpak</comment>
+ <comment xml:lang="tr">Flatpak depo açıklaması</comment>
+ <comment xml:lang="sv">Flatpak-förrådsbeskrivning</comment>
+ <comment xml:lang="sr">опис ризнице Флатпака</comment>
+ <comment xml:lang="sq">përshkrim depoje Flatpak</comment>
+ <comment xml:lang="si">Flatpak ගබඩා විස්තරය</comment>
+ <comment xml:lang="sk">Popis repozitára Flatpak</comment>
+ <comment xml:lang="ru">Описание репозитория Flatpak</comment>
+ <comment xml:lang="pt_BR">Descrição de repositório Flatpak</comment>
+ <comment xml:lang="pl">Opis repozytorium Flatpak</comment>
+ <comment xml:lang="nl">Flatpak-pakketbronomschrijving</comment>
+ <comment xml:lang="ko">Flatpak 저장소 디스크립션</comment>
+ <comment xml:lang="kk">Flatpak репозиторийі сипаттамасы</comment>
+ <comment xml:lang="ja">Flatpak リポジトリ説明</comment>
+ <comment xml:lang="it">Descrizione repository Flatpack</comment>
+ <comment xml:lang="is">Flatpak lýsing gagnasafns</comment>
+ <comment xml:lang="id">Deskripsi repositori Flatpak</comment>
+ <comment xml:lang="hu">Flatpak tárolóleírás</comment>
+ <comment xml:lang="hr">Flatpak opis repozitorija</comment>
+ <comment xml:lang="he">תיאור מאגר Flatpak</comment>
+ <comment xml:lang="ga">cur síos ar stórlann Flatpak</comment>
+ <comment xml:lang="fur">descrizion dipuesit Flatpak</comment>
+ <comment xml:lang="fr">description de dépôt Flatpak</comment>
+ <comment xml:lang="fi">Flatpak-ohjelmistolähdekuvaus</comment>
+ <comment xml:lang="eu">Flatpak biltegi deskribapena</comment>
+ <comment xml:lang="es">descripción de repositorio de Flatpak</comment>
+ <comment xml:lang="en_GB">Flatpak repository description</comment>
+ <comment xml:lang="de">Flatpak-Repositorybeschreibung</comment>
+ <comment xml:lang="da">Flatpak-arkivbeskrivelse</comment>
+ <comment xml:lang="cs">popis repozitáře Flatpak</comment>
+ <comment xml:lang="ca">descripció de dipòsit de Flatpak</comment>
+ <comment xml:lang="bg">Описание на хранилище — Flatpak</comment>
+ <comment xml:lang="be">апісанне рэпазіторыя Flatpak</comment>
+ <comment xml:lang="ar">وصف مستودع Flatpak</comment>
<generic-icon name="package-x-generic"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="[Flatpak Repo]" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="[Flatpak Repo]" offset="0:256"/>
</magic>
<glob pattern="*.flatpakrepo"/>
</mime-type>
-
<mime-type type="application/vnd.flatpak.ref">
<comment>Flatpak repository reference</comment>
- <comment xml:lang="ca">referència de dipòsit Flatpak</comment>
- <comment xml:lang="cs">odkaz na repozitář Flatpak</comment>
- <comment xml:lang="de">Flatpak-Repositoriumsreferenz</comment>
- <comment xml:lang="en_GB">Flatpak repository reference</comment>
- <comment xml:lang="es">referencia a repositorio de Flatpak</comment>
- <comment xml:lang="eu">Flatpak biltegi erreferentzia</comment>
- <comment xml:lang="fi">Flatpak-ohjelmistolähdeviite</comment>
- <comment xml:lang="fr">référence de dépôt Flatpak</comment>
- <comment xml:lang="ga">tagairt do stórlann Flatpak</comment>
- <comment xml:lang="hr">Flatpak preporučeni repozitorij</comment>
- <comment xml:lang="hu">Flatpak tárolóhivatkozás</comment>
- <comment xml:lang="id">acuan repositori Flatpak</comment>
- <comment xml:lang="it">Riferimento repository Flatpack</comment>
- <comment xml:lang="kk">Flatpak репозиторийіне сілтеме</comment>
- <comment xml:lang="ko">Flatpak 저장소 참조</comment>
- <comment xml:lang="pl">Odwołanie do repozytorium Flatpak</comment>
- <comment xml:lang="pt_BR">Referência de repositório Flatpak</comment>
- <comment xml:lang="ru">Ссылка на репозиторий Flatpak</comment>
- <comment xml:lang="sk">Referencia repozitára Flatpak</comment>
- <comment xml:lang="sr">упута ризнице Флатпака</comment>
- <comment xml:lang="sv">Flatpak-förrådsreferens</comment>
- <comment xml:lang="tr">Flatpak depo başvurusu</comment>
- <comment xml:lang="uk">посилання на сховище Flatpak</comment>
- <comment xml:lang="zh_CN">Flatpak 软件库引用</comment>
<comment xml:lang="zh_TW">Flatpak 軟體庫參照</comment>
+ <comment xml:lang="zh_CN">Flatpak 软件库引用</comment>
+ <comment xml:lang="uk">посилання на сховище Flatpak</comment>
+ <comment xml:lang="tr">Flatpak depo atfı</comment>
+ <comment xml:lang="sv">Flatpak-förrådsreferens</comment>
+ <comment xml:lang="sr">упута ризнице Флатпака</comment>
+ <comment xml:lang="sq">referencë depoje Flatpak</comment>
+ <comment xml:lang="si">Flatpak නිධිය යොමුව</comment>
+ <comment xml:lang="sk">Referencia repozitára Flatpak</comment>
+ <comment xml:lang="ru">Ссылка на репозиторий Flatpak</comment>
+ <comment xml:lang="pt_BR">Referência de repositório Flatpak</comment>
+ <comment xml:lang="pl">Odwołanie do repozytorium Flatpak</comment>
+ <comment xml:lang="nl">Flatpak-pakketbronverwijzing</comment>
+ <comment xml:lang="ko">Flatpak 저장소 참조</comment>
+ <comment xml:lang="kk">Flatpak репозиторийіне сілтеме</comment>
+ <comment xml:lang="ja">Flatpak リポジトリリファレンス</comment>
+ <comment xml:lang="it">Riferimento repository Flatpack</comment>
+ <comment xml:lang="is">Flatpak tilvísun gagnasafns</comment>
+ <comment xml:lang="id">Acuan repositori Flatpak</comment>
+ <comment xml:lang="hu">Flatpak tárolóhivatkozás</comment>
+ <comment xml:lang="hr">Flatpak preporučeni repozitorij</comment>
+ <comment xml:lang="he">הפניית מאגר Flatpak</comment>
+ <comment xml:lang="ga">tagairt do stórlann Flatpak</comment>
+ <comment xml:lang="fur">riferiment dipuesit Flatpak</comment>
+ <comment xml:lang="fr">référence de dépôt Flatpak</comment>
+ <comment xml:lang="fi">Flatpak-ohjelmistolähdeviite</comment>
+ <comment xml:lang="eu">Flatpak biltegi erreferentzia</comment>
+ <comment xml:lang="es">referencia a repositorio de Flatpak</comment>
+ <comment xml:lang="en_GB">Flatpak repository reference</comment>
+ <comment xml:lang="de">Flatpak-Repositoryreferenz</comment>
+ <comment xml:lang="da">Flatpak-arkivreference</comment>
+ <comment xml:lang="cs">odkaz na repozitář Flatpak</comment>
+ <comment xml:lang="ca">referència de dipòsit Flatpak</comment>
+ <comment xml:lang="bg">Указател към хранилище — Flatpak</comment>
+ <comment xml:lang="be">спасылкая рэпазіторыя Flatpak</comment>
+ <comment xml:lang="ar">مرجع مستودع Flatpak</comment>
<generic-icon name="package-x-generic"/>
<sub-class-of type="text/plain"/>
- <magic priority="50">
- <match value="[Flatpak Ref]" type="string" offset="0:256"/>
+ <magic>
+ <match type="string" value="[Flatpak Ref]" offset="0:256"/>
</magic>
<glob pattern="*.flatpakref"/>
</mime-type>
-
<mime-type type="application/vnd.squashfs">
- <comment>Squashfs filesystem</comment>
- <comment xml:lang="ca">Sistema de fitxers Squashfs</comment>
- <comment xml:lang="cs">souborový systém Squashfs</comment>
- <comment xml:lang="da">Squashfs-filsystem</comment>
- <comment xml:lang="de">Squashfs-Dateisystem</comment>
- <comment xml:lang="en_GB">Squashfs filesystem</comment>
- <comment xml:lang="es">sistema de archivos Squashfs</comment>
- <comment xml:lang="eu">Squashfs fitxategi sistema</comment>
- <comment xml:lang="fi">Squashfs-tiedostojärjestelmä</comment>
- <comment xml:lang="fr">système de fichiers Squashfs</comment>
- <comment xml:lang="ga">córas comhad Squashfs</comment>
- <comment xml:lang="he">מערכת קבצים Squashfs</comment>
- <comment xml:lang="hr">Squashfs datotečni sustav</comment>
- <comment xml:lang="hu">Squashfs fájlrendszer</comment>
- <comment xml:lang="id">sistem berkas Squashfs</comment>
- <comment xml:lang="it">File system squashfs</comment>
- <comment xml:lang="kk">Squashfs файлдық жүйесі</comment>
- <comment xml:lang="ko">Squashfs 파일 시스템</comment>
- <comment xml:lang="pl">System plików SquashFS</comment>
- <comment xml:lang="pt_BR">Sistema de arquivos Squashfs</comment>
- <comment xml:lang="ru">Файловая система Squashfs</comment>
- <comment xml:lang="sk">Systém súborov Squashfs</comment>
- <comment xml:lang="sr">систем датотека Сквошфс</comment>
- <comment xml:lang="sv">Squashfs-filsystem</comment>
- <comment xml:lang="tr">Squashfs dosya sistemi</comment>
- <comment xml:lang="uk">файлова система squashfs</comment>
- <comment xml:lang="zh_CN">Squashfs 文件系统</comment>
- <comment xml:lang="zh_TW">Squashfs 檔案系統</comment>
- <magic priority="50">
- <match value="sqsh" type="string" offset="0"/>
- <match value="hsqs" type="string" offset="0"/>
+ <comment>Squashfs filesystem image</comment>
+ <comment xml:lang="zh_TW">Squashfs 檔案系統映像</comment>
+ <comment xml:lang="zh_CN">Squashfs 文件系统映像</comment>
+ <comment xml:lang="uk">образ файлової системи squashfs</comment>
+ <comment xml:lang="tr">Squashfs dosya sistemi görüntüsü</comment>
+ <comment xml:lang="sv">Squashfs filsystemsavbildning</comment>
+ <comment xml:lang="sq">pamje sistemi kartelash Squashfs</comment>
+ <comment xml:lang="si">Squashfs ගොනු පද්ධති රූපය</comment>
+ <comment xml:lang="sk">Obraz systému súborov Squashfs</comment>
+ <comment xml:lang="ru">Образ файловой системы Squashfs</comment>
+ <comment xml:lang="pt_BR">Imagem de sistema de arquivos Squashfs</comment>
+ <comment xml:lang="pl">Obraz systemu plików SquashFS</comment>
+ <comment xml:lang="nl">Squashfs-schijfkopiebestand</comment>
+ <comment xml:lang="ko">Squashfs 파일 시스템 이미지</comment>
+ <comment xml:lang="kk">Squashfs файлдық жүйе бейнесі</comment>
+ <comment xml:lang="ja">Squashfs ファイルシステムイメージ</comment>
+ <comment xml:lang="it">Immagine file system squashfs</comment>
+ <comment xml:lang="is">Squashfs skráakerfismynd</comment>
+ <comment xml:lang="id">Image sistem berkas Squashfs</comment>
+ <comment xml:lang="hu">Squashfs fájlrenszerkép</comment>
+ <comment xml:lang="hr">Squashfs slika datotečnog sustava</comment>
+ <comment xml:lang="he">תמונת מערכת קבצים Squashfs</comment>
+ <comment xml:lang="fr">image de système de fichiers Squashfs</comment>
+ <comment xml:lang="fi">Squashfs-tiedostojärjestelmän levykuva</comment>
+ <comment xml:lang="eu">Squashfs fitxategi sistema irudia</comment>
+ <comment xml:lang="es">imagen de sistema de archivos de Squashfs</comment>
+ <comment xml:lang="en_GB">Squashfs filesystem image</comment>
+ <comment xml:lang="de">Squashfs-Dateisystemabbild</comment>
+ <comment xml:lang="da">Squashfs-filsystemaftryk</comment>
+ <comment xml:lang="ca">imatge de sistema de fitxers Squashfs</comment>
+ <comment xml:lang="bg">Диск — Squashfs</comment>
+ <comment xml:lang="be">вобраз файлавай сістэмы Squashfs</comment>
+ <comment xml:lang="ar">صورة نظام ملفات Squashfs</comment>
+ <sub-class-of type="application/vnd.efi.img"/>
+ <magic>
+ <match type="string" value="sqsh" offset="0"/>
+ <match type="string" value="hsqs" offset="0"/>
</magic>
<glob pattern="*.sqsh"/>
</mime-type>
-
-
+ <!-- AppImage application bundle (Type 2) -->
<mime-type type="application/vnd.appimage">
<comment>AppImage application bundle</comment>
- <comment xml:lang="ca">paquet d'aplicació AppImage</comment>
- <comment xml:lang="cs">balíček AppImage s aplikací</comment>
- <comment xml:lang="da">Applmage-programsamling</comment>
- <comment xml:lang="de">AppImage-Anwendungspaket</comment>
- <comment xml:lang="en_GB">AppImage application bundle</comment>
- <comment xml:lang="es">paquete de aplicación AppImage</comment>
- <comment xml:lang="eu">AppImage aplikazio bilduma</comment>
- <comment xml:lang="fi">AppImage-sovelluspaketti</comment>
- <comment xml:lang="fr">lot applicatif AppImage</comment>
- <comment xml:lang="ga">burla feidhmchláir AppImage</comment>
- <comment xml:lang="he">חבילת יישומי AppImage</comment>
- <comment xml:lang="hr">AppImage paket aplikacije</comment>
- <comment xml:lang="hu">AppImage alkalmazáscsomag</comment>
- <comment xml:lang="id">bundel aplikasi AppImage</comment>
- <comment xml:lang="it">Bundle applicazione AppImage</comment>
- <comment xml:lang="kk">AppImage қолданбалар дестесі</comment>
- <comment xml:lang="ko">AppImage 프로그램 번들</comment>
- <comment xml:lang="pl">Pakiet programu AppImage</comment>
- <comment xml:lang="pt_BR">Pacote de aplicativo AppImage</comment>
- <comment xml:lang="ru">Пакет приложения AppImage</comment>
- <comment xml:lang="sk">Balík aplikácií AppImage</comment>
- <comment xml:lang="sr">скуп програма Ап-слике</comment>
- <comment xml:lang="sv">AppImage-programbunt</comment>
- <comment xml:lang="tr">AppImage uygulama paketi</comment>
- <comment xml:lang="uk">пакунок із програмами AppImage</comment>
- <comment xml:lang="zh_CN">AppImage 应用组合包</comment>
<comment xml:lang="zh_TW">AppImage 應用程式套組</comment>
+ <comment xml:lang="zh_CN">AppImage 应用组合包</comment>
+ <comment xml:lang="uk">пакунок із програмами AppImage</comment>
+ <comment xml:lang="tr">AppImage uygulama paketi</comment>
+ <comment xml:lang="sv">AppImage-programbunt</comment>
+ <comment xml:lang="sr">скуп програма Ап-слике</comment>
+ <comment xml:lang="sq">paketë aplikacioni AppImage</comment>
+ <comment xml:lang="si">AppImage යෙදුම් මිටියක්</comment>
+ <comment xml:lang="sk">Balík aplikácií AppImage</comment>
+ <comment xml:lang="ru">Пакет приложения AppImage</comment>
+ <comment xml:lang="pt_BR">Pacote de aplicativo AppImage</comment>
+ <comment xml:lang="pt">pacote de aplicação AppImage</comment>
+ <comment xml:lang="pl">Pakiet programu AppImage</comment>
+ <comment xml:lang="nl">AppImage-toepassingsbundel</comment>
+ <comment xml:lang="ko">AppImage 프로그램 번들</comment>
+ <comment xml:lang="kk">AppImage қолданбалар дестесі</comment>
+ <comment xml:lang="ja">AppImage アプリケーションバンドル</comment>
+ <comment xml:lang="it">Bundle applicazione AppImage</comment>
+ <comment xml:lang="is">AppImage forritavöndull</comment>
+ <comment xml:lang="id">Bundel aplikasi AppImage</comment>
+ <comment xml:lang="hu">AppImage alkalmazáscsomag</comment>
+ <comment xml:lang="hr">AppImage paket aplikacije</comment>
+ <comment xml:lang="he">חבילת יישומי AppImage</comment>
+ <comment xml:lang="gl">Paquete de aplicación de AppImage</comment>
+ <comment xml:lang="ga">burla feidhmchláir AppImage</comment>
+ <comment xml:lang="fur">côl di aplicazions AppImage</comment>
+ <comment xml:lang="fr">lot applicatif AppImage</comment>
+ <comment xml:lang="fi">AppImage-sovelluspaketti</comment>
+ <comment xml:lang="eu">AppImage aplikazio bilduma</comment>
+ <comment xml:lang="es">paquete de aplicación AppImage</comment>
+ <comment xml:lang="en_GB">AppImage application bundle</comment>
+ <comment xml:lang="de">AppImage-Anwendungspaket</comment>
+ <comment xml:lang="da">AppImage-programsamling</comment>
+ <comment xml:lang="cs">balíček AppImage s aplikací</comment>
+ <comment xml:lang="ca">paquet d'aplicació AppImage</comment>
+ <comment xml:lang="bg">Програмен пакет — AppImage</comment>
+ <comment xml:lang="be">пакет праграмы AppImage</comment>
+ <comment xml:lang="ar">حزمة تطبيق AppImage</comment>
+ <comment xml:lang="af">AppImage-toepassingsbundel</comment>
<sub-class-of type="application/x-executable"/>
<sub-class-of type="application/vnd.squashfs"/>
<generic-icon name="application-x-executable"/>
- <magic priority="50">
+ <magic>
<match value="ELF" type="string" offset="1">
<match value="0x41" type="byte" offset="8">
<match value="0x49" type="byte" offset="9">
@@ -41115,119 +43781,1145 @@
</magic>
<glob weight="60" pattern="*.appimage"/>
</mime-type>
-
<mime-type type="application/vnd.snap">
<comment>Snap package</comment>
- <comment xml:lang="ca">Paquet Snap</comment>
- <comment xml:lang="cs">balíček Snap</comment>
- <comment xml:lang="da">Snap-pakke</comment>
- <comment xml:lang="de">Snap-Paket</comment>
- <comment xml:lang="en_GB">Snap package</comment>
- <comment xml:lang="es">paquete Snap</comment>
- <comment xml:lang="eu">Snap paketea</comment>
- <comment xml:lang="fi">Snap-paketti</comment>
- <comment xml:lang="fr">paquet Snap</comment>
- <comment xml:lang="ga">pacáiste Snap</comment>
- <comment xml:lang="he">חבילת Snap</comment>
- <comment xml:lang="hr">Snap paket</comment>
- <comment xml:lang="hu">Snap-csomag</comment>
- <comment xml:lang="id">paket Snap</comment>
- <comment xml:lang="it">Pacchetto snap</comment>
- <comment xml:lang="kk">Snap дестесі</comment>
- <comment xml:lang="ko">Snap 패키지</comment>
- <comment xml:lang="pl">Pakiet Snap</comment>
- <comment xml:lang="pt_BR">Pacote Snap</comment>
- <comment xml:lang="ru">Пакет Snap</comment>
- <comment xml:lang="sk">Balík Snap</comment>
- <comment xml:lang="sr">Снап пакет</comment>
- <comment xml:lang="sv">Snap-paket</comment>
- <comment xml:lang="tr">Snap paketi</comment>
- <comment xml:lang="uk">пакунок snap</comment>
- <comment xml:lang="zh_CN">Snap 软件包</comment>
<comment xml:lang="zh_TW">Snap 軟體包</comment>
+ <comment xml:lang="zh_CN">Snap 软件包</comment>
+ <comment xml:lang="uk">пакунок snap</comment>
+ <comment xml:lang="tr">Snap paketi</comment>
+ <comment xml:lang="sv">Snap-paket</comment>
+ <comment xml:lang="sr">Снап пакет</comment>
+ <comment xml:lang="sq">paketë Snap</comment>
+ <comment xml:lang="sl">Paket Snap</comment>
+ <comment xml:lang="si">Snap පැකේජය</comment>
+ <comment xml:lang="sk">Balík Snap</comment>
+ <comment xml:lang="ru">Пакет Snap</comment>
+ <comment xml:lang="pt_BR">Pacote Snap</comment>
+ <comment xml:lang="pl">Pakiet Snap</comment>
+ <comment xml:lang="oc">paquet Snap</comment>
+ <comment xml:lang="nl">Snap-pakket</comment>
+ <comment xml:lang="ko">Snap 패키지</comment>
+ <comment xml:lang="kk">Snap дестесі</comment>
+ <comment xml:lang="ja">Snap パッケージ</comment>
+ <comment xml:lang="it">Pacchetto snap</comment>
+ <comment xml:lang="is">Snap-pakki</comment>
+ <comment xml:lang="id">Paket Snap</comment>
+ <comment xml:lang="hu">Snap-csomag</comment>
+ <comment xml:lang="hr">Snap paket</comment>
+ <comment xml:lang="he">חבילת Snap</comment>
+ <comment xml:lang="ga">pacáiste Snap</comment>
+ <comment xml:lang="fur">pachet Snap</comment>
+ <comment xml:lang="fr">paquet Snap</comment>
+ <comment xml:lang="fi">Snap-paketti</comment>
+ <comment xml:lang="eu">Snap paketea</comment>
+ <comment xml:lang="es">paquete Snap</comment>
+ <comment xml:lang="en_GB">Snap package</comment>
+ <comment xml:lang="de">Snap-Paket</comment>
+ <comment xml:lang="da">Snap-pakke</comment>
+ <comment xml:lang="cs">balíček Snap</comment>
+ <comment xml:lang="ca">paquet snap</comment>
+ <comment xml:lang="bg">Пакет — Snap</comment>
+ <comment xml:lang="be">пакет Snap</comment>
+ <comment xml:lang="ar">حزمة سناب</comment>
+ <comment xml:lang="af">Snap-pakket</comment>
<glob pattern="*.snap"/>
<sub-class-of type="application/vnd.squashfs"/>
</mime-type>
-
-
+ <!-- 3D models and GCODEs -->
+ <mime-type type="model/3mf">
+ <comment>3MF document</comment>
+ <comment xml:lang="zh_CN">3MF 文档</comment>
+ <comment xml:lang="uk">документ 3MF</comment>
+ <comment xml:lang="tr">3MF belgesi</comment>
+ <comment xml:lang="sv">3MF-dokument</comment>
+ <comment xml:lang="sl">Dokument 3MF</comment>
+ <comment xml:lang="si">3MF ලේඛනය</comment>
+ <comment xml:lang="ru">Документ 3MF</comment>
+ <comment xml:lang="pt_BR">Documento 3MF</comment>
+ <comment xml:lang="pl">Dokument 3MF</comment>
+ <comment xml:lang="nl">3MF-document</comment>
+ <comment xml:lang="ko">3MF 문서</comment>
+ <comment xml:lang="kk">3MF құжаты</comment>
+ <comment xml:lang="ja">3MF ドキュメント</comment>
+ <comment xml:lang="it">Documento 3MF</comment>
+ <comment xml:lang="hr">3MF dokument</comment>
+ <comment xml:lang="fi">3MF-asiakirja</comment>
+ <comment xml:lang="eu">3MF dokumentua</comment>
+ <comment xml:lang="es">documento 3MF</comment>
+ <comment xml:lang="en_GB">3MF document</comment>
+ <comment xml:lang="de">3MF-Dokument</comment>
+ <comment xml:lang="be">дакумент 3MF</comment>
+ <comment xml:lang="ar">مستند 3MF</comment>
+ <acronym>3MF</acronym>
+ <expanded-acronym>3D Manufacturing Format</expanded-acronym>
+ <glob pattern="*.3mf"/>
+ <alias type="application/vnd.ms-3mfdocument"/>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="image-x-generic"/>
+ </mime-type>
<mime-type type="model/stl">
<comment>STL 3D model</comment>
+ <comment xml:lang="zh_TW">STL 3D 模型</comment>
+ <comment xml:lang="zh_CN">STL 3D 模型</comment>
+ <comment xml:lang="uk">просторова модель STL</comment>
+ <comment xml:lang="tr">STL 3D modeli</comment>
+ <comment xml:lang="sv">STL-3D-modell</comment>
+ <comment xml:lang="sq">model STL 3D</comment>
+ <comment xml:lang="sl">Model STL 3D</comment>
+ <comment xml:lang="si">STL 3D ආකෘතිය</comment>
+ <comment xml:lang="sk">STL 3D model</comment>
+ <comment xml:lang="ru">3D-модель STL</comment>
+ <comment xml:lang="pt_BR">Modelo 3D STL</comment>
+ <comment xml:lang="pl">Model 3D STL</comment>
+ <comment xml:lang="nl">STL 3D-model</comment>
+ <comment xml:lang="ko">STL 3D 모델</comment>
+ <comment xml:lang="kk">STL 3D моделі</comment>
+ <comment xml:lang="ja">STL 3D モデル</comment>
+ <comment xml:lang="it">Modello 3D STL</comment>
+ <comment xml:lang="is">STL 3D-líkan</comment>
+ <comment xml:lang="id">Model 3D STL</comment>
+ <comment xml:lang="hu">STL 3D modell</comment>
+ <comment xml:lang="hr">STL 3D model</comment>
+ <comment xml:lang="he">דגם תלת ממדי של STL</comment>
+ <comment xml:lang="ga">samhail 3T STL</comment>
+ <comment xml:lang="fur">model STL 3D</comment>
+ <comment xml:lang="fr">modèle 3D STL</comment>
+ <comment xml:lang="fi">STL 3D-malli</comment>
+ <comment xml:lang="eu">STL 3D modeloa</comment>
+ <comment xml:lang="es">modelo 3D de STL</comment>
+ <comment xml:lang="en_GB">STL 3D model</comment>
+ <comment xml:lang="de">STL 3D-Modell</comment>
+ <comment xml:lang="da">STL 3D-model</comment>
+ <comment xml:lang="cs">3D model STL</comment>
+ <comment xml:lang="ca">model 3D STL</comment>
+ <comment xml:lang="bg">Модел — STL 3D</comment>
+ <comment xml:lang="be">мадэль STL 3D</comment>
+ <comment xml:lang="ar">نموذج STL 3D</comment>
+ <comment xml:lang="af">STL 3D-model</comment>
<acronym>STL</acronym>
<expanded-acronym>StereoLithography</expanded-acronym>
- <magic priority="50">
- <match value="solid" type="string" offset="0"/>
- <match value="SOLID" type="string" offset="0"/>
+ <generic-icon name="image-x-generic"/>
+ <magic>
+ <match type="string" value="solid" offset="0"/>
+ <match type="string" value="SOLID" offset="0"/>
</magic>
<glob pattern="*.stl"/>
<alias type="model/x.stl-ascii"/>
<alias type="model/x.stl-binary"/>
</mime-type>
-
<mime-type type="text/x.gcode">
<comment>G-code file</comment>
- <comment xml:lang="ca">fitxer G-code</comment>
- <comment xml:lang="cs">soubor G-code</comment>
- <comment xml:lang="de">G-Code-Datei</comment>
- <comment xml:lang="en_GB">G-code file</comment>
- <comment xml:lang="es">archivo G-code</comment>
- <comment xml:lang="eu">G-code fitxategia</comment>
- <comment xml:lang="fi">G-code-tiedosto</comment>
- <comment xml:lang="fr">fichier G-code</comment>
- <comment xml:lang="ga">comhad G-code</comment>
- <comment xml:lang="hr">G-kôd datoteka</comment>
- <comment xml:lang="hu">G-code fájl</comment>
- <comment xml:lang="id">berkas G-code</comment>
- <comment xml:lang="it">File G-code</comment>
- <comment xml:lang="kk">G-code файлы</comment>
- <comment xml:lang="ko">지-코드 파일</comment>
- <comment xml:lang="pl">Plik G-code</comment>
- <comment xml:lang="pt_BR">Arquivo G-code</comment>
- <comment xml:lang="ru">Файл G-code</comment>
- <comment xml:lang="sk">Súbor G-code</comment>
- <comment xml:lang="sr">датотека Г-ко̂да</comment>
- <comment xml:lang="sv">G-code-fil</comment>
- <comment xml:lang="tr">G-code dosyası</comment>
- <comment xml:lang="uk">файл G-code</comment>
- <comment xml:lang="zh_CN">G-code 文件</comment>
<comment xml:lang="zh_TW">G-code 檔案</comment>
+ <comment xml:lang="zh_CN">G-code 文件</comment>
+ <comment xml:lang="uk">файл G-code</comment>
+ <comment xml:lang="tr">G-code dosyası</comment>
+ <comment xml:lang="sv">G-code-fil</comment>
+ <comment xml:lang="sr">датотека Г-ко̂да</comment>
+ <comment xml:lang="sq">kartelë G-code</comment>
+ <comment xml:lang="sl">Datoteka G-code</comment>
+ <comment xml:lang="si">G-කේත ගොනුව</comment>
+ <comment xml:lang="sk">Súbor G-code</comment>
+ <comment xml:lang="ru">Файл G-code</comment>
+ <comment xml:lang="pt_BR">Arquivo G-code</comment>
+ <comment xml:lang="pl">Plik G-code</comment>
+ <comment xml:lang="oc">fichièr G-code</comment>
+ <comment xml:lang="nl">G-code-bestand</comment>
+ <comment xml:lang="ko">G-code 파일</comment>
+ <comment xml:lang="kk">G-code файлы</comment>
+ <comment xml:lang="ja">G-code ファイル</comment>
+ <comment xml:lang="it">File G-code</comment>
+ <comment xml:lang="is">G-code skrá</comment>
+ <comment xml:lang="id">Berkas G-code</comment>
+ <comment xml:lang="hu">G-code fájl</comment>
+ <comment xml:lang="hr">G-kôd datoteka</comment>
+ <comment xml:lang="he">קובץ G-code</comment>
+ <comment xml:lang="ga">comhad G-code</comment>
+ <comment xml:lang="fur">file G-code</comment>
+ <comment xml:lang="fr">fichier G-code</comment>
+ <comment xml:lang="fi">G-code-tiedosto</comment>
+ <comment xml:lang="eu">G-code fitxategia</comment>
+ <comment xml:lang="es">archivo G-code</comment>
+ <comment xml:lang="en_GB">G-code file</comment>
+ <comment xml:lang="de">G-Code-Datei</comment>
+ <comment xml:lang="da">G-code-fil</comment>
+ <comment xml:lang="cs">soubor G-code</comment>
+ <comment xml:lang="ca">fitxer G-code</comment>
+ <comment xml:lang="bg">Модел — G-code</comment>
+ <comment xml:lang="be">файл G-code</comment>
+ <comment xml:lang="ar">ملف G-code</comment>
<sub-class-of type="text/plain"/>
<generic-icon name="text-x-generic"/>
<glob pattern="*.gcode"/>
</mime-type>
-
+ <mime-type type="text/x-gcode-gx">
+ <comment>G-code Extended file</comment>
+ <comment xml:lang="uk">файл G-code Extended</comment>
+ <comment xml:lang="tr">G-code Uzatılmış dosyası</comment>
+ <comment xml:lang="sv">Utökad G-code-fil</comment>
+ <comment xml:lang="si">G-කේත විස්තීරණ ගොනුව</comment>
+ <comment xml:lang="ru">Файл G-code Extended</comment>
+ <comment xml:lang="pl">Plik rozszerzonego G-code</comment>
+ <comment xml:lang="nl">G-code Extended-bestand</comment>
+ <comment xml:lang="ko">G-code 확장 파일</comment>
+ <comment xml:lang="kk">G-code Extended файлы</comment>
+ <comment xml:lang="ja">G-code 拡張ファイル</comment>
+ <comment xml:lang="it">File G-code Extended</comment>
+ <comment xml:lang="hr">G-kôd proširena datoteka</comment>
+ <comment xml:lang="fi">G-code Extended-tiedosto</comment>
+ <comment xml:lang="es">archivo G-code extendido</comment>
+ <comment xml:lang="en_GB">G-code Extended file</comment>
+ <comment xml:lang="de">Erweiterte G-Code-Datei</comment>
+ <comment xml:lang="be">файл G-code Extended</comment>
+ <comment xml:lang="ar">ملف غي-كود الموسع</comment>
+ <magic>
+ <match type="string" value="xgcode 1.0" offset="0"/>
+ </magic>
+ <glob pattern="*.gx"/>
+ </mime-type>
<mime-type type="application/x-fds-disk">
<comment>Nintendo FDS disk image</comment>
- <comment xml:lang="ca">Imatge de disc Nintendo FDS</comment>
- <comment xml:lang="cs">obraz disku pro Nintendo FDS</comment>
- <comment xml:lang="de">Nintendo-FDS-Datenträgerabbild</comment>
- <comment xml:lang="en_GB">Nintendo FDS disk image</comment>
- <comment xml:lang="es">imagen de disco FDS de Nintendo</comment>
- <comment xml:lang="eu">Nintendo FDS disko irudia</comment>
- <comment xml:lang="fi">Nintendo FDS -levykuva</comment>
- <comment xml:lang="fr">image disque Nintendo FDS</comment>
- <comment xml:lang="ga">íomhá diosca Nintendo FDS</comment>
- <comment xml:lang="hr">Nintendo FDS slika diska</comment>
- <comment xml:lang="hu">Nintendo FDS lemezkép</comment>
- <comment xml:lang="id">image disk Nintendo FDS</comment>
- <comment xml:lang="it">Immagine disco Nintendo FDS</comment>
- <comment xml:lang="kk">Nintendo FDS диск бейнесі</comment>
- <comment xml:lang="ko">닌텐도 FDS 디스크 이미지</comment>
- <comment xml:lang="pl">Obraz dysku Nintendo FDS</comment>
- <comment xml:lang="pt_BR">Imagem de disco Nintendo FDS</comment>
- <comment xml:lang="ru">Образ диска Nintendo FDS</comment>
- <comment xml:lang="sk">Obraz disku Nintendo FDS</comment>
- <comment xml:lang="sr">Нинтендо ФДС слика диска</comment>
- <comment xml:lang="sv">Nintendo FDS-diskavbild</comment>
- <comment xml:lang="tr">Nintendo FDS disk kalıbı</comment>
- <comment xml:lang="uk">образ диска FDS Nintendo</comment>
- <comment xml:lang="zh_CN">任天堂 FDS 磁盘映像</comment>
<comment xml:lang="zh_TW">Nintendo FDS 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">任天堂 FDS 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска FDS Nintendo</comment>
+ <comment xml:lang="tr">Nintendo FDS disk görüntüsü</comment>
+ <comment xml:lang="sv">Nintendo FDS-diskavbild</comment>
+ <comment xml:lang="sr">Нинтендо ФДС слика диска</comment>
+ <comment xml:lang="sq">pamje disku Nintendo FDS</comment>
+ <comment xml:lang="sl">Slika diska Nintendo FDS</comment>
+ <comment xml:lang="si">Nintendo FDS තැටි රූපය</comment>
+ <comment xml:lang="sk">Obraz disku Nintendo FDS</comment>
+ <comment xml:lang="ru">Образ диска Nintendo FDS</comment>
+ <comment xml:lang="pt_BR">Imagem de disco Nintendo FDS</comment>
+ <comment xml:lang="pl">Obraz dysku Nintendo FDS</comment>
+ <comment xml:lang="nl">Nintendo FDS-schijfkopiebestand</comment>
+ <comment xml:lang="ko">닌텐도 FDS 디스크 이미지</comment>
+ <comment xml:lang="kk">Nintendo FDS диск бейнесі</comment>
+ <comment xml:lang="ja">Nintendo FDS ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco Nintendo FDS</comment>
+ <comment xml:lang="is">Nintendo FDS diskmynd</comment>
+ <comment xml:lang="id">Image disk Nintendo FDS</comment>
+ <comment xml:lang="hu">Nintendo FDS lemezkép</comment>
+ <comment xml:lang="hr">Nintendo FDS slika diska</comment>
+ <comment xml:lang="he">תמונת כונן Nintendo FDS</comment>
+ <comment xml:lang="ga">íomhá diosca Nintendo FDS</comment>
+ <comment xml:lang="fur">imagjin disc Nintendo FDS</comment>
+ <comment xml:lang="fr">image disque Nintendo FDS</comment>
+ <comment xml:lang="fi">Nintendo FDS -levykuva</comment>
+ <comment xml:lang="eu">Nintendo FDS disko irudia</comment>
+ <comment xml:lang="es">imagen de disco FDS de Nintendo</comment>
+ <comment xml:lang="en_GB">Nintendo FDS disk image</comment>
+ <comment xml:lang="de">Nintendo-FDS-Datenträgerabbild</comment>
+ <comment xml:lang="da">Nintendo FDS-diskaftryk</comment>
+ <comment xml:lang="cs">obraz disku pro Nintendo FDS</comment>
+ <comment xml:lang="ca">imatge de disc Nintendo FDS</comment>
+ <comment xml:lang="bg">Диск — Nintendo FDS</comment>
+ <comment xml:lang="be">вобраз дыска Nintendo FDS</comment>
+ <comment xml:lang="ar">صورة قرص نينتندو اف دي اس</comment>
+ <comment xml:lang="af">Nintendo FDS-skyfbeeldlêer</comment>
<acronym>FDS</acronym>
<expanded-acronym>Famicom Disk System</expanded-acronym>
<glob pattern="*.fds"/>
<magic>
- <match value="*NINTENDO-HVC*" type="string" offset="1"/>
+ <match type="string" value="*NINTENDO-HVC*" offset="1"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/ovf">
+ <comment>OVF disk image</comment>
+ <comment xml:lang="zh_CN">OVF 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска OVF</comment>
+ <comment xml:lang="tr">OVF disk görüntüsü</comment>
+ <comment xml:lang="sv">OVF-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska OVF</comment>
+ <comment xml:lang="si">OVF තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска OVF</comment>
+ <comment xml:lang="pt_BR">Imagem de disco OVF</comment>
+ <comment xml:lang="pl">Obraz dysku OVF</comment>
+ <comment xml:lang="nl">OVF-schijfkopiebestand</comment>
+ <comment xml:lang="ko">OVF 디스크 이미지</comment>
+ <comment xml:lang="kk">OVF диск бейнесі</comment>
+ <comment xml:lang="ja">OVF ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco OVF</comment>
+ <comment xml:lang="hr">OVF slika diska</comment>
+ <comment xml:lang="fi">OVF-levykuva</comment>
+ <comment xml:lang="eu">OVF disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco OVF</comment>
+ <comment xml:lang="en_GB">OVF disk image</comment>
+ <comment xml:lang="de">OVF-Datenträgerabbild</comment>
+ <comment xml:lang="be">вобраз дыска OVF</comment>
+ <comment xml:lang="ar">صورة قرص OVF</comment>
+ <acronym>OVF</acronym>
+ <expanded-acronym>Open Virtualization Format</expanded-acronym>
+ <glob pattern="*.ova"/>
+ <magic priority="62">
+ <match type="string" value=".ovf" offset="1:256">
+ <match type="string" value="ustar\0" offset="257"/>
+ <match type="string" value="ustar\040\040\0" offset="257"/>
+ </match>
</magic>
+ <alias type="application/x-virtualbox-ova"/>
+ <sub-class-of type="application/x-tar"/>
+ </mime-type>
+ <mime-type type="application/x-qed-disk">
+ <comment>QEMU QED disk image</comment>
+ <comment xml:lang="zh_TW">QEMU QED 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">QEMU QED 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска QED QEMU</comment>
+ <comment xml:lang="tr">QEMU QED disk görüntüsü</comment>
+ <comment xml:lang="sv">QEMU QED-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska QEMU QED</comment>
+ <comment xml:lang="si">QEMU QED තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска QEMU QED</comment>
+ <comment xml:lang="pt_BR">Imagem de disco QEMU QED</comment>
+ <comment xml:lang="pl">Obraz dysku QED QEMU</comment>
+ <comment xml:lang="nl">QEMU QED-schijfkopiebestand</comment>
+ <comment xml:lang="ko">QEMU QED 디스크 이미지</comment>
+ <comment xml:lang="kk">QEMU QED диск бейнесі</comment>
+ <comment xml:lang="ja">QEMU QED ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco QEMU QED</comment>
+ <comment xml:lang="hr">QEMU QED slika diska</comment>
+ <comment xml:lang="fi">QEMU QED-levykuva</comment>
+ <comment xml:lang="eu">QEMU QED disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco QED de QEMU</comment>
+ <comment xml:lang="en_GB">QEMU QED disk image</comment>
+ <comment xml:lang="de">QEMU-QED-Datenträgerabbild</comment>
+ <comment xml:lang="be">вобраз дыска QEMU QED</comment>
+ <comment xml:lang="ar">صورة قرص QEMU QED</comment>
+ <acronym>QED</acronym>
+ <expanded-acronym>QEMU Enhanced Disk</expanded-acronym>
+ <glob pattern="*.qed"/>
+ <magic>
+ <match type="string" value="QED\0" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-qemu-disk">
+ <comment>QEMU QCOW disk image</comment>
+ <comment xml:lang="zh_TW">QEMU QCOW 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">QEMU QCOW 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска QCOW QEMU</comment>
+ <comment xml:lang="tr">QEMU QCOW disk görüntüsü</comment>
+ <comment xml:lang="sv">QEMU QCOW-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska QEMU QCOW</comment>
+ <comment xml:lang="si">QEMU QCOW තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска QEMU QCOW</comment>
+ <comment xml:lang="pt_BR">Imagem de disco QEMU QCOW</comment>
+ <comment xml:lang="pl">Obraz dysku QCOW QEMU</comment>
+ <comment xml:lang="nl">QEMU QCOW-schijfkopiebestand</comment>
+ <comment xml:lang="ko">QEMU QCOW 디스크 이미지</comment>
+ <comment xml:lang="kk">QEMU QCOW диск бейнесі</comment>
+ <comment xml:lang="ja">QEMU QCOW ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco QEMU QCOW</comment>
+ <comment xml:lang="is">QEMU QCOW diskmynd</comment>
+ <comment xml:lang="id">Image disk QCOW QEMU</comment>
+ <comment xml:lang="hu">QEMU QCOW lemezkép</comment>
+ <comment xml:lang="hr">QEMU QCOW slika diska</comment>
+ <comment xml:lang="he">תמונת כונן QEMU QCOW</comment>
+ <comment xml:lang="fr">image disque QEMU QCOW</comment>
+ <comment xml:lang="fi">QEMU QCOW -levykuva</comment>
+ <comment xml:lang="eu">QEMU QCOW disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco QCOW de QEMU</comment>
+ <comment xml:lang="en_GB">QEMU QCOW disk image</comment>
+ <comment xml:lang="de">QEMU-QCOW-Datenträgerabbild</comment>
+ <comment xml:lang="da">QEMU QCOW-diskaftryk</comment>
+ <comment xml:lang="ca">imatge de disc QEMU QCOW</comment>
+ <comment xml:lang="be">вобраз дыска QEMU QCOW</comment>
+ <comment xml:lang="ar">صورة قرص QEMU QCOW</comment>
+ <acronym>QCOW</acronym>
+ <expanded-acronym>QEMU Copy On Write</expanded-acronym>
+ <glob pattern="*.qcow2"/>
+ <glob pattern="*.qcow"/>
+ <magic>
+ <match type="string" value="QFI" offset="0">
+ <match value="0xfb" type="byte" offset="3"/>
+ </match>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-vhd-disk">
+ <comment>VHD disk image</comment>
+ <comment xml:lang="zh_TW">VHD 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">VHD 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска VHD</comment>
+ <comment xml:lang="tr">VHD disk görüntüsü</comment>
+ <comment xml:lang="sv">VHD-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska VHD</comment>
+ <comment xml:lang="si">VHD තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска VHD</comment>
+ <comment xml:lang="pt_BR">Imagem de disco VHD</comment>
+ <comment xml:lang="pl">Obraz dysku VHD</comment>
+ <comment xml:lang="nl">VHD-schijfkopiebestand</comment>
+ <comment xml:lang="ko">VHD 디스크 이미지</comment>
+ <comment xml:lang="kk">VHD диск бейнесі</comment>
+ <comment xml:lang="ja">VHD ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco VHD</comment>
+ <comment xml:lang="hr">VHD slika diska</comment>
+ <comment xml:lang="fi">VHD-levykuva</comment>
+ <comment xml:lang="eu">VHD disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco VHD</comment>
+ <comment xml:lang="en_GB">VHD disk image</comment>
+ <comment xml:lang="de">VHD-Datenträgerabbild</comment>
+ <comment xml:lang="be">вобраз дыска VHD</comment>
+ <comment xml:lang="ar">صورة قرص VHD</comment>
+ <acronym>VHD</acronym>
+ <expanded-acronym>Virtual Hard Disk</expanded-acronym>
+ <glob pattern="*.vhd"/>
+ <glob pattern="*.vpc"/>
+ <magic>
+ <match type="string" value="conectix" offset="0"/>
+ </magic>
+ <alias type="application/x-virtualbox-vhd"/>
+ </mime-type>
+ <mime-type type="application/x-vhdx-disk">
+ <comment>VHDX disk image</comment>
+ <comment xml:lang="zh_TW">VHDX 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">VHDX 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска VHDX</comment>
+ <comment xml:lang="tr">VHDX disk görüntüsü</comment>
+ <comment xml:lang="sv">VHDX-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska VHDX</comment>
+ <comment xml:lang="si">VHDX තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска VHDX</comment>
+ <comment xml:lang="pt_BR">Imagem de disco VHDX</comment>
+ <comment xml:lang="pl">Obraz dysku VHDX</comment>
+ <comment xml:lang="nl">VHDX-schijfkopiebestand</comment>
+ <comment xml:lang="ko">VHDX 디스크 이미지</comment>
+ <comment xml:lang="kk">VHDX диск бейнесі</comment>
+ <comment xml:lang="ja">VHDX ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco VHDX</comment>
+ <comment xml:lang="hr">VHDX slika diska</comment>
+ <comment xml:lang="fi">VHDX-levykuva</comment>
+ <comment xml:lang="eu">VHDX disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco VHDX</comment>
+ <comment xml:lang="en_GB">VHDX disk image</comment>
+ <comment xml:lang="de">VHDX-Datenträgerabbild</comment>
+ <comment xml:lang="be">вобраз дыска VHDX</comment>
+ <comment xml:lang="ar">صورة قرص VHDX</comment>
+ <acronym>VHDX</acronym>
+ <expanded-acronym>Virtual Hard Disk v2</expanded-acronym>
+ <glob pattern="*.vhdx"/>
+ <magic>
+ <match type="string" value="vhdxfile" offset="0"/>
+ </magic>
+ <alias type="application/x-virtualbox-vhdx"/>
+ </mime-type>
+ <mime-type type="application/x-vmdk-disk">
+ <comment>VMDK disk image</comment>
+ <comment xml:lang="zh_TW">VMDK 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">VMDK 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска VMDK</comment>
+ <comment xml:lang="tr">VMDK disk görüntüsü</comment>
+ <comment xml:lang="sv">VMDK-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska VMDK</comment>
+ <comment xml:lang="si">VMDK තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска VMDK</comment>
+ <comment xml:lang="pt_BR">Imagem de disco VMDK</comment>
+ <comment xml:lang="pl">Obraz dysku VMDK</comment>
+ <comment xml:lang="nl">VMDK-schijfkopiebestand</comment>
+ <comment xml:lang="ko">VMDK 디스크 이미지</comment>
+ <comment xml:lang="kk">VMDK диск бейнесі</comment>
+ <comment xml:lang="ja">VMDK ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco VMDK</comment>
+ <comment xml:lang="hr">VMDK slika diska</comment>
+ <comment xml:lang="fi">VMDK-levykuva</comment>
+ <comment xml:lang="eu">VMDK disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco VMDK</comment>
+ <comment xml:lang="en_GB">VMDK disk image</comment>
+ <comment xml:lang="de">VMDK-Datenträgerabbild</comment>
+ <comment xml:lang="be">вобраз дыска VMDK</comment>
+ <comment xml:lang="ar">صورة قرص VMDK</comment>
+ <acronym>VMDK</acronym>
+ <expanded-acronym>Virtual Machine Disk</expanded-acronym>
+ <glob pattern="*.vmdk"/>
+ <magic>
+ <match type="string" value="KDMV\x01\x00\x00\x00" offset="0"/>
+ <match type="string" value="KDMV\x02\x00\x00\x00" offset="0"/>
+ </magic>
+ <alias type="application/x-virtualbox-vmdk"/>
+ </mime-type>
+ <mime-type type="application/x-vdi-disk">
+ <comment>VDI disk image</comment>
+ <comment xml:lang="zh_TW">VDI 磁碟映像檔</comment>
+ <comment xml:lang="zh_CN">VDI 磁盘映像</comment>
+ <comment xml:lang="uk">образ диска VDI</comment>
+ <comment xml:lang="tr">VDI disk görüntüsü</comment>
+ <comment xml:lang="sv">VDI-diskavbildning</comment>
+ <comment xml:lang="sl">Slika diska VDI</comment>
+ <comment xml:lang="si">VDI තැටි රූපය</comment>
+ <comment xml:lang="ru">Образ диска VDI</comment>
+ <comment xml:lang="pt_BR">Imagem de disco VDI</comment>
+ <comment xml:lang="pl">Obraz dysku VDI</comment>
+ <comment xml:lang="nl">VDI-schijfkopiebestand</comment>
+ <comment xml:lang="ko">VDI 디스크 이미지</comment>
+ <comment xml:lang="kk">VDI диск бейнесі</comment>
+ <comment xml:lang="ja">VDI ディスクイメージ</comment>
+ <comment xml:lang="it">Immagine disco VDI</comment>
+ <comment xml:lang="hr">VDI slika diska</comment>
+ <comment xml:lang="fi">VDI-levykuva</comment>
+ <comment xml:lang="eu">VDI disko-irudia</comment>
+ <comment xml:lang="es">imagen de disco VDI</comment>
+ <comment xml:lang="en_GB">VDI disk image</comment>
+ <comment xml:lang="de">VDI-Datenträgerabbild</comment>
+ <comment xml:lang="be">вобраз дыска VDI</comment>
+ <comment xml:lang="ar">صورة قرص VDI</comment>
+ <acronym>VDI</acronym>
+ <expanded-acronym>Virtual Disk Image</expanded-acronym>
+ <glob pattern="*.vdi"/>
+ <magic>
+ <match type="string" value="&lt;&lt;&lt; QEMU VM Virtual Disk Image &gt;&gt;&gt;\n" offset="0"/>
+ <match type="string" value="&lt;&lt;&lt; Oracle VM VirtualBox Disk Image &gt;&gt;&gt;\n" offset="0"/>
+ <match type="string" value="&lt;&lt;&lt; Sun VirtualBox Disk Image &gt;&gt;&gt;\n" offset="0"/>
+ <match type="string" value="&lt;&lt;&lt; Sun xVM VirtualBox Disk Image &gt;&gt;&gt;\n" offset="0"/>
+ <match type="string" value="&lt;&lt;&lt; innotek VirtualBox Disk Image &gt;&gt;&gt;" offset="0"/>
+ <match type="string" value="&lt;&lt;&lt; CloneVDI VirtualBox Disk Image &gt;&gt;&gt;\n" offset="0"/>
+ </magic>
+ <alias type="application/x-virtualbox-vdi"/>
+ </mime-type>
+ <mime-type type="application/x-appleworks-document">
+ <comment>AppleWorks document</comment>
+ <comment xml:lang="zh_TW">AppleWorks 文件</comment>
+ <comment xml:lang="zh_CN">AppleWorks 文档</comment>
+ <comment xml:lang="uk">документ AppleWorks</comment>
+ <comment xml:lang="tr">AppleWorks belgesi</comment>
+ <comment xml:lang="sv">AppleWorks-dokument</comment>
+ <comment xml:lang="sl">Dokument AppleWorks</comment>
+ <comment xml:lang="si">AppleWorks ලේඛනය</comment>
+ <comment xml:lang="ru">Документ AppleWorks</comment>
+ <comment xml:lang="pt_BR">Documento AppleWorks</comment>
+ <comment xml:lang="pl">Dokument AppleWorks</comment>
+ <comment xml:lang="oc">document AppleWorks</comment>
+ <comment xml:lang="nl">AppleWorks-document</comment>
+ <comment xml:lang="ko">AppleWorks 문서</comment>
+ <comment xml:lang="kk">AppleWorks құжаты</comment>
+ <comment xml:lang="ja">AppleWorks ドキュメント</comment>
+ <comment xml:lang="it">Documento AppleWorks</comment>
+ <comment xml:lang="is">AppleWorks skjal</comment>
+ <comment xml:lang="id">Dokumen AppleWorks</comment>
+ <comment xml:lang="hu">AppleWorks-dokumentum</comment>
+ <comment xml:lang="hr">AppleWorks dokument</comment>
+ <comment xml:lang="he">מסמך AppleWorks</comment>
+ <comment xml:lang="fr">document AppleWorks</comment>
+ <comment xml:lang="fi">AppleWorks-asiakirja</comment>
+ <comment xml:lang="eu">AppleWorks dokumentua</comment>
+ <comment xml:lang="es">documento de AppleWorks</comment>
+ <comment xml:lang="en_GB">AppleWorks document</comment>
+ <comment xml:lang="de">AppleWorks-Dokument</comment>
+ <comment xml:lang="da">AppleWorks-dokument</comment>
+ <comment xml:lang="ca">document AppleWorks</comment>
+ <comment xml:lang="be">дакумент AppleWorks</comment>
+ <comment xml:lang="ar">مستند AppleWorks</comment>
+ <generic-icon name="x-office-document"/>
+ <glob pattern="*.cwk"/>
+ </mime-type>
+ <mime-type type="application/x-bps-patch">
+ <comment>BPS patch</comment>
+ <comment xml:lang="zh_TW">BPS 修補檔</comment>
+ <comment xml:lang="zh_CN">BPS 补丁</comment>
+ <comment xml:lang="uk">латка BPS</comment>
+ <comment xml:lang="tr">BPS yaması</comment>
+ <comment xml:lang="sv">BPS-patch</comment>
+ <comment xml:lang="sl">Popravek BPS</comment>
+ <comment xml:lang="si">BPS පැච්</comment>
+ <comment xml:lang="sk">Záplata BPS</comment>
+ <comment xml:lang="ru">Патч BPS</comment>
+ <comment xml:lang="pt_BR">Patch BPS</comment>
+ <comment xml:lang="pl">Łata BPS</comment>
+ <comment xml:lang="nl">BPS-patch</comment>
+ <comment xml:lang="ko">BPS 패치</comment>
+ <comment xml:lang="kk">BPS өзгерісі</comment>
+ <comment xml:lang="ja">BPS パッチ</comment>
+ <comment xml:lang="it">Patch BPS</comment>
+ <comment xml:lang="is">BPS kóðabót</comment>
+ <comment xml:lang="id">Patch BPS</comment>
+ <comment xml:lang="hu">BPS javítócsomag</comment>
+ <comment xml:lang="hr">BPS zakrpa</comment>
+ <comment xml:lang="he">טלאי BPS</comment>
+ <comment xml:lang="fr">correctif BPS</comment>
+ <comment xml:lang="fi">BPS-korjaus</comment>
+ <comment xml:lang="es">parche BPS</comment>
+ <comment xml:lang="en_GB">BPS patch</comment>
+ <comment xml:lang="de">BPS-Patch</comment>
+ <comment xml:lang="da">BPS-rettelse</comment>
+ <comment xml:lang="ca">pedaç de BPS</comment>
+ <comment xml:lang="be">патч BPS</comment>
+ <comment xml:lang="ar">رقعة BPS</comment>
+ <acronym>BPS</acronym>
+ <expanded-acronym>Binary Patching System</expanded-acronym>
+ <glob pattern="*.bps"/>
+ <magic>
+ <match type="string" value="BPS1" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-ips-patch">
+ <comment>IPS patch</comment>
+ <comment xml:lang="zh_TW">IPS 修補檔</comment>
+ <comment xml:lang="zh_CN">IPS 补丁</comment>
+ <comment xml:lang="uk">латка IPS</comment>
+ <comment xml:lang="tr">IPS yaması</comment>
+ <comment xml:lang="sv">IPS-patch</comment>
+ <comment xml:lang="sl">Popravek IPS</comment>
+ <comment xml:lang="si">IPS පැච්</comment>
+ <comment xml:lang="ru">Патч IPS</comment>
+ <comment xml:lang="pt_BR">Patch IPS</comment>
+ <comment xml:lang="pl">Łata IPS</comment>
+ <comment xml:lang="nl">IPS-patch</comment>
+ <comment xml:lang="ko">IPS 패치</comment>
+ <comment xml:lang="kk">IPS өзгерісі</comment>
+ <comment xml:lang="ja">IPS パッチ</comment>
+ <comment xml:lang="it">Patch IPS</comment>
+ <comment xml:lang="is">IPS kóðabót</comment>
+ <comment xml:lang="id">Patch IPS</comment>
+ <comment xml:lang="hu">IPS javítócsomag</comment>
+ <comment xml:lang="hr">IPS zakrpa</comment>
+ <comment xml:lang="he">טלאי IPS</comment>
+ <comment xml:lang="fr">correctif IPS</comment>
+ <comment xml:lang="fi">IPS-korjaus</comment>
+ <comment xml:lang="es">parche IPS</comment>
+ <comment xml:lang="en_GB">IPS patch</comment>
+ <comment xml:lang="de">IPS-Patch</comment>
+ <comment xml:lang="da">IPS-rettelse</comment>
+ <comment xml:lang="ca">pedaç d'IPS</comment>
+ <comment xml:lang="be">патч IPS</comment>
+ <comment xml:lang="ar">رقعة IPS</comment>
+ <acronym>IPS</acronym>
+ <expanded-acronym>International Patching System</expanded-acronym>
+ <glob pattern="*.ips"/>
+ <magic>
+ <match type="string" value="PATCH" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-pyspread-spreadsheet">
+ <comment>Pyspread spreadsheet</comment>
+ <comment xml:lang="zh_TW">Pyspread 試算表</comment>
+ <comment xml:lang="zh_CN">Pyspread 电子表格</comment>
+ <comment xml:lang="uk">електронна таблиця Pyspread</comment>
+ <comment xml:lang="tr">Pyspread hesap çizelgesi</comment>
+ <comment xml:lang="sv">Pyspread-kalkylblad</comment>
+ <comment xml:lang="sl">Preglednica Pyspread</comment>
+ <comment xml:lang="si">Pyspread පැතුරුම්පත</comment>
+ <comment xml:lang="ru">Электронная таблица Pyspread</comment>
+ <comment xml:lang="pt_BR">Planilha do Pyspread</comment>
+ <comment xml:lang="pl">Arkusz pyspread</comment>
+ <comment xml:lang="nl">Pyspread werkblad</comment>
+ <comment xml:lang="ko">Pyspread 스프레드시트</comment>
+ <comment xml:lang="kk">Pyspread электрондық кестесі</comment>
+ <comment xml:lang="ja">Pyspread スプレッドシート</comment>
+ <comment xml:lang="it">Foglio di calcolo Pyspread</comment>
+ <comment xml:lang="is">Pyspread töflureikniskjal</comment>
+ <comment xml:lang="id">lembar kerja Pyspread</comment>
+ <comment xml:lang="hu">Pyspread-munkafüzet</comment>
+ <comment xml:lang="hr">Pyspread proračunska tablica</comment>
+ <comment xml:lang="he">גיליון Pyspread</comment>
+ <comment xml:lang="fr">feuille de calcul Pyspread</comment>
+ <comment xml:lang="fi">Pyspread-taulukko</comment>
+ <comment xml:lang="es">hoja de cálculo de Pyspread</comment>
+ <comment xml:lang="en_GB">Pyspread spreadsheet</comment>
+ <comment xml:lang="de">Pyspread-Tabelle</comment>
+ <comment xml:lang="da">Pyspread-regneark</comment>
+ <comment xml:lang="ca">full de càlcul de Pyspread</comment>
+ <comment xml:lang="be">электронная табліца Pyspread</comment>
+ <comment xml:lang="ar">ورقة عمل Pyspread</comment>
+ <glob pattern="*.pysu"/>
+ <magic>
+ <match type="string" value="[Pyspread save file version]" offset="0"/>
+ </magic>
+ <generic-icon name="x-office-spreadsheet"/>
+ </mime-type>
+ <mime-type type="application/x-pyspread-bz-spreadsheet">
+ <comment>Pyspread spreadsheet (bzip2-compressed)</comment>
+ <comment xml:lang="uk">електронна таблиця Pyspread (стиснена bzip2)</comment>
+ <comment xml:lang="sv">Pyspread-kalkylblad (bzip2-komprimerat)</comment>
+ <comment xml:lang="ru">Электронная таблица Pyspread (сжатая bzip2)</comment>
+ <comment xml:lang="pl">Arkusz pyspread (kompresja bzip2)</comment>
+ <comment xml:lang="es">hoja de cálculo de Pyspread (comprimida con BZIP2)</comment>
+ <comment xml:lang="de">Pyspread-Tabelle (bzip2-komprimiert)</comment>
+ <sub-class-of type="application/x-bzip2"/>
+ <glob pattern="*.pys"/>
+ <generic-icon name="x-office-spreadsheet"/>
+ </mime-type>
+ <mime-type type="text/x-kotlin">
+ <comment>Kotlin source code</comment>
+ <comment xml:lang="zh_TW">Kotlin 原始碼</comment>
+ <comment xml:lang="zh_CN">Kotlin 源代码</comment>
+ <comment xml:lang="uk">початковий код мовою Kotlin</comment>
+ <comment xml:lang="tr">Kotlin kaynak kodu</comment>
+ <comment xml:lang="sv">Kotlin-källkod</comment>
+ <comment xml:lang="sl">Izvorna koda Kotlin</comment>
+ <comment xml:lang="si">Kotlin මූල කේතය</comment>
+ <comment xml:lang="ru">Исходный код Kotlin</comment>
+ <comment xml:lang="pt_BR">Código-fonte Kotlin</comment>
+ <comment xml:lang="pl">Kod źródłowy Kotlin</comment>
+ <comment xml:lang="oc">còdi font Kotlin</comment>
+ <comment xml:lang="nl">Kotlin-broncode</comment>
+ <comment xml:lang="ko">Kotlin 소스 코드</comment>
+ <comment xml:lang="kk">Kotlin бастапқы коды</comment>
+ <comment xml:lang="ja">Kotlin ソースコード</comment>
+ <comment xml:lang="it">Codice sorgente Kotlin</comment>
+ <comment xml:lang="is">Kotlin frumkóði</comment>
+ <comment xml:lang="id">kode sumber Kotlin</comment>
+ <comment xml:lang="hu">Kotlin forráskód</comment>
+ <comment xml:lang="hr">Kotlin izvorni kôd</comment>
+ <comment xml:lang="he">קוד מקור של Kotlin</comment>
+ <comment xml:lang="gl">Código fonte en Kotlin</comment>
+ <comment xml:lang="fr">code source Kotlin</comment>
+ <comment xml:lang="fi">Kotlin-lähdekoodi</comment>
+ <comment xml:lang="es">código fuente en Kotlin</comment>
+ <comment xml:lang="en_GB">Kotlin source code</comment>
+ <comment xml:lang="de">Kotlin-Quelltext</comment>
+ <comment xml:lang="da">Kotlin-kildekode</comment>
+ <comment xml:lang="ca">codi font en Kotlin</comment>
+ <comment xml:lang="be">зыходны код Kotlin</comment>
+ <comment xml:lang="ar">شفرة مصدر Kotlin</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.kt"/>
+ </mime-type>
+ <mime-type type="text/x-devicetree-source">
+ <comment>Devicetree source code</comment>
+ <comment xml:lang="uk">початковий код devicetree</comment>
+ <comment xml:lang="sv">Enhetsträdskällkod</comment>
+ <comment xml:lang="ru">Исходный код Devicetree</comment>
+ <comment xml:lang="pl">Kod źródłowy DeviceTree</comment>
+ <comment xml:lang="it">Codice sorgente Devicetree</comment>
+ <comment xml:lang="gl">Código fonte en Devicetree</comment>
+ <comment xml:lang="es">código fuente de árbol de dispositivos</comment>
+ <comment xml:lang="de">Gerätebaum-Quelltext</comment>
+ <comment xml:lang="be">зыходны код Devicetree</comment>
+ <acronym>DTS</acronym>
+ <expanded-acronym>Device Tree Source</expanded-acronym>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.dts"/>
+ <glob pattern="*.dtsi"/>
+ <magic>
+ <match type="string" mask="0x8080" value="\000\000" offset="0">
+ <match type="string" value="/dts-v1/" offset="0:4080"/>
+ </match>
+ </magic>
+ <magic priority="40">
+ <match type="string" mask="0x8080" value="\000\000" offset="0">
+ <match type="string" value="/ {" offset="0:4090"/>
+ <match type="string" value="include " offset="0:4080">
+ <match type="string" value=".dts" offset="10:4090"/>
+ </match>
+ </match>
+ </magic>
+ </mime-type>
+ <mime-type type="text/x-devicetree-binary">
+ <comment>Flattened Devicetree</comment>
+ <comment xml:lang="uk">зведене Devicetree</comment>
+ <comment xml:lang="sv">Utplattat enhetsträd</comment>
+ <comment xml:lang="ru">Плоское дерево устройств</comment>
+ <comment xml:lang="pl">Spłaszczone DeviceTree</comment>
+ <comment xml:lang="it">Devicetree compatto</comment>
+ <comment xml:lang="es">árbol de dispositivos aplanado</comment>
+ <comment xml:lang="de">Verflachter Gerätebaum</comment>
+ <acronym>DTB</acronym>
+ <expanded-acronym>Device Tree Binary</expanded-acronym>
+ <glob pattern="*.dtb"/>
+ <magic>
+ <match type="big32" value="0xd00dfeed" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="image/avif">
+ <comment>AVIF image</comment>
+ <comment xml:lang="zh_TW">AVIF 影像</comment>
+ <comment xml:lang="zh_CN">AVIF 图像</comment>
+ <comment xml:lang="uk">зображення AVIF</comment>
+ <comment xml:lang="tr">AVIF görüntüsü</comment>
+ <comment xml:lang="sv">AVIF-bild</comment>
+ <comment xml:lang="sl">Slika AVIF</comment>
+ <comment xml:lang="si">AVIF රූපය</comment>
+ <comment xml:lang="ru">Изображение AVIF</comment>
+ <comment xml:lang="pt_BR">Imagem AVIF</comment>
+ <comment xml:lang="pl">Obraz AVIF</comment>
+ <comment xml:lang="oc">imatge AVIF</comment>
+ <comment xml:lang="nl">AVIF-afbeelding</comment>
+ <comment xml:lang="ko">AVIF 그림</comment>
+ <comment xml:lang="kk">AVIF суреті</comment>
+ <comment xml:lang="ja">AVIF 画像</comment>
+ <comment xml:lang="it">Immagine AVIF</comment>
+ <comment xml:lang="hr">AVIF slika</comment>
+ <comment xml:lang="fi">AVIF-kuva</comment>
+ <comment xml:lang="eu">AVIF irudia</comment>
+ <comment xml:lang="es">imagen AVIF</comment>
+ <comment xml:lang="en_GB">AVIF image</comment>
+ <comment xml:lang="de">AVIF-Bild</comment>
+ <comment xml:lang="be">выява AVIF</comment>
+ <comment xml:lang="ar">صورة AVIF</comment>
+ <acronym>AVIF</acronym>
+ <expanded-acronym>AV1 Image File Format</expanded-acronym>
+ <magic>
+ <match type="string" value="ftypavif" offset="4"/>
+ <match type="string" value="ftypavis" offset="4"/>
+ <match type="string" value="ftypmif1" offset="4">
+ <match type="string" value="avif" offset="16"/>
+ <match type="string" value="avif" offset="20"/>
+ <match type="string" value="avif" offset="24"/>
+ </match>
+ </magic>
+ <glob pattern="*.avif"/>
+ <glob pattern="*.avifs"/>
+ <alias type="image/avif-sequence"/>
+ </mime-type>
+ <mime-type type="image/qoi">
+ <comment>Quite OK Image Format</comment>
+ <comment xml:lang="uk">формат зображень Quite OK</comment>
+ <comment xml:lang="sv">Quite OK Image-format</comment>
+ <comment xml:lang="ru">Формат изображений Quite OK</comment>
+ <comment xml:lang="pl">Obraz QOI</comment>
+ <comment xml:lang="it">Formato immagine Quite OK</comment>
+ <comment xml:lang="es">formato de imagen Quite OK</comment>
+ <comment xml:lang="de">Quite-OK-Bildformat</comment>
+ <magic>
+ <match type="string" value="qoif" offset="0"/>
+ </magic>
+ <glob pattern="*.qoi"/>
+ </mime-type>
+ <mime-type type="video/vnd.radgamettools.bink">
+ <comment>Bink Video</comment>
+ <comment xml:lang="zh_CN">Bink 视频</comment>
+ <comment xml:lang="uk">відео Bink</comment>
+ <comment xml:lang="tr">Bink Videosu</comment>
+ <comment xml:lang="sv">Bink-video</comment>
+ <comment xml:lang="sl">Video Bink</comment>
+ <comment xml:lang="si">බින්ක් වීඩියෝව</comment>
+ <comment xml:lang="ru">Видео Bink</comment>
+ <comment xml:lang="pt_BR">Vídeo Bink</comment>
+ <comment xml:lang="pl">Plik wideo Bink</comment>
+ <comment xml:lang="nl">Bink-video</comment>
+ <comment xml:lang="ko">Bink 동영상</comment>
+ <comment xml:lang="kk">Bink видеосы</comment>
+ <comment xml:lang="ja">Bink 動画</comment>
+ <comment xml:lang="it">Video Bink</comment>
+ <comment xml:lang="hr">Bink video snimka</comment>
+ <comment xml:lang="fi">Bink Video</comment>
+ <comment xml:lang="eu">Bink bideoa</comment>
+ <comment xml:lang="es">vídeo BINK</comment>
+ <comment xml:lang="en_GB">Bink Video</comment>
+ <comment xml:lang="de">Bink-Video</comment>
+ <comment xml:lang="be">відэа Bink</comment>
+ <comment xml:lang="ar">فيديو Bink</comment>
+ <magic>
+ <match type="string" value="BIK" offset="0">
+ <match type="string" value="b" offset="3"/>
+ <match type="string" value="f" offset="3"/>
+ <match type="string" value="g" offset="3"/>
+ <match type="string" value="h" offset="3"/>
+ <match type="string" value="i" offset="3"/>
+ </match>
+ <match type="string" value="KB2" offset="0">
+ <match type="string" value="a" offset="3"/>
+ <match type="string" value="d" offset="3"/>
+ <match type="string" value="f" offset="3"/>
+ <match type="string" value="g" offset="3"/>
+ <match type="string" value="h" offset="3"/>
+ <match type="string" value="i" offset="3"/>
+ <match type="string" value="j" offset="3"/>
+ <match type="string" value="k" offset="3"/>
+ </match>
+ </magic>
+ <glob pattern="*.bik"/>
+ <glob pattern="*.bk2"/>
+ </mime-type>
+ <mime-type type="video/vnd.radgamettools.smacker">
+ <comment>Smacker Video</comment>
+ <comment xml:lang="zh_CN">Smacker 视频</comment>
+ <comment xml:lang="uk">відео Smacker</comment>
+ <comment xml:lang="tr">Smacker Videosu</comment>
+ <comment xml:lang="sv">Smacker-video</comment>
+ <comment xml:lang="sl">Video Smacker</comment>
+ <comment xml:lang="si">ස්මකර් වීඩියෝව</comment>
+ <comment xml:lang="ru">Видео Smacker</comment>
+ <comment xml:lang="pt_BR">Vídeo Smacker</comment>
+ <comment xml:lang="pl">Plik wideo Smacker</comment>
+ <comment xml:lang="nl">Smacker-video</comment>
+ <comment xml:lang="ko">Smacker 동영상</comment>
+ <comment xml:lang="kk">Smacker видеосы</comment>
+ <comment xml:lang="ja">Smacker 動画</comment>
+ <comment xml:lang="it">Video Smacker</comment>
+ <comment xml:lang="hr">Smacker video snimka</comment>
+ <comment xml:lang="fi">Smacker Video</comment>
+ <comment xml:lang="eu">Smacker bideoa</comment>
+ <comment xml:lang="es">vídeo Smacker</comment>
+ <comment xml:lang="en_GB">Smacker Video</comment>
+ <comment xml:lang="de">Smacker-Video</comment>
+ <comment xml:lang="be">відэа Smacker</comment>
+ <comment xml:lang="ar">فيديو Smacker</comment>
+ <magic>
+ <match type="string" value="SMK" offset="0">
+ <match type="string" value="2" offset="3"/>
+ <match type="string" value="4" offset="3"/>
+ </match>
+ </magic>
+ <glob pattern="*.smk"/>
+ </mime-type>
+ <mime-type type="text/org">
+ <comment>Org-mode file</comment>
+ <comment xml:lang="zh_CN">Org-mode 文件</comment>
+ <comment xml:lang="uk">файл Org-mode</comment>
+ <comment xml:lang="tr">Org-mode dosyası</comment>
+ <comment xml:lang="sv">Org-mode-fil</comment>
+ <comment xml:lang="sl">Datoteka org-mode</comment>
+ <comment xml:lang="si">Org-mode ගොනුව</comment>
+ <comment xml:lang="ru">Файл Org-mode</comment>
+ <comment xml:lang="pl">Plik Org-mode</comment>
+ <comment xml:lang="nl">Org-mode-bestand</comment>
+ <comment xml:lang="ko">Org-mode 파일</comment>
+ <comment xml:lang="kk">Org-mode файлы</comment>
+ <comment xml:lang="ja">Org-mode ファイル</comment>
+ <comment xml:lang="it">File Org-mode</comment>
+ <comment xml:lang="hr">Org-mode datoteka</comment>
+ <comment xml:lang="fi">Org-mode-tiedosto</comment>
+ <comment xml:lang="es">archivo modo Org</comment>
+ <comment xml:lang="en_GB">Org-mode file</comment>
+ <comment xml:lang="de">Org-mode-Datei</comment>
+ <comment xml:lang="be">файл Org-mode</comment>
+ <comment xml:lang="ar">ملف Org-mode</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.org"/>
+ </mime-type>
+ <mime-type type="application/x-openzim">
+ <comment>OpenZIM file</comment>
+ <comment xml:lang="zh_CN">OpenZIM 文件</comment>
+ <comment xml:lang="uk">файл OpenZIM</comment>
+ <comment xml:lang="tr">OpenZIM dosyası</comment>
+ <comment xml:lang="sv">OpenZIM-fil</comment>
+ <comment xml:lang="sl">Datoteka OpenZIM</comment>
+ <comment xml:lang="si">OpenZIM ගොනුව</comment>
+ <comment xml:lang="ru">Файл OpenZIM</comment>
+ <comment xml:lang="pt_BR">Arquivo OpenZIM</comment>
+ <comment xml:lang="pl">Plik OpenZIM</comment>
+ <comment xml:lang="oc">fichièr OpenZIM</comment>
+ <comment xml:lang="nl">OpenZIM-bestand</comment>
+ <comment xml:lang="ko">OpenZIM 파일</comment>
+ <comment xml:lang="kk">OpenZIM файлы</comment>
+ <comment xml:lang="ja">OpenZIM ファイル</comment>
+ <comment xml:lang="it">File OpenZIM</comment>
+ <comment xml:lang="hr">OpenZIM datoteka</comment>
+ <comment xml:lang="fi">OpenZIM-tiedosto</comment>
+ <comment xml:lang="eu">OpenZIM fitxategia</comment>
+ <comment xml:lang="es">archivo OpenZIM</comment>
+ <comment xml:lang="en_GB">OpenZIM file</comment>
+ <comment xml:lang="de">OpenZIM-Datei</comment>
+ <comment xml:lang="be">файл OpenZIM</comment>
+ <comment xml:lang="ar">ملف OpenZIM </comment>
+ <acronym>ZIM</acronym>
+ <expanded-acronym>Zeno IMproved</expanded-acronym>
+ <glob pattern="*.zim"/>
+ <magic>
+ <match type="string" value="\x5a\x49\x4d\x04" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/sparql-query">
+ <comment>SPARQL query</comment>
+ <comment xml:lang="zh_CN">SPARQL 查询</comment>
+ <comment xml:lang="uk">запит SPARQL</comment>
+ <comment xml:lang="tr">SPARQL sorgusu</comment>
+ <comment xml:lang="sv">SPARQL-fråga</comment>
+ <comment xml:lang="sl">Poizvedba SPARQL</comment>
+ <comment xml:lang="si">SPARQL විමසුම</comment>
+ <comment xml:lang="ru">Запрос SPARQL</comment>
+ <comment xml:lang="pl">Zapytanie SPARQL</comment>
+ <comment xml:lang="nl">SPARQL-zoekopdracht</comment>
+ <comment xml:lang="ko">SPARQL 질의문</comment>
+ <comment xml:lang="kk">SPARQL сұранымы</comment>
+ <comment xml:lang="ka">SPARQL მოთხოვნა</comment>
+ <comment xml:lang="ja">SPARQL クエリー</comment>
+ <comment xml:lang="it">Ricerca SPARQL</comment>
+ <comment xml:lang="hr">SPARQL zahtjev</comment>
+ <comment xml:lang="he">שאילתת SPARQL</comment>
+ <comment xml:lang="fi">SPARQL-kysely</comment>
+ <comment xml:lang="eu">SPARQL kontsulta</comment>
+ <comment xml:lang="es">consulta SPARQL</comment>
+ <comment xml:lang="en_GB">SPARQL query</comment>
+ <comment xml:lang="de">SPARQL-Abfrage</comment>
+ <comment xml:lang="be">запыт SPARQL</comment>
+ <comment xml:lang="ar">استعلام SPARQL</comment>
+ <acronym>SPARQL</acronym>
+ <expanded-acronym>SPARQL Protocol and RDF Query Language</expanded-acronym>
+ <glob pattern="*.qs"/>
+ <magic priority="40">
+ <match type="string" value="PREFIX" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/sparql-results+xml">
+ <comment>SPARQL query results</comment>
+ <comment xml:lang="zh_CN">SPARQL 查询结果</comment>
+ <comment xml:lang="uk">результати запиту SPARQL</comment>
+ <comment xml:lang="tr">SPARQL sorgu sonuçları</comment>
+ <comment xml:lang="sv">SPARQL-frågeresultat</comment>
+ <comment xml:lang="sl">Rezultati poizvedbe SPARQL</comment>
+ <comment xml:lang="si">SPARQL විමසුම් ප්රතිඵල</comment>
+ <comment xml:lang="ru">Результаты запроса SPARQL</comment>
+ <comment xml:lang="pl">Wyniki zapytania SPARQL</comment>
+ <comment xml:lang="nl">SPARQL-zoekopdrachtresultaten</comment>
+ <comment xml:lang="ko">SPARQL 질의문 결과</comment>
+ <comment xml:lang="kk">SPARQL сұраным нәтижелері</comment>
+ <comment xml:lang="ja">SPARQL クエリーの結果</comment>
+ <comment xml:lang="it">Risultati ricerca SPARQL</comment>
+ <comment xml:lang="hr">Rezultati SPARQL zahtjeva</comment>
+ <comment xml:lang="he">תוצאות שאילתת SPARQL</comment>
+ <comment xml:lang="fi">SPARQL-kyselyn tulokset</comment>
+ <comment xml:lang="eu">SPARQL kontsultaren emaitzak</comment>
+ <comment xml:lang="es">resultados de consulta SPARQL</comment>
+ <comment xml:lang="en_GB">SPARQL query results</comment>
+ <comment xml:lang="de">SPARQL-Abfrageergebnisse</comment>
+ <comment xml:lang="be">вынікі запыту SPARQL</comment>
+ <comment xml:lang="ar">نتائج استعلام SPARQL</comment>
+ <acronym>SPARQL</acronym>
+ <expanded-acronym>SPARQL Protocol and RDF Query Language</expanded-acronym>
+ <sub-class-of type="application/xml"/>
+ <root-XML namespaceURI="http://www.w3.org/2005/sparql-results#" localName="sparql"/>
+ <glob pattern="*.srx"/>
+ </mime-type>
+ <mime-type type="application/wasm">
+ <comment>WASM binary module</comment>
+ <comment xml:lang="uk">двійковий модуль WASM</comment>
+ <comment xml:lang="sv">WASM-binärmodul</comment>
+ <comment xml:lang="ru">Двоичный модуль WASM</comment>
+ <comment xml:lang="pl">Moduł binarny WASM</comment>
+ <comment xml:lang="es">módulo binario de WASM</comment>
+ <comment xml:lang="de">WASM-Binärmodul</comment>
+ <acronym>WASM</acronym>
+ <expanded-acronym>Web Assembly</expanded-acronym>
+ <glob pattern="*.wasm"/>
+ <magic>
+ <match type="string" value="\000asm" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/x-openvpn-profile">
+ <comment>OpenVPN profile</comment>
+ <comment xml:lang="uk">профіль OpenVPN</comment>
+ <comment xml:lang="sv">OpenVPN-profil</comment>
+ <comment xml:lang="ru">Профиль OpenVPN</comment>
+ <comment xml:lang="pl">Profil OpenVPN</comment>
+ <comment xml:lang="it">Profilo OpenVPN</comment>
+ <comment xml:lang="es">perfil OpenVPN</comment>
+ <comment xml:lang="de">OpenVPN-Profil</comment>
+ <comment xml:lang="be">профіль OpenVPN</comment>
+ <sub-class-of type="text/plain"/>
+ <generic-icon name="text-x-generic"/>
+ <glob pattern="*.openvpn"/>
+ <glob pattern="*.ovpn"/>
+ </mime-type>
+ <mime-type type="application/x-modrinth-modpack+zip">
+ <comment>Modrinth Modpack</comment>
+ <comment xml:lang="uk">модпак Modrinth</comment>
+ <comment xml:lang="sv">Modrinth-moddpack</comment>
+ <comment xml:lang="ru">Модификационный пакет Modrinth</comment>
+ <comment xml:lang="pl">Pakiet modów Modrinth</comment>
+ <comment xml:lang="it">Modpack Modrinth</comment>
+ <comment xml:lang="es">paquete de modificaciones de Modrinth</comment>
+ <comment xml:lang="de">Modrinth-Modpack</comment>
+ <sub-class-of type="application/zip"/>
+ <generic-icon name="package-x-generic"/>
+ <glob pattern="*.mrpack"/>
+ </mime-type>
+ <mime-type type="application/cbor">
+ <comment>CBOR Data</comment>
+ <comment xml:lang="zh_TW">CBOR 資料</comment>
+ <comment xml:lang="uk">дані CBOR</comment>
+ <comment xml:lang="sv">CBOR-data</comment>
+ <comment xml:lang="ru">Данные CBOR</comment>
+ <comment xml:lang="pl">Dane CBOR</comment>
+ <comment xml:lang="it">Dati CBOR</comment>
+ <comment xml:lang="es">datos CBOR</comment>
+ <comment xml:lang="de">CBOR-Daten</comment>
+ <comment xml:lang="be">даныя CBOR</comment>
+ <acronym>CBOR</acronym>
+ <expanded-acronym>Concise Binary Object Representation</expanded-acronym>
+ <glob pattern="*.cbor"/>
+ </mime-type>
+ <mime-type type="application/x-eris-link+cbor">
+ <comment>ERIS Link</comment>
+ <comment xml:lang="uk">посилання ERIS</comment>
+ <comment xml:lang="sv">ERIS-länk</comment>
+ <comment xml:lang="ru">Ссылка ERIS</comment>
+ <comment xml:lang="pl">Dowiązanie ERIS</comment>
+ <comment xml:lang="it">Collegamento ERIS</comment>
+ <comment xml:lang="es">enlace ERIS</comment>
+ <comment xml:lang="de">ERIS-Verweis</comment>
+ <comment xml:lang="be">спасылка ERIS</comment>
+ <acronym>ERIS</acronym>
+ <expanded-acronym>Encoding for Robust Immutable Storage</expanded-acronym>
+ <sub-class-of type="application/cbor"/>
+ <glob pattern="*.eris"/>
+ <magic priority="90">
+ <match type="string" value="\xD9\xD9\xF7\x84\xD9\x01\x14\x58\x42" offset="0"/>
+ </magic>
+ </mime-type>
+ <mime-type type="application/vnd.gerber">
+ <comment>Gerber file</comment>
+ <comment xml:lang="uk">файл Gerber</comment>
+ <comment xml:lang="sv">Gerber-fil</comment>
+ <comment xml:lang="ru">Файл Gerber</comment>
+ <comment xml:lang="pl">Plik Gerber</comment>
+ <comment xml:lang="it">File Gerber</comment>
+ <comment xml:lang="es">archivo de Gerber</comment>
+ <comment xml:lang="de">Gerber-Datei</comment>
+ <comment xml:lang="be">файл Gerber</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.gbr"/>
+ <!--Try to match with some common opening commands-->
+ <magic>
+ <!--A comment line-->
+ <match type="string" value="G04 " offset="0"/>
+ <!--Some setup macros-->
+ <match type="string" value="%FSLA" offset="0"/>
+ <match type="string" value="%MO" offset="0"/>
+ <match type="string" value="%TF." offset="0"/>
+ <!--Seems to be common with files exported from some programs-->
+ <match type="string" value="G75*" offset="0"/>
+ </magic>
+ <generic-icon name="text-x-generic"/>
+ <!--Already being used as the MIME identifier by some programs-->
+ <alias type="application/x-gerber"/>
+ </mime-type>
+ <mime-type type="application/x-gerber-job">
+ <comment>Gerber job file</comment>
+ <comment xml:lang="uk">файл завдання Gerber</comment>
+ <comment xml:lang="sv">Gerber-jobbfil</comment>
+ <comment xml:lang="ru">Файл работ Gerber</comment>
+ <comment xml:lang="pl">Plik zadania Gerber</comment>
+ <comment xml:lang="it">File lavoro Gerber</comment>
+ <comment xml:lang="es">archivo de tarea de Gerber</comment>
+ <comment xml:lang="de">Gerber-Aufgabendatei</comment>
+ <comment xml:lang="be">працоўны файл Gerber</comment>
+ <sub-class-of type="application/json"/>
+ <glob pattern="*.gbrjob"/>
+ <generic-icon name="text-x-generic"/>
+ </mime-type>
+ <mime-type type="application/x-excellon">
+ <comment>Excellon drill file</comment>
+ <comment xml:lang="uk">файл drill Excellon</comment>
+ <comment xml:lang="sv">Excellon-borrfil</comment>
+ <comment xml:lang="ru">Файл Excellon drill</comment>
+ <comment xml:lang="pl">Plik wiercenia Excellon</comment>
+ <comment xml:lang="es">archivo de perforación de Excellon</comment>
+ <comment xml:lang="de">Excellon-Bohrdatei</comment>
+ <sub-class-of type="text/plain"/>
+ <glob pattern="*.drl"/>
+ <magic>
+ <!--This is always the header for an excellon drill file-->
+ <match type="string" value="M48\n" offset="0"/>
+ </magic>
+ <generic-icon name="text-x-generic"/>
+ </mime-type>
+ <mime-type type="application/x-tiled-tmx">
+ <comment>Tiled map files</comment>
+ <comment xml:lang="uk">файли мозаїчної карти</comment>
+ <comment xml:lang="sv">Tiled-kartfiler</comment>
+ <comment xml:lang="ru">Файлы карты Tiled</comment>
+ <comment xml:lang="pl">Pliki map Tiled</comment>
+ <comment xml:lang="es">archivos de mapa en mosaico</comment>
+ <comment xml:lang="de">Tiled-Kartendatei</comment>
+ <sub-class-of type="application/xml"/>
+ <glob pattern="*.tmx"/>
+ </mime-type>
+ <mime-type type="application/x-tiled-tsx">
+ <comment>Tiled tileset files</comment>
+ <comment xml:lang="uk">файл набору плиток мозаїки</comment>
+ <comment xml:lang="sv">Tiled-kartrutuppsättningsfiler</comment>
+ <comment xml:lang="ru">Файлы наборов плиток Tiled</comment>
+ <comment xml:lang="pl">Pliki zestawów kafli Tiled</comment>
+ <comment xml:lang="de">Tiled-Kartensetdatei</comment>
+ <sub-class-of type="application/xml"/>
+ <glob pattern="*.tsx"/>
</mime-type>
-
</mime-info>
diff --git a/src/corelib/mimetypes/mimetypes.pri b/src/corelib/mimetypes/mimetypes.pri
deleted file mode 100644
index 288ccf063e..0000000000
--- a/src/corelib/mimetypes/mimetypes.pri
+++ /dev/null
@@ -1,55 +0,0 @@
-# Qt core mimetype module
-
-qtConfig(mimetype) {
- HEADERS += \
- mimetypes/qmimedatabase.h \
- mimetypes/qmimetype.h \
- mimetypes/qmimemagicrulematcher_p.h \
- mimetypes/qmimetype_p.h \
- mimetypes/qmimetypeparser_p.h \
- mimetypes/qmimedatabase_p.h \
- mimetypes/qmimemagicrule_p.h \
- mimetypes/qmimeglobpattern_p.h \
- mimetypes/qmimeprovider_p.h
-
- SOURCES += \
- mimetypes/qmimedatabase.cpp \
- mimetypes/qmimetype.cpp \
- mimetypes/qmimemagicrulematcher.cpp \
- mimetypes/qmimetypeparser.cpp \
- mimetypes/qmimemagicrule.cpp \
- mimetypes/qmimeglobpattern.cpp \
- mimetypes/qmimeprovider.cpp
-
- MIME_DATABASE = mimetypes/mime/packages/freedesktop.org.xml
- OTHER_FILES += $$MIME_DATABASE
-
- qtConfig(mimetype-database) {
- outpath = .rcc
- android {
- outpath = $$outpath/$${QT_ARCH}
- }
- debug_and_release {
- CONFIG(debug, debug|release): outpath = $$outpath/debug
- else: outpath = $$outpath/release
- }
-
- mimedb.depends = $$PWD/mime/generate.pl
- equals(MAKEFILE_GENERATOR, MSVC.NET)|equals(MAKEFILE_GENERATOR, MSBUILD)|isEmpty(QMAKE_SH) {
- mimedb.commands = cmd /c $$shell_path($$PWD/mime/generate.bat)
- mimedb.depends += $$PWD/mime/generate.bat $$PWD/mime/hexdump.ps1
- } else {
- mimedb.commands = perl $${mimedb.depends}
- }
-
- qtConfig(zstd): mimedb.commands += --zstd
- mimedb.commands += ${QMAKE_FILE_IN} > ${QMAKE_FILE_OUT}
-
- mimedb.output = $$outpath/qmimeprovider_database.cpp
- mimedb.input = MIME_DATABASE
- mimedb.variable_out = INCLUDED_SOURCES
- QMAKE_EXTRA_COMPILERS += mimedb
- INCLUDEPATH += $$outpath
- unset(outpath)
- }
-}
diff --git a/src/corelib/mimetypes/mimetypes.qrc b/src/corelib/mimetypes/mimetypes.qrc
deleted file mode 100644
index 4720bd302a..0000000000
--- a/src/corelib/mimetypes/mimetypes.qrc
+++ /dev/null
@@ -1,5 +0,0 @@
-<RCC>
- <qresource prefix="/qt-project.org/qmime/packages">
- <file alias="freedesktop.org.xml" compression-algorithm="best">mime/packages/freedesktop.org.xml</file>
- </qresource>
-</RCC>
diff --git a/src/corelib/mimetypes/mimetypes_resources.cmake b/src/corelib/mimetypes/mimetypes_resources.cmake
index a91d25cc2c..00fa4f5271 100644
--- a/src/corelib/mimetypes/mimetypes_resources.cmake
+++ b/src/corelib/mimetypes/mimetypes_resources.cmake
@@ -1,6 +1,9 @@
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: BSD-3-Clause
+
# List of files that need to be packaged as resources.
# This file exists solely because of unit tests that need access to this
-# information as well. This was previosly handled by referrencing a qrc
+# information as well. This was previously handled by referencing a qrc
# file with the same information
set(corelib_mimetypes_resource_file
@@ -12,7 +15,7 @@ function(corelib_add_mimetypes_resources target)
set_source_files_properties("${source_file}"
PROPERTIES QT_RESOURCE_ALIAS "freedesktop.org.xml"
)
- qt_add_resource(${target} "mimetypes"
+ qt_internal_add_resource(${target} "mimetypes"
PREFIX
"/qt-project.org/qmime/packages"
FILES
diff --git a/src/corelib/mimetypes/qmimedatabase.cpp b/src/corelib/mimetypes/qmimedatabase.cpp
index 56f5d471ea..d52ccacbe7 100644
--- a/src/corelib/mimetypes/qmimedatabase.cpp
+++ b/src/corelib/mimetypes/qmimedatabase.cpp
@@ -1,42 +1,6 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include <qplatformdefs.h> // always first
@@ -46,6 +10,9 @@
#include "qmimeprovider_p.h"
#include "qmimetype_p.h"
+#include <private/qduplicatetracker_p.h>
+#include <private/qfilesystementry_p.h>
+
#include <QtCore/QFile>
#include <QtCore/QFileInfo>
#include <QtCore/QStandardPaths>
@@ -59,6 +26,17 @@
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+
+static QString directoryMimeType()
+{
+ return QStringLiteral("inode/directory");
+}
+static QString plainTextMimeType()
+{
+ return QStringLiteral("text/plain");
+}
+
Q_GLOBAL_STATIC(QMimeDatabasePrivate, staticQMimeDatabase)
QMimeDatabasePrivate *QMimeDatabasePrivate::instance()
@@ -67,7 +45,7 @@ QMimeDatabasePrivate *QMimeDatabasePrivate::instance()
}
QMimeDatabasePrivate::QMimeDatabasePrivate()
- : m_defaultMimeType(QLatin1String("application/octet-stream"))
+ : m_defaultMimeType(QStringLiteral("application/octet-stream"))
{
}
@@ -75,6 +53,7 @@ QMimeDatabasePrivate::~QMimeDatabasePrivate()
{
}
+Q_CONSTINIT
#ifdef QT_BUILD_INTERNAL
Q_CORE_EXPORT
#else
@@ -90,16 +69,21 @@ bool QMimeDatabasePrivate::shouldCheck()
return true;
}
-#if defined(Q_OS_UNIX) && !defined(Q_OS_NACL) && !defined(Q_OS_INTEGRITY)
+static QStringList locateMimeDirectories()
+{
+ return QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("mime"), QStandardPaths::LocateDirectory);
+}
+
+#if defined(Q_OS_UNIX) && !defined(Q_OS_INTEGRITY)
# define QT_USE_MMAP
#endif
void QMimeDatabasePrivate::loadProviders()
{
// We use QStandardPaths every time to check if new files appeared
- const QStringList mimeDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QLatin1String("mime"), QStandardPaths::LocateDirectory);
+ const QStringList mimeDirs = locateMimeDirectories();
const auto fdoIterator = std::find_if(mimeDirs.constBegin(), mimeDirs.constEnd(), [](const QString &mimeDir) -> bool {
- return QFileInfo::exists(mimeDir + QStringLiteral("/packages/freedesktop.org.xml")); }
+ return QFileInfo::exists(mimeDir + "/packages/freedesktop.org.xml"_L1); }
);
const bool needInternalDB = QMimeXMLProvider::InternalDatabaseAvailable && fdoIterator == mimeDirs.constEnd();
//qDebug() << "mime dirs:" << mimeDirs;
@@ -110,8 +94,7 @@ void QMimeDatabasePrivate::loadProviders()
m_providers.reserve(mimeDirs.size() + (needInternalDB ? 1 : 0));
for (const QString &mimeDir : mimeDirs) {
- const QString cacheFile = mimeDir + QStringLiteral("/mime.cache");
- QFileInfo fileInfo(cacheFile);
+ const QString cacheFile = mimeDir + "/mime.cache"_L1;
// Check if we already have a provider for this dir
const auto predicate = [mimeDir](const std::unique_ptr<QMimeProviderBase> &prov)
{
@@ -121,7 +104,7 @@ void QMimeDatabasePrivate::loadProviders()
if (it == currentProviders.end()) {
std::unique_ptr<QMimeProviderBase> provider;
#if defined(QT_USE_MMAP)
- if (qEnvironmentVariableIsEmpty("QT_NO_MIME_CACHE") && fileInfo.exists()) {
+ if (qEnvironmentVariableIsEmpty("QT_NO_MIME_CACHE") && QFileInfo::exists(cacheFile)) {
provider.reset(new QMimeBinaryProvider(this, mimeDir));
//qDebug() << "Created binary provider for" << mimeDir;
if (!provider->isValid()) {
@@ -159,6 +142,13 @@ void QMimeDatabasePrivate::loadProviders()
m_providers.push_back(std::move(*it));
}
}
+
+ auto it = m_providers.begin();
+ (*it)->setOverrideProvider(nullptr);
+ ++it;
+ const auto end = m_providers.end();
+ for (; it != end; ++it)
+ (*it)->setOverrideProvider((it - 1)->get());
}
const QMimeDatabasePrivate::Providers &QMimeDatabasePrivate::providers()
@@ -194,20 +184,18 @@ QMimeType QMimeDatabasePrivate::mimeTypeForName(const QString &nameOrAlias)
{
const QString mimeName = resolveAlias(nameOrAlias);
for (const auto &provider : providers()) {
- const QMimeType mime = provider->mimeTypeForName(mimeName);
- if (mime.isValid())
- return mime;
+ if (provider->knowsMimeType(mimeName))
+ return QMimeType(QMimeTypePrivate(mimeName));
}
return {};
}
QStringList QMimeDatabasePrivate::mimeTypeForFileName(const QString &fileName)
{
- if (fileName.endsWith(QLatin1Char('/')))
- return QStringList() << QLatin1String("inode/directory");
+ if (fileName.endsWith(u'/'))
+ return { directoryMimeType() };
- const QString shortName = QFileInfo(fileName).fileName();
- const QMimeGlobMatchResult result = findByFileName(shortName);
+ const QMimeGlobMatchResult result = findByFileName(fileName);
QStringList matchingMimeTypes = result.m_matchingMimeTypes;
matchingMimeTypes.sort(); // make it deterministic
return matchingMimeTypes;
@@ -216,60 +204,74 @@ QStringList QMimeDatabasePrivate::mimeTypeForFileName(const QString &fileName)
QMimeGlobMatchResult QMimeDatabasePrivate::findByFileName(const QString &fileName)
{
QMimeGlobMatchResult result;
+ const QString fileNameExcludingPath = QFileSystemEntry(fileName).fileName();
for (const auto &provider : providers())
- provider->addFileNameMatches(fileName, result);
+ provider->addFileNameMatches(fileNameExcludingPath, result);
return result;
}
-void QMimeDatabasePrivate::loadMimeTypePrivate(QMimeTypePrivate &mimePrivate)
+QMimeTypePrivate::LocaleHash QMimeDatabasePrivate::localeComments(const QString &name)
{
QMutexLocker locker(&mutex);
- if (mimePrivate.name.isEmpty())
- return; // invalid mimetype
- if (!mimePrivate.loaded) { // XML provider sets loaded=true, binary provider does this on demand
- Q_ASSERT(mimePrivate.fromCache);
- QMimeBinaryProvider::loadMimeTypePrivate(mimePrivate);
+ for (const auto &provider : providers()) {
+ auto comments = provider->localeComments(name);
+ if (!comments.isEmpty())
+ return comments; // maybe we want to merge in comments from more global providers, in
+ // case of more translations?
}
+ return {};
}
-void QMimeDatabasePrivate::loadGenericIcon(QMimeTypePrivate &mimePrivate)
+QStringList QMimeDatabasePrivate::globPatterns(const QString &name)
{
QMutexLocker locker(&mutex);
- if (mimePrivate.fromCache) {
- mimePrivate.genericIconName.clear();
- for (const auto &provider : providers()) {
- provider->loadGenericIcon(mimePrivate);
- if (!mimePrivate.genericIconName.isEmpty())
- break;
- }
+ QStringList patterns;
+ const auto &providerList = providers();
+ // reverse iteration because we start from most global, add up, clear if delete-all, and add up
+ // again.
+ for (auto rit = providerList.rbegin(); rit != providerList.rend(); ++rit) {
+ auto *provider = rit->get();
+ if (provider->hasGlobDeleteAll(name))
+ patterns.clear();
+ patterns += provider->globPatterns(name);
}
+ return patterns;
}
-void QMimeDatabasePrivate::loadIcon(QMimeTypePrivate &mimePrivate)
+QString QMimeDatabasePrivate::genericIcon(const QString &name)
{
QMutexLocker locker(&mutex);
- if (mimePrivate.fromCache) {
- mimePrivate.iconName.clear();
- for (const auto &provider : providers()) {
- provider->loadIcon(mimePrivate);
- if (!mimePrivate.iconName.isEmpty())
- break;
- }
+ for (const auto &provider : providers()) {
+ QString genericIconName = provider->genericIcon(name);
+ if (!genericIconName.isEmpty())
+ return genericIconName;
}
+ return {};
+}
+
+QString QMimeDatabasePrivate::icon(const QString &name)
+{
+ QMutexLocker locker(&mutex);
+ for (const auto &provider : providers()) {
+ QString iconName = provider->icon(name);
+ if (!iconName.isEmpty())
+ return iconName;
+ }
+ return {};
}
-static QString fallbackParent(const QString &mimeTypeName)
+QString QMimeDatabasePrivate::fallbackParent(const QString &mimeTypeName) const
{
- const QStringView myGroup = QStringView{mimeTypeName}.left(mimeTypeName.indexOf(QLatin1Char('/')));
+ const QStringView myGroup = QStringView{mimeTypeName}.left(mimeTypeName.indexOf(u'/'));
// All text/* types are subclasses of text/plain.
- if (myGroup == QLatin1String("text") && mimeTypeName != QLatin1String("text/plain"))
- return QLatin1String("text/plain");
+ if (myGroup == "text"_L1 && mimeTypeName != plainTextMimeType())
+ return plainTextMimeType();
// All real-file mimetypes implicitly derive from application/octet-stream
- if (myGroup != QLatin1String("inode") &&
+ if (myGroup != "inode"_L1 &&
// ignore non-file extensions
- myGroup != QLatin1String("all") && myGroup != QLatin1String("fonts") && myGroup != QLatin1String("print") && myGroup != QLatin1String("uri")
- && mimeTypeName != QLatin1String("application/octet-stream")) {
- return QLatin1String("application/octet-stream");
+ myGroup != "all"_L1 && myGroup != "fonts"_L1 && myGroup != "print"_L1 && myGroup != "uri"_L1
+ && mimeTypeName != defaultMimeType()) {
+ return defaultMimeType();
}
return QString();
}
@@ -321,7 +323,7 @@ static inline bool isTextFile(const QByteArray &data)
const char *p = data.constData();
const char *e = p + qMin(128, data.size());
for ( ; p < e; ++p) {
- if ((unsigned char)(*p) < 32 && *p != 9 && *p !=10 && *p != 13)
+ if (static_cast<unsigned char>(*p) < 32 && *p != 9 && *p !=10 && *p != 13)
return false;
}
@@ -332,42 +334,37 @@ QMimeType QMimeDatabasePrivate::findByData(const QByteArray &data, int *accuracy
{
if (data.isEmpty()) {
*accuracyPtr = 100;
- return mimeTypeForName(QLatin1String("application/x-zerosize"));
+ return mimeTypeForName(QStringLiteral("application/x-zerosize"));
}
- *accuracyPtr = 0;
- QMimeType candidate;
+ QMimeMagicResult result;
for (const auto &provider : providers())
- provider->findByMagic(data, accuracyPtr, candidate);
+ provider->findByMagic(data, result);
- if (candidate.isValid())
- return candidate;
+ if (result.isValid()) {
+ *accuracyPtr = result.accuracy;
+ return QMimeType(QMimeTypePrivate(result.candidate));
+ }
if (isTextFile(data)) {
*accuracyPtr = 5;
- return mimeTypeForName(QLatin1String("text/plain"));
+ return mimeTypeForName(plainTextMimeType());
}
return mimeTypeForName(defaultMimeType());
}
-QMimeType QMimeDatabasePrivate::mimeTypeForFileNameAndData(const QString &fileName, QIODevice *device, int *accuracyPtr)
+QMimeType QMimeDatabasePrivate::mimeTypeForFileNameAndData(const QString &fileName, QIODevice *device)
{
// First, glob patterns are evaluated. If there is a match with max weight,
// this one is selected and we are done. Otherwise, the file contents are
// evaluated and the match with the highest value (either a magic priority or
// a glob pattern weight) is selected. Matching starts from max level (most
// specific) in both cases, even when there is already a suffix matching candidate.
- *accuracyPtr = 0;
// Pass 1) Try to match on the file name
- QMimeGlobMatchResult candidatesByName;
- if (fileName.endsWith(QLatin1Char('/')))
- candidatesByName.addMatch(QLatin1String("inode/directory"), 100, QString());
- else
- candidatesByName = findByFileName(QFileInfo(fileName).fileName());
- if (candidatesByName.m_allMatchingMimeTypes.count() == 1) {
- *accuracyPtr = 100;
+ QMimeGlobMatchResult candidatesByName = findByFileName(fileName);
+ if (candidatesByName.m_allMatchingMimeTypes.size() == 1) {
const QMimeType mime = mimeTypeForName(candidatesByName.m_matchingMimeTypes.at(0));
if (mime.isValid())
return mime;
@@ -376,44 +373,123 @@ QMimeType QMimeDatabasePrivate::mimeTypeForFileNameAndData(const QString &fileNa
// Extension is unknown, or matches multiple mimetypes.
// Pass 2) Match on content, if we can read the data
- if (device->isOpen()) {
+ const auto matchOnContent = [this, &candidatesByName](QIODevice *device) {
+ const bool openedByUs = !device->isOpen() && device->open(QIODevice::ReadOnly);
+ if (device->isOpen()) {
+ // Read 16K in one go (QIODEVICE_BUFFERSIZE in qiodevice_p.h).
+ // This is much faster than seeking back and forth into QIODevice.
+ const QByteArray data = device->peek(16384);
+
+ if (openedByUs)
+ device->close();
+
+ int magicAccuracy = 0;
+ QMimeType candidateByData(findByData(data, &magicAccuracy));
+
+ // Disambiguate conflicting extensions (if magic matching found something)
+ if (candidateByData.isValid() && magicAccuracy > 0) {
+ const QString sniffedMime = candidateByData.name();
+ // If the sniffedMime matches a highest-weight glob match, use it
+ if (candidatesByName.m_matchingMimeTypes.contains(sniffedMime)) {
+ return candidateByData;
+ }
+ for (const QString &m : std::as_const(candidatesByName.m_allMatchingMimeTypes)) {
+ if (inherits(m, sniffedMime)) {
+ // We have magic + pattern pointing to this, so it's a pretty good match
+ return mimeTypeForName(m);
+ }
+ }
+ if (candidatesByName.m_allMatchingMimeTypes.isEmpty()) {
+ // No glob, use magic
+ return candidateByData;
+ }
+ }
+ }
+
+ if (candidatesByName.m_allMatchingMimeTypes.size() > 1) {
+ candidatesByName.m_matchingMimeTypes.sort(); // make it deterministic
+ const QMimeType mime = mimeTypeForName(candidatesByName.m_matchingMimeTypes.at(0));
+ if (mime.isValid())
+ return mime;
+ }
+ return mimeTypeForName(defaultMimeType());
+ };
+
+ if (device)
+ return matchOnContent(device);
+
+ QFile fallbackFile(fileName);
+ return matchOnContent(&fallbackFile);
+}
+
+QMimeType QMimeDatabasePrivate::mimeTypeForFileExtension(const QString &fileName)
+{
+ const QStringList matches = mimeTypeForFileName(fileName);
+ if (matches.isEmpty()) {
+ return mimeTypeForName(defaultMimeType());
+ } else {
+ // We have to pick one in case of multiple matches.
+ return mimeTypeForName(matches.first());
+ }
+}
+
+QMimeType QMimeDatabasePrivate::mimeTypeForData(QIODevice *device)
+{
+ int accuracy = 0;
+ const bool openedByUs = !device->isOpen() && device->open(QIODevice::ReadOnly);
+ if (device->isOpen()) {
// Read 16K in one go (QIODEVICE_BUFFERSIZE in qiodevice_p.h).
// This is much faster than seeking back and forth into QIODevice.
const QByteArray data = device->peek(16384);
+ QMimeType result = findByData(data, &accuracy);
+ if (openedByUs)
+ device->close();
+ return result;
+ }
+ return mimeTypeForName(defaultMimeType());
+}
- int magicAccuracy = 0;
- QMimeType candidateByData(findByData(data, &magicAccuracy));
-
- // Disambiguate conflicting extensions (if magic matching found something)
- if (candidateByData.isValid() && magicAccuracy > 0) {
- const QString sniffedMime = candidateByData.name();
- // If the sniffedMime matches a glob match, use it
- if (candidatesByName.m_matchingMimeTypes.contains(sniffedMime)) {
- *accuracyPtr = 100;
- return candidateByData;
- }
- for (const QString &m : qAsConst(candidatesByName.m_matchingMimeTypes)) {
- if (inherits(m, sniffedMime)) {
- // We have magic + pattern pointing to this, so it's a pretty good match
- *accuracyPtr = 100;
- return mimeTypeForName(m);
- }
- }
- *accuracyPtr = magicAccuracy;
- return candidateByData;
+QMimeType QMimeDatabasePrivate::mimeTypeForFile(const QString &fileName,
+ const QFileInfo &fileInfo,
+ QMimeDatabase::MatchMode mode)
+{
+ if (false) {
+#ifdef Q_OS_UNIX
+ } else if (fileInfo.isNativePath()) {
+ // If this is a local file, we'll want to do a stat() ourselves so we can
+ // detect additional inode types. In addition we want to follow symlinks.
+ const QByteArray nativeFilePath = QFile::encodeName(fileName);
+ QT_STATBUF statBuffer;
+ if (QT_STAT(nativeFilePath.constData(), &statBuffer) == 0) {
+ if (S_ISDIR(statBuffer.st_mode))
+ return mimeTypeForName(directoryMimeType());
+ if (S_ISCHR(statBuffer.st_mode))
+ return mimeTypeForName(QStringLiteral("inode/chardevice"));
+ if (S_ISBLK(statBuffer.st_mode))
+ return mimeTypeForName(QStringLiteral("inode/blockdevice"));
+ if (S_ISFIFO(statBuffer.st_mode))
+ return mimeTypeForName(QStringLiteral("inode/fifo"));
+ if (S_ISSOCK(statBuffer.st_mode))
+ return mimeTypeForName(QStringLiteral("inode/socket"));
}
+#endif
+ } else if (fileInfo.isDir()) {
+ return mimeTypeForName(directoryMimeType());
}
- if (candidatesByName.m_allMatchingMimeTypes.count() > 1) {
- candidatesByName.m_matchingMimeTypes.sort(); // make it deterministic
- *accuracyPtr = 20;
- const QMimeType mime = mimeTypeForName(candidatesByName.m_matchingMimeTypes.at(0));
- if (mime.isValid())
- return mime;
+ switch (mode) {
+ case QMimeDatabase::MatchDefault:
+ break;
+ case QMimeDatabase::MatchExtension:
+ return mimeTypeForFileExtension(fileName);
+ case QMimeDatabase::MatchContent: {
+ QFile file(fileName);
+ return mimeTypeForData(&file);
}
-
- return mimeTypeForName(defaultMimeType());
+ }
+ // MatchDefault:
+ return mimeTypeForFileNameAndData(fileName, nullptr);
}
QList<QMimeType> QMimeDatabasePrivate::allMimeTypes()
@@ -427,6 +503,7 @@ QList<QMimeType> QMimeDatabasePrivate::allMimeTypes()
bool QMimeDatabasePrivate::inherits(const QString &mime, const QString &parent)
{
const QString resolvedParent = resolveAlias(parent);
+ QDuplicateTracker<QString> seen;
std::stack<QString, QStringList> toCheck;
toCheck.push(mime);
while (!toCheck.empty()) {
@@ -435,8 +512,11 @@ bool QMimeDatabasePrivate::inherits(const QString &mime, const QString &parent)
const QString mimeName = toCheck.top();
toCheck.pop();
const auto parentList = parents(mimeName);
- for (const QString &par : parentList)
- toCheck.push(resolveAlias(par));
+ for (const QString &par : parentList) {
+ const QString resolvedPar = resolveAlias(par);
+ if (!seen.hasSeen(resolvedPar))
+ toCheck.push(resolvedPar);
+ }
}
return false;
}
@@ -478,7 +558,7 @@ bool QMimeDatabasePrivate::inherits(const QString &mime, const QString &parent)
\snippet code/src_corelib_mimetype_qmimedatabase.cpp 0
- \sa QMimeType, {MIME Type Browser Example}
+ \sa QMimeType, {MIME Type Browser}
*/
/*!
@@ -547,47 +627,7 @@ QMimeType QMimeDatabase::mimeTypeForFile(const QFileInfo &fileInfo, MatchMode mo
{
QMutexLocker locker(&d->mutex);
- if (fileInfo.isDir())
- return d->mimeTypeForName(QLatin1String("inode/directory"));
-
- QFile file(fileInfo.absoluteFilePath());
-
-#ifdef Q_OS_UNIX
- // Cannot access statBuf.st_mode from the filesystem engine, so we have to stat again.
- // In addition we want to follow symlinks.
- const QByteArray nativeFilePath = QFile::encodeName(file.fileName());
- QT_STATBUF statBuffer;
- if (QT_STAT(nativeFilePath.constData(), &statBuffer) == 0) {
- if (S_ISCHR(statBuffer.st_mode))
- return d->mimeTypeForName(QLatin1String("inode/chardevice"));
- if (S_ISBLK(statBuffer.st_mode))
- return d->mimeTypeForName(QLatin1String("inode/blockdevice"));
- if (S_ISFIFO(statBuffer.st_mode))
- return d->mimeTypeForName(QLatin1String("inode/fifo"));
- if (S_ISSOCK(statBuffer.st_mode))
- return d->mimeTypeForName(QLatin1String("inode/socket"));
- }
-#endif
-
- int priority = 0;
- switch (mode) {
- case MatchDefault:
- file.open(QIODevice::ReadOnly); // isOpen() will be tested by method below
- return d->mimeTypeForFileNameAndData(fileInfo.absoluteFilePath(), &file, &priority);
- case MatchExtension:
- locker.unlock();
- return mimeTypeForFile(fileInfo.absoluteFilePath(), mode);
- case MatchContent:
- if (file.open(QIODevice::ReadOnly)) {
- locker.unlock();
- return mimeTypeForData(&file);
- } else {
- return d->mimeTypeForName(d->defaultMimeType());
- }
- default:
- Q_ASSERT(false);
- }
- return d->mimeTypeForName(d->defaultMimeType());
+ return d->mimeTypeForFile(fileInfo.filePath(), fileInfo, mode);
}
/*!
@@ -597,22 +637,13 @@ QMimeType QMimeDatabase::mimeTypeForFile(const QFileInfo &fileInfo, MatchMode mo
*/
QMimeType QMimeDatabase::mimeTypeForFile(const QString &fileName, MatchMode mode) const
{
+ QMutexLocker locker(&d->mutex);
+
if (mode == MatchExtension) {
- QMutexLocker locker(&d->mutex);
- const QStringList matches = d->mimeTypeForFileName(fileName);
- const int matchCount = matches.count();
- if (matchCount == 0) {
- return d->mimeTypeForName(d->defaultMimeType());
- } else if (matchCount == 1) {
- return d->mimeTypeForName(matches.first());
- } else {
- // We have to pick one.
- return d->mimeTypeForName(matches.first());
- }
+ return d->mimeTypeForFileExtension(fileName);
} else {
- // Implemented as a wrapper around mimeTypeForFile(QFileInfo), so no mutex.
QFileInfo fileInfo(fileName);
- return mimeTypeForFile(fileInfo, mode);
+ return d->mimeTypeForFile(fileName, fileInfo, mode);
}
}
@@ -634,7 +665,7 @@ QList<QMimeType> QMimeDatabase::mimeTypesForFileName(const QString &fileName) co
const QStringList matches = d->mimeTypeForFileName(fileName);
QList<QMimeType> mimes;
- mimes.reserve(matches.count());
+ mimes.reserve(matches.size());
for (const QString &mime : matches)
mimes.append(d->mimeTypeForName(mime));
return mimes;
@@ -648,7 +679,7 @@ QList<QMimeType> QMimeDatabase::mimeTypesForFileName(const QString &fileName) co
QString QMimeDatabase::suffixForFileName(const QString &fileName) const
{
QMutexLocker locker(&d->mutex);
- const int suffixLength = d->findByFileName(QFileInfo(fileName).fileName()).m_knownSuffixLength;
+ const qsizetype suffixLength = d->findByFileName(fileName).m_knownSuffixLength;
return fileName.right(suffixLength);
}
@@ -678,18 +709,7 @@ QMimeType QMimeDatabase::mimeTypeForData(QIODevice *device) const
{
QMutexLocker locker(&d->mutex);
- int accuracy = 0;
- const bool openedByUs = !device->isOpen() && device->open(QIODevice::ReadOnly);
- if (device->isOpen()) {
- // Read 16K in one go (QIODEVICE_BUFFERSIZE in qiodevice_p.h).
- // This is much faster than seeking back and forth into QIODevice.
- const QByteArray data = device->peek(16384);
- const QMimeType result = d->findByData(data, &accuracy);
- if (openedByUs)
- device->close();
- return result;
- }
- return d->mimeTypeForName(d->defaultMimeType());
+ return d->mimeTypeForData(device);
}
/*!
@@ -712,7 +732,7 @@ QMimeType QMimeDatabase::mimeTypeForUrl(const QUrl &url) const
return mimeTypeForFile(url.toLocalFile());
const QString scheme = url.scheme();
- if (scheme.startsWith(QLatin1String("http")) || scheme == QLatin1String("mailto"))
+ if (scheme.startsWith("http"_L1) || scheme == "mailto"_L1)
return mimeTypeForName(d->defaultMimeType());
return mimeTypeForFile(url.path(), MatchExtension);
@@ -740,11 +760,11 @@ QMimeType QMimeDatabase::mimeTypeForUrl(const QUrl &url) const
QMimeType QMimeDatabase::mimeTypeForFileNameAndData(const QString &fileName, QIODevice *device) const
{
QMutexLocker locker(&d->mutex);
- int accuracy = 0;
- const bool openedByUs = !device->isOpen() && device->open(QIODevice::ReadOnly);
- const QMimeType result = d->mimeTypeForFileNameAndData(fileName, device, &accuracy);
- if (openedByUs)
- device->close();
+
+ if (fileName.endsWith(u'/'))
+ return d->mimeTypeForName(directoryMimeType());
+
+ const QMimeType result = d->mimeTypeForFileNameAndData(fileName, device);
return result;
}
@@ -767,10 +787,13 @@ QMimeType QMimeDatabase::mimeTypeForFileNameAndData(const QString &fileName, QIO
QMimeType QMimeDatabase::mimeTypeForFileNameAndData(const QString &fileName, const QByteArray &data) const
{
QMutexLocker locker(&d->mutex);
+
+ if (fileName.endsWith(u'/'))
+ return d->mimeTypeForName(directoryMimeType());
+
QBuffer buffer(const_cast<QByteArray *>(&data));
buffer.open(QIODevice::ReadOnly);
- int accuracy = 0;
- return d->mimeTypeForFileNameAndData(fileName, &buffer, &accuracy);
+ return d->mimeTypeForFileNameAndData(fileName, &buffer);
}
/*!
diff --git a/src/corelib/mimetypes/qmimedatabase.h b/src/corelib/mimetypes/qmimedatabase.h
index 9111e5a04c..acf1edff27 100644
--- a/src/corelib/mimetypes/qmimedatabase.h
+++ b/src/corelib/mimetypes/qmimedatabase.h
@@ -1,42 +1,6 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMEDATABASE_H
#define QMIMEDATABASE_H
diff --git a/src/corelib/mimetypes/qmimedatabase_p.h b/src/corelib/mimetypes/qmimedatabase_p.h
index e6af23e7ed..cb28f0b791 100644
--- a/src/corelib/mimetypes/qmimedatabase_p.h
+++ b/src/corelib/mimetypes/qmimedatabase_p.h
@@ -1,42 +1,6 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMEDATABASE_P_H
#define QMIMEDATABASE_P_H
@@ -52,6 +16,7 @@
// We mean it.
//
+#include "qmimedatabase.h"
#include "qmimetype.h"
QT_REQUIRE_CONFIG(mimetype);
@@ -68,6 +33,7 @@ QT_REQUIRE_CONFIG(mimetype);
QT_BEGIN_NAMESPACE
+class QFileInfo;
class QIODevice;
class QMimeDatabase;
class QMimeProviderBase;
@@ -82,7 +48,7 @@ public:
static QMimeDatabasePrivate *instance();
- inline QString defaultMimeType() const { return m_defaultMimeType; }
+ const QString &defaultMimeType() const { return m_defaultMimeType; }
bool inherits(const QString &mime, const QString &parent);
@@ -91,15 +57,19 @@ public:
QString resolveAlias(const QString &nameOrAlias);
QStringList parents(const QString &mimeName);
QMimeType mimeTypeForName(const QString &nameOrAlias);
- QMimeType mimeTypeForFileNameAndData(const QString &fileName, QIODevice *device, int *priorityPtr);
+ QMimeType mimeTypeForFileNameAndData(const QString &fileName, QIODevice *device);
+ QMimeType mimeTypeForFileExtension(const QString &fileName);
+ QMimeType mimeTypeForData(QIODevice *device);
+ QMimeType mimeTypeForFile(const QString &fileName, const QFileInfo &fileInfo, QMimeDatabase::MatchMode mode);
QMimeType findByData(const QByteArray &data, int *priorityPtr);
QStringList mimeTypeForFileName(const QString &fileName);
QMimeGlobMatchResult findByFileName(const QString &fileName);
// API for QMimeType. Takes care of locking the mutex.
- void loadMimeTypePrivate(QMimeTypePrivate &mimePrivate);
- void loadGenericIcon(QMimeTypePrivate &mimePrivate);
- void loadIcon(QMimeTypePrivate &mimePrivate);
+ QMimeTypePrivate::LocaleHash localeComments(const QString &name);
+ QStringList globPatterns(const QString &name);
+ QString genericIcon(const QString &name);
+ QString icon(const QString &name);
QStringList mimeParents(const QString &mimeName);
QStringList listAliases(const QString &mimeName);
bool mimeInherits(const QString &mime, const QString &parent);
@@ -109,12 +79,13 @@ private:
const Providers &providers();
bool shouldCheck();
void loadProviders();
+ QString fallbackParent(const QString &mimeTypeName) const;
- mutable Providers m_providers;
+ const QString m_defaultMimeType;
+ mutable Providers m_providers; // most local first, most global last
QElapsedTimer m_lastCheck;
public:
- const QString m_defaultMimeType;
QMutex mutex;
};
diff --git a/src/corelib/mimetypes/qmimeglobpattern.cpp b/src/corelib/mimetypes/qmimeglobpattern.cpp
index 9264d1a3bb..d50787a0be 100644
--- a/src/corelib/mimetypes/qmimeglobpattern.cpp
+++ b/src/corelib/mimetypes/qmimeglobpattern.cpp
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qmimeglobpattern_p.h"
@@ -47,6 +11,8 @@
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+
/*!
\internal
\class QMimeGlobMatchResult
@@ -56,7 +22,8 @@ QT_BEGIN_NAMESPACE
Handles glob weights, and preferring longer matches over shorter matches.
*/
-void QMimeGlobMatchResult::addMatch(const QString &mimeType, int weight, const QString &pattern, int knownSuffixLength)
+void QMimeGlobMatchResult::addMatch(const QString &mimeType, int weight, const QString &pattern,
+ qsizetype knownSuffixLength)
{
if (m_allMatchingMimeTypes.contains(mimeType))
return;
@@ -68,9 +35,9 @@ void QMimeGlobMatchResult::addMatch(const QString &mimeType, int weight, const Q
bool replace = weight > m_weight;
if (!replace) {
// Compare the length of the match
- if (pattern.length() < m_matchingPatternLength)
+ if (pattern.size() < m_matchingPatternLength)
return; // too short, ignore
- else if (pattern.length() > m_matchingPatternLength) {
+ else if (pattern.size() > m_matchingPatternLength) {
// longer: clear any previous match (like *.bz2, when pattern is *.tar.bz2)
replace = true;
}
@@ -78,16 +45,53 @@ void QMimeGlobMatchResult::addMatch(const QString &mimeType, int weight, const Q
if (replace) {
m_matchingMimeTypes.clear();
// remember the new "longer" length
- m_matchingPatternLength = pattern.length();
+ m_matchingPatternLength = pattern.size();
m_weight = weight;
}
if (!m_matchingMimeTypes.contains(mimeType)) {
m_matchingMimeTypes.append(mimeType);
- m_allMatchingMimeTypes.append(mimeType);
+ if (replace)
+ m_allMatchingMimeTypes.prepend(mimeType); // highest-weight first
+ else
+ m_allMatchingMimeTypes.append(mimeType);
m_knownSuffixLength = knownSuffixLength;
}
}
+QMimeGlobPattern::PatternType QMimeGlobPattern::detectPatternType(QStringView pattern) const
+{
+ const qsizetype patternLength = pattern.size();
+ if (!patternLength)
+ return OtherPattern;
+
+ const qsizetype starCount = pattern.count(u'*');
+ const bool hasSquareBracket = pattern.indexOf(u'[') != -1;
+ const bool hasQuestionMark = pattern.indexOf(u'?') != -1;
+
+ if (!hasSquareBracket && !hasQuestionMark) {
+ if (starCount == 1) {
+ // Patterns like "*~", "*.extension"
+ if (pattern.at(0) == u'*')
+ return SuffixPattern;
+ // Patterns like "README*" (well this is currently the only one like that...)
+ if (pattern.at(patternLength - 1) == u'*')
+ return PrefixPattern;
+ } else if (starCount == 0) {
+ // Names without any wildcards like "README"
+ return LiteralPattern;
+ }
+ }
+
+ if (pattern == "[0-9][0-9][0-9].vdr"_L1)
+ return VdrPattern;
+
+ if (pattern == "*.anim[1-9j]"_L1)
+ return AnimPattern;
+
+ return OtherPattern;
+}
+
+
/*!
\internal
\class QMimeGlobPattern
@@ -97,80 +101,88 @@ void QMimeGlobMatchResult::addMatch(const QString &mimeType, int weight, const Q
\sa QMimeType, QMimeDatabase, QMimeMagicRuleMatcher, QMimeMagicRule
*/
-bool QMimeGlobPattern::matchFileName(const QString &inputFilename) const
+bool QMimeGlobPattern::matchFileName(const QString &inputFileName) const
{
// "Applications MUST match globs case-insensitively, except when the case-sensitive
// attribute is set to true."
// The constructor takes care of putting case-insensitive patterns in lowercase.
- const QString filename = m_caseSensitivity == Qt::CaseInsensitive ? inputFilename.toLower() : inputFilename;
+ const QString fileName = m_caseSensitivity == Qt::CaseInsensitive
+ ? inputFileName.toLower() : inputFileName;
- const int pattern_len = m_pattern.length();
- if (!pattern_len)
+ const qsizetype patternLength = m_pattern.size();
+ if (!patternLength)
return false;
- const int len = filename.length();
-
- const int starCount = m_pattern.count(QLatin1Char('*'));
+ const qsizetype fileNameLength = fileName.size();
- // Patterns like "*~", "*.extension"
- if (m_pattern[0] == QLatin1Char('*') && m_pattern.indexOf(QLatin1Char('[')) == -1 && starCount == 1)
- {
- if (len + 1 < pattern_len) return false;
+ switch (m_patternType) {
+ case SuffixPattern: {
+ if (fileNameLength + 1 < patternLength)
+ return false;
- const QChar *c1 = m_pattern.unicode() + pattern_len - 1;
- const QChar *c2 = filename.unicode() + len - 1;
+ const QChar *c1 = m_pattern.unicode() + patternLength - 1;
+ const QChar *c2 = fileName.unicode() + fileNameLength - 1;
int cnt = 1;
- while (cnt < pattern_len && *c1-- == *c2--)
+ while (cnt < patternLength && *c1-- == *c2--)
++cnt;
- return cnt == pattern_len;
+ return cnt == patternLength;
}
-
- // Patterns like "README*" (well this is currently the only one like that...)
- if (starCount == 1 && m_pattern.at(pattern_len - 1) == QLatin1Char('*')) {
- if (len + 1 < pattern_len) return false;
- if (m_pattern.at(0) == QLatin1Char('*'))
- return filename.indexOf(QStringView{m_pattern}.mid(1, pattern_len - 2)) != -1;
+ case PrefixPattern: {
+ if (fileNameLength + 1 < patternLength)
+ return false;
const QChar *c1 = m_pattern.unicode();
- const QChar *c2 = filename.unicode();
+ const QChar *c2 = fileName.unicode();
int cnt = 1;
- while (cnt < pattern_len && *c1++ == *c2++)
+ while (cnt < patternLength && *c1++ == *c2++)
++cnt;
- return cnt == pattern_len;
+ return cnt == patternLength;
}
-
- // Names without any wildcards like "README"
- if (m_pattern.indexOf(QLatin1Char('[')) == -1 && starCount == 0 && m_pattern.indexOf(QLatin1Char('?')))
- return (m_pattern == filename);
-
- // Other (quite rare) patterns, like "*.anim[1-9j]": use slow but correct method
+ case LiteralPattern:
+ return (m_pattern == fileName);
+ case VdrPattern: // "[0-9][0-9][0-9].vdr" case
+ return fileNameLength == 7
+ && fileName.at(0).isDigit() && fileName.at(1).isDigit() && fileName.at(2).isDigit()
+ && QStringView{fileName}.mid(3, 4) == ".vdr"_L1;
+ case AnimPattern: { // "*.anim[1-9j]" case
+ if (fileNameLength < 6)
+ return false;
+ const QChar lastChar = fileName.at(fileNameLength - 1);
+ const bool lastCharOK = (lastChar.isDigit() && lastChar != u'0')
+ || lastChar == u'j';
+ return lastCharOK && QStringView{fileName}.mid(fileNameLength - 6, 5) == ".anim"_L1;
+ }
+ case OtherPattern:
+ // Other fallback patterns: slow but correct method
#if QT_CONFIG(regularexpression)
- auto rx = QRegularExpression::fromWildcard(m_pattern);
- return rx.match(filename).hasMatch();
+ auto rx = QRegularExpression::fromWildcard(m_pattern);
+ return rx.match(fileName).hasMatch();
#else
- return false;
+ return false;
#endif
+ }
+ return false;
}
-static bool isSimplePattern(const QString &pattern)
+static bool isSimplePattern(QStringView pattern)
{
// starts with "*.", has no other '*'
- return pattern.lastIndexOf(QLatin1Char('*')) == 0
- && pattern.length() > 1
- && pattern.at(1) == QLatin1Char('.') // (other dots are OK, like *.tar.bz2)
+ return pattern.lastIndexOf(u'*') == 0
+ && pattern.size() > 1
+ && pattern.at(1) == u'.' // (other dots are OK, like *.tar.bz2)
// and contains no other special character
- && !pattern.contains(QLatin1Char('?'))
- && !pattern.contains(QLatin1Char('['))
+ && !pattern.contains(u'?')
+ && !pattern.contains(u'[')
;
}
-static bool isFastPattern(const QString &pattern)
+static bool isFastPattern(QStringView pattern)
{
// starts with "*.", has no other '*' and no other '.'
- return pattern.lastIndexOf(QLatin1Char('*')) == 0
- && pattern.lastIndexOf(QLatin1Char('.')) == 1
+ return pattern.lastIndexOf(u'*') == 0
+ && pattern.lastIndexOf(u'.') == 1
// and contains no other special character
- && !pattern.contains(QLatin1Char('?'))
- && !pattern.contains(QLatin1Char('['))
+ && !pattern.contains(u'?')
+ && !pattern.contains(u'[')
;
}
@@ -208,45 +220,45 @@ void QMimeAllGlobPatterns::removeMimeType(const QString &mimeType)
m_lowWeightGlobs.removeMimeType(mimeType);
}
-void QMimeGlobPatternList::match(QMimeGlobMatchResult &result,
- const QString &fileName) const
+void QMimeGlobPatternList::match(QMimeGlobMatchResult &result, const QString &fileName,
+ const AddMatchFilterFunc &filterFunc) const
{
-
- QMimeGlobPatternList::const_iterator it = this->constBegin();
- const QMimeGlobPatternList::const_iterator endIt = this->constEnd();
- for (; it != endIt; ++it) {
- const QMimeGlobPattern &glob = *it;
- if (glob.matchFileName(fileName)) {
+ for (const QMimeGlobPattern &glob : *this) {
+ if (glob.matchFileName(fileName) && filterFunc(glob.mimeType())) {
const QString pattern = glob.pattern();
- const int suffixLen = isSimplePattern(pattern) ? pattern.length() - 2 : 0;
+ const qsizetype suffixLen = isSimplePattern(pattern) ? pattern.size() - strlen("*.") : 0;
result.addMatch(glob.mimeType(), glob.weight(), pattern, suffixLen);
}
}
}
-void QMimeAllGlobPatterns::matchingGlobs(const QString &fileName, QMimeGlobMatchResult &result) const
+void QMimeAllGlobPatterns::matchingGlobs(const QString &fileName, QMimeGlobMatchResult &result,
+ const AddMatchFilterFunc &filterFunc) const
{
// First try the high weight matches (>50), if any.
- m_highWeightGlobs.match(result, fileName);
+ m_highWeightGlobs.match(result, fileName, filterFunc);
// Now use the "fast patterns" dict, for simple *.foo patterns with weight 50
// (which is most of them, so this optimization is definitely worth it)
- const int lastDot = fileName.lastIndexOf(QLatin1Char('.'));
+ const qsizetype lastDot = fileName.lastIndexOf(u'.');
if (lastDot != -1) { // if no '.', skip the extension lookup
- const int ext_len = fileName.length() - lastDot - 1;
+ const qsizetype ext_len = fileName.size() - lastDot - 1;
const QString simpleExtension = fileName.right(ext_len).toLower();
// (toLower because fast patterns are always case-insensitive and saved as lowercase)
const QStringList matchingMimeTypes = m_fastPatterns.value(simpleExtension);
- const QString simplePattern = QLatin1String("*.") + simpleExtension;
- for (const QString &mime : matchingMimeTypes)
- result.addMatch(mime, 50, simplePattern, simpleExtension.size());
+ const QString simplePattern = "*."_L1 + simpleExtension;
+ for (const QString &mime : matchingMimeTypes) {
+ if (filterFunc(mime)) {
+ result.addMatch(mime, 50, simplePattern, simpleExtension.size());
+ }
+ }
// Can't return yet; *.tar.bz2 has to win over *.bz2, so we need the low-weight mimetypes anyway,
// at least those with weight 50.
}
// Finally, try the low weight matches (<=50)
- m_lowWeightGlobs.match(result, fileName);
+ m_lowWeightGlobs.match(result, fileName, filterFunc);
}
void QMimeAllGlobPatterns::clear()
diff --git a/src/corelib/mimetypes/qmimeglobpattern_p.h b/src/corelib/mimetypes/qmimeglobpattern_p.h
index 49f145e8db..b4316355ba 100644
--- a/src/corelib/mimetypes/qmimeglobpattern_p.h
+++ b/src/corelib/mimetypes/qmimeglobpattern_p.h
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMEGLOBPATTERN_P_H
#define QMIMEGLOBPATTERN_P_H
@@ -58,17 +22,20 @@ QT_REQUIRE_CONFIG(mimetype);
#include <QtCore/qstringlist.h>
#include <QtCore/qhash.h>
+#include <algorithm>
+
QT_BEGIN_NAMESPACE
struct QMimeGlobMatchResult
{
- void addMatch(const QString &mimeType, int weight, const QString &pattern, int knownSuffixLength = 0);
+ void addMatch(const QString &mimeType, int weight, const QString &pattern,
+ qsizetype knownSuffixLength = 0);
QStringList m_matchingMimeTypes; // only those with highest weight
QStringList m_allMatchingMimeTypes;
int m_weight = 0;
- int m_matchingPatternLength = 0;
- int m_knownSuffixLength = 0;
+ qsizetype m_matchingPatternLength = 0;
+ qsizetype m_knownSuffixLength = 0;
};
class QMimeGlobPattern
@@ -80,7 +47,10 @@ public:
explicit QMimeGlobPattern(const QString &thePattern, const QString &theMimeType, unsigned theWeight = DefaultWeight, Qt::CaseSensitivity s = Qt::CaseInsensitive) :
m_pattern(s == Qt::CaseInsensitive ? thePattern.toLower() : thePattern),
- m_mimeType(theMimeType), m_weight(theWeight), m_caseSensitivity(s)
+ m_mimeType(theMimeType),
+ m_weight(theWeight),
+ m_caseSensitivity(s),
+ m_patternType(detectPatternType(m_pattern))
{
}
@@ -90,9 +60,10 @@ public:
qSwap(m_mimeType, other.m_mimeType);
qSwap(m_weight, other.m_weight);
qSwap(m_caseSensitivity, other.m_caseSensitivity);
+ qSwap(m_patternType, other.m_patternType);
}
- bool matchFileName(const QString &filename) const;
+ bool matchFileName(const QString &inputFileName) const;
inline const QString &pattern() const { return m_pattern; }
inline unsigned weight() const { return m_weight; }
@@ -100,38 +71,50 @@ public:
inline bool isCaseSensitive() const { return m_caseSensitivity == Qt::CaseSensitive; }
private:
+ enum PatternType {
+ SuffixPattern,
+ PrefixPattern,
+ LiteralPattern,
+ VdrPattern, // special handling for "[0-9][0-9][0-9].vdr" pattern
+ AnimPattern, // special handling for "*.anim[1-9j]" pattern
+ OtherPattern
+ };
+ PatternType detectPatternType(QStringView pattern) const;
+
QString m_pattern;
QString m_mimeType;
int m_weight;
Qt::CaseSensitivity m_caseSensitivity;
+ PatternType m_patternType;
};
Q_DECLARE_SHARED(QMimeGlobPattern)
+using AddMatchFilterFunc = std::function<bool(const QString &)>;
+
class QMimeGlobPatternList : public QList<QMimeGlobPattern>
{
public:
- bool hasPattern(const QString &mimeType, const QString &pattern) const
+ bool hasPattern(QStringView mimeType, QStringView pattern) const
{
- const_iterator it = begin();
- const const_iterator myend = end();
- for (; it != myend; ++it)
- if ((*it).pattern() == pattern && (*it).mimeType() == mimeType)
- return true;
- return false;
+ auto matchesMimeAndPattern = [mimeType, pattern](const QMimeGlobPattern &e) {
+ return e.pattern() == pattern && e.mimeType() == mimeType;
+ };
+ return std::any_of(begin(), end(), matchesMimeAndPattern);
}
/*!
"noglobs" is very rare occurrence, so it's ok if it's slow
*/
- void removeMimeType(const QString &mimeType)
+ void removeMimeType(QStringView mimeType)
{
- auto isMimeTypeEqual = [&mimeType](const QMimeGlobPattern &pattern) {
+ auto isMimeTypeEqual = [mimeType](const QMimeGlobPattern &pattern) {
return pattern.mimeType() == mimeType;
};
- erase(std::remove_if(begin(), end(), isMimeTypeEqual), end());
+ removeIf(isMimeTypeEqual);
}
- void match(QMimeGlobMatchResult &result, const QString &fileName) const;
+ void match(QMimeGlobMatchResult &result, const QString &fileName,
+ const AddMatchFilterFunc &filterFunc) const;
};
/*!
@@ -148,7 +131,8 @@ public:
void addGlob(const QMimeGlobPattern &glob);
void removeMimeType(const QString &mimeType);
- void matchingGlobs(const QString &fileName, QMimeGlobMatchResult &result) const;
+ void matchingGlobs(const QString &fileName, QMimeGlobMatchResult &result,
+ const AddMatchFilterFunc &filterFunc) const;
void clear();
PatternsMap m_fastPatterns; // example: "doc" -> "application/msword", "text/plain"
diff --git a/src/corelib/mimetypes/qmimemagicrule.cpp b/src/corelib/mimetypes/qmimemagicrule.cpp
index 2c8c2e7199..3c33d53aac 100644
--- a/src/corelib/mimetypes/qmimemagicrule.cpp
+++ b/src/corelib/mimetypes/qmimemagicrule.cpp
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#define QT_NO_CAST_FROM_ASCII
@@ -47,29 +11,31 @@
#include <QtCore/QDebug>
#include <qendian.h>
+#include <private/qoffsetstringarray_p.h>
+#include <private/qtools_p.h>
+
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+using namespace QtMiscUtils;
+
// in the same order as Type!
-static const char magicRuleTypes_string[] =
- "invalid\0"
- "string\0"
- "host16\0"
- "host32\0"
- "big16\0"
- "big32\0"
- "little16\0"
- "little32\0"
- "byte\0"
- "\0";
-
-static const int magicRuleTypes_indices[] = {
- 0, 8, 15, 22, 29, 35, 41, 50, 59, 64, 0
-};
+static constexpr auto magicRuleTypes = qOffsetStringArray(
+ "invalid",
+ "string",
+ "host16",
+ "host32",
+ "big16",
+ "big32",
+ "little16",
+ "little32",
+ "byte"
+);
QMimeMagicRule::Type QMimeMagicRule::type(const QByteArray &theTypeName)
{
for (int i = String; i <= Byte; ++i) {
- if (theTypeName == magicRuleTypes_string + magicRuleTypes_indices[i])
+ if (theTypeName == magicRuleTypes.at(i))
return Type(i);
}
return Invalid;
@@ -77,7 +43,7 @@ QMimeMagicRule::Type QMimeMagicRule::type(const QByteArray &theTypeName)
QByteArray QMimeMagicRule::typeName(QMimeMagicRule::Type theType)
{
- return magicRuleTypes_string + magicRuleTypes_indices[theType];
+ return magicRuleTypes.at(theType);
}
bool QMimeMagicRule::operator==(const QMimeMagicRule &other) const
@@ -94,12 +60,12 @@ bool QMimeMagicRule::operator==(const QMimeMagicRule &other) const
}
// Used by both providers
-bool QMimeMagicRule::matchSubstring(const char *dataPtr, int dataSize, int rangeStart, int rangeLength,
- int valueLength, const char *valueData, const char *mask)
+bool QMimeMagicRule::matchSubstring(const char *dataPtr, qsizetype dataSize, int rangeStart, int rangeLength,
+ qsizetype valueLength, const char *valueData, const char *mask)
{
// Size of searched data.
// Example: value="ABC", rangeLength=3 -> we need 3+3-1=5 bytes (ABCxx,xABCx,xxABC would match)
- const int dataNeeded = qMin(rangeLength + valueLength - 1, dataSize - rangeStart);
+ const qsizetype dataNeeded = qMin(rangeLength + valueLength - 1, dataSize - rangeStart);
if (!mask) {
// callgrind says QByteArray::indexOf is much slower, since our strings are typically too
@@ -123,7 +89,7 @@ bool QMimeMagicRule::matchSubstring(const char *dataPtr, int dataSize, int range
// deviceSize is 4, so dataNeeded was max'ed to 4.
// maxStartPos = 4 - 3 + 1 = 2, and indeed
// we need to check for a match a positions 0 and 1 (ABCx and xABC).
- const int maxStartPos = dataNeeded - valueLength + 1;
+ const qsizetype maxStartPos = dataNeeded - valueLength + 1;
for (int i = 0; i < maxStartPos; ++i) {
const char *d = readDataBase + i;
bool valid = true;
@@ -181,21 +147,17 @@ static inline QByteArray makePattern(const QByteArray &value)
char c = 0;
for (int i = 0; i < 2 && p + 1 < e; ++i) {
++p;
- if (*p >= '0' && *p <= '9')
- c = (c << 4) + *p - '0';
- else if (*p >= 'a' && *p <= 'f')
- c = (c << 4) + *p - 'a' + 10;
- else if (*p >= 'A' && *p <= 'F')
- c = (c << 4) + *p - 'A' + 10;
+ if (const int h = fromHex(*p); h != -1)
+ c = (c << 4) + h;
else
continue;
}
*data++ = c;
- } else if (*p >= '0' && *p <= '7') { // oct (\\7, or \\77, or \\377)
+ } else if (isOctalDigit(*p)) { // oct (\\7, or \\77, or \\377)
char c = *p - '0';
- if (p + 1 < e && p[1] >= '0' && p[1] <= '7') {
+ if (p + 1 < e && isOctalDigit(p[1])) {
c = (c << 3) + *(++p) - '0';
- if (p + 1 < e && p[1] >= '0' && p[1] <= '7' && p[-1] <= '3')
+ if (p + 1 < e && isOctalDigit(p[1]) && p[-1] <= '3')
c = (c << 3) + *(++p) - '0';
}
*data++ = c;
@@ -231,11 +193,14 @@ QMimeMagicRule::QMimeMagicRule(const QString &type,
m_mask(mask),
m_matchFunction(nullptr)
{
- if (Q_UNLIKELY(m_type == Invalid))
- *errorString = QLatin1String("Type ") + type + QLatin1String(" is not supported");
+ if (Q_UNLIKELY(m_type == Invalid)) {
+ if (errorString)
+ *errorString = "Type "_L1 + type + " is not supported"_L1;
+ return;
+ }
// Parse for offset as "1" or "1:10"
- const int colonIndex = offsets.indexOf(QLatin1Char(':'));
+ const qsizetype colonIndex = offsets.indexOf(u':');
const QStringView startPosStr = QStringView{offsets}.mid(0, colonIndex); // \ These decay to returning 'offsets'
const QStringView endPosStr = QStringView{offsets}.mid(colonIndex + 1);// / unchanged when colonIndex == -1
if (Q_UNLIKELY(!QMimeTypeParserBase::parseNumber(startPosStr, &m_startPos, errorString)) ||
@@ -257,7 +222,7 @@ QMimeMagicRule::QMimeMagicRule(const QString &type,
if (Q_UNLIKELY(!ok)) {
m_type = Invalid;
if (errorString)
- *errorString = QLatin1String("Invalid magic rule value \"") + QLatin1String(m_value) + QLatin1Char('"');
+ *errorString = "Invalid magic rule value \""_L1 + QLatin1StringView(m_value) + u'"';
return;
}
m_numberMask = !m_mask.isEmpty() ? m_mask.toUInt(&ok, 0) : 0; // autodetect base
@@ -271,7 +236,7 @@ QMimeMagicRule::QMimeMagicRule(const QString &type,
if (Q_UNLIKELY(m_mask.size() < 4 || !m_mask.startsWith("0x"))) {
m_type = Invalid;
if (errorString)
- *errorString = QLatin1String("Invalid magic rule mask \"") + QLatin1String(m_mask) + QLatin1Char('"');
+ *errorString = "Invalid magic rule mask \""_L1 + QLatin1StringView(m_mask) + u'"';
return;
}
const QByteArray &tempMask = QByteArray::fromHex(QByteArray::fromRawData(
@@ -279,7 +244,7 @@ QMimeMagicRule::QMimeMagicRule(const QString &type,
if (Q_UNLIKELY(tempMask.size() != m_pattern.size())) {
m_type = Invalid;
if (errorString)
- *errorString = QLatin1String("Invalid magic rule mask size \"") + QLatin1String(m_mask) + QLatin1Char('"');
+ *errorString = "Invalid magic rule mask size \""_L1 + QLatin1StringView(m_mask) + u'"';
return;
}
m_mask = tempMask;
diff --git a/src/corelib/mimetypes/qmimemagicrule_p.h b/src/corelib/mimetypes/qmimemagicrule_p.h
index 5091d483b6..bd1b72d113 100644
--- a/src/corelib/mimetypes/qmimemagicrule_p.h
+++ b/src/corelib/mimetypes/qmimemagicrule_p.h
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMEMAGICRULE_P_H
#define QMIMEMAGICRULE_P_H
@@ -99,7 +63,9 @@ public:
static Type type(const QByteArray &type);
static QByteArray typeName(Type type);
- static bool matchSubstring(const char *dataPtr, int dataSize, int rangeStart, int rangeLength, int valueLength, const char *valueData, const char *mask);
+ static bool matchSubstring(const char *dataPtr, qsizetype dataSize, int rangeStart,
+ int rangeLength, qsizetype valueLength, const char *valueData,
+ const char *mask);
private:
Type m_type;
diff --git a/src/corelib/mimetypes/qmimemagicrulematcher.cpp b/src/corelib/mimetypes/qmimemagicrulematcher.cpp
index 8f44fd2f80..24a12ee561 100644
--- a/src/corelib/mimetypes/qmimemagicrulematcher.cpp
+++ b/src/corelib/mimetypes/qmimemagicrulematcher.cpp
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#define QT_NO_CAST_FROM_ASCII
diff --git a/src/corelib/mimetypes/qmimemagicrulematcher_p.h b/src/corelib/mimetypes/qmimemagicrulematcher_p.h
index fe714987e6..02bc73150e 100644
--- a/src/corelib/mimetypes/qmimemagicrulematcher_p.h
+++ b/src/corelib/mimetypes/qmimemagicrulematcher_p.h
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMEMAGICRULEMATCHER_P_H
#define QMIMEMAGICRULEMATCHER_P_H
diff --git a/src/corelib/mimetypes/qmimeprovider.cpp b/src/corelib/mimetypes/qmimeprovider.cpp
index fcc6cdf088..458cd46385 100644
--- a/src/corelib/mimetypes/qmimeprovider.cpp
+++ b/src/corelib/mimetypes/qmimeprovider.cpp
@@ -1,43 +1,7 @@
-/****************************************************************************
-**
-** Copyright (C) 2018 The Qt Company Ltd.
-** Copyright (C) 2018 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Copyright (C) 2019 Intel Corporation.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2018 The Qt Company Ltd.
+// Copyright (C) 2018 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// Copyright (C) 2019 Intel Corporation.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qmimeprovider_p.h"
@@ -55,7 +19,7 @@
#include <QtEndian>
#if QT_CONFIG(mimetype_database)
-# if defined(Q_CC_MSVC)
+# if defined(Q_CC_MSVC_ONLY)
# pragma section(".qtmimedatabase", read, shared)
__declspec(allocate(".qtmimedatabase")) __declspec(align(4096))
# elif defined(Q_OS_DARWIN)
@@ -84,17 +48,7 @@ __attribute__((section(".qtmimedatabase"), aligned(4096)))
QT_BEGIN_NAMESPACE
-QMimeProviderBase::QMimeProviderBase(QMimeDatabasePrivate *db, const QString &directory)
- : m_db(db), m_directory(directory)
-{
-}
-
-
-QMimeBinaryProvider::QMimeBinaryProvider(QMimeDatabasePrivate *db, const QString &directory)
- : QMimeProviderBase(db, directory), m_mimetypeListLoaded(false)
-{
- ensureLoaded();
-}
+using namespace Qt::StringLiterals;
struct QMimeBinaryProvider::CacheFile
{
@@ -123,6 +77,43 @@ struct QMimeBinaryProvider::CacheFile
bool m_valid;
};
+static inline void appendIfNew(QStringList &list, const QString &str)
+{
+ if (!list.contains(str))
+ list.push_back(str);
+}
+
+QMimeProviderBase::QMimeProviderBase(QMimeDatabasePrivate *db, const QString &directory)
+ : m_db(db), m_directory(directory)
+{
+}
+
+QMimeProviderBase *QMimeProviderBase::overrideProvider() const
+{
+ return m_overrideProvider;
+}
+
+void QMimeProviderBase::setOverrideProvider(QMimeProviderBase *provider)
+{
+ m_overrideProvider = provider;
+}
+
+bool QMimeProviderBase::isMimeTypeGlobsExcluded(const QString &name) const
+{
+ if (m_overrideProvider) {
+ if (m_overrideProvider->hasGlobDeleteAll(name))
+ return true;
+ return m_overrideProvider->isMimeTypeGlobsExcluded(name);
+ }
+ return false;
+}
+
+QMimeBinaryProvider::QMimeBinaryProvider(QMimeDatabasePrivate *db, const QString &directory)
+ : QMimeProviderBase(db, directory), m_mimetypeListLoaded(false)
+{
+ ensureLoaded();
+}
+
QMimeBinaryProvider::CacheFile::CacheFile(const QString &fileName)
: file(fileName), m_valid(false)
{
@@ -143,7 +134,7 @@ bool QMimeBinaryProvider::CacheFile::load()
const int minor = getUint16(2);
m_valid = (major == 1 && minor >= 1 && minor <= 2);
}
- m_mtime = QFileInfo(file).lastModified();
+ m_mtime = QFileInfo(file).lastModified(QTimeZone::UTC);
return m_valid;
}
@@ -157,10 +148,7 @@ bool QMimeBinaryProvider::CacheFile::reload()
return load();
}
-QMimeBinaryProvider::~QMimeBinaryProvider()
-{
- delete m_cacheFile;
-}
+QMimeBinaryProvider::~QMimeBinaryProvider() = default;
bool QMimeBinaryProvider::isValid()
{
@@ -188,7 +176,7 @@ enum {
bool QMimeBinaryProvider::checkCacheChanged()
{
QFileInfo fileInfo(m_cacheFile->file);
- if (fileInfo.lastModified() > m_cacheFile->m_mtime) {
+ if (fileInfo.lastModified(QTimeZone::UTC) > m_cacheFile->m_mtime) {
// Deletion can't happen by just running update-mime-database.
// But the user could use rm -rf :-)
m_cacheFile->reload(); // will mark itself as invalid on failure
@@ -200,40 +188,27 @@ bool QMimeBinaryProvider::checkCacheChanged()
void QMimeBinaryProvider::ensureLoaded()
{
if (!m_cacheFile) {
- const QString cacheFileName = m_directory + QLatin1String("/mime.cache");
- m_cacheFile = new CacheFile(cacheFileName);
+ const QString cacheFileName = m_directory + "/mime.cache"_L1;
+ m_cacheFile = std::make_unique<CacheFile>(cacheFileName);
m_mimetypeListLoaded = false;
+ m_mimetypeExtra.clear();
} else {
- if (checkCacheChanged())
+ if (checkCacheChanged()) {
m_mimetypeListLoaded = false;
- else
+ m_mimetypeExtra.clear();
+ } else {
return; // nothing to do
+ }
}
- if (!m_cacheFile->isValid()) { // verify existence and version
- delete m_cacheFile;
- m_cacheFile = nullptr;
- }
-}
-
-static QMimeType mimeTypeForNameUnchecked(const QString &name)
-{
- QMimeTypePrivate data;
- data.name = name;
- data.fromCache = true;
- // The rest is retrieved on demand.
- // comment and globPatterns: in loadMimeTypePrivate
- // iconName: in loadIcon
- // genericIconName: in loadGenericIcon
- return QMimeType(data);
+ if (!m_cacheFile->isValid()) // verify existence and version
+ m_cacheFile.reset();
}
-QMimeType QMimeBinaryProvider::mimeTypeForName(const QString &name)
+bool QMimeBinaryProvider::knowsMimeType(const QString &name)
{
if (!m_mimetypeListLoaded)
loadMimeTypeList();
- if (!m_mimetypeNames.contains(name))
- return QMimeType(); // unknown mimetype
- return mimeTypeForNameUnchecked(name);
+ return m_mimetypeNames.contains(name);
}
void QMimeBinaryProvider::addFileNameMatches(const QString &fileName, QMimeGlobMatchResult &result)
@@ -241,22 +216,34 @@ void QMimeBinaryProvider::addFileNameMatches(const QString &fileName, QMimeGlobM
if (fileName.isEmpty())
return;
Q_ASSERT(m_cacheFile);
- const QString lowerFileName = fileName.toLower();
+ int numMatches = 0;
// Check literals (e.g. "Makefile")
- matchGlobList(result, m_cacheFile, m_cacheFile->getUint32(PosLiteralListOffset), fileName);
- // Check complex globs (e.g. "callgrind.out[0-9]*")
- matchGlobList(result, m_cacheFile, m_cacheFile->getUint32(PosGlobListOffset), fileName);
+ numMatches = matchGlobList(result, m_cacheFile.get(),
+ m_cacheFile->getUint32(PosLiteralListOffset), fileName);
// Check the very common *.txt cases with the suffix tree
- const int reverseSuffixTreeOffset = m_cacheFile->getUint32(PosReverseSuffixTreeOffset);
- const int numRoots = m_cacheFile->getUint32(reverseSuffixTreeOffset);
- const int firstRootOffset = m_cacheFile->getUint32(reverseSuffixTreeOffset + 4);
- matchSuffixTree(result, m_cacheFile, numRoots, firstRootOffset, lowerFileName, lowerFileName.length() - 1, false);
- if (result.m_matchingMimeTypes.isEmpty())
- matchSuffixTree(result, m_cacheFile, numRoots, firstRootOffset, fileName, fileName.length() - 1, true);
+ if (numMatches == 0) {
+ const QString lowerFileName = fileName.toLower();
+ const int reverseSuffixTreeOffset = m_cacheFile->getUint32(PosReverseSuffixTreeOffset);
+ const int numRoots = m_cacheFile->getUint32(reverseSuffixTreeOffset);
+ const int firstRootOffset = m_cacheFile->getUint32(reverseSuffixTreeOffset + 4);
+ if (matchSuffixTree(result, m_cacheFile.get(), numRoots, firstRootOffset, lowerFileName,
+ lowerFileName.size() - 1, false)) {
+ ++numMatches;
+ } else if (matchSuffixTree(result, m_cacheFile.get(), numRoots, firstRootOffset, fileName,
+ fileName.size() - 1, true)) {
+ ++numMatches;
+ }
+ }
+ // Check complex globs (e.g. "callgrind.out[0-9]*" or "README*")
+ if (numMatches == 0)
+ matchGlobList(result, m_cacheFile.get(), m_cacheFile->getUint32(PosGlobListOffset),
+ fileName);
}
-void QMimeBinaryProvider::matchGlobList(QMimeGlobMatchResult &result, CacheFile *cacheFile, int off, const QString &fileName)
+int QMimeBinaryProvider::matchGlobList(QMimeGlobMatchResult &result, CacheFile *cacheFile, int off,
+ const QString &fileName)
{
+ int numMatches = 0;
const int numGlobs = cacheFile->getUint32(off);
//qDebug() << "Loading" << numGlobs << "globs from" << cacheFile->file.fileName() << "at offset" << cacheFile->globListOffset;
for (int i = 0; i < numGlobs; ++i) {
@@ -266,19 +253,26 @@ void QMimeBinaryProvider::matchGlobList(QMimeGlobMatchResult &result, CacheFile
const int weight = flagsAndWeight & 0xff;
const bool caseSensitive = flagsAndWeight & 0x100;
const Qt::CaseSensitivity qtCaseSensitive = caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive;
- const QString pattern = QLatin1String(cacheFile->getCharStar(globOffset));
+ const QString pattern = QLatin1StringView(cacheFile->getCharStar(globOffset));
- const char *mimeType = cacheFile->getCharStar(mimeTypeOffset);
+ const QLatin1StringView mimeType(cacheFile->getCharStar(mimeTypeOffset));
//qDebug() << pattern << mimeType << weight << caseSensitive;
- QMimeGlobPattern glob(pattern, QString() /*unused*/, weight, qtCaseSensitive);
+ if (isMimeTypeGlobsExcluded(mimeType))
+ continue;
- // TODO: this could be done faster for literals where a simple == would do.
- if (glob.matchFileName(fileName))
- result.addMatch(QLatin1String(mimeType), weight, pattern);
+ QMimeGlobPattern glob(pattern, QString() /*unused*/, weight, qtCaseSensitive);
+ if (glob.matchFileName(fileName)) {
+ result.addMatch(mimeType, weight, pattern);
+ ++numMatches;
+ }
}
+ return numMatches;
}
-bool QMimeBinaryProvider::matchSuffixTree(QMimeGlobMatchResult &result, QMimeBinaryProvider::CacheFile *cacheFile, int numEntries, int firstOffset, const QString &fileName, int charPos, bool caseSensitiveCheck)
+bool QMimeBinaryProvider::matchSuffixTree(QMimeGlobMatchResult &result,
+ QMimeBinaryProvider::CacheFile *cacheFile, int numEntries,
+ int firstOffset, const QString &fileName,
+ qsizetype charPos, bool caseSensitiveCheck)
{
QChar fileChar = fileName[charPos];
int min = 0;
@@ -305,13 +299,16 @@ bool QMimeBinaryProvider::matchSuffixTree(QMimeGlobMatchResult &result, QMimeBin
if (mch != 0)
break;
const int mimeTypeOffset = cacheFile->getUint32(childOff + 4);
- const char *mimeType = cacheFile->getCharStar(mimeTypeOffset);
+ const QLatin1StringView mimeType(cacheFile->getCharStar(mimeTypeOffset));
+ if (isMimeTypeGlobsExcluded(mimeType))
+ continue;
const int flagsAndWeight = cacheFile->getUint32(childOff + 8);
const int weight = flagsAndWeight & 0xff;
const bool caseSensitive = flagsAndWeight & 0x100;
if (caseSensitiveCheck || !caseSensitive) {
- result.addMatch(QLatin1String(mimeType), weight,
- QLatin1Char('*') + QStringView{fileName}.mid(charPos + 1), fileName.size() - charPos - 2);
+ result.addMatch(mimeType, weight,
+ u'*' + QStringView{ fileName }.mid(charPos + 1),
+ fileName.size() - charPos - 2);
success = true;
}
}
@@ -325,7 +322,7 @@ bool QMimeBinaryProvider::matchSuffixTree(QMimeGlobMatchResult &result, QMimeBin
bool QMimeBinaryProvider::matchMagicRule(QMimeBinaryProvider::CacheFile *cacheFile, int numMatchlets, int firstOffset, const QByteArray &data)
{
const char *dataPtr = data.constData();
- const int dataSize = data.size();
+ const qsizetype dataSize = data.size();
for (int matchlet = 0; matchlet < numMatchlets; ++matchlet) {
const int off = firstOffset + matchlet * 32;
const int rangeStart = cacheFile->getUint32(off);
@@ -350,7 +347,7 @@ bool QMimeBinaryProvider::matchMagicRule(QMimeBinaryProvider::CacheFile *cacheFi
return false;
}
-void QMimeBinaryProvider::findByMagic(const QByteArray &data, int *accuracyPtr, QMimeType &candidate)
+void QMimeBinaryProvider::findByMagic(const QByteArray &data, QMimeMagicResult &result)
{
const int magicListOffset = m_cacheFile->getUint32(PosMagicListOffset);
const int numMatches = m_cacheFile->getUint32(magicListOffset);
@@ -361,14 +358,16 @@ void QMimeBinaryProvider::findByMagic(const QByteArray &data, int *accuracyPtr,
const int off = firstMatchOffset + i * 16;
const int numMatchlets = m_cacheFile->getUint32(off + 8);
const int firstMatchletOffset = m_cacheFile->getUint32(off + 12);
- if (matchMagicRule(m_cacheFile, numMatchlets, firstMatchletOffset, data)) {
+ if (matchMagicRule(m_cacheFile.get(), numMatchlets, firstMatchletOffset, data)) {
const int mimeTypeOffset = m_cacheFile->getUint32(off + 4);
const char *mimeType = m_cacheFile->getCharStar(mimeTypeOffset);
- *accuracyPtr = m_cacheFile->getUint32(off);
- // Return the first match. We have no rules for conflicting magic data...
- // (mime.cache itself is sorted, but what about local overrides with a lower prio?)
- candidate = mimeTypeForNameUnchecked(QLatin1String(mimeType));
- return;
+ const int accuracy = static_cast<int>(m_cacheFile->getUint32(off));
+ if (accuracy > result.accuracy) {
+ result.accuracy = accuracy;
+ result.candidate = QString::fromLatin1(mimeType);
+ // Return the first match, mime.cache is sorted
+ return;
+ }
}
}
}
@@ -398,8 +397,7 @@ void QMimeBinaryProvider::addParents(const QString &mime, QStringList &result)
const int parentOffset = m_cacheFile->getUint32(parentsOffset + 4 + 4 * i);
const char *aParent = m_cacheFile->getCharStar(parentOffset);
const QString strParent = QString::fromLatin1(aParent);
- if (!result.contains(strParent))
- result.append(strParent);
+ appendIfNew(result, strParent);
}
break;
}
@@ -426,7 +424,7 @@ QString QMimeBinaryProvider::resolveAlias(const QString &name)
} else {
const int mimeOffset = m_cacheFile->getUint32(off + 4);
const char *mimeType = m_cacheFile->getCharStar(mimeOffset);
- return QLatin1String(mimeType);
+ return QLatin1StringView(mimeType);
}
}
return QString();
@@ -446,8 +444,7 @@ void QMimeBinaryProvider::addAliases(const QString &name, QStringList &result)
const int aliasOffset = m_cacheFile->getUint32(off);
const char *alias = m_cacheFile->getCharStar(aliasOffset);
const QString strAlias = QString::fromLatin1(alias);
- if (!result.contains(strAlias))
- result.append(strAlias);
+ appendIfNew(result, strAlias);
}
}
}
@@ -459,13 +456,14 @@ void QMimeBinaryProvider::loadMimeTypeList()
m_mimetypeNames.clear();
// Unfortunately mime.cache doesn't have a full list of all mimetypes.
// So we have to parse the plain-text files called "types".
- QFile file(m_directory + QStringLiteral("/types"));
+ QFile file(m_directory + QStringView(u"/types"));
if (file.open(QIODevice::ReadOnly)) {
while (!file.atEnd()) {
- QByteArray line = file.readLine();
- if (line.endsWith('\n'))
- line.chop(1);
- m_mimetypeNames.insert(QString::fromLatin1(line));
+ const QByteArray line = file.readLine();
+ auto lineView = QByteArrayView(line);
+ if (lineView.endsWith('\n'))
+ lineView.chop(1);
+ m_mimetypeNames.insert(QString::fromLatin1(lineView));
}
}
}
@@ -475,115 +473,117 @@ void QMimeBinaryProvider::addAllMimeTypes(QList<QMimeType> &result)
{
loadMimeTypeList();
if (result.isEmpty()) {
- result.reserve(m_mimetypeNames.count());
- for (const QString &name : qAsConst(m_mimetypeNames))
- result.append(mimeTypeForNameUnchecked(name));
+ result.reserve(m_mimetypeNames.size());
+ for (const QString &name : std::as_const(m_mimetypeNames))
+ result.append(QMimeType(QMimeTypePrivate(name)));
} else {
- for (const QString &name : qAsConst(m_mimetypeNames))
+ for (const QString &name : std::as_const(m_mimetypeNames))
if (std::find_if(result.constBegin(), result.constEnd(), [name](const QMimeType &mime) -> bool { return mime.name() == name; })
== result.constEnd())
- result.append(mimeTypeForNameUnchecked(name));
+ result.append(QMimeType(QMimeTypePrivate(name)));
}
}
-void QMimeBinaryProvider::loadMimeTypePrivate(QMimeTypePrivate &data)
+QMimeTypePrivate::LocaleHash QMimeBinaryProvider::localeComments(const QString &name)
{
-#ifdef QT_NO_XMLSTREAMREADER
- Q_UNUSED(data);
- qWarning("Cannot load mime type since QXmlStreamReader is not available.");
- return;
-#else
- if (data.loaded)
- return;
- data.loaded = true;
- // load comment and globPatterns
-
- const QString file = data.name + QLatin1String(".xml");
- // shared-mime-info since 1.3 lowercases the xml files
- QStringList mimeFiles = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QLatin1String("mime/") + file.toLower());
- if (mimeFiles.isEmpty())
- mimeFiles = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QLatin1String("mime/") + file); // pre-1.3
- if (mimeFiles.isEmpty()) {
- qWarning() << "No file found for" << file << ", even though update-mime-info said it would exist.\n"
- "Either it was just removed, or the directory doesn't have executable permission..."
- << QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QLatin1String("mime"), QStandardPaths::LocateDirectory);
- return;
- }
+ MimeTypeExtraMap::const_iterator it = loadMimeTypeExtra(name);
+ if (it != m_mimetypeExtra.cend())
+ return it->second.localeComments;
+ return {};
+}
+
+bool QMimeBinaryProvider::hasGlobDeleteAll(const QString &name)
+{
+ MimeTypeExtraMap::const_iterator it = loadMimeTypeExtra(name);
+ if (it != m_mimetypeExtra.cend())
+ return it->second.hasGlobDeleteAll;
+ return {};
+}
- QString mainPattern;
+QStringList QMimeBinaryProvider::globPatterns(const QString &name)
+{
+ MimeTypeExtraMap::const_iterator it = loadMimeTypeExtra(name);
+ if (it != m_mimetypeExtra.cend())
+ return it->second.globPatterns;
+ return {};
+}
- for (QStringList::const_reverse_iterator it = mimeFiles.crbegin(), end = mimeFiles.crend(); it != end; ++it) { // global first, then local.
- QFile qfile(*it);
+QMimeBinaryProvider::MimeTypeExtraMap::const_iterator
+QMimeBinaryProvider::loadMimeTypeExtra(const QString &mimeName)
+{
+#if QT_CONFIG(xmlstreamreader)
+ auto it = m_mimetypeExtra.find(mimeName);
+ if (it == m_mimetypeExtra.cend()) {
+ // load comment and globPatterns
+
+ // shared-mime-info since 1.3 lowercases the xml files
+ QString mimeFile = m_directory + u'/' + mimeName.toLower() + ".xml"_L1;
+ if (!QFile::exists(mimeFile))
+ mimeFile = m_directory + u'/' + mimeName + ".xml"_L1; // pre-1.3
+
+ QFile qfile(mimeFile);
if (!qfile.open(QFile::ReadOnly))
- continue;
+ return m_mimetypeExtra.cend();
+
+ it = m_mimetypeExtra.try_emplace(mimeName).first;
+ MimeTypeExtra &extra = it->second;
+ QString mainPattern;
QXmlStreamReader xml(&qfile);
if (xml.readNextStartElement()) {
- if (xml.name() != QLatin1String("mime-type")) {
- continue;
+ if (xml.name() != "mime-type"_L1) {
+ return m_mimetypeExtra.cend();
}
- const auto name = xml.attributes().value(QLatin1String("type"));
+ const auto name = xml.attributes().value("type"_L1);
if (name.isEmpty())
- continue;
- if (name.compare(data.name, Qt::CaseInsensitive))
- qWarning() << "Got name" << name << "in file" << file << "expected" << data.name;
+ return m_mimetypeExtra.cend();
+ if (name.compare(mimeName, Qt::CaseInsensitive))
+ qWarning() << "Got name" << name << "in file" << mimeFile << "expected" << mimeName;
while (xml.readNextStartElement()) {
const auto tag = xml.name();
- if (tag == QLatin1String("comment")) {
- QString lang = xml.attributes().value(QLatin1String("xml:lang")).toString();
+ if (tag == "comment"_L1) {
+ QString lang = xml.attributes().value("xml:lang"_L1).toString();
const QString text = xml.readElementText();
if (lang.isEmpty()) {
- lang = QLatin1String("default"); // no locale attribute provided, treat it as default.
+ lang = "default"_L1; // no locale attribute provided, treat it as default.
}
- data.localeComments.insert(lang, text);
+ extra.localeComments.insert(lang, text);
continue; // we called readElementText, so we're at the EndElement already.
- } else if (tag == QLatin1String("icon")) { // as written out by shared-mime-info >= 0.40
- data.iconName = xml.attributes().value(QLatin1String("name")).toString();
- } else if (tag == QLatin1String("glob-deleteall")) { // as written out by shared-mime-info >= 0.70
- data.globPatterns.clear();
- mainPattern.clear();
- } else if (tag == QLatin1String("glob")) { // as written out by shared-mime-info >= 0.70
- const QString pattern = xml.attributes().value(QLatin1String("pattern")).toString();
- if (mainPattern.isEmpty() && pattern.startsWith(QLatin1Char('*'))) {
+ } else if (tag == "glob-deleteall"_L1) { // as written out by shared-mime-info >= 0.70
+ extra.hasGlobDeleteAll = true;
+ } else if (tag == "glob"_L1) { // as written out by shared-mime-info >= 0.70
+ const QString pattern = xml.attributes().value("pattern"_L1).toString();
+ if (mainPattern.isEmpty() && pattern.startsWith(u'*')) {
mainPattern = pattern;
}
- if (!data.globPatterns.contains(pattern))
- data.globPatterns.append(pattern);
+ appendIfNew(extra.globPatterns, pattern);
}
xml.skipCurrentElement();
}
- Q_ASSERT(xml.name() == QLatin1String("mime-type"));
+ Q_ASSERT(xml.name() == "mime-type"_L1);
}
- }
- // Let's assume that shared-mime-info is at least version 0.70
- // Otherwise we would need 1) a version check, and 2) code for parsing patterns from the globs file.
-#if 1
- if (!mainPattern.isEmpty() && (data.globPatterns.isEmpty() || data.globPatterns.constFirst() != mainPattern)) {
- // ensure it's first in the list of patterns
- data.globPatterns.removeAll(mainPattern);
- data.globPatterns.prepend(mainPattern);
- }
-#else
- const bool globsInXml = sharedMimeInfoVersion() >= QT_VERSION_CHECK(0, 70, 0);
- if (globsInXml) {
- if (!mainPattern.isEmpty() && data.globPatterns.constFirst() != mainPattern) {
+ // Let's assume that shared-mime-info is at least version 0.70
+ // Otherwise we would need 1) a version check, and 2) code for parsing patterns from the globs file.
+ if (!mainPattern.isEmpty() &&
+ (extra.globPatterns.isEmpty() || extra.globPatterns.constFirst() != mainPattern)) {
// ensure it's first in the list of patterns
- data.globPatterns.removeAll(mainPattern);
- data.globPatterns.prepend(mainPattern);
+ extra.globPatterns.removeAll(mainPattern);
+ extra.globPatterns.prepend(mainPattern);
}
- } else {
- // Fallback: get the patterns from the globs file
- // TODO: This would be the only way to support shared-mime-info < 0.70
- // But is this really worth the effort?
}
-#endif
-#endif //QT_NO_XMLSTREAMREADER
+ return it;
+#else
+ Q_UNUSED(mimeName);
+ qWarning("Cannot load mime type since QXmlStreamReader is not available.");
+ return m_mimetypeExtra.cend();
+#endif // feature xmlstreamreader
}
// Binary search in the icons or generic-icons list
-QLatin1String QMimeBinaryProvider::iconForMime(CacheFile *cacheFile, int posListOffset, const QByteArray &inputMime)
+QLatin1StringView QMimeBinaryProvider::iconForMime(CacheFile *cacheFile, int posListOffset,
+ const QByteArray &inputMime)
{
const int iconsListOffset = cacheFile->getUint32(posListOffset);
const int numIcons = cacheFile->getUint32(iconsListOffset);
@@ -601,28 +601,22 @@ QLatin1String QMimeBinaryProvider::iconForMime(CacheFile *cacheFile, int posList
end = medium - 1;
else {
const int iconOffset = cacheFile->getUint32(off + 4);
- return QLatin1String(cacheFile->getCharStar(iconOffset));
+ return QLatin1StringView(cacheFile->getCharStar(iconOffset));
}
}
- return QLatin1String();
+ return QLatin1StringView();
}
-void QMimeBinaryProvider::loadIcon(QMimeTypePrivate &data)
+QString QMimeBinaryProvider::icon(const QString &name)
{
- const QByteArray inputMime = data.name.toLatin1();
- const QLatin1String icon = iconForMime(m_cacheFile, PosIconsListOffset, inputMime);
- if (!icon.isEmpty()) {
- data.iconName = icon;
- }
+ const QByteArray inputMime = name.toLatin1();
+ return iconForMime(m_cacheFile.get(), PosIconsListOffset, inputMime);
}
-void QMimeBinaryProvider::loadGenericIcon(QMimeTypePrivate &data)
+QString QMimeBinaryProvider::genericIcon(const QString &name)
{
- const QByteArray inputMime = data.name.toLatin1();
- const QLatin1String icon = iconForMime(m_cacheFile, PosGenericIconsListOffset, inputMime);
- if (!icon.isEmpty()) {
- data.genericIconName = icon;
- }
+ const QByteArray inputMime = name.toLatin1();
+ return iconForMime(m_cacheFile.get(), PosGenericIconsListOffset, inputMime);
}
////
@@ -700,46 +694,46 @@ bool QMimeXMLProvider::isValid()
bool QMimeXMLProvider::isInternalDatabase() const
{
+#if QT_CONFIG(mimetype_database)
return m_directory == internalMimeFileName();
+#else
+ return false;
+#endif
}
-QMimeType QMimeXMLProvider::mimeTypeForName(const QString &name)
+bool QMimeXMLProvider::knowsMimeType(const QString &name)
{
- return m_nameMimeTypeMap.value(name);
+ return m_nameMimeTypeMap.contains(name);
}
void QMimeXMLProvider::addFileNameMatches(const QString &fileName, QMimeGlobMatchResult &result)
{
- m_mimeTypeGlobs.matchingGlobs(fileName, result);
+ auto filterFunc = [this](const QString &name) { return !isMimeTypeGlobsExcluded(name); };
+ m_mimeTypeGlobs.matchingGlobs(fileName, result, filterFunc);
}
-void QMimeXMLProvider::findByMagic(const QByteArray &data, int *accuracyPtr, QMimeType &candidate)
+void QMimeXMLProvider::findByMagic(const QByteArray &data, QMimeMagicResult &result)
{
- QString candidateName;
- bool foundOne = false;
- for (const QMimeMagicRuleMatcher &matcher : qAsConst(m_magicMatchers)) {
+ for (const QMimeMagicRuleMatcher &matcher : std::as_const(m_magicMatchers)) {
if (matcher.matches(data)) {
const int priority = matcher.priority();
- if (priority > *accuracyPtr) {
- *accuracyPtr = priority;
- candidateName = matcher.mimetype();
- foundOne = true;
+ if (priority > result.accuracy) {
+ result.accuracy = priority;
+ result.candidate = matcher.mimetype();
}
}
}
- if (foundOne)
- candidate = mimeTypeForName(candidateName);
}
void QMimeXMLProvider::ensureLoaded()
{
QStringList allFiles;
- const QString packageDir = m_directory + QStringLiteral("/packages");
+ const QString packageDir = m_directory + QStringView(u"/packages");
QDir dir(packageDir);
const QStringList files = dir.entryList(QDir::Files | QDir::NoDotAndDotDot);
- allFiles.reserve(files.count());
+ allFiles.reserve(files.size());
for (const QString &xmlFile : files)
- allFiles.append(packageDir + QLatin1Char('/') + xmlFile);
+ allFiles.append(packageDir + u'/' + xmlFile);
if (m_allFiles == allFiles)
return;
@@ -753,10 +747,35 @@ void QMimeXMLProvider::ensureLoaded()
//qDebug() << "Loading" << m_allFiles;
- for (const QString &file : qAsConst(allFiles))
+ for (const QString &file : std::as_const(allFiles))
load(file);
}
+QMimeTypePrivate::LocaleHash QMimeXMLProvider::localeComments(const QString &name)
+{
+ return m_nameMimeTypeMap.value(name).localeComments;
+}
+
+bool QMimeXMLProvider::hasGlobDeleteAll(const QString &name)
+{
+ return m_nameMimeTypeMap.value(name).hasGlobDeleteAll;
+}
+
+QStringList QMimeXMLProvider::globPatterns(const QString &name)
+{
+ return m_nameMimeTypeMap.value(name).globPatterns;
+}
+
+QString QMimeXMLProvider::icon(const QString &name)
+{
+ return m_nameMimeTypeMap.value(name).iconName;
+}
+
+QString QMimeXMLProvider::genericIcon(const QString &name)
+{
+ return m_nameMimeTypeMap.value(name).genericIconName;
+}
+
void QMimeXMLProvider::load(const QString &fileName)
{
QString errorMessage;
@@ -769,7 +788,7 @@ bool QMimeXMLProvider::load(const QString &fileName, QString *errorMessage)
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
if (errorMessage)
- *errorMessage = QLatin1String("Cannot open ") + fileName + QLatin1String(": ") + file.errorString();
+ *errorMessage = "Cannot open "_L1 + fileName + ": "_L1 + file.errorString();
return false;
}
@@ -798,10 +817,9 @@ void QMimeXMLProvider::addGlobPattern(const QMimeGlobPattern &glob)
m_mimeTypeGlobs.addGlob(glob);
}
-void QMimeXMLProvider::addMimeType(const QMimeType &mt)
+void QMimeXMLProvider::addMimeType(const QMimeTypeXMLData &mt)
{
- Q_ASSERT(!mt.d.data()->fromCache);
- m_nameMimeTypeMap.insert(mt.name(), mt);
+ m_nameMimeTypeMap.insert(mt.name, mt);
}
void QMimeXMLProvider::addParents(const QString &mime, QStringList &result)
@@ -820,13 +838,10 @@ void QMimeXMLProvider::addParent(const QString &child, const QString &parent)
void QMimeXMLProvider::addAliases(const QString &name, QStringList &result)
{
// Iterate through the whole hash. This method is rarely used.
- for (auto it = m_aliases.constBegin(), end = m_aliases.constEnd() ; it != end ; ++it) {
- if (it.value() == name) {
- if (!result.contains(it.key()))
- result.append(it.key());
- }
+ for (const auto &[alias, mimeName] : std::as_const(m_aliases).asKeyValueRange()) {
+ if (mimeName == name)
+ appendIfNew(result, alias);
}
-
}
QString QMimeXMLProvider::resolveAlias(const QString &name)
@@ -842,13 +857,16 @@ void QMimeXMLProvider::addAlias(const QString &alias, const QString &name)
void QMimeXMLProvider::addAllMimeTypes(QList<QMimeType> &result)
{
if (result.isEmpty()) { // fast path
- result = m_nameMimeTypeMap.values();
+ for (auto it = m_nameMimeTypeMap.constBegin(), end = m_nameMimeTypeMap.constEnd();
+ it != end; ++it) {
+ result.append(QMimeType(QMimeTypePrivate(it.value().name)));
+ }
} else {
for (auto it = m_nameMimeTypeMap.constBegin(), end = m_nameMimeTypeMap.constEnd() ; it != end ; ++it) {
const QString newMime = it.key();
if (std::find_if(result.constBegin(), result.constEnd(), [newMime](const QMimeType &mime) -> bool { return mime.name() == newMime; })
== result.constEnd())
- result.append(it.value());
+ result.append(QMimeType(QMimeTypePrivate(it.value().name)));
}
}
}
diff --git a/src/corelib/mimetypes/qmimeprovider_p.h b/src/corelib/mimetypes/qmimeprovider_p.h
index f9c8ef384c..3ded01cd46 100644
--- a/src/corelib/mimetypes/qmimeprovider_p.h
+++ b/src/corelib/mimetypes/qmimeprovider_p.h
@@ -1,42 +1,6 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMEPROVIDER_P_H
#define QMIMEPROVIDER_P_H
@@ -60,39 +24,61 @@ QT_REQUIRE_CONFIG(mimetype);
#include <QtCore/qdatetime.h>
#include <QtCore/qset.h>
+#include <map>
+
QT_BEGIN_NAMESPACE
class QMimeMagicRuleMatcher;
+class QMimeTypeXMLData;
+class QMimeProviderBase;
+
+struct QMimeMagicResult
+{
+ bool isValid() const { return !candidate.isEmpty(); }
+
+ QString candidate;
+ int accuracy = 0;
+};
class QMimeProviderBase
{
+ Q_DISABLE_COPY(QMimeProviderBase)
+
public:
QMimeProviderBase(QMimeDatabasePrivate *db, const QString &directory);
virtual ~QMimeProviderBase() {}
virtual bool isValid() = 0;
virtual bool isInternalDatabase() const = 0;
- virtual QMimeType mimeTypeForName(const QString &name) = 0;
+ virtual bool knowsMimeType(const QString &name) = 0;
virtual void addFileNameMatches(const QString &fileName, QMimeGlobMatchResult &result) = 0;
virtual void addParents(const QString &mime, QStringList &result) = 0;
virtual QString resolveAlias(const QString &name) = 0;
virtual void addAliases(const QString &name, QStringList &result) = 0;
- virtual void findByMagic(const QByteArray &data, int *accuracyPtr, QMimeType &candidate) = 0;
+ virtual void findByMagic(const QByteArray &data, QMimeMagicResult &result) = 0;
virtual void addAllMimeTypes(QList<QMimeType> &result) = 0;
- virtual void loadIcon(QMimeTypePrivate &) {}
- virtual void loadGenericIcon(QMimeTypePrivate &) {}
- virtual void ensureLoaded() {}
+ virtual QMimeTypePrivate::LocaleHash localeComments(const QString &name) = 0;
+ virtual bool hasGlobDeleteAll(const QString &name) = 0;
+ virtual QStringList globPatterns(const QString &name) = 0;
+ virtual QString icon(const QString &name) = 0;
+ virtual QString genericIcon(const QString &name) = 0;
+ virtual void ensureLoaded() { }
QString directory() const { return m_directory; }
+ QMimeProviderBase *overrideProvider() const;
+ void setOverrideProvider(QMimeProviderBase *provider);
+ bool isMimeTypeGlobsExcluded(const QString &name) const;
+
QMimeDatabasePrivate *m_db;
QString m_directory;
+ QMimeProviderBase *m_overrideProvider = nullptr; // more "local" than this one
};
/*
Parses the files 'mime.cache' and 'types' on demand
*/
-class QMimeBinaryProvider : public QMimeProviderBase
+class QMimeBinaryProvider final : public QMimeProviderBase
{
public:
QMimeBinaryProvider(QMimeDatabasePrivate *db, const QString &directory);
@@ -100,38 +86,54 @@ public:
bool isValid() override;
bool isInternalDatabase() const override;
- QMimeType mimeTypeForName(const QString &name) override;
+ bool knowsMimeType(const QString &name) override;
void addFileNameMatches(const QString &fileName, QMimeGlobMatchResult &result) override;
void addParents(const QString &mime, QStringList &result) override;
QString resolveAlias(const QString &name) override;
void addAliases(const QString &name, QStringList &result) override;
- void findByMagic(const QByteArray &data, int *accuracyPtr, QMimeType &candidate) override;
+ void findByMagic(const QByteArray &data, QMimeMagicResult &result) override;
void addAllMimeTypes(QList<QMimeType> &result) override;
- static void loadMimeTypePrivate(QMimeTypePrivate &);
- void loadIcon(QMimeTypePrivate &) override;
- void loadGenericIcon(QMimeTypePrivate &) override;
+ QMimeTypePrivate::LocaleHash localeComments(const QString &name) override;
+ bool hasGlobDeleteAll(const QString &name) override;
+ QStringList globPatterns(const QString &name) override;
+ QString icon(const QString &name) override;
+ QString genericIcon(const QString &name) override;
void ensureLoaded() override;
private:
struct CacheFile;
- void matchGlobList(QMimeGlobMatchResult &result, CacheFile *cacheFile, int offset, const QString &fileName);
- bool matchSuffixTree(QMimeGlobMatchResult &result, CacheFile *cacheFile, int numEntries, int firstOffset, const QString &fileName, int charPos, bool caseSensitiveCheck);
- bool matchMagicRule(CacheFile *cacheFile, int numMatchlets, int firstOffset, const QByteArray &data);
- QLatin1String iconForMime(CacheFile *cacheFile, int posListOffset, const QByteArray &inputMime);
+ int matchGlobList(QMimeGlobMatchResult &result, CacheFile *cacheFile, int offset,
+ const QString &fileName);
+ bool matchSuffixTree(QMimeGlobMatchResult &result, CacheFile *cacheFile, int numEntries,
+ int firstOffset, const QString &fileName, qsizetype charPos,
+ bool caseSensitiveCheck);
+ bool matchMagicRule(CacheFile *cacheFile, int numMatchlets, int firstOffset,
+ const QByteArray &data);
+ QLatin1StringView iconForMime(CacheFile *cacheFile, int posListOffset, const QByteArray &inputMime);
void loadMimeTypeList();
bool checkCacheChanged();
- CacheFile *m_cacheFile = nullptr;
+ std::unique_ptr<CacheFile> m_cacheFile;
QStringList m_cacheFileNames;
QSet<QString> m_mimetypeNames;
bool m_mimetypeListLoaded;
+ struct MimeTypeExtra
+ {
+ QHash<QString, QString> localeComments;
+ QStringList globPatterns;
+ bool hasGlobDeleteAll = false;
+ };
+ using MimeTypeExtraMap = std::map<QString, MimeTypeExtra>;
+ MimeTypeExtraMap m_mimetypeExtra;
+
+ MimeTypeExtraMap::const_iterator loadMimeTypeExtra(const QString &mimeName);
};
/*
Parses the raw XML files (slower)
*/
-class QMimeXMLProvider : public QMimeProviderBase
+class QMimeXMLProvider final : public QMimeProviderBase
{
public:
enum InternalDatabaseEnum { InternalDatabase };
@@ -146,19 +148,24 @@ public:
bool isValid() override;
bool isInternalDatabase() const override;
- QMimeType mimeTypeForName(const QString &name) override;
+ bool knowsMimeType(const QString &name) override;
void addFileNameMatches(const QString &fileName, QMimeGlobMatchResult &result) override;
void addParents(const QString &mime, QStringList &result) override;
QString resolveAlias(const QString &name) override;
void addAliases(const QString &name, QStringList &result) override;
- void findByMagic(const QByteArray &data, int *accuracyPtr, QMimeType &candidate) override;
+ void findByMagic(const QByteArray &data, QMimeMagicResult &result) override;
void addAllMimeTypes(QList<QMimeType> &result) override;
void ensureLoaded() override;
+ QMimeTypePrivate::LocaleHash localeComments(const QString &name) override;
+ bool hasGlobDeleteAll(const QString &name) override;
+ QStringList globPatterns(const QString &name) override;
+ QString icon(const QString &name) override;
+ QString genericIcon(const QString &name) override;
bool load(const QString &fileName, QString *errorMessage);
// Called by the mimetype xml parser
- void addMimeType(const QMimeType &mt);
+ void addMimeType(const QMimeTypeXMLData &mt);
void addGlobPattern(const QMimeGlobPattern &glob);
void addParent(const QString &child, const QString &parent);
void addAlias(const QString &alias, const QString &name);
@@ -168,7 +175,7 @@ private:
void load(const QString &fileName);
void load(const char *data, qsizetype len);
- typedef QHash<QString, QMimeType> NameMimeTypeMap;
+ typedef QHash<QString, QMimeTypeXMLData> NameMimeTypeMap;
NameMimeTypeMap m_nameMimeTypeMap;
typedef QHash<QString, QString> AliasHash;
diff --git a/src/corelib/mimetypes/qmimetype.cpp b/src/corelib/mimetypes/qmimetype.cpp
index 3c10360561..ad3c484f30 100644
--- a/src/corelib/mimetypes/qmimetype.cpp
+++ b/src/corelib/mimetypes/qmimetype.cpp
@@ -1,50 +1,11 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qmimetype.h"
#include "qmimetype_p.h"
#include "qmimedatabase_p.h"
-#include "qmimeprovider_p.h"
-
-#include "qmimeglobpattern_p.h"
#include <QtCore/QDebug>
#include <QtCore/QLocale>
@@ -54,32 +15,7 @@
QT_BEGIN_NAMESPACE
-QMimeTypePrivate::QMimeTypePrivate()
- : loaded(false), fromCache(false)
-{}
-
-QMimeTypePrivate::QMimeTypePrivate(const QMimeType &other)
- : loaded(other.d->loaded),
- name(other.d->name),
- localeComments(other.d->localeComments),
- genericIconName(other.d->genericIconName),
- iconName(other.d->iconName),
- globPatterns(other.d->globPatterns)
-{}
-
-void QMimeTypePrivate::clear()
-{
- name.clear();
- localeComments.clear();
- genericIconName.clear();
- iconName.clear();
- globPatterns.clear();
-}
-
-void QMimeTypePrivate::addGlobPattern(const QString &pattern)
-{
- globPatterns.append(pattern);
-}
+using namespace Qt::StringLiterals;
/*!
\class QMimeType
@@ -104,7 +40,7 @@ void QMimeTypePrivate::addGlobPattern(const QString &pattern)
MIME types can inherit from each other: for instance a C source file is
a specific type of plain text file, so text/x-csrc inherits text/plain.
- \sa QMimeDatabase, {MIME Type Browser Example}
+ \sa QMimeDatabase, {MIME Type Browser}
*/
/*!
@@ -253,24 +189,38 @@ QString QMimeType::name() const
*/
QString QMimeType::comment() const
{
- QMimeDatabasePrivate::instance()->loadMimeTypePrivate(const_cast<QMimeTypePrivate&>(*d));
-
- QStringList languageList;
- languageList << QLocale().name();
- languageList << QLocale().uiLanguages();
- languageList << QLatin1String("default"); // use the default locale if possible.
- for (const QString &language : qAsConst(languageList)) {
- const QString lang = language == QLatin1String("C") ? QLatin1String("en_US") : language;
- const QString comm = d->localeComments.value(lang);
+ const auto localeComments = QMimeDatabasePrivate::instance()->localeComments(d->name);
+
+ QStringList languageList = QLocale().uiLanguages(QLocale::TagSeparator::Underscore);
+ qsizetype defaultIndex = languageList.indexOf(u"en_US"_s);
+
+ // Include the default locale as fall-back.
+ if (defaultIndex >= 0) {
+ // en_US is generally the default, and may be omitted from the
+ // overtly-named locales in the MIME type's data (QTBUG-105007).
+ ++defaultIndex; // Skip over en_US.
+ // That's typically followed by en_Latn_US and en (in that order):
+ if (defaultIndex < languageList.size() && languageList.at(defaultIndex) == u"en_Latn_US")
+ ++defaultIndex;
+ if (defaultIndex < languageList.size() && languageList.at(defaultIndex) == u"en")
+ ++defaultIndex;
+ } else {
+ // Absent en-US, just append it:
+ defaultIndex = languageList.size();
+ }
+ languageList.insert(defaultIndex, u"default"_s);
+
+ for (const QString &language : std::as_const(languageList)) {
+ const QString lang = language == "C"_L1 ? u"en_US"_s : language;
+ QString comm = localeComments.value(lang);
if (!comm.isEmpty())
return comm;
- const int pos = lang.indexOf(QLatin1Char('_'));
- if (pos != -1) {
- // "pt_BR" not found? try just "pt"
- const QString shortLang = lang.left(pos);
- const QString commShort = d->localeComments.value(shortLang);
- if (!commShort.isEmpty())
- return commShort;
+ const qsizetype cut = lang.indexOf(u'_');
+ // If "de_CH" is missing, check for "de" (and similar):
+ if (cut != -1) {
+ comm = localeComments.value(lang.left(cut));
+ if (!comm.isEmpty())
+ return comm;
}
}
@@ -294,8 +244,8 @@ QString QMimeType::comment() const
*/
QString QMimeType::genericIconName() const
{
- QMimeDatabasePrivate::instance()->loadGenericIcon(const_cast<QMimeTypePrivate&>(*d));
- if (d->genericIconName.isEmpty()) {
+ QString genericIconName = QMimeDatabasePrivate::instance()->genericIcon(d->name);
+ if (genericIconName.isEmpty()) {
// From the spec:
// If the generic icon name is empty (not specified by the mimetype definition)
// then the mimetype is used to generate the generic icon by using the top-level
@@ -303,19 +253,19 @@ QString QMimeType::genericIconName() const
// (i.e. "video-x-generic" in the previous example).
const QString group = name();
QStringView groupRef(group);
- const int slashindex = groupRef.indexOf(QLatin1Char('/'));
+ const qsizetype slashindex = groupRef.indexOf(u'/');
if (slashindex != -1)
groupRef = groupRef.left(slashindex);
- return groupRef + QLatin1String("-x-generic");
+ return groupRef + "-x-generic"_L1;
}
- return d->genericIconName;
+ return genericIconName;
}
static QString make_default_icon_name_from_mimetype_name(QString iconName)
{
- const int slashindex = iconName.indexOf(QLatin1Char('/'));
+ const qsizetype slashindex = iconName.indexOf(u'/');
if (slashindex != -1)
- iconName[slashindex] = QLatin1Char('-');
+ iconName[slashindex] = u'-';
return iconName;
}
@@ -330,11 +280,11 @@ static QString make_default_icon_name_from_mimetype_name(QString iconName)
*/
QString QMimeType::iconName() const
{
- QMimeDatabasePrivate::instance()->loadIcon(const_cast<QMimeTypePrivate&>(*d));
- if (d->iconName.isEmpty()) {
+ QString iconName = QMimeDatabasePrivate::instance()->icon(d->name);
+ if (iconName.isEmpty()) {
return make_default_icon_name_from_mimetype_name(name());
}
- return d->iconName;
+ return iconName;
}
/*!
@@ -346,8 +296,7 @@ QString QMimeType::iconName() const
*/
QStringList QMimeType::globPatterns() const
{
- QMimeDatabasePrivate::instance()->loadMimeTypePrivate(const_cast<QMimeTypePrivate&>(*d));
- return d->globPatterns;
+ return QMimeDatabasePrivate::instance()->globPatterns(d->name);
}
/*!
@@ -376,14 +325,17 @@ QStringList QMimeType::parentMimeTypes() const
static void collectParentMimeTypes(const QString &mime, QStringList &allParents)
{
const QStringList parents = QMimeDatabasePrivate::instance()->mimeParents(mime);
+ QStringList newParents;
for (const QString &parent : parents) {
// I would use QSet, but since order matters I better not
- if (!allParents.contains(parent))
+ if (!allParents.contains(parent)) {
allParents.append(parent);
+ newParents.append(parent);
+ }
}
// We want a breadth-first search, so that the least-specific parent (octet-stream) is last
// This means iterating twice, unfortunately.
- for (const QString &parent : parents)
+ for (const QString &parent : newParents)
collectParentMimeTypes(parent, allParents);
}
@@ -441,14 +393,15 @@ QStringList QMimeType::aliases() const
*/
QStringList QMimeType::suffixes() const
{
- QMimeDatabasePrivate::instance()->loadMimeTypePrivate(const_cast<QMimeTypePrivate&>(*d));
+ const QStringList patterns = globPatterns();
QStringList result;
- for (const QString &pattern : qAsConst(d->globPatterns)) {
+ result.reserve(patterns.size());
+ for (const QString &pattern : patterns) {
// Not a simple suffix if it looks like: README or *. or *.* or *.JP*G or *.JP?
- if (pattern.startsWith(QLatin1String("*.")) &&
- pattern.length() > 2 &&
- pattern.indexOf(QLatin1Char('*'), 2) < 0 && pattern.indexOf(QLatin1Char('?'), 2) < 0) {
+ if (pattern.startsWith("*."_L1) &&
+ pattern.size() > 2 &&
+ pattern.indexOf(u'*', 2) < 0 && pattern.indexOf(u'?', 2) < 0) {
const QString suffix = pattern.mid(2);
result.append(suffix);
}
@@ -484,17 +437,11 @@ QString QMimeType::preferredSuffix() const
*/
QString QMimeType::filterString() const
{
- QMimeDatabasePrivate::instance()->loadMimeTypePrivate(const_cast<QMimeTypePrivate&>(*d));
+ const QStringList patterns = globPatterns();
QString filter;
- if (!d->globPatterns.empty()) {
- filter += comment() + QLatin1String(" (");
- for (int i = 0; i < d->globPatterns.size(); ++i) {
- if (i != 0)
- filter += QLatin1Char(' ');
- filter += d->globPatterns.at(i);
- }
- filter += QLatin1Char(')');
+ if (!patterns.isEmpty()) {
+ filter = comment() + " ("_L1 + patterns.join(u' ') + u')';
}
return filter;
@@ -529,3 +476,5 @@ QDebug operator<<(QDebug debug, const QMimeType &mime)
#endif
QT_END_NAMESPACE
+
+#include "moc_qmimetype.cpp"
diff --git a/src/corelib/mimetypes/qmimetype.h b/src/corelib/mimetypes/qmimetype.h
index 5aabbb449e..3421638f5b 100644
--- a/src/corelib/mimetypes/qmimetype.h
+++ b/src/corelib/mimetypes/qmimetype.h
@@ -1,42 +1,6 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// Copyright (C) 2015 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMETYPE_H
#define QMIMETYPE_H
@@ -78,10 +42,10 @@ public:
QMimeType();
QMimeType(const QMimeType &other);
QMimeType &operator=(const QMimeType &other);
- QMimeType &operator=(QMimeType &&other) noexcept { swap(other); return *this; }
+ QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_PURE_SWAP(QMimeType)
void swap(QMimeType &other) noexcept
{
- qSwap(d, other.d);
+ d.swap(other.d);
}
explicit QMimeType(const QMimeTypePrivate &dd);
~QMimeType();
diff --git a/src/corelib/mimetypes/qmimetype_p.h b/src/corelib/mimetypes/qmimetype_p.h
index 0d6b4b4b12..b6040098a9 100644
--- a/src/corelib/mimetypes/qmimetype_p.h
+++ b/src/corelib/mimetypes/qmimetype_p.h
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMETYPE_P_H
#define QMIMETYPE_P_H
@@ -52,13 +16,14 @@
//
#include <QtCore/private/qglobal_p.h>
-#include "qmimetype.h"
+#include <QtCore/qshareddata.h>
QT_REQUIRE_CONFIG(mimetype);
#include <QtCore/qhash.h>
#include <QtCore/qstringlist.h>
+class QMimeBinaryProvider;
QT_BEGIN_NAMESPACE
class Q_AUTOTEST_EXPORT QMimeTypePrivate : public QSharedData
@@ -66,41 +31,12 @@ class Q_AUTOTEST_EXPORT QMimeTypePrivate : public QSharedData
public:
typedef QHash<QString, QString> LocaleHash;
- QMimeTypePrivate();
- explicit QMimeTypePrivate(const QMimeType &other);
+ QMimeTypePrivate() { }
+ explicit QMimeTypePrivate(const QString &name) : name(name) { }
- void clear();
-
- void addGlobPattern(const QString &pattern);
-
- bool loaded; // QSharedData leaves a 4 byte gap, so don't put 8 byte members first
- bool fromCache; // true if this comes from the binary provider
QString name;
- LocaleHash localeComments;
- QString genericIconName;
- QString iconName;
- QStringList globPatterns;
};
QT_END_NAMESPACE
-#define QMIMETYPE_BUILDER_FROM_RVALUE_REFS \
- QT_BEGIN_NAMESPACE \
- static QMimeType buildQMimeType ( \
- QString &&name, \
- QString &&genericIconName, \
- QString &&iconName, \
- QStringList &&globPatterns \
- ) \
- { \
- QMimeTypePrivate qMimeTypeData; \
- qMimeTypeData.loaded = true; \
- qMimeTypeData.name = std::move(name); \
- qMimeTypeData.genericIconName = std::move(genericIconName); \
- qMimeTypeData.iconName = std::move(iconName); \
- qMimeTypeData.globPatterns = std::move(globPatterns); \
- return QMimeType(qMimeTypeData); \
- } \
- QT_END_NAMESPACE
-
-#endif // QMIMETYPE_P_H
+#endif // QMIMETYPE_P_H
diff --git a/src/corelib/mimetypes/qmimetypeparser.cpp b/src/corelib/mimetypes/qmimetypeparser.cpp
index c874e5a6b4..3f1e53b25d 100644
--- a/src/corelib/mimetypes/qmimetypeparser.cpp
+++ b/src/corelib/mimetypes/qmimetypeparser.cpp
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#define QT_NO_CAST_FROM_ASCII
@@ -53,6 +17,8 @@
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+
// XML tags in MIME files
static const char mimeInfoTagC[] = "mime-info";
static const char mimeTypeTagC[] = "mime-type";
@@ -112,13 +78,13 @@ QMimeTypeParserBase::ParseState QMimeTypeParserBase::nextState(ParseState curren
{
switch (currentState) {
case ParseBeginning:
- if (startElement == QLatin1String(mimeInfoTagC))
+ if (startElement == QLatin1StringView(mimeInfoTagC))
return ParseMimeInfo;
- if (startElement == QLatin1String(mimeTypeTagC))
+ if (startElement == QLatin1StringView(mimeTypeTagC))
return ParseMimeType;
return ParseError;
case ParseMimeInfo:
- return startElement == QLatin1String(mimeTypeTagC) ? ParseMimeType : ParseError;
+ return startElement == QLatin1StringView(mimeTypeTagC) ? ParseMimeType : ParseError;
case ParseMimeType:
case ParseComment:
case ParseGenericIcon:
@@ -129,29 +95,29 @@ QMimeTypeParserBase::ParseState QMimeTypeParserBase::nextState(ParseState curren
case ParseAlias:
case ParseOtherMimeTypeSubTag:
case ParseMagicMatchRule:
- if (startElement == QLatin1String(mimeTypeTagC)) // Sequence of <mime-type>
+ if (startElement == QLatin1StringView(mimeTypeTagC)) // Sequence of <mime-type>
return ParseMimeType;
- if (startElement == QLatin1String(commentTagC ))
+ if (startElement == QLatin1StringView(commentTagC))
return ParseComment;
- if (startElement == QLatin1String(genericIconTagC))
+ if (startElement == QLatin1StringView(genericIconTagC))
return ParseGenericIcon;
- if (startElement == QLatin1String(iconTagC))
+ if (startElement == QLatin1StringView(iconTagC))
return ParseIcon;
- if (startElement == QLatin1String(globTagC))
+ if (startElement == QLatin1StringView(globTagC))
return ParseGlobPattern;
- if (startElement == QLatin1String(globDeleteAllTagC))
+ if (startElement == QLatin1StringView(globDeleteAllTagC))
return ParseGlobDeleteAll;
- if (startElement == QLatin1String(subClassTagC))
+ if (startElement == QLatin1StringView(subClassTagC))
return ParseSubClass;
- if (startElement == QLatin1String(aliasTagC))
+ if (startElement == QLatin1StringView(aliasTagC))
return ParseAlias;
- if (startElement == QLatin1String(magicTagC))
+ if (startElement == QLatin1StringView(magicTagC))
return ParseMagic;
- if (startElement == QLatin1String(matchTagC))
+ if (startElement == QLatin1StringView(matchTagC))
return ParseMagicMatchRule;
return ParseOtherMimeTypeSubTag;
case ParseMagic:
- if (startElement == QLatin1String(matchTagC))
+ if (startElement == QLatin1StringView(matchTagC))
return ParseMagicMatchRule;
break;
case ParseError:
@@ -167,14 +133,15 @@ bool QMimeTypeParserBase::parseNumber(QStringView n, int *target, QString *error
*target = n.toInt(&ok);
if (Q_UNLIKELY(!ok)) {
if (errorMessage)
- *errorMessage = QLatin1String("Not a number '") + n + QLatin1String("'.");
+ *errorMessage = "Not a number '"_L1 + n + "'."_L1;
return false;
}
return true;
}
-#ifndef QT_NO_XMLSTREAMREADER
-struct CreateMagicMatchRuleResult {
+#if QT_CONFIG(xmlstreamreader)
+struct CreateMagicMatchRuleResult
+{
QString errorMessage; // must be first
QMimeMagicRule rule;
@@ -187,24 +154,18 @@ struct CreateMagicMatchRuleResult {
static CreateMagicMatchRuleResult createMagicMatchRule(const QXmlStreamAttributes &atts)
{
- const auto type = atts.value(QLatin1String(matchTypeAttributeC));
- const auto value = atts.value(QLatin1String(matchValueAttributeC));
- const auto offsets = atts.value(QLatin1String(matchOffsetAttributeC));
- const auto mask = atts.value(QLatin1String(matchMaskAttributeC));
+ const auto type = atts.value(QLatin1StringView(matchTypeAttributeC));
+ const auto value = atts.value(QLatin1StringView(matchValueAttributeC));
+ const auto offsets = atts.value(QLatin1StringView(matchOffsetAttributeC));
+ const auto mask = atts.value(QLatin1StringView(matchMaskAttributeC));
return CreateMagicMatchRuleResult(type, value, offsets, mask);
}
-#endif
+#endif // feature xmlstreamreader
bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString *errorMessage)
{
-#ifdef QT_NO_XMLSTREAMREADER
- Q_UNUSED(dev);
- if (errorMessage)
- *errorMessage = QString::fromLatin1("QXmlStreamReader is not available, cannot parse '%1'.").arg(fileName);
- return false;
-#else
- QMimeTypePrivate data;
- data.loaded = true;
+#if QT_CONFIG(xmlstreamreader)
+ QMimeTypeXMLData data;
int priority = 50;
QStack<QMimeMagicRule *> currentRules; // stack for the nesting of rules
QList<QMimeMagicRule> rules; // toplevel rules
@@ -217,7 +178,7 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
const QXmlStreamAttributes atts = reader.attributes();
switch (ps) {
case ParseMimeType: { // start parsing a MIME type name
- const QString name = atts.value(QLatin1String(mimeTypeAttributeC)).toString();
+ const QString name = atts.value(QLatin1StringView(mimeTypeAttributeC)).toString();
if (name.isEmpty()) {
reader.raiseError(QStringLiteral("Missing 'type'-attribute"));
} else {
@@ -226,15 +187,15 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
}
break;
case ParseGenericIcon:
- data.genericIconName = atts.value(QLatin1String(nameAttributeC)).toString();
+ data.genericIconName = atts.value(QLatin1StringView(nameAttributeC)).toString();
break;
case ParseIcon:
- data.iconName = atts.value(QLatin1String(nameAttributeC)).toString();
+ data.iconName = atts.value(QLatin1StringView(nameAttributeC)).toString();
break;
case ParseGlobPattern: {
- const QString pattern = atts.value(QLatin1String(patternAttributeC)).toString();
- unsigned weight = atts.value(QLatin1String(weightAttributeC)).toInt();
- const bool caseSensitive = atts.value(QLatin1String(caseSensitiveAttributeC)) == QLatin1String("true");
+ const QString pattern = atts.value(QLatin1StringView(patternAttributeC)).toString();
+ unsigned weight = atts.value(QLatin1StringView(weightAttributeC)).toInt();
+ const bool caseSensitive = atts.value(QLatin1StringView(caseSensitiveAttributeC)) == "true"_L1;
if (weight == 0)
weight = QMimeGlobPattern::DefaultWeight;
@@ -248,16 +209,17 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
break;
case ParseGlobDeleteAll:
data.globPatterns.clear();
+ data.hasGlobDeleteAll = true;
break;
case ParseSubClass: {
- const QString inheritsFrom = atts.value(QLatin1String(mimeTypeAttributeC)).toString();
+ const QString inheritsFrom = atts.value(QLatin1StringView(mimeTypeAttributeC)).toString();
if (!inheritsFrom.isEmpty())
processParent(data.name, inheritsFrom);
}
break;
case ParseComment: {
// comments have locale attributes.
- QString locale = atts.value(QLatin1String(localeAttributeC)).toString();
+ QString locale = atts.value(QLatin1StringView(localeAttributeC)).toString();
const QString comment = reader.readElementText();
if (locale.isEmpty())
locale = QString::fromLatin1("default");
@@ -265,14 +227,14 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
}
break;
case ParseAlias: {
- const QString alias = atts.value(QLatin1String(mimeTypeAttributeC)).toString();
+ const QString alias = atts.value(QLatin1StringView(mimeTypeAttributeC)).toString();
if (!alias.isEmpty())
processAlias(alias, data.name);
}
break;
case ParseMagic: {
priority = 50;
- const auto priorityS = atts.value(QLatin1String(priorityAttributeC));
+ const auto priorityS = atts.value(QLatin1StringView(priorityAttributeC));
if (!priorityS.isEmpty()) {
if (!parseNumber(priorityS, &priority, errorMessage))
return false;
@@ -298,7 +260,7 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
break;
}
case ParseError:
- reader.raiseError(QLatin1String("Unexpected element <") + reader.name() + QLatin1Char('>'));
+ reader.raiseError("Unexpected element <"_L1 + reader.name() + u'>');
break;
default:
break;
@@ -309,15 +271,15 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
case QXmlStreamReader::EndElement: // Finished element
{
const auto elementName = reader.name();
- if (elementName == QLatin1String(mimeTypeTagC)) {
- if (!process(QMimeType(data), errorMessage))
+ if (elementName == QLatin1StringView(mimeTypeTagC)) {
+ if (!process(data, errorMessage))
return false;
data.clear();
- } else if (elementName == QLatin1String(matchTagC)) {
+ } else if (elementName == QLatin1StringView(matchTagC)) {
// Closing a <match> tag, pop stack
currentRules.pop();
//qDebug() << " MATCH closed. Stack size is now" << currentRules.size();
- } else if (elementName == QLatin1String(magicTagC)) {
+ } else if (elementName == QLatin1StringView(magicTagC)) {
//qDebug() << "MAGIC ended, we got" << rules.count() << "rules, with prio" << priority;
// Finished a <magic> sequence
QMimeMagicRuleMatcher ruleMatcher(data.name, priority);
@@ -343,7 +305,27 @@ bool QMimeTypeParserBase::parse(QIODevice *dev, const QString &fileName, QString
}
return true;
-#endif //QT_NO_XMLSTREAMREADER
+#else
+ Q_UNUSED(dev);
+ if (errorMessage)
+ *errorMessage = "QXmlStreamReader is not available, cannot parse '%1'."_L1.arg(fileName);
+ return false;
+#endif // feature xmlstreamreader
+}
+
+void QMimeTypeXMLData::clear()
+{
+ hasGlobDeleteAll = false;
+ name.clear();
+ localeComments.clear();
+ genericIconName.clear();
+ iconName.clear();
+ globPatterns.clear();
+}
+
+void QMimeTypeXMLData::addGlobPattern(const QString &pattern)
+{
+ globPatterns.append(pattern);
}
QT_END_NAMESPACE
diff --git a/src/corelib/mimetypes/qmimetypeparser_p.h b/src/corelib/mimetypes/qmimetypeparser_p.h
index 9634718ef1..d4266ffcc0 100644
--- a/src/corelib/mimetypes/qmimetypeparser_p.h
+++ b/src/corelib/mimetypes/qmimetypeparser_p.h
@@ -1,41 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QMIMETYPEPARSER_P_H
@@ -52,7 +16,7 @@
// We mean it.
//
-#include "qmimedatabase_p.h"
+#include <QtCore/qtconfigmacros.h>
QT_REQUIRE_CONFIG(mimetype);
@@ -60,6 +24,21 @@ QT_REQUIRE_CONFIG(mimetype);
QT_BEGIN_NAMESPACE
+class QMimeTypeXMLData
+{
+public:
+ void clear();
+
+ void addGlobPattern(const QString &pattern);
+
+ bool hasGlobDeleteAll = false; // true if the mimetype has a glob-deleteall tag
+ QString name;
+ QMimeTypePrivate::LocaleHash localeComments;
+ QString genericIconName; // TODO move to a struct that's specific to the XML provider
+ QString iconName; // TODO move to a struct that's specific to the XML provider
+ QStringList globPatterns;
+};
+
class QIODevice;
class QMimeTypeParserBase
@@ -75,7 +54,7 @@ public:
static bool parseNumber(QStringView n, int *target, QString *errorMessage);
protected:
- virtual bool process(const QMimeType &t, QString *errorMessage) = 0;
+ virtual bool process(const QMimeTypeXMLData &t, QString *errorMessage) = 0;
virtual bool process(const QMimeGlobPattern &t, QString *errorMessage) = 0;
virtual void processParent(const QString &child, const QString &parent) = 0;
virtual void processAlias(const QString &alias, const QString &name) = 0;
@@ -109,7 +88,7 @@ public:
explicit QMimeTypeParser(QMimeXMLProvider &provider) : m_provider(provider) {}
protected:
- inline bool process(const QMimeType &t, QString *) override
+ inline bool process(const QMimeTypeXMLData &t, QString *) override
{ m_provider.addMimeType(t); return true; }
inline bool process(const QMimeGlobPattern &glob, QString *) override