Ticket #9200: translations_dat_tool.diff

File translations_dat_tool.diff, 152.1 KB (added by criezy, 14 years ago)

Tool to generate translations.dat

  • tools/README

     
    6666    for further help.
    6767
    6868
     69create_translations (criezy)
     70-------------------
     71    Creates the translations.dat file from po files given as arguments.
     72    The generated files is used by ScummVM to propose a translated GUI.
     73
     74
    6975credits.pl
    7076----------
    7177   This perl script contains credits to the many people who helped with
  • tools/po2c

     
    1 #!/usr/bin/perl
    2 
    3 #
    4 # po2c - Converts .po files to C code
    5 #
    6 # Copyright (C) 2004      Angel Ortega <angel@triptico.com>
    7 #
    8 # This program is free software; you can redistribute it and/or modify
    9 # it under the terms of the GNU General Public License as published by
    10 # the Free Software Foundation; either version 2 of the License, or
    11 # (at your option) any later version.
    12 #
    13 # This program is distributed in the hope that it will be useful,
    14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16 # GNU General Public License for more details.
    17 #
    18 # You should have received a copy of the GNU General Public License
    19 # along with this program; if not, write to the Free Software
    20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    21 #
    22 # http://www.triptico.com
    23 #
    24 
    25 $VERSION = "1.0.2-scummvm";
    26 
    27 if(scalar(@ARGV) == 0)
    28 {
    29         print "Usage: po2c {po file[s]}\n";
    30         exit 1;
    31 }
    32 
    33 %msgs = ();
    34 %msgids = ();
    35 
    36 # stage 1: loading
    37 
    38 # arguments are .po files
    39 foreach my $f (@ARGV)
    40 {
    41         my ($lang);
    42         my ($langDesc);
    43 
    44         next unless(($lang) = ($f =~ /([^\/]+)\.po$/));
    45 
    46         if(open F, $f)
    47         {
    48                 my ($msgid, $val, %a);
    49 
    50                 while(<F>)
    51                 {
    52                         chomp;
    53 
    54                         # ignore blank lines or comments
    55                         next if /^$/ or /^#/;
    56 
    57                         if(/^msgid\s+\"(.*)\"\s*$/)
    58                         {
    59                                 # store previous msgid
    60                                 if(defined($msgid))
    61                                 {
    62                                         $a{$msgid} = $val;
    63                                         $msgids{$msgid} ++;
    64                                 }
    65 
    66                                 # start of msgid
    67                                 $val = $1;
    68                         }
    69                         elsif(/^msgstr\s+\"(.*)\"\s*$/)
    70                         {
    71                                 # store previous msgid
    72                                 $msgid = $val;
    73 
    74                                 # start of msgstr
    75                                 $val = $1;
    76                         }
    77                         elsif(/^\"(.*)\"\s*$/)
    78                         {
    79                                 # add to current value
    80                                 $val .= $1;
    81                         }
    82                 }
    83 
    84                 # store previous msgid
    85                 if(defined($msgid))
    86                 {
    87                         $a{$msgid} = $val;
    88                         $msgids{$msgid} ++;
    89                 }
    90 
    91                 close F;
    92 
    93                 # add to the global message pool
    94                 $msgs{$lang} = \%a;
    95         }
    96 }
    97 
    98 # stage 2: convert the data
    99 
    100 # stores all sorted msgids into @msgids
    101 @msgids = sort(keys(%msgids));
    102 
    103 # travels again, storing indexes into %msgids
    104 for(my $n = 0;$n < scalar(@msgids);$n++)
    105 {
    106         $msgids{$msgids[$n]} = $n;
    107 }
    108 
    109 # stage 3: dump as C++ code
    110 
    111 print "// generated by po2c $VERSION - Do not modify\n\n";
    112 
    113 # dump first the msgid array
    114 print "static const char * const _messageIds[] = {\n";
    115 
    116 for(my $n = 0;$n < scalar(@msgids);$n++)
    117 {
    118         print "\t/* $n */ \"" . $msgids[$n] . "\",\n";
    119 }
    120 
    121 print "\tNULL\n};\n\n";
    122 
    123 # dump the lang structure
    124 print "struct PoMessageEntry {\n";
    125 print "\tint msgid;\n";
    126 print "\tconst char *msgstr;\n";
    127 print "};\n\n";
    128 
    129 # dump now each language
    130 
    131 foreach my $l (keys(%msgs))
    132 {
    133         print "static const PoMessageEntry _translation_${l}\[\] = {\n";
    134 
    135         # get the translation table for the language $l
    136         my ($m) = $msgs{$l};
    137 
    138 #       while (my ($msgstr, $msgid) = each (%$m))
    139         foreach my $msgid (sort(keys(%$m)))
    140         {
    141                 my ($msgstr) = "";
    142 
    143                 # make it 7-bit safe
    144                 foreach $c (split(//, $m->{$msgid})) {
    145                         if (ord($c) > 0x7f) {
    146                                 $msgstr .= sprintf("\\%o", ord($c));
    147                         } else {
    148                                 $msgstr .= $c;
    149                         }
    150                 }
    151 
    152                 print "\t{ " . $msgids{$msgid} . ", \"" . $msgstr . "\" },\n"
    153                         if $msgstr;
    154         }
    155 
    156         print "\t{ -1, NULL }\n};\n\n";
    157 }
    158 
    159 # finally, dump the languages
    160 
    161 print "struct PoLangEntry {\n";
    162 print "\tconst char *lang;\n";
    163 print "\tconst char *charset;\n";
    164 print "\tconst char *langname;\n";
    165 print "\tconst PoMessageEntry *msgs;\n";
    166 print "};\n\n";
    167 print "const PoLangEntry _translations[] = {\n";
    168 
    169 foreach my $l (keys(%msgs))
    170 {
    171         # charset
    172         $header = $msgs{$l}->{""};
    173         $header =~ /charset=([^\\]+)/;
    174         $charset = $1;
    175         # user readable language name
    176         $lang = "NULL";
    177         $header = $msgs{$l}->{""};
    178         $header =~ /Language:[\s]*([^\\]*)/;
    179         unless ($1 eq "")
    180         {
    181                 $lang = "\"" . $1 . "\"";
    182         }
    183         print "\t{ \"" . $l . "\", \"" . $charset . "\", " . $lang . ", _translation_${l} },\n";
    184 }
    185 
    186 print "\t{ NULL, NULL, NULL, NULL }\n};\n\n";
    187 
    188 print "// code\n";
    189 print << 'EOF';
    190 
    191 static const PoMessageEntry *_currentTranslation = NULL;
    192 static int _currentTranslationMessageEntryCount = 0;
    193 static const char *_currentTranslationCharset = NULL;
    194 
    195 void po2c_setlang(const char *lang) {
    196         _currentTranslation = NULL;
    197         _currentTranslationMessageEntryCount = 0;
    198         _currentTranslationCharset = NULL;
    199 
    200         // if lang is NULL or "", deactivate it
    201         if (lang == NULL || *lang == '\0')
    202                 return;
    203 
    204         // searches for a valid language array
    205         for (int i = 0; _currentTranslation == NULL && _translations[i].lang != NULL; ++i) {
    206                 if (strcmp(lang, _translations[i].lang) == 0) {
    207                         _currentTranslation = _translations[i].msgs;
    208                         _currentTranslationCharset = _translations[i].charset;
    209                 }
    210         }
    211 
    212         // try partial searches
    213         for (int i = 0; _currentTranslation == NULL && _translations[i].lang != NULL; ++i) {
    214                 if (strncmp(lang, _translations[i].lang, 2) == 0) {
    215                         _currentTranslation = _translations[i].msgs;
    216                         _currentTranslationCharset = _translations[i].charset;
    217                 }
    218         }
    219 
    220         // if found, count entries
    221         if (_currentTranslation != NULL) {
    222                 for (const PoMessageEntry *m = _currentTranslation; m->msgid != -1; ++m)
    223                         ++_currentTranslationMessageEntryCount;
    224         }
    225 }
    226 
    227 const char *po2c_gettext(const char *msgid) {
    228         // if no language is set or msgid is empty, return msgid as is
    229         if (_currentTranslation == NULL || *msgid == '\0')
    230                 return msgid;
    231 
    232         // binary-search for the msgid
    233         int leftIndex = 0;
    234         int rightIndex = _currentTranslationMessageEntryCount - 1;
    235 
    236         while (rightIndex >= leftIndex) {
    237                 const int midIndex = (leftIndex + rightIndex) / 2;
    238                 const PoMessageEntry * const m = &_currentTranslation[midIndex];
    239 
    240                 const int compareResult = strcmp(msgid, _messageIds[m->msgid]);
    241 
    242                 if (compareResult == 0)
    243                         return m->msgstr;
    244                 else if (compareResult < 0)
    245                         rightIndex = midIndex - 1;
    246                 else
    247                         leftIndex = midIndex + 1;
    248         }
    249 
    250         return msgid;
    251 }
    252 
    253 const char *po2c_getcharset(void) {
    254         if (_currentTranslationCharset)
    255                 return _currentTranslationCharset;
    256         else
    257                 return "ASCII";
    258 }
    259 
    260 int po2c_getnumlangs(void) {
    261         return ARRAYSIZE(_translations) - 1;
    262 }
    263 
    264 const char *po2c_getlang(const int num) {
    265         assert(num < ARRAYSIZE(_translations));
    266         return _translations[num].lang;
    267 }
    268 
    269 const char *po2c_getlangname(const int num) {
    270         assert(num < ARRAYSIZE(_translations));
    271         if (_translations[num].langname != NULL)
    272                 return _translations[num].langname;
    273         return _translations[num].lang;
    274 }
    275 EOF
    276 
    277 exit 0;
  • tools/create_translations/po2c

     
     1#!/usr/bin/perl
     2
     3#
     4# po2c - Converts .po files to C code
     5#
     6# Copyright (C) 2004      Angel Ortega <angel@triptico.com>
     7#
     8# This program is free software; you can redistribute it and/or modify
     9# it under the terms of the GNU General Public License as published by
     10# the Free Software Foundation; either version 2 of the License, or
     11# (at your option) any later version.
     12#
     13# This program is distributed in the hope that it will be useful,
     14# but WITHOUT ANY WARRANTY; without even the implied warranty of
     15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     16# GNU General Public License for more details.
     17#
     18# You should have received a copy of the GNU General Public License
     19# along with this program; if not, write to the Free Software
     20# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     21#
     22# http://www.triptico.com
     23#
     24# This program has been modified to suit the needs of the ScummVM project.
     25#
     26
     27$VERSION = "1.0.2-scummvm";
     28
     29if(scalar(@ARGV) == 0)
     30{
     31        print "Usage: po2c {po file[s]}\n";
     32        exit 1;
     33}
     34
     35%msgs = ();
     36%msgids = ();
     37
     38# stage 1: loading
     39
     40# arguments are .po files
     41foreach my $f (@ARGV)
     42{
     43        my ($lang);
     44        my ($langDesc);
     45
     46        next unless(($lang) = ($f =~ /([^\/]+)\.po$/));
     47
     48        if(open F, $f)
     49        {
     50                my ($msgid, $val, %a);
     51
     52                while(<F>)
     53                {
     54                        chomp;
     55
     56                        # ignore blank lines or comments
     57                        next if /^$/ or /^#/;
     58
     59                        if(/^msgid\s+\"(.*)\"\s*$/)
     60                        {
     61                                # store previous msgid
     62                                if(defined($msgid))
     63                                {
     64                                        $a{$msgid} = $val;
     65                                        $msgids{$msgid} ++;
     66                                }
     67
     68                                # start of msgid
     69                                $val = $1;
     70                        }
     71                        elsif(/^msgstr\s+\"(.*)\"\s*$/)
     72                        {
     73                                # store previous msgid
     74                                $msgid = $val;
     75
     76                                # start of msgstr
     77                                $val = $1;
     78                        }
     79                        elsif(/^\"(.*)\"\s*$/)
     80                        {
     81                                # add to current value
     82                                $val .= $1;
     83                        }
     84                }
     85
     86                # store previous msgid
     87                if(defined($msgid))
     88                {
     89                        $a{$msgid} = $val;
     90                        $msgids{$msgid} ++;
     91                }
     92
     93                close F;
     94
     95                # add to the global message pool
     96                $msgs{$lang} = \%a;
     97        }
     98}
     99
     100# stage 2: convert the data
     101
     102# stores all sorted msgids into @msgids
     103@msgids = sort(keys(%msgids));
     104
     105# travels again, storing indexes into %msgids
     106for(my $n = 0;$n < scalar(@msgids);$n++)
     107{
     108        $msgids{$msgids[$n]} = $n;
     109}
     110
     111# stage 3: dump as C++ code
     112
     113print "// generated by po2c $VERSION - Do not modify\n\n";
     114
     115# dump first the msgid array
     116print "const char * const _messageIds[] = {\n";
     117
     118for(my $n = 0;$n < scalar(@msgids);$n++)
     119{
     120        print "\t/* $n */ \"" . $msgids[$n] . "\",\n";
     121}
     122
     123print "\tNULL\n};\n\n";
     124
     125# dump the lang structure
     126print "struct PoMessageEntry {\n";
     127print "\tint msgid;\n";
     128print "\tconst char *msgstr;\n";
     129print "};\n\n";
     130
     131# dump now each language
     132
     133foreach my $l (keys(%msgs))
     134{
     135        print "const PoMessageEntry _translation_${l}\[\] = {\n";
     136
     137        # get the translation table for the language $l
     138        my ($m) = $msgs{$l};
     139
     140#       while (my ($msgstr, $msgid) = each (%$m))
     141        foreach my $msgid (sort(keys(%$m)))
     142        {
     143                my ($msgstr) = "";
     144
     145                # make it 7-bit safe
     146                foreach $c (split(//, $m->{$msgid})) {
     147                        if (ord($c) > 0x7f) {
     148                                $msgstr .= sprintf("\\%o", ord($c));
     149                        } else {
     150                                $msgstr .= $c;
     151                        }
     152                }
     153
     154                print "\t{ " . $msgids{$msgid} . ", \"" . $msgstr . "\" },\n"
     155                        if $msgstr;
     156        }
     157
     158        print "\t{ -1, NULL }\n};\n\n";
     159}
     160
     161# finally, dump the languages
     162
     163print "struct PoLangEntry {\n";
     164print "\tconst char *lang;\n";
     165print "\tconst char *charset;\n";
     166print "\tconst char *langname;\n";
     167print "\tconst PoMessageEntry *msgs;\n";
     168print "};\n\n";
     169print "const PoLangEntry _translations[] = {\n";
     170
     171foreach my $l (keys(%msgs))
     172{
     173        # charset
     174        $header = $msgs{$l}->{""};
     175        $header =~ /charset=([^\\]+)/;
     176        $charset = $1;
     177        # user readable language name
     178        $lang = $l;
     179        $header = $msgs{$l}->{""};
     180        $header =~ /Language:[\s]*([^\\]*)/;
     181        unless ($1 eq "")
     182        {
     183                $lang = $1;
     184        }
     185        print "\t{ \"" . $l . "\", \"" . $charset . "\", \"" . $lang . "\", _translation_${l} },\n";
     186}
     187
     188print "\t{ NULL, NULL, NULL, NULL }\n};\n\n";
     189
     190exit 0;
  • tools/create_translations/create_translations.cpp

     
     1/* ScummVM - Graphic Adventure Engine
     2 *
     3 * ScummVM is the legal property of its developers, whose names
     4 * are too numerous to list here. Please refer to the COPYRIGHT
     5 * file distributed with this source distribution.
     6 *
     7 * This program is free software; you can redistribute it and/or
     8 * modify it under the terms of the GNU General Public License
     9 * as published by the Free Software Foundation; either version 2
     10 * of the License, or (at your option) any later version.
     11
     12 * This program is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16
     17 * You should have received a copy of the GNU General Public License
     18 * along with this program; if not, write to the Free Software
     19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
     20 *
     21 * This is a utility for create the translations.dat file from all the po files.
     22 * The generated files is used by ScummVM to propose translation of its GUI.
     23 */
     24
     25#include <stdio.h>
     26#include <stdlib.h>
     27#include <string.h>
     28
     29#include "create_translations.h"
     30
     31// Include messages
     32// This file is generated from the po files by the script po2c:
     33// tools/create_translations/po2c po/*.po > tools/create_translations/messages.h
     34#include "messages.h"
     35
     36#define TRANSLATIONS_DAT_VER 1  // 1 byte
     37
     38// Padding buffer (filled with 0) used if we want to aligned writes
     39// static uint8 padBuf[DATAALIGNMENT];
     40
     41// Utility functions
     42// Some of the function are very simple but are factored out so that it would require
     43// minor modifications if we want for example to aligne writes on 4 bytes.
     44void writeByte(FILE *fp, uint8 b) {
     45        fwrite(&b, 1, 1, fp);
     46}
     47
     48void writeUint16BE(FILE *fp, uint16 value) {
     49        writeByte(fp, (uint8)(value >> 8));
     50        writeByte(fp, (uint8)(value & 0xFF));
     51}
     52
     53int stringSize(const char* string) {
     54        // Each string is preceded by its size coded on 2 bytes
     55        int len = strlen(string) + 1;
     56        return 2 + len;
     57        // The two lines below are an example if we want to align string writes
     58        // pad = DATAALIGNMENT - (len + 2) % DATAALIGNMENT;
     59        // return 2 + len + pad;
     60}
     61
     62void writeString(FILE *fp, const char* string) {
     63        // Each string is preceded by its size coded on 2 bytes
     64        int len = strlen(string) + 1;
     65        writeUint16BE(fp, len);
     66        fwrite(string, len, 1, fp);
     67        // The commented lines below are an example if we want to align string writes
     68        // It replaces the two lines above.
     69        // int pad = DATAALIGNMENT - (len + 2) % DATAALIGNMENT;
     70        // writeUint16BE(fp, len + pad);
     71        // fwrite(string, len, 1, fp);
     72        // fwrite(padBuf, pad, 1, fp);
     73}
     74
     75int translationArraySize(const PoMessageEntry *msgs) {
     76        // ARRAYSIZE() macro does not work on _translations[index].msgs
     77        // We rely on the fact that the item of the array has an id of 1 instead.
     78        int size = 0;
     79        while (msgs[size].msgid != -1) {
     80                size++;
     81        }
     82        return size;
     83}
     84
     85// Main
     86int main(int argc, char *argv[]) {
     87        FILE* outFile;
     88        int numLangs = ARRAYSIZE(_translations) - 1;
     89        int numMessages = ARRAYSIZE(_messageIds) - 1;
     90        int i, lang, nb;
     91        int len;
     92
     93        // Padding buffer initialization (filled with 0)
     94        // used if we want to aligned writes
     95        // for (i = 0; i < DATAALIGNMENT; i++)
     96        //      padBuf[i] = 0;
     97
     98        outFile = fopen("translations.dat", "wb");
     99
     100        // Write header
     101        fwrite("TRANSLATIONS", 12, 1, outFile);
     102
     103        writeByte(outFile, TRANSLATIONS_DAT_VER);
     104
     105        // Write number of translations
     106        writeUint16BE(outFile, numLangs);
     107       
     108        // Write the length of each data block here.
     109        // We could write it at the start of each block but that would mean than
     110        // to go to block 4 we would have to go at the start of each preceding block,
     111        // read it size and skip it until we arrive at the block we want.
     112        // By having all the sizes at the start we just need to read the start of the
     113        // file and can then skip to the block we want.
     114        // Blocks are:
     115        //   1. List of languages with the language name
     116        //   2. Original messages (i.e. english)
     117        //   3. First translation
     118        //   4. Second translation
     119        //   ...
     120       
     121        // Write length for translation description
     122        // Each description
     123        len = 0;
     124        for (lang = 0; lang < numLangs; lang++) {
     125                len += stringSize(_translations[lang].lang);
     126                len += stringSize(_translations[lang].langname);
     127        }
     128        writeUint16BE(outFile, len);
     129       
     130        // Write size for the original language (english) block
     131        // It starts with the number of strings coded on 2 bytes followed by each
     132        // string (two bytes for the number of chars and the string itself).
     133        len = 2;
     134        for (i = 0; i < numMessages ; ++i)
     135                len += stringSize(_messageIds[i]);
     136        writeUint16BE(outFile, len);
     137
     138        // Then comes the size of each translation block.
     139        // It starts with the number of strings coded on 2 bytes, the charset and then the strings.
     140        // For each string we have the string id (on two bytes) followed by
     141        // the string size (two bytes for the number of chars and the string itself).
     142        for (lang = 0; lang < numLangs; lang++) {
     143                len = 2 + stringSize(_translations[lang].charset);
     144                nb = translationArraySize(_translations[lang].msgs);
     145                for (i = 0; i < nb ; ++i)
     146                        len += 2 + stringSize(_translations[lang].msgs[i].msgstr);
     147                writeUint16BE(outFile, len);
     148        }
     149
     150        // Write list of languages
     151        for (lang = 0; lang < numLangs; lang++) {
     152                writeString(outFile, _translations[lang].lang);
     153                writeString(outFile, _translations[lang].langname);
     154        }
     155       
     156        // Write original messages
     157        writeUint16BE(outFile, numMessages);
     158        for (i = 0; i < numMessages ; ++i) {
     159                writeString(outFile, _messageIds[i]);
     160        }
     161       
     162        // Write translations
     163        for (lang = 0; lang < numLangs; lang++) {
     164                nb = translationArraySize(_translations[lang].msgs);
     165                writeUint16BE(outFile, nb);
     166                writeString(outFile, _translations[lang].charset);
     167                for (i = 0; i < nb ; ++i) {
     168                        writeUint16BE(outFile, _translations[lang].msgs[i].msgid);
     169                        writeString(outFile, _translations[lang].msgs[i].msgstr);
     170                }
     171        }
     172
     173        fclose(outFile);
     174
     175        return 0;
     176}
  • tools/create_translations/create_translations.h

     
     1/* ScummVM - Graphic Adventure Engine
     2 *
     3 * ScummVM is the legal property of its developers, whose names
     4 * are too numerous to list here. Please refer to the COPYRIGHT
     5 * file distributed with this source distribution.
     6 *
     7 * This program is free software; you can redistribute it and/or
     8 * modify it under the terms of the GNU General Public License
     9 * as published by the Free Software Foundation; either version 2
     10 * of the License, or (at your option) any later version.
     11
     12 * This program is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16
     17 * You should have received a copy of the GNU General Public License
     18 * along with this program; if not, write to the Free Software
     19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
     20 *
     21 */
     22
     23#ifndef CREATE_TRANSLATIONS_H
     24#define CREATE_TRANSLATIONS_H
     25
     26#define ARRAYSIZE(x) ((int)(sizeof(x) / sizeof(x[0])))
     27
     28typedef unsigned char   uint8;
     29typedef unsigned short uint16;
     30typedef signed short int16;
     31
     32#endif /* CREATE_TRANSLATIONS_H */
  • tools/create_translations/module.mk

     
     1MODULE := tools/create_translations
     2
     3MODULE_OBJS := \
     4        create_translations.o
     5
     6# Set the name of the executable
     7TOOL_EXECUTABLE := create_translations
     8
     9# Include common rules
     10include $(srcdir)/rules.mk
  • tools/create_translations/messages.h

     
     1// generated by po2c 1.0.2-scummvm - Do not modify
     2
     3const char * const _messageIds[] = {
     4        /* 0 */ "",
     5        /* 1 */ "   Are you sure you want to quit ?   ",
     6        /* 2 */ " (Active)",
     7        /* 3 */ " (Game)",
     8        /* 4 */ " (Global)",
     9        /* 5 */ "(built on %s)",
     10        /* 6 */ ", error while mounting the share",
     11        /* 7 */ ", share not mounted",
     12        /* 8 */ "... progress ...",
     13        /* 9 */ "11kHz",
     14        /* 10 */ "22 kHz",
     15        /* 11 */ "44 kHz",
     16        /* 12 */ "48 kHz",
     17        /* 13 */ "8 kHz",
     18        /* 14 */ "<default>",
     19        /* 15 */ "About ScummVM",
     20        /* 16 */ "AdLib Emulator",
     21        /* 17 */ "AdLib emulator:",
     22        /* 18 */ "AdLib is used for music in many games",
     23        /* 19 */ "Add Game...",
     24        /* 20 */ "Amiga Audio Emulator",
     25        /* 21 */ "Antialiased Renderer (16bpp)",
     26        /* 22 */ "Apple II GS Emulator (NOT IMPLEMENTED)",
     27        /* 23 */ "Aspect ratio correction",
     28        /* 24 */ "Associated key : %s",
     29        /* 25 */ "Associated key : none",
     30        /* 26 */ "Audio",
     31        /* 27 */ "Autosave:",
     32        /* 28 */ "Available engines:",
     33        /* 29 */ "A~b~out...",
     34        /* 30 */ "Bind Keys",
     35        /* 31 */ "Both",
     36        /* 32 */ "Brightness:",
     37        /* 33 */ "C64 Audio Emulator",
     38        /* 34 */ "Cancel",
     39        /* 35 */ "Cannot create file",
     40        /* 36 */ "Change game options",
     41        /* 37 */ "Change global ScummVM options",
     42        /* 38 */ "Check if you want to use your real hardware Roland-compatible sound device connected to your computer",
     43        /* 39 */ "Choose",
     44        /* 40 */ "Choose an action to map",
     45        /* 41 */ "Clear value",
     46        /* 42 */ "Close",
     47        /* 43 */ "Correct aspect ratio for 320x200 games",
     48        /* 44 */ "Could not find any engine capable of running the selected game",
     49        /* 45 */ "Current video mode:",
     50        /* 46 */ "Cursor Down",
     51        /* 47 */ "Cursor Left",
     52        /* 48 */ "Cursor Right",
     53        /* 49 */ "Cursor Up",
     54        /* 50 */ "DOSBox OPL emulator",
     55        /* 51 */ "DVD",
     56        /* 52 */ "DVD Mounted successfully",
     57        /* 53 */ "DVD not mounted",
     58        /* 54 */ "Date: ",
     59        /* 55 */ "Debugger",
     60        /* 56 */ "Default",
     61        /* 57 */ "Delete",
     62        /* 58 */ "Disable power off",
     63        /* 59 */ "Disabled GFX",
     64        /* 60 */ "Discovered %d new games ...",
     65        /* 61 */ "Discovered %d new games.",
     66        /* 62 */ "Display ",
     67        /* 63 */ "Display keyboard",
     68        /* 64 */ "Do you really want to delete this savegame?",
     69        /* 65 */ "Do you really want to remove this game configuration?",
     70        /* 66 */ "Do you really want to run the mass game detector? This could potentially add a huge number of games.",
     71        /* 67 */ "Do you want to load or save the game?",
     72        /* 68 */ "Do you want to perform an automatic scan ?",
     73        /* 69 */ "Do you want to quit ?",
     74        /* 70 */ "Double-strike",
     75        /* 71 */ "Down",
     76        /* 72 */ "Enable Roland GS Mode",
     77        /* 73 */ "Engine does not support debug level '%s'",
     78        /* 74 */ "English",
     79        /* 75 */ "Error running game:",
     80        /* 76 */ "Error while mounting the DVD",
     81        /* 77 */ "Extra Path:",
     82        /* 78 */ "FM Towns Emulator",
     83        /* 79 */ "Fast mode",
     84        /* 80 */ "Features compiled in:",
     85        /* 81 */ "Free look",
     86        /* 82 */ "Full title of the game",
     87        /* 83 */ "Fullscreen mode",
     88        /* 84 */ "GC Pad acceleration:",
     89        /* 85 */ "GC Pad sensitivity:",
     90        /* 86 */ "GFX",
     91        /* 87 */ "GM Device:",
     92        /* 88 */ "GUI Language:",
     93        /* 89 */ "GUI Renderer:",
     94        /* 90 */ "Game",
     95        /* 91 */ "Game Data not found",
     96        /* 92 */ "Game Id not supported",
     97        /* 93 */ "Game Path:",
     98        /* 94 */ "Global menu",
     99        /* 95 */ "Go to previous directory level",
     100        /* 96 */ "Go up",
     101        /* 97 */ "Graphics",
     102        /* 98 */ "Graphics mode:",
     103        /* 99 */ "Hardware scale (fast, but low quality)",
     104        /* 100 */ "Hercules Amber",
     105        /* 101 */ "Hercules Green",
     106        /* 102 */ "Hide Toolbar",
     107        /* 103 */ "High quality audio (slower) (reboot)",
     108        /* 104 */ "Higher value specifies better sound quality but may be not supported by your soundcard",
     109        /* 105 */ "Hold Shift for Mass Add",
     110        /* 106 */ "Horizontal underscan:",
     111        /* 107 */ "IBM PCjr Emulator",
     112        /* 108 */ "ID:",
     113        /* 109 */ "Init network",
     114        /* 110 */ "Initial top screen scale:",
     115        /* 111 */ "Initialising MT-32 Emulator",
     116        /* 112 */ "Initialising network",
     117        /* 113 */ "Input",
     118        /* 114 */ "Invalid Path",
     119        /* 115 */ "Key mapper",
     120        /* 116 */ "Keyboard",
     121        /* 117 */ "Keymap:",
     122        /* 118 */ "Keys",
     123        /* 119 */ "Language of ScummVM GUI",
     124        /* 120 */ "Language of the game. This will not turn your Spanish game version into English",
     125        /* 121 */ "Language:",
     126        /* 122 */ "Left",
     127        /* 123 */ "Left Click",
     128        /* 124 */ "Load",
     129        /* 125 */ "Load game:",
     130        /* 126 */ "Load savegame for selected game",
     131        /* 127 */ "MAME OPL emulator",
     132        /* 128 */ "MIDI",
     133        /* 129 */ "MIDI gain:",
     134        /* 130 */ "MT-32",
     135        /* 131 */ "MT-32 Device:",
     136        /* 132 */ "MT-32 Emulator",
     137        /* 133 */ "Main screen scaling:",
     138        /* 134 */ "Map",
     139        /* 135 */ "Mass Add...",
     140        /* 136 */ "Menu",
     141        /* 137 */ "Misc",
     142        /* 138 */ "Mixed AdLib/MIDI mode",
     143        /* 139 */ "Mount DVD",
     144        /* 140 */ "Mount SMB",
     145        /* 141 */ "Mouse click",
     146        /* 142 */ "Multi Function",
     147        /* 143 */ "Music Device:",
     148        /* 144 */ "Music volume:",
     149        /* 145 */ "Mute All",
     150        /* 146 */ "Name:",
     151        /* 147 */ "Network down",
     152        /* 148 */ "Network not initialsed (%d)",
     153        /* 149 */ "Network up",
     154        /* 150 */ "Network up, share mounted",
     155        /* 151 */ "Never",
     156        /* 152 */ "No",
     157        /* 153 */ "No date saved",
     158        /* 154 */ "No music",
     159        /* 155 */ "No playtime saved",
     160        /* 156 */ "No time saved",
     161        /* 157 */ "None",
     162        /* 158 */ "Normal (no scaling)",
     163        /* 159 */ "OK",
     164        /* 160 */ "Output rate:",
     165        /* 161 */ "Override global MIDI settings",
     166        /* 162 */ "Override global MT-32 settings",
     167        /* 163 */ "Override global audio settings",
     168        /* 164 */ "Override global graphic settings",
     169        /* 165 */ "Override global volume settings",
     170        /* 166 */ "PC Speaker Emulator",
     171        /* 167 */ "Password:",
     172        /* 168 */ "Path not a directory",
     173        /* 169 */ "Path not a file",
     174        /* 170 */ "Path not exists",
     175        /* 171 */ "Paths",
     176        /* 172 */ "Pause",
     177        /* 173 */ "Pick the game:",
     178        /* 174 */ "Platform the game was originally designed for",
     179        /* 175 */ "Platform:",
     180        /* 176 */ "Playtime: ",
     181        /* 177 */ "Please select an action",
     182        /* 178 */ "Plugins Path:",
     183        /* 179 */ "Preferred Device:",
     184        /* 180 */ "Press the key to associate",
     185        /* 181 */ "Quit",
     186        /* 182 */ "Quit ScummVM",
     187        /* 183 */ "Read permission denied",
     188        /* 184 */ "Reading failed",
     189        /* 185 */ "Remap keys",
     190        /* 186 */ "Remove game from the list. The game data files stay intact",
     191        /* 187 */ "Render mode:",
     192        /* 188 */ "Right",
     193        /* 189 */ "Right Click",
     194        /* 190 */ "Right click",
     195        /* 191 */ "Rotate",
     196        /* 192 */ "SFX volume:",
     197        /* 193 */ "SMB",
     198        /* 194 */ "Save",
     199        /* 195 */ "Save Path:",
     200        /* 196 */ "Save Path: ",
     201        /* 197 */ "Save game:",
     202        /* 198 */ "Scan complete!",
     203        /* 199 */ "Scanned %d directories ...",
     204        /* 200 */ "ScummVM Main Menu",
     205        /* 201 */ "ScummVM could not find any engine capable of running the selected game!",
     206        /* 202 */ "ScummVM could not find any game in the specified directory!",
     207        /* 203 */ "ScummVM couldn't open the specified directory!",
     208        /* 204 */ "Search in game list",
     209        /* 205 */ "Search:",
     210        /* 206 */ "Select SoundFont",
     211        /* 207 */ "Select a Theme",
     212        /* 208 */ "Select additional game directory",
     213        /* 209 */ "Select an action and click 'Map'",
     214        /* 210 */ "Select directory for GUI themes",
     215        /* 211 */ "Select directory for extra files",
     216        /* 212 */ "Select directory for plugins",
     217        /* 213 */ "Select directory for saved games",
     218        /* 214 */ "Select directory for savegames",
     219        /* 215 */ "Select directory with game data",
     220        /* 216 */ "Sensitivity",
     221        /* 217 */ "Server:",
     222        /* 218 */ "Share:",
     223        /* 219 */ "Short game identifier used for referring to savegames and running the game from the command line",
     224        /* 220 */ "Show Keyboard",
     225        /* 221 */ "Show mouse cursor",
     226        /* 222 */ "Show subtitles and play speech",
     227        /* 223 */ "Show/Hide Cursor",
     228        /* 224 */ "Skip",
     229        /* 225 */ "Skip line",
     230        /* 226 */ "Skip text",
     231        /* 227 */ "Snap to edges",
     232        /* 228 */ "Software scale (good quality, but slower)",
     233        /* 229 */ "Sound on/off",
     234        /* 230 */ "SoundFont is supported by some audio cards, Fluidsynth and Timidity",
     235        /* 231 */ "SoundFont:",
     236        /* 232 */ "Spch",
     237        /* 233 */ "Special dithering modes supported by some games",
     238        /* 234 */ "Special sound effects volume",
     239        /* 235 */ "Specifies default sound device for General MIDI output",
     240        /* 236 */ "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output",
     241        /* 237 */ "Specifies output sound device or sound card emulator",
     242        /* 238 */ "Specifies path to additional data used by all games or ScummVM",
     243        /* 239 */ "Specifies path to additional data used the game",
     244        /* 240 */ "Specifies preferred sound device or sound card emulator",
     245        /* 241 */ "Specifies where your savegames are put",
     246        /* 242 */ "Speech",
     247        /* 243 */ "Speech volume:",
     248        /* 244 */ "Standard Renderer (16bpp)",
     249        /* 245 */ "Start selected game",
     250        /* 246 */ "Status:",
     251        /* 247 */ "Subs",
     252        /* 248 */ "Subtitle speed:",
     253        /* 249 */ "Subtitles",
     254        /* 250 */ "Swap character",
     255        /* 251 */ "Tap for left click, double tap right click",
     256        /* 252 */ "Text and Speech:",
     257        /* 253 */ "The chosen directory cannot be written to. Please select another one.",
     258        /* 254 */ "Theme Path:",
     259        /* 255 */ "Theme:",
     260        /* 256 */ "This game ID is already taken. Please choose another one.",
     261        /* 257 */ "This game does not support loading games from the launcher.",
     262        /* 258 */ "Time: ",
     263        /* 259 */ "Timeout while initialising network",
     264        /* 260 */ "Touch X Offset",
     265        /* 261 */ "Touch Y Offset",
     266        /* 262 */ "Touchpad mode disabled.",
     267        /* 263 */ "Touchpad mode enabled.",
     268        /* 264 */ "True Roland MT-32 (disable GM emulation)",
     269        /* 265 */ "Turns off General MIDI mapping for games with Roland MT-32 soundtrack",
     270        /* 266 */ "Unknown",
     271        /* 267 */ "Unknown Error",
     272        /* 268 */ "Unmount DVD",
     273        /* 269 */ "Unmount SMB",
     274        /* 270 */ "Unscaled (you must scroll left and right)",
     275        /* 271 */ "Unsupported Color Mode",
     276        /* 272 */ "Untitled savestate",
     277        /* 273 */ "Up",
     278        /* 274 */ "Use both MIDI and AdLib sound generation",
     279        /* 275 */ "Use laptop trackpad-style cursor control",
     280        /* 276 */ "Username:",
     281        /* 277 */ "Using SDL driver ",
     282        /* 278 */ "Vertical underscan:",
     283        /* 279 */ "Video",
     284        /* 280 */ "Virtual keyboard",
     285        /* 281 */ "Volume",
     286        /* 282 */ "Windows MIDI",
     287        /* 283 */ "Write permission denied",
     288        /* 284 */ "Writing data failed",
     289        /* 285 */ "Yes",
     290        /* 286 */ "You have to restart ScummVM to take the effect.",
     291        /* 287 */ "Zone",
     292        /* 288 */ "Zoom down",
     293        /* 289 */ "Zoom up",
     294        /* 290 */ "every 10 mins",
     295        /* 291 */ "every 15 mins",
     296        /* 292 */ "every 30 mins",
     297        /* 293 */ "every 5 mins",
     298        /* 294 */ "~A~bout",
     299        /* 295 */ "~A~dd Game...",
     300        /* 296 */ "~C~ancel",
     301        /* 297 */ "~C~lose",
     302        /* 298 */ "~E~dit Game...",
     303        /* 299 */ "~H~elp",
     304        /* 300 */ "~I~ndy fight controls",
     305        /* 301 */ "~K~eys",
     306        /* 302 */ "~L~eft handed mode",
     307        /* 303 */ "~L~oad",
     308        /* 304 */ "~L~oad...",
     309        /* 305 */ "~N~ext",
     310        /* 306 */ "~O~K",
     311        /* 307 */ "~O~ptions",
     312        /* 308 */ "~O~ptions...",
     313        /* 309 */ "~P~revious",
     314        /* 310 */ "~Q~uit",
     315        /* 311 */ "~R~emove Game",
     316        /* 312 */ "~R~esume",
     317        /* 313 */ "~R~eturn to Launcher",
     318        /* 314 */ "~S~ave",
     319        /* 315 */ "~S~tart",
     320        /* 316 */ "~T~ransitions Enabled",
     321        /* 317 */ "~W~ater Effect Enabled",
     322        /* 318 */ "~Z~ip Mode Activated",
     323        NULL
     324};
     325
     326struct PoMessageEntry {
     327        int msgid;
     328        const char *msgstr;
     329};
     330
     331const PoMessageEntry _translation_ru_RU[] = {
     332        { 0, "Project-Id-Version: ScummVM VERSION\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-06-13 20:55+0300\nLast-Translator: Eugene Sandulenko <sev@scummvm.org>\nLanguage-Team: Russian\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-5\nContent-Transfer-Encoding: 8bit\nLanguage: Russian\nPlural-Forms: nplurals=3;     plural=n%10==1 && n%100!=11 ? 0 :            n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" },
     333        { 1, "   \262\353 \343\322\325\340\325\335\353, \347\342\336 \345\336\342\330\342\325 \322\353\331\342\330?   " },
     334        { 2, " (\260\332\342\330\322\335\320\357)" },
     335        { 3, " (\270\323\340\353)" },
     336        { 4, " (\263\333\336\321\320\333\354\335\320\357)" },
     337        { 5, "(\341\336\321\340\320\335 %s)" },
     338        { 6, ", \336\350\330\321\332\320 \322\336 \322\340\325\334\357 \337\336\324\332\333\356\347\325\335\330\357 \337\320\337\332\330" },
     339        { 7, ", \337\320\337\332\320 \335\325 \337\336\324\332\333\356\347\325\335\320" },
     340        { 8, "... \330\351\343 ..." },
     341        { 9, "11 \332\263\346" },
     342        { 10, "22 \332\263\346" },
     343        { 11, "44 \332\263\346" },
     344        { 12, "48 \332\263\346" },
     345        { 13, "8 \332\263\346" },
     346        { 14, "<\337\336 \343\334\336\333\347\320\335\330\356>" },
     347        { 15, "\276 \337\340\336\323\340\320\334\334\325 ScummVM" },
     348        { 16, "\315\334\343\333\357\342\336\340 AdLib" },
     349        { 17, "\315\334\343\333\357\342\336\340 AdLib:" },
     350        { 18, "\267\322\343\332\336\322\320\357 \332\320\340\342\320 AdLib \330\341\337\336\333\354\327\343\325\342\341\357 \334\335\336\323\330\334\330 \330\323\340\320\334\330" },
     351        { 19, "\275\336\322\320\357 \330\323\340\320..." },
     352        { 20, "\315\334\343\333\357\342\336\340 \327\322\343\332\320 Amiga" },
     353        { 21, "\300\320\341\342\325\340\330\327\320\342\336\340 \341\336 \341\323\333\320\326\330\322\320\335\330\325\334 (16bpp)" },
     354        { 22, "\315\334\343\333\357\342\336\340 Apple II GS (\336\342\341\343\342\341\342\322\343\325\342)" },
     355        { 23, "\272\336\340\340\325\332\346\330\357 \341\336\336\342\335\336\350\325\335\330\357 \341\342\336\340\336\335" },
     356        { 24, "\275\320\327\335\320\347\325\335\335\320\357 \332\333\320\322\330\350\320 : %s" },
     357        { 25, "\275\320\327\335\320\347\325\335\335\320\357 \332\333\320\322\330\350\320 : \335\325\342" },
     358        { 26, "\260\343\324\330\336" },
     359        { 27, "\260\322\342\336\341\336\345\340\320\335\325\335\330\325:" },
     360        { 28, "\264\336\341\342\343\337\335\353\325 \324\322\330\326\332\330:" },
     361        { 29, "\276 \337~\340~\336\323\340\320\334\334\325..." },
     362        { 30, "\275\320\327\335\320\347\330\342\354 \332\333\320\322\330\350\330" },
     363        { 31, "\262\341\361" },
     364        { 32, "\317\340\332\336\341\342\354:" },
     365        { 33, "\315\334\343\333\357\342\336\340 \327\322\343\332\320 C64" },
     366        { 34, "\276\342\334\325\335\320" },
     367        { 35, "\275\325 \334\336\323\343 \341\336\327\324\320\342\354 \344\320\331\333" },
     368        { 36, "\270\327\334\325\335\330\342\354 \336\337\346\330\330 \330\323\340\353" },
     369        { 37, "\270\327\334\325\335\330\342\354 \323\333\336\321\320\333\354\335\353\325 \336\337\346\330\330 ScummVM" },
     370        { 38, "\276\342\334\325\342\354\342\325, \325\341\333\330 \343 \322\320\341 \337\336\324\332\333\356\347\325\335\336 Roland-\341\336\322\334\325\341\342\330\334\336\325 \327\322\343\332\336\322\336\325 \343\341\342\340\336\331\341\342\322\336 \330 \322\353 \345\336\342\330\342\325 \325\323\336 \330\341\337\336\333\354\327\336\322\320\342\354" },
     371        { 39, "\262\353\321\340\320\342\354" },
     372        { 40, "\262\353\321\325\340\330\342\325 \324\325\331\341\342\322\330\325 \324\333\357 \335\320\327\335\320\347\325\335\330\357" },
     373        { 41, "\276\347\330\341\342\330\342\354 \327\335\320\347\325\335\330\325" },
     374        { 42, "\267\320\332\340\353\342\354" },
     375        { 43, "\272\336\340\340\325\332\342\330\340\336\322\320\342\354 \341\336\336\342\335\336\350\325\335\330\325 \341\342\336\340\336\335 \324\333\357 \330\323\340 \341 \340\320\327\340\325\350\325\335\330\325\334 320x200" },
     376        { 44, "\275\325 \334\336\323\343 \335\320\331\342\330 \324\322\330\326\336\332 \324\333\357 \327\320\337\343\341\332\320 \322\353\321\340\320\335\335\336\331 \330\323\340\353" },
     377        { 45, "\302\325\332\343\351\330\331 \322\330\324\325\336\340\325\326\330\334:" },
     378        { 46, "\272\343\340\341\336\340 \322\335\330\327" },
     379        { 47, "\272\343\340\341\336\340 \322\333\325\322\336" },
     380        { 48, "\272\343\340\341\336\340 \322\337\340\320\322\336" },
     381        { 49, "\272\343\340\341\336\340 \322\322\325\340\345" },
     382        { 50, "\315\334\343\333\357\342\336\340 DOSBox OPL" },
     383        { 51, "DVD" },
     384        { 52, "DVD \337\336\324\332\333\356\347\325\335 \343\341\337\325\350\335\336" },
     385        { 53, "DVD \335\325 \337\336\324\332\333\356\347\325\335" },
     386        { 54, "\264\320\342\320: " },
     387        { 55, "\276\342\333\320\324\347\330\332" },
     388        { 56, "\277\336 \343\334\336\333\347\320\335\330\356" },
     389        { 57, "\303\324\320\333\330\342\354" },
     390        { 58, "\267\320\337\340\325\342\330\342\354 \322\353\332\333\356\347\325\335\330\325" },
     391        { 59, "\261\325\327 \323\340\320\344\330\332\330" },
     392        { 60, "\275\320\331\324\325\335\336 %d \335\336\322\353\345 \330\323\340 ..." },
     393        { 61, "\275\320\331\324\325\335\336 %d \335\336\322\353\345 \330\323\340." },
     394        { 62, "\277\336\332\320\327\320\342\354 " },
     395        { 63, "\277\336\332\320\327\320\342\354 \332\333\320\322\330\320\342\343\340\343" },
     396        { 64, "\262\353 \324\325\331\341\342\322\330\342\325\333\354\335\336 \345\336\342\330\342\325 \343\324\320\333\330\342\354 \355\342\336 \341\336\345\340\320\335\325\335\330\325?" },
     397        { 65, "\262\353 \324\325\331\341\342\322\330\342\325\333\354\335\336 \345\336\342\330\342\325 \343\324\320\333\330\342\354 \343\341\342\320\335\336\322\332\330 \324\333\357 \355\342\336\331 \330\323\340\353?" },
     398        { 66, "\262\353 \324\325\331\341\342\322\330\342\325\333\354\335\336 \345\336\342\330\342\325 \327\320\337\343\341\342\330\342\354 \324\325\342\325\332\342\336\340 \322\341\325\345 \330\323\340? \315\342\336 \337\336\342\325\335\346\330\320\333\354\335\336 \334\336\326\325\342 \324\336\321\320\322\330\342\354 \321\336\333\354\350\336\325 \332\336\333\330\347\325\341\342\322\336 \330\323\340." },
     399        { 67, "\262\353 \345\336\342\330\342\325 \327\320\323\340\343\327\330\342\354 \333\330\321\336 \341\336\345\340\320\335\330\342\354 \330\323\340\343?" },
     400        { 68, "\262\353 \345\336\342\330\342\325 \337\340\336\330\327\322\325\341\342\330 \320\322\342\336\334\320\342\330\347\325\341\332\330\331 \337\336\330\341\332?" },
     401        { 69, "\262\353 \345\336\342\330\342\325 \322\353\331\342\330?" },
     402        { 70, "\264\322\336\331\335\336\331 \343\324\320\340" },
     403        { 71, "\262\335\330\327" },
     404        { 72, "\262\332\333\356\347\330\342\354 \340\325\326\330\334 Roland GS" },
     405        { 73, "\264\322\330\326\336\332 \335\325 \337\336\324\324\325\340\326\330\322\320\325\342 \343\340\336\322\325\335\354 \336\342\333\320\324\332\330 '%s'" },
     406        { 74, "English" },
     407        { 75, "\276\350\330\321\332\320 \327\320\337\343\341\332\320 \330\323\340\353:" },
     408        { 76, "\276\350\330\321\332\320 \322\336 \322\340\325\334\357 \337\336\324\332\333\356\347\325\335\330\357 DVD" },
     409        { 77, "\264\336\337. \337\343\342\354:" },
     410        { 78, "\315\334\343\333\357\342\336\340 FM Towns" },
     411        { 79, "\261\353\341\342\340\353\331 \340\325\326\330\334" },
     412        { 80, "\262\332\333\356\347\325\335\335\353\325 \322 \321\330\333\324 \336\337\346\330\330:" },
     413        { 81, "\301\322\336\321\336\324\335\353\331 \336\321\327\336\340" },
     414        { 82, "\277\336\333\335\336\325 \335\320\327\322\320\335\330\325 \330\323\340\353" },
     415        { 83, "\277\336\333\335\336\355\332\340\320\335\335\353\331 \340\325\326\330\334" },
     416        { 84, "\303\341\332\336\340\325\335\330\325 GC \337\320\324\320:" },
     417        { 85, "\307\343\322\341\342\322\330\342\325\333\354\335\336\341\342\354 GC \337\320\324\320:" },
     418        { 86, "\263\340\344" },
     419        { 87, "\303\341\342\340\336\331\341\342\322\336 GM:" },
     420        { 88, "\317\327\353\332 GUI:" },
     421        { 89, "\300\330\341\336\322\320\333\332\320 GUI:" },
     422        { 90, "\270\323\340\320" },
     423        { 91, "\275\325\342 \344\320\331\333\336\322 \330\323\340\353" },
     424        { 92, "Game Id \335\325 \337\336\324\324\325\340\326\330\322\320\325\342\341\357" },
     425        { 93, "\263\324\325 \330\323\340\320: " },
     426        { 94, "\263\333\336\321\320\333\354\335\336\325 \334\325\335\356" },
     427        { 95, "\277\325\340\325\331\342\330 \335\320 \324\330\340\325\332\342\336\340\330\356 \343\340\336\322\335\325\334 \322\353\350\325" },
     428        { 96, "\262\322\325\340\345" },
     429        { 97, "\263\340\320\344\330\332\320" },
     430        { 98, "\263\340\320\344. \340\325\326\330\334:" },
     431        { 99, "\305\320\340\324\322\320\340\335\336\325 \334\320\341\350\342\320\321\330\340\336\322\320\335\330\325 (\321\353\341\342\340\336, \335\336 \335\330\327\332\336\323\336 \332\320\347\325\341\342\322\320)" },
     432        { 100, "Hercules \317\335\342\320\340\335\353\331" },
     433        { 101, "Hercules \267\325\333\325\335\353\331" },
     434        { 102, "\301\337\340\357\342\320\342\354 \337\320\335\325\333\354 \330\335\341\342\340\343\334\325\335\342\336\322" },
     435        { 103, "\262\353\341\336\332\336\325 \332\320\347\325\341\342\322\336 \327\322\343\332\320 (\334\325\324\333\325\335\335\325\325) (\340\325\321\343\342)" },
     436        { 104, "\261\276\333\354\350\330\325 \327\335\320\347\325\335\330\357 \327\320\324\320\356\342 \333\343\347\350\325\325 \332\320\347\325\341\342\322\336 \327\322\343\332\320, \336\324\335\320\332\336 \336\335\330 \334\336\323\343\342 \335\325 \337\336\324\324\325\340\326\330\322\320\342\354\341\357 \322\320\350\325\331 \327\322\343\332\336\322\336\331 \332\320\340\342\336\331" },
     437        { 105, "\303\324\325\340\326\330\322\320\331\342\325 \332\333\320\322\330\350\343 Shift \324\333\357 \342\336\323\336, \347\342\336\321\353 \324\336\321\320\322\330\342\354 \335\325\341\332\336\333\354\332\336 \330\323\340" },
     438        { 106, "\263\336\340\330\327\336\335\342\320\333\354\335\353\331 underscan:" },
     439        { 107, "\315\334\343\333\357\342\336\340 IBM PCjr" },
     440        { 108, "ID:" },
     441        { 109, "\270\335\330\346\330\320\333\330\327\320\346\330\357 \341\325\342\330" },
     442        { 110, "\275\320\347\320\333\354\335\353\331 \334\320\341\350\342\320\321 \322\325\340\345\335\325\323\336 \355\332\340\320\335\320:" },
     443        { 111, "\275\320\341\342\340\320\330\322\320\356 \355\334\343\333\357\342\336\340 MT-32" },
     444        { 112, "\275\320\341\342\340\320\330\322\320\356 \341\325\342\354" },
     445        { 113, "\262\322\336\324" },
     446        { 114, "\275\325\322\325\340\335\353\331 \337\343\342\354" },
     447        { 115, "\275\320\327\335\320\347\325\335\330\325 \332\333\320\322\330\350" },
     448        { 116, "\272\333\320\322\330\320\342\343\340\320" },
     449        { 117, "\302\320\321\333\330\346\320 \332\333\320\322\330\350:" },
     450        { 118, "\272\333\320\322\330\350\330" },
     451        { 119, "\317\327\353\332 \323\340\320\344\330\347\325\341\332\336\323\336 \330\335\342\325\340\344\325\331\341\320 ScummVM" },
     452        { 120, "\317\327\353\332 \330\323\340\353. \270\327\334\325\335\325\335\330\325 \355\342\336\323\336 \337\320\340\320\334\325\342\340\320 \335\325 \337\340\325\322\340\320\342\330\342 \330\323\340\343 \335\320 \320\335\323\333\330\331\341\332\336\334 \322 \340\343\341\341\332\343\356" },
     453        { 121, "\317\327\353\332:" },
     454        { 122, "\262\333\325\322\336" },
     455        { 123, "\273\325\322\353\331 \351\325\333\347\336\332" },
     456        { 124, "\267\320\323\340\343\327\330\342\354" },
     457        { 125, "\267\320\323\340\343\327\330\342\354 \330\323\340\343:" },
     458        { 126, "\267\320\323\340\343\327\330\342\354 \341\336\345\340\335\325\335\330\325 \324\333\357 \322\353\321\340\320\335\335\336\331 \330\323\340\353" },
     459        { 127, "\315\334\343\333\357\342\336\340 MAME OPL" },
     460        { 128, "MIDI" },
     461        { 129, "\303\341\330\333\325\335\330\325 MIDI:" },
     462        { 130, "MT-32" },
     463        { 131, "\303\341\342\340. MT-32:" },
     464        { 132, "\315\334\343\333\357\342\336\340 MT-32" },
     465        { 133, "\274\320\341\350\342\320\321 \323\333\320\322\335\336\323\336 \355\332\340\320\335\320:" },
     466        { 134, "\275\320\327\335\320\347\330\342\354" },
     467        { 135, "\274\335\336\323\336 \330\323\340..." },
     468        { 136, "\274\325\335\356" },
     469        { 137, "\300\320\327\335\336\325" },
     470        { 138, "\301\334\325\350\320\335\335\353\331 \340\325\326\330\334 AdLib/MIDI" },
     471        { 139, "\277\336\324\332\333\356\347\330\342\354 DVD" },
     472        { 140, "\277\336\324\332\333\356\347\330\342\354 SMB" },
     473        { 141, "\272\333\330\332 \334\353\350\354\356" },
     474        { 142, "\274\343\333\354\342\330\344\343\335\332\346\330\357" },
     475        { 143, "\267\322\343\332\336\322\336\325 \343\341\342-\322\336:" },
     476        { 144, "\263\340\336\334\332. \334\343\327\353\332\330:" },
     477        { 145, "\262\353\332\333. \322\341\361" },
     478        { 146, "\275\320\327\322:" },
     479        { 147, "\301\325\342\354 \322\353\332\333\356\347\325\335\320" },
     480        { 148, "\301\325\342\354 \335\325 \335\320\341\342\340\336\325\335\320 (%d)" },
     481        { 149, "\301\325\342\354 \340\320\321\336\342\320\325\342" },
     482        { 150, "\301\325\342\354 \340\320\321\336\342\320\325\342, \337\320\337\332\320 \337\336\324\332\333\356\347\325\335\320" },
     483        { 151, "\275\330\332\336\323\324\320" },
     484        { 152, "\275\325\342" },
     485        { 153, "\264\320\342\320 \335\325 \327\320\337\330\341\320\335\320" },
     486        { 154, "\261\325\327 \334\343\327\353\332\330" },
     487        { 155, "\262\340\325\334\357 \330\323\340\353 \335\325 \327\320\337\330\341\320\335\336" },
     488        { 156, "\262\340\325\334\357 \335\325 \327\320\337\330\341\320\335\336" },
     489        { 157, "\275\325 \327\320\324\320\335" },
     490        { 158, "\261\325\327 \343\322\325\333\330\347\325\335\330\357" },
     491        { 159, "OK" },
     492        { 160, "\307\320\341\342\336\342\320 \327\322\343\332\320:" },
     493        { 161, "\277\325\340\325\332\340\353\342\354 \323\333\336\321\320\333\354\335\353\325 \343\341\342\320\335\336\322\332\330 MIDI" },
     494        { 162, "\277\325\340\325\332\340\353\342\354 \323\333\336\321\320\333\354\335\353\325 \343\341\342\320\335\336\322\332\330 MT-32" },
     495        { 163, "\277\325\340\325\332\340\353\342\354 \323\333\336\321\320\333\354\335\353\325 \343\341\342\320\335\336\322\332\330 \320\343\324\330\336" },
     496        { 164, "\277\325\340\325\332\340\353\342\354 \323\333\336\321\320\333\354\335\353\325 \343\341\342\320\335\336\322\332\330 \323\340\320\344\330\332\330" },
     497        { 165, "\277\325\340\325\332\340\353\342\354 \323\333\336\321\320\333\354\335\353\325 \343\341\342\320\335\336\322\332\330 \323\340\336\334\332\336\341\342\330" },
     498        { 166, "\315\334\343\333\357\342\336\340 PC \341\337\330\332\325\340\320" },
     499        { 167, "\277\320\340\336\333\354:" },
     500        { 168, "\277\343\342\354 \335\325 \357\322\333\357\325\342\341\357 \324\330\340\325\332\342\336\340\330\325\331" },
     501        { 169, "\277\343\342\354 \335\325 \357\322\333\357\325\342\341\357 \344\320\331\333\336\334" },
     502        { 170, "\277\343\342\354 \335\325 \335\320\331\324\325\335" },
     503        { 171, "\277\343\342\330" },
     504        { 172, "\277\320\343\327\320" },
     505        { 173, "\262\353\321\325\340\330\342\325 \330\323\340\343:" },
     506        { 174, "\277\333\320\342\344\336\340\334\320, \324\333\357 \332\336\342\336\340\336\331 \330\323\340\320 \321\353\333\320 \330\327\335\320\347\320\333\354\335\336 \340\320\327\340\320\321\336\342\320\335\320" },
     507        { 175, "\277\333\320\342\344\336\340\334\320:" },
     508        { 176, "\262\340\325\334\357 \330\323\340\353: " },
     509        { 177, "\277\336\326\320\333\343\331\341\342\320, \322\353\321\325\340\330\342\325 \324\325\331\341\342\322\330\325" },
     510        { 178, "\277\343\342\354 \332 \337\333\320\323\330\335\320\334:" },
     511        { 179, "\267\322\343\332\336\322\336\325 \343\341\342-\322\336:" },
     512        { 180, "\275\320\326\334\330\342\325 \332\333\320\322\330\350\343 \324\333\357 \335\320\327\335\320\347\325\335\330\357" },
     513        { 181, "\262\353\345\336\324" },
     514        { 182, "\262\353\345\336\324 \330\327 ScummVM" },
     515        { 183, "\275\325\324\336\341\342\320\342\336\347\335\336 \337\340\320\322 \324\333\357 \347\342\325\335\330\357" },
     516        { 184, "\276\350\330\321\332\320 \347\342\325\335\330\357" },
     517        { 185, "\277\325\340\325\335\320\327\335\320\347\330\342\354 \332\333\320\322\330\350\330" },
     518        { 186, "\303\324\320\333\330\342\354 \330\323\340\343 \330\327 \341\337\330\341\332\320. \275\325 \343\324\320\333\357\325\342 \330\323\340\343 \341 \326\325\341\342\332\336\323\336 \324\330\341\332\320" },
     519        { 187, "\300\325\326\330\334 \340\320\341\342\340\320:" },
     520        { 188, "\262\337\340\320\322\336" },
     521        { 189, "\277\340\320\322\353\331 \351\325\333\347\336\332" },
     522        { 190, "\277\340\320\322\353\331 \351\325\333\347\336\332" },
     523        { 191, "\277\336\322\325\340\335\343\342\354" },
     524        { 192, "\263\340\336\334\332. SFX:" },
     525        { 193, "SMB" },
     526        { 194, "\267\320\337\330\341\320\342\354" },
     527        { 195, "\277\343\342\354 \341\336\345\340: " },
     528        { 196, "\301\336\345\340\320\335\325\335\330\357 \330\323\340:" },
     529        { 197, "\301\336\345\340\320\335\330\342\354 \330\323\340\343: " },
     530        { 198, "\277\336\330\341\332 \327\320\332\336\335\347\325\335!" },
     531        { 199, "\277\340\336\341\334\336\342\340\325\335\336 %d \324\330\340\325\332\342\336\340\330\331 ..." },
     532        { 200, "\263\333\320\322\335\336\325 \334\325\335\356 ScummVM" },
     533        { 201, "ScummVM \335\325 \341\334\336\323 \335\320\331\342\330 \324\322\330\326\336\332 \324\333\357 \327\320\337\343\341\332\320 \322\353\321\340\320\335\335\336\331 \330\323\340\353!" },
     534        { 202, "ScummVM \335\325 \334\336\326\325\342 \335\320\331\342\330 \330\323\340\343 \322 \343\332\320\327\320\335\335\336\331 \324\330\340\325\332\342\336\340\330\330!" },
     535        { 203, "ScummVM \335\325 \334\336\326\325\342 \336\342\332\340\353\342\354 \343\332\320\327\320\335\335\343\356 \324\330\340\325\332\342\336\340\330\356!" },
     536        { 204, "\277\336\330\341\332 \322 \341\337\330\341\332\325 \330\323\340" },
     537        { 205, "\277\336\330\341\332:" },
     538        { 206, "\262\353\321\325\340\330\342\325 SoundFont" },
     539        { 207, "\262\353\321\325\340\330\342\325 \342\325\334\343" },
     540        { 208, "\262\353\321\325\340\330\342\325 \324\336\337\336\333\335\330\342\325\333\354\335\343\356 \324\330\340\325\332\342\336\340\330\356 \330\323\340\353" },
     541        { 209, "\262\353\321\325\340\330\342\325 \324\325\331\341\342\322\330\325 \330 \332\333\330\332\335\330\342\325 '\275\320\327\335\320\347\330\342\354'" },
     542        { 210, "\262\353\321\325\340\330\342\325 \324\330\340\325\332\342\336\340\330\356 \324\333\357 \342\325\334 GUI" },
     543        { 211, "\262\353\321\325\340\330\342\325 \324\330\340\325\332\342\336\340\330\356 \341 \324\336\337\336\333\335\330\342\325\333\354\335\353\334\330 \344\320\331\333\320\334\330" },
     544        { 212, "\262\353\321\325\340\330\342\325 \324\330\340\325\332\342\336\340\330\356 \341 \337\333\320\323\330\335\320\334\330" },
     545        { 213, "\262\353\321\325\340\330\342\325 \324\330\340\325\332\342\336\340\330\356 \324\333\357 \341\336\345\340\320\335\325\335\330\331" },
     546        { 214, "\262\353\321\325\340\330\342\325 \324\330\340\325\332\342\336\340\330\356 \324\333\357 \341\336\345\340\320\335\325\335\330\331" },
     547        { 215, "\262\353\321\325\340\330\342\325 \324\330\340\325\332\342\336\340\330\356 \341 \344\320\331\333\320\334\330 \330\323\340\353" },
     548        { 216, "\307\343\322\341\342\322\330\342\325\333\354\335\336\341\342\354" },
     549        { 217, "\301\325\340\322\325\340:" },
     550        { 218, "\301\325\342\325\322\320\357 \337\320\337\332\320:" },
     551        { 219, "\272\336\340\336\342\332\330\331 \330\324\325\335\342\330\344\330\332\320\342\336\340, \330\341\337\336\333\354\327\343\325\334\353\331 \324\333\357 \330\334\325\335 \341\336\345\340\320\335\325\335\330\331 \330\323\340 \330 \324\333\357 \327\320\337\343\341\332\320 \330\327 \332\336\334\320\335\324\335\336\331 \341\342\340\336\332\330" },
     552        { 220, "\277\336\332\320\327\320\342\354 \332\333\320\322\330\320\342\343\340\343" },
     553        { 221, "\277\336\332\320\327\353\322\320\342\354 \332\343\340\341\336\340 \334\353\350\330" },
     554        { 222, "\277\336\332\320\327\353\322\320\342\354 \341\343\321\342\330\342\340\353 \330 \322\336\341\337\340\336\330\327\322\336\324\330\342\354 \340\325\347\354" },
     555        { 223, "\277\336\332\320\327\320\342\354/\303\321\340\320\342\354 \332\343\340\341\336\340" },
     556        { 224, "\277\340\336\337\343\341\342\330\342\354" },
     557        { 225, "\277\340\336\337\343\341\342\330\342\354 \341\342\340\336\332\343" },
     558        { 226, "\277\340\336\337\343\341\342\330\342\354 \342\325\332\341\342" },
     559        { 227, "\277\340\330\332\340\325\337\330\342\354 \332 \323\340\320\335\330\346\320\334" },
     560        { 228, "\277\340\336\323\340\320\334\334\335\336\325 \334\320\341\350\342\320\321\330\340\336\322\320\335\330\325 (\345\336\340\336\350\325\325 \332\320\347\325\341\342\322\336, \335\336 \334\325\324\333\325\335\335\325\325)" },
     561        { 229, "\267\322\343\332 \322\332\333/\322\353\332\333" },
     562        { 230, "SoundFont\353 \337\336\324\324\325\340\324\326\330\322\320\356\342\341\357 \335\325\332\336\342\336\340\353\334\330 \327\322\343\332\336\322\353\334\330 \332\320\340\342\320\334\330, Fluidsynth \330 Timidity" },
     563        { 231, "SoundFont:" },
     564        { 232, "\276\327\322" },
     565        { 233, "\301\337\325\346\330\320\333\354\335\353\325 \340\325\326\330\334\353 \340\325\335\324\325\340\330\335\323\320, \337\336\324\324\325\340\326\330\322\320\325\334\353\325 \335\325\332\336\342\336\340\353\334\330 \330\323\340\320\334\330" },
     566        { 234, "\263\340\336\334\332\336\341\342\354 \341\337\325\346\330\320\333\354\335\353\345 \327\322\343\332\336\322\353\345 \355\344\344\325\332\342\336\322" },
     567        { 235, "\303\332\320\327\353\322\320\325\342 \322\353\345\336\324\335\336\325 \327\322\343\332\336\322\336\325 \343\341\342\340\336\331\341\342\322\336 \324\333\357 MIDI" },
     568        { 236, "\303\332\320\327\353\322\320\325\342 \327\322\343\332\336\322\336\325 \343\341\342\340\336\331\341\342\322\336 \337\336 \343\334\336\333\347\320\335\330\357 \324\333\357 \322\353\322\336\324\320 \335\320 Roland MT-32/LAPC1/CM32l/CM64" },
     569        { 237, "\303\332\320\327\353\322\320\325\342 \322\353\345\336\324\335\336\325 \327\322\343\332\336\322\336\325 \343\341\342\340\336\331\341\342\322\336 \330\333\330 \355\334\343\333\357\342\336\340 \327\322\343\332\336\322\336\331 \332\320\340\342\353" },
     570        { 238, "\303\332\320\327\353\322\320\325\342 \337\343\342\354 \332 \324\336\337\336\333\335\330\342\325\333\354\335\353\334 \344\320\331\333\320\334 \324\320\335\335\353\345, \330\341\337\336\333\354\327\343\325\334\353\345 \322\341\325\334\330 \330\323\340\320\334\330, \333\330\321\336 ScummVM" },
     571        { 239, "\303\332\320\327\353\322\320\325\342 \337\343\342\354 \332 \324\336\337\336\333\335\330\342\325\333\354\335\353\334 \344\320\331\333\320\334 \324\320\335\335\353\345 \324\333\357 \330\323\340\353" },
     572        { 240, "\303\332\320\327\353\322\320\325\342 \322\353\345\336\324\335\336\325 \327\322\343\332\336\322\336\325 \343\341\342\340\336\331\341\342\322\336 \330\333\330 \355\334\343\333\357\342\336\340 \327\322\343\332\336\322\336\331 \332\320\340\342\353" },
     573        { 241, "\303\332\320\327\353\322\320\325\342 \337\343\342\354 \332 \341\336\345\340\320\335\325\335\330\357\334 \330\323\340\353" },
     574        { 242, "\276\327\322\343\347\332\320" },
     575        { 243, "\263\340\336\334\332. \336\327\322\343\347\332\330:" },
     576        { 244, "\301\342\320\335\324\320\340\342\335\353\331 \340\320\341\342\325\340\330\327\320\342\336\340 (16bpp)" },
     577        { 245, "\267\320\337\343\341\342\330\342\354 \322\353\321\340\320\335\335\343\356 \330\323\340\343" },
     578        { 246, "\301\336\341\342\336\357\335\330\325:" },
     579        { 247, "\301\343\321" },
     580        { 248, "\301\332\336\340\336\341\342\354 \342\330\342\340\336\322:" },
     581        { 249, "\301\343\321\342\330\342\340\353" },
     582        { 250, "\301\334\325\335\330\342\354 \323\325\340\336\357" },
     583        { 251, "\302\320\337 \324\333\357 \333\325\322\336\323\336 \351\325\333\347\332\320, \324\322\336\331\335\336\331 \342\320\337 \324\333\357 \337\340\320\322\336\323\336 \351\325\333\347\332\320" },
     584        { 252, "\302\325\332\341\342 \330 \336\327\322\343\347\332\320:" },
     585        { 253, "\275\325 \334\336\323\343 \337\330\341\320\342\354 \322 \322\353\321\340\320\335\335\343\356 \324\330\340\325\332\342\336\340\330\356. \277\336\326\320\333\343\331\341\342\320, \343\332\320\326\330\342\325 \324\340\343\323\343\356." },
     586        { 254, "\263\324\325 \342\325\334\353:" },
     587        { 255, "\302\325\334\320:" },
     588        { 256, "\315\342\336\342 ID \330\323\340\353 \343\326\325 \330\341\337\336\333\354\327\343\325\342\341\357. \277\336\326\320\333\343\331\341\342\320, \322\353\321\325\340\330\342\325 \324\340\343\323\336\331." },
     589        { 257, "\315\342\320 \330\323\340\320 \335\325 \337\336\324\324\325\340\326\330\322\320\325\342 \327\320\323\340\343\327\332\343 \341\336\345\340\320\335\325\335\330\331 \347\325\340\325\327 \323\333\320\322\335\336\325 \334\325\335\356." },
     590        { 258, "\262\340\325\334\357: " },
     591        { 259, "\262\340\325\334\357 \337\336\324\332\333\356\347\325\335\330\357 \332 \341\325\342\330 \330\341\342\325\332\333\336" },
     592        { 260, "\301\334\325\351\325\335\330\325 \332\320\341\320\335\330\331 \337\336 \336\341\330 X" },
     593        { 261, "\301\334\325\351\325\335\330\325 \332\320\341\320\335\330\331 \337\336 \336\341\330 Y" },
     594        { 262, "\300\325\326\330\334 \342\320\347\337\320\324\320 \322\353\332\333\356\347\325\335." },
     595        { 263, "\300\325\326\330\334 \342\320\347\337\320\324\320 \322\332\333\356\347\325\335." },
     596        { 264, "\275\320\341\342\336\357\351\330\331 Roland MT-32 (\327\320\337\340\325\342\330\342\354 \355\334\343\333\357\346\330\356 GM)" },
     597        { 265, "\262\353\332\333\356\347\320\325\342 \334\320\337\337\330\335\323 General MIDI \324\333\357 \330\323\340 \341 \327\322\343\332\336\322\336\331 \324\336\340\336\326\332\336\331 \324\333\357 Roland MT-32" },
     598        { 266, "\275\325\330\327\322\325\341\342\335\336" },
     599        { 267, "\275\325\330\327\322\325\341\342\335\320\357 \336\350\330\321\332\320" },
     600        { 268, "\276\342\332\333\356\347\330\342\354 DVD" },
     601        { 269, "\276\342\332\333\356\347\342\354 SMB" },
     602        { 270, "\261\325\327 \334\320\341\350\342\320\321\330\340\336\322\320\335\330\357 (\335\343\326\335\336 \321\343\324\325\342 \337\340\336\332\340\343\347\330\322\320\342\354 \322\333\325\322\336 \330 \322\337\340\320\322\336)" },
     603        { 271, "\275\325\337\336\324\324\325\340\326\330\322\320\325\334\353\331 \340\325\326\330\334 \346\322\325\342\320" },
     604        { 272, "\301\336\345\340\320\335\325\335\330\325 \321\325\327 \330\334\325\335\330" },
     605        { 273, "\262\322\325\340\345" },
     606        { 274, "\270\341\337\336\333\354\327\336\322\320\342\354 \330 MIDI \330 AdLib \324\333\357 \323\325\335\325\340\320\346\330\330 \327\322\343\332\320" },
     607        { 275, "\270\341\337\336\333\354\327\336\322\320\342\354 \343\337\340\320\322\333\325\335\330\325 \332\343\340\341\336\340\336\334 \332\320\332 \335\320 \342\340\325\332\337\320\324\325 \333\325\337\342\336\337\336\322" },
     608        { 276, "\277\336\333\354\327\336\322\320\342\325\333\354:" },
     609        { 277, "\270\341\337\336\333\354\327\343\356 \324\340\320\331\322\325\340 SDL " },
     610        { 278, "\262\325\340\342\330\332\320\333\354\335\353\331 underscan:" },
     611        { 279, "\262\330\324\325\336" },
     612        { 280, "\262\330\340\342\343\320\333\354\335\320\357 \332\333\320\322\330\320\342\343\340\320" },
     613        { 281, "\263\340\336\334\332\336\341\342\354" },
     614        { 282, "Windows MIDI" },
     615        { 283, "\275\325\324\336\341\342\320\342\336\347\335\336 \337\340\320\322 \324\333\357 \327\320\337\330\341\330" },
     616        { 284, "\276\350\330\321\332\320 \327\320\337\330\341\330 \324\320\335\335\353\345" },
     617        { 285, "\264\320" },
     618        { 286, "\262\353 \324\336\333\326\335\353 \337\325\340\325\327\320\337\343\341\342\330\342\354 ScummVM \347\342\336\321\353 \337\340\330\334\325\335\330\342\354 \330\327\334\325\335\325\335\330\357." },
     619        { 287, "\267\336\335\320" },
     620        { 288, "\303\334\325\335\354\350. \334\320\341\350\342\320\321" },
     621        { 289, "\303\322\325\333. \334\320\341\350\342\320\321" },
     622        { 290, "\332\320\326\324\353\325 10 \334\330\335\343\342" },
     623        { 291, "\332\320\326\324\353\325 15 \334\330\335\343\342" },
     624        { 292, "\332\320\326\324\353\325 30 \334\330\335\343\342" },
     625        { 293, "\332\320\326\324\353\325 5 \334\330\335\343\342" },
     626        { 294, "\276 \337\340\336~\323~\340\320\334\334\325" },
     627        { 295, "~\264~\336\321. \330\323\340\343..." },
     628        { 296, "\276~\342~\334\325\335\320" },
     629        { 297, "~\267~\320\332\340\353\342\354" },
     630        { 298, "\276~\337~\346\330\330 \330\323\340\353..." },
     631        { 299, "~\277~\336\334\336\351\354" },
     632        { 300, "\303\337\340\320\322\333\325\335\330\325 \321\336\357\334\330 \322 Indy" },
     633        { 301, "~\272~\333\320\322\330\350\330" },
     634        { 302, "\273\325\322\336\340\343\332\330\331 \340\325\326\330\334" },
     635        { 303, "~\267~\320\323\340\343\327\330\342\354" },
     636        { 304, "~\267~\320\323\340\343\327\330\342\354..." },
     637        { 305, "~\301~\333\325\324" },
     638        { 306, "~O~K" },
     639        { 307, "~\276~\337\346\330\330" },
     640        { 308, "~\276~\337\346\330\330..." },
     641        { 309, "~\277~\340\325\324" },
     642        { 310, "~\262~\353\345\336\324" },
     643        { 311, "~\303~\324\320\333\330\342\354 \330\323\340\343" },
     644        { 312, "\277\340\336\324\336\333~\326~\330\342\354" },
     645        { 313, "~\262~\353\331\342\330 \322 \323\333\320\322\335\336\325 \334\325\335\356" },
     646        { 314, "~\267~\320\337\330\341\320\342\354" },
     647        { 315, "\277~\343~\341\332" },
     648        { 316, "\277\325\340\325\345\336\324\353 \320\332\342\330\322\330\340\336\322\320\335\353" },
     649        { 317, "\315\344\344\325\332\342\353 \322\336\324\353 \322\332\333\356\347\325\335\353" },
     650        { 318, "\300\325\326\330\334 \321\353\341\342\340\336\323\336 \337\325\340\325\345\336\324\320 \320\332\342\330\322\330\340\336\322\320\335" },
     651        { -1, NULL }
     652};
     653
     654const PoMessageEntry _translation_it_IT[] = {
     655        { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-06-30 23:56+0100\nLast-Translator: Maff <matteo.maff at gmail dot com>\nLanguage-Team: Italian\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit\nLanguage: Italiano\n" },
     656        { 1, "   Sei sicuro di voler uscire?   " },
     657        { 2, " (Attivo)" },
     658        { 3, " (Gioco)" },
     659        { 4, " (Globale)" },
     660        { 5, "(build creata il %s)" },
     661        { 6, ", errore nel montare la condivisione" },
     662        { 7, ", condivisione non montata" },
     663        { 8, "... progresso ..." },
     664        { 9, "11kHz" },
     665        { 10, "22 kHz" },
     666        { 11, "44 kHz" },
     667        { 12, "48 kHz" },
     668        { 13, "8 kHz" },
     669        { 14, "<predefinito>" },
     670        { 15, "Informazioni su ScummVM" },
     671        { 16, "Emulatore AdLib" },
     672        { 17, "Emulatore AdLib:" },
     673        { 18, "AdLib \350 utilizzato per la musica in molti giochi" },
     674        { 19, "Aggiungi gioco..." },
     675        { 20, "Emulatore AdLib" },
     676        { 21, "Renderer con antialiasing (16bpp)" },
     677        { 23, "Correzione proporzioni" },
     678        { 24, "Tasto associato: %s" },
     679        { 25, "Tasto associato: nessuno" },
     680        { 26, "Audio" },
     681        { 27, "Autosalva:" },
     682        { 28, "Motori disponibili:" },
     683        { 29, "~I~nfo..." },
     684        { 30, "Associa tasti" },
     685        { 31, "Entrambi" },
     686        { 32, "Luminosit\340:" },
     687        { 33, "Emulatore AdLib" },
     688        { 34, "Annulla" },
     689        { 35, "Impossibile creare il file" },
     690        { 36, "Modifica le opzioni di gioco" },
     691        { 37, "Modifica le opzioni globali di ScummVM" },
     692        { 38, "Seleziona se vuoi usare il dispositivo hardware audio compatibile con Roland che \350 connesso al tuo computer" },
     693        { 39, "Scegli" },
     694        { 40, "Scegli un'azione da mappare" },
     695        { 41, "Cancella" },
     696        { 42, "Chiudi" },
     697        { 43, "Corregge le proporzioni dei giochi 320x200" },
     698        { 44, "Impossibile trovare un motore in grado di eseguire il gioco selezionato" },
     699        { 45, "Modalit\340 video attuale:" },
     700        { 46, "Cursore gi\371" },
     701        { 47, "Cursore a sinistra" },
     702        { 48, "Cursore a destra" },
     703        { 49, "Cursore su" },
     704        { 50, "Emulatore OPL DOSBox" },
     705        { 51, "DVD" },
     706        { 52, "DVD montato con successo" },
     707        { 53, "DVD non montato" },
     708        { 54, "Data: " },
     709        { 55, "Debugger" },
     710        { 56, "Predefinito" },
     711        { 57, "Elimina" },
     712        { 58, "Disattiva spegnimento in chiusura" },
     713        { 59, "Grafica disattivata" },
     714        { 60, "Rilevati %d nuovi giochi..." },
     715        { 61, "Rilevati %d nuovi giochi." },
     716        { 62, "Visualizza " },
     717        { 63, "Mostra tastiera" },
     718        { 64, "Sei sicuro di voler eliminare questo salvataggio?" },
     719        { 65, "Sei sicuro di voler rimuovere questa configurazione di gioco?" },
     720        { 66, "Vuoi davvero eseguire il rilevatore di giochi in massa? Potrebbe aggiungere un numero enorme di giochi." },
     721        { 67, "Vuoi caricare o salvare il gioco?" },
     722        { 68, "Vuoi eseguire una scansione automatica?" },
     723        { 69, "Sei sicuro di voler uscire?" },
     724        { 70, "Double-strike" },
     725        { 71, "Gi\371" },
     726        { 72, "Attiva la modalit\340 Roland GS" },
     727        { 73, "Il motore non supporta il livello di debug '%s'" },
     728        { 74, "Inglese" },
     729        { 75, "Errore nell'esecuzione del gioco:" },
     730        { 76, "Errore nel montare il DVD" },
     731        { 77, "Percorso extra:" },
     732        { 78, "Emulatore FM Towns" },
     733        { 79, "Modalit\340 veloce" },
     734        { 80, "Funzionalit\340 compilate in:" },
     735        { 81, "Osservazione libera" },
     736        { 82, "Titolo completo del gioco" },
     737        { 83, "Modalit\340 a schermo intero" },
     738        { 84, "Accelerazione pad GC:" },
     739        { 85, "Sensibilit\340 pad GC:" },
     740        { 86, "Grafica" },
     741        { 87, "Dispositivo GM:" },
     742        { 88, "Lingua GUI:" },
     743        { 89, "Renderer GUI:" },
     744        { 90, "Gioco" },
     745        { 91, "Dati di gioco non trovati" },
     746        { 92, "ID di gioco non supportato" },
     747        { 93, "Percorso gioco:" },
     748        { 94, "Menu globale" },
     749        { 95, "Vai alla cartella superiore" },
     750        { 96, "Cartella superiore" },
     751        { 97, "Grafica" },
     752        { 98, "Modalit\340:" },
     753        { 99, "Ridimensionamento hardware (veloce, ma di bassa qualit\340)" },
     754        { 100, "Hercules ambra" },
     755        { 101, "Hercules verde" },
     756        { 102, "Nascondi la barra degli strumenti" },
     757        { 103, "Audio ad alta qualit\340 (pi\371 lento) (riavviare)" },
     758        { 104, "Valori pi\371 alti restituiscono un suono di maggior qualit\340, ma potrebbero non essere supportati dalla tua scheda audio" },
     759        { 105, "Tieni premuto Shift per l'aggiunta in massa" },
     760        { 106, "Underscan orizzontale:" },
     761        { 107, "Emulatore IBM PCjr" },
     762        { 108, "ID:" },
     763        { 109, "Avvia rete" },
     764        { 110, "Schermo in primo piano:" },
     765        { 111, "Avvio in corso dell'emulatore MT-32" },
     766        { 112, "Avvio rete in corso" },
     767        { 113, "Input" },
     768        { 114, "Percorso non valido" },
     769        { 115, "Programmatore tasti" },
     770        { 116, "Tastiera" },
     771        { 117, "Mappa tasti:" },
     772        { 118, "Tasti" },
     773        { 119, "Lingua dell'interfaccia grafica di ScummVM" },
     774        { 120, "Lingua del gioco. Un gioco inglese non potr\340 risultare tradotto in italiano" },
     775        { 121, "Lingua:" },
     776        { 122, "Sinistra" },
     777        { 123, "Clic sinistro" },
     778        { 124, "Carica" },
     779        { 125, "Carica gioco:" },
     780        { 126, "Carica un salvataggio del gioco selezionato" },
     781        { 127, "Emulatore OPL MAME" },
     782        { 128, "MIDI" },
     783        { 129, "Guadagno MIDI:" },
     784        { 131, "Disposit. MT32:" },
     785        { 132, "Emulatore MT-32" },
     786        { 133, "Schermo principale:" },
     787        { 134, "Mappa" },
     788        { 135, "Agg. in massa..." },
     789        { 136, "Menu" },
     790        { 137, "Varie" },
     791        { 138, "Modalit\340 mista AdLib/MIDI" },
     792        { 139, "Monta DVD" },
     793        { 140, "Monta SMB" },
     794        { 141, "Clic del mouse" },
     795        { 142, "Multifunzione" },
     796        { 143, "Dispositivo GM:" },
     797        { 144, "Volume musica:" },
     798        { 145, "Disattiva audio" },
     799        { 146, "Nome:" },
     800        { 147, "Rete disattivata" },
     801        { 148, "Rete non avviata (%d)" },
     802        { 149, "Rete attiva" },
     803        { 150, "Rete attiva, condivisione montata" },
     804        { 151, "Mai" },
     805        { 152, "No" },
     806        { 153, "Nessuna data salvata" },
     807        { 154, "Nessuna musica" },
     808        { 155, "Nessun tempo salvato" },
     809        { 156, "Nessun orario salvato" },
     810        { 157, "Nessuno" },
     811        { 158, "Normale (nessun ridimensionamento)" },
     812        { 159, "OK" },
     813        { 160, "Frequenza:" },
     814        { 161, "Ignora le impostazioni MIDI globali" },
     815        { 162, "Ignora le impostazioni MIDI globali" },
     816        { 163, "Ignora le impostazioni audio globali" },
     817        { 164, "Ignora le impostazioni grafiche globali" },
     818        { 165, "Ignora le impostazioni globali di volume" },
     819        { 166, "Emulatore PC Speaker" },
     820        { 167, "Password:" },
     821        { 168, "Il percorso non \350 una cartella" },
     822        { 169, "Il percorso non \350 un file" },
     823        { 170, "Il percorso non esiste" },
     824        { 171, "Percorsi" },
     825        { 172, "Pausa" },
     826        { 173, "Scegli il gioco:" },
     827        { 174, "La piattaforma per la quale il gioco \350 stato concepito" },
     828        { 175, "Piattaforma:" },
     829        { 176, "Tempo di gioco: " },
     830        { 177, "Seleziona un'azione" },
     831        { 178, "Percorso plugin:" },
     832        { 179, "Disp. preferito:" },
     833        { 180, "Premi il tasto da associare" },
     834        { 181, "Esci" },
     835        { 182, "Chiudi ScummVM" },
     836        { 183, "Autorizzazione di lettura negata" },
     837        { 184, "Lettura fallita" },
     838        { 185, "Riprogramma tasti" },
     839        { 186, "Rimuove il gioco dalla lista. I file del gioco rimarranno intatti" },
     840        { 187, "Resa grafica:" },
     841        { 188, "Destra" },
     842        { 189, "Clic destro" },
     843        { 190, "Clic destro" },
     844        { 191, "Rotazione" },
     845        { 192, "Volume effetti:" },
     846        { 193, "SMB" },
     847        { 194, "Salva" },
     848        { 195, "Salvataggi:" },
     849        { 196, "Salvataggi:" },
     850        { 197, "Salva gioco:" },
     851        { 198, "Scansione completa!" },
     852        { 199, "%d cartelle analizzate..." },
     853        { 200, "Menu principale di ScummVM" },
     854        { 201, "ScummVM non ha potuto trovare un motore in grado di eseguire il gioco selezionato!" },
     855        { 202, "ScummVM non ha potuto trovare nessun gioco nella cartella specificata!" },
     856        { 203, "ScummVM non ha potuto aprire la cartella specificata!" },
     857        { 204, "Cerca nella lista dei giochi" },
     858        { 205, "Cerca:" },
     859        { 206, "Seleziona SoundFont" },
     860        { 207, "Seleziona un tema" },
     861        { 208, "Seleziona la cartella di gioco aggiuntiva" },
     862        { 209, "Seleziona un'azione e clicca 'Mappa'" },
     863        { 210, "Seleziona la cartella dei temi dell'interfaccia" },
     864        { 211, "Seleziona la cartella dei file aggiuntivi" },
     865        { 212, "Seleziona la cartella dei plugin" },
     866        { 213, "Seleziona la cartella dei salvataggi" },
     867        { 214, "Seleziona la cartella per i salvataggi" },
     868        { 215, "Seleziona la cartella contenente i file di gioco" },
     869        { 216, "Sensibilit\340" },
     870        { 217, "Server:" },
     871        { 218, "Condivisione:" },
     872        { 219, "Breve identificatore di gioco utilizzato per il riferimento a salvataggi e per l'esecuzione del gioco dalla riga di comando" },
     873        { 220, "Mostra tastiera" },
     874        { 221, "Mostra cursore del mouse" },
     875        { 222, "Mostra i sottotitoli e attiva le voci" },
     876        { 223, "Mostra/nascondi cursore" },
     877        { 224, "Salta" },
     878        { 225, "Salta battuta" },
     879        { 226, "Salta testo" },
     880        { 227, "Aggancia ai bordi" },
     881        { 228, "Ridimensionamento software (di buona qualit\340, ma pi\371 lento)" },
     882        { 229, "Suono on/off" },
     883        { 230, "SoundFont \350 supportato da alcune schede audio, Fluidsynth e Timidity" },
     884        { 231, "SoundFont:" },
     885        { 232, "Voci" },
     886        { 233, "Modalit\340 di resa grafica speciali supportate da alcuni giochi" },
     887        { 234, "Volume degli effetti sonori" },
     888        { 235, "Specifica il dispositivo audio predefinito per l'output General MIDI" },
     889        { 236, "Specifica il dispositivo audio predefinito per l'output Roland MT-32/LAPC1/CM32l/CM64" },
     890        { 237, "Specifica il dispositivo di output audio o l'emulatore della scheda audio" },
     891        { 238, "Specifica il percorso di ulteriori dati usati dai giochi o da ScummVM" },
     892        { 239, "Specifica il percorso di ulteriori dati usati dal gioco" },
     893        { 240, "Specifica il dispositivo audio o l'emulatore della scheda audio preferiti" },
     894        { 241, "Specifica dove archiviare i salvataggi" },
     895        { 242, "Voci" },
     896        { 243, "Volume voci:" },
     897        { 244, "Renderer standard (16bpp)" },
     898        { 245, "Esegue il gioco selezionato" },
     899        { 246, "Stato:" },
     900        { 247, "Sub" },
     901        { 248, "Velocit\340 testo:" },
     902        { 249, "Sottotitoli" },
     903        { 250, "Cambia personaggio" },
     904        { 251, "Un tocco per il clic sinistro, doppio tocco per il clic destro" },
     905        { 252, "Testo e voci:" },
     906        { 253, "La cartella scelta \350 in sola lettura. Si prega di sceglierne un'altra." },
     907        { 254, "Percorso tema:" },
     908        { 255, "Tema:" },
     909        { 256, "Questo ID di gioco \350 gi\340 in uso. Si prega di sceglierne un'altro." },
     910        { 257, "Questo gioco non supporta il caricamento di salvataggi dalla schermata di avvio." },
     911        { 258, "Ora: " },
     912        { 259, "Attesa per l'avvio della rete" },
     913        { 260, "Compensa X del tocco" },
     914        { 261, "Compensa Y del tocco" },
     915        { 262, "Modalit\340 touchpad disattivata." },
     916        { 263, "Modalit\340 touchpad attivata." },
     917        { 264, "Roland MT-32 effettivo (disattiva emulazione GM)" },
     918        { 265, "Disattiva la mappatura General MIDI per i giochi con colonna sonora Roland MT-32" },
     919        { 266, "Sconosciuto" },
     920        { 267, "Errore sconosciuto" },
     921        { 268, "Smonta DVD" },
     922        { 269, "Smonta SMB" },
     923        { 270, "Non ridimensionato (devi scorrere a sinistra e a destra)" },
     924        { 271, "Modalit\340 colore non supportata" },
     925        { 272, "Salvataggio senza titolo" },
     926        { 273, "Su" },
     927        { 274, "Utilizza generazione di suono sia MIDI che AdLib" },
     928        { 275, "Utilizza il controllo del cursore stile trackpad del portatile" },
     929        { 276, "Nome utente:" },
     930        { 277, "Utilizzo del driver SDL " },
     931        { 278, "Underscan verticale:" },
     932        { 279, "Video" },
     933        { 280, "Tastiera virtuale" },
     934        { 281, "Volume" },
     935        { 282, "MIDI Windows" },
     936        { 283, "Autorizzazione di scrittura negata" },
     937        { 284, "Scrittura dati fallita" },
     938        { 285, "S\354" },
     939        { 286, "Devi riavviare ScummVM affinch\351 le modifiche abbiano effetto." },
     940        { 287, "Zona" },
     941        { 288, "Zoom indietro" },
     942        { 289, "Zoom avanti" },
     943        { 290, "ogni 10 minuti" },
     944        { 291, "ogni 15 minuti" },
     945        { 292, "ogni 30 minuti" },
     946        { 293, "ogni 5 minuti" },
     947        { 294, "~I~nfo" },
     948        { 295, "~A~ggiungi gioco..." },
     949        { 296, "~A~nnulla" },
     950        { 297, "~C~hiudi" },
     951        { 298, "~M~odifica gioco..." },
     952        { 299, "~A~iuto" },
     953        { 300, "Controlli combattimento di ~I~ndy" },
     954        { 301, "~T~asti" },
     955        { 302, "~M~odalit\340 mancini" },
     956        { 303, "~C~arica" },
     957        { 304, "~C~arica..." },
     958        { 305, "~S~uccessivi" },
     959        { 306, "~O~K" },
     960        { 307, "~O~pzioni" },
     961        { 308, "~O~pzioni..." },
     962        { 309, "~P~recedenti" },
     963        { 310, "C~h~iudi" },
     964        { 311, "~R~imuovi gioco" },
     965        { 312, "~R~ipristina" },
     966        { 313, "~V~ai a schermata di avvio" },
     967        { 314, "~S~alva" },
     968        { 315, "~G~ioca" },
     969        { 316, "~T~ransizioni attive" },
     970        { 317, "~E~ffetto acqua attivo" },
     971        { 318, "Modalit\340 ~Z~ip attivata" },
     972        { -1, NULL }
     973};
     974
     975const PoMessageEntry _translation_hu_HU[] = {
     976        { 0, "Project-Id-Version: ScummVM VERSION\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2009-11-25 07:42-0500\nLast-Translator: Alex Bevilacqua <alexbevi@gmail.com>\nLanguage-Team: Hungarian\nMIME-Version: 1.0\nContent-Type: text/plain; charset=cp1250\nContent-Transfer-Encoding: 8bit\nLanguage: \nPlural-Forms: nplurals=2; plural=(n != 1);\n" },
     977        { 14, "<alap\351rtelmezett>" },
     978        { 16, "AdLib vezet :" },
     979        { 17, "AdLib vezet :" },
     980        { 20, "AdLib vezet :" },
     981        { 23, "Aspect adag korrekci\363" },
     982        { 26, "Hang" },
     983        { 27, "Automatikus ment\351s:" },
     984        { 30, "Kulcsok" },
     985        { 33, "AdLib vezet :" },
     986        { 45, "Renderel\351si m\363d:" },
     987        { 56, "<alap\351rtelmezett>" },
     988        { 72, "K\351pess\351 Roland GS Mode" },
     989        { 77, "Extra \332tvonal:" },
     990        { 79, "Grafikus m\363d:" },
     991        { 83, "Teljes k\351perny s m\363d:" },
     992        { 89, "Lek\351pez eszk\366z GUI:" },
     993        { 93, "Extra \332tvonal:" },
     994        { 97, "Grafik\341val" },
     995        { 98, "Grafikus m\363d:" },
     996        { 118, "Kulcsok" },
     997        { 127, "AdLib vezet :" },
     998        { 129, "MIDI nyeres\351g:" },
     999        { 131, "Zene mennyis\351g:" },
     1000        { 138, "Vegyes AdLib/MIDI m\363d" },
     1001        { 143, "Zene mennyis\351g:" },
     1002        { 144, "Zene mennyis\351g:" },
     1003        { 145, "Muta \326sszes" },
     1004        { 151, "Soha" },
     1005        { 152, "Semmi" },
     1006        { 157, "Semmi" },
     1007        { 159, "Igen" },
     1008        { 160, "Kimeneti teljes\355tm\351ny:" },
     1009        { 171, "\326sv\351nyek" },
     1010        { 172, "\326sv\351nyek" },
     1011        { 187, "Renderel\351si m\363d:" },
     1012        { 192, "SFX mennyis\351ge" },
     1013        { 195, "Extra \332tvonal:" },
     1014        { 217, "Soha" },
     1015        { 242, "Csak a besz\351d" },
     1016        { 243, "Besz\351d mennyis\351g:" },
     1017        { 248, "Felirat sebess\351g:" },
     1018        { 249, "Csak feliratok" },
     1019        { 252, "Sz\366veg \351s besz\351d:" },
     1020        { 255, "T\351ma:" },
     1021        { 258, "T\351ma:" },
     1022        { 264, "Igaz Roland MT-32 (megb\351n\355t GM emul\341ci\363)" },
     1023        { 277, "Zenei vezet :" },
     1024        { 281, "Volumene" },
     1025        { 287, "Semmi" },
     1026        { 290, "10 percenk\351nt" },
     1027        { 291, "15 percenk\351nt" },
     1028        { 292, "30 percenk\351nt" },
     1029        { 293, "5 percenk\351nt" },
     1030        { 301, "Kulcsok" },
     1031        { 302, "Renderel\351si m\363d:" },
     1032        { 306, "Igen" },
     1033        { -1, NULL }
     1034};
     1035
     1036const PoMessageEntry _translation_fr_FR[] = {
     1037        { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-08-11 22:14+0100\nLast-Translator: Thierry Crozat <criezy@scummvm.org>\nLanguage-Team: French <scummvm-devel@lists.sf.net>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit\nLanguage: Francais\nPlural-Forms: nplurals=2; plural=n>1;\n" },
     1038        { 1, "Voulez-vous vraiment quitter?" },
     1039        { 2, "(Actif)" },
     1040        { 3, "(Jeu)" },
     1041        { 4, "(Global)" },
     1042        { 5, "(compil\351 sur %s)" },
     1043        { 6, ", \351chec du montage du disque partag\351" },
     1044        { 7, ", disque partag\351 non mont\351" },
     1045        { 8, "... en cours ..." },
     1046        { 9, "11 kHz" },
     1047        { 10, "22 kHz" },
     1048        { 11, "44 kHz" },
     1049        { 12, "48 kHz" },
     1050        { 13, "8 kHz" },
     1051        { 14, "<defaut>" },
     1052        { 15, "\300 propos de ScummVM" },
     1053        { 16, "\311mulateur AdLib" },
     1054        { 17, "\311mulateur AdLib:" },
     1055        { 18, "AdLib est utilis\351 pour la musique dans de nombreux jeux" },
     1056        { 19, "Ajouter..." },
     1057        { 20, "\311mulateur Amiga Audio" },
     1058        { 21, "Anti-cr\351nel\351 (16 bpp)" },
     1059        { 22, "\311mulateur Apple II GS (PAS IMPL\311MENT\311)" },
     1060        { 23, "Correction du rapport d'aspect" },
     1061        { 24, "Touche associ\351e: %s" },
     1062        { 25, "Touche associ\351e: aucune" },
     1063        { 26, "Audio" },
     1064        { 27, "Sauvegarde auto:" },
     1065        { 28, "Moteurs disponibles:" },
     1066        { 29, "\300 ~P~ropos..." },
     1067        { 30, "Affecter les touches" },
     1068        { 31, "Les deux" },
     1069        { 32, "Luminosit\351:" },
     1070        { 33, "\311mulateur C64 Audio" },
     1071        { 34, "Annuler" },
     1072        { 35, "Impossible de cr\351er le fichier" },
     1073        { 36, "Change les options du jeu" },
     1074        { 37, "Change les options globales de ScummVM" },
     1075        { 38, "V\351rifie si vous voulez utiliser un p\351riph\351rique audio compatible Roland connect\351 \340 l'ordinateur" },
     1076        { 39, "Choisir" },
     1077        { 40, "S\351lectionnez une action \340 affecter" },
     1078        { 41, "Effacer la valeur" },
     1079        { 42, "Fermer" },
     1080        { 43, "Corrige le rapport d'aspect pour les jeu 320x200" },
     1081        { 44, "Impossible de trouver un moteur pour ex\351cuter le jeu s\351lectionn\351" },
     1082        { 45, "Mode vid\351o actuel" },
     1083        { 46, "Bas" },
     1084        { 47, "Gauche" },
     1085        { 48, "Droit" },
     1086        { 49, "Haut" },
     1087        { 50, "\311mulateur DOSBox OPL" },
     1088        { 51, "DVD" },
     1089        { 52, "DVD mont\351 avec succ\350s" },
     1090        { 53, "DVD non mont\351" },
     1091        { 54, "Date:" },
     1092        { 55, "Debugger" },
     1093        { 56, "D\351faut" },
     1094        { 57, "Supprimer" },
     1095        { 58, "D\351sactiv\351 l'extinction" },
     1096        { 59, "GFX d\351sactiv\351" },
     1097        { 60, "%d nouveaux jeux trouv\351s ..." },
     1098        { 61, "%d nouveaux jeux trouv\351s." },
     1099        { 62, "Affichage" },
     1100        { 63, "Afficher le clavier" },
     1101        { 64, "Voulez-vous vraiment supprimer cette sauvegarde?" },
     1102        { 65, "Voulez-vous vraiment supprimer ce jeu?" },
     1103        { 66, "Voulez-vous vraiment lancer la d\351tection automatique des jeux? Cela peut potentiellement ajouter un grand nombre de jeux." },
     1104        { 67, "Voulez-vous charger ou sauver le jeu?" },
     1105        { 68, "Voulez-vous ex\351cuter une recherche automatique?" },
     1106        { 69, "Voulez-vous quitter?" },
     1107        { 70, "Coup double" },
     1108        { 71, "Bas" },
     1109        { 72, "Activer le mode Roland GS" },
     1110        { 73, "Le niveau de debug '%s' n'est pas support\351 par ce moteur de jeu" },
     1111        { 74, "Anglais" },
     1112        { 75, "Erreur lors de l'\351x\351cution du jeu:" },
     1113        { 76, "\311chec du montage du DVD" },
     1114        { 77, "Extra:" },
     1115        { 78, "\311mulateur FM Towns" },
     1116        { 79, "Mode rapide" },
     1117        { 80, "Options incluses:" },
     1118        { 81, "Regarder autour" },
     1119        { 82, "Nom complet du jeu" },
     1120        { 83, "Plein \351cran" },
     1121        { 84, "Acceleration du pad GC:" },
     1122        { 85, "Sensibilit\351 du pad GC:" },
     1123        { 86, "GFX" },
     1124        { 87, "Sortie GM:" },
     1125        { 88, "Langue:" },
     1126        { 89, "Interface:" },
     1127        { 90, "Jeu" },
     1128        { 91, "Fichier de don\351es introuvable" },
     1129        { 92, "ID de jeu non support\351" },
     1130        { 93, "Chemin du Jeu:" },
     1131        { 94, "Menu global" },
     1132        { 95, "Remonte d'un niveau dans la hi\351rarchie de r\351pertoire" },
     1133        { 96, "Remonter" },
     1134        { 97, "Graphique" },
     1135        { 98, "Mode graphique:" },
     1136        { 99, "Mise \340 l'echelle mat\351rielle (rapide mais qualit\351 faible)" },
     1137        { 100, "Hercules Ambre" },
     1138        { 101, "Hercules Vert" },
     1139        { 102, "Cach\351 la barre d'outils" },
     1140        { 103, "Audio haute qualit\351 (plus lent) (red\351marrer)" },
     1141        { 104, "Une valeur plus \351lev\351e donne une meilleure qualit\351 audio mais peut ne pas \352tre support\351 par votre carte son" },
     1142        { 105, "Ajoute un jeu \340 la Liste. Maintenez Shift enfonc\351e pour un Ajout Massif" },
     1143        { 106, "Underscan horizontal:" },
     1144        { 107, "\311mulateur IBM PCjr" },
     1145        { 108, "ID:" },
     1146        { 109, "Initialiser le r\351seau" },
     1147        { 110, "\311chelle initiale de l'\351cran du haut" },
     1148        { 111, "Initialisation de l'\311mulateur MT-32" },
     1149        { 112, "Initialisation du r\351seau" },
     1150        { 113, "Entr\351e" },
     1151        { 114, "Chemin Invalide" },
     1152        { 115, "Affectation des touches" },
     1153        { 116, "Clavier" },
     1154        { 117, "Affectation des touches:" },
     1155        { 118, "Touches" },
     1156        { 119, "Langue de l'interface graphique de ScummVM" },
     1157        { 120, "Langue du jeu. Cela ne traduira pas en anglais par magie votre version espagnole du jeu." },
     1158        { 121, "Langue:" },
     1159        { 122, "Gauche" },
     1160        { 123, "Clic Gauche" },
     1161        { 124, "Charger" },
     1162        { 125, "Charger le jeu:" },
     1163        { 126, "Charge une sauvegarde pour le jeu s\351lectionn\351" },
     1164        { 127, "\311mulateur MAME OPL" },
     1165        { 128, "MIDI" },
     1166        { 129, "Gain MIDI:" },
     1167        { 130, "MT-32" },
     1168        { 131, "Sortie MT-32:" },
     1169        { 132, "\311mulateur MT-32" },
     1170        { 133, "\311chelle de l'\351cran principal" },
     1171        { 134, "Affecter" },
     1172        { 135, "Ajout Massif..." },
     1173        { 136, "Menu" },
     1174        { 137, "Divers" },
     1175        { 138, "Mode mixe AdLib/MIDI" },
     1176        { 139, "Monter le DVD" },
     1177        { 140, "Monter SMB" },
     1178        { 141, "Clic de souris" },
     1179        { 142, "Fonction Multiple" },
     1180        { 143, "Sortie Audio:" },
     1181        { 144, "Volume Musique:" },
     1182        { 145, "Silence" },
     1183        { 146, "Nom:" },
     1184        { 147, "R\351seau d\351connect\351" },
     1185        { 148, "R\351seau non initialis\351 (%d)" },
     1186        { 149, "R\351seau connect\351" },
     1187        { 150, "R\351seau connect\351, disque partag\351 mont\351" },
     1188        { 151, "Jamais" },
     1189        { 152, "Non" },
     1190        { 153, "Date non sauv\351e" },
     1191        { 154, "Pas de musique" },
     1192        { 155, "Dur\351e de jeu non sauv\351e" },
     1193        { 156, "Heure non sauv\351e" },
     1194        { 157, "Aucun" },
     1195        { 158, "Normal (\351chelle d'origine)" },
     1196        { 159, "OK" },
     1197        { 160, "Fr\351quence:" },
     1198        { 161, "Utiliser des r\351glages MIDI sp\351cifiques \340 ce jeux" },
     1199        { 162, "Utiliser des r\351glages MT-32 sp\351cifiques \340 ce jeux" },
     1200        { 163, "Utiliser des r\351glages audio sp\351cifiques \340 ce jeux" },
     1201        { 164, "Utiliser des r\351glages graphiques sp\351cifiques \340 ce jeux" },
     1202        { 165, "Utiliser des r\351glages de volume sonore sp\351cifiques \340 ce jeux" },
     1203        { 166, "\311mulateur Haut Parleur PC" },
     1204        { 167, "Mot de passe:" },
     1205        { 168, "Chemin n'est pas un r\351pertoire" },
     1206        { 169, "Chemin n'est pas un fichier" },
     1207        { 170, "Chemin inexistant" },
     1208        { 171, "Chemins" },
     1209        { 172, "Mettre en pause" },
     1210        { 173, "Choisissez le jeu:" },
     1211        { 174, "Plateforme pour laquelle votre jeu a \351t\351 con\347u" },
     1212        { 175, "Plateforme:" },
     1213        { 176, "Dur\351e de jeu:" },
     1214        { 177, "Selectionnez une action" },
     1215        { 178, "Plugins:" },
     1216        { 179, "Sortie Pr\351f\351r\351:" },
     1217        { 180, "Appuyez sur la touche \340 associer" },
     1218        { 181, "Quitter" },
     1219        { 182, "Quitter ScummVM" },
     1220        { 183, "V\351roulli\351 en lecture" },
     1221        { 184, "Echec de la lecture" },
     1222        { 185, "Changer l'affectation des touches" },
     1223        { 186, "Supprime le jeu de la liste. Les fichiers sont conserv\351s" },
     1224        { 187, "Mode de rendu:" },
     1225        { 188, "Droite" },
     1226        { 189, "Clic Droit" },
     1227        { 190, "Clic droit" },
     1228        { 191, "Pivoter" },
     1229        { 192, "Volume Bruitage:" },
     1230        { 193, "SMB" },
     1231        { 194, "Sauver" },
     1232        { 195, "Sauvegardes:" },
     1233        { 196, "Sauvegardes:" },
     1234        { 197, "Sauvegarde:" },
     1235        { 198, "Examen termin\351!" },
     1236        { 199, "%d r\351pertoires examin\351s ..." },
     1237        { 200, "Menu Principal ScummVM" },
     1238        { 201, "ScummVM n'a pas pu trouv\351 de moteur pour lancer le jeu s\351lectionn\351." },
     1239        { 202, "ScummVM n'a pas trouv\351 de jeux dans le r\351pertoire s\351lectionn\351." },
     1240        { 203, "ScummVM n'a pas pu ouvrir le r\351pertoire s\351lectionn\351." },
     1241        { 204, "Recherche dans la liste de jeux" },
     1242        { 205, "Filtre:" },
     1243        { 206, "Choisir une banque de sons" },
     1244        { 207, "S\351lectionnez un Th\350me" },
     1245        { 208, "S\351lectionner un r\351pertoire suppl\351mentaire" },
     1246        { 209, "Selectionez une action et cliquez 'Affecter'" },
     1247        { 210, "S\351lectionner le r\351pertoire des th\350mes d'interface" },
     1248        { 211, "S\351lectionner le r\351pertoire pour les fichiers supl\351mentaires" },
     1249        { 212, "S\351lectionner le r\351pertoire des plugins" },
     1250        { 213, "S\351lectionner le r\351pertoire pour les sauvegardes" },
     1251        { 214, "S\351lectionner le r\351pertoire pour les sauvegardes" },
     1252        { 215, "S\351lectionner le r\351pertoire contenant les donn\351es du jeu" },
     1253        { 216, "Sensibilit\351" },
     1254        { 217, "Serveur:" },
     1255        { 218, "Disque partag\351:" },
     1256        { 219, "ID compact du jeu utilis\351 pour identifier les sauvegardes et d\351marrer le jeu depuis la ligne de commande" },
     1257        { 220, "Afficher le clavier" },
     1258        { 221, "Afficher le curseur de la souris" },
     1259        { 222, "Affiche les sous-titres et joue les dialogues audio" },
     1260        { 223, "Afficher/Cacher le curseur" },
     1261        { 224, "Passer" },
     1262        { 225, "Passer la phrase" },
     1263        { 226, "Sauter le texte" },
     1264        { 227, "Aligner sur les bords" },
     1265        { 228, "Mise \340 l'\351chelle logicielle (bonne qualit\351 mais plus lent)" },
     1266        { 229, "Audio marche/arr\352t" },
     1267        { 230, "La banque de sons est utilis\351e par certaines cartes audio, Fluidsynth et Timidity" },
     1268        { 231, "Banque de sons:" },
     1269        { 232, "Audio" },
     1270        { 233, "Mode sp\351cial de tramage support\351 par certains jeux" },
     1271        { 234, "Volume des effets sp\351ciaux sonores" },
     1272        { 235, "Sp\351cifie le p\351riph\351rique audio par d\351faut pour la sortie General MIDI" },
     1273        { 236, "Sp\351cifie le p\351riph\351rique audio par d\351faut pour la sortie Roland MT-32/LAPC1/CM32l/CM64" },
     1274        { 237, "Sp\351cifie le p\351riph\351rique de sortie audio ou l'\351mulateur de carte audio" },
     1275        { 238, "Sp\351cifie un chemin vers des donn\351es suppl\351mentaires utilis\351es par tous les jeux ou ScummVM" },
     1276        { 239, "D\351finie un chemin vers des donn\351es supl\351mentaires utilis\351es par le jeu" },
     1277        { 240, "Sp\351cifie le p\351riph\351rique de sortie audio ou l'\351mulateur de carte audio pr\351f\351r\351" },
     1278        { 241, "D\351finie l'emplacement o\371 les fichiers de sauvegarde sont cr\351\351s" },
     1279        { 242, "Audio" },
     1280        { 243, "Volume Dialogues:" },
     1281        { 244, "Standard (16bpp)" },
     1282        { 245, "D\351marre le jeu s\351lectionn\351" },
     1283        { 246, "Status:" },
     1284        { 247, "Subs" },
     1285        { 248, "Vitesse des ST:" },
     1286        { 249, "Sous-titres" },
     1287        { 250, "Changement de personnage" },
     1288        { 251, "Toucher pour un clic gauche, toucher deux fois pour un clic droit" },
     1289        { 252, "Dialogue:" },
     1290        { 253, "Le r\351pertoire s\351lectionn\351 est v\351rouill\351 en \351criture. S\351lectionnez un autre r\351pertoire." },
     1291        { 254, "Th\350mes:" },
     1292        { 255, "Th\350me:" },
     1293        { 256, "Cet ID est d\351j\340 utilis\351 par un autre jeu. Choisissez en un autre svp." },
     1294        { 257, "Le chargement de sauvegarde depuis le lanceur n'est pas support\351 pour ce jeu." },
     1295        { 258, "Heure:" },
     1296        { 259, "D\351passement du d\351lai lors de l'initialisation du r\351seau" },
     1297        { 260, "D\351calage X du toucher" },
     1298        { 261, "D\351callage Y du toucher" },
     1299        { 262, "Mode touchpad d\351sactiv\351" },
     1300        { 263, "Mode touchpad activ\351" },
     1301        { 264, "Roland MT-32 exacte (d\351sactive l'\351mulation GM)" },
     1302        { 265, "D\351sactiver la conversion des pistes MT-32 en General MIDI" },
     1303        { 266, "Inconue" },
     1304        { 267, "Erreur inconnue" },
     1305        { 268, "D\351monter le DVD" },
     1306        { 269, "D\351monter SMB" },
     1307        { 270, "Sans changement d'\351chelle (vous devez faire d\351filer l'\351cran)" },
     1308        { 271, "Mode de couleurs non support\351" },
     1309        { 272, "Sauvegarde sans nom" },
     1310        { 273, "Haut" },
     1311        { 274, "Utiliser \340 la fois MIDI et AdLib" },
     1312        { 275, "Activer le contr\364le du curseur de type trackpad" },
     1313        { 276, "Nom d'utilisateur:" },
     1314        { 277, "Utilise le pilote SDL" },
     1315        { 278, "Underscan vertical:" },
     1316        { 279, "Vid\351o" },
     1317        { 280, "Clavier virtuel" },
     1318        { 281, "Volume" },
     1319        { 282, "MIDI Windows" },
     1320        { 283, "Verrouill\351 en \351criture" },
     1321        { 284, "Echec de l'\351criture des donn\351es" },
     1322        { 285, "Oui" },
     1323        { 286, "Vous devez relancer ScummVM pour que le changement soit pris en compte." },
     1324        { 287, "Zone" },
     1325        { 288, "Zoomer" },
     1326        { 289, "D\351zoomer" },
     1327        { 290, "Toutes les 10 mins" },
     1328        { 291, "Toutes les 15 mins" },
     1329        { 292, "Toutes les 30 mins" },
     1330        { 293, "Toutes les 5 mins" },
     1331        { 294, "\300 ~P~ropos" },
     1332        { 295, "~A~jouter..." },
     1333        { 296, "~A~nnuler" },
     1334        { 297, "~F~ermer" },
     1335        { 298, "~E~diter..." },
     1336        { 299, "~A~ide" },
     1337        { 300, "Contr\364le des combats d'~I~ndy" },
     1338        { 301, "~T~ouches" },
     1339        { 302, "Mode ~G~aucher" },
     1340        { 303, "~C~harger" },
     1341        { 304, "~C~harger" },
     1342        { 305, "~S~uivant" },
     1343        { 306, "~O~K" },
     1344        { 307, "~O~ptions" },
     1345        { 308, "~O~ptions..." },
     1346        { 309, "~P~r\351c\351dent" },
     1347        { 310, "~Q~uitter" },
     1348        { 311, "~S~upprimer" },
     1349        { 312, "~R~eprendre" },
     1350        { 313, "Retour au ~L~anceur" },
     1351        { 314, "~S~auver" },
     1352        { 315, "~D~\351marrer" },
     1353        { 316, "T~r~ansitions activ\351" },
     1354        { 317, "~E~ffets de l'Eau Activ\351s" },
     1355        { 318, "Mode ~Z~ip Activ\351" },
     1356        { -1, NULL }
     1357};
     1358
     1359const PoMessageEntry _translation_uk_UA[] = {
     1360        { 0, "Project-Id-Version: ScummVM VERSION\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-07-30 22:19+0100\nLast-Translator: Lubomyr Lisen\nLanguage-Team: Ukrainian\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-5\nContent-Transfer-Encoding: 8bit\nLanguage: Ukrainian\nPlural-Forms: nplurals=3;     plural=n%10==1 && n%100!=11 ? 0 :            n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" },
     1361        { 1, "   \262\330 \343\337\325\322\335\325\335\366, \351\336 \345\336\347\325\342\325 \322\330\331\342\330?   " },
     1362        { 2, " (\260\332\342\330\322\335\320)" },
     1363        { 3, " (\246\323\340\330)" },
     1364        { 4, " (\263\333\336\321\320\333\354\335\320)" },
     1365        { 5, "(\327\366\321\340\320\335\330\331 %s)" },
     1366        { 6, ", \337\336\334\330\333\332\320 \337\366\324 \347\320\341 \337\366\324\332\333\356\347\325\335\335\357 \337\320\337\332\330" },
     1367        { 7, ", \337\320\337\332\320 \335\325 \337\366\324\332\333\356\347\325\335\320" },
     1368        { 8, "... \337\336\350\343\332 ..." },
     1369        { 9, "11 \332\263\346" },
     1370        { 10, "22 \332\263\346" },
     1371        { 11, "44 \332\263\346" },
     1372        { 12, "48 \332\263\346" },
     1373        { 13, "8 \332\263\346" },
     1374        { 14, "<\327\320 \343\334\336\322\347\320\335\335\357\334>" },
     1375        { 15, "\277\340\336 ScummVM" },
     1376        { 16, "\265\334\343\333\357\342\336\340 AdLib" },
     1377        { 17, "\265\334\343\333\357\342\336\340 AdLib:" },
     1378        { 18, "\267\322\343\332\336\322\320 \332\320\340\342\320 AdLib \322\330\332\336\340\330\341\342\336\322\343\364\342\354\341\357 \321\320\323\320\342\354\334\320 \366\323\340\320\334\330" },
     1379        { 19, "\264\336\324. \323\340\343..." },
     1380        { 20, "\265\334\343\333\357\342\336\340 AdLib" },
     1381        { 21, "\300\320\341\342\325\340\330\327\320\342\336\340 \327\366 \327\323\333\320\324\326\343\322\320\335\335\357\334 (16bpp)" },
     1382        { 23, "\272\336\340\325\332\346\366\357 \341\337\366\322\322\366\324\335\336\350\325\335\335\357 \341\342\336\340\366\335" },
     1383        { 24, "\277\340\330\327\335\320\347\325\335\320 \332\333\320\322\366\350\320 : %s" },
     1384        { 25, "\277\340\330\327\335\320\347\325\335\320 \332\333\320\322\366\350\320 : \335\325\334\320\364" },
     1385        { 26, "\260\343\324\366\336" },
     1386        { 27, "\260\322\342\336\327\321\325\340\325\326\325\335\335\357:" },
     1387        { 28, "\264\336\341\342\343\337\335\366 \324\322\330\326\332\330:" },
     1388        { 29, "\277\340\336 \337~\340~\336\323\340\320\334\343..." },
     1389        { 30, "\337\340\330\327\335\320\347\330\342\330 \332\333\320\322\366\350\366" },
     1390        { 31, "\262\341\325" },
     1391        { 32, "\317\341\332\340\320\322\366\341\342\354:" },
     1392        { 33, "\265\334\343\333\357\342\336\340 AdLib" },
     1393        { 34, "\262\366\324\334\366\335\320" },
     1394        { 35, "\275\325 \334\336\326\343 \341\342\322\336\340\330\342\330 \344\320\331\333" },
     1395        { 36, "\267\334\366\335\330\342\330 \336\337\346\366\367 \323\340\330" },
     1396        { 37, "\267\334\366\335\330\342\330 \323\333\336\321\320\333\354\335\366 \336\337\346\366\367 ScummVM" },
     1397        { 38, "\262\366\324\334\366\342\354\342\325, \357\332\351\336 \343 \322\320\341 \337\366\324\332\333\356\347\325\335\330\331 Roland-\341\343\334\366\341\335\330\331 \327\322\343\332\336\322\330\331 \337\340\330\341\342\340\366\331 \366 \322\330 \345\336\347\325\342\325 \331\336\323\336 \322\330\332\336\340\330\341\342\320\342\330" },
     1398        { 39, "\262\330\321\340\320\342\330" },
     1399        { 40, "\262\330\321\325\340\366\342\354 \324\366\356 \324\333\357 \337\340\330\327\335\320\347\325\335\335\357" },
     1400        { 41, "\276\347\330\341\342\330\342\330 \327\335\320\347\325\335\335\357" },
     1401        { 42, "\267\320\332\340\330\342\330" },
     1402        { 43, "\272\336\340\330\323\343\322\320\342\330 \341\337\366\322\322\366\324\335\336\350\325\335\335\357 \341\342\336\340\366\335 \324\333\357 \366\323\336\340 \327 \323\340\320\344\366\332\336\356 320x200" },
     1403        { 44, "\275\325 \334\336\326\343 \327\335\320\331\342\330 \324\322\330\326\336\332 \324\333\357 \327\320\337\343\341\332\343 \322\330\321\340\320\335\336\367 \323\340\330" },
     1404        { 45, "\302\325\332\343\347\330\331 \322\366\324\325\336\340\325\326\330\334:" },
     1405        { 46, "\272\343\340\341\336\340 \322\335\330\327" },
     1406        { 47, "\272\343\340\341\336\340 \322\333\366\322\336" },
     1407        { 48, "\272\343\340\341\336\340 \322\337\340\320\322\336" },
     1408        { 49, "\272\343\340\341\336\340 \322\322\325\340\345" },
     1409        { 50, "\265\334\343\333\357\342\336\340 DOSBox OPL" },
     1410        { 51, "DVD" },
     1411        { 52, "DVD \337\366\324\332\333\356\347\325\335\330\331 \343\341\337\366\350\335\336" },
     1412        { 53, "DVD \335\325 \337\366\324\332\333\356\347\325\335\330\331" },
     1413        { 54, "\264\320\342\320: " },
     1414        { 55, "\262\366\324\333\320\324\347\330\332" },
     1415        { 56, "\267\320 \343\334\336\322\347\320\335\335\357\334" },
     1416        { 57, "\262\330\324\320\333\330\342\330" },
     1417        { 58, "\267\320\321\336\340\336\335\330\342\330 \322\330\334\332\335\325\335\335\357" },
     1418        { 59, "\261\325\327 \323\340\320\344\366\332\330" },
     1419        { 60, "\267\335\320\331\324\325\335\336 %d \335\336\322\330\345 \366\323\336\340 ..." },
     1420        { 61, "\267\335\320\331\324\325\335\336 %d \335\336\322\330\345 \366\323\336\340." },
     1421        { 62, "\277\336\332\320\327\320\342\330 " },
     1422        { 63, "\277\336\332\320\327\320\342\330 \332\333\320\322\366\320\342\343\340\343" },
     1423        { 64, "\262\330 \324\366\331\341\335\336 \345\336\347\325\342\325 \322\330\324\320\333\330\342\330 \346\325 \327\321\325\340\325\326\325\335\335\357?" },
     1424        { 65, "\262\330 \324\366\331\341\335\336 \345\336\347\325\342\325 \322\330\324\320\333\330\342\330 \343\341\342\320\335\336\322\332\330 \324\333\357 \346\366\364\367 \323\340\330?" },
     1425        { 66, "\262\330 \324\366\331\341\335\336 \345\336\347\325\342\325 \327\320\337\343\341\342\330\342\330 \324\325\342\325\332\342\336\340 \343\341\366\345 \366\323\336\340? \306\325 \337\336\342\325\335\346\366\331\335\336 \334\336\326\325 \324\336\324\320\342\330 \322\325\333\330\332\343 \332\366\333\354\332\366\341\342\354 \366\323\336\340." },
     1426        { 67, "\262\330 \345\336\347\325\342\325 \327\320\322\320\335\342\320\326\330\342\330 \320\321\336 \327\321\325\340\325\323\342\330 \323\340\343?" },
     1427        { 68, "\262\330 \345\336\347\325\342\325 \327\324\366\331\341\335\330\342\330 \320\322\342\336\334\320\342\330\347\335\330\331 \337\336\350\343\332?" },
     1428        { 69, "\262\330 \345\336\347\330\342\325 \322\330\331\342\330?" },
     1429        { 70, "\277\336\324\322\366\331\335\330\331 \343\324\320\340" },
     1430        { 71, "\262\335\330\327" },
     1431        { 72, "\303\322\366\334\332\335\343\342\330 \340\325\326\330\334 Roland GS" },
     1432        { 73, "\264\322\330\326\336\332 \335\325 \337\366\324\342\340\330\334\343\364 \340\366\322\325\335\354 \322\366\324\333\320\324\332\330 '%s'" },
     1433        { 74, "English" },
     1434        { 75, "\277\336\334\330\333\332\320 \327\320\337\343\341\332\343 \323\340\330:" },
     1435        { 76, "\277\336\334\330\333\332\320 \337\366\324 \347\320\341 \337\366\324\332\333\356\347\325\335\335\357 DVD" },
     1436        { 77, "\264\336\324. \350\333\357\345:" },
     1437        { 78, "\265\334\343\333\357\342\336\340 FM Towns" },
     1438        { 79, "\310\322\330\324\332\330\331 \340\325\326\330\334" },
     1439        { 80, "\262\332\333\356\347\325\335\366 \322 \321\366\333\324 \336\337\346\366\367:" },
     1440        { 81, "\262\366\333\354\335\330\331 \336\323\333\357\324" },
     1441        { 82, "\277\336\322\335\320 \335\320\327\322\320 \323\340\330" },
     1442        { 83, "\277\336\322\335\336\325\332\340\320\335\335\330\331 \340\325\326\330\334" },
     1443        { 84, "\277\340\330\341\332\336\340\325\335\335\357 GC \337\320\324\343:" },
     1444        { 85, "\307\343\342\333\330\322\366\341\342\354 GC \337\320\324\343:" },
     1445        { 86, "\263\340\344" },
     1446        { 87, "\277\340\330\341\342\340\366\331 GM:" },
     1447        { 88, "\274\336\322\320 \366\335\342\325\340\344\325\331\341\343:" },
     1448        { 89, "\300\320\341\342\325\340\330\327\320\342\336\340 GUI:" },
     1449        { 90, "\263\340\320" },
     1450        { 91, "\275\325\334\320\364 \344\320\331\333\366\322 \323\340\330" },
     1451        { 92, "Game Id \335\325 \337\366\324\342\340\330\334\343\364\342\354\341\357" },
     1452        { 93, "\310\333\357\345 \324\336 \323\340\330: " },
     1453        { 94, "\263\333\336\321\320\333\354\335\325 \334\325\335\356" },
     1454        { 95, "\277\325\340\325\331\342\330 \335\320 \337\320\337\332\343 \340\366\322\335\325\334 \322\330\351\325" },
     1455        { 96, "\262\322\325\340\345" },
     1456        { 97, "\263\340\320\344\366\332\320" },
     1457        { 98, "\263\340\320\344\366\347\335\330\331 \340\325\326\330\334:" },
     1458        { 99, "\305\320\340\324\322\320\340\335\336\325 \334\320\341\350\342\320\321\343\322\320\335\335\357 (\350\322\330\324\332\336, \320\333\325 \335\330\327\354\332\336\367 \357\332\336\341\342\366)" },
     1459        { 100, "Hercules \317\335\342\320\340\335\330\331" },
     1460        { 101, "Hercules \267\325\333\325\335\330\331" },
     1461        { 102, "\267\320\345\336\322\320\342\330 \337\320\335\325\333\354 \366\335\341\342\340\343\334\325\335\342\366\322" },
     1462        { 103, "\262\330\341\336\332\320 \357\332\366\341\342\354 \327\322\343\332\343 (\337\336\322\366\333\354\335\366\350\325) (\340\325\321\343\342)" },
     1463        { 104, "\262\325\333\330\332\366 \327\335\320\347\325\335\335\357 \327\320\324\320\356\342\354 \332\340\320\351\343 \357\332\366\341\342\354 \327\322\343\332\343, \337\340\336\342\325 \322\336\335\330 \334\336\326\343\342\354 \335\325 \337\366\324\342\340\330\334\343\322\320\342\330\341\357 \322\320\350\336\356 \327\322\343\332\336\322\336\356 \332\320\340\342\336\356" },
     1464        { 105, "\303\342\340\330\334\343\331\342\325 \332\333\320\322\366\350\343 Shift \324\333\357 \342\336\323\336, \351\336\321 \324\336\324\320\342\330 \324\325\332\366\333\354\332\320 \366\323\336\340" },
     1465        { 106, "\263\336\340\330\327\336\335\342\320\333\354\335\330\331 underscan:" },
     1466        { 107, "\265\334\343\333\357\342\336\340 IBM PCjr" },
     1467        { 108, "ID:" },
     1468        { 109, "\246\335\366\346\366\320\333\366\327\320\346\366\357 \334\325\340\325\326\366" },
     1469        { 110, "\277\336\347\320\342\332\336\322\330\331 \334\320\341\350\342\320\321 \322\325\340\345\335\354\336\323\336 \325\332\340\320\335\343:" },
     1470        { 111, "\275\320\341\342\340\336\356\356 \325\334\343\333\357\342\336\340 MT-32" },
     1471        { 112, "\275\320\333\320\350\342\336\322\343\356 \334\325\340\325\326\343" },
     1472        { 113, "\262\322\366\324" },
     1473        { 114, "\275\325\337\340\320\322\330\333\354\335\330\331 \350\333\357\345" },
     1474        { 115, "\277\340\330\327\335\320\347\325\335\335\357 \332\333\320\322\366\350" },
     1475        { 116, "\272\333\320\322\366\320\342\343\340\320" },
     1476        { 117, "\302\320\321\333\330\346\357 \332\333\320\322\366\350:" },
     1477        { 118, "\272\333\320\322\366\350\366" },
     1478        { 119, "\274\336\322\320 \323\340\320\344\366\347\335\336\323\336 \366\335\342\325\340\344\325\331\341\343 ScummVM" },
     1479        { 120, "\274\336\322\320 \323\340\330. \267\334\366\335\320 \346\354\336\323\336 \337\320\340\320\334\325\342\340\343 \335\325 \337\325\340\325\342\322\336\340\330\342\354 \323\340\343 \335\320 \320\335\323\333\366\331\341\354\332\366\331 \322 \343\332\340\320\367\335\341\354\332\343" },
     1480        { 121, "\274\336\322\320:" },
     1481        { 122, "\262\333\366\322\336" },
     1482        { 123, "\273\366\322\330\331 \332\333\366\332" },
     1483        { 124, "\267\320\322\320\335\342\320\326\330\342\330" },
     1484        { 125, "\267\320\322\320\335\342\320\326\330\342\330 \323\340\343:" },
     1485        { 126, "\267\320\322\320\335\342\320\326\330\342\330 \327\321\325\340\325\326\325\335\335\357 \324\333\357 \322\330\321\340\320\335\336\367 \323\340\330" },
     1486        { 127, "\265\334\343\333\357\342\336\340 MAME OPL:" },
     1487        { 128, "MIDI" },
     1488        { 129, "\277\336\341\330\333\325\335\335\357 MIDI:" },
     1489        { 130, "MT-32" },
     1490        { 131, "\277\340\330\341\342\340\366\331 MT-32:" },
     1491        { 132, "\265\334\343\333\357\342\336\340 MT-32" },
     1492        { 133, "\274\320\341\350\342\320\321 \323\336\333\336\322\335\336\323\336 \325\332\340\320\335\343:" },
     1493        { 134, "\277\340\330\327\335\320\347\330\342\330" },
     1494        { 135, "\264\336\324. \321\320\323\320\342\336..." },
     1495        { 136, "\274\325\335\356" },
     1496        { 137, "\300\366\327\335\325" },
     1497        { 138, "\267\334\366\350\320\335\330\331 \340\325\326\330\334 AdLib/MIDI" },
     1498        { 139, "\277\366\324\332\333\356\347\330\342\330 DVD" },
     1499        { 140, "\277\366\324\332\333\356\347\330\342\330 SMB" },
     1500        { 141, "\272\333\366\332 \334\330\350\332\336\356" },
     1501        { 142, "\274\343\333\354\342\366\344\343\335\332\346\366\357" },
     1502        { 143, "\274\343\327\330\347\335\330\331 \277\340\330\341\342\340\366\331:" },
     1503        { 144, "\263\343\347\335\366\341\342\354 \334\343\327\330\332\330:" },
     1504        { 145, "\262\330\334\332\335\343\342\330 \343\341\325" },
     1505        { 146, "\275\320\327\322\320:" },
     1506        { 147, "\274\325\340\325\326\320 \322\330\334\332\335\325\335\320" },
     1507        { 148, "\274\325\340\325\326\320 \335\325 \335\320\333\320\323\336\324\326\325\335\320 (%d)" },
     1508        { 149, "\274\325\340\325\326\320 \337\340\320\346\356\364" },
     1509        { 150, "\274\325\340\325\326\320 \337\340\320\346\356\364, \337\320\337\332\320 \337\366\324\332\333\356\347\325\335\320" },
     1510        { 151, "\275\366\332\336\333\330" },
     1511        { 152, "\275\366" },
     1512        { 153, "\264\320\342\320 \335\325 \327\320\337\330\341\320\335\320" },
     1513        { 154, "\261\325\327 \334\343\327\330\332\330" },
     1514        { 155, "\307\320\341 \323\340\330 \335\325 \327\320\337\330\341\320\335\336" },
     1515        { 156, "\307\320\341 \335\325 \327\320\337\330\341\320\335\330\331" },
     1516        { 157, "\275\325 \327\320\324\320\335\330\331" },
     1517        { 158, "\261\325\327 \327\321\366\333\354\350\325\335\335\357" },
     1518        { 159, "OK" },
     1519        { 160, "\262\330\345\366\324\335\320 \347\320\341\342\336\342\320:" },
     1520        { 161, "\277\325\340\325\332\340\330\342\330 \323\333\336\321\320\333\354\335\366 \343\341\342\320\335\336\322\332\330 MIDI" },
     1521        { 162, "\277\325\340\325\332\340\330\342\330 \323\333\336\321\320\333\354\335\366 \343\341\342\320\335\336\322\332\330 MT-32" },
     1522        { 163, "\277\325\340\325\332\340\330\342\330 \323\333\336\321\320\333\354\335\366 \343\341\342\320\335\336\322\332\330 \320\343\324\366\336" },
     1523        { 164, "\277\325\340\325\332\340\330\342\330 \323\333\336\321\320\333\354\335\366 \343\341\342\320\335\336\322\332\330 \323\340\320\344\366\332\330" },
     1524        { 165, "\277\325\340\325\332\340\330\342\330 \323\333\336\321\320\333\354\335\366 \343\341\342\320\335\336\322\332\330 \323\343\347\335\336\341\342\366" },
     1525        { 166, "\265\334\343\333\357\342\336\340 PC \341\337\366\332\325\340\320" },
     1526        { 167, "\277\320\340\336\333\354:" },
     1527        { 168, "\310\333\357\345 \335\325 \364 \337\320\337\332\336\356" },
     1528        { 169, "\310\333\357\345 \335\325 \364 \344\320\331\333\336\334" },
     1529        { 170, "\310\333\357\345 \335\325 \327\335\320\331\324\325\335\330\331" },
     1530        { 171, "\310\333\357\345\330" },
     1531        { 172, "\277\320\343\327\320" },
     1532        { 173, "\262\330\321\325\340\366\342\354 \323\340\343:" },
     1533        { 174, "\277\333\320\342\344\336\340\334\320, \324\333\357 \357\332\336\367 \323\340\320 \321\343\333\320 \341\337\336\347\320\342\332\343 \340\336\327\340\336\321\333\325\335\320" },
     1534        { 175, "\277\333\320\342\344\336\340\334\320:" },
     1535        { 176, "\307\320\341 \323\340\330: " },
     1536        { 177, "\261\343\324\354 \333\320\341\332\320, \322\330\321\325\340\366\342\354 \324\366\356" },
     1537        { 178, "\310\333\357\345 \324\336 \337\333\320\323\366\335\366\322:" },
     1538        { 179, "\277\340\330\341\342\340\366\331 \357\332\336\334\343 \322\366\324\324\320\364\342\354\341\357 \337\325\340\325\322\320\323\320:" },
     1539        { 180, "\275\320\342\330\341\335\366\342\354 \332\333\320\322\366\350\343 \324\333\357 \337\340\330\327\335\320\347\325\335\335\357" },
     1540        { 181, "\262\330\345\366\324" },
     1541        { 182, "\262\330\345\366\324 \327 ScummVM" },
     1542        { 183, "\275\325\324\336\341\342\320\342\335\354\336 \337\340\320\322 \324\333\357 \347\330\342\320\335\335\357" },
     1543        { 184, "\277\336\334\330\333\332\320 \347\330\342\320\335\335\357" },
     1544        { 185, "\277\325\340\325\337\340\330\327\335\320\347\330\342\330 \332\333\320\322\366\350\366" },
     1545        { 186, "\262\330\324\320\333\330\342\330 \323\340\343 \327\366 \341\337\330\341\332\343. \275\325 \322\330\324\320\333\357\364 \323\340\343 \327 \326\336\340\341\342\332\336\323\336 \324\330\341\332\320" },
     1546        { 187, "\300\325\326\330\334 \340\320\341\342\340\343\322\320\335\335\357:" },
     1547        { 188, "\262\337\340\320\322\336" },
     1548        { 189, "\277\340\320\322\330\331 \332\333\366\332" },
     1549        { 190, "\277\340\320\322\330\331 \332\333\366\332" },
     1550        { 191, "\277\336\322\325\340\335\343\342\330" },
     1551        { 192, "\263\343\347\335\366\341\342\354 \325\344\325\332\342\366\322:" },
     1552        { 193, "SMB" },
     1553        { 194, "\267\320\337\330\341\320\342\330" },
     1554        { 195, "\310\333\357\345 \327\321\325\340.: " },
     1555        { 196, "\310\333\357\345 \324\333\357 \327\321\325\340\325\326\325\335\354: " },
     1556        { 197, "\267\321\325\340\325\323\342\330 \323\340\343: " },
     1557        { 198, "\277\336\350\343\332 \327\320\332\366\335\347\325\335\330\331!" },
     1558        { 199, "\277\340\336\323\333\357\335\343\342\336 %d \337\320\337\336\332 ..." },
     1559        { 200, "\263\336\333\336\322\335\325 \334\325\335\356 ScummVM" },
     1560        { 201, "ScummVM \335\325 \327\334\366\323 \327\335\320\331\342\330 \324\322\330\326\336\332 \324\333\357 \327\320\337\343\341\332\343 \322\330\321\340\320\335\336\367 \323\340\330!" },
     1561        { 202, "ScummVM \335\325 \334\336\326\325 \327\335\320\331\342\330 \323\340\343 \343 \322\332\320\327\320\335\366\331 \337\320\337\346\366!" },
     1562        { 203, "ScummVM \335\325 \334\336\326\325 \322\366\324\332\340\330\342\330 \322\332\320\327\320\335\343 \337\320\337\332\343!" },
     1563        { 204, "\277\336\350\343\332 \322 \341\337\330\341\332\343 \366\323\336\340" },
     1564        { 205, "\277\336\350\343\332:" },
     1565        { 206, "\262\330\321\325\340\366\342\354 SoundFont" },
     1566        { 207, "\262\330\321\325\340\366\342\354 \342\325\334\343" },
     1567        { 208, "\262\330\321\325\340\366\342\354 \324\336\324\320\342\332\336\322\343 \337\320\337\332\343 \323\340\330" },
     1568        { 209, "\262\330\321\325\340\366\342\354 \324\366\356 \366 \332\333\366\332\335\366\342\354 '\277\340\330\327\335\320\347\330\342\330'" },
     1569        { 210, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \324\333\357 \342\325\334 GUI" },
     1570        { 211, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \327 \324\336\324\320\342\332\336\322\330\334\330 \344\320\331\333\320\334\330" },
     1571        { 212, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \327 \337\333\320\323\330\335\320\334\330" },
     1572        { 213, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \324\333\357 \327\321\325\340\325\326\325\335\354" },
     1573        { 214, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \324\333\357 \327\321\325\340\325\326\325\335\354" },
     1574        { 215, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \327 \344\320\331\333\320\334\330 \323\340\330" },
     1575        { 216, "\307\343\342\333\330\322\366\341\342\354" },
     1576        { 217, "\301\325\340\322\325\340:" },
     1577        { 218, "\274\325\340\325\326\325\322\320 \337\320\337\332\320:" },
     1578        { 219, "\272\336\340\336\342\332\330\331 \366\324\325\335\342\330\344\366\332\320\342\336\340, \357\332\330\331 \322\330\332\336\340\330\341\342\336\322\343\364\342\354\341\357 \324\333\357 \335\320\327\322 \327\321\325\340\325\326\325\335\330\345 \366\323\336\340 \366 \324\333\357 \327\320\337\343\341\332\343 \327 \332\336\334\320\335\324\335\336\367 \341\342\340\366\347\332\330" },
     1579        { 220, "\277\336\332\320\327\320\342\330 \332\333\320\322\366\320\342\343\340\343" },
     1580        { 221, "\277\336\332\320\327\343\322\320\342\330 \332\343\340\341\336\340 \334\330\350\366" },
     1581        { 222, "\277\336\332\320\327\343\322\320\342\330 \341\343\321\342\330\342\340\330 \366 \322\366\324\342\322\336\340\356\322\320\342\330 \334\336\322\343" },
     1582        { 223, "\277\336\332\320\327\320\342\330/\301\345\336\322\320\342\330 \332\343\340\341\336\340" },
     1583        { 224, "\277\340\336\337\343\341\342\330\342\330" },
     1584        { 225, "\277\340\336\337\343\341\342\330\342\330 \340\357\324\336\332" },
     1585        { 226, "\277\340\336\337\343\341\342\330\342\330 \342\325\332\341\342" },
     1586        { 227, "\277\340\330\332\340\366\337\330\342\330 \324\336 \332\340\320\367\322" },
     1587        { 228, "\277\340\336\323\340\320\334\335\325 \334\320\341\350\342\320\321\343\322\320\335\335\357 (\345\336\340\336\350\320 \357\332\366\341\342\354, \320\333\325 \337\336\322\366\333\354\335\366\350\325)" },
     1588        { 229, "\267\322\343\332 \343\322\366\334/\322\330\334\332" },
     1589        { 230, "SoundFont \337\366\324\342\340\330\334\343\364\342\354\341\357 \324\325\357\332\330\334\330 \327\322\343\332\336\322\330\334\330 \332\320\340\342\320\334\330, Fluidsynth \366 Timidity" },
     1590        { 231, "SoundFont:" },
     1591        { 232, "\276\327\322" },
     1592        { 233, "\301\337\325\346\366\320\333\354\335\366 \340\325\326\330\334\330 \340\325\335\324\325\340\330\335\323\343, \357\332\366 \337\366\324\342\340\330\334\343\356\342\354 \324\325\357\332\366 \366\323\340\330" },
     1593        { 234, "\263\343\347\335\366\341\342\354 \341\337\325\346\366\320\333\354\335\330\345 \327\322\343\332\336\322\330\345 \325\344\325\332\342\366\322" },
     1594        { 235, "\262\332\320\327\343\364 \322\330\345\366\324\335\330\331 \327\322\343\332\336\322\330\331 \337\340\330\341\342\340\366\331 \324\333\357 MIDI" },
     1595        { 236, "\262\332\320\327\343\364 \327\322\343\332\336\322\330\331 \337\340\330\341\342\340\366\331 \337\336 \343\334\336\322\347\320\335\335\356 \324\333\357 \322\330\322\336\324\343 \335\320 Roland MT-32/LAPC1/CM32l/CM64" },
     1596        { 237, "\262\332\320\327\343\364 \322\330\345\366\324\335\330\331 \327\322\343\332\336\322\330\331 \337\340\330\341\342\340\366\331 \320\321\336 \325\334\343\333\357\342\336\340 \327\322\343\332\336\322\336\367 \332\320\340\342\330" },
     1597        { 238, "\262\332\320\327\343\364 \350\333\357\345 \324\336 \324\336\324\320\342\332\336\322\330\345 \344\320\331\333\366\322 \324\320\335\330\345, \322\330\332\336\340\330\341\342\336\322\343\322\320\335\330\345 \343\341\366\334\320 \366\323\340\320\334\330, \320\321\336 ScummVM" },
     1598        { 239, "\262\332\320\327\343\364 \350\333\357\345 \324\336 \324\336\324\320\342\332\336\322\330\345 \344\320\331\333\366\322 \324\320\335\330\345 \324\333\357 \323\340\330" },
     1599        { 240, "\262\332\320\327\343\364 \322\330\345\366\324\335\330\331 \327\322\343\332\336\322\330\331 \337\340\330\341\342\340\366\331 \320\321\336 \325\334\343\333\357\342\336\340 \327\322\343\332\336\322\336\367 \332\320\340\342\330" },
     1600        { 241, "\262\332\320\327\343\364 \350\333\357\345 \324\336 \327\321\325\340\325\326\325\335\354 \323\340\330" },
     1601        { 242, "\276\327\322\343\347\325\335\335\357" },
     1602        { 243, "\263\343\347\335\366\341\342\354 \336\327\322\343\347\325\335\335\357:" },
     1603        { 244, "\301\342\320\335\324\320\340\342\335\330\331 \340\320\341\342\325\340\330\327\320\342\336\340 (16bpp)" },
     1604        { 245, "\267\320\337\343\341\342\330\342\330 \322\330\321\340\320\335\343 \323\340\343" },
     1605        { 246, "\301\342\320\335:" },
     1606        { 247, "\301\343\321" },
     1607        { 248, "\310\322\330\324\332\366\341\342\354 \341\343\321\342\330\342\340\366\322:" },
     1608        { 249, "\301\343\321\342\330\342\340\330" },
     1609        { 250, "\267\334\366\335\330\342\330 \323\325\340\336\357" },
     1610        { 251, "\302\320\337 \324\333\357 \333\366\322\336\323\336 \332\333\320\346\320\335\335\357, \337\336\324\322\366\331\335\330\331 \342\320\337 \324\333\357 \337\340\320\322\336\323\336 \332\333\320\346\320\335\335\357" },
     1611        { 252, "\302\325\332\341\342 \366 \336\327\322\343\347\325\335\335\357:" },
     1612        { 253, "\275\325 \334\336\326\343 \337\330\341\320\342\330 \343 \322\330\321\340\320\335\343 \337\320\337\332\343. \261\343\324\354 \333\320\341\332\320, \322\332\320\326\366\342\354 \366\335\350\343." },
     1613        { 254, "\310\333\357\345 \324\336 \342\325\334:" },
     1614        { 255, "\302\325\334\320:" },
     1615        { 256, "\306\325\331 ID \323\340\330 \322\326\325 \322\330\332\336\340\330\341\342\336\322\343\364\342\354\341\357. \261\343\324\354 \333\320\341\332\320, \322\330\321\325\340\366\342\354 \366\335\350\330\331." },
     1616        { 257, "\306\357 \323\340\320 \335\325 \337\366\324\342\340\330\334\343\364 \327\320\322\320\335\342\320\326\325\335\335\357 \327\321\325\340\325\326\325\335\354 \347\325\340\325\327 \323\336\333\336\322\335\325 \334\325\335\356." },
     1617        { 258, "\307\320\341: " },
     1618        { 259, "\307\320\341 \337\366\324\332\333\356\347\325\335\335\357 \324\336 \334\325\340\325\326\366 \322\330\342\366\332" },
     1619        { 260, "\267\334\366\351\325\335\335\357 \342\336\340\332\320\335\354 \337\336 \336\341\366 X" },
     1620        { 261, "\267\334\366\351\325\335\335\357 \342\336\340\332\320\335\354 \337\336 \336\341\366 Y" },
     1621        { 262, "\300\325\326\330\334 \342\320\347\337\320\324\343 \322\330\334\332\335\325\335\330\331." },
     1622        { 263, "\300\325\326\330\334 \342\320\347\337\320\324\343 \343\322\366\334\332\335\325\335\330\331." },
     1623        { 264, "\301\337\340\320\322\326\335\366\331 Roland MT-32 (\322\330\334\332\335\343\342\330 \325\334\343\333\357\346\330\356 GM)" },
     1624        { 265, "\262\330\334\330\332\320\364 \334\320\337\337\366\335\323 General MIDI \324\333\357 \366\323\336\340 \366\327 \327\322\343\332\336\322\336\356 \324\336\340\366\326\332\336\356 \324\333\357 Roland MT-32" },
     1625        { 266, "\275\325\322\366\324\336\334\336" },
     1626        { 267, "\275\325\322\366\324\336\334\320 \337\336\334\330\333\332\320" },
     1627        { 268, "\262\366\324\332\333\356\347\330\342\330 DVD" },
     1628        { 269, "\262\366\324\332\333\356\347\342\330 SMB" },
     1629        { 270, "\261\325\327 \334\320\341\350\342\320\321\343\322\320\335\335\357 (\342\340\325\321\320 \321\343\324\325 \337\340\336\332\340\343\347\343\322\320\342\330 \335\320\333\366\322\336 \366 \335\320\337\340\320\322\336)" },
     1630        { 271, "\300\325\326\330\334 \272\336\333\354\336\340\343 \335\325 \337\366\324\342\340\330\334\343\364\342\354\341\357" },
     1631        { 272, "\267\321\325\340\325\326\325\335\335\357 \321\325\327 \366\334\325\335\366" },
     1632        { 273, "\262\322\325\340\345" },
     1633        { 274, "\262\330\332\336\340\330\341\342\336\322\343\322\320\342\330 \366 MIDI \366 AdLib \324\333\357 \323\325\335\325\340\320\346\366\367 \327\322\343\332\343" },
     1634        { 275, "\262\330\332\336\340\330\341\342\336\322\343\322\320\342\330 \343\337\340\320\322\333\366\335\335\357 \332\343\340\341\336\340\336\334 \357\332 \335\320 \342\340\325\332\337\320\324\366 \333\320\337\342\336\337\366\322" },
     1635        { 276, "\272\336\340\330\341\342\343\322\320\347:" },
     1636        { 277, "\262\330\332\336\340\330\341\342\336\322\343\356 \324\340\320\331\322\325\340 SDL " },
     1637        { 278, "\262\325\340\342\330\332\320\333\354\335\330\331 underscan:" },
     1638        { 279, "\262\366\324\325\336" },
     1639        { 280, "\262\366\340\342\343\320\333\354\335\320 \332\333\320\322\366\320\342\343\340\320" },
     1640        { 281, "\263\343\347\335\366\341\342\354" },
     1641        { 282, "Windows MIDI" },
     1642        { 283, "\275\325\324\336\341\342\320\342\335\354\336 \337\340\320\322 \324\333\357 \327\320\337\330\341\343" },
     1643        { 284, "\277\336\334\330\333\332\320 \327\320\337\330\341\343 \324\320\335\330\345" },
     1644        { 285, "\302\320\332" },
     1645        { 286, "\262\330 \337\336\322\330\335\335\366 \337\325\340\325\327\320\337\343\341\342\330\342\330 ScummVM \351\336\321 \327\320\341\342\336\341\343\322\320\342\330 \327\334\366\335\330." },
     1646        { 287, "\267\336\335\320" },
     1647        { 288, "\267\334\335\350. \334\320\350\342\320\321" },
     1648        { 289, "\267\321\366\333. \334\320\350\342\320\321" },
     1649        { 290, "\332\336\326\335\366 10 \345\322" },
     1650        { 291, "\332\336\326\335\366 15 \345\322" },
     1651        { 292, "\332\336\326\335\366 30 \345\322" },
     1652        { 293, "\332\336\326\335\366 5 \345\322" },
     1653        { 294, "\277\340\336 \337\340\336~\323~\340\320\334\343" },
     1654        { 295, "~\264~\336\324. \323\340\343..." },
     1655        { 296, "\262\366~\324~\334\366\335\320" },
     1656        { 297, "~\267~\320\332\340\330\342\330" },
     1657        { 298, "\300\325\324\320~\323~. \323\340\343..." },
     1658        { 299, "~\264~\336\337\336\334\336\323\320" },
     1659        { 300, "\272\325\340\343\322\320\335\335\357 \321\336\357\334\330 \322 Indy" },
     1660        { 301, "~\272~\333\320\322\366\350\366" },
     1661        { 302, "\273\366\322\336\340\343\332\330\331 \340\325\326\330\334" },
     1662        { 303, "~\267~\320\322\320\335\342\320\326\330\342\330" },
     1663        { 304, "~\267~\320\322\320\335..." },
     1664        { 305, "~\275~\320\341\342" },
     1665        { 306, "~O~K" },
     1666        { 307, "~\276~\337\346\366\367" },
     1667        { 308, "~\276~\337\346\366\367..." },
     1668        { 309, "~\277~\336\337\325\340" },
     1669        { 310, "~\262~\330\345\366\324" },
     1670        { 311, "~\262~\330\324\320\333\330\342\330 \323\340\343" },
     1671        { 312, "\277\340\336\324\336\322~\326~\330\342\330" },
     1672        { 313, "~\277~\336\322\325\340\335\343\342\330\341\354 \322 \323\336\333\336\322\335\325 \334\325\335\356" },
     1673        { 314, "~\267~\320\337\330\341\320\342\330" },
     1674        { 315, "\267~\320~\337\343\341\332" },
     1675        { 316, "\277\325\340\325\345\336\324\330 \320\332\342\330\322\336\322\320\335\366" },
     1676        { 317, "\265\344\325\332\342\330 \322\336\324\330 \322\332\333\356\347\325\335\366" },
     1677        { 318, "\300\325\326\330\334 \350\322\330\324\332\336\323\336 \337\325\340\325\345\336\324\343 \320\332\342\330\322\336\322\320\335\330\331" },
     1678        { -1, NULL }
     1679};
     1680
     1681const PoMessageEntry _translation_ca_ES[] = {
     1682        { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-06-26 16:45+0100\nLast-Translator: Jordi Vilalta Prat <jvprat@gmail.com>\nLanguage-Team: Catalan <scummvm-devel@lists.sf.net>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit\nLanguage: Catalan\n" },
     1683        { 2, " (Actiu)" },
     1684        { 3, " (Joc)" },
     1685        { 4, " (Global)" },
     1686        { 5, "(compilat el %s)" },
     1687        { 6, ", error al muntar la compartici\363" },
     1688        { 7, ", compartici\363 no muntada" },
     1689        { 8, "... progr\351s ..." },
     1690        { 9, "11kHz" },
     1691        { 10, "22 kHz" },
     1692        { 11, "44 kHz" },
     1693        { 12, "48 kHz" },
     1694        { 13, "8 kHz" },
     1695        { 14, "<per defecte>" },
     1696        { 15, "Quant a ScummVM" },
     1697        { 16, "Emulador d'AdLib" },
     1698        { 17, "Emulador d'AdLib:" },
     1699        { 18, "AdLib s'utilitza per la m\372sica de molts jocs" },
     1700        { 19, "Afegeix Joc..." },
     1701        { 20, "Emulador d'AdLib" },
     1702        { 21, "Pintat amb antialias (16bpp)" },
     1703        { 23, "Correcci\363 del rati d'aspecte" },
     1704        { 24, "Tecla associada : %s" },
     1705        { 25, "Tecla associada : cap" },
     1706        { 26, "\300udio" },
     1707        { 27, "Desat autom\340tic:" },
     1708        { 28, "Motors disponibles:" },
     1709        { 29, "~Q~uant a..." },
     1710        { 30, "Mapeja tecles" },
     1711        { 31, "Ambd\363s" },
     1712        { 32, "Brillantor:" },
     1713        { 33, "Emulador d'AdLib" },
     1714        { 34, "Cancel\267la" },
     1715        { 35, "No s'ha pogut crear el fitxer" },
     1716        { 36, "Canvia les opcions del joc" },
     1717        { 37, "Canvia les opcions globals de ScummVM" },
     1718        { 38, "Marqueu si voleu utilitzar el vostre dispositiu hardware real de so compatible amb Roland connectat al vostre ordinador" },
     1719        { 39, "Escull" },
     1720        { 40, "Sel\267leccioneu una acci\363 per mapejar" },
     1721        { 41, "Neteja el valor" },
     1722        { 42, "Tanca" },
     1723        { 43, "Corregeix la relaci\363 d'aspecte per jocs de 320x200" },
     1724        { 44, "No s'ha pogut trobar cap motor capa\347 d'executar el joc seleccionat" },
     1725        { 45, "Mode de v\355deo actual:" },
     1726        { 46, "Cursor Avall" },
     1727        { 47, "Cursor Esquerra" },
     1728        { 48, "Cursor Dreta" },
     1729        { 49, "Cursor Amunt" },
     1730        { 50, "Emulador OPL de DOSBox" },
     1731        { 51, "DVD" },
     1732        { 52, "El DVD s'ha muntat satisfact\362riament" },
     1733        { 53, "El DVD no est\340 muntat" },
     1734        { 54, "Data: " },
     1735        { 55, "Depurador" },
     1736        { 56, "Per defecte" },
     1737        { 57, "Suprimeix" },
     1738        { 58, "Desactiva l'apagat autom\340tic" },
     1739        { 59, "GFX desactivats" },
     1740        { 60, "S'han descobert %d jocs nous ..." },
     1741        { 61, "S'han descobert %d jocs nous." },
     1742        { 62, "Pantalla" },
     1743        { 63, "Mostra el teclat" },
     1744        { 64, "Realment voleu suprimir aquesta partida?" },
     1745        { 65, "Realment voleu suprimir la configuraci\363 d'aquest joc?" },
     1746        { 66, "Esteu segur que voleu executar el detector massiu de jocs? Aix\362 pot afegir una gran quantitat de jocs." },
     1747        { 67, "Voleu carregar o desar el joc?" },
     1748        { 68, "Voleu fer una cerca autom\340tica?" },
     1749        { 69, "Vols sortir?" },
     1750        { 71, "Avall" },
     1751        { 72, "Activa el Mode Roland GS" },
     1752        { 73, "El motor no suporta el nivell de depuraci\363 '%s'" },
     1753        { 74, "Angl\350s" },
     1754        { 75, "Error al executar el joc:" },
     1755        { 76, "Error al muntar el DVD" },
     1756        { 77, "Cam\355 Extra:" },
     1757        { 78, "Emulador de FM Towns" },
     1758        { 79, "Mode r\340pid" },
     1759        { 80, "Caracter\355stiques compilades:" },
     1760        { 81, "Vista lliure" },
     1761        { 82, "T\355tol complet del joc" },
     1762        { 83, "Mode pantalla completa" },
     1763        { 84, "Acceleraci\363 del Pad GC:" },
     1764        { 85, "Sensibilitat del Pad GC:" },
     1765        { 86, "GFX" },
     1766        { 87, "Dispositiu GM:" },
     1767        { 88, "Idioma de la interf\355cie d'usuari:" },
     1768        { 89, "Mode de pintat de la interf\355cie d'usuari:" },
     1769        { 90, "Joc" },
     1770        { 91, "No s'han trobat les dades del joc" },
     1771        { 92, "Identificador de joc no suportat" },
     1772        { 93, "Cam\355 del Joc:" },
     1773        { 94, "Men\372 global" },
     1774        { 95, "Torna al nivell de directoris anterior" },
     1775        { 96, "Amunt" },
     1776        { 97, "Gr\340fics" },
     1777        { 98, "Mode gr\340fic:" },
     1778        { 99, "Escalat per hardware (r\340pid, per\362 de baixa qualitat)" },
     1779        { 100, "Hercules \300mbar" },
     1780        { 101, "Hercules Verd" },
     1781        { 102, "Oculta la barra d'eines" },
     1782        { 103, "Alta qualitat d'\340udio (m\351s lent) (reiniciar)" },
     1783        { 104, "Valors m\351s alts especifiquen millor qualitat de so per\362 pot ser que la vostra tarja de so no ho suporti" },
     1784        { 105, "Mantingueu premut Shift per a l'Addici\363 Massiva" },
     1785        { 107, "Emulador d'IBM PCjr" },
     1786        { 108, "Identificador:" },
     1787        { 109, "Inicia la xarxa" },
     1788        { 110, "Escalat inicial de la pantalla superior:" },
     1789        { 111, "Iniciant l'Emulador de MT-32" },
     1790        { 112, "Iniciant la xarxa" },
     1791        { 113, "Entrada" },
     1792        { 114, "Cam\355 incorrecte" },
     1793        { 115, "Mapejador de tecles" },
     1794        { 116, "Teclat" },
     1795        { 117, "Mapa de teclat:" },
     1796        { 118, "Tecles" },
     1797        { 119, "Idioma de la interf\355cie d'usuari de ScummVM" },
     1798        { 120, "Idioma del joc. Aix\362 no convertir\340 la vostra versi\363 Espanyola del joc a Angl\350s" },
     1799        { 121, "Idioma:" },
     1800        { 122, "Esquerra" },
     1801        { 123, "Clic esquerre" },
     1802        { 124, "Carrega" },
     1803        { 125, "Carrega partida:" },
     1804        { 126, "Carrega una partida pel joc seleccionat" },
     1805        { 127, "Emulador OPL de MAME" },
     1806        { 128, "MIDI" },
     1807        { 129, "Guany MIDI:" },
     1808        { 131, "Dispositiu MT32:" },
     1809        { 132, "Emulador de MT-32" },
     1810        { 133, "Escalat de la pantalla principal:" },
     1811        { 134, "Mapeja" },
     1812        { 135, "Addici\363 Massiva..." },
     1813        { 136, "Men\372" },
     1814        { 137, "Misc" },
     1815        { 138, "Mode combinat AdLib/MIDI" },
     1816        { 139, "Munta el DVD" },
     1817        { 140, "Munta SMB" },
     1818        { 141, "Clic del ratol\355" },
     1819        { 142, "Funci\363 M\372ltiple" },
     1820        { 143, "Dispositiu GM:" },
     1821        { 144, "Volum de la m\372sica:" },
     1822        { 145, "Silenciar tot" },
     1823        { 146, "Nom:" },
     1824        { 147, "Xarxa inactiva" },
     1825        { 148, "Xarxa no iniciada (%d)" },
     1826        { 149, "Xarxa activa" },
     1827        { 150, "Xarxa activa, compartici\363 muntada" },
     1828        { 151, "Mai" },
     1829        { 152, "No" },
     1830        { 153, "No hi ha data desada" },
     1831        { 154, "Sense m\372sica" },
     1832        { 155, "No hi ha temps de joc desat" },
     1833        { 156, "No hi ha hora desada" },
     1834        { 157, "Cap" },
     1835        { 158, "Normal (sense escalar)" },
     1836        { 159, "D'acord" },
     1837        { 160, "Freq\374\350ncia de sortida:" },
     1838        { 161, "Fer canvis sobre les opcions globals de MIDI" },
     1839        { 162, "Fer canvis sobre les opcions globals de MIDI" },
     1840        { 163, "Fer canvis sobre les opcions globals d'\340udio" },
     1841        { 164, "Fer canvis sobre les opcions globals de gr\340fics" },
     1842        { 165, "Fer canvis sobre les opcions globals de volum" },
     1843        { 166, "Emulador d'Altaveu de PC" },
     1844        { 167, "Contrasenya:" },
     1845        { 168, "El cam\355 no \351s un directori" },
     1846        { 169, "El cam\355 no \351s un fitxer" },
     1847        { 170, "El cam\355 no existeix" },
     1848        { 171, "Camins" },
     1849        { 172, "Pausa" },
     1850        { 173, "Seleccioneu el joc:" },
     1851        { 174, "Plataforma per la que el joc es va dissenyar originalment" },
     1852        { 175, "Plataforma:" },
     1853        { 176, "Temps de joc: " },
     1854        { 177, "Seleccioneu una acci\363" },
     1855        { 178, "Cam\355 dels connectors:" },
     1856        { 179, "Dispositiu Preferit:" },
     1857        { 180, "Premeu la tecla a associar" },
     1858        { 181, "Surt" },
     1859        { 182, "Surt de ScummVM" },
     1860        { 183, "S'ha denegat el perm\355s de lectura" },
     1861        { 184, "Ha fallat la lectura" },
     1862        { 185, "Remapeja les tecles" },
     1863        { 186, "Elimina un joc de la llista. Els fitxers de dades del joc es mantenen intactes" },
     1864        { 187, "Mode de pintat:" },
     1865        { 188, "Dreta" },
     1866        { 189, "Clic dret" },
     1867        { 190, "Clic dret" },
     1868        { 191, "Rotar" },
     1869        { 192, "Volum dels efectes:" },
     1870        { 193, "SMB" },
     1871        { 194, "Desa" },
     1872        { 195, "Cam\355 de les Partides:" },
     1873        { 196, "Cam\355 de les Partides: " },
     1874        { 197, "Desa la partida:" },
     1875        { 198, "S'ha acabat la cerca!" },
     1876        { 199, "S'han cercat %d directoris ..." },
     1877        { 200, "Men\372 Principal de ScummVM" },
     1878        { 201, "ScummVM no ha pogut trobar cap motor capa\347 d'executar el joc seleccionat!" },
     1879        { 202, "ScummVM no ha pogut trobar cap joc al directori especificat!" },
     1880        { 203, "ScummVM no ha pogut obrir el directori especificat!" },
     1881        { 204, "Cerca a la llista de jocs" },
     1882        { 205, "Cerca:" },
     1883        { 206, "Seleccioneu el fitxer SoundFont" },
     1884        { 207, "Seleccioneu un Tema" },
     1885        { 208, "Seleccioneu el directori addicional del joc" },
     1886        { 209, "Seleccioneu una acci\363 i cliqueu 'Mapeja'" },
     1887        { 210, "Seleccioneu el directori dels temes de la Interf\355cie d'Usuari" },
     1888        { 211, "Seleccioneu el directori dels fitxers extra" },
     1889        { 212, "Seleccioneu el directori dels connectors" },
     1890        { 213, "Seleccioneu el directori de les partides desades" },
     1891        { 214, "Seleccioneu el directori de les partides desades" },
     1892        { 215, "Seleccioneu el directori amb les dades del joc" },
     1893        { 216, "Sensibilitat" },
     1894        { 217, "Servidor:" },
     1895        { 218, "Compartici\363:" },
     1896        { 219, "Identificador de joc curt utilitzat per referir-se a les partides i per executar el joc des de la l\355nia de comandes" },
     1897        { 220, "Mostra el teclat" },
     1898        { 221, "Mostra el cursor del ratol\355" },
     1899        { 222, "Mostra els subt\355tols i reprodueix la veu" },
     1900        { 223, "Mostra/Oculta el cursor" },
     1901        { 224, "Salta" },
     1902        { 225, "Salta la l\355nia" },
     1903        { 226, "Salta el text" },
     1904        { 228, "Escalat per software (bona qualitat, per\362 m\351s lent)" },
     1905        { 229, "So engegat/parat" },
     1906        { 230, "Algunes targes de so, Fluidsynth i Timidity suporten SoundFont" },
     1907        { 231, "Fitxer SoundFont:" },
     1908        { 232, "Veus" },
     1909        { 233, "Modes de dispersi\363 especials suportats per alguns jocs" },
     1910        { 234, "Volum dels sons d'efectes especials" },
     1911        { 235, "Especifica el dispositiu de so per defecte per a la sortida General MIDI" },
     1912        { 236, "Especifica el dispositiu de so per defecte per a la sortida de Roland MT-32/LAPC1/CM32l/CM64" },
     1913        { 237, "Especifica el dispositiu de so o l'emulador de tarja de so de sortida" },
     1914        { 238, "Especifica el cam\355 de les dades addicionals utilitzades per tots els jocs o pel ScummVM" },
     1915        { 239, "Especifica el cam\355 de dades addicionals utilitzades pel joc" },
     1916        { 240, "Especifica el dispositiu de so o l'emulador de tarja de so preferit" },
     1917        { 241, "Especifica on es desaran les partides" },
     1918        { 242, "Veus" },
     1919        { 243, "Volum de la veu:" },
     1920        { 244, "Pintat est\340ndard (16bpp)" },
     1921        { 245, "Iniciant el joc seleccionat" },
     1922        { 246, "Estat:" },
     1923        { 247, "Subt" },
     1924        { 248, "Velocitat dels subt\355tols:" },
     1925        { 249, "Subt\355tols" },
     1926        { 250, "Commuta el personatge" },
     1927        { 251, "Toc per a clic esquerre, doble toc per a clic dret" },
     1928        { 252, "Text i Veus:" },
     1929        { 253, "No es pot escriure al directori seleccionat. Si us plau, escolliu-ne un altre." },
     1930        { 254, "Cam\355 dels Temes:" },
     1931        { 255, "Tema:" },
     1932        { 256, "Aquest identificador de joc ja est\340 usat. Si us plau, trieu-ne un altre." },
     1933        { 257, "Aquest joc no suporta la c\340rrega de partides des del llan\347ador." },
     1934        { 258, "Hora: " },
     1935        { 260, "Despla\347ament X del toc" },
     1936        { 261, "Despla\347ament Y del toc" },
     1937        { 262, "Mode Touchpad desactivat." },
     1938        { 263, "Mode Touchpad activat." },
     1939        { 264, "Roland MT-32 real (desactiva l'emulaci\363 GM)" },
     1940        { 265, "Desactiva la conversi\363 General MIDI pels jocs que tenen banda sonora per a Roland MT-32" },
     1941        { 266, "Desconegut" },
     1942        { 267, "Error desconegut" },
     1943        { 268, "Desmunta el DVD" },
     1944        { 269, "Desmunta SMB" },
     1945        { 270, "Sense escalar (haureu de despla\347ar-vos a esquerra i dreta)" },
     1946        { 271, "Mode de color no suportat" },
     1947        { 272, "Partida sense t\355tol" },
     1948        { 273, "Amunt" },
     1949        { 274, "Utilitza MIDI i la generaci\363 de so AdLib alhora" },
     1950        { 275, "Utilitza el control del cursor a l'estil del trackpad dels port\340tils" },
     1951        { 276, "Nom d'usuari:" },
     1952        { 277, "Utilitzant el controlador SDL " },
     1953        { 279, "V\355deo" },
     1954        { 280, "Teclat virtual" },
     1955        { 281, "Volum" },
     1956        { 282, "MIDI de Windows" },
     1957        { 283, "S'ha denegat el perm\355s d'escriptura" },
     1958        { 284, "Ha fallat l'escriptura de dades" },
     1959        { 285, "S\355" },
     1960        { 286, "Heu de reiniciar ScummVM perqu\350 tots els canvis tingui efecte." },
     1961        { 287, "Zona" },
     1962        { 288, "Redueix" },
     1963        { 289, "Amplia" },
     1964        { 290, "cada 10 minuts" },
     1965        { 291, "cada 15 minuts" },
     1966        { 292, "cada 30 minuts" },
     1967        { 293, "cada 5 minuts" },
     1968        { 294, "~Q~uant a" },
     1969        { 295, "~A~fegeix Joc..." },
     1970        { 296, "~C~ancel\267la" },
     1971        { 297, "~T~anca" },
     1972        { 298, "~E~dita Joc..." },
     1973        { 299, "~A~juda" },
     1974        { 300, "Controls de lluita de l'~I~ndy" },
     1975        { 301, "~T~ecles" },
     1976        { 302, "Mode ~e~squerr\340" },
     1977        { 303, "C~a~rrega" },
     1978        { 304, "~C~arrega..." },
     1979        { 305, "~S~eg\374ent" },
     1980        { 306, "~D~'acord" },
     1981        { 307, "~O~pcions" },
     1982        { 308, "~O~pcions..." },
     1983        { 309, "~A~nterior" },
     1984        { 310, "~T~anca" },
     1985        { 311, "~S~uprimeix Joc" },
     1986        { 312, "~C~ontinua" },
     1987        { 313, "~R~etorna al Llan\347ador" },
     1988        { 314, "~D~esa" },
     1989        { 315, "~I~nicia" },
     1990        { 316, "~T~ransicions activades" },
     1991        { 317, "~E~fecte de l'aigua activat" },
     1992        { 318, "Mode ~Z~ip activat" },
     1993        { -1, NULL }
     1994};
     1995
     1996const PoMessageEntry _translation_es_ES[] = {
     1997        { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-07-30 22:17+0100\nLast-Translator: Tom\341s Maidagan\nLanguage-Team: \nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit\nLanguage: Espanol\n" },
     1998        { 1, "\277Seguro que quieres salir?" },
     1999        { 2, "(Activa)" },
     2000        { 3, "(Juego)" },
     2001        { 4, "(General)" },
     2002        { 5, "(compilado el %s)" },
     2003        { 6, ", error al montar el disco compartido" },
     2004        { 7, ", disco compartido no montado" },
     2005        { 8, "... progreso..." },
     2006        { 9, "11kHz" },
     2007        { 10, "22 kHz" },
     2008        { 11, "44 kHz" },
     2009        { 12, "48 kHz" },
     2010        { 13, "8 kHz" },
     2011        { 14, "<por defecto>" },
     2012        { 15, "Acerca de ScummVM" },
     2013        { 16, "Emulador de AdLib" },
     2014        { 17, "Emulador de AdLib:" },
     2015        { 18, "AdLib se usa para la m\372sica en muchos juegos" },
     2016        { 19, "A\361adir juego..." },
     2017        { 20, "Emulador de AdLib" },
     2018        { 21, "Antialiasing (16bpp)" },
     2019        { 23, "Correcci\363n de aspecto" },
     2020        { 24, "Tecla asociada: %s" },
     2021        { 25, "Tecla asociada: ninguna" },
     2022        { 26, "Sonido" },
     2023        { 27, "Autoguardado:" },
     2024        { 28, "Motores disponibles:" },
     2025        { 29, "Acerca ~d~e" },
     2026        { 30, "Asignar teclas" },
     2027        { 31, "Ambos" },
     2028        { 32, "Brillo:" },
     2029        { 33, "Emulador de AdLib" },
     2030        { 34, "Cancelar" },
     2031        { 35, "Imposible crear el archivo" },
     2032        { 36, "Cambiar opciones de juego" },
     2033        { 37, "Cambiar opciones generales de ScummVM" },
     2034        { 38, "Marcar si se quiere usar un dispositivo de sonido real conectado al ordenador y compatible con Roland" },
     2035        { 39, "Elegir" },
     2036        { 40, "Elige la acci\363n a asociar" },
     2037        { 41, "Eliminar valor" },
     2038        { 42, "Cerrar" },
     2039        { 43, "Corregir relaci\363n de aspecto en juegos 320x200" },
     2040        { 44, "No se ha podido encontrar ning\372n motor capaz de ejecutar el juego" },
     2041        { 45, "Modo de v\355deo actual:" },
     2042        { 46, "Abajo" },
     2043        { 47, "Izquierda" },
     2044        { 48, "Derecha" },
     2045        { 49, "Arriba" },
     2046        { 50, "Emulador de DOSBox OPL" },
     2047        { 51, "DVD" },
     2048        { 52, "DVD montado con \351xito" },
     2049        { 53, "DVD no montado" },
     2050        { 54, "Fecha:" },
     2051        { 55, "Debugger" },
     2052        { 56, "Por defecto" },
     2053        { 57, "Borrar" },
     2054        { 58, "Desactivar apagado" },
     2055        { 59, "GFX desactivados" },
     2056        { 60, "Se han encontrado %d juegos nuevos..." },
     2057        { 61, "Se han encontrado %d juegos nuevos." },
     2058        { 62, "Pantalla" },
     2059        { 63, "Mostrar el teclado" },
     2060        { 64, "\277Seguro que quieres borrar esta partida?" },
     2061        { 65, "\277Seguro que quieres eliminar la configuraci\363n de este juego?" },
     2062        { 66, "\277Seguro que quieres ejecutar la detecci\363n masiva? Puede que se a\361ada un gran n\372mero de juegos." },
     2063        { 67, "\277Quieres cargar o guardar el juego?" },
     2064        { 68, "\277Quieres realizar una b\372squeda autom\341tica?" },
     2065        { 69, "\277Quieres salir?" },
     2066        { 70, "Doble golpe" },
     2067        { 71, "Abajo" },
     2068        { 72, "Activar modo Roland GS" },
     2069        { 73, "El motor no soporta el nivel de debug '%s'" },
     2070        { 74, "Ingl\351s" },
     2071        { 75, "Error al ejecutar el juego:" },
     2072        { 76, "Error al montar el DVD" },
     2073        { 77, "Adicional:" },
     2074        { 78, "Emulador de FM Towns" },
     2075        { 79, "Modo r\341pido" },
     2076        { 80, "Caracter\355sticas compiladas:" },
     2077        { 81, "Vista libre" },
     2078        { 82, "T\355tulo completo del juego" },
     2079        { 83, "Pantalla completa" },
     2080        { 84, "Aceleraci\363n del pad GC:" },
     2081        { 85, "Sensibilidad del pad GC:" },
     2082        { 86, "GFX" },
     2083        { 87, "Dispositivo GM:" },
     2084        { 88, "Idioma de la interfaz:" },
     2085        { 89, "Render de la interfaz" },
     2086        { 90, "Juego" },
     2087        { 91, "No se han encontrado datos de juego" },
     2088        { 92, "ID del juego no soportada" },
     2089        { 93, "Juego:" },
     2090        { 94, "Men\372 general" },
     2091        { 95, "Ir al directorio anterior" },
     2092        { 96, "Arriba" },
     2093        { 97, "Gr\341ficos" },
     2094        { 98, "Modo gr\341fico:" },
     2095        { 99, "Escalado por hardware (r\341pido, pero de baja calidad)" },
     2096        { 100, "Hercules \341mbar" },
     2097        { 101, "Hercules verde" },
     2098        { 102, "Ocultar barra de tareas" },
     2099        { 103, "Sonido de alta calidad (m\341s lento) (reinicio)" },
     2100        { 104, "Los valores m\341s altos ofrecen mayor calidad, pero puede que tu tarjeta de sonido no sea compatible" },
     2101        { 105, "Mant\351n pulsado May\372s para a\361adir varios" },
     2102        { 106, "Underscan horizontal" },
     2103        { 107, "Emulador de IBM PCjr" },
     2104        { 108, "ID:" },
     2105        { 109, "Inicializar red" },
     2106        { 110, "Escalado de la pantalla inicial superior:" },
     2107        { 111, "Iniciando emulador de MT-32" },
     2108        { 112, "Inicializando red" },
     2109        { 113, "Entrada" },
     2110        { 114, "Ruta no v\341lida" },
     2111        { 115, "Asignaci\363n de teclas" },
     2112        { 116, "Teclado" },
     2113        { 117, "Asignaci\363n de teclas:" },
     2114        { 118, "Teclas" },
     2115        { 119, "Idioma de la interfaz de ScummVM" },
     2116        { 120, "Idioma del juego. No sirve para pasar al ingl\351s la versi\363n espa\361ola de un juego" },
     2117        { 121, "Idioma:" },
     2118        { 122, "Izquierda" },
     2119        { 123, "Clic izquierdo" },
     2120        { 124, "Cargar" },
     2121        { 125, "Cargar juego:" },
     2122        { 126, "Cargar partida del juego seleccionado" },
     2123        { 127, "Emulador de MAME OPL" },
     2124        { 128, "MIDI" },
     2125        { 129, "Ganancia MIDI:" },
     2126        { 130, "MT-32" },
     2127        { 131, "Dispositivo MT-32:" },
     2128        { 132, "Emulador de MT-32" },
     2129        { 133, "Escalado de la pantalla principal:" },
     2130        { 134, "Asignar" },
     2131        { 135, "A\361adir varios..." },
     2132        { 136, "Men\372" },
     2133        { 137, "Otros" },
     2134        { 138, "Modo AdLib/MIDI" },
     2135        { 139, "Montar DVD" },
     2136        { 140, "Montar SMB" },
     2137        { 141, "Clic de rat\363n" },
     2138        { 142, "Multifunci\363n" },
     2139        { 143, "Dispositivo de m\372sica:" },
     2140        { 144, "Volumen de la m\372sica:" },
     2141        { 145, "Silenciar" },
     2142        { 146, "Nombre:" },
     2143        { 147, "Red desconectada" },
     2144        { 148, "Red no inicializada (%d)" },
     2145        { 149, "Red conectada" },
     2146        { 150, "Red conectada, disco compartido montado" },
     2147        { 151, "Nunca" },
     2148        { 152, "No" },
     2149        { 153, "No hay fecha guardada" },
     2150        { 154, "Sin m\372sica" },
     2151        { 155, "No hay tiempo de juego guardado" },
     2152        { 156, "No hay hora guardada" },
     2153        { 157, "Ninguno" },
     2154        { 158, "Normal (sin escalado)" },
     2155        { 159, "De acuerdo" },
     2156        { 160, "Frecuencia de salida:" },
     2157        { 161, "Ignorar opciones MIDI generales" },
     2158        { 162, "Ignorar opciones MT-32 generales" },
     2159        { 163, "Ignorar opciones de sonido generales" },
     2160        { 164, "Ignorar opciones gr\341ficas generales" },
     2161        { 165, "Ignorar opciones de volumen generales" },
     2162        { 166, "Emulador del altavoz de PC" },
     2163        { 167, "Contrase\361a:" },
     2164        { 168, "La ruta no es un directorio" },
     2165        { 169, "La ruta no es un archivo" },
     2166        { 170, "La ruta no existe" },
     2167        { 171, "Rutas" },
     2168        { 172, "Pausar" },
     2169        { 173, "Elige el juego:" },
     2170        { 174, "Plataforma para la que se dise\361\363 el juego" },
     2171        { 175, "Plataforma:" },
     2172        { 176, "Tiempo de juego:" },
     2173        { 177, "Por favor, selecciona una acci\363n" },
     2174        { 178, "Plugins:" },
     2175        { 179, "Dispositivo preferido:" },
     2176        { 180, "Pulsa la tecla a asignar" },
     2177        { 181, "Salir" },
     2178        { 182, "Cerrar ScummVM" },
     2179        { 183, "Permiso de lectura denegado" },
     2180        { 184, "Lectura fallida" },
     2181        { 185, "Asignar teclas" },
     2182        { 186, "Elimina el juego de la lista. Los archivos no se borran" },
     2183        { 187, "Modo de renderizado:" },
     2184        { 188, "Derecha" },
     2185        { 189, "Clic derecho" },
     2186        { 190, "Clic derecho" },
     2187        { 191, "Rotar" },
     2188        { 192, "Volumen de los efectos" },
     2189        { 193, "SMB" },
     2190        { 194, "Guardar" },
     2191        { 195, "Partidas:" },
     2192        { 196, "Partidas:" },
     2193        { 197, "Guardar partida" },
     2194        { 198, "\241B\372squeda completada!" },
     2195        { 199, "Se ha buscado en %d directorios..." },
     2196        { 200, "Men\372 principal de ScummVM" },
     2197        { 201, "\241ScummVM no ha podido encontrar ning\372n motor capaz de ejecutar el juego!" },
     2198        { 202, "\241ScummVM no ha encontrado ning\372n juego en el directorio!" },
     2199        { 203, "\241ScummVM no ha podido abrir el directorio!" },
     2200        { 204, "Buscar en la lista de juegos" },
     2201        { 205, "Buscar:" },
     2202        { 206, "Seleccionar SoundFont" },
     2203        { 207, "Selecciona un tema" },
     2204        { 208, "Seleccionar directorio de juego adicional" },
     2205        { 209, "Selecciona una acci\363n y pulsa \"Asignar\"" },
     2206        { 210, "Selecciona el directorio para temas de interfaz" },
     2207        { 211, "Selecciona el directorio para archivos adicionales" },
     2208        { 212, "Selecciona el directorio para plugins" },
     2209        { 213, "Seleccionar directorio para partidas guardadas" },
     2210        { 214, "Selecciona el directorio para partidas guardadas." },
     2211        { 215, "Seleccionar directorio con los archivos del juego" },
     2212        { 216, "Sensibilidad" },
     2213        { 217, "Servidor:" },
     2214        { 218, "Disco compartido:" },
     2215        { 219, "Identificador usado para las partidas guardadas y para ejecutar el juego desde la l\355nea de comando" },
     2216        { 220, "Mostrar teclado" },
     2217        { 221, "Mostrar el cursor" },
     2218        { 222, "Reproducir voces y subt\355tulos" },
     2219        { 223, "Mostrar/ocultar cursor" },
     2220        { 224, "Saltar" },
     2221        { 225, "Saltar frase" },
     2222        { 226, "Saltar texto" },
     2223        { 227, "Pegar a los bordes" },
     2224        { 228, "Escalado por software (buena calidad, pero m\341s lento)" },
     2225        { 229, "Sonido activado/desactivado" },
     2226        { 230, "Algunas tarjetas de sonido, Fluidsynth y Timidity soportan SoundFont" },
     2227        { 231, "SoundFont:" },
     2228        { 232, "Voces" },
     2229        { 233, "Modos especiales de expansi\363n soportados por algunos juegos" },
     2230        { 234, "Volumen de los efectos de sonido" },
     2231        { 235, "Especifica el dispositivo de salida General MIDI por defecto" },
     2232        { 236, "Especifica el dispositivo de sonido para la salida Roland MT-32/LAPC1/CM32l/CM64 por defecto" },
     2233        { 237, "Especifica el dispositivo de sonido o emulador de tarjeta de sonido de salida" },
     2234        { 238, "Especifica el directorio adicional usado por los juegos y ScummVM" },
     2235        { 239, "Especifica un directorio para datos adicionales del juego" },
     2236        { 240, "Especifica qu\351 dispositivo de sonido o emulador de tarjeta de sonido prefieres" },
     2237        { 241, "Especifica d\363nde guardar tus partidas" },
     2238        { 242, "Voces" },
     2239        { 243, "Volumen de las voces" },
     2240        { 244, "Est\341ndar (16bpp)" },
     2241        { 245, "Jugar al juego seleccionado" },
     2242        { 246, "Estado:" },
     2243        { 247, "Subt." },
     2244        { 248, "Velocidad de los subt\355tulos:" },
     2245        { 249, "Subt\355tulos" },
     2246        { 250, "Cambiar personaje" },
     2247        { 251, "Un toque para clic izquierdo, dos para clic derecho" },
     2248        { 252, "Texto y voces:" },
     2249        { 253, "No se puede escribir en el directorio elegido. Por favor, selecciona otro." },
     2250        { 254, "Temas:" },
     2251        { 255, "Tema:" },
     2252        { 256, "Esta ID ya est\341 siendo usada. Por favor, elige otra." },
     2253        { 257, "Este juego no permite cargar partidas desde el lanzador." },
     2254        { 258, "Hora:" },
     2255        { 259, "Se ha excedido el tiempo de inicializaci\363n de red" },
     2256        { 260, "Compensaci\363n X del toque" },
     2257        { 261, "Compensaci\363n Y del toque" },
     2258        { 262, "Modo Touchpad desactivado." },
     2259        { 263, "Modo Touchpad activado." },
     2260        { 264, "Roland MT-32 aut\351ntica (desactivar emulaci\363n GM)" },
     2261        { 265, "Desactiva la conversi\363n General MIDI en juegos con sonido Roland MT-32" },
     2262        { 266, "Desconocido" },
     2263        { 267, "Error desconocido" },
     2264        { 268, "Desmontar DVD" },
     2265        { 269, "Desmontar SMB" },
     2266        { 270, "Sin escalado (debes desplazar la pantalla a los lados)" },
     2267        { 271, "Modo de color no soportado" },
     2268        { 272, "Partida sin nombre" },
     2269        { 273, "Arriba" },
     2270        { 274, "Usar tanto MIDI como AdLib en la generaci\363n de sonido" },
     2271        { 275, "Activar el sistema de control tipo trackpad de los port\341tiles" },
     2272        { 276, "Usuario:" },
     2273        { 277, "Usando driver SDL" },
     2274        { 278, "Underscan vertical:" },
     2275        { 279, "V\355deo" },
     2276        { 280, "Teclado virtual" },
     2277        { 281, "Volumen" },
     2278        { 282, "Windows MIDI" },
     2279        { 283, "Permiso de escritura denegado" },
     2280        { 284, "Escritura de datos fallida" },
     2281        { 285, "S\355" },
     2282        { 286, "Tienes que reiniciar ScummVM para aplicar los cambios." },
     2283        { 287, "Zona" },
     2284        { 288, "Disminuir zoom" },
     2285        { 289, "Aumentar zoom" },
     2286        { 290, "cada 10 minutos" },
     2287        { 291, "cada 15 minutos" },
     2288        { 292, "cada 30 minutos" },
     2289        { 293, "cada 5 minutos" },
     2290        { 294, "Acerca ~d~e" },
     2291        { 295, "~A~\361adir juego..." },
     2292        { 296, "~C~ancelar" },
     2293        { 297, "Cerra~r~" },
     2294        { 298, "~E~ditar juego..." },
     2295        { 299, "~A~yuda" },
     2296        { 300, "Controles para pelear de ~I~ndy" },
     2297        { 301, "~T~eclas" },
     2298        { 302, "Modo para ~z~urdos" },
     2299        { 303, "~C~argar" },
     2300        { 304, "~C~argar..." },
     2301        { 305, "Si~g~uiente" },
     2302        { 306, "~S~\355" },
     2303        { 307, "~O~opciones" },
     2304        { 308, "~O~opciones..." },
     2305        { 309, "~A~nterior" },
     2306        { 310, "~S~alir" },
     2307        { 311, "E~l~iminar juego" },
     2308        { 312, "~R~eanudar" },
     2309        { 313, "~V~olver al lanzador" },
     2310        { 314, "~G~uardar" },
     2311        { 315, "~J~ugar" },
     2312        { 316, "Tra~n~siciones activadas" },
     2313        { 317, "Efecto ag~u~a activado" },
     2314        { 318, "Modo ~Z~ip activado" },
     2315        { -1, NULL }
     2316};
     2317
     2318const PoMessageEntry _translation_de_DE[] = {
     2319        { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-14 16:14+0100\nPO-Revision-Date: 2010-08-12 00:56+0100\nLast-Translator: Simon Sawatzki\nLanguage-Team: Lothar Serra Mari <Lothar@Windowsbase.de> & Simon Sawatzki <SimSaw@gmx.de>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=iso-8859-1\nContent-Transfer-Encoding: 8bit\nLanguage: Deutsch\nPlural-Forms: nplurals=2; plural=n != 1;\n" },
     2320        { 1, "   M\366chten Sie wirklich beenden?    " },
     2321        { 2, " (Aktiv)" },
     2322        { 3, " (Spiel)" },
     2323        { 4, " (Global)" },
     2324        { 5, "(erstellt am %s)" },
     2325        { 6, ", Fehler beim Einbinden des \366ffentlichen Verzeichnisses" },
     2326        { 7, ", \366ffentliches Verzeichnis nicht eingebunden" },
     2327        { 8, "... l\344uft..." },
     2328        { 9, "11 kHz" },
     2329        { 10, "22 kHz" },
     2330        { 11, "44 kHz" },
     2331        { 12, "48 kHz" },
     2332        { 13, "8 kHz" },
     2333        { 14, "<Standard>" },
     2334        { 15, "\334ber ScummVM" },
     2335        { 16, "AdLib-Emulator" },
     2336        { 17, "AdLib-Emulator" },
     2337        { 18, "AdLib wird f\374r die Musik in vielen Spielen verwendet." },
     2338        { 19, "Spiel hinzuf\374gen" },
     2339        { 20, "Amiga-Audio-Emulator" },
     2340        { 21, "Kantengl\344ttung (16bpp)" },
     2341        { 23, "Seitenverh\344ltnis korrigieren" },
     2342        { 24, "Zugewiesene Taste: %s" },
     2343        { 25, "Zugewiesene Taste: keine" },
     2344        { 26, "Audio" },
     2345        { 27, "Autom. Speichern:" },
     2346        { 28, "Verf\374gbare Spiele-Engines:" },
     2347        { 29, "\334be~r~" },
     2348        { 30, "Tasten zuweisen" },
     2349        { 31, "Beides" },
     2350        { 32, "Helligkeit:" },
     2351        { 33, "C64-Audio-Emulator" },
     2352        { 34, "Abbrechen" },
     2353        { 35, "Kann Datei nicht erstellen." },
     2354        { 36, "Spieloptionen \344ndern" },
     2355        { 37, "Globale ScummVM-Einstellungen bearbeiten" },
     2356        { 38, "W\344hlen Sie dies aus, wenn Sie Ihre echte Hardware, die mit einer Roland-kompatiblen Soundkarte verbunden ist, verwenden m\366chten." },
     2357        { 39, "Ausw\344hlen" },
     2358        { 40, "Eine Aktion zum Zuweisen ausw\344hlen" },
     2359        { 41, "Wert l\366schen" },
     2360        { 42, "Schlie\337en" },
     2361        { 43, "Seitenverh\344ltnis f\374r Spiele mit der Aufl\366sung 320x200 korrigieren" },
     2362        { 44, "Kann keine Spiel-Engine finden, die dieses Spiel starten kann." },
     2363        { 45, "Aktueller Videomodus:" },
     2364        { 46, "Zeiger runter" },
     2365        { 47, "Zeiger nach links" },
     2366        { 48, "Zeiger nach rechts" },
     2367        { 49, "Zeiger hoch" },
     2368        { 50, "DOSBox-OPL-Emulator" },
     2369        { 51, "DVD" },
     2370        { 52, "DVD erfolgreich eingebunden" },
     2371        { 53, "DVD nicht eingebunden" },
     2372        { 54, "Datum: " },
     2373        { 55, "Debugger" },
     2374        { 56, "Standard" },
     2375        { 57, "L\366schen" },
     2376        { 58, "Stromsparmodus abschalten" },
     2377        { 59, "GFX ausgeschalten" },
     2378        { 60, "%d neue Spiele gefunden..." },
     2379        { 61, "%d neue Spiele gefunden." },
     2380        { 62, "Anzeige" },
     2381        { 63, "Tastatur anzeigen" },
     2382        { 64, "Diesen Spielstand wirklich l\366schen?" },
     2383        { 65, "M\366chten Sie wirklich diese Spielkonfiguration entfernen?" },
     2384        { 66, "M\366chten Sie wirklich den PC nach Spielen durchsuchen? M\366glicherweise wird dabei eine gr\366\337ere Menge an Spielen hinzugef\374gt." },
     2385        { 67, "M\366chten Sie ein Spiel laden oder speichern?" },
     2386        { 68, "M\366chten Sie eine automatische Durchsuchung vornehmen?" },
     2387        { 69, "M\366chten Sie beenden?" },
     2388        { 70, "Doppelzeilen (kein Zeilensprungverfahren)" },
     2389        { 71, "Runter" },
     2390        { 72, "Roland-GS-Modus" },
     2391        { 73, "Engine unterst\374tzt den Debug-Level \"%s\" nicht" },
     2392        { 74, "English" },
     2393        { 75, "Fehler beim Ausf\374hren des Spiels:" },
     2394        { 76, "Fehler beim Einbinden der DVD" },
     2395        { 77, "Extrapfad:" },
     2396        { 78, "FM-Towns-Emulator" },
     2397        { 79, "Schneller Modus" },
     2398        { 80, "Verwendete Funktionen:" },
     2399        { 81, "Freie Ansicht" },
     2400        { 82, "Voller Name des Spiels" },
     2401        { 83, "Vollbildmodus" },
     2402        { 84, "GC-Pad-Beschleunigung:" },
     2403        { 85, "GC-Pad-Empfindlichkeit:" },
     2404        { 86, "GFX" },
     2405        { 87, "GM-Ger\344t:" },
     2406        { 88, "GUI-Sprache:" },
     2407        { 89, "GUI-Renderer:" },
     2408        { 90, "Spiel" },
     2409        { 91, "Spieldaten nicht gefunden" },
     2410        { 92, "Spielkennung nicht unterst\374tzt" },
     2411        { 93, "Spielpfad:" },
     2412        { 94, "Hauptmen\374" },
     2413        { 95, "Zu h\366herer Pfadebene wechseln" },
     2414        { 96, "Pfad hoch" },
     2415        { 97, "Grafik" },
     2416        { 98, "Grafikmodus:" },
     2417        { 99, "Hardware-Skalierung (schnell, aber schlechte Qualit\344t)" },
     2418        { 100, "Hercules Bernsteingelb" },
     2419        { 101, "Hercules-Gr\374n" },
     2420        { 102, "Werkzeugleiste verbergen" },
     2421        { 103, "Hohe Audioqualit\344t (lansamer) (erfordert Neustart)" },
     2422        { 104, "H\366here Werte bewirken eine bessere Soundqualit\344t, werden aber m\366glicherweise nicht von jeder Soundkarte unterst\374tzt." },
     2423        { 105, "Umschalttaste (Shift) gedr\374ckt halten, um Verzeichnisse nach Spielen zu durchsuchen" },
     2424        { 106, "Horizontale Bildverkleinerung:" },
     2425        { 107, "IBM-PCjr-Emulator" },
     2426        { 108, "Kennung:" },
     2427        { 109, "Netzwerk starten" },
     2428        { 110, "Verg\366\337erung des oberen Bildschirms:" },
     2429        { 111, "MT-32-Emulator wird gestartet..." },
     2430        { 112, "Netzwerk wird gestartet..." },
     2431        { 113, "Eingabe" },
     2432        { 114, "Ung\374ltiges Verzeichnis" },
     2433        { 115, "Tasten zuordnen" },
     2434        { 116, "Tastatur" },
     2435        { 117, "Tasten-Layout:" },
     2436        { 118, "Tasten" },
     2437        { 119, "Sprache der ScummVM-Oberfl\344che" },
     2438        { 120, "Sprache des Spiels. Diese Funktion wird nicht eine spanische Version des Spiels in eine deutsche verwandeln." },
     2439        { 121, "Sprache:" },
     2440        { 122, "Links" },
     2441        { 123, "Linksklick" },
     2442        { 124, "Laden" },
     2443        { 125, "Spiel laden:" },
     2444        { 126, "Spielstand f\374r ausgew\344hltes Spiel laden" },
     2445        { 127, "MAME-OPL-Emulator" },
     2446        { 128, "MIDI" },
     2447        { 129, "MIDI-Lautst\344rke:" },
     2448        { 130, "MT-32" },
     2449        { 131, "MT-32-Ger\344t:" },
     2450        { 132, "MT-32-Emulation" },
     2451        { 133, "Hauptbildschirm-Skalierung:" },
     2452        { 134, "Zuweisen" },
     2453        { 135, "Durchsuchen" },
     2454        { 136, "Men\374" },
     2455        { 137, "Sonstiges" },
     2456        { 138, "AdLib-/MIDI-Modus" },
     2457        { 139, "DVD einbinden" },
     2458        { 140, "SMB einbinden" },
     2459        { 141, "Mausklick" },
     2460        { 142, "Multifunktion" },
     2461        { 143, "Musikger\344t:" },
     2462        { 144, "Musiklautst\344rke:" },
     2463        { 145, "Alles aus" },
     2464        { 146, "Name:" },
     2465        { 147, "Netzwerk ist aus." },
     2466        { 148, "Netzwerk nicht gestartet (%d)" },
     2467        { 149, "Netzwerk gestartet" },
     2468        { 150, "Netzwerk gestartet, \366ffentliches Verzeichnis eingebunden" },
     2469        { 151, "Niemals" },
     2470        { 152, "Nein" },
     2471        { 153, "Kein Datum gespeichert" },
     2472        { 154, "Keine Musik" },
     2473        { 155, "Keine Spielzeit gespeichert" },
     2474        { 156, "Keine Zeit gespeichert" },
     2475        { 157, "-" },
     2476        { 158, "Normal (keine Skalierung)" },
     2477        { 159, "OK" },
     2478        { 160, "Ausgabefrequenz:" },
     2479        { 161, "Globale MIDI-Einstellungen \374bergehen" },
     2480        { 162, "Globale MT-32-Einstellungen \374bergehen" },
     2481        { 163, "Globale Audioeinstellungen \374bergehen" },
     2482        { 164, "Globale Grafikeinstellungen \374bergehen" },
     2483        { 165, "Globale Lautst\344rke-Einstellungen \374bergehen" },
     2484        { 166, "PC-Lautsprecher-Emulator" },
     2485        { 167, "Passwort:" },
     2486        { 168, "Ung\374ltiges Verzeichnis" },
     2487        { 169, "Pfad ist keine Datei." },
     2488        { 170, "Verzeichnis existiert nicht." },
     2489        { 171, "Pfade" },
     2490        { 172, "Pause" },
     2491        { 173, "Spiel ausw\344hlen:" },
     2492        { 174, "Plattform, f\374r die das Spiel urspr\374nglich erstellt wurde" },
     2493        { 175, "Plattform:" },
     2494        { 176, "Spieldauer: " },
     2495        { 177, "Bitte eine Aktion ausw\344hlen" },
     2496        { 178, "Plugin-Pfad:" },
     2497        { 179, "Standard-Ger\344t:" },
     2498        { 180, "Taste dr\374cken, um sie zuzuweisen" },
     2499        { 181, "Beenden" },
     2500        { 182, "ScummVM beenden" },
     2501        { 183, "Lese-Berechtigung nicht vorhanden" },
     2502        { 184, "Lesefehler aufgetreten" },
     2503        { 185, "Tasten neu zuweisen" },
     2504        { 186, "Spiel aus der Liste entfernen. Die Spieldateien bleiben erhalten." },
     2505        { 187, "Render-Modus:" },
     2506        { 188, "Rechts" },
     2507        { 189, "Rechtsklick" },
     2508        { 190, "Rechtsklick" },
     2509        { 191, "Drehen" },
     2510        { 192, "Effektlautst\344rke:" },
     2511        { 193, "SMB" },
     2512        { 194, "Speichern" },
     2513        { 195, "Spielst\344nde:" },
     2514        { 196, "Spielst\344nde: " },
     2515        { 197, "Speichern:" },
     2516        { 198, "Suchlauf abgeschlossen!" },
     2517        { 199, "%d Ordner durchsucht..." },
     2518        { 200, "ScummVM-Hauptmen\374" },
     2519        { 201, "ScummVM konnte keine Engine finden, um das Spiel zu starten!" },
     2520        { 202, "ScummVM kann in dem gew\344hlten Verzeichnis kein Spiel finden!" },
     2521        { 203, "ScummVM kann das gew\344hlte Verzeichnis nicht \366ffnen!" },
     2522        { 204, "In Spieleliste suchen" },
     2523        { 205, "Suchen:" },
     2524        { 206, "SoundFont ausw\344hlen" },
     2525        { 207, "Thema ausw\344hlen" },
     2526        { 208, "Verzeichnis mit zus\344tzlichen Dateien ausw\344hlen" },
     2527        { 209, "Aktion ausw\344hlen und \"Zuweisen\" klicken" },
     2528        { 210, "Verzeichnis f\374r Oberfl\344chen-Themen" },
     2529        { 211, "Verzeichnis f\374r zus\344tzliche Dateien ausw\344hlen" },
     2530        { 212, "Verzeichnis f\374r Erweiterungen ausw\344hlen" },
     2531        { 213, "Verzeichnis f\374r Spielst\344nde ausw\344hlen" },
     2532        { 214, "Verzeichnis f\374r Spielst\344nde ausw\344hlen" },
     2533        { 215, "Verzeichnis mit Spieldateien ausw\344hlen" },
     2534        { 216, "Empfindlichkeit" },
     2535        { 217, "Server:" },
     2536        { 218, "\326ffentliches Verzeichnis:" },
     2537        { 219, "Kurzer Spielname, um die Spielst\344nde zuzuordnen und das Spiel von der Kommandozeile aus starten zu k\366nnen" },
     2538        { 220, "Tastatur zeigen" },
     2539        { 221, "Mauszeiger anzeigen" },
     2540        { 222, "Untertitel anzeigen und Sprachausgabe aktivieren" },
     2541        { 223, "Cursor zeigen/verbergen" },
     2542        { 224, "\334berspringen" },
     2543        { 225, "Zeile \374berspringen" },
     2544        { 226, "Text \374berspringen" },
     2545        { 227, "An Ecken anheften" },
     2546        { 228, "Software-Skalierung (gute Qualit\344t, aber langsamer)" },
     2547        { 229, "Ton ein/aus" },
     2548        { 230, "SoundFont wird von einigen Soundkarten, Fluidsynth und Timidity unterst\374tzt." },
     2549        { 231, "SoundFont:" },
     2550        { 232, "Spr." },
     2551        { 233, "Spezielle Farbmischungsmethoden werden von manchen Spielen unterst\374tzt." },
     2552        { 234, "Lautst\344rke spezieller Soundeffekte" },
     2553        { 235, "Legt das standardm\344\337ige Musikwiedergabe-Ger\344t f\374r General-MIDI-Ausgabe fest." },
     2554        { 236, "Legt das standardm\344\337ige Tonwiedergabe-Ger\344t f\374r die Ausgabe von Roland MT-32/LAPC1/CM32l/CM64 fest." },
     2555        { 237, "Legt das Musikwiedergabe-Ger\344t oder den Soundkarten-Emulator fest." },
     2556        { 238, "Legt das Verzeichnis f\374r zus\344tzliche Spieldateien f\374r alle Spiele in ScummVM fest." },
     2557        { 239, "Legt das Verzeichnis f\374r zus\344tzliche Spieldateien fest." },
     2558        { 240, "Legt das bevorzugte Tonwiedergabe-Ger\344t oder den Soundkarten-Emulator fest." },
     2559        { 241, "Legt fest, wo die Spielst\344nde abgelegt werden." },
     2560        { 242, "Sprache" },
     2561        { 243, "Sprachlautst\344rke:" },
     2562        { 244, "Standard-Renderer (16bpp)" },
     2563        { 245, "Ausgew\344hltes Spiel starten" },
     2564        { 246, "Status:" },
     2565        { 247, "Untert." },
     2566        { 248, "Untertitel-Tempo:" },
     2567        { 249, "Untertitel" },
     2568        { 250, "Figur wechseln" },
     2569        { 251, "Tippen f\374r Linksklick, Doppeltippen f\374r Rechtsklick" },
     2570        { 252, "Text und Sprache:" },
     2571        { 253, "In das gew\344hlte Verzeichnis kann nicht geschrieben werden. Bitte ein anderes ausw\344hlen." },
     2572        { 254, "Themenpfad:" },
     2573        { 255, "Thema:" },
     2574        { 256, "Diese Spielkennung ist schon vergeben. Bitte eine andere w\344hlen." },
     2575        { 257, "F\374r dieses Spiel wird das Laden aus der Spieleliste heraus nicht unterst\374tzt." },
     2576        { 258, "Zeit: " },
     2577        { 259, "Zeit\374berschreitung beim Starten des Netzwerks" },
     2578        { 260, "Zu X-Position gehen" },
     2579        { 261, "Zu Y-Position gehen" },
     2580        { 262, "Touchpad-Modus ausgeschaltet." },
     2581        { 263, "Touchpad-Modus aktiviert." },
     2582        { 264, "Echte Roland-MT-32-Emulation (GM-Emulation deaktiviert)" },
     2583        { 265, "Schaltet die General-MIDI-Zuweisung f\374r Spiele mit Roland-MT-32-Audiospur aus." },
     2584        { 266, "Unbekannt" },
     2585        { 267, "Unbekannter Fehler" },
     2586        { 268, "DVD aush\344ngen" },
     2587        { 269, "SMB aush\344ngen" },
     2588        { 270, "Nicht skalieren (Sie m\374ssen nach links und nach rechts scrollen)" },
     2589        { 271, "Farbmodus nicht unterst\374tzt" },
     2590        { 272, "Unbenannt" },
     2591        { 273, "Hoch" },
     2592        { 274, "Benutzt MIDI und AdLib zur Sounderzeugung." },
     2593        { 275, "Den Trackpad-Style f\374r Maussteuerung benutzen" },
     2594        { 276, "Benutzername:" },
     2595        { 277, "SDL-Treiber verwenden" },
     2596        { 278, "Vertikale Bildverkleinerung:" },
     2597        { 279, "Video" },
     2598        { 280, "Virtuelle Tastatur" },
     2599        { 281, "Lautst\344rke" },
     2600        { 282, "Windows MIDI" },
     2601        { 283, "Schreib-Berechtigung nicht vorhanden" },
     2602        { 284, "Daten konnten nicht geschrieben werden." },
     2603        { 285, "Ja" },
     2604        { 286, "Sie m\374ssen ScummVM neustarten, um die Einstellungen zu \374bernehmen." },
     2605        { 287, "Zone" },
     2606        { 288, "Hineinzoomen" },
     2607        { 289, "Herauszoomen" },
     2608        { 290, "alle 10 Minuten" },
     2609        { 291, "alle 15 Minuten" },
     2610        { 292, "alle 30 Minuten" },
     2611        { 293, "alle 5 Minuten" },
     2612        { 294, "\334be~r~" },
     2613        { 295, "Spiel ~h~inzuf\374gen" },
     2614        { 296, "~A~bbrechen" },
     2615        { 297, "~S~chlie\337en" },
     2616        { 298, "Spielo~p~tionen" },
     2617        { 299, "~H~ilfe" },
     2618        { 300, "~K~ampfsteuerung f\374r Indiana Jones" },
     2619        { 301, "~T~asten" },
     2620        { 302, "~L~inke-Hand-Modus" },
     2621        { 303, "~L~aden" },
     2622        { 304, "~L~aden..." },
     2623        { 305, "~W~eiter" },
     2624        { 306, "~O~K" },
     2625        { 307, "~O~ptionen" },
     2626        { 308, "~O~ptionen" },
     2627        { 309, "~Z~ur\374ck" },
     2628        { 310, "~B~eenden" },
     2629        { 311, "Spiel ~e~ntfernen" },
     2630        { 312, "~F~ortsetzen" },
     2631        { 313, "Zur Spiele~l~iste zur\374ck" },
     2632        { 314, "~S~peichern" },
     2633        { 315, "~S~tarten" },
     2634        { 316, "\334ber~g~\344nge aktiviert" },
     2635        { 317, "~W~assereffekt aktiviert" },
     2636        { 318, "~Z~ip-Modus aktiviert" },
     2637        { -1, NULL }
     2638};
     2639
     2640struct PoLangEntry {
     2641        const char *lang;
     2642        const char *charset;
     2643        const char *langname;
     2644        const PoMessageEntry *msgs;
     2645};
     2646
     2647const PoLangEntry _translations[] = {
     2648        { "ru_RU", "iso-8859-5", "Russian", _translation_ru_RU },
     2649        { "it_IT", "iso-8859-1", "Italiano", _translation_it_IT },
     2650        { "hu_HU", "cp1250", "hu_HU", _translation_hu_HU },
     2651        { "fr_FR", "iso-8859-1", "Francais", _translation_fr_FR },
     2652        { "uk_UA", "iso-8859-5", "Ukrainian", _translation_uk_UA },
     2653        { "ca_ES", "iso-8859-1", "Catalan", _translation_ca_ES },
     2654        { "es_ES", "iso-8859-1", "Espanol", _translation_es_ES },
     2655        { "de_DE", "iso-8859-1", "Deutsch", _translation_de_DE },
     2656        { NULL, NULL, NULL, NULL }
     2657};
     2658
  • po/module.mk

     
    3232                mv -f $@.new $@; \
    3333        fi;
    3434
    35 #$(srcdir)/common/messages.cpp: $(POFILES)
    36 #       perl $(srcdir)/tools/po2c $^ > $(srcdir)/common/messages.cpp
     35translations-dat:
     36        perl $(srcdir)/tools/create_translations/po2c $(POFILES) > $(srcdir)/tools/create_translations/messages.h
     37        make tools/create_translations
     38        tools/create_translations/create_translations
     39        mv translations.dat gui/themes/
    3740
    38 update-translations: updatepot $(POFILES)
     41update-translations: updatepot $(POFILES) translations-dat
    3942        @$(foreach file, $(POFILES), echo -n $(notdir $(basename $(file)))": ";msgfmt --statistic $(file);)
    4043        @rm -f messages.mo
    41         perl $(srcdir)/tools/po2c $(POFILES) > $(srcdir)/common/messages.cpp
    4244
    43 .PHONY: updatepot update-translations
     45
     46.PHONY: updatepot translations-dat update-translations