GRAPHICS/GUI: Implement charset mapping for TTF fonts.

The charsets used by the translations now need to have a "$(name).cp" file,
which contains an charset index => unicode mapping. Otherwise
create_translations will fail.
This commit is contained in:
Johannes Schickel 2012-01-09 03:33:59 +01:00 committed by Willem Jan Palenstijn
parent 9f3fbe1bd7
commit f63df3bf7b
30 changed files with 1832 additions and 875 deletions

View file

@ -26,7 +26,7 @@
#undef ARRAYSIZE #undef ARRAYSIZE
#endif #endif
#define TRANSLATIONS_DAT_VER 2 #define TRANSLATIONS_DAT_VER 3
#include "common/translation.h" #include "common/translation.h"
#include "common/config-manager.h" #include "common/config-manager.h"
@ -45,7 +45,7 @@ bool operator<(const TLanguage &l, const TLanguage &r) {
return strcmp(l.name, r.name) < 0; return strcmp(l.name, r.name) < 0;
} }
TranslationManager::TranslationManager() : _currentLang(-1) { TranslationManager::TranslationManager() : _currentLang(-1), _charmap(0) {
loadTranslationsInfoDat(); loadTranslationsInfoDat();
// Set the default language // Set the default language
@ -53,6 +53,7 @@ TranslationManager::TranslationManager() : _currentLang(-1) {
} }
TranslationManager::~TranslationManager() { TranslationManager::~TranslationManager() {
delete[] _charmap;
} }
int32 TranslationManager::findMatchingLanguage(const String &lang) { int32 TranslationManager::findMatchingLanguage(const String &lang) {
@ -289,9 +290,14 @@ void TranslationManager::loadTranslationsInfoDat() {
// Get number of translations // Get number of translations
int nbTranslations = in.readUint16BE(); int nbTranslations = in.readUint16BE();
// Skip all the block sizes // Get number of codepages
for (int i = 0; i < nbTranslations + 2; ++i) int nbCodepages = in.readUint16BE();
in.readUint16BE();
// Determine where the codepages start
_charmapStart = 0;
for (int i = 0; i < nbTranslations + 3; ++i)
_charmapStart += in.readUint16BE();
_charmapStart += in.pos();
// Read list of languages // Read list of languages
_langs.resize(nbTranslations); _langs.resize(nbTranslations);
@ -305,6 +311,14 @@ void TranslationManager::loadTranslationsInfoDat() {
_langNames[i] = String(buf, len - 1); _langNames[i] = String(buf, len - 1);
} }
// Read list of codepages
_charmaps.resize(nbCodepages);
for (int i = 0; i < nbCodepages; ++i) {
len = in.readUint16BE();
in.read(buf, len);
_charmaps[i] = String(buf, len - 1);
}
// Read messages // Read messages
int numMessages = in.readUint16BE(); int numMessages = in.readUint16BE();
_messageIds.resize(numMessages); _messageIds.resize(numMessages);
@ -344,9 +358,16 @@ void TranslationManager::loadLanguageDat(int index) {
return; return;
} }
// Get the number of codepages
int nbCodepages = in.readUint16BE();
if (nbCodepages != (int)_charmaps.size()) {
warning("The 'translations.dat' file has changed since starting ScummVM. GUI translation will not be available");
return;
}
// Get size of blocks to skip. // Get size of blocks to skip.
int skipSize = 0; int skipSize = 0;
for (int i = 0; i < index + 2; ++i) for (int i = 0; i < index + 3; ++i)
skipSize += in.readUint16BE(); skipSize += in.readUint16BE();
// We also need to skip the remaining block sizes // We also need to skip the remaining block sizes
skipSize += 2 * (nbTranslations - index); skipSize += 2 * (nbTranslations - index);
@ -380,6 +401,29 @@ void TranslationManager::loadLanguageDat(int index) {
_currentTranslationMessages[i].msgctxt = String(buf, len - 1); _currentTranslationMessages[i].msgctxt = String(buf, len - 1);
} }
} }
// Find the charset
int charmapNum = -1;
for (uint i = 0; i < _charmaps.size(); ++i) {
if (_charmaps[i].equalsIgnoreCase(_currentCharset)) {
charmapNum = i;
break;
}
}
// Setup the new charset mapping
if (charmapNum == -1) {
delete[] _charmap;
_charmap = 0;
} else {
if (!_charmap)
_charmap = new uint32[256];
in.seek(_charmapStart + charmapNum * 256 * 4, SEEK_SET);
for (int i = 0; i < 256; ++i)
_charmap[i] = in.readUint32BE();
}
} }
bool TranslationManager::checkHeader(File &in) { bool TranslationManager::checkHeader(File &in) {

View file

@ -153,6 +153,21 @@ public:
*/ */
String getCurrentCharset() const; String getCurrentCharset() const;
/**
* Returns a pointer to the current charset mapping. This mapping is a
* codepage encoding -> unicode mapping and always 256 entries long.
*
* The MSB of the individual mapped (i.e. unicode) character states
* whether the character is required for this charset. If it is set, the
* character needs to be present in order to have the text displayed.
* This is used in the font loading code to detect whether the font is
* able of supporting this language.
*
* The return value might be 0 in case it's a default ASCII/ISO-8859-1
* map.
*/
const uint32 *getCharsetMapping() const { return _charmap; }
/** /**
* Returns currently selected translation language * Returns currently selected translation language
*/ */
@ -200,11 +215,15 @@ private:
StringArray _langs; StringArray _langs;
StringArray _langNames; StringArray _langNames;
StringArray _charmaps;
StringArray _messageIds; StringArray _messageIds;
Array<PoMessageEntry> _currentTranslationMessages; Array<PoMessageEntry> _currentTranslationMessages;
String _currentCharset; String _currentCharset;
int _currentLang; int _currentLang;
uint32 _charmapStart;
uint32 *_charmap;
}; };
} // End of namespace Common } // End of namespace Common

View file

@ -0,0 +1,104 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* This is a utility for create the translations.dat file from all the po files.
* The generated files is used by ScummVM to propose translation of its GUI.
*/
#include "cp_parser.h"
#include <fstream>
#include <stdio.h>
Codepage::Codepage(const std::string &name, const uint32 *mapping) : _name(name) {
if (!mapping) {
// Default to a ISO-8859-1 mapping
for (unsigned int i = 0; i < 256; ++i)
_mapping[i] = i;
} else {
for (unsigned int i = 0; i < 256; ++i)
_mapping[i] = *mapping++;
}
}
Codepage *parseCodepageMapping(const std::string &filename) {
size_t start = filename.find_last_of("/\\");
if (start == std::string::npos)
start = 0;
// Strip off the filename extension
const size_t pos = filename.find_last_of('.');
const std::string charset(filename.substr(start + 1, pos != std::string::npos ? (pos - start - 1) : std::string::npos));
std::ifstream in(filename.c_str());
if (!in) {
fprintf(stderr, "ERROR: Could not open file \"%s\"!", filename.c_str());
return 0;
}
uint32 mapping[256];
int processedMappings = 0;
std::string line;
while (processedMappings < 256) {
std::getline(in, line);
if (in.eof())
break;
if (in.fail()) {
fprintf(stderr, "ERROR: Reading from file \"%s\" failed!", filename.c_str());
return 0;
}
// In case the line starts with a "#" it is a comment. We also ignore
// empty lines.
if (line.empty() || line[0] == '#')
continue;
// Read the unicode number, we thereby ignore everything else on the line
int unicode, required;
const int parsed = sscanf(line.c_str(), "%d %d", &unicode, &required);
if (parsed < 1 || parsed > 2) {
fprintf(stderr, "ERROR: Line \"%s\" is malformed!", filename.c_str());
return 0;
}
// In case no required integer was given, we assume the character is
// required
if (parsed == 1)
required = 1;
// -1 means default mapping
if (unicode == -1)
unicode = processedMappings;
uint32 unicodeValue = unicode;
if (required)
unicodeValue |= 0x80000000;
mapping[processedMappings++] = (uint32)unicodeValue;
}
// Check whether all character encodings are mapped, if not error out
if (processedMappings != 256) {
fprintf(stderr, "ERROR: File \"%s\" does not contain mappings for exactly 256 characters!", filename.c_str());
return 0;
}
// Return the codepage
return new Codepage(charset, mapping);
}

View file

@ -0,0 +1,54 @@
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* This is a utility for create the translations.dat file from all the po files.
* The generated files is used by ScummVM to propose translation of its GUI.
*/
#ifndef CP_PARSER_H
#define CP_PARSER_H
#include "create_translations.h"
#include <string>
/**
* Codepage description.
*
* This includes a name, and the codepage -> unicode mapping.
*/
class Codepage {
public:
Codepage(const std::string &name, const uint32 *mapping);
const std::string &getName() const { return _name; }
uint32 getMapping(unsigned char src) const { return _mapping[src]; }
private:
std::string _name;
uint32 _mapping[256];
};
/**
* Parse the codepage file and create a codepage.
*/
Codepage *parseCodepageMapping(const std::string &filename);
#endif

View file

@ -25,6 +25,8 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <ctype.h>
#include <vector>
// HACK to allow building with the SDL backend on MinGW // HACK to allow building with the SDL backend on MinGW
// see bug #1800764 "TOOLS: MinGW tools building broken" // see bug #1800764 "TOOLS: MinGW tools building broken"
@ -34,8 +36,23 @@
#include "create_translations.h" #include "create_translations.h"
#include "po_parser.h" #include "po_parser.h"
#include "cp_parser.h"
#define TRANSLATIONS_DAT_VER 2 // 1 byte #define TRANSLATIONS_DAT_VER 3 // 1 byte
// Portable implementation of stricmp / strcasecmp / strcmpi.
int scumm_stricmp(const char *s1, const char *s2) {
uint8 l1, l2;
do {
// Don't use ++ inside tolower, in case the macro uses its
// arguments more than once.
l1 = (uint8)*s1++;
l1 = tolower(l1);
l2 = (uint8)*s2++;
l2 = tolower(l2);
} while (l1 == l2 && l1 != 0);
return l1 - l2;
}
// Padding buffer (filled with 0) used if we want to aligned writes // Padding buffer (filled with 0) used if we want to aligned writes
// static uint8 padBuf[DATAALIGNMENT]; // static uint8 padBuf[DATAALIGNMENT];
@ -52,6 +69,13 @@ void writeUint16BE(FILE *fp, uint16 value) {
writeByte(fp, (uint8)(value & 0xFF)); writeByte(fp, (uint8)(value & 0xFF));
} }
void writeUint32BE(FILE *fp, uint32 value) {
writeByte(fp, (uint8)(value >> 24));
writeByte(fp, (uint8)(value >> 16));
writeByte(fp, (uint8)(value >> 8));
writeByte(fp, (uint8)(value & 0xFF));
}
int stringSize(const char *string) { int stringSize(const char *string) {
// Each string is preceded by its size coded on 2 bytes // Each string is preceded by its size coded on 2 bytes
if (string == NULL) if (string == NULL)
@ -82,14 +106,51 @@ void writeString(FILE *fp, const char *string) {
// Main // Main
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
// Build the translation list std::vector<Codepage *> codepages;
// Add default codepages, we won't store them in the output later on
codepages.push_back(new Codepage("ascii", 0));
codepages.push_back(new Codepage("iso-8859-1", 0));
// Build the translation and codepage list
PoMessageList messageIds; PoMessageList messageIds;
PoMessageEntryList **translations = new PoMessageEntryList*[argc - 1]; std::vector<PoMessageEntryList *> translations;
int numLangs = 0; int numLangs = 0;
for (int i = 1; i < argc; ++i) { for (int i = 1; i < argc; ++i) {
translations[numLangs] = parsePoFile(argv[i], messageIds); // Check file extension
if (translations[numLangs] != NULL) int len = strlen(argv[i]);
++numLangs; if (scumm_stricmp(argv[i] + len - 2, "po") == 0) {
PoMessageEntryList *po = parsePoFile(argv[i], messageIds);
if (po != NULL) {
translations.push_back(po);
++numLangs;
}
} else if (scumm_stricmp(argv[i] + len - 2, "cp") == 0) {
// Else try to parse an codepage
Codepage *co = parseCodepageMapping(argv[i]);
if (co)
codepages.push_back(co);
}
}
// Parse all charset mappings
for (int i = 0; i < numLangs; ++i) {
bool found = false;
for (size_t j = 0; j < codepages.size(); ++j) {
if (scumm_stricmp(codepages[j]->getName().c_str(), translations[i]->charset()) == 0) {
found = true;
break;
}
}
// In case the codepage was not found error out
if (!found) {
fprintf(stderr, "ERROR: No codepage mapping for codepage \"%s\" present!\n", translations[i]->charset());
for (size_t j = 0; j < translations.size(); ++j)
delete translations[j];
for (size_t j = 0; j < codepages.size(); ++j)
delete codepages[j];
return -1;
}
} }
FILE *outFile; FILE *outFile;
@ -110,6 +171,8 @@ int main(int argc, char *argv[]) {
// Write number of translations // Write number of translations
writeUint16BE(outFile, numLangs); writeUint16BE(outFile, numLangs);
// Write number of codepages, we don't save ascii and iso-8859-1
writeUint16BE(outFile, codepages.size() - 2);
// Write the length of each data block here. // Write the length of each data block here.
// We could write it at the start of each block but that would mean that // We could write it at the start of each block but that would mean that
@ -119,9 +182,14 @@ int main(int argc, char *argv[]) {
// file and can then skip to the block we want. // file and can then skip to the block we want.
// Blocks are: // Blocks are:
// 1. List of languages with the language name // 1. List of languages with the language name
// 2. Original messages (i.e. english) // 2. List of codepages
// 3. First translation // 3. Original messages (i.e. english)
// 4. Second translation // 4. First translation
// 5. Second translation
// ...
// n. First codepage (These don't have any data size, since they are all
// 256 * 4 bytes long)
// n+1. Second codepage
// ... // ...
// Write length for translation description // Write length for translation description
@ -132,6 +200,12 @@ int main(int argc, char *argv[]) {
} }
writeUint16BE(outFile, len); writeUint16BE(outFile, len);
// Write length for the codepage names
len = 0;
for (size_t j = 2; j < codepages.size(); ++j)
len += stringSize(codepages[j]->getName().c_str());
writeUint16BE(outFile, len);
// Write size for the original language (english) block // Write size for the original language (english) block
// It starts with the number of strings coded on 2 bytes followed by each // It starts with the number of strings coded on 2 bytes followed by each
// string (two bytes for the number of chars and the string itself). // string (two bytes for the number of chars and the string itself).
@ -159,6 +233,11 @@ int main(int argc, char *argv[]) {
writeString(outFile, translations[lang]->languageName()); writeString(outFile, translations[lang]->languageName());
} }
// Write list of codepages
for (size_t j = 2; j < codepages.size(); ++j) {
writeString(outFile, codepages[j]->getName().c_str());
}
// Write original messages // Write original messages
writeUint16BE(outFile, messageIds.size()); writeUint16BE(outFile, messageIds.size());
for (i = 0; i < messageIds.size(); ++i) { for (i = 0; i < messageIds.size(); ++i) {
@ -176,12 +255,18 @@ int main(int argc, char *argv[]) {
} }
} }
// Write codepages
for (size_t j = 2; j < codepages.size(); ++j) {
const Codepage *cp = codepages[j];
for (i = 0; i < 256; ++i)
writeUint32BE(outFile, cp->getMapping(i));
}
fclose(outFile); fclose(outFile);
// Clean the memory // Clean the memory
for (i = 0; i < numLangs; ++i) for (i = 0; i < numLangs; ++i)
delete translations[i]; delete translations[i];
delete[] translations;
return 0; return 0;
} }

View file

@ -25,6 +25,7 @@
typedef unsigned char uint8; typedef unsigned char uint8;
typedef unsigned short uint16; typedef unsigned short uint16;
typedef unsigned int uint32;
typedef signed short int16; typedef signed short int16;
#endif /* CREATE_TRANSLATIONS_H */ #endif /* CREATE_TRANSLATIONS_H */

View file

@ -1,6 +1,7 @@
MODULE := devtools/create_translations MODULE := devtools/create_translations
MODULE_OBJS := \ MODULE_OBJS := \
cp_parser.o \
po_parser.o \ po_parser.o \
create_translations.o create_translations.o

View file

@ -101,7 +101,7 @@ public:
TTFFont(); TTFFont();
virtual ~TTFFont(); virtual ~TTFFont();
bool load(Common::SeekableReadStream &stream, int size, bool monochrome); bool load(Common::SeekableReadStream &stream, int size, bool monochrome, const uint32 *mapping);
virtual int getFontHeight() const; virtual int getFontHeight() const;
@ -157,7 +157,7 @@ TTFFont::~TTFFont() {
} }
} }
bool TTFFont::load(Common::SeekableReadStream &stream, int size, bool monochrome) { bool TTFFont::load(Common::SeekableReadStream &stream, int size, bool monochrome, const uint32 *mapping) {
if (!g_ttf.isInitialized()) if (!g_ttf.isInitialized())
return false; return false;
@ -211,10 +211,24 @@ bool TTFFont::load(Common::SeekableReadStream &stream, int size, bool monochrome
_width = ftCeil26_6(FT_MulFix(_face->max_advance_width, _face->size->metrics.x_scale)); _width = ftCeil26_6(FT_MulFix(_face->max_advance_width, _face->size->metrics.x_scale));
_height = _ascent - _descent + 1; _height = _ascent - _descent + 1;
// Load all ISO-8859-1 characters. if (!mapping) {
for (uint i = 0; i < 256; ++i) { // Load all ISO-8859-1 characters.
if (!cacheGlyph(_glyphs[i], _glyphSlots[i], i)) for (uint i = 0; i < 256; ++i) {
_glyphSlots[i] = 0; if (!cacheGlyph(_glyphs[i], _glyphSlots[i], i))
_glyphSlots[i] = 0;
}
} else {
for (uint i = 0; i < 256; ++i) {
const uint32 unicode = mapping[i] & 0x7FFFFFFF;
const bool isRequired = (mapping[i] & 0x80000000) != 0;
// Check whether loading an important glyph fails and error out if
// that is the case.
if (!cacheGlyph(_glyphs[i], _glyphSlots[i], unicode)) {
_glyphSlots[i] = 0;
if (isRequired)
return false;
}
}
} }
_initialized = (_glyphs.size() != 0); _initialized = (_glyphs.size() != 0);
@ -447,10 +461,10 @@ bool TTFFont::cacheGlyph(Glyph &glyph, FT_UInt &slot, uint chr) {
return true; return true;
} }
Font *loadTTFFont(Common::SeekableReadStream &stream, int size, bool monochrome) { Font *loadTTFFont(Common::SeekableReadStream &stream, int size, bool monochrome, const uint32 *mapping) {
TTFFont *font = new TTFFont(); TTFFont *font = new TTFFont();
if (!font->load(stream, size, monochrome)) { if (!font->load(stream, size, monochrome, mapping)) {
delete font; delete font;
return 0; return 0;
} }

View file

@ -32,7 +32,7 @@
namespace Graphics { namespace Graphics {
class Font; class Font;
Font *loadTTFFont(Common::SeekableReadStream &stream, int size, bool monochrome = false); Font *loadTTFFont(Common::SeekableReadStream &stream, int size, bool monochrome = false, const uint32 *mapping = 0);
} // End of namespace Graphics } // End of namespace Graphics

View file

@ -1399,12 +1399,6 @@ DrawData ThemeEngine::parseDrawDataId(const Common::String &name) const {
const Graphics::Font *ThemeEngine::loadScalableFont(const Common::String &filename, const Common::String &charset, const int pointsize, Common::String &name) { const Graphics::Font *ThemeEngine::loadScalableFont(const Common::String &filename, const Common::String &charset, const int pointsize, Common::String &name) {
#ifdef USE_FREETYPE2 #ifdef USE_FREETYPE2
// We only support ISO-8859-1 for TTF right now.
if (!charset.empty()
&& !charset.equalsIgnoreCase("iso-8859-1")
&& !charset.equalsIgnoreCase("ascii"))
return 0;
name = Common::String::format("%s-%s@%d", filename.c_str(), charset.c_str(), pointsize); name = Common::String::format("%s-%s@%d", filename.c_str(), charset.c_str(), pointsize);
// Try already loaded fonts. // Try already loaded fonts.
@ -1418,7 +1412,7 @@ const Graphics::Font *ThemeEngine::loadScalableFont(const Common::String &filena
for (Common::ArchiveMemberList::const_iterator i = members.begin(), end = members.end(); i != end; ++i) { for (Common::ArchiveMemberList::const_iterator i = members.begin(), end = members.end(); i != end; ++i) {
Common::SeekableReadStream *stream = (*i)->createReadStream(); Common::SeekableReadStream *stream = (*i)->createReadStream();
if (stream) { if (stream) {
font = Graphics::loadTTFFont(*stream, pointsize, false); font = Graphics::loadTTFFont(*stream, pointsize, false, TransMan.getCharsetMapping());
delete stream; delete stream;
if (font) if (font)

Binary file not shown.

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-04 20:51+0100\n" "PO-Revision-Date: 2011-10-04 20:51+0100\n"
"Last-Translator: Jordi Vilalta Prat <jvprat@jvprat.com>\n" "Last-Translator: Jordi Vilalta Prat <jvprat@jvprat.com>\n"
"Language-Team: Catalan <scummvm-devel@lists.sf.net>\n" "Language-Team: Catalan <scummvm-devel@lists.sf.net>\n"
@ -45,7 +45,7 @@ msgstr "Amunt"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -57,22 +57,22 @@ msgstr "Cancel
msgid "Choose" msgid "Choose"
msgstr "Escull" msgstr "Escull"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Tanca" msgstr "Tanca"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Clic del ratolí" msgstr "Clic del ratolí"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Mostra el teclat" msgstr "Mostra el teclat"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Assigna les tecles" msgstr "Assigna les tecles"
@ -86,11 +86,11 @@ msgstr "Assigna"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -346,7 +346,7 @@ msgstr ""
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~T~anca" msgstr "~T~anca"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Surt de ScummVM" msgstr "Surt de ScummVM"
@ -354,7 +354,7 @@ msgstr "Surt de ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "~Q~uant a..." msgstr "~Q~uant a..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Quant a ScummVM" msgstr "Quant a ScummVM"
@ -968,28 +968,28 @@ msgstr "Partida sense t
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Seleccioneu un Tema" msgstr "Seleccioneu un Tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX desactivats" msgstr "GFX desactivats"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX desactivats" msgstr "GFX desactivats"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Pintat estàndard (16bpp)" msgstr "Pintat estàndard (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Estàndard (16bpp)" msgstr "Estàndard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Pintat amb antialias (16bpp)" msgstr "Pintat amb antialias (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Amb antialias (16bpp)" msgstr "Amb antialias (16bpp)"
@ -1002,30 +1002,30 @@ msgstr "Neteja el valor"
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "El motor no suporta el nivell de depuració '%s'" msgstr "El motor no suporta el nivell de depuració '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menú" msgstr "Menú"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Salta" msgstr "Salta"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pausa" msgstr "Pausa"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Salta la línia" msgstr "Salta la línia"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Error al executar el joc:" msgstr "Error al executar el joc:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "No s'ha pogut trobar cap motor capaç d'executar el joc seleccionat" msgstr "No s'ha pogut trobar cap motor capaç d'executar el joc seleccionat"
@ -1197,23 +1197,23 @@ msgstr "~C~ancel
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~ecles" msgstr "~T~ecles"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "No s'ha pogut iniciar el format de color." msgstr "No s'ha pogut iniciar el format de color."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "No s'ha pogut canviar al mode de vídeo: '" msgstr "No s'ha pogut canviar al mode de vídeo: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "No s'ha pogut aplicar la configuració de la relació d'aspecte." msgstr "No s'ha pogut aplicar la configuració de la relació d'aspecte."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "No s'ha pogut aplicar l'ajust de pantalla completa." msgstr "No s'ha pogut aplicar l'ajust de pantalla completa."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1227,7 +1227,7 @@ msgstr ""
"els fitxers de dades al disc dur.\n" "els fitxers de dades al disc dur.\n"
"Consulteu el fitxer README per a més detalls." "Consulteu el fitxer README per a més detalls."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1241,7 +1241,7 @@ msgstr ""
"tal de poder sentir la música del joc.\n" "tal de poder sentir la música del joc.\n"
"Consulteu el fitxer README per a més detalls." "Consulteu el fitxer README per a més detalls."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1251,7 +1251,7 @@ msgstr ""
"pel ScummVM. Com a tal, probablement serà inestable, i pot ser que les " "pel ScummVM. Com a tal, probablement serà inestable, i pot ser que les "
"partides que deseu no funcionin en versions futures de ScummVM." "partides que deseu no funcionin en versions futures de ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Inicia de totes maneres" msgstr "Inicia de totes maneres"
@ -2011,56 +2011,56 @@ msgstr "No s'ha pogut esborrar el fitxer."
msgid "Failed to save game" msgid "Failed to save game"
msgstr "No s'ha pogut desar l'estat del joc" msgstr "No s'ha pogut desar l'estat del joc"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Dreta" msgstr "Dreta"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Apaga" msgstr "Apaga"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Cursor Dreta" msgstr "Cursor Dreta"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Restaura" msgstr "Restaura"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~pcions" msgstr "~O~pcions"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Escull" msgstr "Escull"
@ -2095,17 +2095,17 @@ msgstr ""
"El fitxer \"sky.cpt\" té una mida incorrecta.\n" "El fitxer \"sky.cpt\" té una mida incorrecta.\n"
"Torneu a baixar-lo de www.scummvm.org" "Torneu a baixar-lo de www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"S'han trobat escenes en DXA, però s'ha compilat el ScummVM sense suport de " "S'han trobat escenes en DXA, però s'ha compilat el ScummVM sense suport de "
"zlib" "zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Les escenes MPEG2 ja no estan suportades" msgstr "Les escenes MPEG2 ja no estan suportades"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "No s'ha trobat l'escena '%s'" msgstr "No s'ha trobat l'escena '%s'"
@ -2392,24 +2392,24 @@ msgstr "Mode Touchpad activat."
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Mode Touchpad desactivat." msgstr "Mode Touchpad desactivat."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Amaga ScummVM" msgstr "Amaga ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Oculta els altres" msgstr "Oculta els altres"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Mostra-ho tot" msgstr "Mostra-ho tot"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Finestra" msgstr "Finestra"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimitza" msgstr "Minimitza"

View file

@ -7,14 +7,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.4.0git\n" "Project-Id-Version: ScummVM 1.4.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-12-27 17:46+0100\n" "PO-Revision-Date: 2011-12-27 17:46+0100\n"
"Last-Translator: Zbynìk Schwarz <zbynek.schwarz@gmail.com>\n" "Last-Translator: Zbynìk Schwarz <zbynek.schwarz@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: Cesky\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n" "Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: Cesky\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
"X-Poedit-Language: Czech\n" "X-Poedit-Language: Czech\n"
"X-Poedit-Country: CZECH REPUBLIC\n" "X-Poedit-Country: CZECH REPUBLIC\n"
@ -49,7 +49,7 @@ msgstr "J
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "Zru
msgid "Choose" msgid "Choose"
msgstr "Zvolit" msgstr "Zvolit"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Zavøít" msgstr "Zavøít"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Kliknutí my¹í" msgstr "Kliknutí my¹í"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Zobrazit klávesnici" msgstr "Zobrazit klávesnici"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Pøemapovat klávesy" msgstr "Pøemapovat klávesy"
@ -90,11 +90,11 @@ msgstr "Mapovat"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -347,7 +347,7 @@ msgstr "Toto ID hry je u
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~U~konèit" msgstr "~U~konèit"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Ukonèit ScummVM" msgstr "Ukonèit ScummVM"
@ -355,7 +355,7 @@ msgstr "Ukon
msgid "A~b~out..." msgid "A~b~out..."
msgstr "~O~ Programu..." msgstr "~O~ Programu..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "O ScummVM" msgstr "O ScummVM"
@ -958,28 +958,28 @@ msgstr "Bezejmenn
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Vyberte Vzhled" msgstr "Vyberte Vzhled"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX zakázáno" msgstr "GFX zakázáno"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX zakázáno" msgstr "GFX zakázáno"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standardní Vykreslovaè (16bpp)" msgstr "Standardní Vykreslovaè (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standardní (16bpp)" msgstr "Standardní (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Vykreslovaè s vyhlazenými hranami (16bpp)" msgstr "Vykreslovaè s vyhlazenými hranami (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "S vyhlazenými hranami (16bpp)" msgstr "S vyhlazenými hranami (16bpp)"
@ -992,30 +992,30 @@ msgstr "Vy
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Jádro nepodporuje úroveò ladìní '%s'" msgstr "Jádro nepodporuje úroveò ladìní '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menu" msgstr "Menu"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Pøeskoèit" msgstr "Pøeskoèit"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pauza" msgstr "Pauza"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Pøeskoèit øádek" msgstr "Pøeskoèit øádek"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Chyba pøi spu¹tìní hry:" msgstr "Chyba pøi spu¹tìní hry:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Nelze nalézt ¾ádné jádro schopné vybranou hru spustit" msgstr "Nelze nalézt ¾ádné jádro schopné vybranou hru spustit"
@ -1187,23 +1187,23 @@ msgstr "~Z~ru
msgid "~K~eys" msgid "~K~eys"
msgstr "~K~lávesy" msgstr "~K~lávesy"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Nelze zavést barevný formát." msgstr "Nelze zavést barevný formát."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Nelze pøepnout na re¾im obrazu: '" msgstr "Nelze pøepnout na re¾im obrazu: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Nelze pou¾ít nastavení pomìru stran." msgstr "Nelze pou¾ít nastavení pomìru stran."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Nelze pou¾ít nastavení celé obrazovky." msgstr "Nelze pou¾ít nastavení celé obrazovky."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1217,7 +1217,7 @@ msgstr ""
"datové soubory na Vá¹ pevný disk.\n" "datové soubory na Vá¹ pevný disk.\n"
"Pro podrobnosti si pøeètìte README." "Pro podrobnosti si pøeètìte README."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1231,7 +1231,7 @@ msgstr ""
"abyste mohli poslouchat hudbu ve høe.\n" "abyste mohli poslouchat hudbu ve høe.\n"
"Pro podrobnosti si pøeètìte README." "Pro podrobnosti si pøeètìte README."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1241,7 +1241,7 @@ msgstr ""
"ScummVM. Proto je mo¾né, ¾e bude nestabilní a jakékoli ulo¾ené hry nemusí " "ScummVM. Proto je mo¾né, ¾e bude nestabilní a jakékoli ulo¾ené hry nemusí "
"fungovat v budoucích verzích ScummVM." "fungovat v budoucích verzích ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Pøesto spustit" msgstr "Pøesto spustit"
@ -2000,51 +2000,51 @@ msgstr "Nelze smazat soubor."
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Nelze ulo¾it hru." msgstr "Nelze ulo¾it hru."
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "Útok 1" msgstr "Útok 1"
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "Útok 2" msgstr "Útok 2"
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "Útok 3" msgstr "Útok 3"
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "Vpøed" msgstr "Vpøed"
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "Vzad" msgstr "Vzad"
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "Pøesunout se Doleva" msgstr "Pøesunout se Doleva"
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
msgid "Slide Right" msgid "Slide Right"
msgstr "Pøesunout se Doprava" msgstr "Pøesunout se Doprava"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
msgid "Turn Left" msgid "Turn Left"
msgstr "Otoèit se doleva" msgstr "Otoèit se doleva"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
msgid "Turn Right" msgid "Turn Right"
msgstr "Otoèit se doprava" msgstr "Otoèit se doprava"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
msgid "Rest" msgid "Rest"
msgstr "Odpoèinout si" msgstr "Odpoèinout si"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
msgid "Options" msgid "Options"
msgstr "Volby" msgstr "Volby"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Zvolit Kouzlo" msgstr "Zvolit Kouzlo"
@ -2078,15 +2078,15 @@ msgstr ""
"Soubor \"sky.cpt\" má nesprávnou velikost.\n" "Soubor \"sky.cpt\" má nesprávnou velikost.\n"
"Stáhnìte si ho, prosím, (znovu) z www.scummvm.org" "Stáhnìte si ho, prosím, (znovu) z www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "Videa DXA nalezena, ale ScummVM byl sestaven bez podpory zlib" msgstr "Videa DXA nalezena, ale ScummVM byl sestaven bez podpory zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Videa MPGE2 ji¾ nejsou podporována" msgstr "Videa MPGE2 ji¾ nejsou podporována"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Video '%s' nenalezeno" msgstr "Video '%s' nenalezeno"
@ -2372,24 +2372,24 @@ msgstr "Touchpad re
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Touchpad re¾im vypnut" msgstr "Touchpad re¾im vypnut"
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Skrýt ScummVM" msgstr "Skrýt ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Skrýt Ostatní" msgstr "Skrýt Ostatní"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Zobrazit V¹e" msgstr "Zobrazit V¹e"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Okno" msgstr "Okno"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimalizovat" msgstr "Minimalizovat"

View file

@ -1,12 +1,12 @@
# Copyright (C) 2010-2012 ScummVM Team # Copyright (C) 2010-2012 ScummVM Team
# This file is distributed under the same license as the ScummVM package. # This file is distributed under the same license as the ScummVM package.
# Steffen Nyeland <steffen@nyeland.dk>, 2010. # Steffen Nyeland <steffen@nyeland.dk>, 2010.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-01-08 22:53+0100\n" "PO-Revision-Date: 2011-01-08 22:53+0100\n"
"Last-Translator: Steffen Nyeland <steffen@nyeland.dk>\n" "Last-Translator: Steffen Nyeland <steffen@nyeland.dk>\n"
"Language-Team: Steffen Nyeland <steffen@nyeland.dk>\n" "Language-Team: Steffen Nyeland <steffen@nyeland.dk>\n"
@ -45,7 +45,7 @@ msgstr "G
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -57,22 +57,22 @@ msgstr "Fortryd"
msgid "Choose" msgid "Choose"
msgstr "Vælg" msgstr "Vælg"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Luk" msgstr "Luk"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Muse klik" msgstr "Muse klik"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Vis tastatur" msgstr "Vis tastatur"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Kortlæg taster" msgstr "Kortlæg taster"
@ -86,11 +86,11 @@ msgstr "Kortl
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -345,7 +345,7 @@ msgstr "Dette spil ID er allerede i brug. V
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~A~fslut" msgstr "~A~fslut"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Afslut ScummVM" msgstr "Afslut ScummVM"
@ -353,7 +353,7 @@ msgstr "Afslut ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "~O~m..." msgstr "~O~m..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Om ScummVM" msgstr "Om ScummVM"
@ -956,28 +956,28 @@ msgstr "Unavngivet gemmetilstand"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Vælg et tema" msgstr "Vælg et tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Deaktiveret GFX" msgstr "Deaktiveret GFX"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Deaktiveret GFX" msgstr "Deaktiveret GFX"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standard renderer (16bpp)" msgstr "Standard renderer (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Antialias renderer (16bpp)" msgstr "Antialias renderer (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Antialias (16bpp)" msgstr "Antialias (16bpp)"
@ -990,30 +990,30 @@ msgstr "Slet v
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Motor understøtter ikke fejlfindingsniveau '%s'" msgstr "Motor understøtter ikke fejlfindingsniveau '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menu" msgstr "Menu"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Spring over" msgstr "Spring over"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pause" msgstr "Pause"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Spring linje over" msgstr "Spring linje over"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Fejl ved kørsel af spil:" msgstr "Fejl ved kørsel af spil:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Kunne ikke finde nogen motor istand til at afvikle det valgte spil" msgstr "Kunne ikke finde nogen motor istand til at afvikle det valgte spil"
@ -1189,25 +1189,25 @@ msgstr "~F~ortryd"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~aster" msgstr "~T~aster"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "" msgstr ""
#: engines/engine.cpp:241 #: engines/engine.cpp:243
#, fuzzy #, fuzzy
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Aktuel videotilstand:" msgstr "Aktuel videotilstand:"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
#, fuzzy #, fuzzy
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Skift billedformat korrektion" msgstr "Skift billedformat korrektion"
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "" msgstr ""
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1216,7 +1216,7 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1225,14 +1225,14 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
"not work in future versions of ScummVM." "not work in future versions of ScummVM."
msgstr "" msgstr ""
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "" msgstr ""
@ -2012,56 +2012,56 @@ msgstr ""
"\n" "\n"
"%s" "%s"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Højre" msgstr "Højre"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Sluk" msgstr "Sluk"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Pil til højre" msgstr "Pil til højre"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Gendan" msgstr "Gendan"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~I~ndstillinger" msgstr "~I~ndstillinger"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Vælg" msgstr "Vælg"
@ -2087,15 +2087,15 @@ msgid ""
"Please (re)download it from www.scummvm.org" "Please (re)download it from www.scummvm.org"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "" msgstr ""
@ -2357,26 +2357,26 @@ msgstr "Pegeplade tilstand aktiveret."
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Pegeplade tilstand deaktiveret." msgstr "Pegeplade tilstand deaktiveret."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
#, fuzzy #, fuzzy
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Afslut ScummVM" msgstr "Afslut ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
#, fuzzy #, fuzzy
msgid "Window" msgid "Window"
msgstr "Windows MIDI" msgstr "Windows MIDI"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "" msgstr ""

View file

@ -2,12 +2,12 @@
# Copyright (C) 2010-2012 ScummVM Team # Copyright (C) 2010-2012 ScummVM Team
# This file is distributed under the same license as the ScummVM package. # This file is distributed under the same license as the ScummVM package.
# Simon Sawatzki <SimSaw@gmx.de>, Lothar Serra Mari <Lothar@Windowsbase.de>, 2011. # Simon Sawatzki <SimSaw@gmx.de>, Lothar Serra Mari <Lothar@Windowsbase.de>, 2011.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.4.0git\n" "Project-Id-Version: ScummVM 1.4.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-15 18:15+0100\n" "PO-Revision-Date: 2011-10-15 18:15+0100\n"
"Last-Translator: Simon Sawatzki <SimSaw@gmx.de>\n" "Last-Translator: Simon Sawatzki <SimSaw@gmx.de>\n"
"Language-Team: Simon Sawatzki <SimSaw@gmx.de> (Lead), Lothar Serra Mari " "Language-Team: Simon Sawatzki <SimSaw@gmx.de> (Lead), Lothar Serra Mari "
@ -47,7 +47,7 @@ msgstr "Pfad hoch"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -59,22 +59,22 @@ msgstr "Abbrechen"
msgid "Choose" msgid "Choose"
msgstr "Auswählen" msgstr "Auswählen"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Mausklick" msgstr "Mausklick"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Tastatur anzeigen" msgstr "Tastatur anzeigen"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Tasten neu zuweisen" msgstr "Tasten neu zuweisen"
@ -88,11 +88,11 @@ msgstr "Zuweisen"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -347,7 +347,7 @@ msgstr "Diese Spielkennung ist schon vergeben. Bitte eine andere w
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~B~eenden" msgstr "~B~eenden"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "ScummVM beenden" msgstr "ScummVM beenden"
@ -355,7 +355,7 @@ msgstr "ScummVM beenden"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "Übe~r~" msgstr "Übe~r~"
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Über ScummVM" msgstr "Über ScummVM"
@ -973,28 +973,28 @@ msgstr "Unbenannt"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Thema auswählen" msgstr "Thema auswählen"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX ausgeschaltet" msgstr "GFX ausgeschaltet"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX ausgeschaltet" msgstr "GFX ausgeschaltet"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standard-Renderer (16bpp)" msgstr "Standard-Renderer (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Kantenglättung (16bpp)" msgstr "Kantenglättung (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Kantenglättung (16bpp)" msgstr "Kantenglättung (16bpp)"
@ -1007,30 +1007,30 @@ msgstr "Wert l
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Engine unterstützt den Debug-Level \"%s\" nicht." msgstr "Engine unterstützt den Debug-Level \"%s\" nicht."
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Überspringen" msgstr "Überspringen"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pause" msgstr "Pause"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Zeile überspringen" msgstr "Zeile überspringen"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Fehler beim Ausführen des Spiels:" msgstr "Fehler beim Ausführen des Spiels:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Konnte keine Spiel-Engine finden, die dieses Spiel starten kann." msgstr "Konnte keine Spiel-Engine finden, die dieses Spiel starten kann."
@ -1206,23 +1206,23 @@ msgstr "~A~bbrechen"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~asten" msgstr "~T~asten"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Konnte Farbenformat nicht initialisieren." msgstr "Konnte Farbenformat nicht initialisieren."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Konnte nicht zu Grafikmodus wechseln: '" msgstr "Konnte nicht zu Grafikmodus wechseln: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Konnte Einstellung für Seitenverhältniskorrektur nicht anwenden." msgstr "Konnte Einstellung für Seitenverhältniskorrektur nicht anwenden."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Konnte Einstellung für Vollbildmodus nicht anwenden." msgstr "Konnte Einstellung für Vollbildmodus nicht anwenden."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1238,7 +1238,7 @@ msgstr ""
"Lesen Sie die Liesmich-Datei für\n" "Lesen Sie die Liesmich-Datei für\n"
"weitere Informationen." "weitere Informationen."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1253,7 +1253,7 @@ msgstr ""
"Spiel hören zu können. Lesen Sie die\n" "Spiel hören zu können. Lesen Sie die\n"
"Liesmich-Datei für weitere Informationen." "Liesmich-Datei für weitere Informationen."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1264,7 +1264,7 @@ msgstr ""
"und jegliche Spielstände, die Sie erstellen, könnten in zukünftigen " "und jegliche Spielstände, die Sie erstellen, könnten in zukünftigen "
"Versionen von ScummVM nicht mehr funktionieren." "Versionen von ScummVM nicht mehr funktionieren."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Trotzdem starten" msgstr "Trotzdem starten"
@ -2025,56 +2025,56 @@ msgstr "Konnte Datei nicht l
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Konnte Spielstand nicht speichern." msgstr "Konnte Spielstand nicht speichern."
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Rechts" msgstr "Rechts"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Schalt aus" msgstr "Schalt aus"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Zeiger nach rechts" msgstr "Zeiger nach rechts"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Laden" msgstr "Laden"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~ptionen" msgstr "~O~ptionen"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Auswählen" msgstr "Auswählen"
@ -2112,17 +2112,17 @@ msgstr ""
"Bitte laden Sie diese Datei (erneut) von\n" "Bitte laden Sie diese Datei (erneut) von\n"
"www.scummvm.org herunter." "www.scummvm.org herunter."
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"DXA-Zwischensequenzen gefunden, aber ScummVM wurde ohne Zlib-Unterstützung " "DXA-Zwischensequenzen gefunden, aber ScummVM wurde ohne Zlib-Unterstützung "
"erstellt." "erstellt."
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "MPEG2-Zwischensequenzen werden nicht mehr unterstützt." msgstr "MPEG2-Zwischensequenzen werden nicht mehr unterstützt."
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Zwischensequenz \"%s\" gefunden" msgstr "Zwischensequenz \"%s\" gefunden"
@ -2409,24 +2409,24 @@ msgstr "Touchpad-Modus aktiviert."
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Touchpad-Modus ausgeschaltet." msgstr "Touchpad-Modus ausgeschaltet."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "ScummVM verbergen" msgstr "ScummVM verbergen"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Andere verbergen" msgstr "Andere verbergen"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Alles zeigen" msgstr "Alles zeigen"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Fenster" msgstr "Fenster"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimieren" msgstr "Minimieren"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.4.0svn\n" "Project-Id-Version: ScummVM 1.4.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-23 21:53+0100\n" "PO-Revision-Date: 2011-10-23 21:53+0100\n"
"Last-Translator: Tomás Maidagan\n" "Last-Translator: Tomás Maidagan\n"
"Language-Team: \n" "Language-Team: \n"
@ -45,7 +45,7 @@ msgstr "Arriba"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -57,22 +57,22 @@ msgstr "Cancelar"
msgid "Choose" msgid "Choose"
msgstr "Aceptar" msgstr "Aceptar"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Cerrar" msgstr "Cerrar"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Clic de ratón" msgstr "Clic de ratón"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Mostrar el teclado" msgstr "Mostrar el teclado"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Asignar teclas" msgstr "Asignar teclas"
@ -86,11 +86,11 @@ msgstr "Asignar"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -345,7 +345,7 @@ msgstr "Esta ID ya est
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~S~alir" msgstr "~S~alir"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Cerrar ScummVM" msgstr "Cerrar ScummVM"
@ -353,7 +353,7 @@ msgstr "Cerrar ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "Acerca ~d~e" msgstr "Acerca ~d~e"
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Acerca de ScummVM" msgstr "Acerca de ScummVM"
@ -963,28 +963,28 @@ msgstr "Partida sin nombre"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Selecciona un tema" msgstr "Selecciona un tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX desactivados" msgstr "GFX desactivados"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX desactivados" msgstr "GFX desactivados"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Estándar (16bpp)" msgstr "Estándar (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Estándar (16bpp)" msgstr "Estándar (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Suavizado (16bpp)" msgstr "Suavizado (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Suavizado (16bpp)" msgstr "Suavizado (16bpp)"
@ -997,30 +997,30 @@ msgstr "Eliminar valor"
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "El motor no soporta el nivel de debug '%s'" msgstr "El motor no soporta el nivel de debug '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menú" msgstr "Menú"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Saltar" msgstr "Saltar"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pausar" msgstr "Pausar"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Saltar frase" msgstr "Saltar frase"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Error al ejecutar el juego:" msgstr "Error al ejecutar el juego:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "No se ha podido encontrar ningún motor capaz de ejecutar el juego" msgstr "No se ha podido encontrar ningún motor capaz de ejecutar el juego"
@ -1192,23 +1192,23 @@ msgstr "~C~ancelar"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~eclas" msgstr "~T~eclas"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "No se ha podido iniciar el formato de color." msgstr "No se ha podido iniciar el formato de color."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "No se ha podido cambiar al modo de video: '" msgstr "No se ha podido cambiar al modo de video: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "No se ha podido aplicar el ajuste de corrección de aspecto" msgstr "No se ha podido aplicar el ajuste de corrección de aspecto"
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "No se ha podido aplicar el ajuste de pantalla completa." msgstr "No se ha podido aplicar el ajuste de pantalla completa."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1222,7 +1222,7 @@ msgstr ""
"copiar los archivos del juego al disco duro.\n" "copiar los archivos del juego al disco duro.\n"
"Consulta el archivo README para más detalles." "Consulta el archivo README para más detalles."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1236,7 +1236,7 @@ msgstr ""
"poder escuchar la música del juego.\n" "poder escuchar la música del juego.\n"
"Consulta el archivo README para más detalles." "Consulta el archivo README para más detalles."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1246,7 +1246,7 @@ msgstr ""
"ScummVM. Por lo tanto, puede que sea inestable, y que las partidas que " "ScummVM. Por lo tanto, puede que sea inestable, y que las partidas que "
"guardes no funcionen en versiones futuras de ScummVM." "guardes no funcionen en versiones futuras de ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Jugar de todos modos" msgstr "Jugar de todos modos"
@ -2006,56 +2006,56 @@ msgstr "Fallo al borrar el archivo."
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Fallo al guardar la partida" msgstr "Fallo al guardar la partida"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Derecha" msgstr "Derecha"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Apagar" msgstr "Apagar"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Derecha" msgstr "Derecha"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Cargar" msgstr "Cargar"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~pciones" msgstr "~O~pciones"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Aceptar" msgstr "Aceptar"
@ -2090,16 +2090,16 @@ msgstr ""
"El archivo \"sky.cpt\" tiene un tamaño incorrecto.\n" "El archivo \"sky.cpt\" tiene un tamaño incorrecto.\n"
"Por favor, vuelve a bajarlo de www.scummvm.org" "Por favor, vuelve a bajarlo de www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"Se han encontrado vídeos DXA, pero se ha compilado ScummVM sin soporte zlib" "Se han encontrado vídeos DXA, pero se ha compilado ScummVM sin soporte zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Los vídeos MPEG2 ya no son compatibles" msgstr "Los vídeos MPEG2 ya no son compatibles"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "No se ha encontrado el vídeo '%s'" msgstr "No se ha encontrado el vídeo '%s'"
@ -2386,24 +2386,24 @@ msgstr "Modo Touchpad activado."
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Modo Touchpad desactivado." msgstr "Modo Touchpad desactivado."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Oculta ScummVM" msgstr "Oculta ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Ocultar otros" msgstr "Ocultar otros"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Mostrar todo" msgstr "Mostrar todo"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Ventana" msgstr "Ventana"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimizar" msgstr "Minimizar"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-23 14:52+0100\n" "PO-Revision-Date: 2011-10-23 14:52+0100\n"
"Last-Translator: Thierry Crozat <criezy@scummvm.org>\n" "Last-Translator: Thierry Crozat <criezy@scummvm.org>\n"
"Language-Team: French <scummvm-devel@lists.sf.net>\n" "Language-Team: French <scummvm-devel@lists.sf.net>\n"
@ -46,7 +46,7 @@ msgstr "Remonter"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -58,22 +58,22 @@ msgstr "Annuler"
msgid "Choose" msgid "Choose"
msgstr "Choisir" msgstr "Choisir"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Fermer" msgstr "Fermer"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Clic de souris" msgstr "Clic de souris"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Afficher le clavier" msgstr "Afficher le clavier"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Changer l'affectation des touches" msgstr "Changer l'affectation des touches"
@ -87,11 +87,11 @@ msgstr "Affecter"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -346,7 +346,7 @@ msgstr "Cet ID est d
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~Q~uitter" msgstr "~Q~uitter"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Quitter ScummVM" msgstr "Quitter ScummVM"
@ -354,7 +354,7 @@ msgstr "Quitter ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "À ~P~ropos..." msgstr "À ~P~ropos..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "À propos de ScummVM" msgstr "À propos de ScummVM"
@ -969,28 +969,28 @@ msgstr "Sauvegarde sans nom"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Sélectionnez un Thème" msgstr "Sélectionnez un Thème"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX désactivé" msgstr "GFX désactivé"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX désactivé" msgstr "GFX désactivé"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Rendu Standard (16bpp)" msgstr "Rendu Standard (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Rendu Anti-crénelé (16 bpp)" msgstr "Rendu Anti-crénelé (16 bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Anti-crénelé (16 bpp)" msgstr "Anti-crénelé (16 bpp)"
@ -1003,30 +1003,30 @@ msgstr "Effacer la valeur"
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Le niveau de debug '%s' n'est pas supporté par ce moteur de jeu" msgstr "Le niveau de debug '%s' n'est pas supporté par ce moteur de jeu"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menu" msgstr "Menu"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Passer" msgstr "Passer"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Mettre en pause" msgstr "Mettre en pause"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Passer la phrase" msgstr "Passer la phrase"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Erreur lors de l'éxécution du jeu:" msgstr "Erreur lors de l'éxécution du jeu:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Impossible de trouver un moteur pour exécuter le jeu sélectionné" msgstr "Impossible de trouver un moteur pour exécuter le jeu sélectionné"
@ -1200,23 +1200,23 @@ msgstr "~A~nnuler"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~ouches" msgstr "~T~ouches"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Impossible d'initialiser le format des couleurs." msgstr "Impossible d'initialiser le format des couleurs."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Impossible de changer le mode vidéo à: '" msgstr "Impossible de changer le mode vidéo à: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Impossible d'appliquer la correction du rapport d'aspect." msgstr "Impossible d'appliquer la correction du rapport d'aspect."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Impossible d'appliquer l'option plein écran." msgstr "Impossible d'appliquer l'option plein écran."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1230,7 +1230,7 @@ msgstr ""
"données du jeu sur votre disque dur.\n" "données du jeu sur votre disque dur.\n"
"Lisez le fichier README pour plus de détails." "Lisez le fichier README pour plus de détails."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1244,7 +1244,7 @@ msgstr ""
"logiciel approprié.\n" "logiciel approprié.\n"
"Lisez le fichier README pour plus de détails." "Lisez le fichier README pour plus de détails."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1254,7 +1254,7 @@ msgstr ""
"complètement supporté par ScummVM. Il est donc instable et les sauvegardes " "complètement supporté par ScummVM. Il est donc instable et les sauvegardes "
"peuvent ne pas marcher avec une future version de ScummVM." "peuvent ne pas marcher avec une future version de ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Jouer quand même" msgstr "Jouer quand même"
@ -2015,56 +2015,56 @@ msgstr "
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Échec de la sauvegarde." msgstr "Échec de la sauvegarde."
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Droite" msgstr "Droite"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Éteindre" msgstr "Éteindre"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Droit" msgstr "Droit"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Charger" msgstr "Charger"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~ptions" msgstr "~O~ptions"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Choisir" msgstr "Choisir"
@ -2099,17 +2099,17 @@ msgstr ""
"Le fichier \"sky.cpt\" a une taille incorrecte.\n" "Le fichier \"sky.cpt\" a une taille incorrecte.\n"
"Vous pouvez le (re)télécharger sur www.scummvm.org" "Vous pouvez le (re)télécharger sur www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"Les séquences DXA sont présente mais ScummVM a été compilé sans le support " "Les séquences DXA sont présente mais ScummVM a été compilé sans le support "
"zlib." "zlib."
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Les séquences MPEG2 ne sont plus supportées" msgstr "Les séquences MPEG2 ne sont plus supportées"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Séquence '%s' non trouvé" msgstr "Séquence '%s' non trouvé"
@ -2394,24 +2394,24 @@ msgstr "Mode touchpad activ
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Mode touchpad désactivé" msgstr "Mode touchpad désactivé"
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Cacher ScummVM" msgstr "Cacher ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Masquer les Autres" msgstr "Masquer les Autres"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Tout Afficher" msgstr "Tout Afficher"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Fenêtre" msgstr "Fenêtre"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimiser" msgstr "Minimiser"

View file

@ -7,14 +7,14 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-12-31 08:50+0100\n" "PO-Revision-Date: 2011-12-31 08:50+0100\n"
"Last-Translator: Gruby <grubycza@hotmail.com>\n" "Last-Translator: Gruby <grubycza@hotmail.com>\n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
"Language: Magyar\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n" "Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: Magyar\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Poedit-Language: Hungarian\n" "X-Poedit-Language: Hungarian\n"
"X-Poedit-Country: HUNGARY\n" "X-Poedit-Country: HUNGARY\n"
@ -49,7 +49,7 @@ msgstr "Feljebb"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "M
msgid "Choose" msgid "Choose"
msgstr "Választ" msgstr "Választ"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Bezár" msgstr "Bezár"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Egérkattintás" msgstr "Egérkattintás"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Billentyûzet beállítások" msgstr "Billentyûzet beállítások"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Billentyûk átállítása" msgstr "Billentyûk átállítása"
@ -90,11 +90,11 @@ msgstr "Kioszt
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -347,7 +347,7 @@ msgstr "Ez a j
msgid "~Q~uit" msgid "~Q~uit"
msgstr "Kilépés" msgstr "Kilépés"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "ScummVM bezárása" msgstr "ScummVM bezárása"
@ -355,7 +355,7 @@ msgstr "ScummVM bez
msgid "A~b~out..." msgid "A~b~out..."
msgstr "Névjegy" msgstr "Névjegy"
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "ScummVM névjegy" msgstr "ScummVM névjegy"
@ -957,28 +957,28 @@ msgstr "N
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Válassz témát" msgstr "Válassz témát"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX letiltva" msgstr "GFX letiltva"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX letiltva" msgstr "GFX letiltva"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standard leképezõ (16bpp)" msgstr "Standard leképezõ (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Élsimításos leképezõ (16bpp)" msgstr "Élsimításos leképezõ (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Élsimított (16bpp)" msgstr "Élsimított (16bpp)"
@ -991,30 +991,30 @@ msgstr "
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "A motor nem támogatja a '%s' debug szintet" msgstr "A motor nem támogatja a '%s' debug szintet"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Tovább" msgstr "Tovább"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Szünet" msgstr "Szünet"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Sor átlépése" msgstr "Sor átlépése"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Hiba a játék futtatásakor:" msgstr "Hiba a játék futtatásakor:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Nem található olyan játékmotor ami a választott játékot támogatja" msgstr "Nem található olyan játékmotor ami a választott játékot támogatja"
@ -1185,23 +1185,23 @@ msgstr "M
msgid "~K~eys" msgid "~K~eys"
msgstr "Billentyük" msgstr "Billentyük"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Szín formátum nincs alkalmazva" msgstr "Szín formátum nincs alkalmazva"
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Videómód nincs átállítva: ' " msgstr "Videómód nincs átállítva: ' "
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Méretarány korrekció nem változott." msgstr "Méretarány korrekció nem változott."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Teljesképernyõs beállítás nincs alkalmazva" msgstr "Teljesképernyõs beállítás nincs alkalmazva"
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1215,7 +1215,7 @@ msgstr ""
"adatfájljait a merevlemezedre.\n" "adatfájljait a merevlemezedre.\n"
"Nézd meg a README fájlt a részletekért." "Nézd meg a README fájlt a részletekért."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1229,7 +1229,7 @@ msgstr ""
"hogy a játék zenéje hallható legyen.\n" "hogy a játék zenéje hallható legyen.\n"
"Nézd meg a README fájlt a részletekért." "Nézd meg a README fájlt a részletekért."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1239,7 +1239,7 @@ msgstr ""
"ScummVM. Számíts rá hogy nem stabilan fut, és a mentések nem mûködnek a " "ScummVM. Számíts rá hogy nem stabilan fut, és a mentések nem mûködnek a "
"jövõbeni ScummVM verziókkal." "jövõbeni ScummVM verziókkal."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Indítás így is" msgstr "Indítás így is"
@ -1998,51 +1998,51 @@ msgstr "F
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Játék mentés nem sikerült" msgstr "Játék mentés nem sikerült"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "Támadás 1" msgstr "Támadás 1"
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "Támadás 2" msgstr "Támadás 2"
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "Támadás 3" msgstr "Támadás 3"
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "Mozgás elõre" msgstr "Mozgás elõre"
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "Mozgás hátra" msgstr "Mozgás hátra"
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "Siklás balra" msgstr "Siklás balra"
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
msgid "Slide Right" msgid "Slide Right"
msgstr "Siklás jobbra" msgstr "Siklás jobbra"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
msgid "Turn Left" msgid "Turn Left"
msgstr "Balra fordul" msgstr "Balra fordul"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
msgid "Turn Right" msgid "Turn Right"
msgstr "Jobbra fordul" msgstr "Jobbra fordul"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
msgid "Rest" msgid "Rest"
msgstr "Pihenés" msgstr "Pihenés"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
msgid "Options" msgid "Options"
msgstr "Opciók" msgstr "Opciók"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Válassz varázslatot" msgstr "Válassz varázslatot"
@ -2076,15 +2076,15 @@ msgstr ""
"A \"sky.cpt\" fájl mérete nem megfelelõ.\n" "A \"sky.cpt\" fájl mérete nem megfelelõ.\n"
"Töltsd le a www.scummvm.org oldaláról" "Töltsd le a www.scummvm.org oldaláról"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "DXA átvezetõ elérhetõ, de a ScummVM zlib támogatás nincs lefordítva" msgstr "DXA átvezetõ elérhetõ, de a ScummVM zlib támogatás nincs lefordítva"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "MPEG2 átvezetõk már nem támogatottak" msgstr "MPEG2 átvezetõk már nem támogatottak"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "'%s' átvezetõ nem található" msgstr "'%s' átvezetõ nem található"
@ -2368,24 +2368,24 @@ msgstr "Touchpad m
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Touchpad mód letiltva." msgstr "Touchpad mód letiltva."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "ScummVM elrejtése" msgstr "ScummVM elrejtése"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Többi elrejtése" msgstr "Többi elrejtése"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Mutasd mind" msgstr "Mutasd mind"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Ablak" msgstr "Ablak"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Kis méret" msgstr "Kis méret"

320
po/iso-8859-2.cp Normal file
View file

@ -0,0 +1,320 @@
# 0x00 ( 0)
0 0 # Not required
1 0 # Not required
2 0 # Not required
3 0 # Not required
# 0x04 ( 4)
4 0 # Not required
5 0 # Not required
6 0 # Not required
7 0 # Not required
# 0x08 ( 8)
8 0 # Not required
9 0 # Not required
10 0 # Not required
11 0 # Not required
# 0x0C ( 12)
12 0 # Not required
13 0 # Not required
14 0 # Not required
15 0 # Not required
# 0x10 ( 16)
16 0 # Not required
17 0 # Not required
18 0 # Not required
19 0 # Not required
# 0x14 ( 20)
20 0 # Not required
21 0 # Not required
22 0 # Not required
23 0 # Not required
# 0x18 ( 24)
24 0 # Not required
25 0 # Not required
26 0 # Not required
27 0 # Not required
# 0x1C ( 28)
28 0 # Not required
29 0 # Not required
30 0 # Not required
31 0 # Not required
# 0x20 ( 32)
32
33
34
35
# 0x24 ( 36)
36
37
38
39
# 0x28 ( 40)
40
41
42
43
# 0x2C ( 44)
44
45
46
47
# 0x30 ( 48)
48
49
50
51
# 0x34 ( 52)
52
53
54
55
# 0x38 ( 56)
56
57
58
59
# 0x3C ( 60)
60
61
62
63
# 0x40 ( 64)
64
65
66
67
# 0x44 ( 68)
68
69
70
71
# 0x48 ( 72)
72
73
74
75
# 0x4C ( 76)
76
77
78
79
# 0x50 ( 80)
80
81
82
83
# 0x54 ( 84)
84
85
86
87
# 0x58 ( 88)
88
89
90
91
# 0x5C ( 92)
92
93
94
95
# 0x60 ( 96)
96
97
98
99
# 0x64 (100)
100
101
102
103
# 0x68 (104)
104
105
106
107
# 0x6C (108)
108
109
110
111
# 0x70 (112)
112
113
114
115
# 0x74 (116)
116
117
118
119
# 0x78 (120)
120
121
122
123
# 0x7C (124)
124
125
126
127 0 # Not required
# 0x80 (128)
128 0 # Not required
129 0 # Not required
130 0 # Not required
131 0 # Not required
# 0x84 (132)
132 0 # Not required
133 0 # Not required
134 0 # Not required
135 0 # Not required
# 0x88 (136)
136 0 # Not required
137 0 # Not required
138 0 # Not required
139 0 # Not required
# 0x8C (140)
140 0 # Not required
141 0 # Not required
142 0 # Not required
143 0 # Not required
# 0x90 (144)
144 0 # Not required
145 0 # Not required
146 0 # Not required
147 0 # Not required
# 0x94 (148)
148 0 # Not required
149 0 # Not required
150 0 # Not required
151 0 # Not required
# 0x98 (152)
152 0 # Not required
153 0 # Not required
154 0 # Not required
155 0 # Not required
# 0x9C (156)
156 0 # Not required
157 0 # Not required
158 0 # Not required
159 0 # Not required
# 0xA0 (160)
160
260
728
321
# 0xA4 (164)
164
317
346
167
# 0xA8 (168)
168
352
350
356
# 0xAC (172)
377
173
381
379
# 0xB0 (176)
176
261
731
322
# 0xB4 (180)
180
318
347
711
# 0xB8 (184)
184
353
351
357
# 0xBC (188)
378
733
382
380
# 0xC0 (192)
340
193
194
258
# 0xC4 (196)
196
313
262
199
# 0xC8 (200)
268
201
280
203
# 0xCC (204)
282
205
206
270
# 0xD0 (208)
272
323
327
211
# 0xD4 (212)
212
336
214
215
# 0xD8 (216)
344
366
218
368
# 0xDC (220)
220
221
354
223
# 0xE0 (224)
341
225
226
259
# 0xE4 (228)
228
314
263
231
# 0xE8 (232)
269
233
281
235
# 0xEC (236)
283
237
238
271
# 0xF0 (240)
273
324
328
243
# 0xF4 (244)
244
337
246
247
# 0xF8 (248)
345
367
250
369
# 0xFC (252)
252
253
355
729

320
po/iso-8859-5.cp Normal file
View file

@ -0,0 +1,320 @@
# 0x00 ( 0)
0 0 # Not required
1 0 # Not required
2 0 # Not required
3 0 # Not required
# 0x04 ( 4)
4 0 # Not required
5 0 # Not required
6 0 # Not required
7 0 # Not required
# 0x08 ( 8)
8 0 # Not required
9 0 # Not required
10 0 # Not required
11 0 # Not required
# 0x0C ( 12)
12 0 # Not required
13 0 # Not required
14 0 # Not required
15 0 # Not required
# 0x10 ( 16)
16 0 # Not required
17 0 # Not required
18 0 # Not required
19 0 # Not required
# 0x14 ( 20)
20 0 # Not required
21 0 # Not required
22 0 # Not required
23 0 # Not required
# 0x18 ( 24)
24 0 # Not required
25 0 # Not required
26 0 # Not required
27 0 # Not required
# 0x1C ( 28)
28 0 # Not required
29 0 # Not required
30 0 # Not required
31 0 # Not required
# 0x20 ( 32)
32
33
34
35
# 0x24 ( 36)
36
37
38
39
# 0x28 ( 40)
40
41
42
43
# 0x2C ( 44)
44
45
46
47
# 0x30 ( 48)
48
49
50
51
# 0x34 ( 52)
52
53
54
55
# 0x38 ( 56)
56
57
58
59
# 0x3C ( 60)
60
61
62
63
# 0x40 ( 64)
64
65
66
67
# 0x44 ( 68)
68
69
70
71
# 0x48 ( 72)
72
73
74
75
# 0x4C ( 76)
76
77
78
79
# 0x50 ( 80)
80
81
82
83
# 0x54 ( 84)
84
85
86
87
# 0x58 ( 88)
88
89
90
91
# 0x5C ( 92)
92
93
94
95
# 0x60 ( 96)
96
97
98
99
# 0x64 (100)
100
101
102
103
# 0x68 (104)
104
105
106
107
# 0x6C (108)
108
109
110
111
# 0x70 (112)
112
113
114
115
# 0x74 (116)
116
117
118
119
# 0x78 (120)
120
121
122
123
# 0x7C (124)
124
125
126
127 0 # Not required
# 0x80 (128)
128 0 # Not required
129 0 # Not required
130 0 # Not required
131 0 # Not required
# 0x84 (132)
132 0 # Not required
133 0 # Not required
134 0 # Not required
135 0 # Not required
# 0x88 (136)
136 0 # Not required
137 0 # Not required
138 0 # Not required
139 0 # Not required
# 0x8C (140)
140 0 # Not required
141 0 # Not required
142 0 # Not required
143 0 # Not required
# 0x90 (144)
144 0 # Not required
145 0 # Not required
146 0 # Not required
147 0 # Not required
# 0x94 (148)
148 0 # Not required
149 0 # Not required
150 0 # Not required
151 0 # Not required
# 0x98 (152)
152 0 # Not required
153 0 # Not required
154 0 # Not required
155 0 # Not required
# 0x9C (156)
156 0 # Not required
157 0 # Not required
158 0 # Not required
159 0 # Not required
# 0xA0 (160)
160
1025
1026
1027
# 0xA4 (164)
1028
1029
1030
1031
# 0xA8 (168)
1032
1033
1034
1035
# 0xAC (172)
1036
173
1038
1039
# 0xB0 (176)
1040
1041
1042
1043
# 0xB4 (180)
1044
1045
1046
1047
# 0xB8 (184)
1048
1049
1050
1051
# 0xBC (188)
1052
1053
1054
1055
# 0xC0 (192)
1056
1057
1058
1059
# 0xC4 (196)
1060
1061
1062
1063
# 0xC8 (200)
1064
1065
1066
1067
# 0xCC (204)
1068
1069
1070
1071
# 0xD0 (208)
1072
1073
1074
1075
# 0xD4 (212)
1076
1077
1078
1079
# 0xD8 (216)
1080
1081
1082
1083
# 0xDC (220)
1084
1085
1086
1087
# 0xE0 (224)
1088
1089
1090
1091
# 0xE4 (228)
1092
1093
1094
1095
# 0xE8 (232)
1096
1097
1098
1099
# 0xEC (236)
1100
1101
1102
1103
# 0xF0 (240)
8470
1105
1106
1107
# 0xF4 (244)
1108
1109
1110
1111
# 0xF8 (248)
1112
1113
1114
1115
# 0xFC (252)
1116
167
1118
1119

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-08 17:29+0100\n" "PO-Revision-Date: 2011-10-08 17:29+0100\n"
"Last-Translator: Matteo 'Maff' Angelino <matteo.maff at gmail dot com>\n" "Last-Translator: Matteo 'Maff' Angelino <matteo.maff at gmail dot com>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
@ -45,7 +45,7 @@ msgstr "Su"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -57,22 +57,22 @@ msgstr "Annulla"
msgid "Choose" msgid "Choose"
msgstr "Scegli" msgstr "Scegli"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Chiudi" msgstr "Chiudi"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Clic del mouse" msgstr "Clic del mouse"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Mostra tastiera" msgstr "Mostra tastiera"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Riprogramma tasti" msgstr "Riprogramma tasti"
@ -86,11 +86,11 @@ msgstr "Mappa"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -344,7 +344,7 @@ msgstr "Questo ID di gioco
msgid "~Q~uit" msgid "~Q~uit"
msgstr "C~h~iudi" msgstr "C~h~iudi"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Chiudi ScummVM" msgstr "Chiudi ScummVM"
@ -352,7 +352,7 @@ msgstr "Chiudi ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "~I~nfo..." msgstr "~I~nfo..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Informazioni su ScummVM" msgstr "Informazioni su ScummVM"
@ -963,28 +963,28 @@ msgstr "Salvataggio senza titolo"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Seleziona un tema" msgstr "Seleziona un tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Grafica disattivata" msgstr "Grafica disattivata"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Grafica disattivata" msgstr "Grafica disattivata"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Renderer standard (16bpp)" msgstr "Renderer standard (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Renderer con antialiasing (16bpp)" msgstr "Renderer con antialiasing (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Con antialiasing (16bpp)" msgstr "Con antialiasing (16bpp)"
@ -997,30 +997,30 @@ msgstr "Cancella"
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Il motore non supporta il livello di debug '%s'" msgstr "Il motore non supporta il livello di debug '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menu" msgstr "Menu"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Salta" msgstr "Salta"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pausa" msgstr "Pausa"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Salta battuta" msgstr "Salta battuta"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Errore nell'esecuzione del gioco:" msgstr "Errore nell'esecuzione del gioco:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "" msgstr ""
"Impossibile trovare un motore in grado di eseguire il gioco selezionato" "Impossibile trovare un motore in grado di eseguire il gioco selezionato"
@ -1193,23 +1193,23 @@ msgstr "~A~nnulla"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~asti" msgstr "~T~asti"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Impossibile inizializzare il formato colore." msgstr "Impossibile inizializzare il formato colore."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Impossibile cambiare la modalità video: '" msgstr "Impossibile cambiare la modalità video: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Impossibile applicare l'impostazione proporzioni" msgstr "Impossibile applicare l'impostazione proporzioni"
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Impossibile applicare l'impostazione schermo intero." msgstr "Impossibile applicare l'impostazione schermo intero."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1223,7 +1223,7 @@ msgstr ""
"sull'hard disk.\n" "sull'hard disk.\n"
"Vedi il file README per i dettagli." "Vedi il file README per i dettagli."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1237,7 +1237,7 @@ msgstr ""
"la musica del gioco.\n" "la musica del gioco.\n"
"Vedi il file README per i dettagli." "Vedi il file README per i dettagli."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1247,7 +1247,7 @@ msgstr ""
"ScummVM. È quindi possibile che sia instabile, e i salvataggi potrebbero non " "ScummVM. È quindi possibile che sia instabile, e i salvataggi potrebbero non "
"funzionare con future versioni di ScummVM." "funzionare con future versioni di ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Avvia comunque" msgstr "Avvia comunque"
@ -2008,56 +2008,56 @@ msgstr "Impossibile eliminare il file."
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Impossibile salvare il gioco" msgstr "Impossibile salvare il gioco"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Destra" msgstr "Destra"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Spegni" msgstr "Spegni"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Cursore a destra" msgstr "Cursore a destra"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Ripristina" msgstr "Ripristina"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~pzioni" msgstr "~O~pzioni"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Scegli" msgstr "Scegli"
@ -2092,17 +2092,17 @@ msgstr ""
"Il file \"sky.cpt\" non ha una dimensione corretta.\n" "Il file \"sky.cpt\" non ha una dimensione corretta.\n"
"Si prega di (ri)scaricarlo da www.scummvm.org" "Si prega di (ri)scaricarlo da www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"Sono state trovare scene di intermezzo DXA ma ScummVM è stato compilato " "Sono state trovare scene di intermezzo DXA ma ScummVM è stato compilato "
"senza il supporto zlib" "senza il supporto zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Le scene di intermezzo MPEG2 non sono più supportate" msgstr "Le scene di intermezzo MPEG2 non sono più supportate"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Scena di intermezzo '%s' non trovata" msgstr "Scena di intermezzo '%s' non trovata"
@ -2389,24 +2389,24 @@ msgstr "Modalit
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Modalità touchpad disattivata." msgstr "Modalità touchpad disattivata."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Nascondi ScummVM" msgstr "Nascondi ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Nascondi altri" msgstr "Nascondi altri"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Mostra tutti" msgstr "Mostra tutti"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Finestra" msgstr "Finestra"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimizza" msgstr "Minimizza"

View file

@ -1,5 +1,6 @@
POTFILE := $(srcdir)/po/scummvm.pot POTFILE := $(srcdir)/po/scummvm.pot
POFILES := $(wildcard $(srcdir)/po/*.po) POFILES := $(wildcard $(srcdir)/po/*.po)
CPFILES := $(wildcard $(srcdir)/po/*.cp)
updatepot: updatepot:
xgettext -f $(srcdir)/po/POTFILES -D $(srcdir) -d scummvm --c++ -k_ -k_s -k_c:1,2c -k_sc:1,2c --add-comments=I18N\ xgettext -f $(srcdir)/po/POTFILES -D $(srcdir) -d scummvm --c++ -k_ -k_s -k_c:1,2c -k_sc:1,2c --add-comments=I18N\
@ -34,12 +35,12 @@ updatepot:
fi; fi;
translations-dat: devtools/create_translations translations-dat: devtools/create_translations
devtools/create_translations/create_translations $(POFILES) devtools/create_translations/create_translations $(POFILES) $(CPFILES)
mv translations.dat $(srcdir)/gui/themes/ mv translations.dat $(srcdir)/gui/themes/
update-translations: updatepot $(POFILES) translations-dat update-translations: updatepot $(POFILES) $(CPFILES) translations-dat
update-translations: updatepot $(POFILES) update-translations: updatepot $(POFILES) $(CPFILES)
@$(foreach file, $(POFILES), echo -n $(notdir $(basename $(file)))": ";msgfmt --statistic $(file);) @$(foreach file, $(POFILES), echo -n $(notdir $(basename $(file)))": ";msgfmt --statistic $(file);)
@rm -f messages.mo @rm -f messages.mo

View file

@ -2,12 +2,12 @@
# Copyright (C) 2010-2012 ScummVM Team # Copyright (C) 2010-2012 ScummVM Team
# This file is distributed under the same license as the ScummVM package. # This file is distributed under the same license as the ScummVM package.
# Einar Johan T. Sømåen <einarjohants@gmail.com>, 2010. # Einar Johan T. Sømåen <einarjohants@gmail.com>, 2010.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-04-25 22:56+0100\n" "PO-Revision-Date: 2011-04-25 22:56+0100\n"
"Last-Translator: Einar Johan T. Sømåen <einarjohants@gmail.com>\n" "Last-Translator: Einar Johan T. Sømåen <einarjohants@gmail.com>\n"
"Language-Team: somaen <einarjohants@gmail.com>\n" "Language-Team: somaen <einarjohants@gmail.com>\n"
@ -49,7 +49,7 @@ msgstr "G
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "Avbryt"
msgid "Choose" msgid "Choose"
msgstr "Velg" msgstr "Velg"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Lukk" msgstr "Lukk"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Musklikk" msgstr "Musklikk"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Vis tastatur" msgstr "Vis tastatur"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Omkoble taster" msgstr "Omkoble taster"
@ -90,11 +90,11 @@ msgstr "Koble"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -349,7 +349,7 @@ msgstr "Denne spill-IDen er allerede i bruk. Vennligst velg en annen."
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~A~vslutt" msgstr "~A~vslutt"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Avslutt ScummVM" msgstr "Avslutt ScummVM"
@ -357,7 +357,7 @@ msgstr "Avslutt ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "~O~m..." msgstr "~O~m..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Om ScummVM" msgstr "Om ScummVM"
@ -960,28 +960,28 @@ msgstr "Ikke navngitt spilltilstand"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Velg et tema" msgstr "Velg et tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Deaktivert GFX" msgstr "Deaktivert GFX"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Deaktivert GFX" msgstr "Deaktivert GFX"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standard Tegner (16bpp)" msgstr "Standard Tegner (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Antialiased Tegner (16bpp)" msgstr "Antialiased Tegner (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Antialiased (16bpp)" msgstr "Antialiased (16bpp)"
@ -994,30 +994,30 @@ msgstr "T
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Motoren støtter ikke debug-nivå '%s'" msgstr "Motoren støtter ikke debug-nivå '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Meny" msgstr "Meny"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Hopp over" msgstr "Hopp over"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pause" msgstr "Pause"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Hopp over linje" msgstr "Hopp over linje"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Problem ved kjøring av spill:" msgstr "Problem ved kjøring av spill:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Kunne ikke finne noen motor som kunne kjøre det valgte spillet" msgstr "Kunne ikke finne noen motor som kunne kjøre det valgte spillet"
@ -1186,25 +1186,25 @@ msgstr "~A~vbryt"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~aster" msgstr "~T~aster"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "" msgstr ""
#: engines/engine.cpp:241 #: engines/engine.cpp:243
#, fuzzy #, fuzzy
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Nåværende videomodus:" msgstr "Nåværende videomodus:"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
#, fuzzy #, fuzzy
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Veksle aspekt-rate korrigering" msgstr "Veksle aspekt-rate korrigering"
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "" msgstr ""
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1213,7 +1213,7 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1222,14 +1222,14 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
"not work in future versions of ScummVM." "not work in future versions of ScummVM."
msgstr "" msgstr ""
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "" msgstr ""
@ -2012,56 +2012,56 @@ msgstr ""
"\n" "\n"
"%s" "%s"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Høyre" msgstr "Høyre"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Slå av" msgstr "Slå av"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Peker høyre" msgstr "Peker høyre"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Gjenopprett" msgstr "Gjenopprett"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~V~alg" msgstr "~V~alg"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Velg" msgstr "Velg"
@ -2087,15 +2087,15 @@ msgid ""
"Please (re)download it from www.scummvm.org" "Please (re)download it from www.scummvm.org"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "" msgstr ""
@ -2357,26 +2357,26 @@ msgstr "Touchpad-modus aktivert."
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Touchpad-modus deaktivert." msgstr "Touchpad-modus deaktivert."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
#, fuzzy #, fuzzy
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Avslutt ScummVM" msgstr "Avslutt ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
#, fuzzy #, fuzzy
msgid "Window" msgid "Window"
msgstr "Windows MIDI" msgstr "Windows MIDI"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "" msgstr ""

View file

@ -2,12 +2,12 @@
# Copyright (C) 2010-2012 ScummVM Team # Copyright (C) 2010-2012 ScummVM Team
# This file is distributed under the same license as the ScummVM package. # This file is distributed under the same license as the ScummVM package.
# Einar Johan T. Sømåen <einarjohants@gmail.com>, 2010. # Einar Johan T. Sømåen <einarjohants@gmail.com>, 2010.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-04-25 23:07+0100\n" "PO-Revision-Date: 2011-04-25 23:07+0100\n"
"Last-Translator: Einar Johan T. Sømåen <einarjohants@gmail.com>\n" "Last-Translator: Einar Johan T. Sømåen <einarjohants@gmail.com>\n"
"Language-Team: somaen <einarjohants@gmail.com>\n" "Language-Team: somaen <einarjohants@gmail.com>\n"
@ -49,7 +49,7 @@ msgstr "G
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "Avbryt"
msgid "Choose" msgid "Choose"
msgstr "Vel" msgstr "Vel"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Steng" msgstr "Steng"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Musklikk" msgstr "Musklikk"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Syn Tastatur" msgstr "Syn Tastatur"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Omkople tastar" msgstr "Omkople tastar"
@ -90,11 +90,11 @@ msgstr "Kople"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -349,7 +349,7 @@ msgstr ""
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~A~vslutt" msgstr "~A~vslutt"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Avslutt ScummVM" msgstr "Avslutt ScummVM"
@ -357,7 +357,7 @@ msgstr "Avslutt ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "~O~m..." msgstr "~O~m..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Om ScummVM" msgstr "Om ScummVM"
@ -957,28 +957,28 @@ msgstr "Ikkje navngjeven speltilstand"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Vel eit tema" msgstr "Vel eit tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Deaktivert GFX" msgstr "Deaktivert GFX"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Deaktivert GFX" msgstr "Deaktivert GFX"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standard Teiknar (16bpp)" msgstr "Standard Teiknar (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16bpp)" msgstr "Standard (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Antialiased Teiknar (16bpp)" msgstr "Antialiased Teiknar (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Antialiased (16bpp)" msgstr "Antialiased (16bpp)"
@ -991,30 +991,30 @@ msgstr "T
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Motoren støttar ikkje debug-nivå '%s'" msgstr "Motoren støttar ikkje debug-nivå '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Meny" msgstr "Meny"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Hopp over" msgstr "Hopp over"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pause" msgstr "Pause"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Hopp over linje" msgstr "Hopp over linje"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Feil under køyring av spel:" msgstr "Feil under køyring av spel:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Kunne ikkje finne nokon motor som kunne køyre det velde spelet." msgstr "Kunne ikkje finne nokon motor som kunne køyre det velde spelet."
@ -1186,25 +1186,25 @@ msgstr "~A~vbryt"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~astar" msgstr "~T~astar"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "" msgstr ""
#: engines/engine.cpp:241 #: engines/engine.cpp:243
#, fuzzy #, fuzzy
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Gjeldende videomodus:" msgstr "Gjeldende videomodus:"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
#, fuzzy #, fuzzy
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Veksle aspekt-korrigering" msgstr "Veksle aspekt-korrigering"
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "" msgstr ""
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1213,7 +1213,7 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1222,14 +1222,14 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
"not work in future versions of ScummVM." "not work in future versions of ScummVM."
msgstr "" msgstr ""
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "" msgstr ""
@ -1988,56 +1988,56 @@ msgstr ""
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Full speltittel:" msgstr "Full speltittel:"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Høgre" msgstr "Høgre"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Slå av" msgstr "Slå av"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Peikar høgre" msgstr "Peikar høgre"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Gjenopprett" msgstr "Gjenopprett"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~V~al" msgstr "~V~al"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Vel" msgstr "Vel"
@ -2063,15 +2063,15 @@ msgid ""
"Please (re)download it from www.scummvm.org" "Please (re)download it from www.scummvm.org"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "" msgstr ""
@ -2331,26 +2331,26 @@ msgstr ""
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
#, fuzzy #, fuzzy
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Avslutt ScummVM" msgstr "Avslutt ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
#, fuzzy #, fuzzy
msgid "Window" msgid "Window"
msgstr "Windows MIDI" msgstr "Windows MIDI"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "" msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0\n" "Project-Id-Version: ScummVM 1.3.0\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-24 21:14+0100\n" "PO-Revision-Date: 2011-10-24 21:14+0100\n"
"Last-Translator: Micha³ Zi±bkowski <mziab@o2.pl>\n" "Last-Translator: Micha³ Zi±bkowski <mziab@o2.pl>\n"
"Language-Team: Grajpopolsku.pl <grajpopolsku@gmail.com>\n" "Language-Team: Grajpopolsku.pl <grajpopolsku@gmail.com>\n"
@ -49,7 +49,7 @@ msgstr "W g
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "Anuluj"
msgid "Choose" msgid "Choose"
msgstr "Wybierz" msgstr "Wybierz"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Zamknij" msgstr "Zamknij"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Klikniêcie" msgstr "Klikniêcie"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Wy¶wietl klawiaturê" msgstr "Wy¶wietl klawiaturê"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Dostosuj klawisze" msgstr "Dostosuj klawisze"
@ -90,11 +90,11 @@ msgstr "Przypisz"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -347,7 +347,7 @@ msgstr "Identyfikator jest ju
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~Z~akoñcz" msgstr "~Z~akoñcz"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Zakoñcz ScummVM" msgstr "Zakoñcz ScummVM"
@ -355,7 +355,7 @@ msgstr "Zako
msgid "A~b~out..." msgid "A~b~out..."
msgstr "I~n~formacje..." msgstr "I~n~formacje..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "O ScummVM" msgstr "O ScummVM"
@ -959,28 +959,28 @@ msgstr "Zapis bez nazwy"
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Wybierz styl" msgstr "Wybierz styl"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Wy³±czona grafika" msgstr "Wy³±czona grafika"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Wy³±czona grafika" msgstr "Wy³±czona grafika"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standardowy renderer (16bpp)" msgstr "Standardowy renderer (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standardowy (16bpp)" msgstr "Standardowy (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Wyg³adzany renderer (16bpp)" msgstr "Wyg³adzany renderer (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Wyg³adzany (16bpp)" msgstr "Wyg³adzany (16bpp)"
@ -993,30 +993,30 @@ msgstr "Wyczy
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Silnik nie wspiera poziomu debugowania '%s'" msgstr "Silnik nie wspiera poziomu debugowania '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menu" msgstr "Menu"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Pomiñ" msgstr "Pomiñ"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Wstrzymaj" msgstr "Wstrzymaj"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Pomiñ liniê" msgstr "Pomiñ liniê"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "B³±d podczas uruchamiania gry:" msgstr "B³±d podczas uruchamiania gry:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Nie uda³o siê znale¼æ silnika zdolnego do uruchomienia zaznaczonej gry" msgstr "Nie uda³o siê znale¼æ silnika zdolnego do uruchomienia zaznaczonej gry"
@ -1188,23 +1188,23 @@ msgstr "~A~nuluj"
msgid "~K~eys" msgid "~K~eys"
msgstr "~K~lawisze" msgstr "~K~lawisze"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Nie uda³o siê zainicjalizowaæ formatu kolorów." msgstr "Nie uda³o siê zainicjalizowaæ formatu kolorów."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Nie uda³o siê prze³±czyæ w tryb wideo: '" msgstr "Nie uda³o siê prze³±czyæ w tryb wideo: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Nie uda³o siê zastosowaæ ustawienia formatu obrazu." msgstr "Nie uda³o siê zastosowaæ ustawienia formatu obrazu."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Nie uda³o siê zastosowaæ ustawienia pe³nego ekranu." msgstr "Nie uda³o siê zastosowaæ ustawienia pe³nego ekranu."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1216,7 +1216,7 @@ msgstr ""
"znane problemów. St±d zalecane jest skopiowanie plików gry na twardy dysk.\n" "znane problemów. St±d zalecane jest skopiowanie plików gry na twardy dysk.\n"
"Dalsze informacje s± dostêpne w pliku README." "Dalsze informacje s± dostêpne w pliku README."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1228,7 +1228,7 @@ msgstr ""
"skopiowaæ na dysk za pomoc± odpowiedniego rippera CD audio.\n" "skopiowaæ na dysk za pomoc± odpowiedniego rippera CD audio.\n"
"Dalsze informacje s± dostêpne w pliku README." "Dalsze informacje s± dostêpne w pliku README."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1238,7 +1238,7 @@ msgstr ""
"ScummVM. W zwi±zku z tym mo¿e byæ ona niestabilna, a wszelkie zapisy, " "ScummVM. W zwi±zku z tym mo¿e byæ ona niestabilna, a wszelkie zapisy, "
"których dokonasz, mog± byæ nieobs³ugiwane w przysz³ych wersjach ScummVM." "których dokonasz, mog± byæ nieobs³ugiwane w przysz³ych wersjach ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "W³±cz mimo tego" msgstr "W³±cz mimo tego"
@ -1998,56 +1998,56 @@ msgstr "Nie uda
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Nie uda³o siê zapisaæ stanu gry" msgstr "Nie uda³o siê zapisaæ stanu gry"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "W prawo" msgstr "W prawo"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Wy³±cz" msgstr "Wy³±cz"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Kursor w prawo" msgstr "Kursor w prawo"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Wznów" msgstr "Wznów"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~pcje" msgstr "~O~pcje"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Wybierz" msgstr "Wybierz"
@ -2081,17 +2081,17 @@ msgstr ""
"Plik \"sky.cpt\" ma nieprawid³owy rozmiar.\n" "Plik \"sky.cpt\" ma nieprawid³owy rozmiar.\n"
"Pobierz go (ponownie) ze strony www.scummvm.org" "Pobierz go (ponownie) ze strony www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"Znaleziono przerywniki w formacie DXA, ale ScummVM jest skompilowany bez " "Znaleziono przerywniki w formacie DXA, ale ScummVM jest skompilowany bez "
"obs³ugi zlib" "obs³ugi zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Przerywniki w formacie MPEG2 nie s± ju¿ obs³ugiwane" msgstr "Przerywniki w formacie MPEG2 nie s± ju¿ obs³ugiwane"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Nie znaleziono przerywnika '%s'" msgstr "Nie znaleziono przerywnika '%s'"
@ -2377,24 +2377,24 @@ msgstr "Tryb touchpada w
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Tryb touchpada wy³±czony." msgstr "Tryb touchpada wy³±czony."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Schowaj ScummVM" msgstr "Schowaj ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Schowaj pozosta³e" msgstr "Schowaj pozosta³e"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Poka¿ wszystkie" msgstr "Poka¿ wszystkie"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Okno" msgstr "Okno"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimalizuj" msgstr "Minimalizuj"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-10-21 21:30-0300\n" "PO-Revision-Date: 2011-10-21 21:30-0300\n"
"Last-Translator: Saulo Benigno <saulobenigno@gmail.com>\n" "Last-Translator: Saulo Benigno <saulobenigno@gmail.com>\n"
"Language-Team: ScummBR (www.scummbr.com) <scummbr@yahoo.com.br>\n" "Language-Team: ScummBR (www.scummbr.com) <scummbr@yahoo.com.br>\n"
@ -49,7 +49,7 @@ msgstr "Acima"
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "Cancelar"
msgid "Choose" msgid "Choose"
msgstr "Escolher" msgstr "Escolher"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Fechar" msgstr "Fechar"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Clique do mouse" msgstr "Clique do mouse"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Mostrar teclado" msgstr "Mostrar teclado"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Remapear teclas" msgstr "Remapear teclas"
@ -90,11 +90,11 @@ msgstr "Mapear"
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -347,7 +347,7 @@ msgstr "Este c
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~S~air" msgstr "~S~air"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Sair do ScummVM" msgstr "Sair do ScummVM"
@ -355,7 +355,7 @@ msgstr "Sair do ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "So~b~re..." msgstr "So~b~re..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Sobre o ScumnmVM" msgstr "Sobre o ScumnmVM"
@ -968,28 +968,28 @@ msgstr "N
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Selecione um Tema" msgstr "Selecione um Tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX desabilitado" msgstr "GFX desabilitado"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "GFX desabilitado" msgstr "GFX desabilitado"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Renderizador padrão (16bpp)" msgstr "Renderizador padrão (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Padrão (16bpp)" msgstr "Padrão (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Renderizador Anti-Serrilhamento (16bpp)" msgstr "Renderizador Anti-Serrilhamento (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Anti-Serrilhamento (16bpp)" msgstr "Anti-Serrilhamento (16bpp)"
@ -1002,30 +1002,30 @@ msgstr "Limpar valor"
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Esse programa não suporta o nível de debug '%s'" msgstr "Esse programa não suporta o nível de debug '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Menu" msgstr "Menu"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Pular" msgstr "Pular"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Pausar" msgstr "Pausar"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Pula linha" msgstr "Pula linha"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Erro ao executar o jogo:" msgstr "Erro ao executar o jogo:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "" msgstr ""
"Não foi possível encontrar qualquer programa capaz de rodar o jogo " "Não foi possível encontrar qualquer programa capaz de rodar o jogo "
@ -1200,23 +1200,23 @@ msgstr "~C~ancelar"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~eclas" msgstr "~T~eclas"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Não foi possível inicializar o formato de cor." msgstr "Não foi possível inicializar o formato de cor."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Não foi possível alternar o modo de vídeo atual:" msgstr "Não foi possível alternar o modo de vídeo atual:"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Não foi possível aplicar a correção de proporção" msgstr "Não foi possível aplicar a correção de proporção"
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Não foi possível aplicar a configuração de tela cheia." msgstr "Não foi possível aplicar a configuração de tela cheia."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1230,7 +1230,7 @@ msgstr ""
"os arquivos de dados para o disco rígido.\n" "os arquivos de dados para o disco rígido.\n"
"Consulte o arquivo README para mais detalhes." "Consulte o arquivo README para mais detalhes."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1244,7 +1244,7 @@ msgstr ""
"para ouvir a música do jogo.\n" "para ouvir a música do jogo.\n"
"Consulte o arquivo README para mais detalhes." "Consulte o arquivo README para mais detalhes."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1254,7 +1254,7 @@ msgstr ""
"suportado pelo ScummVM. Como tal, é provável que seja instável, e qualquer " "suportado pelo ScummVM. Como tal, é provável que seja instável, e qualquer "
"jogo salvo que você fizer pode não funcionar em futuras versões do ScummVM." "jogo salvo que você fizer pode não funcionar em futuras versões do ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Iniciar de qualquer maneira" msgstr "Iniciar de qualquer maneira"
@ -2022,56 +2022,56 @@ msgstr "Falha ao excluir arquivo."
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Falha ao salvar o jogo" msgstr "Falha ao salvar o jogo"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "Direita" msgstr "Direita"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "Desligar" msgstr "Desligar"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "Cursor para a direita" msgstr "Cursor para a direita"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "Restaurar" msgstr "Restaurar"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~O~pções" msgstr "~O~pções"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Escolher" msgstr "Escolher"
@ -2106,17 +2106,17 @@ msgstr ""
"O arquivo \"sky.cpt\" possui um tamanho incorreto.\n" "O arquivo \"sky.cpt\" possui um tamanho incorreto.\n"
"Por favor, refaça o download em www.scummvm.org" "Por favor, refaça o download em www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"Vídeos no formato DXA foram encontrados, mas o ScummVM foi compilado sem " "Vídeos no formato DXA foram encontrados, mas o ScummVM foi compilado sem "
"suporte a zlib" "suporte a zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "Vídeos em MPEG2 não são mais suportados" msgstr "Vídeos em MPEG2 não são mais suportados"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Vídeo '%s' não encontrado" msgstr "Vídeo '%s' não encontrado"
@ -2403,24 +2403,24 @@ msgstr "Modo Touchpad ligado."
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Modo Touchpad desligado." msgstr "Modo Touchpad desligado."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Ocultar ScummVM" msgstr "Ocultar ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Ocultar Outros" msgstr "Ocultar Outros"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Exibir Todos" msgstr "Exibir Todos"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Janela" msgstr "Janela"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimizar" msgstr "Minimizar"

View file

@ -2,12 +2,12 @@
# Copyright (C) 2010-2012 ScummVM Team # Copyright (C) 2010-2012 ScummVM Team
# This file is distributed under the same license as the ScummVM package. # This file is distributed under the same license as the ScummVM package.
# Eugene Sandulenko <sev@scummvm.org>, 2010. # Eugene Sandulenko <sev@scummvm.org>, 2010.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-08-20 13:22+0200\n" "PO-Revision-Date: 2011-08-20 13:22+0200\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n" "Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
@ -47,7 +47,7 @@ msgstr "
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -59,22 +59,22 @@ msgstr "
msgid "Choose" msgid "Choose"
msgstr "²ëÑàÐâì" msgstr "²ëÑàÐâì"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "·ÐÚàëâì" msgstr "·ÐÚàëâì"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "ºÛØÚ Üëèìî" msgstr "ºÛØÚ Üëèìî"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "¿ÞÚÐ×Ðâì ÚÛÐÒØÐâãàã" msgstr "¿ÞÚÐ×Ðâì ÚÛÐÒØÐâãàã"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "¿ÕàÕÝÐ×ÝÐçØâì ÚÛÐÒØèØ" msgstr "¿ÕàÕÝÐ×ÝÐçØâì ÚÛÐÒØèØ"
@ -88,11 +88,11 @@ msgstr "
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -346,7 +346,7 @@ msgstr "
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~²~ëåÞÔ" msgstr "~²~ëåÞÔ"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "²ëåÞÔ Ø× ScummVM" msgstr "²ëåÞÔ Ø× ScummVM"
@ -354,7 +354,7 @@ msgstr "
msgid "A~b~out..." msgid "A~b~out..."
msgstr "¾ ß~à~ÞÓàÐÜÜÕ..." msgstr "¾ ß~à~ÞÓàÐÜÜÕ..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "¾ ßàÞÓàÐÜÜÕ ScummVM" msgstr "¾ ßàÞÓàÐÜÜÕ ScummVM"
@ -965,28 +965,28 @@ msgstr "
msgid "Select a Theme" msgid "Select a Theme"
msgstr "²ëÑÕàØâÕ âÕÜã" msgstr "²ëÑÕàØâÕ âÕÜã"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "±Õ× ÓàÐäØÚØ" msgstr "±Õ× ÓàÐäØÚØ"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "±Õ× ÓàÐäØÚØ" msgstr "±Õ× ÓàÐäØÚØ"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "ÁâÐÝÔÐàâÝëÙ àÐáâÕàØ×ÐâÞà (16bpp)" msgstr "ÁâÐÝÔÐàâÝëÙ àÐáâÕàØ×ÐâÞà (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "ÁâÐÝÔÐàâÝëÙ àÐáâÕàØ×ÐâÞà (16bpp)" msgstr "ÁâÐÝÔÐàâÝëÙ àÐáâÕàØ×ÐâÞà (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "ÀÐáâÕàØ×ÐâÞà áÞ áÓÛÐÖØÒÐÝØÕÜ (16bpp)" msgstr "ÀÐáâÕàØ×ÐâÞà áÞ áÓÛÐÖØÒÐÝØÕÜ (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "ÀÐáâÕàØ×ÐâÞà áÞ áÓÛÐÖØÒÐÝØÕÜ (16bpp)" msgstr "ÀÐáâÕàØ×ÐâÞà áÞ áÓÛÐÖØÒÐÝØÕÜ (16bpp)"
@ -999,30 +999,30 @@ msgstr "
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "´ÒØÖÞÚ ÝÕ ßÞÔÔÕàÖØÒÐÕâ ãàÞÒÕÝì ÞâÛÐÔÚØ '%s'" msgstr "´ÒØÖÞÚ ÝÕ ßÞÔÔÕàÖØÒÐÕâ ãàÞÒÕÝì ÞâÛÐÔÚØ '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "¼ÕÝî" msgstr "¼ÕÝî"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "¿àÞßãáâØâì" msgstr "¿àÞßãáâØâì"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "¿Ðã×Ð" msgstr "¿Ðã×Ð"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "¿àÞßãáâØâì áâàÞÚã" msgstr "¿àÞßãáâØâì áâàÞÚã"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "¾èØÑÚÐ ×ÐßãáÚÐ ØÓàë:" msgstr "¾èØÑÚÐ ×ÐßãáÚÐ ØÓàë:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "½Õ ÜÞÓã ÝÐÙâØ ÔÒØÖÞÚ ÔÛï ×ÐßãáÚÐ ÒëÑàÐÝÝÞÙ ØÓàë" msgstr "½Õ ÜÞÓã ÝÐÙâØ ÔÒØÖÞÚ ÔÛï ×ÐßãáÚÐ ÒëÑàÐÝÝÞÙ ØÓàë"
@ -1195,23 +1195,23 @@ msgstr "
msgid "~K~eys" msgid "~K~eys"
msgstr "~º~ÛÐÒØèØ" msgstr "~º~ÛÐÒØèØ"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "½Õ ÜÞÓã ØÝØæØÐÛØ×ØàÞÒÐâì äÞàÜÐâ æÒÕâÐ." msgstr "½Õ ÜÞÓã ØÝØæØÐÛØ×ØàÞÒÐâì äÞàÜÐâ æÒÕâÐ."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "½Õ ãÔÐÛÞáì ßÕàÕÚÛîçØâì ÒØÔÕÞàÕÖØÜ: '" msgstr "½Õ ãÔÐÛÞáì ßÕàÕÚÛîçØâì ÒØÔÕÞàÕÖØÜ: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "½Õ ãÔÐÛÞáì ØáßÞÛì×ÞÒÐâì ÚÞààÕÚæØî áÞÞâÝÞèÕÝØï áâÞàÞÝ." msgstr "½Õ ãÔÐÛÞáì ØáßÞÛì×ÞÒÐâì ÚÞààÕÚæØî áÞÞâÝÞèÕÝØï áâÞàÞÝ."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "½Õ ÜÞÓã ßàØÜÕÝØâì ßÞÛÝÞíÚàÐÝÝëÙ àÕÖØÜ." msgstr "½Õ ÜÞÓã ßàØÜÕÝØâì ßÞÛÝÞíÚàÐÝÝëÙ àÕÖØÜ."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1225,7 +1225,7 @@ msgstr ""
"ÝÐ ÖñáâÚØÙ ÔØáÚ. ¿ÞÔàÞÑÝÞáâØ ÜÞÖÝÞ ÝÐÙâØ Ò\n" "ÝÐ ÖñáâÚØÙ ÔØáÚ. ¿ÞÔàÞÑÝÞáâØ ÜÞÖÝÞ ÝÐÙâØ Ò\n"
"äÐÙÛÕ README." "äÐÙÛÕ README."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1240,7 +1240,7 @@ msgstr ""
"ßÞïÒØâáï Üã×ëÚÐ. ¿ÞÔàÞÑÝÞáâØ ÜÞÖÝÞ ÝÐÙâØ Ò\n" "ßÞïÒØâáï Üã×ëÚÐ. ¿ÞÔàÞÑÝÞáâØ ÜÞÖÝÞ ÝÐÙâØ Ò\n"
"äÐÙÛÕ README." "äÐÙÛÕ README."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1250,7 +1250,7 @@ msgstr ""
"ScummVM ßÞÛÝÞáâìî. ¾ÝÐ áÚÞàÕÕ ÒáÕÓÞ ÝÕ ÑãÔÕâ àÐÑÞâÐâì áâÐÑØÛìÝÞ, Ø " "ScummVM ßÞÛÝÞáâìî. ¾ÝÐ áÚÞàÕÕ ÒáÕÓÞ ÝÕ ÑãÔÕâ àÐÑÞâÐâì áâÐÑØÛìÝÞ, Ø "
"áÞåàÐÝÕÝØï ØÓà ÜÞÓãâ ÝÕ àÐÑÞâÐâì Ò ÑãÔãéØå ÒÕàáØïå ScummVM." "áÞåàÐÝÕÝØï ØÓà ÜÞÓãâ ÝÕ àÐÑÞâÐâì Ò ÑãÔãéØå ÒÕàáØïå ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "²áñ àÐÒÝÞ ×ÐßãáâØâì" msgstr "²áñ àÐÒÝÞ ×ÐßãáâØâì"
@ -2010,56 +2010,56 @@ msgstr "
msgid "Failed to save game" msgid "Failed to save game"
msgstr "½Õ ãÔÐÛÞáì áÞåàÐÝØâì ØÓàã" msgstr "½Õ ãÔÐÛÞáì áÞåàÐÝØâì ØÓàã"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "²ßàÐÒÞ" msgstr "²ßàÐÒÞ"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "²ëÚÛîçØâì" msgstr "²ëÚÛîçØâì"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "ºãàáÞà ÒßàÐÒÞ" msgstr "ºãàáÞà ÒßàÐÒÞ"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "²ÞááâÒÝÞÒØâì" msgstr "²ÞááâÒÝÞÒØâì"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~¾~ßæØØ" msgstr "~¾~ßæØØ"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "²ëÑàÐâì" msgstr "²ëÑàÐâì"
@ -2095,16 +2095,16 @@ msgstr ""
"ÄÐÙÛ sky.cpt ØÜÕÕâ ÝÕÒÕàÝëÙ àÐ×ÜÕà.\n" "ÄÐÙÛ sky.cpt ØÜÕÕâ ÝÕÒÕàÝëÙ àÐ×ÜÕà.\n"
"¿ÞÖÐÛãÙáâÐ, áÚÐçÐÙâÕ ÕÓÞ ×ÐÝÞÒÞ á www.scummvm.org" "¿ÞÖÐÛãÙáâÐ, áÚÐçÐÙâÕ ÕÓÞ ×ÐÝÞÒÞ á www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
"½ÐÙÔÕÝë ×ÐáâÐÒÚØ Ò äÞàÜÐâÕ DXA, ÝÞ ScummVM ÑëÛ áÞÑàÐÝ ÑÕ× ßÞÔÔÕàÖÚØ zlib" "½ÐÙÔÕÝë ×ÐáâÐÒÚØ Ò äÞàÜÐâÕ DXA, ÝÞ ScummVM ÑëÛ áÞÑàÐÝ ÑÕ× ßÞÔÔÕàÖÚØ zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "·ÐáâÐÒÚØ Ò äÞàÜÐâÕ MPEG2 ÑÞÛìèÕ ÝÕ ßÞÔÔÕàÖØÒÐîâáï" msgstr "·ÐáâÐÒÚØ Ò äÞàÜÐâÕ MPEG2 ÑÞÛìèÕ ÝÕ ßÞÔÔÕàÖØÒÐîâáï"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "·ÐáâÐÒÚÐ '%s' ÝÕ ÝÐÙÔÕÝÐ" msgstr "·ÐáâÐÒÚÐ '%s' ÝÕ ÝÐÙÔÕÝÐ"
@ -2389,24 +2389,24 @@ msgstr "
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "ÀÕÖØÜ âÐçßÐÔÐ ÒëÚÛîçÕÝ." msgstr "ÀÕÖØÜ âÐçßÐÔÐ ÒëÚÛîçÕÝ."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "ÁßàïâÐâì ScummVM" msgstr "ÁßàïâÐâì ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "ÁßàïâÐâì ´àãÓØÕ" msgstr "ÁßàïâÐâì ´àãÓØÕ"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "¿ÞÚÐ×Ðâì Òáñ" msgstr "¿ÞÚÐ×Ðâì Òáñ"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "¾ÚÝÞ" msgstr "¾ÚÝÞ"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "¼ØÝØÜØ×ØàÞÒÐâì" msgstr "¼ØÝØÜØ×ØàÞÒÐâì"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.5.0git\n" "Project-Id-Version: ScummVM 1.5.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -46,7 +46,7 @@ msgstr ""
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -58,22 +58,22 @@ msgstr ""
msgid "Choose" msgid "Choose"
msgstr "" msgstr ""
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "" msgstr ""
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "" msgstr ""
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "" msgstr ""
@ -87,11 +87,11 @@ msgstr ""
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -342,7 +342,7 @@ msgstr ""
msgid "~Q~uit" msgid "~Q~uit"
msgstr "" msgstr ""
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "" msgstr ""
@ -350,7 +350,7 @@ msgstr ""
msgid "A~b~out..." msgid "A~b~out..."
msgstr "" msgstr ""
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "" msgstr ""
@ -943,28 +943,28 @@ msgstr ""
msgid "Select a Theme" msgid "Select a Theme"
msgstr "" msgstr ""
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "" msgstr ""
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "" msgstr ""
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "" msgstr ""
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "" msgstr ""
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "" msgstr ""
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "" msgstr ""
@ -977,30 +977,30 @@ msgstr ""
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "" msgstr ""
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "" msgstr ""
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "" msgstr ""
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "" msgstr ""
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "" msgstr ""
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "" msgstr ""
@ -1169,23 +1169,23 @@ msgstr ""
msgid "~K~eys" msgid "~K~eys"
msgstr "" msgstr ""
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "" msgstr ""
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "" msgstr ""
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "" msgstr ""
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "" msgstr ""
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1194,7 +1194,7 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1203,14 +1203,14 @@ msgid ""
"See the README file for details." "See the README file for details."
msgstr "" msgstr ""
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
"not work in future versions of ScummVM." "not work in future versions of ScummVM."
msgstr "" msgstr ""
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "" msgstr ""
@ -1955,51 +1955,51 @@ msgstr ""
msgid "Failed to save game" msgid "Failed to save game"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
msgid "Slide Right" msgid "Slide Right"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
msgid "Turn Left" msgid "Turn Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
msgid "Turn Right" msgid "Turn Right"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
msgid "Rest" msgid "Rest"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
msgid "Options" msgid "Options"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
msgid "Choose Spell" msgid "Choose Spell"
msgstr "" msgstr ""
@ -2024,15 +2024,15 @@ msgid ""
"Please (re)download it from www.scummvm.org" "Please (re)download it from www.scummvm.org"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "" msgstr ""
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "" msgstr ""
@ -2289,24 +2289,24 @@ msgstr ""
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "" msgstr ""
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "" msgstr ""

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-11-27 19:00+0100\n" "PO-Revision-Date: 2011-11-27 19:00+0100\n"
"Last-Translator: Hampus Flink <hampus.flink@gmail.com>\n" "Last-Translator: Hampus Flink <hampus.flink@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@ -49,7 +49,7 @@ msgstr "Upp
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -61,22 +61,22 @@ msgstr "Avbryt"
msgid "Choose" msgid "Choose"
msgstr "Välj" msgstr "Välj"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "Stäng" msgstr "Stäng"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "Musklick" msgstr "Musklick"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "Visa tangentbord" msgstr "Visa tangentbord"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "Ställ in tangenter" msgstr "Ställ in tangenter"
@ -90,11 +90,11 @@ msgstr "St
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -349,7 +349,7 @@ msgstr "Detta ID-namn
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~A~vsluta" msgstr "~A~vsluta"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "Avsluta ScummVM" msgstr "Avsluta ScummVM"
@ -357,7 +357,7 @@ msgstr "Avsluta ScummVM"
msgid "A~b~out..." msgid "A~b~out..."
msgstr "O~m~..." msgstr "O~m~..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "Om ScummVM" msgstr "Om ScummVM"
@ -963,28 +963,28 @@ msgstr "Namnl
msgid "Select a Theme" msgid "Select a Theme"
msgstr "Välj ett tema" msgstr "Välj ett tema"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Inaktiverad GFX" msgstr "Inaktiverad GFX"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "Inaktiverad GFX" msgstr "Inaktiverad GFX"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "Standard rendering (16 bpp)" msgstr "Standard rendering (16 bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "Standard (16 bpp)" msgstr "Standard (16 bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "Antialiserad rendering (16 bpp)" msgstr "Antialiserad rendering (16 bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "Antialiserad (16 bpp)" msgstr "Antialiserad (16 bpp)"
@ -997,30 +997,30 @@ msgstr "T
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "Motorn stöder inte debug-nivå '%s'" msgstr "Motorn stöder inte debug-nivå '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "Meny" msgstr "Meny"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "Skippa" msgstr "Skippa"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "Paus" msgstr "Paus"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "Skippa rad" msgstr "Skippa rad"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "Fel under körning av spel:" msgstr "Fel under körning av spel:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "Kunde inte hitta en motor kapabel till att köra det valda spelet" msgstr "Kunde inte hitta en motor kapabel till att köra det valda spelet"
@ -1193,23 +1193,23 @@ msgstr "A~v~bryt"
msgid "~K~eys" msgid "~K~eys"
msgstr "~T~angenter" msgstr "~T~angenter"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "Kunde inte initialisera färgformat." msgstr "Kunde inte initialisera färgformat."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "Kunde inte byta till videoläget: '" msgstr "Kunde inte byta till videoläget: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "Kunde inte ändra inställningen för bildförhållanden." msgstr "Kunde inte ändra inställningen för bildförhållanden."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "Kunde inte applicera fullskärmsinställning." msgstr "Kunde inte applicera fullskärmsinställning."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1223,7 +1223,7 @@ msgstr ""
"datafilerna till din hårddisk istället.\n" "datafilerna till din hårddisk istället.\n"
"Se README-filen för detaljer." "Se README-filen för detaljer."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1237,7 +1237,7 @@ msgstr ""
"för att kunna lyssna på spelets musik.\n" "för att kunna lyssna på spelets musik.\n"
"Se README-filen för detaljer." "Se README-filen för detaljer."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1247,7 +1247,7 @@ msgstr ""
"ScummVM. Därför är det troligtvis instabilt och om du skapar spardata kan de " "ScummVM. Därför är det troligtvis instabilt och om du skapar spardata kan de "
"möjligtvis vara inkompatibla med framtida versioner av ScummVM." "möjligtvis vara inkompatibla med framtida versioner av ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "Starta ändå" msgstr "Starta ändå"
@ -2007,51 +2007,51 @@ msgstr "Kunde inte radera filen."
msgid "Failed to save game" msgid "Failed to save game"
msgstr "Kunde inte spara spelet." msgstr "Kunde inte spara spelet."
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "Attack 1" msgstr "Attack 1"
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "Attack 2" msgstr "Attack 2"
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "Attack 3" msgstr "Attack 3"
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "Steg framåt" msgstr "Steg framåt"
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "Steg bakåt" msgstr "Steg bakåt"
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "Glid vänster" msgstr "Glid vänster"
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
msgid "Slide Right" msgid "Slide Right"
msgstr "Glid höger" msgstr "Glid höger"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
msgid "Turn Left" msgid "Turn Left"
msgstr "Sväng vänster" msgstr "Sväng vänster"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
msgid "Turn Right" msgid "Turn Right"
msgstr "Sväng höger" msgstr "Sväng höger"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
msgid "Rest" msgid "Rest"
msgstr "Vila" msgstr "Vila"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
msgid "Options" msgid "Options"
msgstr "Inställningar" msgstr "Inställningar"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
msgid "Choose Spell" msgid "Choose Spell"
msgstr "Välj trollformel" msgstr "Välj trollformel"
@ -2085,15 +2085,15 @@ msgstr ""
"Filen \"sky.cpt\" har inkorrekt filstorlek.\n" "Filen \"sky.cpt\" har inkorrekt filstorlek.\n"
"Var god ladda hem den igen från www.scummvm.org" "Var god ladda hem den igen från www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "DXA filmscener hittades men ScummVM har byggts utan stöd för zlib" msgstr "DXA filmscener hittades men ScummVM har byggts utan stöd för zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "MPEG2 filmscener stöds inte längre" msgstr "MPEG2 filmscener stöds inte längre"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "Filmscenen '%s' hittades ej" msgstr "Filmscenen '%s' hittades ej"
@ -2380,24 +2380,24 @@ msgstr "Touchpad-l
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "Touchpad-läge inaktiverat." msgstr "Touchpad-läge inaktiverat."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "Dölj ScummVM" msgstr "Dölj ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "Dölj övriga" msgstr "Dölj övriga"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "Visa alla" msgstr "Visa alla"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "Fönster" msgstr "Fönster"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "Minimera" msgstr "Minimera"

View file

@ -2,12 +2,12 @@
# Copyright (C) 2010-2012 ScummVM Team # Copyright (C) 2010-2012 ScummVM Team
# This file is distributed under the same license as the ScummVM package. # This file is distributed under the same license as the ScummVM package.
# Lubomyr Lisen, 2010. # Lubomyr Lisen, 2010.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n" "Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-12-26 15:26+0100\n" "POT-Creation-Date: 2012-01-28 21:48+0100\n"
"PO-Revision-Date: 2011-08-20 13:30+0200\n" "PO-Revision-Date: 2011-08-20 13:30+0200\n"
"Last-Translator: Eugene Sandulenko\n" "Last-Translator: Eugene Sandulenko\n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
@ -47,7 +47,7 @@ msgstr "
#: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43 #: gui/browser.cpp:69 gui/chooser.cpp:45 gui/KeysDialog.cpp:43
#: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221 #: gui/launcher.cpp:319 gui/massadd.cpp:94 gui/options.cpp:1221
#: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54 #: gui/saveload.cpp:63 gui/saveload.cpp:155 gui/themebrowser.cpp:54
#: engines/engine.cpp:436 engines/scumm/dialogs.cpp:190 #: engines/engine.cpp:438 engines/scumm/dialogs.cpp:190
#: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281 #: engines/sword1/control.cpp:865 engines/parallaction/saveload.cpp:281
#: backends/platform/wii/options.cpp:48 #: backends/platform/wii/options.cpp:48
#: backends/events/default/default-events.cpp:222 #: backends/events/default/default-events.cpp:222
@ -59,22 +59,22 @@ msgstr "
msgid "Choose" msgid "Choose"
msgstr "²ØÑàÐâØ" msgstr "²ØÑàÐâØ"
#: gui/gui-manager.cpp:116 engines/scumm/help.cpp:125 #: gui/gui-manager.cpp:115 engines/scumm/help.cpp:125
#: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165 #: engines/scumm/help.cpp:140 engines/scumm/help.cpp:165
#: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209 #: engines/scumm/help.cpp:191 engines/scumm/help.cpp:209
#: backends/keymapper/remap-dialog.cpp:52 #: backends/keymapper/remap-dialog.cpp:52
msgid "Close" msgid "Close"
msgstr "·ÐÚàØâØ" msgstr "·ÐÚàØâØ"
#: gui/gui-manager.cpp:119 #: gui/gui-manager.cpp:118
msgid "Mouse click" msgid "Mouse click"
msgstr "ºÛöÚ ÜØèÚÞî" msgstr "ºÛöÚ ÜØèÚÞî"
#: gui/gui-manager.cpp:122 base/main.cpp:283 #: gui/gui-manager.cpp:121 base/main.cpp:289
msgid "Display keyboard" msgid "Display keyboard"
msgstr "¿ÞÚÐ×ÐâØ ÚÛÐÒöÐâãàã" msgstr "¿ÞÚÐ×ÐâØ ÚÛÐÒöÐâãàã"
#: gui/gui-manager.cpp:125 base/main.cpp:286 #: gui/gui-manager.cpp:124 base/main.cpp:292
msgid "Remap keys" msgid "Remap keys"
msgstr "¿ÕàÕßàØ×ÝÐçØâØ ÚÛÐÒöèö" msgstr "¿ÕàÕßàØ×ÝÐçØâØ ÚÛÐÒöèö"
@ -88,11 +88,11 @@ msgstr "
#: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959 #: gui/KeysDialog.cpp:42 gui/launcher.cpp:320 gui/launcher.cpp:959
#: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222 #: gui/launcher.cpp:963 gui/massadd.cpp:91 gui/options.cpp:1222
#: engines/engine.cpp:359 engines/engine.cpp:370 engines/scumm/dialogs.cpp:192 #: engines/engine.cpp:361 engines/engine.cpp:372 engines/scumm/dialogs.cpp:192
#: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551 #: engines/scumm/scumm.cpp:1784 engines/agos/animation.cpp:551
#: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131 #: engines/groovie/script.cpp:420 engines/sky/compact.cpp:131
#: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:345 #: engines/sky/compact.cpp:141 engines/sword1/animation.cpp:449
#: engines/sword1/animation.cpp:355 engines/sword1/animation.cpp:361 #: engines/sword1/animation.cpp:459 engines/sword1/animation.cpp:465
#: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633 #: engines/sword1/control.cpp:865 engines/sword1/logic.cpp:1633
#: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389 #: engines/sword2/animation.cpp:379 engines/sword2/animation.cpp:389
#: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281 #: engines/sword2/animation.cpp:398 engines/parallaction/saveload.cpp:281
@ -347,7 +347,7 @@ msgstr "
msgid "~Q~uit" msgid "~Q~uit"
msgstr "~²~ØåöÔ" msgstr "~²~ØåöÔ"
#: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:80 #: gui/launcher.cpp:578 backends/platform/sdl/macosx/appmenu_osx.mm:96
msgid "Quit ScummVM" msgid "Quit ScummVM"
msgstr "²ØåöÔ ×ö ScummVM" msgstr "²ØåöÔ ×ö ScummVM"
@ -355,7 +355,7 @@ msgstr "
msgid "A~b~out..." msgid "A~b~out..."
msgstr "¿àÞ ß~à~ÞÓàÐÜã..." msgstr "¿àÞ ß~à~ÞÓàÐÜã..."
#: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:61 #: gui/launcher.cpp:579 backends/platform/sdl/macosx/appmenu_osx.mm:70
msgid "About ScummVM" msgid "About ScummVM"
msgstr "¿àÞ ScummVM" msgstr "¿àÞ ScummVM"
@ -962,28 +962,28 @@ msgstr "
msgid "Select a Theme" msgid "Select a Theme"
msgstr "²ØÑÕàöâì âÕÜã" msgstr "²ØÑÕàöâì âÕÜã"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "±Õ× ÓàÐäöÚØ" msgstr "±Õ× ÓàÐäöÚØ"
#: gui/ThemeEngine.cpp:329 #: gui/ThemeEngine.cpp:333
msgctxt "lowres" msgctxt "lowres"
msgid "Disabled GFX" msgid "Disabled GFX"
msgstr "±Õ× ÓàÐäöÚØ" msgstr "±Õ× ÓàÐäöÚØ"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard Renderer (16bpp)" msgid "Standard Renderer (16bpp)"
msgstr "ÁâÐÝÔÐàâÝØÙ àÐáâÕàØ×ÐâÞà (16bpp)" msgstr "ÁâÐÝÔÐàâÝØÙ àÐáâÕàØ×ÐâÞà (16bpp)"
#: gui/ThemeEngine.cpp:330 #: gui/ThemeEngine.cpp:334
msgid "Standard (16bpp)" msgid "Standard (16bpp)"
msgstr "ÁâÐÝÔÐàâÝØÙ àÐáâÕàØ×ÐâÞà (16bpp)" msgstr "ÁâÐÝÔÐàâÝØÙ àÐáâÕàØ×ÐâÞà (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased Renderer (16bpp)" msgid "Antialiased Renderer (16bpp)"
msgstr "ÀÐáâÕàØ×ÐâÞà ×ö ×ÓÛÐÔÖãÒÐÝÝïÜ (16bpp)" msgstr "ÀÐáâÕàØ×ÐâÞà ×ö ×ÓÛÐÔÖãÒÐÝÝïÜ (16bpp)"
#: gui/ThemeEngine.cpp:332 #: gui/ThemeEngine.cpp:336
msgid "Antialiased (16bpp)" msgid "Antialiased (16bpp)"
msgstr "ÀÐáâÕàØ×ÐâÞà ×ö ×ÓÛÐÔÖãÒÐÝÝïÜ (16bpp)" msgstr "ÀÐáâÕàØ×ÐâÞà ×ö ×ÓÛÐÔÖãÒÐÝÝïÜ (16bpp)"
@ -996,30 +996,30 @@ msgstr "
msgid "Engine does not support debug level '%s'" msgid "Engine does not support debug level '%s'"
msgstr "´ÒØÖÞÚ ÝÕ ßöÔâàØÜãô àöÒÕÝì ÒöÔÛÐÔÚØ '%s'" msgstr "´ÒØÖÞÚ ÝÕ ßöÔâàØÜãô àöÒÕÝì ÒöÔÛÐÔÚØ '%s'"
#: base/main.cpp:271 #: base/main.cpp:277
msgid "Menu" msgid "Menu"
msgstr "¼ÕÝî" msgstr "¼ÕÝî"
#: base/main.cpp:274 backends/platform/symbian/src/SymbianActions.cpp:45 #: base/main.cpp:280 backends/platform/symbian/src/SymbianActions.cpp:45
#: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45
#: backends/platform/wince/CEActionsSmartphone.cpp:46 #: backends/platform/wince/CEActionsSmartphone.cpp:46
msgid "Skip" msgid "Skip"
msgstr "¿àÞßãáâØâØ" msgstr "¿àÞßãáâØâØ"
#: base/main.cpp:277 backends/platform/symbian/src/SymbianActions.cpp:50 #: base/main.cpp:283 backends/platform/symbian/src/SymbianActions.cpp:50
#: backends/platform/wince/CEActionsPocket.cpp:42 #: backends/platform/wince/CEActionsPocket.cpp:42
msgid "Pause" msgid "Pause"
msgstr "¿Ðã×Ð" msgstr "¿Ðã×Ð"
#: base/main.cpp:280 #: base/main.cpp:286
msgid "Skip line" msgid "Skip line"
msgstr "¿àÞßãáâØâØ àïÔÞÚ" msgstr "¿àÞßãáâØâØ àïÔÞÚ"
#: base/main.cpp:439 #: base/main.cpp:445
msgid "Error running game:" msgid "Error running game:"
msgstr "¿ÞÜØÛÚÐ ×ÐßãáÚã ÓàØ:" msgstr "¿ÞÜØÛÚÐ ×ÐßãáÚã ÓàØ:"
#: base/main.cpp:463 #: base/main.cpp:469
msgid "Could not find any engine capable of running the selected game" msgid "Could not find any engine capable of running the selected game"
msgstr "½Õ ÜÞÖã ×ÝÐÙâØ ÔÒØÖÞÚ ÔÛï ×ÐßãáÚã ÒØÑàÐÝÞ÷ ÓàØ" msgstr "½Õ ÜÞÖã ×ÝÐÙâØ ÔÒØÖÞÚ ÔÛï ×ÐßãáÚã ÒØÑàÐÝÞ÷ ÓàØ"
@ -1191,23 +1191,23 @@ msgstr "
msgid "~K~eys" msgid "~K~eys"
msgstr "~º~ÛÐÒöèö" msgstr "~º~ÛÐÒöèö"
#: engines/engine.cpp:233 #: engines/engine.cpp:235
msgid "Could not initialize color format." msgid "Could not initialize color format."
msgstr "½Õ ÜÞÖã ÝÐÛÐèâãÒÐâØ äÞàÜÐâ ÚÞÛìÞàã." msgstr "½Õ ÜÞÖã ÝÐÛÐèâãÒÐâØ äÞàÜÐâ ÚÞÛìÞàã."
#: engines/engine.cpp:241 #: engines/engine.cpp:243
msgid "Could not switch to video mode: '" msgid "Could not switch to video mode: '"
msgstr "½Õ ÒÔÐÛÞáï ßÕàÕÚÛîçØâØ ÒöÔÕÞàÕÖØÜ: '" msgstr "½Õ ÒÔÐÛÞáï ßÕàÕÚÛîçØâØ ÒöÔÕÞàÕÖØÜ: '"
#: engines/engine.cpp:250 #: engines/engine.cpp:252
msgid "Could not apply aspect ratio setting." msgid "Could not apply aspect ratio setting."
msgstr "½Õ ÒÔÐÛÞáï ×ÐáâÞáãÒÐâØ ÚÞàÕÚæöî áßöÒÒöÔÝÞèÕÝÝï áâÞàöÝ." msgstr "½Õ ÒÔÐÛÞáï ×ÐáâÞáãÒÐâØ ÚÞàÕÚæöî áßöÒÒöÔÝÞèÕÝÝï áâÞàöÝ."
#: engines/engine.cpp:255 #: engines/engine.cpp:257
msgid "Could not apply fullscreen setting." msgid "Could not apply fullscreen setting."
msgstr "½Õ ÒÔÐÛÞáï ×ÐáâÞáãÒÐâØ ßÞÒÝÞÕÚàÐÝÝØÙ àÕÖØÜ." msgstr "½Õ ÒÔÐÛÞáï ×ÐáâÞáãÒÐâØ ßÞÒÝÞÕÚàÐÝÝØÙ àÕÖØÜ."
#: engines/engine.cpp:355 #: engines/engine.cpp:357
msgid "" msgid ""
"You appear to be playing this game directly\n" "You appear to be playing this game directly\n"
"from the CD. This is known to cause problems,\n" "from the CD. This is known to cause problems,\n"
@ -1221,7 +1221,7 @@ msgstr ""
"ÓàØ ÝÐ ÖÞàáâÚØÙ ÔØáÚ.\n" "ÓàØ ÝÐ ÖÞàáâÚØÙ ÔØáÚ.\n"
"´ØÒöâìáï äÐÙÛ README ÔÛï ßÞÔÐÛìèØå öÝáâàãÚæöÙ." "´ØÒöâìáï äÐÙÛ README ÔÛï ßÞÔÐÛìèØå öÝáâàãÚæöÙ."
#: engines/engine.cpp:366 #: engines/engine.cpp:368
msgid "" msgid ""
"This game has audio tracks in its disk. These\n" "This game has audio tracks in its disk. These\n"
"tracks need to be ripped from the disk using\n" "tracks need to be ripped from the disk using\n"
@ -1235,7 +1235,7 @@ msgstr ""
"âÞÓÞ, éÞÑ ÜÞÖÝÐ ÑãÛÞ áÛãåÐâØ ÜãרÚã ã Óàö.\n" "âÞÓÞ, éÞÑ ÜÞÖÝÐ ÑãÛÞ áÛãåÐâØ ÜãרÚã ã Óàö.\n"
"´ØÒöâìáï äÐÙÛ README ÔÛï ßÞÔÐÛìèØå öÝáâàãÚæöÙ." "´ØÒöâìáï äÐÙÛ README ÔÛï ßÞÔÐÛìèØå öÝáâàãÚæöÙ."
#: engines/engine.cpp:433 #: engines/engine.cpp:435
msgid "" msgid ""
"WARNING: The game you are about to start is not yet fully supported by " "WARNING: The game you are about to start is not yet fully supported by "
"ScummVM. As such, it is likely to be unstable, and any saves you make might " "ScummVM. As such, it is likely to be unstable, and any saves you make might "
@ -1245,7 +1245,7 @@ msgstr ""
"ScummVM. ÁÚÞàèÕ ×Ð ÒáÕ ÒÞÝÐ ÝÕ ÑãÔÕ ßàÐæîÒÐâØ áâÐÑöÛìÝÞ, ö ×ÑÕàÕÖÕÝÝï öÓÞà, " "ScummVM. ÁÚÞàèÕ ×Ð ÒáÕ ÒÞÝÐ ÝÕ ÑãÔÕ ßàÐæîÒÐâØ áâÐÑöÛìÝÞ, ö ×ÑÕàÕÖÕÝÝï öÓÞà, "
"ïÚö ÒØ ×àÞÑØâÕ, ÜÞÖãâì ÝÕ ßàÐæîÒÐâØ ã ßÞÔÐÛìèØå ÒÕàáöïå ScummVM." "ïÚö ÒØ ×àÞÑØâÕ, ÜÞÖãâì ÝÕ ßàÐæîÒÐâØ ã ßÞÔÐÛìèØå ÒÕàáöïå ScummVM."
#: engines/engine.cpp:436 #: engines/engine.cpp:438
msgid "Start anyway" msgid "Start anyway"
msgstr "²áÕ ÞÔÝÞ ×ÐßãáâØâØ" msgstr "²áÕ ÞÔÝÞ ×ÐßãáâØâØ"
@ -2005,56 +2005,56 @@ msgstr "
msgid "Failed to save game" msgid "Failed to save game"
msgstr "½Õ ÒÔÐÛÞáï ×ÐߨáÐâØ Óàã" msgstr "½Õ ÒÔÐÛÞáï ×ÐߨáÐâØ Óàã"
#: engines/kyra/lol.cpp:572 #: engines/kyra/lol.cpp:478
msgid "Attack 1" msgid "Attack 1"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:573 #: engines/kyra/lol.cpp:479
msgid "Attack 2" msgid "Attack 2"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:574 #: engines/kyra/lol.cpp:480
msgid "Attack 3" msgid "Attack 3"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:575 #: engines/kyra/lol.cpp:481
msgid "Move Forward" msgid "Move Forward"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:576 #: engines/kyra/lol.cpp:482
msgid "Move Back" msgid "Move Back"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:577 #: engines/kyra/lol.cpp:483
msgid "Slide Left" msgid "Slide Left"
msgstr "" msgstr ""
#: engines/kyra/lol.cpp:578 #: engines/kyra/lol.cpp:484
#, fuzzy #, fuzzy
msgid "Slide Right" msgid "Slide Right"
msgstr "½ÐßàÐÒÞ" msgstr "½ÐßàÐÒÞ"
#: engines/kyra/lol.cpp:579 #: engines/kyra/lol.cpp:485
#, fuzzy #, fuzzy
msgid "Turn Left" msgid "Turn Left"
msgstr "²ØÜÚÝãâØ" msgstr "²ØÜÚÝãâØ"
#: engines/kyra/lol.cpp:580 #: engines/kyra/lol.cpp:486
#, fuzzy #, fuzzy
msgid "Turn Right" msgid "Turn Right"
msgstr "ºãàáÞà ÝÐßàÐÒÞ" msgstr "ºãàáÞà ÝÐßàÐÒÞ"
#: engines/kyra/lol.cpp:581 #: engines/kyra/lol.cpp:487
#, fuzzy #, fuzzy
msgid "Rest" msgid "Rest"
msgstr "²öÔÝÞÒØâØ" msgstr "²öÔÝÞÒØâØ"
#: engines/kyra/lol.cpp:582 #: engines/kyra/lol.cpp:488
#, fuzzy #, fuzzy
msgid "Options" msgid "Options"
msgstr "~½~ÐÛÐèâãÒÐÝÝï" msgstr "~½~ÐÛÐèâãÒÐÝÝï"
#: engines/kyra/lol.cpp:583 #: engines/kyra/lol.cpp:489
#, fuzzy #, fuzzy
msgid "Choose Spell" msgid "Choose Spell"
msgstr "²ØÑàÐâØ" msgstr "²ØÑàÐâØ"
@ -2089,15 +2089,15 @@ msgstr ""
"ÄÐÙÛ sky.cpt ÜÐô ÝÕÒöàÝØÙ àÞ×Üöà.\n" "ÄÐÙÛ sky.cpt ÜÐô ÝÕÒöàÝØÙ àÞ×Üöà.\n"
"±ãÔì ÛÐáÚÐ, (ßÕàÕ)×ÐÒÐÝâÐÖâÕ ÙÞÓÞ × www.scummvm.org" "±ãÔì ÛÐáÚÐ, (ßÕàÕ)×ÐÒÐÝâÐÖâÕ ÙÞÓÞ × www.scummvm.org"
#: engines/sword1/animation.cpp:345 engines/sword2/animation.cpp:379 #: engines/sword1/animation.cpp:449 engines/sword2/animation.cpp:379
msgid "DXA cutscenes found but ScummVM has been built without zlib support" msgid "DXA cutscenes found but ScummVM has been built without zlib support"
msgstr "·ÝÐÙÔÕÝÞ ×ÐáâÐÒÚØ DXA, ÐÛÕ ScummVM ÑãÒ ßÞÑãÔÞÒÐÝØÙ ÑÕ× ßöÔâàØÜÚØ zlib" msgstr "·ÝÐÙÔÕÝÞ ×ÐáâÐÒÚØ DXA, ÐÛÕ ScummVM ÑãÒ ßÞÑãÔÞÒÐÝØÙ ÑÕ× ßöÔâàØÜÚØ zlib"
#: engines/sword1/animation.cpp:355 engines/sword2/animation.cpp:389 #: engines/sword1/animation.cpp:459 engines/sword2/animation.cpp:389
msgid "MPEG2 cutscenes are no longer supported" msgid "MPEG2 cutscenes are no longer supported"
msgstr "·ÐáâÐÒÚØ MPEG2 ÑöÛìèÕ ÝÕ ßöÔâàØÜãîâìáï" msgstr "·ÐáâÐÒÚØ MPEG2 ÑöÛìèÕ ÝÕ ßöÔâàØÜãîâìáï"
#: engines/sword1/animation.cpp:360 engines/sword2/animation.cpp:397 #: engines/sword1/animation.cpp:464 engines/sword2/animation.cpp:397
#, c-format #, c-format
msgid "Cutscene '%s' not found" msgid "Cutscene '%s' not found"
msgstr "·ÐáâÐÒÚã '%s' ÝÕ ×ÝÐÙÔÕÝÞ" msgstr "·ÐáâÐÒÚã '%s' ÝÕ ×ÝÐÙÔÕÝÞ"
@ -2382,24 +2382,24 @@ msgstr "
msgid "Touchpad mode disabled." msgid "Touchpad mode disabled."
msgstr "ÀÕÖØÜ âÐçßÐÔã ÒØÜÚÝÕÝÞ." msgstr "ÀÕÖØÜ âÐçßÐÔã ÒØÜÚÝÕÝÞ."
#: backends/platform/sdl/macosx/appmenu_osx.mm:67 #: backends/platform/sdl/macosx/appmenu_osx.mm:78
msgid "Hide ScummVM" msgid "Hide ScummVM"
msgstr "ÁåÞÒÐâØ ScummVM" msgstr "ÁåÞÒÐâØ ScummVM"
#: backends/platform/sdl/macosx/appmenu_osx.mm:70 #: backends/platform/sdl/macosx/appmenu_osx.mm:83
msgid "Hide Others" msgid "Hide Others"
msgstr "ÁåÞÒÐâØ ¦Ýèö" msgstr "ÁåÞÒÐâØ ¦Ýèö"
#: backends/platform/sdl/macosx/appmenu_osx.mm:74 #: backends/platform/sdl/macosx/appmenu_osx.mm:88
msgid "Show All" msgid "Show All"
msgstr "¿ÞÚÐ×ÐâØ ²áÕ" msgstr "¿ÞÚÐ×ÐâØ ²áÕ"
#: backends/platform/sdl/macosx/appmenu_osx.mm:92 #: backends/platform/sdl/macosx/appmenu_osx.mm:110
#: backends/platform/sdl/macosx/appmenu_osx.mm:99 #: backends/platform/sdl/macosx/appmenu_osx.mm:121
msgid "Window" msgid "Window"
msgstr "²öÚÝÞ" msgstr "²öÚÝÞ"
#: backends/platform/sdl/macosx/appmenu_osx.mm:95 #: backends/platform/sdl/macosx/appmenu_osx.mm:115
msgid "Minimize" msgid "Minimize"
msgstr "¼öÝöÜö×ãÒÐâØ" msgstr "¼öÝöÜö×ãÒÐâØ"