Ticket #9200: translations_dat.diff

File translations_dat.diff, 143.0 KB (added by criezy, 14 years ago)

Modifications to the TranslationManager

  • common/translation.cpp

     
    2929#undef ARRAYSIZE
    3030#endif
    3131
     32#define TRANSLATIONS_DAT_VER 1
     33
    3234#include "translation.h"
    3335
    3436DECLARE_SINGLETON(Common::TranslationManager)
     
    3941#endif // !WIN32
    4042#endif
    4143
    42 #ifdef USE_TRANSLATION
    43 #include "messages.cpp"
    44 #endif
    45 
    4644namespace Common {
    4745
    4846
     
    5048
    5149// Translation enabled
    5250
    53 TranslationManager::TranslationManager() {
     51        TranslationManager::TranslationManager() : _currentLang(-1) {
     52        loadTranslationsInfoDat();
     53
    5454#ifdef USE_DETECTLANG
    5555#ifdef WIN32
    5656        // We can not use "setlocale" (at least not for MSVC builds), since it
     
    120120}
    121121
    122122void TranslationManager::setLanguage(const char *lang) {
    123         if (*lang == '\0')
    124                 po2c_setlang(_syslang.c_str());
    125         else
    126                 po2c_setlang(lang);
     123        // Get lang index
     124        int langIndex = -1;
     125        String langStr(lang);
     126        if (langStr.empty())
     127                langStr = _syslang;
     128       
     129        // Searching for a valid language
     130        for (unsigned int i = 0; i < _langs.size() && langIndex == -1; ++i) {
     131                if (langStr == _langs[i])
     132                        langIndex = i;
     133        }
     134       
     135        // Try partial match
     136        for (unsigned int i = 0; i < _langs.size() && langIndex == -1; ++i) {
     137                if (strncmp(langStr.c_str(), _langs[i].c_str(), 2) == 0)
     138                        langIndex = i;
     139        }
     140       
     141        // Load messages for that lang
     142        // Call it even if the index is -1 to unload previously loaded translations
     143        if (langIndex != _currentLang) {
     144                loadLanguageDat(langIndex);
     145                _currentLang = langIndex;
     146        }
    127147}
    128148
    129149const char *TranslationManager::getTranslation(const char *message) {
    130         return po2c_gettext(message);
     150        // if no language is set or message is empty, return msgid as is
     151        if (_currentTranslationMessages.empty() || *message == '\0')
     152                return message;
     153       
     154        // binary-search for the msgid
     155        int leftIndex = 0;
     156        int rightIndex = _currentTranslationMessages.size() - 1;
     157       
     158        while (rightIndex >= leftIndex) {
     159                const int midIndex = (leftIndex + rightIndex) / 2;
     160                const PoMessageEntry * const m = &_currentTranslationMessages[midIndex];
     161               
     162                const int compareResult = strcmp(message, _messageIds[m->msgid].c_str());
     163               
     164                if (compareResult == 0)
     165                        return m->msgstr.c_str();
     166                else if (compareResult < 0)
     167                        rightIndex = midIndex - 1;
     168                else
     169                        leftIndex = midIndex + 1;
     170        }
     171       
     172        return message;
    131173}
    132174
    133175const char *TranslationManager::getCurrentCharset() {
    134         return po2c_getcharset();
     176        if (_currentCharset.empty())
     177                return "ASCII";
     178        return _currentCharset.c_str();
    135179}
    136180
    137181String TranslationManager::getTranslation(const String &message) {
    138         return po2c_gettext(message.c_str());
     182        return getTranslation(message.c_str());
    139183}
    140184
    141185const TLangArray TranslationManager::getSupportedLanguageNames() const {
    142186        TLangArray languages;
    143187
    144         int total = po2c_getnumlangs();
    145         for (int i = 0; i < total; i++) {
    146                 TLanguage lng(po2c_getlangname(i), i + 1);
     188        for (unsigned int i = 0; i < _langNames.size(); i++) {
     189                TLanguage lng(_langNames[i].c_str(), i + 1);
    147190                languages.push_back(lng);
    148191        }
    149192
     
    153196}
    154197
    155198int TranslationManager::parseLanguage(const String lang) {
    156         int total = po2c_getnumlangs();
    157 
    158         for (int i = 0; i < total; i++) {
    159                 if (lang == po2c_getlang(i))
     199        for (unsigned int i = 0; i < _langs.size(); i++) {
     200                if (lang == _langs[i])
    160201                        return i + 1;
    161202        }
    162203
    163204        return kTranslationBuiltinId;
    164205}
    165206
    166 
    167207const char *TranslationManager::getLangById(int id) {
    168208        switch (id) {
    169209        case kTranslationAutodetectId:
     
    171211        case kTranslationBuiltinId:
    172212                return "C";
    173213        default:
    174                 if (id >= 0 && id - 1 < po2c_getnumlangs())
    175                         return po2c_getlang(id - 1);
     214                if (id >= 0 && id - 1 < (int)_langs.size())
     215                        return _langs[id - 1].c_str();
    176216        }
    177217
    178218        // In case an invalid ID was specified, we will output a warning
     
    181221        return "";
    182222}
    183223
     224void TranslationManager::loadTranslationsInfoDat() {
     225        File in;       
     226        in.open("translations.dat");
     227       
     228        if (!checkHeader(in))
     229                return;
     230       
     231        char buf[256];
     232        int len;
     233       
     234        // Get number of translations
     235        int nbTranslations = in.readUint16BE();
     236       
     237        // Skip all the block sizes
     238        for (int i = 0 ; i < nbTranslations + 2 ; ++i)
     239                in.readUint16BE();
     240       
     241        // Read list of languages
     242        _langs.resize(nbTranslations);
     243        _langNames.resize(nbTranslations);
     244        for (int i = 0; i < nbTranslations; ++i) {
     245                len = in.readUint16BE();
     246                in.read(buf, len);
     247                _langs[i] = String(buf, len);
     248                len = in.readUint16BE();
     249                in.read(buf, len);
     250                _langNames[i] = String(buf, len);
     251        }
     252       
     253        // Read messages
     254        int numMessages = in.readUint16BE();
     255        _messageIds.resize(numMessages);
     256        for (int i = 0; i < numMessages; ++i) {
     257                len = in.readUint16BE();
     258                in.read(buf, len);
     259                _messageIds[i] = String(buf, len);
     260        }
     261}
     262
     263void TranslationManager::loadLanguageDat(int index) {
     264        _currentTranslationMessages.clear();
     265        _currentCharset.clear();
     266        // Sanity check
     267        if (index < 0 || index >= (int)_langs.size()) {
     268                if (index != -1)
     269                        warning("Invalid language index %d passed to TranslationManager::loadLanguageDat", index);
     270                return;
     271        }
     272       
     273        File in;       
     274        in.open("translations.dat");
     275
     276        if (!checkHeader(in))
     277                return;
     278       
     279        char buf[1024];
     280        int len;
     281       
     282        // Get number of translations
     283        int nbTranslations = in.readUint16BE();
     284        if (nbTranslations != (int)_langs.size()) {
     285                warning("The 'translations.dat' file has changed since starting ScummVM. GUI translation will not be available");
     286                return;
     287        }
     288       
     289        // Get size of blocks to skip.
     290        int skipSize = 0;
     291        for (int i = 0 ; i < index + 2 ; ++i)
     292                skipSize += in.readUint16BE();
     293        // We also need to skip the remaining block sizes
     294        skipSize += 2 * (nbTranslations - index);
     295       
     296        // Seek to start of block we want to read
     297        in.seek(skipSize, SEEK_CUR);
     298       
     299        // Read number of translated messages
     300        int nbMessages = in.readUint16BE();
     301        _currentTranslationMessages.resize(nbMessages);
     302       
     303        // Read charset
     304        len = in.readUint16BE();
     305        in.read(buf, len);
     306        _currentCharset = String(buf, len);
     307       
     308        // Read messages
     309        for (int i = 0; i < nbMessages; ++i) {
     310                _currentTranslationMessages[i].msgid = in.readUint16BE();
     311                len = in.readUint16BE();
     312                in.read(buf, len);
     313                _currentTranslationMessages[i].msgstr = String(buf, len);
     314        }
     315}
     316
     317bool TranslationManager::checkHeader(File& in) {
     318        char buf[13];
     319        int ver;
     320       
     321        if (!in.isOpen()) {
     322                warning("You're missing the 'translations.dat' file. GUI translation will not be available");
     323                return false;
     324        }
     325       
     326        in.read(buf, 12);
     327        buf[12] = '\0';
     328       
     329        // Check header
     330        if (strcmp(buf, "TRANSLATIONS")) {
     331                warning("File 'translations.dat' is corrupt. GUI translation will not be available");
     332                return false;
     333        }
     334       
     335        // Check version
     336        ver = in.readByte();
     337       
     338        if (ver != TRANSLATIONS_DAT_VER) {
     339                warning("File 'translations.dat' is wrong version. Expected %d but got %d. GUI translation will not be available", TRANSLATIONS_DAT_VER, ver);
     340                return false;
     341        }
     342       
     343        return true;
     344}
     345
    184346#else // USE_TRANSLATION
    185347
    186348// Translation disabled
  • common/messages.cpp

     
    1 // generated by po2c 1.0.2-scummvm - Do not modify
    2 
    3 static const 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 
    326 struct PoMessageEntry {
    327         int msgid;
    328         const char *msgstr;
    329 };
    330 
    331 static const PoMessageEntry _translation_ca_ES[] = {
    332         { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-11 22:12+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" },
    333         { 2, " (Actiu)" },
    334         { 3, " (Joc)" },
    335         { 4, " (Global)" },
    336         { 5, "(compilat el %s)" },
    337         { 6, ", error al muntar la compartici\363" },
    338         { 7, ", compartici\363 no muntada" },
    339         { 8, "... progr\351s ..." },
    340         { 9, "11kHz" },
    341         { 10, "22 kHz" },
    342         { 11, "44 kHz" },
    343         { 12, "48 kHz" },
    344         { 13, "8 kHz" },
    345         { 14, "<per defecte>" },
    346         { 15, "Quant a ScummVM" },
    347         { 16, "Emulador d'AdLib" },
    348         { 17, "Emulador d'AdLib:" },
    349         { 18, "AdLib s'utilitza per la m\372sica de molts jocs" },
    350         { 19, "Afegeix Joc..." },
    351         { 20, "Emulador d'AdLib" },
    352         { 21, "Pintat amb antialias (16bpp)" },
    353         { 23, "Correcci\363 del rati d'aspecte" },
    354         { 24, "Tecla associada : %s" },
    355         { 25, "Tecla associada : cap" },
    356         { 26, "\300udio" },
    357         { 27, "Desat autom\340tic:" },
    358         { 28, "Motors disponibles:" },
    359         { 29, "~Q~uant a..." },
    360         { 30, "Mapeja tecles" },
    361         { 31, "Ambd\363s" },
    362         { 32, "Brillantor:" },
    363         { 33, "Emulador d'AdLib" },
    364         { 34, "Cancel\267la" },
    365         { 35, "No s'ha pogut crear el fitxer" },
    366         { 36, "Canvia les opcions del joc" },
    367         { 37, "Canvia les opcions globals de ScummVM" },
    368         { 38, "Marqueu si voleu utilitzar el vostre dispositiu hardware real de so compatible amb Roland connectat al vostre ordinador" },
    369         { 39, "Escull" },
    370         { 40, "Sel\267leccioneu una acci\363 per mapejar" },
    371         { 41, "Neteja el valor" },
    372         { 42, "Tanca" },
    373         { 43, "Corregeix la relaci\363 d'aspecte per jocs de 320x200" },
    374         { 44, "No s'ha pogut trobar cap motor capa\347 d'executar el joc seleccionat" },
    375         { 45, "Mode de v\355deo actual:" },
    376         { 46, "Cursor Avall" },
    377         { 47, "Cursor Esquerra" },
    378         { 48, "Cursor Dreta" },
    379         { 49, "Cursor Amunt" },
    380         { 50, "Emulador OPL de DOSBox" },
    381         { 51, "DVD" },
    382         { 52, "El DVD s'ha muntat satisfact\362riament" },
    383         { 53, "El DVD no est\340 muntat" },
    384         { 54, "Data: " },
    385         { 55, "Depurador" },
    386         { 56, "Per defecte" },
    387         { 57, "Suprimeix" },
    388         { 58, "Desactiva l'apagat autom\340tic" },
    389         { 59, "GFX desactivats" },
    390         { 60, "S'han descobert %d jocs nous ..." },
    391         { 61, "S'han descobert %d jocs nous." },
    392         { 62, "Pantalla" },
    393         { 63, "Mostra el teclat" },
    394         { 64, "Realment voleu suprimir aquesta partida?" },
    395         { 65, "Realment voleu suprimir la configuraci\363 d'aquest joc?" },
    396         { 66, "Esteu segur que voleu executar el detector massiu de jocs? Aix\362 pot afegir una gran quantitat de jocs." },
    397         { 67, "Voleu carregar o desar el joc?" },
    398         { 68, "Voleu fer una cerca autom\340tica?" },
    399         { 69, "Vols sortir?" },
    400         { 71, "Avall" },
    401         { 72, "Activa el Mode Roland GS" },
    402         { 73, "El motor no suporta el nivell de depuraci\363 '%s'" },
    403         { 74, "Angl\350s" },
    404         { 75, "Error al executar el joc:" },
    405         { 76, "Error al muntar el DVD" },
    406         { 77, "Cam\355 Extra:" },
    407         { 78, "Emulador de FM Towns" },
    408         { 79, "Mode r\340pid" },
    409         { 80, "Caracter\355stiques compilades:" },
    410         { 81, "Vista lliure" },
    411         { 82, "T\355tol complet del joc" },
    412         { 83, "Mode pantalla completa" },
    413         { 84, "Acceleraci\363 del Pad GC:" },
    414         { 85, "Sensibilitat del Pad GC:" },
    415         { 86, "GFX" },
    416         { 87, "Dispositiu GM:" },
    417         { 88, "Idioma de la interf\355cie d'usuari:" },
    418         { 89, "Mode de pintat de la interf\355cie d'usuari:" },
    419         { 90, "Joc" },
    420         { 91, "No s'han trobat les dades del joc" },
    421         { 92, "Identificador de joc no suportat" },
    422         { 93, "Cam\355 del Joc:" },
    423         { 94, "Men\372 global" },
    424         { 95, "Torna al nivell de directoris anterior" },
    425         { 96, "Amunt" },
    426         { 97, "Gr\340fics" },
    427         { 98, "Mode gr\340fic:" },
    428         { 99, "Escalat per hardware (r\340pid, per\362 de baixa qualitat)" },
    429         { 100, "Hercules \300mbar" },
    430         { 101, "Hercules Verd" },
    431         { 102, "Oculta la barra d'eines" },
    432         { 103, "Alta qualitat d'\340udio (m\351s lent) (reiniciar)" },
    433         { 104, "Valors m\351s alts especifiquen millor qualitat de so per\362 pot ser que la vostra tarja de so no ho suporti" },
    434         { 105, "Mantingueu premut Shift per a l'Addici\363 Massiva" },
    435         { 107, "Emulador d'IBM PCjr" },
    436         { 108, "Identificador:" },
    437         { 109, "Inicia la xarxa" },
    438         { 110, "Escalat inicial de la pantalla superior:" },
    439         { 111, "Iniciant l'Emulador de MT-32" },
    440         { 112, "Iniciant la xarxa" },
    441         { 113, "Entrada" },
    442         { 114, "Cam\355 incorrecte" },
    443         { 115, "Mapejador de tecles" },
    444         { 116, "Teclat" },
    445         { 117, "Mapa de teclat:" },
    446         { 118, "Tecles" },
    447         { 119, "Idioma de la interf\355cie d'usuari de ScummVM" },
    448         { 120, "Idioma del joc. Aix\362 no convertir\340 la vostra versi\363 Espanyola del joc a Angl\350s" },
    449         { 121, "Idioma:" },
    450         { 122, "Esquerra" },
    451         { 123, "Clic esquerre" },
    452         { 124, "Carrega" },
    453         { 125, "Carrega partida:" },
    454         { 126, "Carrega una partida pel joc seleccionat" },
    455         { 127, "Emulador OPL de MAME" },
    456         { 128, "MIDI" },
    457         { 129, "Guany MIDI:" },
    458         { 131, "Dispositiu MT32:" },
    459         { 132, "Emulador de MT-32" },
    460         { 133, "Escalat de la pantalla principal:" },
    461         { 134, "Mapeja" },
    462         { 135, "Addici\363 Massiva..." },
    463         { 136, "Men\372" },
    464         { 137, "Misc" },
    465         { 138, "Mode combinat AdLib/MIDI" },
    466         { 139, "Munta el DVD" },
    467         { 140, "Munta SMB" },
    468         { 141, "Clic del ratol\355" },
    469         { 142, "Funci\363 M\372ltiple" },
    470         { 143, "Dispositiu GM:" },
    471         { 144, "Volum de la m\372sica:" },
    472         { 145, "Silenciar tot" },
    473         { 146, "Nom:" },
    474         { 147, "Xarxa inactiva" },
    475         { 148, "Xarxa no iniciada (%d)" },
    476         { 149, "Xarxa activa" },
    477         { 150, "Xarxa activa, compartici\363 muntada" },
    478         { 151, "Mai" },
    479         { 152, "No" },
    480         { 153, "No hi ha data desada" },
    481         { 154, "Sense m\372sica" },
    482         { 155, "No hi ha temps de joc desat" },
    483         { 156, "No hi ha hora desada" },
    484         { 157, "Cap" },
    485         { 158, "Normal (sense escalar)" },
    486         { 159, "D'acord" },
    487         { 160, "Freq\374\350ncia de sortida:" },
    488         { 161, "Fer canvis sobre les opcions globals de MIDI" },
    489         { 162, "Fer canvis sobre les opcions globals de MIDI" },
    490         { 163, "Fer canvis sobre les opcions globals d'\340udio" },
    491         { 164, "Fer canvis sobre les opcions globals de gr\340fics" },
    492         { 165, "Fer canvis sobre les opcions globals de volum" },
    493         { 166, "Emulador d'Altaveu de PC" },
    494         { 167, "Contrasenya:" },
    495         { 168, "El cam\355 no \351s un directori" },
    496         { 169, "El cam\355 no \351s un fitxer" },
    497         { 170, "El cam\355 no existeix" },
    498         { 171, "Camins" },
    499         { 172, "Pausa" },
    500         { 173, "Seleccioneu el joc:" },
    501         { 174, "Plataforma per la que el joc es va dissenyar originalment" },
    502         { 175, "Plataforma:" },
    503         { 176, "Temps de joc: " },
    504         { 177, "Seleccioneu una acci\363" },
    505         { 178, "Cam\355 dels connectors:" },
    506         { 179, "Dispositiu Preferit:" },
    507         { 180, "Premeu la tecla a associar" },
    508         { 181, "Surt" },
    509         { 182, "Surt de ScummVM" },
    510         { 183, "S'ha denegat el perm\355s de lectura" },
    511         { 184, "Ha fallat la lectura" },
    512         { 185, "Remapeja les tecles" },
    513         { 186, "Elimina un joc de la llista. Els fitxers de dades del joc es mantenen intactes" },
    514         { 187, "Mode de pintat:" },
    515         { 188, "Dreta" },
    516         { 189, "Clic dret" },
    517         { 190, "Clic dret" },
    518         { 191, "Rotar" },
    519         { 192, "Volum dels efectes:" },
    520         { 193, "SMB" },
    521         { 194, "Desa" },
    522         { 195, "Cam\355 de les Partides:" },
    523         { 196, "Cam\355 de les Partides: " },
    524         { 197, "Desa la partida:" },
    525         { 198, "S'ha acabat la cerca!" },
    526         { 199, "S'han cercat %d directoris ..." },
    527         { 200, "Men\372 Principal de ScummVM" },
    528         { 201, "ScummVM no ha pogut trobar cap motor capa\347 d'executar el joc seleccionat!" },
    529         { 202, "ScummVM no ha pogut trobar cap joc al directori especificat!" },
    530         { 203, "ScummVM no ha pogut obrir el directori especificat!" },
    531         { 204, "Cerca a la llista de jocs" },
    532         { 205, "Cerca:" },
    533         { 206, "Seleccioneu el fitxer SoundFont" },
    534         { 207, "Seleccioneu un Tema" },
    535         { 208, "Seleccioneu el directori addicional del joc" },
    536         { 209, "Seleccioneu una acci\363 i cliqueu 'Mapeja'" },
    537         { 210, "Seleccioneu el directori dels temes de la Interf\355cie d'Usuari" },
    538         { 211, "Seleccioneu el directori dels fitxers extra" },
    539         { 212, "Seleccioneu el directori dels connectors" },
    540         { 213, "Seleccioneu el directori de les partides desades" },
    541         { 214, "Seleccioneu el directori de les partides desades" },
    542         { 215, "Seleccioneu el directori amb les dades del joc" },
    543         { 216, "Sensibilitat" },
    544         { 217, "Servidor:" },
    545         { 218, "Compartici\363:" },
    546         { 219, "Identificador de joc curt utilitzat per referir-se a les partides i per executar el joc des de la l\355nia de comandes" },
    547         { 220, "Mostra el teclat" },
    548         { 221, "Mostra el cursor del ratol\355" },
    549         { 222, "Mostra els subt\355tols i reprodueix la veu" },
    550         { 223, "Mostra/Oculta el cursor" },
    551         { 224, "Salta" },
    552         { 225, "Salta la l\355nia" },
    553         { 226, "Salta el text" },
    554         { 228, "Escalat per software (bona qualitat, per\362 m\351s lent)" },
    555         { 229, "So engegat/parat" },
    556         { 230, "Algunes targes de so, Fluidsynth i Timidity suporten SoundFont" },
    557         { 231, "Fitxer SoundFont:" },
    558         { 232, "Veus" },
    559         { 233, "Modes de dispersi\363 especials suportats per alguns jocs" },
    560         { 234, "Volum dels sons d'efectes especials" },
    561         { 235, "Especifica el dispositiu de so per defecte per a la sortida General MIDI" },
    562         { 236, "Especifica el dispositiu de so per defecte per a la sortida de Roland MT-32/LAPC1/CM32l/CM64" },
    563         { 237, "Especifica el dispositiu de so o l'emulador de tarja de so de sortida" },
    564         { 238, "Especifica el cam\355 de les dades addicionals utilitzades per tots els jocs o pel ScummVM" },
    565         { 239, "Especifica el cam\355 de dades addicionals utilitzades pel joc" },
    566         { 240, "Especifica el dispositiu de so o l'emulador de tarja de so preferit" },
    567         { 241, "Especifica on es desaran les partides" },
    568         { 242, "Veus" },
    569         { 243, "Volum de la veu:" },
    570         { 244, "Pintat est\340ndard (16bpp)" },
    571         { 245, "Iniciant el joc seleccionat" },
    572         { 246, "Estat:" },
    573         { 247, "Subt" },
    574         { 248, "Velocitat dels subt\355tols:" },
    575         { 249, "Subt\355tols" },
    576         { 250, "Commuta el personatge" },
    577         { 251, "Toc per a clic esquerre, doble toc per a clic dret" },
    578         { 252, "Text i Veus:" },
    579         { 253, "No es pot escriure al directori seleccionat. Si us plau, escolliu-ne un altre." },
    580         { 254, "Cam\355 dels Temes:" },
    581         { 255, "Tema:" },
    582         { 256, "Aquest identificador de joc ja est\340 usat. Si us plau, trieu-ne un altre." },
    583         { 257, "Aquest joc no suporta la c\340rrega de partides des del llan\347ador." },
    584         { 258, "Hora: " },
    585         { 260, "Despla\347ament X del toc" },
    586         { 261, "Despla\347ament Y del toc" },
    587         { 262, "Mode Touchpad desactivat." },
    588         { 263, "Mode Touchpad activat." },
    589         { 264, "Roland MT-32 real (desactiva l'emulaci\363 GM)" },
    590         { 265, "Desactiva la conversi\363 General MIDI pels jocs que tenen banda sonora per a Roland MT-32" },
    591         { 266, "Desconegut" },
    592         { 267, "Error desconegut" },
    593         { 268, "Desmunta el DVD" },
    594         { 269, "Desmunta SMB" },
    595         { 270, "Sense escalar (haureu de despla\347ar-vos a esquerra i dreta)" },
    596         { 271, "Mode de color no suportat" },
    597         { 272, "Partida sense t\355tol" },
    598         { 273, "Amunt" },
    599         { 274, "Utilitza MIDI i la generaci\363 de so AdLib alhora" },
    600         { 275, "Utilitza el control del cursor a l'estil del trackpad dels port\340tils" },
    601         { 276, "Nom d'usuari:" },
    602         { 277, "Utilitzant el controlador SDL " },
    603         { 279, "V\355deo" },
    604         { 280, "Teclat virtual" },
    605         { 281, "Volum" },
    606         { 282, "MIDI de Windows" },
    607         { 283, "S'ha denegat el perm\355s d'escriptura" },
    608         { 284, "Ha fallat l'escriptura de dades" },
    609         { 285, "S\355" },
    610         { 286, "Heu de reiniciar ScummVM perqu\350 tots els canvis tingui efecte." },
    611         { 287, "Zona" },
    612         { 288, "Redueix" },
    613         { 289, "Amplia" },
    614         { 290, "cada 10 minuts" },
    615         { 291, "cada 15 minuts" },
    616         { 292, "cada 30 minuts" },
    617         { 293, "cada 5 minuts" },
    618         { 294, "~Q~uant a" },
    619         { 295, "~A~fegeix Joc..." },
    620         { 296, "~C~ancel\267la" },
    621         { 297, "~T~anca" },
    622         { 298, "~E~dita Joc..." },
    623         { 299, "~A~juda" },
    624         { 300, "Controls de lluita de l'~I~ndy" },
    625         { 301, "~T~ecles" },
    626         { 302, "Mode ~e~squerr\340" },
    627         { 303, "C~a~rrega" },
    628         { 304, "~C~arrega..." },
    629         { 305, "~S~eg\374ent" },
    630         { 306, "~D~'acord" },
    631         { 307, "~O~pcions" },
    632         { 308, "~O~pcions..." },
    633         { 309, "~A~nterior" },
    634         { 310, "~T~anca" },
    635         { 311, "~S~uprimeix Joc" },
    636         { 312, "~C~ontinua" },
    637         { 313, "~R~etorna al Llan\347ador" },
    638         { 314, "~D~esa" },
    639         { 315, "~I~nicia" },
    640         { 316, "~T~ransicions activades" },
    641         { 317, "~E~fecte de l'aigua activat" },
    642         { 318, "Mode ~Z~ip activat" },
    643         { -1, NULL }
    644 };
    645 
    646 static const PoMessageEntry _translation_uk_UA[] = {
    647         { 0, "Project-Id-Version: ScummVM VERSION\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-11 22:12+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" },
    648         { 1, "   \262\330 \343\337\325\322\335\325\335\366, \351\336 \345\336\347\325\342\325 \322\330\331\342\330?   " },
    649         { 2, " (\260\332\342\330\322\335\320)" },
    650         { 3, " (\246\323\340\330)" },
    651         { 4, " (\263\333\336\321\320\333\354\335\320)" },
    652         { 5, "(\327\366\321\340\320\335\330\331 %s)" },
    653         { 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" },
    654         { 7, ", \337\320\337\332\320 \335\325 \337\366\324\332\333\356\347\325\335\320" },
    655         { 8, "... \337\336\350\343\332 ..." },
    656         { 9, "11 \332\263\346" },
    657         { 10, "22 \332\263\346" },
    658         { 11, "44 \332\263\346" },
    659         { 12, "48 \332\263\346" },
    660         { 13, "8 \332\263\346" },
    661         { 14, "<\327\320 \343\334\336\322\347\320\335\335\357\334>" },
    662         { 15, "\277\340\336 ScummVM" },
    663         { 16, "\265\334\343\333\357\342\336\340 AdLib" },
    664         { 17, "\265\334\343\333\357\342\336\340 AdLib:" },
    665         { 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" },
    666         { 19, "\264\336\324. \323\340\343..." },
    667         { 20, "\265\334\343\333\357\342\336\340 AdLib" },
    668         { 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)" },
    669         { 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" },
    670         { 24, "\277\340\330\327\335\320\347\325\335\320 \332\333\320\322\366\350\320 : %s" },
    671         { 25, "\277\340\330\327\335\320\347\325\335\320 \332\333\320\322\366\350\320 : \335\325\334\320\364" },
    672         { 26, "\260\343\324\366\336" },
    673         { 27, "\260\322\342\336\327\321\325\340\325\326\325\335\335\357:" },
    674         { 28, "\264\336\341\342\343\337\335\366 \324\322\330\326\332\330:" },
    675         { 29, "\277\340\336 \337~\340~\336\323\340\320\334\343..." },
    676         { 30, "\337\340\330\327\335\320\347\330\342\330 \332\333\320\322\366\350\366" },
    677         { 31, "\262\341\325" },
    678         { 32, "\317\341\332\340\320\322\366\341\342\354:" },
    679         { 33, "\265\334\343\333\357\342\336\340 AdLib" },
    680         { 34, "\262\366\324\334\366\335\320" },
    681         { 35, "\275\325 \334\336\326\343 \341\342\322\336\340\330\342\330 \344\320\331\333" },
    682         { 36, "\267\334\366\335\330\342\330 \336\337\346\366\367 \323\340\330" },
    683         { 37, "\267\334\366\335\330\342\330 \323\333\336\321\320\333\354\335\366 \336\337\346\366\367 ScummVM" },
    684         { 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" },
    685         { 39, "\262\330\321\340\320\342\330" },
    686         { 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" },
    687         { 41, "\276\347\330\341\342\330\342\330 \327\335\320\347\325\335\335\357" },
    688         { 42, "\267\320\332\340\330\342\330" },
    689         { 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" },
    690         { 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" },
    691         { 45, "\302\325\332\343\347\330\331 \322\366\324\325\336\340\325\326\330\334:" },
    692         { 46, "\272\343\340\341\336\340 \322\335\330\327" },
    693         { 47, "\272\343\340\341\336\340 \322\333\366\322\336" },
    694         { 48, "\272\343\340\341\336\340 \322\337\340\320\322\336" },
    695         { 49, "\272\343\340\341\336\340 \322\322\325\340\345" },
    696         { 50, "\265\334\343\333\357\342\336\340 DOSBox OPL" },
    697         { 51, "DVD" },
    698         { 52, "DVD \337\366\324\332\333\356\347\325\335\330\331 \343\341\337\366\350\335\336" },
    699         { 53, "DVD \335\325 \337\366\324\332\333\356\347\325\335\330\331" },
    700         { 54, "\264\320\342\320: " },
    701         { 55, "\262\366\324\333\320\324\347\330\332" },
    702         { 56, "\267\320 \343\334\336\322\347\320\335\335\357\334" },
    703         { 57, "\262\330\324\320\333\330\342\330" },
    704         { 58, "\267\320\321\336\340\336\335\330\342\330 \322\330\334\332\335\325\335\335\357" },
    705         { 59, "\261\325\327 \323\340\320\344\366\332\330" },
    706         { 60, "\267\335\320\331\324\325\335\336 %d \335\336\322\330\345 \366\323\336\340 ..." },
    707         { 61, "\267\335\320\331\324\325\335\336 %d \335\336\322\330\345 \366\323\336\340." },
    708         { 62, "\277\336\332\320\327\320\342\330 " },
    709         { 63, "\277\336\332\320\327\320\342\330 \332\333\320\322\366\320\342\343\340\343" },
    710         { 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?" },
    711         { 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?" },
    712         { 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." },
    713         { 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?" },
    714         { 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?" },
    715         { 69, "\262\330 \345\336\347\330\342\325 \322\330\331\342\330?" },
    716         { 70, "\277\336\324\322\366\331\335\330\331 \343\324\320\340" },
    717         { 71, "\262\335\330\327" },
    718         { 72, "\303\322\366\334\332\335\343\342\330 \340\325\326\330\334 Roland GS" },
    719         { 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'" },
    720         { 74, "English" },
    721         { 75, "\277\336\334\330\333\332\320 \327\320\337\343\341\332\343 \323\340\330:" },
    722         { 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" },
    723         { 77, "\264\336\324. \350\333\357\345:" },
    724         { 78, "\265\334\343\333\357\342\336\340 FM Towns" },
    725         { 79, "\310\322\330\324\332\330\331 \340\325\326\330\334" },
    726         { 80, "\262\332\333\356\347\325\335\366 \322 \321\366\333\324 \336\337\346\366\367:" },
    727         { 81, "\262\366\333\354\335\330\331 \336\323\333\357\324" },
    728         { 82, "\277\336\322\335\320 \335\320\327\322\320 \323\340\330" },
    729         { 83, "\277\336\322\335\336\325\332\340\320\335\335\330\331 \340\325\326\330\334" },
    730         { 84, "\277\340\330\341\332\336\340\325\335\335\357 GC \337\320\324\343:" },
    731         { 85, "\307\343\342\333\330\322\366\341\342\354 GC \337\320\324\343:" },
    732         { 86, "\263\340\344" },
    733         { 87, "\277\340\330\341\342\340\366\331 GM:" },
    734         { 88, "\274\336\322\320 \366\335\342\325\340\344\325\331\341\343:" },
    735         { 89, "\300\320\341\342\325\340\330\327\320\342\336\340 GUI:" },
    736         { 90, "\263\340\320" },
    737         { 91, "\275\325\334\320\364 \344\320\331\333\366\322 \323\340\330" },
    738         { 92, "Game Id \335\325 \337\366\324\342\340\330\334\343\364\342\354\341\357" },
    739         { 93, "\310\333\357\345 \324\336 \323\340\330: " },
    740         { 94, "\263\333\336\321\320\333\354\335\325 \334\325\335\356" },
    741         { 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" },
    742         { 96, "\262\322\325\340\345" },
    743         { 97, "\263\340\320\344\366\332\320" },
    744         { 98, "\263\340\320\344\366\347\335\330\331 \340\325\326\330\334:" },
    745         { 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)" },
    746         { 100, "Hercules \317\335\342\320\340\335\330\331" },
    747         { 101, "Hercules \267\325\333\325\335\330\331" },
    748         { 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" },
    749         { 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)" },
    750         { 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" },
    751         { 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" },
    752         { 106, "\263\336\340\330\327\336\335\342\320\333\354\335\330\331 underscan:" },
    753         { 107, "\265\334\343\333\357\342\336\340 IBM PCjr" },
    754         { 108, "ID:" },
    755         { 109, "\246\335\366\346\366\320\333\366\327\320\346\366\357 \334\325\340\325\326\366" },
    756         { 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:" },
    757         { 111, "\275\320\341\342\340\336\356\356 \325\334\343\333\357\342\336\340 MT-32" },
    758         { 112, "\275\320\333\320\350\342\336\322\343\356 \334\325\340\325\326\343" },
    759         { 113, "\262\322\366\324" },
    760         { 114, "\275\325\337\340\320\322\330\333\354\335\330\331 \350\333\357\345" },
    761         { 115, "\277\340\330\327\335\320\347\325\335\335\357 \332\333\320\322\366\350" },
    762         { 116, "\272\333\320\322\366\320\342\343\340\320" },
    763         { 117, "\302\320\321\333\330\346\357 \332\333\320\322\366\350:" },
    764         { 118, "\272\333\320\322\366\350\366" },
    765         { 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" },
    766         { 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" },
    767         { 121, "\274\336\322\320:" },
    768         { 122, "\262\333\366\322\336" },
    769         { 123, "\273\366\322\330\331 \332\333\366\332" },
    770         { 124, "\267\320\322\320\335\342\320\326\330\342\330" },
    771         { 125, "\267\320\322\320\335\342\320\326\330\342\330 \323\340\343:" },
    772         { 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" },
    773         { 127, "\265\334\343\333\357\342\336\340 MAME OPL:" },
    774         { 128, "MIDI" },
    775         { 129, "\277\336\341\330\333\325\335\335\357 MIDI:" },
    776         { 130, "MT-32" },
    777         { 131, "\277\340\330\341\342\340\366\331 MT-32:" },
    778         { 132, "\265\334\343\333\357\342\336\340 MT-32" },
    779         { 133, "\274\320\341\350\342\320\321 \323\336\333\336\322\335\336\323\336 \325\332\340\320\335\343:" },
    780         { 134, "\277\340\330\327\335\320\347\330\342\330" },
    781         { 135, "\264\336\324. \321\320\323\320\342\336..." },
    782         { 136, "\274\325\335\356" },
    783         { 137, "\300\366\327\335\325" },
    784         { 138, "\267\334\366\350\320\335\330\331 \340\325\326\330\334 AdLib/MIDI" },
    785         { 139, "\277\366\324\332\333\356\347\330\342\330 DVD" },
    786         { 140, "\277\366\324\332\333\356\347\330\342\330 SMB" },
    787         { 141, "\272\333\366\332 \334\330\350\332\336\356" },
    788         { 142, "\274\343\333\354\342\366\344\343\335\332\346\366\357" },
    789         { 143, "\274\343\327\330\347\335\330\331 \277\340\330\341\342\340\366\331:" },
    790         { 144, "\263\343\347\335\366\341\342\354 \334\343\327\330\332\330:" },
    791         { 145, "\262\330\334\332\335\343\342\330 \343\341\325" },
    792         { 146, "\275\320\327\322\320:" },
    793         { 147, "\274\325\340\325\326\320 \322\330\334\332\335\325\335\320" },
    794         { 148, "\274\325\340\325\326\320 \335\325 \335\320\333\320\323\336\324\326\325\335\320 (%d)" },
    795         { 149, "\274\325\340\325\326\320 \337\340\320\346\356\364" },
    796         { 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" },
    797         { 151, "\275\366\332\336\333\330" },
    798         { 152, "\275\366" },
    799         { 153, "\264\320\342\320 \335\325 \327\320\337\330\341\320\335\320" },
    800         { 154, "\261\325\327 \334\343\327\330\332\330" },
    801         { 155, "\307\320\341 \323\340\330 \335\325 \327\320\337\330\341\320\335\336" },
    802         { 156, "\307\320\341 \335\325 \327\320\337\330\341\320\335\330\331" },
    803         { 157, "\275\325 \327\320\324\320\335\330\331" },
    804         { 158, "\261\325\327 \327\321\366\333\354\350\325\335\335\357" },
    805         { 159, "OK" },
    806         { 160, "\262\330\345\366\324\335\320 \347\320\341\342\336\342\320:" },
    807         { 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" },
    808         { 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" },
    809         { 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" },
    810         { 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" },
    811         { 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" },
    812         { 166, "\265\334\343\333\357\342\336\340 PC \341\337\366\332\325\340\320" },
    813         { 167, "\277\320\340\336\333\354:" },
    814         { 168, "\310\333\357\345 \335\325 \364 \337\320\337\332\336\356" },
    815         { 169, "\310\333\357\345 \335\325 \364 \344\320\331\333\336\334" },
    816         { 170, "\310\333\357\345 \335\325 \327\335\320\331\324\325\335\330\331" },
    817         { 171, "\310\333\357\345\330" },
    818         { 172, "\277\320\343\327\320" },
    819         { 173, "\262\330\321\325\340\366\342\354 \323\340\343:" },
    820         { 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" },
    821         { 175, "\277\333\320\342\344\336\340\334\320:" },
    822         { 176, "\307\320\341 \323\340\330: " },
    823         { 177, "\261\343\324\354 \333\320\341\332\320, \322\330\321\325\340\366\342\354 \324\366\356" },
    824         { 178, "\310\333\357\345 \324\336 \337\333\320\323\366\335\366\322:" },
    825         { 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:" },
    826         { 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" },
    827         { 181, "\262\330\345\366\324" },
    828         { 182, "\262\330\345\366\324 \327 ScummVM" },
    829         { 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" },
    830         { 184, "\277\336\334\330\333\332\320 \347\330\342\320\335\335\357" },
    831         { 185, "\277\325\340\325\337\340\330\327\335\320\347\330\342\330 \332\333\320\322\366\350\366" },
    832         { 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" },
    833         { 187, "\300\325\326\330\334 \340\320\341\342\340\343\322\320\335\335\357:" },
    834         { 188, "\262\337\340\320\322\336" },
    835         { 189, "\277\340\320\322\330\331 \332\333\366\332" },
    836         { 190, "\277\340\320\322\330\331 \332\333\366\332" },
    837         { 191, "\277\336\322\325\340\335\343\342\330" },
    838         { 192, "\263\343\347\335\366\341\342\354 \325\344\325\332\342\366\322:" },
    839         { 193, "SMB" },
    840         { 194, "\267\320\337\330\341\320\342\330" },
    841         { 195, "\310\333\357\345 \327\321\325\340.: " },
    842         { 196, "\310\333\357\345 \324\333\357 \327\321\325\340\325\326\325\335\354: " },
    843         { 197, "\267\321\325\340\325\323\342\330 \323\340\343: " },
    844         { 198, "\277\336\350\343\332 \327\320\332\366\335\347\325\335\330\331!" },
    845         { 199, "\277\340\336\323\333\357\335\343\342\336 %d \337\320\337\336\332 ..." },
    846         { 200, "\263\336\333\336\322\335\325 \334\325\335\356 ScummVM" },
    847         { 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!" },
    848         { 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!" },
    849         { 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!" },
    850         { 204, "\277\336\350\343\332 \322 \341\337\330\341\332\343 \366\323\336\340" },
    851         { 205, "\277\336\350\343\332:" },
    852         { 206, "\262\330\321\325\340\366\342\354 SoundFont" },
    853         { 207, "\262\330\321\325\340\366\342\354 \342\325\334\343" },
    854         { 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" },
    855         { 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'" },
    856         { 210, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \324\333\357 \342\325\334 GUI" },
    857         { 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" },
    858         { 212, "\262\330\321\325\340\366\342\354 \337\320\337\332\343 \327 \337\333\320\323\330\335\320\334\330" },
    859         { 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" },
    860         { 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" },
    861         { 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" },
    862         { 216, "\307\343\342\333\330\322\366\341\342\354" },
    863         { 217, "\301\325\340\322\325\340:" },
    864         { 218, "\274\325\340\325\326\325\322\320 \337\320\337\332\320:" },
    865         { 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" },
    866         { 220, "\277\336\332\320\327\320\342\330 \332\333\320\322\366\320\342\343\340\343" },
    867         { 221, "\277\336\332\320\327\343\322\320\342\330 \332\343\340\341\336\340 \334\330\350\366" },
    868         { 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" },
    869         { 223, "\277\336\332\320\327\320\342\330/\301\345\336\322\320\342\330 \332\343\340\341\336\340" },
    870         { 224, "\277\340\336\337\343\341\342\330\342\330" },
    871         { 225, "\277\340\336\337\343\341\342\330\342\330 \340\357\324\336\332" },
    872         { 226, "\277\340\336\337\343\341\342\330\342\330 \342\325\332\341\342" },
    873         { 227, "\277\340\330\332\340\366\337\330\342\330 \324\336 \332\340\320\367\322" },
    874         { 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)" },
    875         { 229, "\267\322\343\332 \343\322\366\334/\322\330\334\332" },
    876         { 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" },
    877         { 231, "SoundFont:" },
    878         { 232, "\276\327\322" },
    879         { 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" },
    880         { 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" },
    881         { 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" },
    882         { 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" },
    883         { 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" },
    884         { 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" },
    885         { 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" },
    886         { 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" },
    887         { 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" },
    888         { 242, "\276\327\322\343\347\325\335\335\357" },
    889         { 243, "\263\343\347\335\366\341\342\354 \336\327\322\343\347\325\335\335\357:" },
    890         { 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)" },
    891         { 245, "\267\320\337\343\341\342\330\342\330 \322\330\321\340\320\335\343 \323\340\343" },
    892         { 246, "\301\342\320\335:" },
    893         { 247, "\301\343\321" },
    894         { 248, "\310\322\330\324\332\366\341\342\354 \341\343\321\342\330\342\340\366\322:" },
    895         { 249, "\301\343\321\342\330\342\340\330" },
    896         { 250, "\267\334\366\335\330\342\330 \323\325\340\336\357" },
    897         { 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" },
    898         { 252, "\302\325\332\341\342 \366 \336\327\322\343\347\325\335\335\357:" },
    899         { 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." },
    900         { 254, "\310\333\357\345 \324\336 \342\325\334:" },
    901         { 255, "\302\325\334\320:" },
    902         { 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." },
    903         { 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." },
    904         { 258, "\307\320\341: " },
    905         { 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" },
    906         { 260, "\267\334\366\351\325\335\335\357 \342\336\340\332\320\335\354 \337\336 \336\341\366 X" },
    907         { 261, "\267\334\366\351\325\335\335\357 \342\336\340\332\320\335\354 \337\336 \336\341\366 Y" },
    908         { 262, "\300\325\326\330\334 \342\320\347\337\320\324\343 \322\330\334\332\335\325\335\330\331." },
    909         { 263, "\300\325\326\330\334 \342\320\347\337\320\324\343 \343\322\366\334\332\335\325\335\330\331." },
    910         { 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)" },
    911         { 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" },
    912         { 266, "\275\325\322\366\324\336\334\336" },
    913         { 267, "\275\325\322\366\324\336\334\320 \337\336\334\330\333\332\320" },
    914         { 268, "\262\366\324\332\333\356\347\330\342\330 DVD" },
    915         { 269, "\262\366\324\332\333\356\347\342\330 SMB" },
    916         { 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)" },
    917         { 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" },
    918         { 272, "\267\321\325\340\325\326\325\335\335\357 \321\325\327 \366\334\325\335\366" },
    919         { 273, "\262\322\325\340\345" },
    920         { 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" },
    921         { 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" },
    922         { 276, "\272\336\340\330\341\342\343\322\320\347:" },
    923         { 277, "\262\330\332\336\340\330\341\342\336\322\343\356 \324\340\320\331\322\325\340 SDL " },
    924         { 278, "\262\325\340\342\330\332\320\333\354\335\330\331 underscan:" },
    925         { 279, "\262\366\324\325\336" },
    926         { 280, "\262\366\340\342\343\320\333\354\335\320 \332\333\320\322\366\320\342\343\340\320" },
    927         { 281, "\263\343\347\335\366\341\342\354" },
    928         { 282, "Windows MIDI" },
    929         { 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" },
    930         { 284, "\277\336\334\330\333\332\320 \327\320\337\330\341\343 \324\320\335\330\345" },
    931         { 285, "\302\320\332" },
    932         { 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." },
    933         { 287, "\267\336\335\320" },
    934         { 288, "\267\334\335\350. \334\320\350\342\320\321" },
    935         { 289, "\267\321\366\333. \334\320\350\342\320\321" },
    936         { 290, "\332\336\326\335\366 10 \345\322" },
    937         { 291, "\332\336\326\335\366 15 \345\322" },
    938         { 292, "\332\336\326\335\366 30 \345\322" },
    939         { 293, "\332\336\326\335\366 5 \345\322" },
    940         { 294, "\277\340\336 \337\340\336~\323~\340\320\334\343" },
    941         { 295, "~\264~\336\324. \323\340\343..." },
    942         { 296, "\262\366~\324~\334\366\335\320" },
    943         { 297, "~\267~\320\332\340\330\342\330" },
    944         { 298, "\300\325\324\320~\323~. \323\340\343..." },
    945         { 299, "~\264~\336\337\336\334\336\323\320" },
    946         { 300, "\272\325\340\343\322\320\335\335\357 \321\336\357\334\330 \322 Indy" },
    947         { 301, "~\272~\333\320\322\366\350\366" },
    948         { 302, "\273\366\322\336\340\343\332\330\331 \340\325\326\330\334" },
    949         { 303, "~\267~\320\322\320\335\342\320\326\330\342\330" },
    950         { 304, "~\267~\320\322\320\335..." },
    951         { 305, "~\275~\320\341\342" },
    952         { 306, "~O~K" },
    953         { 307, "~\276~\337\346\366\367" },
    954         { 308, "~\276~\337\346\366\367..." },
    955         { 309, "~\277~\336\337\325\340" },
    956         { 310, "~\262~\330\345\366\324" },
    957         { 311, "~\262~\330\324\320\333\330\342\330 \323\340\343" },
    958         { 312, "\277\340\336\324\336\322~\326~\330\342\330" },
    959         { 313, "~\277~\336\322\325\340\335\343\342\330\341\354 \322 \323\336\333\336\322\335\325 \334\325\335\356" },
    960         { 314, "~\267~\320\337\330\341\320\342\330" },
    961         { 315, "\267~\320~\337\343\341\332" },
    962         { 316, "\277\325\340\325\345\336\324\330 \320\332\342\330\322\336\322\320\335\366" },
    963         { 317, "\265\344\325\332\342\330 \322\336\324\330 \322\332\333\356\347\325\335\366" },
    964         { 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" },
    965         { -1, NULL }
    966 };
    967 
    968 static const PoMessageEntry _translation_ru_RU[] = {
    969         { 0, "Project-Id-Version: ScummVM VERSION\nReport-Msgid-Bugs-To: scummvm-devel@li\nPOT-Creation-Date: 2010-08-13 12:49+0300\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" },
    970         { 1, "   \262\353 \343\322\325\340\325\335\353, \347\342\336 \345\336\342\330\342\325 \322\353\331\342\330?   " },
    971         { 2, " (\260\332\342\330\322\335\320\357)" },
    972         { 3, " (\270\323\340\353)" },
    973         { 4, " (\263\333\336\321\320\333\354\335\320\357)" },
    974         { 5, "(\341\336\321\340\320\335 %s)" },
    975         { 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" },
    976         { 7, ", \337\320\337\332\320 \335\325 \337\336\324\332\333\356\347\325\335\320" },
    977         { 8, "... \330\351\343 ..." },
    978         { 9, "11 \332\263\346" },
    979         { 10, "22 \332\263\346" },
    980         { 11, "44 \332\263\346" },
    981         { 12, "48 \332\263\346" },
    982         { 13, "8 \332\263\346" },
    983         { 14, "<\337\336 \343\334\336\333\347\320\335\330\356>" },
    984         { 15, "\276 \337\340\336\323\340\320\334\334\325 ScummVM" },
    985         { 16, "\315\334\343\333\357\342\336\340 AdLib" },
    986         { 17, "\315\334\343\333\357\342\336\340 AdLib:" },
    987         { 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" },
    988         { 19, "\275\336\322\320\357 \330\323\340\320..." },
    989         { 20, "\315\334\343\333\357\342\336\340 \327\322\343\332\320 Amiga" },
    990         { 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)" },
    991         { 22, "\315\334\343\333\357\342\336\340 Apple II GS (\336\342\341\343\342\341\342\322\343\325\342)" },
    992         { 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" },
    993         { 24, "\275\320\327\335\320\347\325\335\335\320\357 \332\333\320\322\330\350\320 : %s" },
    994         { 25, "\275\320\327\335\320\347\325\335\335\320\357 \332\333\320\322\330\350\320 : \335\325\342" },
    995         { 26, "\260\343\324\330\336" },
    996         { 27, "\260\322\342\336\341\336\345\340\320\335\325\335\330\325:" },
    997         { 28, "\264\336\341\342\343\337\335\353\325 \324\322\330\326\332\330:" },
    998         { 29, "\276 \337~\340~\336\323\340\320\334\334\325..." },
    999         { 30, "\275\320\327\335\320\347\330\342\354 \332\333\320\322\330\350\330" },
    1000         { 31, "\262\341\361" },
    1001         { 32, "\317\340\332\336\341\342\354:" },
    1002         { 33, "\315\334\343\333\357\342\336\340 \327\322\343\332\320 C64" },
    1003         { 34, "\276\342\334\325\335\320" },
    1004         { 35, "\275\325 \334\336\323\343 \341\336\327\324\320\342\354 \344\320\331\333" },
    1005         { 36, "\270\327\334\325\335\330\342\354 \336\337\346\330\330 \330\323\340\353" },
    1006         { 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" },
    1007         { 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" },
    1008         { 39, "\262\353\321\340\320\342\354" },
    1009         { 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" },
    1010         { 41, "\276\347\330\341\342\330\342\354 \327\335\320\347\325\335\330\325" },
    1011         { 42, "\267\320\332\340\353\342\354" },
    1012         { 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" },
    1013         { 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" },
    1014         { 45, "\302\325\332\343\351\330\331 \322\330\324\325\336\340\325\326\330\334:" },
    1015         { 46, "\272\343\340\341\336\340 \322\335\330\327" },
    1016         { 47, "\272\343\340\341\336\340 \322\333\325\322\336" },
    1017         { 48, "\272\343\340\341\336\340 \322\337\340\320\322\336" },
    1018         { 49, "\272\343\340\341\336\340 \322\322\325\340\345" },
    1019         { 50, "\315\334\343\333\357\342\336\340 DOSBox OPL" },
    1020         { 51, "DVD" },
    1021         { 52, "DVD \337\336\324\332\333\356\347\325\335 \343\341\337\325\350\335\336" },
    1022         { 53, "DVD \335\325 \337\336\324\332\333\356\347\325\335" },
    1023         { 54, "\264\320\342\320: " },
    1024         { 55, "\276\342\333\320\324\347\330\332" },
    1025         { 56, "\277\336 \343\334\336\333\347\320\335\330\356" },
    1026         { 57, "\303\324\320\333\330\342\354" },
    1027         { 58, "\267\320\337\340\325\342\330\342\354 \322\353\332\333\356\347\325\335\330\325" },
    1028         { 59, "\261\325\327 \323\340\320\344\330\332\330" },
    1029         { 60, "\275\320\331\324\325\335\336 %d \335\336\322\353\345 \330\323\340 ..." },
    1030         { 61, "\275\320\331\324\325\335\336 %d \335\336\322\353\345 \330\323\340." },
    1031         { 62, "\277\336\332\320\327\320\342\354 " },
    1032         { 63, "\277\336\332\320\327\320\342\354 \332\333\320\322\330\320\342\343\340\343" },
    1033         { 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?" },
    1034         { 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?" },
    1035         { 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." },
    1036         { 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?" },
    1037         { 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?" },
    1038         { 69, "\262\353 \345\336\342\330\342\325 \322\353\331\342\330?" },
    1039         { 70, "\264\322\336\331\335\336\331 \343\324\320\340" },
    1040         { 71, "\262\335\330\327" },
    1041         { 72, "\262\332\333\356\347\330\342\354 \340\325\326\330\334 Roland GS" },
    1042         { 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'" },
    1043         { 74, "English" },
    1044         { 75, "\276\350\330\321\332\320 \327\320\337\343\341\332\320 \330\323\340\353:" },
    1045         { 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" },
    1046         { 77, "\264\336\337. \337\343\342\354:" },
    1047         { 78, "\315\334\343\333\357\342\336\340 FM Towns" },
    1048         { 79, "\261\353\341\342\340\353\331 \340\325\326\330\334" },
    1049         { 80, "\262\332\333\356\347\325\335\335\353\325 \322 \321\330\333\324 \336\337\346\330\330:" },
    1050         { 81, "\301\322\336\321\336\324\335\353\331 \336\321\327\336\340" },
    1051         { 82, "\277\336\333\335\336\325 \335\320\327\322\320\335\330\325 \330\323\340\353" },
    1052         { 83, "\277\336\333\335\336\355\332\340\320\335\335\353\331 \340\325\326\330\334" },
    1053         { 84, "\303\341\332\336\340\325\335\330\325 GC \337\320\324\320:" },
    1054         { 85, "\307\343\322\341\342\322\330\342\325\333\354\335\336\341\342\354 GC \337\320\324\320:" },
    1055         { 86, "\263\340\344" },
    1056         { 87, "\303\341\342\340\336\331\341\342\322\336 GM:" },
    1057         { 88, "\317\327\353\332 GUI:" },
    1058         { 89, "\300\330\341\336\322\320\333\332\320 GUI:" },
    1059         { 90, "\270\323\340\320" },
    1060         { 91, "\275\325\342 \344\320\331\333\336\322 \330\323\340\353" },
    1061         { 92, "Game Id \335\325 \337\336\324\324\325\340\326\330\322\320\325\342\341\357" },
    1062         { 93, "\263\324\325 \330\323\340\320: " },
    1063         { 94, "\263\333\336\321\320\333\354\335\336\325 \334\325\335\356" },
    1064         { 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" },
    1065         { 96, "\262\322\325\340\345" },
    1066         { 97, "\263\340\320\344\330\332\320" },
    1067         { 98, "\263\340\320\344. \340\325\326\330\334:" },
    1068         { 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)" },
    1069         { 100, "Hercules \317\335\342\320\340\335\353\331" },
    1070         { 101, "Hercules \267\325\333\325\335\353\331" },
    1071         { 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" },
    1072         { 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)" },
    1073         { 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" },
    1074         { 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" },
    1075         { 106, "\263\336\340\330\327\336\335\342\320\333\354\335\353\331 underscan:" },
    1076         { 107, "\315\334\343\333\357\342\336\340 IBM PCjr" },
    1077         { 108, "ID:" },
    1078         { 109, "\270\335\330\346\330\320\333\330\327\320\346\330\357 \341\325\342\330" },
    1079         { 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:" },
    1080         { 111, "\275\320\341\342\340\320\330\322\320\356 \355\334\343\333\357\342\336\340 MT-32" },
    1081         { 112, "\275\320\341\342\340\320\330\322\320\356 \341\325\342\354" },
    1082         { 113, "\262\322\336\324" },
    1083         { 114, "\275\325\322\325\340\335\353\331 \337\343\342\354" },
    1084         { 115, "\275\320\327\335\320\347\325\335\330\325 \332\333\320\322\330\350" },
    1085         { 116, "\272\333\320\322\330\320\342\343\340\320" },
    1086         { 117, "\302\320\321\333\330\346\320 \332\333\320\322\330\350:" },
    1087         { 118, "\272\333\320\322\330\350\330" },
    1088         { 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" },
    1089         { 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" },
    1090         { 121, "\317\327\353\332:" },
    1091         { 122, "\262\333\325\322\336" },
    1092         { 123, "\273\325\322\353\331 \351\325\333\347\336\332" },
    1093         { 124, "\267\320\323\340\343\327\330\342\354" },
    1094         { 125, "\267\320\323\340\343\327\330\342\354 \330\323\340\343:" },
    1095         { 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" },
    1096         { 127, "\315\334\343\333\357\342\336\340 MAME OPL" },
    1097         { 128, "MIDI" },
    1098         { 129, "\303\341\330\333\325\335\330\325 MIDI:" },
    1099         { 130, "MT-32" },
    1100         { 131, "\303\341\342\340. MT-32:" },
    1101         { 132, "\315\334\343\333\357\342\336\340 MT-32" },
    1102         { 133, "\274\320\341\350\342\320\321 \323\333\320\322\335\336\323\336 \355\332\340\320\335\320:" },
    1103         { 134, "\275\320\327\335\320\347\330\342\354" },
    1104         { 135, "\274\335\336\323\336 \330\323\340..." },
    1105         { 136, "\274\325\335\356" },
    1106         { 137, "\300\320\327\335\336\325" },
    1107         { 138, "\301\334\325\350\320\335\335\353\331 \340\325\326\330\334 AdLib/MIDI" },
    1108         { 139, "\277\336\324\332\333\356\347\330\342\354 DVD" },
    1109         { 140, "\277\336\324\332\333\356\347\330\342\354 SMB" },
    1110         { 141, "\272\333\330\332 \334\353\350\354\356" },
    1111         { 142, "\274\343\333\354\342\330\344\343\335\332\346\330\357" },
    1112         { 143, "\267\322\343\332\336\322\336\325 \343\341\342-\322\336:" },
    1113         { 144, "\263\340\336\334\332. \334\343\327\353\332\330:" },
    1114         { 145, "\262\353\332\333. \322\341\361" },
    1115         { 146, "\275\320\327\322:" },
    1116         { 147, "\301\325\342\354 \322\353\332\333\356\347\325\335\320" },
    1117         { 148, "\301\325\342\354 \335\325 \335\320\341\342\340\336\325\335\320 (%d)" },
    1118         { 149, "\301\325\342\354 \340\320\321\336\342\320\325\342" },
    1119         { 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" },
    1120         { 151, "\275\330\332\336\323\324\320" },
    1121         { 152, "\275\325\342" },
    1122         { 153, "\264\320\342\320 \335\325 \327\320\337\330\341\320\335\320" },
    1123         { 154, "\261\325\327 \334\343\327\353\332\330" },
    1124         { 155, "\262\340\325\334\357 \330\323\340\353 \335\325 \327\320\337\330\341\320\335\336" },
    1125         { 156, "\262\340\325\334\357 \335\325 \327\320\337\330\341\320\335\336" },
    1126         { 157, "\275\325 \327\320\324\320\335" },
    1127         { 158, "\261\325\327 \343\322\325\333\330\347\325\335\330\357" },
    1128         { 159, "OK" },
    1129         { 160, "\307\320\341\342\336\342\320 \327\322\343\332\320:" },
    1130         { 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" },
    1131         { 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" },
    1132         { 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" },
    1133         { 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" },
    1134         { 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" },
    1135         { 166, "\315\334\343\333\357\342\336\340 PC \341\337\330\332\325\340\320" },
    1136         { 167, "\277\320\340\336\333\354:" },
    1137         { 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" },
    1138         { 169, "\277\343\342\354 \335\325 \357\322\333\357\325\342\341\357 \344\320\331\333\336\334" },
    1139         { 170, "\277\343\342\354 \335\325 \335\320\331\324\325\335" },
    1140         { 171, "\277\343\342\330" },
    1141         { 172, "\277\320\343\327\320" },
    1142         { 173, "\262\353\321\325\340\330\342\325 \330\323\340\343:" },
    1143         { 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" },
    1144         { 175, "\277\333\320\342\344\336\340\334\320:" },
    1145         { 176, "\262\340\325\334\357 \330\323\340\353: " },
    1146         { 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" },
    1147         { 178, "\277\343\342\354 \332 \337\333\320\323\330\335\320\334:" },
    1148         { 179, "\267\322\343\332\336\322\336\325 \343\341\342-\322\336:" },
    1149         { 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" },
    1150         { 181, "\262\353\345\336\324" },
    1151         { 182, "\262\353\345\336\324 \330\327 ScummVM" },
    1152         { 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" },
    1153         { 184, "\276\350\330\321\332\320 \347\342\325\335\330\357" },
    1154         { 185, "\277\325\340\325\335\320\327\335\320\347\330\342\354 \332\333\320\322\330\350\330" },
    1155         { 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" },
    1156         { 187, "\300\325\326\330\334 \340\320\341\342\340\320:" },
    1157         { 188, "\262\337\340\320\322\336" },
    1158         { 189, "\277\340\320\322\353\331 \351\325\333\347\336\332" },
    1159         { 190, "\277\340\320\322\353\331 \351\325\333\347\336\332" },
    1160         { 191, "\277\336\322\325\340\335\343\342\354" },
    1161         { 192, "\263\340\336\334\332. SFX:" },
    1162         { 193, "SMB" },
    1163         { 194, "\267\320\337\330\341\320\342\354" },
    1164         { 195, "\277\343\342\354 \341\336\345\340: " },
    1165         { 196, "\301\336\345\340\320\335\325\335\330\357 \330\323\340:" },
    1166         { 197, "\301\336\345\340\320\335\330\342\354 \330\323\340\343: " },
    1167         { 198, "\277\336\330\341\332 \327\320\332\336\335\347\325\335!" },
    1168         { 199, "\277\340\336\341\334\336\342\340\325\335\336 %d \324\330\340\325\332\342\336\340\330\331 ..." },
    1169         { 200, "\263\333\320\322\335\336\325 \334\325\335\356 ScummVM" },
    1170         { 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!" },
    1171         { 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!" },
    1172         { 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!" },
    1173         { 204, "\277\336\330\341\332 \322 \341\337\330\341\332\325 \330\323\340" },
    1174         { 205, "\277\336\330\341\332:" },
    1175         { 206, "\262\353\321\325\340\330\342\325 SoundFont" },
    1176         { 207, "\262\353\321\325\340\330\342\325 \342\325\334\343" },
    1177         { 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" },
    1178         { 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'" },
    1179         { 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" },
    1180         { 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" },
    1181         { 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" },
    1182         { 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" },
    1183         { 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" },
    1184         { 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" },
    1185         { 216, "\307\343\322\341\342\322\330\342\325\333\354\335\336\341\342\354" },
    1186         { 217, "\301\325\340\322\325\340:" },
    1187         { 218, "\301\325\342\325\322\320\357 \337\320\337\332\320:" },
    1188         { 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" },
    1189         { 220, "\277\336\332\320\327\320\342\354 \332\333\320\322\330\320\342\343\340\343" },
    1190         { 221, "\277\336\332\320\327\353\322\320\342\354 \332\343\340\341\336\340 \334\353\350\330" },
    1191         { 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" },
    1192         { 223, "\277\336\332\320\327\320\342\354/\303\321\340\320\342\354 \332\343\340\341\336\340" },
    1193         { 224, "\277\340\336\337\343\341\342\330\342\354" },
    1194         { 225, "\277\340\336\337\343\341\342\330\342\354 \341\342\340\336\332\343" },
    1195         { 226, "\277\340\336\337\343\341\342\330\342\354 \342\325\332\341\342" },
    1196         { 227, "\277\340\330\332\340\325\337\330\342\354 \332 \323\340\320\335\330\346\320\334" },
    1197         { 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)" },
    1198         { 229, "\267\322\343\332 \322\332\333/\322\353\332\333" },
    1199         { 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" },
    1200         { 231, "SoundFont:" },
    1201         { 232, "\276\327\322" },
    1202         { 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" },
    1203         { 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" },
    1204         { 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" },
    1205         { 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" },
    1206         { 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" },
    1207         { 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" },
    1208         { 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" },
    1209         { 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" },
    1210         { 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" },
    1211         { 242, "\276\327\322\343\347\332\320" },
    1212         { 243, "\263\340\336\334\332. \336\327\322\343\347\332\330:" },
    1213         { 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)" },
    1214         { 245, "\267\320\337\343\341\342\330\342\354 \322\353\321\340\320\335\335\343\356 \330\323\340\343" },
    1215         { 246, "\301\336\341\342\336\357\335\330\325:" },
    1216         { 247, "\301\343\321" },
    1217         { 248, "\301\332\336\340\336\341\342\354 \342\330\342\340\336\322:" },
    1218         { 249, "\301\343\321\342\330\342\340\353" },
    1219         { 250, "\301\334\325\335\330\342\354 \323\325\340\336\357" },
    1220         { 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" },
    1221         { 252, "\302\325\332\341\342 \330 \336\327\322\343\347\332\320:" },
    1222         { 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." },
    1223         { 254, "\263\324\325 \342\325\334\353:" },
    1224         { 255, "\302\325\334\320:" },
    1225         { 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." },
    1226         { 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." },
    1227         { 258, "\262\340\325\334\357: " },
    1228         { 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" },
    1229         { 260, "\301\334\325\351\325\335\330\325 \332\320\341\320\335\330\331 \337\336 \336\341\330 X" },
    1230         { 261, "\301\334\325\351\325\335\330\325 \332\320\341\320\335\330\331 \337\336 \336\341\330 Y" },
    1231         { 262, "\300\325\326\330\334 \342\320\347\337\320\324\320 \322\353\332\333\356\347\325\335." },
    1232         { 263, "\300\325\326\330\334 \342\320\347\337\320\324\320 \322\332\333\356\347\325\335." },
    1233         { 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)" },
    1234         { 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" },
    1235         { 266, "\275\325\330\327\322\325\341\342\335\336" },
    1236         { 267, "\275\325\330\327\322\325\341\342\335\320\357 \336\350\330\321\332\320" },
    1237         { 268, "\276\342\332\333\356\347\330\342\354 DVD" },
    1238         { 269, "\276\342\332\333\356\347\342\354 SMB" },
    1239         { 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)" },
    1240         { 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" },
    1241         { 272, "\301\336\345\340\320\335\325\335\330\325 \321\325\327 \330\334\325\335\330" },
    1242         { 273, "\262\322\325\340\345" },
    1243         { 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" },
    1244         { 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" },
    1245         { 276, "\277\336\333\354\327\336\322\320\342\325\333\354:" },
    1246         { 277, "\270\341\337\336\333\354\327\343\356 \324\340\320\331\322\325\340 SDL " },
    1247         { 278, "\262\325\340\342\330\332\320\333\354\335\353\331 underscan:" },
    1248         { 279, "\262\330\324\325\336" },
    1249         { 280, "\262\330\340\342\343\320\333\354\335\320\357 \332\333\320\322\330\320\342\343\340\320" },
    1250         { 281, "\263\340\336\334\332\336\341\342\354" },
    1251         { 282, "Windows MIDI" },
    1252         { 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" },
    1253         { 284, "\276\350\330\321\332\320 \327\320\337\330\341\330 \324\320\335\335\353\345" },
    1254         { 285, "\264\320" },
    1255         { 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." },
    1256         { 287, "\267\336\335\320" },
    1257         { 288, "\303\334\325\335\354\350. \334\320\341\350\342\320\321" },
    1258         { 289, "\303\322\325\333. \334\320\341\350\342\320\321" },
    1259         { 290, "\332\320\326\324\353\325 10 \334\330\335\343\342" },
    1260         { 291, "\332\320\326\324\353\325 15 \334\330\335\343\342" },
    1261         { 292, "\332\320\326\324\353\325 30 \334\330\335\343\342" },
    1262         { 293, "\332\320\326\324\353\325 5 \334\330\335\343\342" },
    1263         { 294, "\276 \337\340\336~\323~\340\320\334\334\325" },
    1264         { 295, "~\264~\336\321. \330\323\340\343..." },
    1265         { 296, "\276~\342~\334\325\335\320" },
    1266         { 297, "~\267~\320\332\340\353\342\354" },
    1267         { 298, "\276~\337~\346\330\330 \330\323\340\353..." },
    1268         { 299, "~\277~\336\334\336\351\354" },
    1269         { 300, "\303\337\340\320\322\333\325\335\330\325 \321\336\357\334\330 \322 Indy" },
    1270         { 301, "~\272~\333\320\322\330\350\330" },
    1271         { 302, "\273\325\322\336\340\343\332\330\331 \340\325\326\330\334" },
    1272         { 303, "~\267~\320\323\340\343\327\330\342\354" },
    1273         { 304, "~\267~\320\323\340\343\327\330\342\354..." },
    1274         { 305, "~\301~\333\325\324" },
    1275         { 306, "~O~K" },
    1276         { 307, "~\276~\337\346\330\330" },
    1277         { 308, "~\276~\337\346\330\330..." },
    1278         { 309, "~\277~\340\325\324" },
    1279         { 310, "~\262~\353\345\336\324" },
    1280         { 311, "~\303~\324\320\333\330\342\354 \330\323\340\343" },
    1281         { 312, "\277\340\336\324\336\333~\326~\330\342\354" },
    1282         { 313, "~\262~\353\331\342\330 \322 \323\333\320\322\335\336\325 \334\325\335\356" },
    1283         { 314, "~\267~\320\337\330\341\320\342\354" },
    1284         { 315, "\277~\343~\341\332" },
    1285         { 316, "\277\325\340\325\345\336\324\353 \320\332\342\330\322\330\340\336\322\320\335\353" },
    1286         { 317, "\315\344\344\325\332\342\353 \322\336\324\353 \322\332\333\356\347\325\335\353" },
    1287         { 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" },
    1288         { -1, NULL }
    1289 };
    1290 
    1291 static const PoMessageEntry _translation_hu_HU[] = {
    1292         { 0, "Project-Id-Version: ScummVM VERSION\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-11 22:12+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" },
    1293         { 14, "<alap\351rtelmezett>" },
    1294         { 16, "AdLib vezet :" },
    1295         { 17, "AdLib vezet :" },
    1296         { 20, "AdLib vezet :" },
    1297         { 23, "Aspect adag korrekci\363" },
    1298         { 26, "Hang" },
    1299         { 27, "Automatikus ment\351s:" },
    1300         { 30, "Kulcsok" },
    1301         { 33, "AdLib vezet :" },
    1302         { 45, "Renderel\351si m\363d:" },
    1303         { 56, "<alap\351rtelmezett>" },
    1304         { 72, "K\351pess\351 Roland GS Mode" },
    1305         { 77, "Extra \332tvonal:" },
    1306         { 79, "Grafikus m\363d:" },
    1307         { 83, "Teljes k\351perny s m\363d:" },
    1308         { 89, "Lek\351pez eszk\366z GUI:" },
    1309         { 93, "Extra \332tvonal:" },
    1310         { 97, "Grafik\341val" },
    1311         { 98, "Grafikus m\363d:" },
    1312         { 118, "Kulcsok" },
    1313         { 127, "AdLib vezet :" },
    1314         { 129, "MIDI nyeres\351g:" },
    1315         { 131, "Zene mennyis\351g:" },
    1316         { 138, "Vegyes AdLib/MIDI m\363d" },
    1317         { 143, "Zene mennyis\351g:" },
    1318         { 144, "Zene mennyis\351g:" },
    1319         { 145, "Muta \326sszes" },
    1320         { 151, "Soha" },
    1321         { 152, "Semmi" },
    1322         { 157, "Semmi" },
    1323         { 159, "Igen" },
    1324         { 160, "Kimeneti teljes\355tm\351ny:" },
    1325         { 171, "\326sv\351nyek" },
    1326         { 172, "\326sv\351nyek" },
    1327         { 187, "Renderel\351si m\363d:" },
    1328         { 192, "SFX mennyis\351ge" },
    1329         { 195, "Extra \332tvonal:" },
    1330         { 217, "Soha" },
    1331         { 242, "Csak a besz\351d" },
    1332         { 243, "Besz\351d mennyis\351g:" },
    1333         { 248, "Felirat sebess\351g:" },
    1334         { 249, "Csak feliratok" },
    1335         { 252, "Sz\366veg \351s besz\351d:" },
    1336         { 255, "T\351ma:" },
    1337         { 258, "T\351ma:" },
    1338         { 264, "Igaz Roland MT-32 (megb\351n\355t GM emul\341ci\363)" },
    1339         { 277, "Zenei vezet :" },
    1340         { 281, "Volumene" },
    1341         { 287, "Semmi" },
    1342         { 290, "10 percenk\351nt" },
    1343         { 291, "15 percenk\351nt" },
    1344         { 292, "30 percenk\351nt" },
    1345         { 293, "5 percenk\351nt" },
    1346         { 301, "Kulcsok" },
    1347         { 302, "Renderel\351si m\363d:" },
    1348         { 306, "Igen" },
    1349         { -1, NULL }
    1350 };
    1351 
    1352 static const PoMessageEntry _translation_es_ES[] = {
    1353         { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-11 22:12+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" },
    1354         { 1, "\277Seguro que quieres salir?" },
    1355         { 2, "(Activa)" },
    1356         { 3, "(Juego)" },
    1357         { 4, "(General)" },
    1358         { 5, "(compilado el %s)" },
    1359         { 6, ", error al montar el disco compartido" },
    1360         { 7, ", disco compartido no montado" },
    1361         { 8, "... progreso..." },
    1362         { 9, "11kHz" },
    1363         { 10, "22 kHz" },
    1364         { 11, "44 kHz" },
    1365         { 12, "48 kHz" },
    1366         { 13, "8 kHz" },
    1367         { 14, "<por defecto>" },
    1368         { 15, "Acerca de ScummVM" },
    1369         { 16, "Emulador de AdLib" },
    1370         { 17, "Emulador de AdLib:" },
    1371         { 18, "AdLib se usa para la m\372sica en muchos juegos" },
    1372         { 19, "A\361adir juego..." },
    1373         { 20, "Emulador de AdLib" },
    1374         { 21, "Antialiasing (16bpp)" },
    1375         { 23, "Correcci\363n de aspecto" },
    1376         { 24, "Tecla asociada: %s" },
    1377         { 25, "Tecla asociada: ninguna" },
    1378         { 26, "Sonido" },
    1379         { 27, "Autoguardado:" },
    1380         { 28, "Motores disponibles:" },
    1381         { 29, "Acerca ~d~e" },
    1382         { 30, "Asignar teclas" },
    1383         { 31, "Ambos" },
    1384         { 32, "Brillo:" },
    1385         { 33, "Emulador de AdLib" },
    1386         { 34, "Cancelar" },
    1387         { 35, "Imposible crear el archivo" },
    1388         { 36, "Cambiar opciones de juego" },
    1389         { 37, "Cambiar opciones generales de ScummVM" },
    1390         { 38, "Marcar si se quiere usar un dispositivo de sonido real conectado al ordenador y compatible con Roland" },
    1391         { 39, "Elegir" },
    1392         { 40, "Elige la acci\363n a asociar" },
    1393         { 41, "Eliminar valor" },
    1394         { 42, "Cerrar" },
    1395         { 43, "Corregir relaci\363n de aspecto en juegos 320x200" },
    1396         { 44, "No se ha podido encontrar ning\372n motor capaz de ejecutar el juego" },
    1397         { 45, "Modo de v\355deo actual:" },
    1398         { 46, "Abajo" },
    1399         { 47, "Izquierda" },
    1400         { 48, "Derecha" },
    1401         { 49, "Arriba" },
    1402         { 50, "Emulador de DOSBox OPL" },
    1403         { 51, "DVD" },
    1404         { 52, "DVD montado con \351xito" },
    1405         { 53, "DVD no montado" },
    1406         { 54, "Fecha:" },
    1407         { 55, "Debugger" },
    1408         { 56, "Por defecto" },
    1409         { 57, "Borrar" },
    1410         { 58, "Desactivar apagado" },
    1411         { 59, "GFX desactivados" },
    1412         { 60, "Se han encontrado %d juegos nuevos..." },
    1413         { 61, "Se han encontrado %d juegos nuevos." },
    1414         { 62, "Pantalla" },
    1415         { 63, "Mostrar el teclado" },
    1416         { 64, "\277Seguro que quieres borrar esta partida?" },
    1417         { 65, "\277Seguro que quieres eliminar la configuraci\363n de este juego?" },
    1418         { 66, "\277Seguro que quieres ejecutar la detecci\363n masiva? Puede que se a\361ada un gran n\372mero de juegos." },
    1419         { 67, "\277Quieres cargar o guardar el juego?" },
    1420         { 68, "\277Quieres realizar una b\372squeda autom\341tica?" },
    1421         { 69, "\277Quieres salir?" },
    1422         { 70, "Doble golpe" },
    1423         { 71, "Abajo" },
    1424         { 72, "Activar modo Roland GS" },
    1425         { 73, "El motor no soporta el nivel de debug '%s'" },
    1426         { 74, "Ingl\351s" },
    1427         { 75, "Error al ejecutar el juego:" },
    1428         { 76, "Error al montar el DVD" },
    1429         { 77, "Adicional:" },
    1430         { 78, "Emulador de FM Towns" },
    1431         { 79, "Modo r\341pido" },
    1432         { 80, "Caracter\355sticas compiladas:" },
    1433         { 81, "Vista libre" },
    1434         { 82, "T\355tulo completo del juego" },
    1435         { 83, "Pantalla completa" },
    1436         { 84, "Aceleraci\363n del pad GC:" },
    1437         { 85, "Sensibilidad del pad GC:" },
    1438         { 86, "GFX" },
    1439         { 87, "Dispositivo GM:" },
    1440         { 88, "Idioma de la interfaz:" },
    1441         { 89, "Render de la interfaz" },
    1442         { 90, "Juego" },
    1443         { 91, "No se han encontrado datos de juego" },
    1444         { 92, "ID del juego no soportada" },
    1445         { 93, "Juego:" },
    1446         { 94, "Men\372 general" },
    1447         { 95, "Ir al directorio anterior" },
    1448         { 96, "Arriba" },
    1449         { 97, "Gr\341ficos" },
    1450         { 98, "Modo gr\341fico:" },
    1451         { 99, "Escalado por hardware (r\341pido, pero de baja calidad)" },
    1452         { 100, "Hercules \341mbar" },
    1453         { 101, "Hercules verde" },
    1454         { 102, "Ocultar barra de tareas" },
    1455         { 103, "Sonido de alta calidad (m\341s lento) (reinicio)" },
    1456         { 104, "Los valores m\341s altos ofrecen mayor calidad, pero puede que tu tarjeta de sonido no sea compatible" },
    1457         { 105, "Mant\351n pulsado May\372s para a\361adir varios" },
    1458         { 106, "Underscan horizontal" },
    1459         { 107, "Emulador de IBM PCjr" },
    1460         { 108, "ID:" },
    1461         { 109, "Inicializar red" },
    1462         { 110, "Escalado de la pantalla inicial superior:" },
    1463         { 111, "Iniciando emulador de MT-32" },
    1464         { 112, "Inicializando red" },
    1465         { 113, "Entrada" },
    1466         { 114, "Ruta no v\341lida" },
    1467         { 115, "Asignaci\363n de teclas" },
    1468         { 116, "Teclado" },
    1469         { 117, "Asignaci\363n de teclas:" },
    1470         { 118, "Teclas" },
    1471         { 119, "Idioma de la interfaz de ScummVM" },
    1472         { 120, "Idioma del juego. No sirve para pasar al ingl\351s la versi\363n espa\361ola de un juego" },
    1473         { 121, "Idioma:" },
    1474         { 122, "Izquierda" },
    1475         { 123, "Clic izquierdo" },
    1476         { 124, "Cargar" },
    1477         { 125, "Cargar juego:" },
    1478         { 126, "Cargar partida del juego seleccionado" },
    1479         { 127, "Emulador de MAME OPL" },
    1480         { 128, "MIDI" },
    1481         { 129, "Ganancia MIDI:" },
    1482         { 130, "MT-32" },
    1483         { 131, "Dispositivo MT-32:" },
    1484         { 132, "Emulador de MT-32" },
    1485         { 133, "Escalado de la pantalla principal:" },
    1486         { 134, "Asignar" },
    1487         { 135, "A\361adir varios..." },
    1488         { 136, "Men\372" },
    1489         { 137, "Otros" },
    1490         { 138, "Modo AdLib/MIDI" },
    1491         { 139, "Montar DVD" },
    1492         { 140, "Montar SMB" },
    1493         { 141, "Clic de rat\363n" },
    1494         { 142, "Multifunci\363n" },
    1495         { 143, "Dispositivo de m\372sica:" },
    1496         { 144, "Volumen de la m\372sica:" },
    1497         { 145, "Silenciar" },
    1498         { 146, "Nombre:" },
    1499         { 147, "Red desconectada" },
    1500         { 148, "Red no inicializada (%d)" },
    1501         { 149, "Red conectada" },
    1502         { 150, "Red conectada, disco compartido montado" },
    1503         { 151, "Nunca" },
    1504         { 152, "No" },
    1505         { 153, "No hay fecha guardada" },
    1506         { 154, "Sin m\372sica" },
    1507         { 155, "No hay tiempo de juego guardado" },
    1508         { 156, "No hay hora guardada" },
    1509         { 157, "Ninguno" },
    1510         { 158, "Normal (sin escalado)" },
    1511         { 159, "De acuerdo" },
    1512         { 160, "Frecuencia de salida:" },
    1513         { 161, "Ignorar opciones MIDI generales" },
    1514         { 162, "Ignorar opciones MT-32 generales" },
    1515         { 163, "Ignorar opciones de sonido generales" },
    1516         { 164, "Ignorar opciones gr\341ficas generales" },
    1517         { 165, "Ignorar opciones de volumen generales" },
    1518         { 166, "Emulador del altavoz de PC" },
    1519         { 167, "Contrase\361a:" },
    1520         { 168, "La ruta no es un directorio" },
    1521         { 169, "La ruta no es un archivo" },
    1522         { 170, "La ruta no existe" },
    1523         { 171, "Rutas" },
    1524         { 172, "Pausar" },
    1525         { 173, "Elige el juego:" },
    1526         { 174, "Plataforma para la que se dise\361\363 el juego" },
    1527         { 175, "Plataforma:" },
    1528         { 176, "Tiempo de juego:" },
    1529         { 177, "Por favor, selecciona una acci\363n" },
    1530         { 178, "Plugins:" },
    1531         { 179, "Dispositivo preferido:" },
    1532         { 180, "Pulsa la tecla a asignar" },
    1533         { 181, "Salir" },
    1534         { 182, "Cerrar ScummVM" },
    1535         { 183, "Permiso de lectura denegado" },
    1536         { 184, "Lectura fallida" },
    1537         { 185, "Asignar teclas" },
    1538         { 186, "Elimina el juego de la lista. Los archivos no se borran" },
    1539         { 187, "Modo de renderizado:" },
    1540         { 188, "Derecha" },
    1541         { 189, "Clic derecho" },
    1542         { 190, "Clic derecho" },
    1543         { 191, "Rotar" },
    1544         { 192, "Volumen de los efectos" },
    1545         { 193, "SMB" },
    1546         { 194, "Guardar" },
    1547         { 195, "Partidas:" },
    1548         { 196, "Partidas:" },
    1549         { 197, "Guardar partida" },
    1550         { 198, "\241B\372squeda completada!" },
    1551         { 199, "Se ha buscado en %d directorios..." },
    1552         { 200, "Men\372 principal de ScummVM" },
    1553         { 201, "\241ScummVM no ha podido encontrar ning\372n motor capaz de ejecutar el juego!" },
    1554         { 202, "\241ScummVM no ha encontrado ning\372n juego en el directorio!" },
    1555         { 203, "\241ScummVM no ha podido abrir el directorio!" },
    1556         { 204, "Buscar en la lista de juegos" },
    1557         { 205, "Buscar:" },
    1558         { 206, "Seleccionar SoundFont" },
    1559         { 207, "Selecciona un tema" },
    1560         { 208, "Seleccionar directorio de juego adicional" },
    1561         { 209, "Selecciona una acci\363n y pulsa \"Asignar\"" },
    1562         { 210, "Selecciona el directorio para temas de interfaz" },
    1563         { 211, "Selecciona el directorio para archivos adicionales" },
    1564         { 212, "Selecciona el directorio para plugins" },
    1565         { 213, "Seleccionar directorio para partidas guardadas" },
    1566         { 214, "Selecciona el directorio para partidas guardadas." },
    1567         { 215, "Seleccionar directorio con los archivos del juego" },
    1568         { 216, "Sensibilidad" },
    1569         { 217, "Servidor:" },
    1570         { 218, "Disco compartido:" },
    1571         { 219, "Identificador usado para las partidas guardadas y para ejecutar el juego desde la l\355nea de comando" },
    1572         { 220, "Mostrar teclado" },
    1573         { 221, "Mostrar el cursor" },
    1574         { 222, "Reproducir voces y subt\355tulos" },
    1575         { 223, "Mostrar/ocultar cursor" },
    1576         { 224, "Saltar" },
    1577         { 225, "Saltar frase" },
    1578         { 226, "Saltar texto" },
    1579         { 227, "Pegar a los bordes" },
    1580         { 228, "Escalado por software (buena calidad, pero m\341s lento)" },
    1581         { 229, "Sonido activado/desactivado" },
    1582         { 230, "Algunas tarjetas de sonido, Fluidsynth y Timidity soportan SoundFont" },
    1583         { 231, "SoundFont:" },
    1584         { 232, "Voces" },
    1585         { 233, "Modos especiales de expansi\363n soportados por algunos juegos" },
    1586         { 234, "Volumen de los efectos de sonido" },
    1587         { 235, "Especifica el dispositivo de salida General MIDI por defecto" },
    1588         { 236, "Especifica el dispositivo de sonido para la salida Roland MT-32/LAPC1/CM32l/CM64 por defecto" },
    1589         { 237, "Especifica el dispositivo de sonido o emulador de tarjeta de sonido de salida" },
    1590         { 238, "Especifica el directorio adicional usado por los juegos y ScummVM" },
    1591         { 239, "Especifica un directorio para datos adicionales del juego" },
    1592         { 240, "Especifica qu\351 dispositivo de sonido o emulador de tarjeta de sonido prefieres" },
    1593         { 241, "Especifica d\363nde guardar tus partidas" },
    1594         { 242, "Voces" },
    1595         { 243, "Volumen de las voces" },
    1596         { 244, "Est\341ndar (16bpp)" },
    1597         { 245, "Jugar al juego seleccionado" },
    1598         { 246, "Estado:" },
    1599         { 247, "Subt." },
    1600         { 248, "Velocidad de los subt\355tulos:" },
    1601         { 249, "Subt\355tulos" },
    1602         { 250, "Cambiar personaje" },
    1603         { 251, "Un toque para clic izquierdo, dos para clic derecho" },
    1604         { 252, "Texto y voces:" },
    1605         { 253, "No se puede escribir en el directorio elegido. Por favor, selecciona otro." },
    1606         { 254, "Temas:" },
    1607         { 255, "Tema:" },
    1608         { 256, "Esta ID ya est\341 siendo usada. Por favor, elige otra." },
    1609         { 257, "Este juego no permite cargar partidas desde el lanzador." },
    1610         { 258, "Hora:" },
    1611         { 259, "Se ha excedido el tiempo de inicializaci\363n de red" },
    1612         { 260, "Compensaci\363n X del toque" },
    1613         { 261, "Compensaci\363n Y del toque" },
    1614         { 262, "Modo Touchpad desactivado." },
    1615         { 263, "Modo Touchpad activado." },
    1616         { 264, "Roland MT-32 aut\351ntica (desactivar emulaci\363n GM)" },
    1617         { 265, "Desactiva la conversi\363n General MIDI en juegos con sonido Roland MT-32" },
    1618         { 266, "Desconocido" },
    1619         { 267, "Error desconocido" },
    1620         { 268, "Desmontar DVD" },
    1621         { 269, "Desmontar SMB" },
    1622         { 270, "Sin escalado (debes desplazar la pantalla a los lados)" },
    1623         { 271, "Modo de color no soportado" },
    1624         { 272, "Partida sin nombre" },
    1625         { 273, "Arriba" },
    1626         { 274, "Usar tanto MIDI como AdLib en la generaci\363n de sonido" },
    1627         { 275, "Activar el sistema de control tipo trackpad de los port\341tiles" },
    1628         { 276, "Usuario:" },
    1629         { 277, "Usando driver SDL" },
    1630         { 278, "Underscan vertical:" },
    1631         { 279, "V\355deo" },
    1632         { 280, "Teclado virtual" },
    1633         { 281, "Volumen" },
    1634         { 282, "Windows MIDI" },
    1635         { 283, "Permiso de escritura denegado" },
    1636         { 284, "Escritura de datos fallida" },
    1637         { 285, "S\355" },
    1638         { 286, "Tienes que reiniciar ScummVM para aplicar los cambios." },
    1639         { 287, "Zona" },
    1640         { 288, "Disminuir zoom" },
    1641         { 289, "Aumentar zoom" },
    1642         { 290, "cada 10 minutos" },
    1643         { 291, "cada 15 minutos" },
    1644         { 292, "cada 30 minutos" },
    1645         { 293, "cada 5 minutos" },
    1646         { 294, "Acerca ~d~e" },
    1647         { 295, "~A~\361adir juego..." },
    1648         { 296, "~C~ancelar" },
    1649         { 297, "Cerra~r~" },
    1650         { 298, "~E~ditar juego..." },
    1651         { 299, "~A~yuda" },
    1652         { 300, "Controles para pelear de ~I~ndy" },
    1653         { 301, "~T~eclas" },
    1654         { 302, "Modo para ~z~urdos" },
    1655         { 303, "~C~argar" },
    1656         { 304, "~C~argar..." },
    1657         { 305, "Si~g~uiente" },
    1658         { 306, "~S~\355" },
    1659         { 307, "~O~opciones" },
    1660         { 308, "~O~opciones..." },
    1661         { 309, "~A~nterior" },
    1662         { 310, "~S~alir" },
    1663         { 311, "E~l~iminar juego" },
    1664         { 312, "~R~eanudar" },
    1665         { 313, "~V~olver al lanzador" },
    1666         { 314, "~G~uardar" },
    1667         { 315, "~J~ugar" },
    1668         { 316, "Tra~n~siciones activadas" },
    1669         { 317, "Efecto ag~u~a activado" },
    1670         { 318, "Modo ~Z~ip activado" },
    1671         { -1, NULL }
    1672 };
    1673 
    1674 static const PoMessageEntry _translation_it_IT[] = {
    1675         { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-11 22:12+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" },
    1676         { 1, "   Sei sicuro di voler uscire?   " },
    1677         { 2, " (Attivo)" },
    1678         { 3, " (Gioco)" },
    1679         { 4, " (Globale)" },
    1680         { 5, "(build creata il %s)" },
    1681         { 6, ", errore nel montare la condivisione" },
    1682         { 7, ", condivisione non montata" },
    1683         { 8, "... progresso ..." },
    1684         { 9, "11kHz" },
    1685         { 10, "22 kHz" },
    1686         { 11, "44 kHz" },
    1687         { 12, "48 kHz" },
    1688         { 13, "8 kHz" },
    1689         { 14, "<predefinito>" },
    1690         { 15, "Informazioni su ScummVM" },
    1691         { 16, "Emulatore AdLib" },
    1692         { 17, "Emulatore AdLib:" },
    1693         { 18, "AdLib \350 utilizzato per la musica in molti giochi" },
    1694         { 19, "Aggiungi gioco..." },
    1695         { 20, "Emulatore AdLib" },
    1696         { 21, "Renderer con antialiasing (16bpp)" },
    1697         { 23, "Correzione proporzioni" },
    1698         { 24, "Tasto associato: %s" },
    1699         { 25, "Tasto associato: nessuno" },
    1700         { 26, "Audio" },
    1701         { 27, "Autosalva:" },
    1702         { 28, "Motori disponibili:" },
    1703         { 29, "~I~nfo..." },
    1704         { 30, "Associa tasti" },
    1705         { 31, "Entrambi" },
    1706         { 32, "Luminosit\340:" },
    1707         { 33, "Emulatore AdLib" },
    1708         { 34, "Annulla" },
    1709         { 35, "Impossibile creare il file" },
    1710         { 36, "Modifica le opzioni di gioco" },
    1711         { 37, "Modifica le opzioni globali di ScummVM" },
    1712         { 38, "Seleziona se vuoi usare il dispositivo hardware audio compatibile con Roland che \350 connesso al tuo computer" },
    1713         { 39, "Scegli" },
    1714         { 40, "Scegli un'azione da mappare" },
    1715         { 41, "Cancella" },
    1716         { 42, "Chiudi" },
    1717         { 43, "Corregge le proporzioni dei giochi 320x200" },
    1718         { 44, "Impossibile trovare un motore in grado di eseguire il gioco selezionato" },
    1719         { 45, "Modalit\340 video attuale:" },
    1720         { 46, "Cursore gi\371" },
    1721         { 47, "Cursore a sinistra" },
    1722         { 48, "Cursore a destra" },
    1723         { 49, "Cursore su" },
    1724         { 50, "Emulatore OPL DOSBox" },
    1725         { 51, "DVD" },
    1726         { 52, "DVD montato con successo" },
    1727         { 53, "DVD non montato" },
    1728         { 54, "Data: " },
    1729         { 55, "Debugger" },
    1730         { 56, "Predefinito" },
    1731         { 57, "Elimina" },
    1732         { 58, "Disattiva spegnimento in chiusura" },
    1733         { 59, "Grafica disattivata" },
    1734         { 60, "Rilevati %d nuovi giochi..." },
    1735         { 61, "Rilevati %d nuovi giochi." },
    1736         { 62, "Visualizza " },
    1737         { 63, "Mostra tastiera" },
    1738         { 64, "Sei sicuro di voler eliminare questo salvataggio?" },
    1739         { 65, "Sei sicuro di voler rimuovere questa configurazione di gioco?" },
    1740         { 66, "Vuoi davvero eseguire il rilevatore di giochi in massa? Potrebbe aggiungere un numero enorme di giochi." },
    1741         { 67, "Vuoi caricare o salvare il gioco?" },
    1742         { 68, "Vuoi eseguire una scansione automatica?" },
    1743         { 69, "Sei sicuro di voler uscire?" },
    1744         { 70, "Double-strike" },
    1745         { 71, "Gi\371" },
    1746         { 72, "Attiva la modalit\340 Roland GS" },
    1747         { 73, "Il motore non supporta il livello di debug '%s'" },
    1748         { 74, "Inglese" },
    1749         { 75, "Errore nell'esecuzione del gioco:" },
    1750         { 76, "Errore nel montare il DVD" },
    1751         { 77, "Percorso extra:" },
    1752         { 78, "Emulatore FM Towns" },
    1753         { 79, "Modalit\340 veloce" },
    1754         { 80, "Funzionalit\340 compilate in:" },
    1755         { 81, "Osservazione libera" },
    1756         { 82, "Titolo completo del gioco" },
    1757         { 83, "Modalit\340 a schermo intero" },
    1758         { 84, "Accelerazione pad GC:" },
    1759         { 85, "Sensibilit\340 pad GC:" },
    1760         { 86, "Grafica" },
    1761         { 87, "Dispositivo GM:" },
    1762         { 88, "Lingua GUI:" },
    1763         { 89, "Renderer GUI:" },
    1764         { 90, "Gioco" },
    1765         { 91, "Dati di gioco non trovati" },
    1766         { 92, "ID di gioco non supportato" },
    1767         { 93, "Percorso gioco:" },
    1768         { 94, "Menu globale" },
    1769         { 95, "Vai alla cartella superiore" },
    1770         { 96, "Cartella superiore" },
    1771         { 97, "Grafica" },
    1772         { 98, "Modalit\340:" },
    1773         { 99, "Ridimensionamento hardware (veloce, ma di bassa qualit\340)" },
    1774         { 100, "Hercules ambra" },
    1775         { 101, "Hercules verde" },
    1776         { 102, "Nascondi la barra degli strumenti" },
    1777         { 103, "Audio ad alta qualit\340 (pi\371 lento) (riavviare)" },
    1778         { 104, "Valori pi\371 alti restituiscono un suono di maggior qualit\340, ma potrebbero non essere supportati dalla tua scheda audio" },
    1779         { 105, "Tieni premuto Shift per l'aggiunta in massa" },
    1780         { 106, "Underscan orizzontale:" },
    1781         { 107, "Emulatore IBM PCjr" },
    1782         { 108, "ID:" },
    1783         { 109, "Avvia rete" },
    1784         { 110, "Schermo in primo piano:" },
    1785         { 111, "Avvio in corso dell'emulatore MT-32" },
    1786         { 112, "Avvio rete in corso" },
    1787         { 113, "Input" },
    1788         { 114, "Percorso non valido" },
    1789         { 115, "Programmatore tasti" },
    1790         { 116, "Tastiera" },
    1791         { 117, "Mappa tasti:" },
    1792         { 118, "Tasti" },
    1793         { 119, "Lingua dell'interfaccia grafica di ScummVM" },
    1794         { 120, "Lingua del gioco. Un gioco inglese non potr\340 risultare tradotto in italiano" },
    1795         { 121, "Lingua:" },
    1796         { 122, "Sinistra" },
    1797         { 123, "Clic sinistro" },
    1798         { 124, "Carica" },
    1799         { 125, "Carica gioco:" },
    1800         { 126, "Carica un salvataggio del gioco selezionato" },
    1801         { 127, "Emulatore OPL MAME" },
    1802         { 128, "MIDI" },
    1803         { 129, "Guadagno MIDI:" },
    1804         { 131, "Disposit. MT32:" },
    1805         { 132, "Emulatore MT-32" },
    1806         { 133, "Schermo principale:" },
    1807         { 134, "Mappa" },
    1808         { 135, "Agg. in massa..." },
    1809         { 136, "Menu" },
    1810         { 137, "Varie" },
    1811         { 138, "Modalit\340 mista AdLib/MIDI" },
    1812         { 139, "Monta DVD" },
    1813         { 140, "Monta SMB" },
    1814         { 141, "Clic del mouse" },
    1815         { 142, "Multifunzione" },
    1816         { 143, "Dispositivo GM:" },
    1817         { 144, "Volume musica:" },
    1818         { 145, "Disattiva audio" },
    1819         { 146, "Nome:" },
    1820         { 147, "Rete disattivata" },
    1821         { 148, "Rete non avviata (%d)" },
    1822         { 149, "Rete attiva" },
    1823         { 150, "Rete attiva, condivisione montata" },
    1824         { 151, "Mai" },
    1825         { 152, "No" },
    1826         { 153, "Nessuna data salvata" },
    1827         { 154, "Nessuna musica" },
    1828         { 155, "Nessun tempo salvato" },
    1829         { 156, "Nessun orario salvato" },
    1830         { 157, "Nessuno" },
    1831         { 158, "Normale (nessun ridimensionamento)" },
    1832         { 159, "OK" },
    1833         { 160, "Frequenza:" },
    1834         { 161, "Ignora le impostazioni MIDI globali" },
    1835         { 162, "Ignora le impostazioni MIDI globali" },
    1836         { 163, "Ignora le impostazioni audio globali" },
    1837         { 164, "Ignora le impostazioni grafiche globali" },
    1838         { 165, "Ignora le impostazioni globali di volume" },
    1839         { 166, "Emulatore PC Speaker" },
    1840         { 167, "Password:" },
    1841         { 168, "Il percorso non \350 una cartella" },
    1842         { 169, "Il percorso non \350 un file" },
    1843         { 170, "Il percorso non esiste" },
    1844         { 171, "Percorsi" },
    1845         { 172, "Pausa" },
    1846         { 173, "Scegli il gioco:" },
    1847         { 174, "La piattaforma per la quale il gioco \350 stato concepito" },
    1848         { 175, "Piattaforma:" },
    1849         { 176, "Tempo di gioco: " },
    1850         { 177, "Seleziona un'azione" },
    1851         { 178, "Percorso plugin:" },
    1852         { 179, "Disp. preferito:" },
    1853         { 180, "Premi il tasto da associare" },
    1854         { 181, "Esci" },
    1855         { 182, "Chiudi ScummVM" },
    1856         { 183, "Autorizzazione di lettura negata" },
    1857         { 184, "Lettura fallita" },
    1858         { 185, "Riprogramma tasti" },
    1859         { 186, "Rimuove il gioco dalla lista. I file del gioco rimarranno intatti" },
    1860         { 187, "Resa grafica:" },
    1861         { 188, "Destra" },
    1862         { 189, "Clic destro" },
    1863         { 190, "Clic destro" },
    1864         { 191, "Rotazione" },
    1865         { 192, "Volume effetti:" },
    1866         { 193, "SMB" },
    1867         { 194, "Salva" },
    1868         { 195, "Salvataggi:" },
    1869         { 196, "Salvataggi:" },
    1870         { 197, "Salva gioco:" },
    1871         { 198, "Scansione completa!" },
    1872         { 199, "%d cartelle analizzate..." },
    1873         { 200, "Menu principale di ScummVM" },
    1874         { 201, "ScummVM non ha potuto trovare un motore in grado di eseguire il gioco selezionato!" },
    1875         { 202, "ScummVM non ha potuto trovare nessun gioco nella cartella specificata!" },
    1876         { 203, "ScummVM non ha potuto aprire la cartella specificata!" },
    1877         { 204, "Cerca nella lista dei giochi" },
    1878         { 205, "Cerca:" },
    1879         { 206, "Seleziona SoundFont" },
    1880         { 207, "Seleziona un tema" },
    1881         { 208, "Seleziona la cartella di gioco aggiuntiva" },
    1882         { 209, "Seleziona un'azione e clicca 'Mappa'" },
    1883         { 210, "Seleziona la cartella dei temi dell'interfaccia" },
    1884         { 211, "Seleziona la cartella dei file aggiuntivi" },
    1885         { 212, "Seleziona la cartella dei plugin" },
    1886         { 213, "Seleziona la cartella dei salvataggi" },
    1887         { 214, "Seleziona la cartella per i salvataggi" },
    1888         { 215, "Seleziona la cartella contenente i file di gioco" },
    1889         { 216, "Sensibilit\340" },
    1890         { 217, "Server:" },
    1891         { 218, "Condivisione:" },
    1892         { 219, "Breve identificatore di gioco utilizzato per il riferimento a salvataggi e per l'esecuzione del gioco dalla riga di comando" },
    1893         { 220, "Mostra tastiera" },
    1894         { 221, "Mostra cursore del mouse" },
    1895         { 222, "Mostra i sottotitoli e attiva le voci" },
    1896         { 223, "Mostra/nascondi cursore" },
    1897         { 224, "Salta" },
    1898         { 225, "Salta battuta" },
    1899         { 226, "Salta testo" },
    1900         { 227, "Aggancia ai bordi" },
    1901         { 228, "Ridimensionamento software (di buona qualit\340, ma pi\371 lento)" },
    1902         { 229, "Suono on/off" },
    1903         { 230, "SoundFont \350 supportato da alcune schede audio, Fluidsynth e Timidity" },
    1904         { 231, "SoundFont:" },
    1905         { 232, "Voci" },
    1906         { 233, "Modalit\340 di resa grafica speciali supportate da alcuni giochi" },
    1907         { 234, "Volume degli effetti sonori" },
    1908         { 235, "Specifica il dispositivo audio predefinito per l'output General MIDI" },
    1909         { 236, "Specifica il dispositivo audio predefinito per l'output Roland MT-32/LAPC1/CM32l/CM64" },
    1910         { 237, "Specifica il dispositivo di output audio o l'emulatore della scheda audio" },
    1911         { 238, "Specifica il percorso di ulteriori dati usati dai giochi o da ScummVM" },
    1912         { 239, "Specifica il percorso di ulteriori dati usati dal gioco" },
    1913         { 240, "Specifica il dispositivo audio o l'emulatore della scheda audio preferiti" },
    1914         { 241, "Specifica dove archiviare i salvataggi" },
    1915         { 242, "Voci" },
    1916         { 243, "Volume voci:" },
    1917         { 244, "Renderer standard (16bpp)" },
    1918         { 245, "Esegue il gioco selezionato" },
    1919         { 246, "Stato:" },
    1920         { 247, "Sub" },
    1921         { 248, "Velocit\340 testo:" },
    1922         { 249, "Sottotitoli" },
    1923         { 250, "Cambia personaggio" },
    1924         { 251, "Un tocco per il clic sinistro, doppio tocco per il clic destro" },
    1925         { 252, "Testo e voci:" },
    1926         { 253, "La cartella scelta \350 in sola lettura. Si prega di sceglierne un'altra." },
    1927         { 254, "Percorso tema:" },
    1928         { 255, "Tema:" },
    1929         { 256, "Questo ID di gioco \350 gi\340 in uso. Si prega di sceglierne un'altro." },
    1930         { 257, "Questo gioco non supporta il caricamento di salvataggi dalla schermata di avvio." },
    1931         { 258, "Ora: " },
    1932         { 259, "Attesa per l'avvio della rete" },
    1933         { 260, "Compensa X del tocco" },
    1934         { 261, "Compensa Y del tocco" },
    1935         { 262, "Modalit\340 touchpad disattivata." },
    1936         { 263, "Modalit\340 touchpad attivata." },
    1937         { 264, "Roland MT-32 effettivo (disattiva emulazione GM)" },
    1938         { 265, "Disattiva la mappatura General MIDI per i giochi con colonna sonora Roland MT-32" },
    1939         { 266, "Sconosciuto" },
    1940         { 267, "Errore sconosciuto" },
    1941         { 268, "Smonta DVD" },
    1942         { 269, "Smonta SMB" },
    1943         { 270, "Non ridimensionato (devi scorrere a sinistra e a destra)" },
    1944         { 271, "Modalit\340 colore non supportata" },
    1945         { 272, "Salvataggio senza titolo" },
    1946         { 273, "Su" },
    1947         { 274, "Utilizza generazione di suono sia MIDI che AdLib" },
    1948         { 275, "Utilizza il controllo del cursore stile trackpad del portatile" },
    1949         { 276, "Nome utente:" },
    1950         { 277, "Utilizzo del driver SDL " },
    1951         { 278, "Underscan verticale:" },
    1952         { 279, "Video" },
    1953         { 280, "Tastiera virtuale" },
    1954         { 281, "Volume" },
    1955         { 282, "MIDI Windows" },
    1956         { 283, "Autorizzazione di scrittura negata" },
    1957         { 284, "Scrittura dati fallita" },
    1958         { 285, "S\354" },
    1959         { 286, "Devi riavviare ScummVM affinch\351 le modifiche abbiano effetto." },
    1960         { 287, "Zona" },
    1961         { 288, "Zoom indietro" },
    1962         { 289, "Zoom avanti" },
    1963         { 290, "ogni 10 minuti" },
    1964         { 291, "ogni 15 minuti" },
    1965         { 292, "ogni 30 minuti" },
    1966         { 293, "ogni 5 minuti" },
    1967         { 294, "~I~nfo" },
    1968         { 295, "~A~ggiungi gioco..." },
    1969         { 296, "~A~nnulla" },
    1970         { 297, "~C~hiudi" },
    1971         { 298, "~M~odifica gioco..." },
    1972         { 299, "~A~iuto" },
    1973         { 300, "Controlli combattimento di ~I~ndy" },
    1974         { 301, "~T~asti" },
    1975         { 302, "~M~odalit\340 mancini" },
    1976         { 303, "~C~arica" },
    1977         { 304, "~C~arica..." },
    1978         { 305, "~S~uccessivi" },
    1979         { 306, "~O~K" },
    1980         { 307, "~O~pzioni" },
    1981         { 308, "~O~pzioni..." },
    1982         { 309, "~P~recedenti" },
    1983         { 310, "C~h~iudi" },
    1984         { 311, "~R~imuovi gioco" },
    1985         { 312, "~R~ipristina" },
    1986         { 313, "~V~ai a schermata di avvio" },
    1987         { 314, "~S~alva" },
    1988         { 315, "~G~ioca" },
    1989         { 316, "~T~ransizioni attive" },
    1990         { 317, "~E~ffetto acqua attivo" },
    1991         { 318, "Modalit\340 ~Z~ip attivata" },
    1992         { -1, NULL }
    1993 };
    1994 
    1995 static const PoMessageEntry _translation_fr_FR[] = {
    1996         { 0, "Project-Id-Version: ScummVM 1.2.0svn\nReport-Msgid-Bugs-To: scummvm-devel@lists.sf.net\nPOT-Creation-Date: 2010-08-11 22:12+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" },
    1997         { 1, "Voulez-vous vraiment quitter?" },
    1998         { 2, "(Actif)" },
    1999         { 3, "(Jeu)" },
    2000         { 4, "(Global)" },
    2001         { 5, "(compil\351 sur %s)" },
    2002         { 6, ", \351chec du montage du disque partag\351" },
    2003         { 7, ", disque partag\351 non mont\351" },
    2004         { 8, "... en cours ..." },
    2005         { 9, "11 kHz" },
    2006         { 10, "22 kHz" },
    2007         { 11, "44 kHz" },
    2008         { 12, "48 kHz" },
    2009         { 13, "8 kHz" },
    2010         { 14, "<defaut>" },
    2011         { 15, "\300 propos de ScummVM" },
    2012         { 16, "\311mulateur AdLib" },
    2013         { 17, "\311mulateur AdLib:" },
    2014         { 18, "AdLib est utilis\351 pour la musique dans de nombreux jeux" },
    2015         { 19, "Ajouter..." },
    2016         { 20, "\311mulateur Amiga Audio" },
    2017         { 21, "Anti-cr\351nel\351 (16 bpp)" },
    2018         { 22, "\311mulateur Apple II GS (PAS IMPL\311MENT\311)" },
    2019         { 23, "Correction du rapport d'aspect" },
    2020         { 24, "Touche associ\351e: %s" },
    2021         { 25, "Touche associ\351e: aucune" },
    2022         { 26, "Audio" },
    2023         { 27, "Sauvegarde auto:" },
    2024         { 28, "Moteurs disponibles:" },
    2025         { 29, "\300 ~P~ropos..." },
    2026         { 30, "Affecter les touches" },
    2027         { 31, "Les deux" },
    2028         { 32, "Luminosit\351:" },
    2029         { 33, "\311mulateur C64 Audio" },
    2030         { 34, "Annuler" },
    2031         { 35, "Impossible de cr\351er le fichier" },
    2032         { 36, "Change les options du jeu" },
    2033         { 37, "Change les options globales de ScummVM" },
    2034         { 38, "V\351rifie si vous voulez utiliser un p\351riph\351rique audio compatible Roland connect\351 \340 l'ordinateur" },
    2035         { 39, "Choisir" },
    2036         { 40, "S\351lectionnez une action \340 affecter" },
    2037         { 41, "Effacer la valeur" },
    2038         { 42, "Fermer" },
    2039         { 43, "Corrige le rapport d'aspect pour les jeu 320x200" },
    2040         { 44, "Impossible de trouver un moteur pour ex\351cuter le jeu s\351lectionn\351" },
    2041         { 45, "Mode vid\351o actuel" },
    2042         { 46, "Bas" },
    2043         { 47, "Gauche" },
    2044         { 48, "Droit" },
    2045         { 49, "Haut" },
    2046         { 50, "\311mulateur DOSBox OPL" },
    2047         { 51, "DVD" },
    2048         { 52, "DVD mont\351 avec succ\350s" },
    2049         { 53, "DVD non mont\351" },
    2050         { 54, "Date:" },
    2051         { 55, "Debugger" },
    2052         { 56, "D\351faut" },
    2053         { 57, "Supprimer" },
    2054         { 58, "D\351sactiv\351 l'extinction" },
    2055         { 59, "GFX d\351sactiv\351" },
    2056         { 60, "%d nouveaux jeux trouv\351s ..." },
    2057         { 61, "%d nouveaux jeux trouv\351s." },
    2058         { 62, "Affichage" },
    2059         { 63, "Afficher le clavier" },
    2060         { 64, "Voulez-vous vraiment supprimer cette sauvegarde?" },
    2061         { 65, "Voulez-vous vraiment supprimer ce jeu?" },
    2062         { 66, "Voulez-vous vraiment lancer la d\351tection automatique des jeux? Cela peut potentiellement ajouter un grand nombre de jeux." },
    2063         { 67, "Voulez-vous charger ou sauver le jeu?" },
    2064         { 68, "Voulez-vous ex\351cuter une recherche automatique?" },
    2065         { 69, "Voulez-vous quitter?" },
    2066         { 70, "Coup double" },
    2067         { 71, "Bas" },
    2068         { 72, "Activer le mode Roland GS" },
    2069         { 73, "Le niveau de debug '%s' n'est pas support\351 par ce moteur de jeu" },
    2070         { 74, "Anglais" },
    2071         { 75, "Erreur lors de l'\351x\351cution du jeu:" },
    2072         { 76, "\311chec du montage du DVD" },
    2073         { 77, "Extra:" },
    2074         { 78, "\311mulateur FM Towns" },
    2075         { 79, "Mode rapide" },
    2076         { 80, "Options incluses:" },
    2077         { 81, "Regarder autour" },
    2078         { 82, "Nom complet du jeu" },
    2079         { 83, "Plein \351cran" },
    2080         { 84, "Acceleration du pad GC:" },
    2081         { 85, "Sensibilit\351 du pad GC:" },
    2082         { 86, "GFX" },
    2083         { 87, "Sortie GM:" },
    2084         { 88, "Langue:" },
    2085         { 89, "Interface:" },
    2086         { 90, "Jeu" },
    2087         { 91, "Fichier de don\351es introuvable" },
    2088         { 92, "ID de jeu non support\351" },
    2089         { 93, "Chemin du Jeu:" },
    2090         { 94, "Menu global" },
    2091         { 95, "Remonte d'un niveau dans la hi\351rarchie de r\351pertoire" },
    2092         { 96, "Remonter" },
    2093         { 97, "Graphique" },
    2094         { 98, "Mode graphique:" },
    2095         { 99, "Mise \340 l'echelle mat\351rielle (rapide mais qualit\351 faible)" },
    2096         { 100, "Hercules Ambre" },
    2097         { 101, "Hercules Vert" },
    2098         { 102, "Cach\351 la barre d'outils" },
    2099         { 103, "Audio haute qualit\351 (plus lent) (red\351marrer)" },
    2100         { 104, "Une valeur plus \351lev\351e donne une meilleure qualit\351 audio mais peut ne pas \352tre support\351 par votre carte son" },
    2101         { 105, "Ajoute un jeu \340 la Liste. Maintenez Shift enfonc\351e pour un Ajout Massif" },
    2102         { 106, "Underscan horizontal:" },
    2103         { 107, "\311mulateur IBM PCjr" },
    2104         { 108, "ID:" },
    2105         { 109, "Initialiser le r\351seau" },
    2106         { 110, "\311chelle initiale de l'\351cran du haut" },
    2107         { 111, "Initialisation de l'\311mulateur MT-32" },
    2108         { 112, "Initialisation du r\351seau" },
    2109         { 113, "Entr\351e" },
    2110         { 114, "Chemin Invalide" },
    2111         { 115, "Affectation des touches" },
    2112         { 116, "Clavier" },
    2113         { 117, "Affectation des touches:" },
    2114         { 118, "Touches" },
    2115         { 119, "Langue de l'interface graphique de ScummVM" },
    2116         { 120, "Langue du jeu. Cela ne traduira pas en anglais par magie votre version espagnole du jeu." },
    2117         { 121, "Langue:" },
    2118         { 122, "Gauche" },
    2119         { 123, "Clic Gauche" },
    2120         { 124, "Charger" },
    2121         { 125, "Charger le jeu:" },
    2122         { 126, "Charge une sauvegarde pour le jeu s\351lectionn\351" },
    2123         { 127, "\311mulateur MAME OPL" },
    2124         { 128, "MIDI" },
    2125         { 129, "Gain MIDI:" },
    2126         { 130, "MT-32" },
    2127         { 131, "Sortie MT-32:" },
    2128         { 132, "\311mulateur MT-32" },
    2129         { 133, "\311chelle de l'\351cran principal" },
    2130         { 134, "Affecter" },
    2131         { 135, "Ajout Massif..." },
    2132         { 136, "Menu" },
    2133         { 137, "Divers" },
    2134         { 138, "Mode mixe AdLib/MIDI" },
    2135         { 139, "Monter le DVD" },
    2136         { 140, "Monter SMB" },
    2137         { 141, "Clic de souris" },
    2138         { 142, "Fonction Multiple" },
    2139         { 143, "Sortie Audio:" },
    2140         { 144, "Volume Musique:" },
    2141         { 145, "Silence" },
    2142         { 146, "Nom:" },
    2143         { 147, "R\351seau d\351connect\351" },
    2144         { 148, "R\351seau non initialis\351 (%d)" },
    2145         { 149, "R\351seau connect\351" },
    2146         { 150, "R\351seau connect\351, disque partag\351 mont\351" },
    2147         { 151, "Jamais" },
    2148         { 152, "Non" },
    2149         { 153, "Date non sauv\351e" },
    2150         { 154, "Pas de musique" },
    2151         { 155, "Dur\351e de jeu non sauv\351e" },
    2152         { 156, "Heure non sauv\351e" },
    2153         { 157, "Aucun" },
    2154         { 158, "Normal (\351chelle d'origine)" },
    2155         { 159, "OK" },
    2156         { 160, "Fr\351quence:" },
    2157         { 161, "Utiliser des r\351glages MIDI sp\351cifiques \340 ce jeux" },
    2158         { 162, "Utiliser des r\351glages MT-32 sp\351cifiques \340 ce jeux" },
    2159         { 163, "Utiliser des r\351glages audio sp\351cifiques \340 ce jeux" },
    2160         { 164, "Utiliser des r\351glages graphiques sp\351cifiques \340 ce jeux" },
    2161         { 165, "Utiliser des r\351glages de volume sonore sp\351cifiques \340 ce jeux" },
    2162         { 166, "\311mulateur Haut Parleur PC" },
    2163         { 167, "Mot de passe:" },
    2164         { 168, "Chemin n'est pas un r\351pertoire" },
    2165         { 169, "Chemin n'est pas un fichier" },
    2166         { 170, "Chemin inexistant" },
    2167         { 171, "Chemins" },
    2168         { 172, "Mettre en pause" },
    2169         { 173, "Choisissez le jeu:" },
    2170         { 174, "Plateforme pour laquelle votre jeu a \351t\351 con\347u" },
    2171         { 175, "Plateforme:" },
    2172         { 176, "Dur\351e de jeu:" },
    2173         { 177, "Selectionnez une action" },
    2174         { 178, "Plugins:" },
    2175         { 179, "Sortie Pr\351f\351r\351:" },
    2176         { 180, "Appuyez sur la touche \340 associer" },
    2177         { 181, "Quitter" },
    2178         { 182, "Quitter ScummVM" },
    2179         { 183, "V\351roulli\351 en lecture" },
    2180         { 184, "Echec de la lecture" },
    2181         { 185, "Changer l'affectation des touches" },
    2182         { 186, "Supprime le jeu de la liste. Les fichiers sont conserv\351s" },
    2183         { 187, "Mode de rendu:" },
    2184         { 188, "Droite" },
    2185         { 189, "Clic Droit" },
    2186         { 190, "Clic droit" },
    2187         { 191, "Pivoter" },
    2188         { 192, "Volume Bruitage:" },
    2189         { 193, "SMB" },
    2190         { 194, "Sauver" },
    2191         { 195, "Sauvegardes:" },
    2192         { 196, "Sauvegardes:" },
    2193         { 197, "Sauvegarde:" },
    2194         { 198, "Examen termin\351!" },
    2195         { 199, "%d r\351pertoires examin\351s ..." },
    2196         { 200, "Menu Principal ScummVM" },
    2197         { 201, "ScummVM n'a pas pu trouv\351 de moteur pour lancer le jeu s\351lectionn\351." },
    2198         { 202, "ScummVM n'a pas trouv\351 de jeux dans le r\351pertoire s\351lectionn\351." },
    2199         { 203, "ScummVM n'a pas pu ouvrir le r\351pertoire s\351lectionn\351." },
    2200         { 204, "Recherche dans la liste de jeux" },
    2201         { 205, "Filtre:" },
    2202         { 206, "Choisir une banque de sons" },
    2203         { 207, "S\351lectionnez un Th\350me" },
    2204         { 208, "S\351lectionner un r\351pertoire suppl\351mentaire" },
    2205         { 209, "Selectionez une action et cliquez 'Affecter'" },
    2206         { 210, "S\351lectionner le r\351pertoire des th\350mes d'interface" },
    2207         { 211, "S\351lectionner le r\351pertoire pour les fichiers supl\351mentaires" },
    2208         { 212, "S\351lectionner le r\351pertoire des plugins" },
    2209         { 213, "S\351lectionner le r\351pertoire pour les sauvegardes" },
    2210         { 214, "S\351lectionner le r\351pertoire pour les sauvegardes" },
    2211         { 215, "S\351lectionner le r\351pertoire contenant les donn\351es du jeu" },
    2212         { 216, "Sensibilit\351" },
    2213         { 217, "Serveur:" },
    2214         { 218, "Disque partag\351:" },
    2215         { 219, "ID compact du jeu utilis\351 pour identifier les sauvegardes et d\351marrer le jeu depuis la ligne de commande" },
    2216         { 220, "Afficher le clavier" },
    2217         { 221, "Afficher le curseur de la souris" },
    2218         { 222, "Affiche les sous-titres et joue les dialogues audio" },
    2219         { 223, "Afficher/Cacher le curseur" },
    2220         { 224, "Passer" },
    2221         { 225, "Passer la phrase" },
    2222         { 226, "Sauter le texte" },
    2223         { 227, "Aligner sur les bords" },
    2224         { 228, "Mise \340 l'\351chelle logicielle (bonne qualit\351 mais plus lent)" },
    2225         { 229, "Audio marche/arr\352t" },
    2226         { 230, "La banque de sons est utilis\351e par certaines cartes audio, Fluidsynth et Timidity" },
    2227         { 231, "Banque de sons:" },
    2228         { 232, "Audio" },
    2229         { 233, "Mode sp\351cial de tramage support\351 par certains jeux" },
    2230         { 234, "Volume des effets sp\351ciaux sonores" },
    2231         { 235, "Sp\351cifie le p\351riph\351rique audio par d\351faut pour la sortie General MIDI" },
    2232         { 236, "Sp\351cifie le p\351riph\351rique audio par d\351faut pour la sortie Roland MT-32/LAPC1/CM32l/CM64" },
    2233         { 237, "Sp\351cifie le p\351riph\351rique de sortie audio ou l'\351mulateur de carte audio" },
    2234         { 238, "Sp\351cifie un chemin vers des donn\351es suppl\351mentaires utilis\351es par tous les jeux ou ScummVM" },
    2235         { 239, "D\351finie un chemin vers des donn\351es supl\351mentaires utilis\351es par le jeu" },
    2236         { 240, "Sp\351cifie le p\351riph\351rique de sortie audio ou l'\351mulateur de carte audio pr\351f\351r\351" },
    2237         { 241, "D\351finie l'emplacement o\371 les fichiers de sauvegarde sont cr\351\351s" },
    2238         { 242, "Audio" },
    2239         { 243, "Volume Dialogues:" },
    2240         { 244, "Standard (16bpp)" },
    2241         { 245, "D\351marre le jeu s\351lectionn\351" },
    2242         { 246, "Status:" },
    2243         { 247, "Subs" },
    2244         { 248, "Vitesse des ST:" },
    2245         { 249, "Sous-titres" },
    2246         { 250, "Changement de personnage" },
    2247         { 251, "Toucher pour un clic gauche, toucher deux fois pour un clic droit" },
    2248         { 252, "Dialogue:" },
    2249         { 253, "Le r\351pertoire s\351lectionn\351 est v\351rouill\351 en \351criture. S\351lectionnez un autre r\351pertoire." },
    2250         { 254, "Th\350mes:" },
    2251         { 255, "Th\350me:" },
    2252         { 256, "Cet ID est d\351j\340 utilis\351 par un autre jeu. Choisissez en un autre svp." },
    2253         { 257, "Le chargement de sauvegarde depuis le lanceur n'est pas support\351 pour ce jeu." },
    2254         { 258, "Heure:" },
    2255         { 259, "D\351passement du d\351lai lors de l'initialisation du r\351seau" },
    2256         { 260, "D\351calage X du toucher" },
    2257         { 261, "D\351callage Y du toucher" },
    2258         { 262, "Mode touchpad d\351sactiv\351" },
    2259         { 263, "Mode touchpad activ\351" },
    2260         { 264, "Roland MT-32 exacte (d\351sactive l'\351mulation GM)" },
    2261         { 265, "D\351sactiver la conversion des pistes MT-32 en General MIDI" },
    2262         { 266, "Inconue" },
    2263         { 267, "Erreur inconnue" },
    2264         { 268, "D\351monter le DVD" },
    2265         { 269, "D\351monter SMB" },
    2266         { 270, "Sans changement d'\351chelle (vous devez faire d\351filer l'\351cran)" },
    2267         { 271, "Mode de couleurs non support\351" },
    2268         { 272, "Sauvegarde sans nom" },
    2269         { 273, "Haut" },
    2270         { 274, "Utiliser \340 la fois MIDI et AdLib" },
    2271         { 275, "Activer le contr\364le du curseur de type trackpad" },
    2272         { 276, "Nom d'utilisateur:" },
    2273         { 277, "Utilise le pilote SDL" },
    2274         { 278, "Underscan vertical:" },
    2275         { 279, "Vid\351o" },
    2276         { 280, "Clavier virtuel" },
    2277         { 281, "Volume" },
    2278         { 282, "MIDI Windows" },
    2279         { 283, "Verrouill\351 en \351criture" },
    2280         { 284, "Echec de l'\351criture des donn\351es" },
    2281         { 285, "Oui" },
    2282         { 286, "Vous devez relancer ScummVM pour que le changement soit pris en compte." },
    2283         { 287, "Zone" },
    2284         { 288, "Zoomer" },
    2285         { 289, "D\351zoomer" },
    2286         { 290, "Toutes les 10 mins" },
    2287         { 291, "Toutes les 15 mins" },
    2288         { 292, "Toutes les 30 mins" },
    2289         { 293, "Toutes les 5 mins" },
    2290         { 294, "\300 ~P~ropos" },
    2291         { 295, "~A~jouter..." },
    2292         { 296, "~A~nnuler" },
    2293         { 297, "~F~ermer" },
    2294         { 298, "~E~diter..." },
    2295         { 299, "~A~ide" },
    2296         { 300, "Contr\364le des combats d'~I~ndy" },
    2297         { 301, "~T~ouches" },
    2298         { 302, "Mode ~G~aucher" },
    2299         { 303, "~C~harger" },
    2300         { 304, "~C~harger" },
    2301         { 305, "~S~uivant" },
    2302         { 306, "~O~K" },
    2303         { 307, "~O~ptions" },
    2304         { 308, "~O~ptions..." },
    2305         { 309, "~P~r\351c\351dent" },
    2306         { 310, "~Q~uitter" },
    2307         { 311, "~S~upprimer" },
    2308         { 312, "~R~eprendre" },
    2309         { 313, "Retour au ~L~anceur" },
    2310         { 314, "~S~auver" },
    2311         { 315, "~D~\351marrer" },
    2312         { 316, "T~r~ansitions activ\351" },
    2313         { 317, "~E~ffets de l'Eau Activ\351s" },
    2314         { 318, "Mode ~Z~ip Activ\351" },
    2315         { -1, NULL }
    2316 };
    2317 
    2318 static const 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-11 22:12+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 
    2640 struct PoLangEntry {
    2641         const char *lang;
    2642         const char *charset;
    2643         const char *langname;
    2644         const PoMessageEntry *msgs;
    2645 };
    2646 
    2647 const PoLangEntry _translations[] = {
    2648         { "ca_ES", "iso-8859-1", "Catalan", _translation_ca_ES },
    2649         { "uk_UA", "iso-8859-5", "Ukrainian", _translation_uk_UA },
    2650         { "ru_RU", "iso-8859-5", "Russian", _translation_ru_RU },
    2651         { "hu_HU", "cp1250", NULL, _translation_hu_HU },
    2652         { "es_ES", "iso-8859-1", "Espanol", _translation_es_ES },
    2653         { "it_IT", "iso-8859-1", "Italiano", _translation_it_IT },
    2654         { "fr_FR", "iso-8859-1", "Francais", _translation_fr_FR },
    2655         { "de_DE", "iso-8859-1", "Deutsch", _translation_de_DE },
    2656         { NULL, NULL, NULL, NULL }
    2657 };
    2658 
    2659 // code
    2660 
    2661 static const PoMessageEntry *_currentTranslation = NULL;
    2662 static int _currentTranslationMessageEntryCount = 0;
    2663 static const char *_currentTranslationCharset = NULL;
    2664 
    2665 void po2c_setlang(const char *lang) {
    2666         _currentTranslation = NULL;
    2667         _currentTranslationMessageEntryCount = 0;
    2668         _currentTranslationCharset = NULL;
    2669 
    2670         // if lang is NULL or "", deactivate it
    2671         if (lang == NULL || *lang == '\0')
    2672                 return;
    2673 
    2674         // searches for a valid language array
    2675         for (int i = 0; _currentTranslation == NULL && _translations[i].lang != NULL; ++i) {
    2676                 if (strcmp(lang, _translations[i].lang) == 0) {
    2677                         _currentTranslation = _translations[i].msgs;
    2678                         _currentTranslationCharset = _translations[i].charset;
    2679                 }
    2680         }
    2681 
    2682         // try partial searches
    2683         for (int i = 0; _currentTranslation == NULL && _translations[i].lang != NULL; ++i) {
    2684                 if (strncmp(lang, _translations[i].lang, 2) == 0) {
    2685                         _currentTranslation = _translations[i].msgs;
    2686                         _currentTranslationCharset = _translations[i].charset;
    2687                 }
    2688         }
    2689 
    2690         // if found, count entries
    2691         if (_currentTranslation != NULL) {
    2692                 for (const PoMessageEntry *m = _currentTranslation; m->msgid != -1; ++m)
    2693                         ++_currentTranslationMessageEntryCount;
    2694         }
    2695 }
    2696 
    2697 const char *po2c_gettext(const char *msgid) {
    2698         // if no language is set or msgid is empty, return msgid as is
    2699         if (_currentTranslation == NULL || *msgid == '\0')
    2700                 return msgid;
    2701 
    2702         // binary-search for the msgid
    2703         int leftIndex = 0;
    2704         int rightIndex = _currentTranslationMessageEntryCount - 1;
    2705 
    2706         while (rightIndex >= leftIndex) {
    2707                 const int midIndex = (leftIndex + rightIndex) / 2;
    2708                 const PoMessageEntry * const m = &_currentTranslation[midIndex];
    2709 
    2710                 const int compareResult = strcmp(msgid, _messageIds[m->msgid]);
    2711 
    2712                 if (compareResult == 0)
    2713                         return m->msgstr;
    2714                 else if (compareResult < 0)
    2715                         rightIndex = midIndex - 1;
    2716                 else
    2717                         leftIndex = midIndex + 1;
    2718         }
    2719 
    2720         return msgid;
    2721 }
    2722 
    2723 const char *po2c_getcharset(void) {
    2724         if (_currentTranslationCharset)
    2725                 return _currentTranslationCharset;
    2726         else
    2727                 return "ASCII";
    2728 }
    2729 
    2730 int po2c_getnumlangs(void) {
    2731         return ARRAYSIZE(_translations) - 1;
    2732 }
    2733 
    2734 const char *po2c_getlang(const int num) {
    2735         assert(num < ARRAYSIZE(_translations));
    2736         return _translations[num].lang;
    2737 }
    2738 
    2739 const char *po2c_getlangname(const int num) {
    2740         assert(num < ARRAYSIZE(_translations));
    2741         if (_translations[num].langname != NULL)
    2742                 return _translations[num].langname;
    2743         return _translations[num].lang;
    2744 }
  • common/translation.h

     
    2727
    2828#include "common/singleton.h"
    2929#include "common/str-array.h"
     30#include "common/file.h"
    3031
    3132namespace Common {
    3233
     
    5253
    5354typedef Array<TLanguage> TLangArray;
    5455
     56struct PoMessageEntry {
     57        int msgid;
     58        String msgstr;
     59};
     60       
    5561/**
    5662 * Message translation manager.
    5763 */
     
    127133        const char *getCurrentCharset();
    128134
    129135private:
    130         Common::String _syslang;
     136#ifdef USE_TRANSLATION
     137        /**
     138         * Load the list of languages from the translations.dat file
     139         */
     140        void loadTranslationsInfoDat();
     141        /**
     142         * Load the translation for the given language from the translations.dat file
     143         *
     144         * @param index of the language in the list of languages
     145         */
     146        void loadLanguageDat(int);
     147        /**
     148         * Check the header of the given file to make sure it is a valid translations data file.
     149         */
     150        bool checkHeader(File&);
     151       
     152        String _syslang;
     153        StringArray _langs;
     154        StringArray _langNames;
     155       
     156        StringArray _messageIds;
     157        Array<PoMessageEntry> _currentTranslationMessages;
     158        String _currentCharset;
     159        int _currentLang;
     160#endif
    131161};
    132162
    133163} // End of namespace Common
  • Makefile.common

     
    226226DIST_FILES_DOCS:=$(addprefix $(srcdir)/,AUTHORS COPYING COPYING.BSD COPYING.LGPL COPYRIGHT NEWS README)
    227227
    228228# Themes files
    229 DIST_FILES_THEMES:=$(addprefix $(srcdir)/gui/themes/,scummmodern.zip)
     229DIST_FILES_THEMES=scummmodern.zip
     230ifdef USE_TRANSLATION
     231DIST_FILES_THEMES+=translations.dat
     232endif
     233DIST_FILES_THEMES:=$(addprefix $(srcdir)/gui/themes/,$(DIST_FILES_THEMES))
    230234
    231235# Engine data files
    232236DIST_FILES_ENGINEDATA=