diff --git a/.gitignore b/.gitignore index de95506a017..7ec78fc1336 100644 --- a/.gitignore +++ b/.gitignore @@ -101,6 +101,7 @@ Thumbs.db *.sbr *.sdf *.opensdf +*.opendb obj/ _ReSharper*/ ipch/ diff --git a/audio/softsynth/fluidsynth.cpp b/audio/softsynth/fluidsynth.cpp index 9b64d70f2b2..860bf5b5cbb 100644 --- a/audio/softsynth/fluidsynth.cpp +++ b/audio/softsynth/fluidsynth.cpp @@ -31,6 +31,9 @@ #include "audio/musicplugin.h" #include "audio/mpu401.h" #include "audio/softsynth/emumidi.h" +#if defined(IPHONE_IOS7) && defined(IPHONE_SANDBOXED) +#include "backends/platform/ios7/ios7_common.h" +#endif #include @@ -179,7 +182,18 @@ int MidiDriver_FluidSynth::open() { const char *soundfont = ConfMan.get("soundfont").c_str(); +#if defined(IPHONE_IOS7) && defined(IPHONE_SANDBOXED) + // HACK: Due to the sandbox on non-jailbroken iOS devices, we need to deal + // with the chroot filesystem. All the path selected by the user are + // relative to the Document directory. So, we need to adjust the path to + // reflect that. + Common::String soundfont_fullpath = iOS7_getDocumentsDir(); + soundfont_fullpath += soundfont; + _soundFont = fluid_synth_sfload(_synth, soundfont_fullpath.c_str(), 1); +#else _soundFont = fluid_synth_sfload(_synth, soundfont, 1); +#endif + if (_soundFont == -1) error("Failed loading custom sound font '%s'", soundfont); diff --git a/audio/softsynth/opl/mame.cpp b/audio/softsynth/opl/mame.cpp index 696169be09b..eb08582da0d 100644 --- a/audio/softsynth/opl/mame.cpp +++ b/audio/softsynth/opl/mame.cpp @@ -97,8 +97,8 @@ void OPL::generateSamples(int16 *buffer, int length) { /* final output shift , limit minimum and maximum */ #define OPL_OUTSB (TL_BITS+3-16) /* OPL output final shift 16bit */ -#define OPL_MAXOUT (0x7fff<exists(); +} + +Common::String ChRootFilesystemNode::getDisplayName() const { + return getName(); +} + +Common::String ChRootFilesystemNode::getName() const { + return _realNode->AbstractFSNode::getDisplayName(); +} + +Common::String ChRootFilesystemNode::getPath() const { + Common::String path = _realNode->getPath(); + if (path.size() > _root.size()) { + return Common::String(path.c_str() + _root.size()); + } + return Common::String("/"); +} + +bool ChRootFilesystemNode::isDirectory() const { + return _realNode->isDirectory(); +} + +bool ChRootFilesystemNode::isReadable() const { + return _realNode->isReadable(); +} + +bool ChRootFilesystemNode::isWritable() const { + return _realNode->isWritable(); +} + +AbstractFSNode *ChRootFilesystemNode::getChild(const Common::String &n) const { + return new ChRootFilesystemNode(_root, (POSIXFilesystemNode *)_realNode->getChild(n)); +} + +bool ChRootFilesystemNode::getChildren(AbstractFSList &list, ListMode mode, bool hidden) const { + AbstractFSList tmp; + if (!_realNode->getChildren(tmp, mode, hidden)) { + return false; + } + + for (AbstractFSList::iterator i=tmp.begin(); i!=tmp.end(); ++i) { + list.push_back(new ChRootFilesystemNode(_root, (POSIXFilesystemNode *) *i)); + } + + return true; +} + +AbstractFSNode *ChRootFilesystemNode::getParent() const { + if (getPath() == "/") return 0; + return new ChRootFilesystemNode(_root, (POSIXFilesystemNode *)_realNode->getParent()); +} + +Common::SeekableReadStream *ChRootFilesystemNode::createReadStream() { + return _realNode->createReadStream(); +} + +Common::WriteStream *ChRootFilesystemNode::createWriteStream() { + return _realNode->createWriteStream(); +} + +Common::String ChRootFilesystemNode::addPathComponent(const Common::String &path, const Common::String &component) { + const char sep = '/'; + if (path.lastChar() == sep && component.firstChar() == sep) { + return Common::String::format("%s%s", path.c_str(), component.c_str() + 1); + } + + if (path.lastChar() == sep || component.firstChar() == sep) { + return Common::String::format("%s%s", path.c_str(), component.c_str()); + } + + return Common::String::format("%s%c%s", path.c_str(), sep, component.c_str()); +} + +#endif diff --git a/backends/fs/chroot/chroot-fs.h b/backends/fs/chroot/chroot-fs.h new file mode 100644 index 00000000000..9ff913be316 --- /dev/null +++ b/backends/fs/chroot/chroot-fs.h @@ -0,0 +1,57 @@ +/* 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. + * + */ + +#ifndef BACKENDS_FS_CHROOT_CHROOT_FS_H +#define BACKENDS_FS_CHROOT_CHROOT_FS_H + +#include "backends/fs/posix/posix-fs.h" + +class ChRootFilesystemNode : public AbstractFSNode { + Common::String _root; + POSIXFilesystemNode *_realNode; + + ChRootFilesystemNode(const Common::String &root, POSIXFilesystemNode *); + +public: + ChRootFilesystemNode(const Common::String &root, const Common::String &path); + virtual ~ChRootFilesystemNode(); + + virtual bool exists() const; + virtual Common::String getDisplayName() const; + virtual Common::String getName() const; + virtual Common::String getPath() const; + virtual bool isDirectory() const; + virtual bool isReadable() const; + virtual bool isWritable() const; + + virtual AbstractFSNode *getChild(const Common::String &n) const; + virtual bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const; + virtual AbstractFSNode *getParent() const; + + virtual Common::SeekableReadStream *createReadStream(); + virtual Common::WriteStream *createWriteStream(); + +private: + static Common::String addPathComponent(const Common::String &path, const Common::String &component); +}; + +#endif /* BACKENDS_FS_CHROOT_CHROOT_FS_H */ diff --git a/backends/module.mk b/backends/module.mk index c2f1771cee7..5a01924ac1d 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -75,6 +75,8 @@ ifdef POSIX MODULE_OBJS += \ fs/posix/posix-fs.o \ fs/posix/posix-fs-factory.o \ + fs/chroot/chroot-fs-factory.o \ + fs/chroot/chroot-fs.o \ plugins/posix/posix-provider.o \ saves/posix/posix-saves.o \ taskbar/unity/unity-taskbar.o diff --git a/base/main.cpp b/base/main.cpp index aa8344558ef..1333e256232 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -139,8 +139,17 @@ static Common::Error runGame(const EnginePlugin *plugin, OSystem &system, const err = Common::kPathNotDirectory; // Create the game engine - if (err.getCode() == Common::kNoError) + if (err.getCode() == Common::kNoError) { + // Set default values for all of the custom engine options + // Appareantly some engines query them in their constructor, thus we + // need to set this up before instance creation. + const ExtraGuiOptions engineOptions = (*plugin)->getExtraGuiOptions(Common::String()); + for (uint i = 0; i < engineOptions.size(); i++) { + ConfMan.registerDefault(engineOptions[i].configOption, engineOptions[i].defaultState); + } + err = (*plugin)->createInstance(&system, &engine); + } // Check for errors if (!engine || err.getCode() != Common::kNoError) { @@ -218,12 +227,6 @@ static Common::Error runGame(const EnginePlugin *plugin, OSystem &system, const // Initialize any game-specific keymaps engine->initKeymap(); - // Set default values for all of the custom engine options - const ExtraGuiOptions engineOptions = (*plugin)->getExtraGuiOptions(Common::String()); - for (uint i = 0; i < engineOptions.size(); i++) { - ConfMan.registerDefault(engineOptions[i].configOption, engineOptions[i].defaultState); - } - // Inform backend that the engine is about to be run system.engineInit(); diff --git a/common/fs.h b/common/fs.h index b5b88ba8cbe..f516bf7a9c7 100644 --- a/common/fs.h +++ b/common/fs.h @@ -57,7 +57,14 @@ class FSList : public Array {}; */ class FSNode : public ArchiveMember { private: + friend class ::AbstractFSNode; SharedPtr _realNode; + /** + * Construct a FSNode from a backend's AbstractFSNode implementation. + * + * @param realNode Pointer to a heap allocated instance. FSNode will take + * ownership of the pointer. + */ FSNode(AbstractFSNode *realNode); public: diff --git a/common/gui_options.cpp b/common/gui_options.cpp index d79bf1b82fa..641daf5ae61 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -53,15 +53,17 @@ const struct GameOpt { { GUIO_NOASPECT, "noAspect" }, - { GUIO_RENDERHERCGREEN, "hercGreen" }, - { GUIO_RENDERHERCAMBER, "hercAmber" }, - { GUIO_RENDERCGA, "cga" }, - { GUIO_RENDEREGA, "ega" }, - { GUIO_RENDERVGA, "vga" }, - { GUIO_RENDERAMIGA, "amiga" }, - { GUIO_RENDERFMTOWNS, "fmtowns" }, - { GUIO_RENDERPC9821, "pc9821" }, - { GUIO_RENDERPC9801, "pc9801" }, + { GUIO_RENDERHERCGREEN, "hercGreen" }, + { GUIO_RENDERHERCAMBER, "hercAmber" }, + { GUIO_RENDERCGA, "cga" }, + { GUIO_RENDEREGA, "ega" }, + { GUIO_RENDERVGA, "vga" }, + { GUIO_RENDERAMIGA, "amiga" }, + { GUIO_RENDERFMTOWNS, "fmtowns" }, + { GUIO_RENDERPC9821, "pc9821" }, + { GUIO_RENDERPC9801, "pc9801" }, + { GUIO_RENDERAPPLE2GS, "2gs" }, + { GUIO_RENDERATARIST, "atari" }, { GUIO_GAMEOPTIONS1, "gameOption1" }, { GUIO_GAMEOPTIONS2, "gameOption2" }, @@ -70,6 +72,7 @@ const struct GameOpt { { GUIO_GAMEOPTIONS5, "gameOption5" }, { GUIO_GAMEOPTIONS6, "gameOption6" }, { GUIO_GAMEOPTIONS7, "gameOption7" }, + { GUIO_GAMEOPTIONS8, "gameOption8" }, { GUIO_NONE, 0 } }; diff --git a/common/gui_options.h b/common/gui_options.h index 78e9cc7199d..c11fc9e7b8c 100644 --- a/common/gui_options.h +++ b/common/gui_options.h @@ -23,47 +23,50 @@ #ifndef COMMON_GUI_OPTIONS_H #define COMMON_GUI_OPTIONS_H -#define GUIO_NONE "\000" -#define GUIO_NOSUBTITLES "\001" -#define GUIO_NOMUSIC "\002" -#define GUIO_NOSPEECH "\003" -#define GUIO_NOSFX "\004" -#define GUIO_NOMIDI "\005" -#define GUIO_NOLAUNCHLOAD "\006" +#define GUIO_NONE "\000" +#define GUIO_NOSUBTITLES "\001" +#define GUIO_NOMUSIC "\002" +#define GUIO_NOSPEECH "\003" +#define GUIO_NOSFX "\004" +#define GUIO_NOMIDI "\005" +#define GUIO_NOLAUNCHLOAD "\006" -#define GUIO_MIDIPCSPK "\007" -#define GUIO_MIDICMS "\010" -#define GUIO_MIDIPCJR "\011" -#define GUIO_MIDIADLIB "\012" -#define GUIO_MIDIC64 "\013" -#define GUIO_MIDIAMIGA "\014" -#define GUIO_MIDIAPPLEIIGS "\015" -#define GUIO_MIDITOWNS "\016" -#define GUIO_MIDIPC98 "\017" -#define GUIO_MIDIMT32 "\020" -#define GUIO_MIDIGM "\021" +#define GUIO_MIDIPCSPK "\007" +#define GUIO_MIDICMS "\010" +#define GUIO_MIDIPCJR "\011" +#define GUIO_MIDIADLIB "\012" +#define GUIO_MIDIC64 "\013" +#define GUIO_MIDIAMIGA "\014" +#define GUIO_MIDIAPPLEIIGS "\015" +#define GUIO_MIDITOWNS "\016" +#define GUIO_MIDIPC98 "\017" +#define GUIO_MIDIMT32 "\020" +#define GUIO_MIDIGM "\021" -#define GUIO_NOASPECT "\022" +#define GUIO_NOASPECT "\022" -#define GUIO_RENDERHERCGREEN "\030" -#define GUIO_RENDERHERCAMBER "\031" -#define GUIO_RENDERCGA "\032" -#define GUIO_RENDEREGA "\033" -#define GUIO_RENDERVGA "\034" -#define GUIO_RENDERAMIGA "\035" -#define GUIO_RENDERFMTOWNS "\036" -#define GUIO_RENDERPC9821 "\037" -#define GUIO_RENDERPC9801 "\040" +#define GUIO_RENDERHERCGREEN "\030" +#define GUIO_RENDERHERCAMBER "\031" +#define GUIO_RENDERCGA "\032" +#define GUIO_RENDEREGA "\033" +#define GUIO_RENDERVGA "\034" +#define GUIO_RENDERAMIGA "\035" +#define GUIO_RENDERFMTOWNS "\036" +#define GUIO_RENDERPC9821 "\037" +#define GUIO_RENDERPC9801 "\040" +#define GUIO_RENDERAPPLE2GS "\041" +#define GUIO_RENDERATARIST "\042" // Special GUIO flags for the AdvancedDetector's caching of game specific // options. -#define GUIO_GAMEOPTIONS1 "\041" -#define GUIO_GAMEOPTIONS2 "\042" -#define GUIO_GAMEOPTIONS3 "\043" -#define GUIO_GAMEOPTIONS4 "\044" -#define GUIO_GAMEOPTIONS5 "\045" -#define GUIO_GAMEOPTIONS6 "\046" -#define GUIO_GAMEOPTIONS7 "\047" +#define GUIO_GAMEOPTIONS1 "\050" +#define GUIO_GAMEOPTIONS2 "\051" +#define GUIO_GAMEOPTIONS3 "\052" +#define GUIO_GAMEOPTIONS4 "\053" +#define GUIO_GAMEOPTIONS5 "\054" +#define GUIO_GAMEOPTIONS6 "\055" +#define GUIO_GAMEOPTIONS7 "\056" +#define GUIO_GAMEOPTIONS8 "\057" #define GUIO0() (GUIO_NONE) #define GUIO1(a) (a) diff --git a/common/rendermode.cpp b/common/rendermode.cpp index 6115666399f..6fa91fa56f0 100644 --- a/common/rendermode.cpp +++ b/common/rendermode.cpp @@ -38,9 +38,11 @@ const RenderModeDescription g_renderModes[] = { { "ega", "EGA", kRenderEGA }, { "vga", "VGA", kRenderVGA }, { "amiga", "Amiga", kRenderAmiga }, - { "fmtowns", "FM-Towns", kRenderFMTowns }, - { "pc9821", "PC-9821 (256 Colors)", kRenderPC9821 }, - { "pc9801", "PC-9801 (16 Colors)", kRenderPC9801 }, + { "fmtowns", "FM-TOWNS", kRenderFMTowns }, + { "pc9821", _s("PC-9821 (256 Colors)"), kRenderPC9821 }, + { "pc9801", _s("PC-9801 (16 Colors)"), kRenderPC9801 }, + { "2gs", "Apple IIgs", kRenderApple2GS }, + { "atari", "Atari ST", kRenderAtariST }, {0, 0, kRenderDefault} }; @@ -53,15 +55,17 @@ struct RenderGUIOMapping { // could be used to indicate "any" mode when passed to renderMode2GUIO (if // we wanted to merge allRenderModesGUIOs back into) static const RenderGUIOMapping s_renderGUIOMapping[] = { - { kRenderHercG, GUIO_RENDERHERCGREEN }, - { kRenderHercA, GUIO_RENDERHERCAMBER }, - { kRenderCGA, GUIO_RENDERCGA }, - { kRenderEGA, GUIO_RENDEREGA }, - { kRenderVGA, GUIO_RENDERVGA }, - { kRenderAmiga, GUIO_RENDERAMIGA }, - { kRenderFMTowns, GUIO_RENDERFMTOWNS }, - { kRenderPC9821, GUIO_RENDERPC9821 }, - { kRenderPC9801, GUIO_RENDERPC9801 } + { kRenderHercG, GUIO_RENDERHERCGREEN }, + { kRenderHercA, GUIO_RENDERHERCAMBER }, + { kRenderCGA, GUIO_RENDERCGA }, + { kRenderEGA, GUIO_RENDEREGA }, + { kRenderVGA, GUIO_RENDERVGA }, + { kRenderAmiga, GUIO_RENDERAMIGA }, + { kRenderFMTowns, GUIO_RENDERFMTOWNS }, + { kRenderPC9821, GUIO_RENDERPC9821 }, + { kRenderPC9801, GUIO_RENDERPC9801 }, + { kRenderApple2GS, GUIO_RENDERAPPLE2GS }, + { kRenderAtariST, GUIO_RENDERATARIST } }; DECLARE_TRANSLATION_ADDITIONAL_CONTEXT("Hercules Green", "lowres") diff --git a/common/rendermode.h b/common/rendermode.h index 59fa860c6cf..49dfaab565c 100644 --- a/common/rendermode.h +++ b/common/rendermode.h @@ -45,7 +45,9 @@ enum RenderMode { kRenderAmiga = 6, kRenderFMTowns = 7, kRenderPC9821 = 8, - kRenderPC9801 = 9 + kRenderPC9801 = 9, + kRenderApple2GS = 10, + kRenderAtariST = 11 }; struct RenderModeDescription { diff --git a/common/str.cpp b/common/str.cpp index faf84d722fe..ae3a965c700 100644 --- a/common/str.cpp +++ b/common/str.cpp @@ -751,6 +751,13 @@ bool matchString(const char *str, const char *pat, bool ignoreCase, bool pathMod return true; break; + case '#': + if (!isDigit(*str)) + return false; + pat++; + str++; + break; + default: if ((!ignoreCase && *pat != *str) || (ignoreCase && tolower(*pat) != tolower(*str))) { diff --git a/common/str.h b/common/str.h index dede87a005a..1b41c481c77 100644 --- a/common/str.h +++ b/common/str.h @@ -158,6 +158,7 @@ public: * Token meaning: * "*": any character, any amount of times. * "?": any character, only once. + * "#": any decimal digit, only once. * * Example strings/patterns: * String: monkey.s01 Pattern: monkey.s?? => true @@ -165,6 +166,8 @@ public: * String: monkey.s99 Pattern: monkey.s?1 => false * String: monkey.s101 Pattern: monkey.s* => true * String: monkey.s99 Pattern: monkey.s*1 => false + * String: monkey.s01 Pattern: monkey.s## => true + * String: monkey.s01 Pattern: monkey.### => false * * @param pat Glob pattern. * @param ignoreCase Whether to ignore the case when doing pattern match @@ -180,6 +183,7 @@ public: inline uint size() const { return _size; } inline bool empty() const { return (_size == 0); } + char firstChar() const { return (_size > 0) ? _str[0] : 0; } char lastChar() const { return (_size > 0) ? _str[_size - 1] : 0; } char operator[](int idx) const { @@ -329,6 +333,7 @@ String normalizePath(const String &path, const char sep); * Token meaning: * "*": any character, any amount of times. * "?": any character, only once. + * "#": any decimal digit, only once. * * Example strings/patterns: * String: monkey.s01 Pattern: monkey.s?? => true @@ -336,6 +341,8 @@ String normalizePath(const String &path, const char sep); * String: monkey.s99 Pattern: monkey.s?1 => false * String: monkey.s101 Pattern: monkey.s* => true * String: monkey.s99 Pattern: monkey.s*1 => false + * String: monkey.s01 Pattern: monkey.s## => true + * String: monkey.s01 Pattern: monkey.### => false * * @param str Text to be matched against the given pattern. * @param pat Glob pattern. diff --git a/configure b/configure index 03b4822b60e..521f214e596 100755 --- a/configure +++ b/configure @@ -1357,6 +1357,11 @@ iphone) _host_cpu=arm _host_alias=arm-apple-darwin9 ;; +ios7) + _host_os=iphone + _host_cpu=arm + _host_alias=arm-apple-darwin11 + ;; linupy) _host_os=linux _host_cpu=arm @@ -2061,18 +2066,31 @@ echo_n "Checking host CPU architecture... " case $_host_cpu in arm*) echo "ARM" - define_in_config_if_yes yes 'USE_ARM_SCALER_ASM' - # FIXME: The following feature exhibits a bug. It produces distorted - # sound since 9003ce517ff9906b0288f9f7c02197fd091d4554. The ARM - # assembly will need to be properly adapted to the changes to the C - # code in 8f5a7cde2f99de9fef849b0ff688906f05f4643e. - # See bug #6957: "AUDIO: ARM ASM sound code causes distorted audio on 32 bit armv6" - #define_in_config_if_yes yes 'USE_ARM_SOUND_ASM' - define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM' - define_in_config_if_yes yes 'USE_ARM_GFX_ASM' - # FIXME: The following feature exhibits a bug during the intro scene of Indy 4 - # (on Pandora and iPhone at least) - #define_in_config_if_yes yes 'USE_ARM_COSTUME_ASM' + case $_host_alias in + # Apple's as does not support the syntax we use in our ARM + # assembly. We simply do not enable it. + arm-apple-darwin9) + ;; + arm-apple-darwin10) + ;; + arm-apple-darwin11) + ;; + + *) + define_in_config_if_yes yes 'USE_ARM_SCALER_ASM' + # FIXME: The following feature exhibits a bug. It produces distorted + # sound since 9003ce517ff9906b0288f9f7c02197fd091d4554. The ARM + # assembly will need to be properly adapted to the changes to the C + # code in 8f5a7cde2f99de9fef849b0ff688906f05f4643e. + # See bug #6957: "AUDIO: ARM ASM sound code causes distorted audio on 32 bit armv6" + #define_in_config_if_yes yes 'USE_ARM_SOUND_ASM' + define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM' + define_in_config_if_yes yes 'USE_ARM_GFX_ASM' + # FIXME: The following feature exhibits a bug during the intro scene of Indy 4 + # (on Pandora and iPhone at least) + #define_in_config_if_yes yes 'USE_ARM_COSTUME_ASM' + ;; + esac append_var DEFINES "-DARM_TARGET" ;; @@ -2105,7 +2123,7 @@ echo_n "Checking hosttype... " echo $_host_os case $_host_os in amigaos*) - append_var LDFLAGS "-use-dynld -Wl,--export-dynamic" + append_var LDFLAGS "-Wl,--export-dynamic" append_var LDFLAGS "-L/sdk/local/newlib/lib" # We have to use 'long' for our 4 byte typedef because AmigaOS already typedefs (u)int32 # as (unsigned) long, and consequently we'd get a compiler error otherwise. @@ -2722,6 +2740,16 @@ if test -n "$_host"; then _seq_midi=no _timidity=no ;; + ios7) + append_var DEFINES "-DIPHONE" + append_var CFLAGS "-Wno-shift-count-overflow" + append_var CXXFLAGS "-Wno-shift-count-overflow" + _backend="ios7" + _build_scalers=no + _mt32emu=no + _seq_midi=no + _timidity=no + ;; m68k-atari-mint) append_var DEFINES "-DSYSTEM_NOT_SUPPORTING_D_TYPE" _ranlib=m68k-atari-mint-ranlib @@ -3015,6 +3043,19 @@ case $_backend in append_var LIBS "-framework QuartzCore -framework CoreFoundation -framework Foundation" append_var LIBS "-framework AudioToolbox -framework CoreAudio" ;; + ios7) + append_var LIBS "-lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES" + append_var LIBS "-framework QuartzCore -framework CoreFoundation -framework Foundation" + append_var LIBS "-framework AudioToolbox -framework CoreAudio" + append_var LDFLAGS "-miphoneos-version-min=7.1 -arch armv7" + append_var CFLAGS "-miphoneos-version-min=7.1 -arch armv7" + append_var CXXFLAGS "-miphoneos-version-min=7.1 -arch armv7" + if test -n "$SDKROOT"; then + append_var LDFLAGS "-mlinker-version=134.9 -B/usr/local/bin/arm-apple-darwin11-" + append_var CFLAGS "-isysroot $SDKROOT -F$SDKROOT/System/Library/Frameworks" + append_var CXXFLAGS "-isysroot $SDKROOT -I$SDKROOT/usr/include/c++/4.2.1 -F$SDKROOT/System/Library/Frameworks" + fi + ;; linuxmoto) append_var DEFINES "-DLINUXMOTO" ;; @@ -3146,7 +3187,7 @@ esac # Enable 16bit support only for backends which support it # case $_backend in - android | dingux | dc | gph | iphone | maemo | openpandora | psp | samsungtv | sdl | tizen | webos | wii) + android | dingux | dc | gph | iphone | ios7 | maemo | openpandora | psp | samsungtv | sdl | tizen | webos | wii) if test "$_16bit" = auto ; then _16bit=yes else @@ -3205,7 +3246,7 @@ case $_host_os in amigaos* | cygwin* | dreamcast | ds | gamecube | mingw* | n64 | ps2 | ps3 | psp | wii | wince) _posix=no ;; - android | beos* | bsd* | darwin* | freebsd* | gnu* | gph-linux | haiku* | hpux* | iphone | irix*| k*bsd*-gnu* | linux* | maemo | mint* | netbsd* | openbsd* | solaris* | sunos* | uclinux* | webos) + android | beos* | bsd* | darwin* | freebsd* | gnu* | gph-linux | haiku* | hpux* | iphone | ios7 | irix*| k*bsd*-gnu* | linux* | maemo | mint* | netbsd* | openbsd* | solaris* | sunos* | uclinux* | webos) _posix=yes ;; os2-emx*) @@ -3850,26 +3891,47 @@ fi echo "$_sparkle" # -# Check for libfluidsynth +# Check for FluidSynth # -echocheck "libfluidsynth" -if test "$_fluidsynth" = auto ; then +echocheck "FluidSynth" + +append_var FLUIDSYNTH_LIBS "-lfluidsynth" +case $_host_os in + mingw*) + # NOTE: Windows builds use an older FluidSynth version (1.0.9) + # which doesn't require glib, to avoid bundling the complete glib + # libraries with Windows builds. + FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -ldsound -lwinmm" + ;; + + darwin*) + FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -framework Foundation -framework CoreMIDI -framework CoreAudio -lglib-2.0 -lintl -liconv -lreadline" + ;; + + iphone) + FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -framework Foundation -framework CoreMIDI -lglib-2.0 -lintl -liconv" + ;; + + *) + FLUIDSYNTH_STATIC_LIBS="$FLUIDSYNTH_LIBS -lglib-2.0 -lintl -liconv" + ;; +esac + +if test "$_fluidsynth" = auto; then _fluidsynth=no cat > $TMPC << EOF #include -int main(void) { return 0; } +int main(void) { delete_fluid_settings(new_fluid_settings()); return 0; } EOF - cc_check $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS -lfluidsynth && _fluidsynth=yes + cc_check_no_clean $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS && _fluidsynth=yes + if test "$_fluidsynth" != yes; then + FLUIDSYNTH_LIBS="$FLUIDSYNTH_STATIC_LIBS" + cc_check_no_clean $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS && _fluidsynth=yes + fi + cc_check_clean fi -if test "$_fluidsynth" = yes ; then - case $_host_os in - mingw*) - append_var LIBS "$FLUIDSYNTH_LIBS -lfluidsynth -ldsound -lwinmm" - ;; - *) - append_var LIBS "$FLUIDSYNTH_LIBS -lfluidsynth" - ;; - esac +if test "$_fluidsynth" = yes; then + append_var LIBS "$FLUIDSYNTH_LIBS" append_var INCLUDES "$FLUIDSYNTH_CFLAGS" fi define_in_config_if_yes "$_fluidsynth" 'USE_FLUIDSYNTH' @@ -4001,7 +4063,15 @@ int main(int argc, char *argv[]) { } EOF - cc_check $FREETYPE2_CFLAGS $FREETYPE2_LIBS && _freetype2=yes + cc_check_no_clean $FREETYPE2_CFLAGS $FREETYPE2_LIBS && _freetype2=yes + # Modern freetype-config scripts accept --static to get all + # required flags for static linking. We abuse this to detect + # FreeType2 builds which are static themselves. + if test "$_freetype2" != "yes"; then + FREETYPE2_LIBS=`$_freetypeconfig --prefix="$_freetypepath" --static --libs 2>/dev/null` + cc_check_no_clean $FREETYPE2_CFLAGS $FREETYPE2_LIBS && _freetype2=yes + fi + cc_check_clean fi if test "$_freetype2" = "yes"; then diff --git a/devtools/create_project/codeblocks.cpp b/devtools/create_project/codeblocks.cpp index 442a2b00250..e9dc8bf2347 100644 --- a/devtools/create_project/codeblocks.cpp +++ b/devtools/create_project/codeblocks.cpp @@ -200,6 +200,11 @@ void CodeBlocksProvider::createProjectFile(const std::string &name, const std::s } +void CodeBlocksProvider::addResourceFiles(const BuildSetup &setup, StringList &includeList, StringList &excludeList) { + includeList.push_back(setup.srcDir + "/icons/" + setup.projectName + ".ico"); + includeList.push_back(setup.srcDir + "/dists/" + setup.projectName + ".rc"); +} + void CodeBlocksProvider::writeWarnings(const std::string &name, std::ofstream &output) const { // Global warnings diff --git a/devtools/create_project/codeblocks.h b/devtools/create_project/codeblocks.h index f65604d9251..5baa21c2425 100644 --- a/devtools/create_project/codeblocks.h +++ b/devtools/create_project/codeblocks.h @@ -37,6 +37,8 @@ protected: void createOtherBuildFiles(const BuildSetup &) {} + void addResourceFiles(const BuildSetup &setup, StringList &includeList, StringList &excludeList); + void createProjectFile(const std::string &name, const std::string &uuid, const BuildSetup &setup, const std::string &moduleDir, const StringList &includeList, const StringList &excludeList); diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 78b0bd46599..49606c609e2 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -340,7 +340,13 @@ int main(int argc, char *argv[]) { setup.defines.push_back("WIN32"); } else { setup.defines.push_back("POSIX"); - setup.defines.push_back("MACOSX"); // This will break iOS, but allows OS X to catch up on browser_osx. + // Define both MACOSX, and IPHONE, but only one of them will be associated to the + // correct target by the Xcode project provider. + // This define will help catching up target dependend files, like "browser_osx.mm" + // The suffix ("_osx", or "_ios") will be used by the project provider to filter out + // the files, according to the target. + setup.defines.push_back("MACOSX"); + setup.defines.push_back("IPHONE"); } setup.defines.push_back("SDL_BACKEND"); if (!useSDL2) { @@ -929,16 +935,17 @@ TokenList tokenize(const std::string &input, char separator) { namespace { const Feature s_features[] = { // Libraries - { "libz", "USE_ZLIB", "zlib", true, "zlib (compression) support" }, - { "mad", "USE_MAD", "libmad", true, "libmad (MP3) support" }, - { "vorbis", "USE_VORBIS", "libvorbisfile_static libvorbis_static libogg_static", false, "Ogg Vorbis support" }, - { "flac", "USE_FLAC", "libFLAC_static win_utf8_io_static", false, "FLAC support" }, - { "png", "USE_PNG", "libpng", false, "libpng support" }, - { "faad", "USE_FAAD", "libfaad", false, "AAC support" }, - { "mpeg2", "USE_MPEG2", "libmpeg2", true, "MPEG-2 support" }, - { "theora", "USE_THEORADEC", "libtheora_static", false, "Theora decoding support" }, - {"freetype", "USE_FREETYPE2", "freetype", true, "FreeType support" }, - { "jpeg", "USE_JPEG", "jpeg-static", true, "libjpeg support" }, + { "libz", "USE_ZLIB", "zlib", true, "zlib (compression) support" }, + { "mad", "USE_MAD", "libmad", true, "libmad (MP3) support" }, + { "vorbis", "USE_VORBIS", "libvorbisfile_static libvorbis_static libogg_static", false, "Ogg Vorbis support" }, + { "flac", "USE_FLAC", "libFLAC_static win_utf8_io_static", false, "FLAC support" }, + { "png", "USE_PNG", "libpng", false, "libpng support" }, + { "faad", "USE_FAAD", "libfaad", false, "AAC support" }, + { "mpeg2", "USE_MPEG2", "libmpeg2", true, "MPEG-2 support" }, + { "theora", "USE_THEORADEC", "libtheora_static", false, "Theora decoding support" }, + { "freetype", "USE_FREETYPE2", "freetype", true, "FreeType support" }, + { "jpeg", "USE_JPEG", "jpeg-static", true, "libjpeg support" }, + {"fluidsynth", "USE_FLUIDSYNTH", "libfluidsynth", true, "FluidSynth support" }, // Feature flags { "bink", "USE_BINK", "", true, "Bink video support" }, @@ -1050,6 +1057,12 @@ void splitFilename(const std::string &fileName, std::string &name, std::string & ext = (dot == std::string::npos) ? std::string() : fileName.substr(dot + 1); } +std::string basename(const std::string &fileName) { + const std::string::size_type slash = fileName.find_last_of('/'); + if (slash == std::string::npos) return fileName; + return fileName.substr(slash + 1); +} + bool producesObjectFile(const std::string &fileName) { std::string n, ext; splitFilename(fileName, n, ext); @@ -1336,8 +1349,7 @@ void ProjectProvider::createProject(BuildSetup &setup) { createModuleList(setup.srcDir + "/math", setup.defines, setup.testDirs, in, ex); // Resource files - in.push_back(setup.srcDir + "/icons/" + setup.projectName + ".ico"); - in.push_back(setup.srcDir + "/dists/" + setup.projectName + ".rc"); + addResourceFiles(setup, in, ex); // Various text files in.push_back(setup.srcDir + "/AUTHORS"); diff --git a/devtools/create_project/create_project.h b/devtools/create_project/create_project.h index 1a28946315c..fb207f3f59b 100644 --- a/devtools/create_project/create_project.h +++ b/devtools/create_project/create_project.h @@ -315,6 +315,17 @@ std::string convertPathToWin(const std::string &path); */ void splitFilename(const std::string &fileName, std::string &name, std::string &ext); +/** + * Returns the basename of a path. + * examples: + * a/b/c/d.ext -> d.ext + * d.ext -> d.ext + * + * @param fileName Filename + * @return The basename + */ +std::string basename(const std::string &fileName); + /** * Checks whether the given file will produce an object file or not. * @@ -418,6 +429,13 @@ protected: */ virtual void createOtherBuildFiles(const BuildSetup &setup) = 0; + /** + * Add resources to the project + * + * @param setup Description of the desired build setup. + */ + virtual void addResourceFiles(const BuildSetup &setup, StringList &includeList, StringList &excludeList) = 0; + /** * Create a project file for the specified list of files. * diff --git a/devtools/create_project/msvc.cpp b/devtools/create_project/msvc.cpp index dbfbcc128dc..e6b47fe7240 100644 --- a/devtools/create_project/msvc.cpp +++ b/devtools/create_project/msvc.cpp @@ -130,6 +130,11 @@ void MSVCProvider::createOtherBuildFiles(const BuildSetup &setup) { createBuildProp(setup, false, true, "LLVM"); } +void MSVCProvider::addResourceFiles(const BuildSetup &setup, StringList &includeList, StringList &excludeList) { + includeList.push_back(setup.srcDir + "/icons/" + setup.projectName + ".ico"); + includeList.push_back(setup.srcDir + "/dists/" + setup.projectName + ".rc"); +} + void MSVCProvider::createGlobalProp(const BuildSetup &setup) { std::ofstream properties((setup.outputDir + '/' + setup.projectDescription + "_Global" + getPropertiesExtension()).c_str()); if (!properties) diff --git a/devtools/create_project/msvc.h b/devtools/create_project/msvc.h index e75e131bd1f..178ba8e2169 100644 --- a/devtools/create_project/msvc.h +++ b/devtools/create_project/msvc.h @@ -39,6 +39,8 @@ protected: void createOtherBuildFiles(const BuildSetup &setup); + void addResourceFiles(const BuildSetup &setup, StringList &includeList, StringList &excludeList); + /** * Create the global project properties. * diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index c5c433c82e6..a43730fbe2c 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -26,26 +26,33 @@ #include #include +#ifdef MACOSX +#include +#include +#include +#endif + namespace CreateProjectTool { #define DEBUG_XCODE_HASH 0 -#ifdef ENABLE_IOS #define IOS_TARGET 0 #define OSX_TARGET 1 -#define SIM_TARGET 2 -#else -#define OSX_TARGET 0 -#endif #define ADD_DEFINE(defines, name) \ defines.push_back(name); +#define REMOVE_DEFINE(defines, name) \ + { ValueList::iterator i = std::find(defines.begin(), defines.end(), name); if (i != defines.end()) defines.erase(i); } + +#define CONTAINS_DEFINE(defines, name) \ + (std::find(defines.begin(), defines.end(), name) != defines.end()) + #define ADD_SETTING(config, key, value) \ config._settings[key] = Setting(value, "", kSettingsNoQuote); #define ADD_SETTING_ORDER(config, key, value, order) \ - config._settings[key] = Setting(value, "", kSettingsNoQuote, 0, order); + config.settings[key] = Setting(value, "", kSettingsNoQuote, 0, order); #define ADD_SETTING_ORDER_NOVALUE(config, key, comment, order) \ config._settings[key] = Setting("", comment, kSettingsNoValue, 0, order); @@ -69,6 +76,17 @@ namespace CreateProjectTool { _buildFile._flags = kSettingsSingleItem; \ } +#define ADD_FILE_REFERENCE(id, name, properties) { \ + Object *fileRef = new Object(this, id, name, "PBXFileReference", "PBXFileReference", name); \ + if (!properties._fileEncoding.empty()) fileRef->addProperty("fileEncoding", properties._fileEncoding, "", kSettingsNoValue); \ + if (!properties._lastKnownFileType.empty()) fileRef->addProperty("lastKnownFileType", properties._lastKnownFileType, "", kSettingsNoValue|kSettingsQuoteVariable); \ + if (!properties._fileName.empty()) fileRef->addProperty("name", properties._fileName, "", kSettingsNoValue|kSettingsQuoteVariable); \ + if (!properties._filePath.empty()) fileRef->addProperty("path", properties._filePath, "", kSettingsNoValue|kSettingsQuoteVariable); \ + if (!properties._sourceTree.empty()) fileRef->addProperty("sourceTree", properties._sourceTree, "", kSettingsNoValue); \ + _fileReference.add(fileRef); \ + _fileReference._flags = kSettingsSingleItem; \ +} + bool producesObjectFileOnOSX(const std::string &fileName) { std::string n, ext; splitFilename(fileName, n, ext); @@ -81,9 +99,61 @@ bool producesObjectFileOnOSX(const std::string &fileName) { return false; } +bool targetIsIOS(const std::string &targetName) { + return targetName.length() > 4 && targetName.substr(targetName.length() - 4) == "-iOS"; +} + +bool shouldSkipFileForTarget(const std::string &fileID, const std::string &targetName, const std::string &fileName) { + // Rules: + // - if the parent directory is "backends/platform/ios7", the file belongs to the iOS target. + // - if the parent directory is "/sdl", the file belongs to the OS X target. + // - if the file has a suffix, like "_osx", or "_ios", the file belongs to one of the target. + // - if the file is an OS X icon file (icns), it belongs to the OS X target. + std::string name, ext; + splitFilename(fileName, name, ext); + if (targetIsIOS(targetName)) { + // iOS target: we skip all files with the "_osx" suffix + if (name.length() > 4 && name.substr(name.length() - 4) == "_osx") { + return true; + } + // We don't need SDL for the iOS target + static const std::string sdl_directory = "/sdl/"; + static const std::string surfacesdl_directory = "/surfacesdl/"; + static const std::string doublebufferdl_directory = "/doublebuffersdl/"; + if (fileID.find(sdl_directory) != std::string::npos + || fileID.find(surfacesdl_directory) != std::string::npos + || fileID.find(doublebufferdl_directory) != std::string::npos) { + return true; + } + if (ext == "icns") { + return true; + } + } + else { + // Ugly hack: explicitly remove the browser.cpp file. + // The problem is that we have only one project for two different targets, + // and the parsing of the "mk" files added this file for both targets... + if (fileID.length() > 12 && fileID.substr(fileID.length() - 12) == "/browser.cpp") { + return true; + } + // OS X target: we skip all files with the "_ios" suffix + if (name.length() > 4 && name.substr(name.length() - 4) == "_ios") { + return true; + } + // parent directory + const std::string directory = fileID.substr(0, fileID.length() - fileName.length()); + static const std::string iphone_directory = "backends/platform/ios7"; + if (directory.length() > iphone_directory.length() && directory.substr(directory.length() - iphone_directory.length()) == iphone_directory) { + return true; + } + } + return false; +} + XcodeProvider::Group::Group(XcodeProvider *objectParent, const std::string &groupName, const std::string &uniqueName, const std::string &path) : Object(objectParent, uniqueName, groupName, "PBXGroup", "", groupName) { + bool path_is_absolute = (path.length() > 0 && path.at(0) == '/'); addProperty("name", _name, "", kSettingsNoValue | kSettingsQuoteVariable); - addProperty("sourceTree", "", "", kSettingsNoValue | kSettingsQuoteVariable); + addProperty("sourceTree", path_is_absolute ? "" : "", "", kSettingsNoValue | kSettingsQuoteVariable); if (path != "") { addProperty("path", path, "", kSettingsNoValue | kSettingsQuoteVariable); @@ -93,7 +163,7 @@ XcodeProvider::Group::Group(XcodeProvider *objectParent, const std::string &grou } void XcodeProvider::Group::ensureChildExists(const std::string &name) { - std::map::iterator it = _childGroups.find(name); + std::map::iterator it = _childGroups.find(name); if (it == _childGroups.end()) { Group *child = new Group(_parent, name, this->_treeName + '/' + name, name); _childGroups[name] = child; @@ -180,7 +250,7 @@ void XcodeProvider::addFileReference(const std::string &id, const std::string &n void XcodeProvider::addProductFileReference(const std::string &id, const std::string &name) { Object *fileRef = new Object(this, id, name, "PBXFileReference", "PBXFileReference", name); - fileRef->addProperty("explicitFileType", "compiled.mach-o.executable", "", kSettingsNoValue | kSettingsQuoteVariable); + fileRef->addProperty("explicitFileType", "wrapper.application", "", kSettingsNoValue | kSettingsQuoteVariable); fileRef->addProperty("includeInIndex", "0", "", kSettingsNoValue); fileRef->addProperty("path", name, "", kSettingsNoValue | kSettingsQuoteVariable); fileRef->addProperty("sourceTree", "BUILT_PRODUCTS_DIR", "", kSettingsNoValue); @@ -201,6 +271,18 @@ XcodeProvider::XcodeProvider(StringList &global_warnings, std::map\""); \ +#define DEF_SYSTBD(lib) properties[lib".tbd"] = FileProperty("sourcecode.text-based-dylib-definition", lib".tbd", "usr/lib/" lib ".tbd", "SDKROOT"); \ + ADD_SETTING_ORDER_NOVALUE(children, getHash(lib".tbd"), lib".tbd", fwOrder++); + +#define DEF_LOCALLIB_STATIC_PATH(path,lib,absolute) properties[lib".a"] = FileProperty("archive.ar", lib ".a", path, (absolute ? "\"\"" : "\"\"")); \ ADD_SETTING_ORDER_NOVALUE(children, getHash(lib".a"), lib".a", fwOrder++); +#define DEF_LOCALLIB_STATIC(lib) DEF_LOCALLIB_STATIC_PATH("/opt/local/lib/" lib ".a", lib, true) + + /** * Sets up the frameworks build phase. * * (each native target has different build rules) */ -void XcodeProvider::setupFrameworksBuildPhase() { +void XcodeProvider::setupFrameworksBuildPhase(const BuildSetup &setup) { _frameworksBuildPhase._comment = "PBXFrameworksBuildPhase"; // Just use a hardcoded id for the Frameworks-group @@ -351,6 +435,8 @@ void XcodeProvider::setupFrameworksBuildPhase() { DEF_SYSFRAMEWORK("Carbon"); DEF_SYSFRAMEWORK("Cocoa"); DEF_SYSFRAMEWORK("CoreAudio"); + DEF_SYSFRAMEWORK("CoreMIDI"); + DEF_SYSFRAMEWORK("CoreGraphics"); DEF_SYSFRAMEWORK("CoreFoundation"); DEF_SYSFRAMEWORK("CoreMIDI"); DEF_SYSFRAMEWORK("Foundation"); @@ -359,6 +445,8 @@ void XcodeProvider::setupFrameworksBuildPhase() { DEF_SYSFRAMEWORK("QuartzCore"); DEF_SYSFRAMEWORK("QuickTime"); DEF_SYSFRAMEWORK("UIKit"); + DEF_SYSTBD("libiconv"); + // Optionals: DEF_SYSFRAMEWORK("OpenGL"); @@ -369,53 +457,94 @@ void XcodeProvider::setupFrameworksBuildPhase() { DEF_LOCALLIB_STATIC("libfreetype"); // DEF_LOCALLIB_STATIC("libmpeg2"); + std::string absoluteOutputDir; +#ifdef POSIX + char *c_path = realpath(setup.outputDir.c_str(), NULL); + absoluteOutputDir = c_path; + absoluteOutputDir += "/lib"; + free(c_path); +#else + absoluteOutputDir = "lib"; +#endif + + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libFLAC.a", "libFLAC", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libfreetype.a", "libfreetype", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libogg.a", "libogg", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libpng.a", "libpng", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libvorbis.a", "libvorbis", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libmad.a", "libmad", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libfluidsynth.a", "libfluidsynth", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libglib.a", "libglib", true); + DEF_LOCALLIB_STATIC_PATH(absoluteOutputDir + "/libffi.a", "libffi", true); + frameworksGroup->_properties["children"] = children; _groups.add(frameworksGroup); // Force this to be added as a sub-group in the root. _rootSourceGroup->addChildGroup(frameworksGroup); - // Declare this here, as it's used across the three targets + // Declare this here, as it's used across all the targets int order = 0; -#ifdef ENABLE_IOS + ////////////////////////////////////////////////////////////////////////// - // iPhone + // ScummVM-iOS Object *framework_iPhone = new Object(this, "PBXFrameworksBuildPhase_" + _targets[IOS_TARGET], "PBXFrameworksBuildPhase", "PBXFrameworksBuildPhase", "", "Frameworks"); framework_iPhone->addProperty("buildActionMask", "2147483647", "", kSettingsNoValue); framework_iPhone->addProperty("runOnlyForDeploymentPostprocessing", "0", "", kSettingsNoValue); // List of frameworks - Property iPhone_files; - iPhone_files._hasOrder = true; - iPhone_files._flags = kSettingsAsList; + Property iOS_files; + iOS_files._hasOrder = true; + iOS_files._flags = kSettingsAsList; - ValueList frameworks_iPhone; - frameworks_iPhone.push_back("CoreAudio.framework"); - frameworks_iPhone.push_back("CoreFoundation.framework"); - frameworks_iPhone.push_back("Foundation.framework"); - frameworks_iPhone.push_back("UIKit.framework"); - frameworks_iPhone.push_back("AudioToolbox.framework"); - frameworks_iPhone.push_back("QuartzCore.framework"); - frameworks_iPhone.push_back("libmad.a"); - //frameworks_iPhone.push_back("libmpeg2.a"); - frameworks_iPhone.push_back("libFLAC.a"); - frameworks_iPhone.push_back("libvorbisidec.a"); - frameworks_iPhone.push_back("OpenGLES.framework"); + ValueList frameworks_iOS; + frameworks_iOS.push_back("CoreAudio.framework"); + frameworks_iOS.push_back("CoreGraphics.framework"); + frameworks_iOS.push_back("CoreFoundation.framework"); + frameworks_iOS.push_back("Foundation.framework"); + frameworks_iOS.push_back("UIKit.framework"); + frameworks_iOS.push_back("AudioToolbox.framework"); + frameworks_iOS.push_back("QuartzCore.framework"); + frameworks_iOS.push_back("OpenGLES.framework"); - for (ValueList::iterator framework = frameworks_iPhone.begin(); framework != frameworks_iPhone.end(); framework++) { + if (CONTAINS_DEFINE(setup.defines, "USE_FLAC")) { + frameworks_iOS.push_back("libFLAC.a"); + } + if (CONTAINS_DEFINE(setup.defines, "USE_FREETYPE2")) { + frameworks_iOS.push_back("libfreetype.a"); + } + if (CONTAINS_DEFINE(setup.defines, "USE_PNG")) { + frameworks_iOS.push_back("libpng.a"); + } + if (CONTAINS_DEFINE(setup.defines, "USE_VORBIS")) { + frameworks_iOS.push_back("libogg.a"); + frameworks_iOS.push_back("libvorbis.a"); + } + if (CONTAINS_DEFINE(setup.defines, "USE_MAD")) { + frameworks_iOS.push_back("libmad.a"); + } + if (CONTAINS_DEFINE(setup.defines, "USE_FLUIDSYNTH")) { + frameworks_iOS.push_back("libfluidsynth.a"); + frameworks_iOS.push_back("libglib.a"); + frameworks_iOS.push_back("libffi.a"); + frameworks_iOS.push_back("CoreMIDI.framework"); + frameworks_iOS.push_back("libiconv.tbd"); + } + + for (ValueList::iterator framework = frameworks_iOS.begin(); framework != frameworks_iOS.end(); framework++) { std::string id = "Frameworks_" + *framework + "_iphone"; std::string comment = *framework + " in Frameworks"; - ADD_SETTING_ORDER_NOVALUE(iPhone_files, getHash(id), comment, order++); + ADD_SETTING_ORDER_NOVALUE(iOS_files, getHash(id), comment, order++); ADD_BUILD_FILE(id, *framework, getHash(*framework), comment); - addFileReference(*framework, *framework, properties[*framework]); + ADD_FILE_REFERENCE(*framework, *framework, properties[*framework]); } - framework_iPhone->_properties["files"] = iPhone_files; + framework_iPhone->_properties["files"] = iOS_files; _frameworksBuildPhase.add(framework_iPhone); -#endif + ////////////////////////////////////////////////////////////////////////// // ScummVM-OS X Object *framework_OSX = new Object(this, "PBXFrameworksBuildPhase_" + _targets[OSX_TARGET], "PBXFrameworksBuildPhase", "PBXFrameworksBuildPhase", "", "Frameworks"); @@ -451,48 +580,12 @@ void XcodeProvider::setupFrameworksBuildPhase() { ADD_SETTING_ORDER_NOVALUE(osx_files, getHash(id), comment, order++); ADD_BUILD_FILE(id, *framework, getHash(*framework), comment); - addFileReference(*framework, *framework, properties[*framework]); + ADD_FILE_REFERENCE(*framework, *framework, properties[*framework]); } framework_OSX->_properties["files"] = osx_files; _frameworksBuildPhase.add(framework_OSX); -#ifdef ENABLE_IOS - ////////////////////////////////////////////////////////////////////////// - // Simulator - Object *framework_simulator = new Object(this, "PBXFrameworksBuildPhase_" + _targets[SIM_TARGET], "PBXFrameworksBuildPhase", "PBXFrameworksBuildPhase", "", "Frameworks"); - - framework_simulator->addProperty("buildActionMask", "2147483647", "", kSettingsNoValue); - framework_simulator->addProperty("runOnlyForDeploymentPostprocessing", "0", "", kSettingsNoValue); - - // List of frameworks - Property simulator_files; - simulator_files._hasOrder = true; - simulator_files._flags = kSettingsAsList; - - ValueList frameworks_simulator; - frameworks_simulator.push_back("CoreAudio.framework"); - frameworks_simulator.push_back("CoreFoundation.framework"); - frameworks_simulator.push_back("Foundation.framework"); - frameworks_simulator.push_back("UIKit.framework"); - frameworks_simulator.push_back("AudioToolbox.framework"); - frameworks_simulator.push_back("QuartzCore.framework"); - frameworks_simulator.push_back("OpenGLES.framework"); - - order = 0; - for (ValueList::iterator framework = frameworks_simulator.begin(); framework != frameworks_simulator.end(); framework++) { - std::string id = "Frameworks_" + *framework + "_simulator"; - std::string comment = *framework + " in Frameworks"; - - ADD_SETTING_ORDER_NOVALUE(simulator_files, getHash(id), comment, order++); - ADD_BUILD_FILE(id, *framework, getHash(*framework), comment); - addFileReference(*framework, *framework, properties[*framework]); - } - - framework_simulator->_properties["files"] = simulator_files; - - _frameworksBuildPhase.add(framework_simulator); -#endif } void XcodeProvider::setupNativeTarget() { @@ -502,11 +595,6 @@ void XcodeProvider::setupNativeTarget() { Group *productsGroup = new Group(this, "Products", "PBXGroup_CustomTemplate_Products_" , ""); // Output native target section for (unsigned int i = 0; i < _targets.size(); i++) { -#ifndef ENABLE_IOS - if (i != OSX_TARGET) { // TODO: Fix iOS-targets, for now just disable them. - continue; - } -#endif Object *target = new Object(this, "PBXNativeTarget_" + _targets[i], "PBXNativeTarget", "PBXNativeTarget", "", _targets[i]); target->addProperty("buildConfigurationList", getHash("XCConfigurationList_" + _targets[i]), "Build configuration list for PBXNativeTarget \"" + _targets[i] + "\"", kSettingsNoValue); @@ -556,49 +644,51 @@ void XcodeProvider::setupProject() { project->_properties["knownRegions"] = regions; project->addProperty("mainGroup", _rootSourceGroup->getHashRef(), "CustomTemplate", kSettingsNoValue); + project->addProperty("productRefGroup", getHash("PBXGroup_CustomTemplate_Products_"), "" , kSettingsNoValue); project->addProperty("projectDirPath", _projectRoot, "", kSettingsNoValue | kSettingsQuoteVariable); project->addProperty("projectRoot", "", "", kSettingsNoValue | kSettingsQuoteVariable); // List of targets Property targets; targets._flags = kSettingsAsList; -#ifdef ENABLE_IOS targets._settings[getHash("PBXNativeTarget_" + _targets[IOS_TARGET])] = Setting("", _targets[IOS_TARGET], kSettingsNoValue, 0, 0); -#endif targets._settings[getHash("PBXNativeTarget_" + _targets[OSX_TARGET])] = Setting("", _targets[OSX_TARGET], kSettingsNoValue, 0, 1); -#ifdef ENABLE_IOS - targets._settings[getHash("PBXNativeTarget_" + _targets[SIM_TARGET])] = Setting("", _targets[SIM_TARGET], kSettingsNoValue, 0, 2); -#endif project->_properties["targets"] = targets; -#ifndef ENABLE_IOS + // Force list even when there is only a single target project->_properties["targets"]._flags |= kSettingsSingleItem; -#endif _project.add(project); } +XcodeProvider::ValueList& XcodeProvider::getResourceFiles() const { + static ValueList files; + if (files.empty()) { + files.push_back("gui/themes/scummclassic.zip"); + files.push_back("gui/themes/scummmodern.zip"); + files.push_back("gui/themes/translations.dat"); + files.push_back("dists/engine-data/drascula.dat"); + files.push_back("dists/engine-data/hugo.dat"); + files.push_back("dists/engine-data/kyra.dat"); + files.push_back("dists/engine-data/lure.dat"); + files.push_back("dists/engine-data/mort.dat"); + files.push_back("dists/engine-data/neverhood.dat"); + files.push_back("dists/engine-data/queen.tbl"); + files.push_back("dists/engine-data/sky.cpt"); + files.push_back("dists/engine-data/teenagent.dat"); + files.push_back("dists/engine-data/tony.dat"); + files.push_back("dists/engine-data/toon.dat"); + files.push_back("dists/engine-data/wintermute.zip"); + files.push_back("dists/pred.dic"); + files.push_back("icons/scummvm.icns"); + } + return files; +} + void XcodeProvider::setupResourcesBuildPhase() { _resourcesBuildPhase._comment = "PBXResourcesBuildPhase"; - // Setup resource file properties - std::map properties; - properties["scummclassic.zip"] = FileProperty("archive.zip", "", "scummclassic.zip", "\"\""); - properties["scummmodern.zip"] = FileProperty("archive.zip", "", "scummmodern.zip", "\"\""); - - properties["kyra.dat"] = FileProperty("file", "", "kyra.dat", "\"\""); - properties["lure.dat"] = FileProperty("file", "", "lure.dat", "\"\""); - properties["queen.tbl"] = FileProperty("file", "", "queen.tbl", "\"\""); - properties["sky.cpt"] = FileProperty("file", "", "sky.cpt", "\"\""); - properties["drascula.dat"] = FileProperty("file", "", "drascula.dat", "\"\""); - properties["hugo.dat"] = FileProperty("file", "", "hugo.dat", "\"\""); - properties["teenagent.dat"] = FileProperty("file", "", "teenagent.dat", "\"\""); - properties["toon.dat"] = FileProperty("file", "", "toon.dat", "\"\""); - - properties["Default.png"] = FileProperty("image.png", "", "Default.png", "\"\""); - properties["icon.png"] = FileProperty("image.png", "", "icon.png", "\"\""); - properties["icon-72.png"] = FileProperty("image.png", "", "icon-72.png", "\"\""); - properties["icon4.png"] = FileProperty("image.png", "", "icon4.png", "\"\""); + ValueList &files_list = getResourceFiles(); // Same as for containers: a rule for each native target for (unsigned int i = 0; i < _targets.size(); i++) { @@ -611,40 +701,17 @@ void XcodeProvider::setupResourcesBuildPhase() { files._hasOrder = true; files._flags = kSettingsAsList; - ValueList files_list; - files_list.push_back("scummclassic.zip"); - files_list.push_back("scummmodern.zip"); - files_list.push_back("kyra.dat"); - files_list.push_back("lure.dat"); - files_list.push_back("queen.tbl"); - files_list.push_back("sky.cpt"); - files_list.push_back("Default.png"); - files_list.push_back("icon.png"); - files_list.push_back("icon-72.png"); - files_list.push_back("icon4.png"); - files_list.push_back("drascula.dat"); - files_list.push_back("hugo.dat"); - files_list.push_back("teenagent.dat"); - files_list.push_back("toon.dat"); - int order = 0; for (ValueList::iterator file = files_list.begin(); file != files_list.end(); file++) { - std::string id = "PBXResources_" + *file; - std::string comment = *file + " in Resources"; - - ADD_SETTING_ORDER_NOVALUE(files, getHash(id), comment, order++); - // TODO Fix crash when adding build file for data - //ADD_BUILD_FILE(id, *file, comment); - addFileReference(*file, *file, properties[*file]); - } - - // Add custom files depending on the target - if (_targets[i] == PROJECT_DESCRIPTION "-OS X") { - files._settings[getHash("PBXResources_" PROJECT_NAME ".icns")] = Setting("", PROJECT_NAME ".icns in Resources", kSettingsNoValue, 0, 6); - - // Remove 2 iphone icon files - files._settings.erase(getHash("PBXResources_Default.png")); - files._settings.erase(getHash("PBXResources_icon.png")); + if (shouldSkipFileForTarget(*file, _targets[i], *file)) { + continue; + } + std::string resourceAbsolutePath = _projectRoot + "/" + *file; + std::string file_id = "FileReference_" + resourceAbsolutePath; + std::string base = basename(*file); + std::string comment = base + " in Resources"; + addBuildFile(resourceAbsolutePath, base, getHash(file_id), comment); + ADD_SETTING_ORDER_NOVALUE(files, getHash(resourceAbsolutePath), comment, order++); } resource->_properties["files"] = files; @@ -658,11 +725,9 @@ void XcodeProvider::setupResourcesBuildPhase() { void XcodeProvider::setupSourcesBuildPhase() { _sourcesBuildPhase._comment = "PBXSourcesBuildPhase"; - // Setup source file properties - std::map properties; - // Same as for containers: a rule for each native target for (unsigned int i = 0; i < _targets.size(); i++) { + const std::string &targetName = _targets[i]; Object *source = new Object(this, "PBXSourcesBuildPhase_" + _targets[i], "PBXSourcesBuildPhase", "PBXSourcesBuildPhase", "", "Sources"); source->addProperty("buildActionMask", "2147483647", "", kSettingsNoValue); @@ -673,13 +738,19 @@ void XcodeProvider::setupSourcesBuildPhase() { int order = 0; for (std::vector::iterator file = _buildFile._objects.begin(); file != _buildFile._objects.end(); ++file) { - if (!producesObjectFileOnOSX((*file)->_name)) { + const std::string &fileName = (*file)->_name; + if (shouldSkipFileForTarget((*file)->_id, targetName, fileName)) { continue; } - std::string comment = (*file)->_name + " in Sources"; + if (!producesObjectFileOnOSX(fileName)) { + continue; + } + std::string comment = fileName + " in Sources"; ADD_SETTING_ORDER_NOVALUE(files, getHash((*file)->_id), comment, order++); } + setupAdditionalSources(targetName, files, order); + source->_properties["files"] = files; source->addProperty("runOnlyForDeploymentPostprocessing", "0", "", kSettingsNoValue); @@ -689,73 +760,20 @@ void XcodeProvider::setupSourcesBuildPhase() { } // Setup all build configurations -void XcodeProvider::setupBuildConfiguration() { +void XcodeProvider::setupBuildConfiguration(const BuildSetup &setup) { _buildConfiguration._comment = "XCBuildConfiguration"; _buildConfiguration._flags = kSettingsAsList; - ///**************************************** - // * iPhone - // ****************************************/ -#ifdef ENABLE_IOS - // Debug - Object *iPhone_Debug_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-iPhone_Debug", _targets[IOS_TARGET] /* ScummVM-iPhone */, "XCBuildConfiguration", "PBXNativeTarget", "Debug"); - Property iPhone_Debug; - ADD_SETTING_QUOTE(iPhone_Debug, "ARCHS", "$(ARCHS_UNIVERSAL_IPHONE_OS)"); - ADD_SETTING_QUOTE(iPhone_Debug, "CODE_SIGN_IDENTITY", "iPhone Developer"); - ADD_SETTING_QUOTE_VAR(iPhone_Debug, "CODE_SIGN_IDENTITY[sdk=iphoneos*]", "iPhone Developer"); - ADD_SETTING(iPhone_Debug, "COMPRESS_PNG_FILES", "NO"); - ADD_SETTING(iPhone_Debug, "COPY_PHASE_STRIP", "NO"); - ADD_SETTING_QUOTE(iPhone_Debug, "DEBUG_INFORMATION_FORMAT", "dwarf-with-dsym"); - ValueList iPhone_FrameworkSearchPaths; - iPhone_FrameworkSearchPaths.push_back("$(inherited)"); - iPhone_FrameworkSearchPaths.push_back("\"$(SDKROOT)$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks\""); - ADD_SETTING_LIST(iPhone_Debug, "FRAMEWORK_SEARCH_PATHS", iPhone_FrameworkSearchPaths, kSettingsAsList, 5); - ADD_SETTING(iPhone_Debug, "GCC_DYNAMIC_NO_PIC", "NO"); - ADD_SETTING(iPhone_Debug, "GCC_ENABLE_CPP_EXCEPTIONS", "NO"); - ADD_SETTING(iPhone_Debug, "GCC_ENABLE_FIX_AND_CONTINUE", "NO"); - ADD_SETTING(iPhone_Debug, "GCC_OPTIMIZATION_LEVEL", "0"); - ADD_SETTING(iPhone_Debug, "GCC_PRECOMPILE_PREFIX_HEADER", "NO"); - ADD_SETTING_QUOTE(iPhone_Debug, "GCC_PREFIX_HEADER", ""); - ADD_SETTING(iPhone_Debug, "GCC_THUMB_SUPPORT", "NO"); - ADD_SETTING(iPhone_Debug, "GCC_UNROLL_LOOPS", "YES"); - ValueList iPhone_HeaderSearchPaths; - iPhone_HeaderSearchPaths.push_back("$(SRCROOT)/engines/"); - iPhone_HeaderSearchPaths.push_back("$(SRCROOT)"); - iPhone_HeaderSearchPaths.push_back("include/"); - ADD_SETTING_LIST(iPhone_Debug, "HEADER_SEARCH_PATHS", iPhone_HeaderSearchPaths, kSettingsAsList | kSettingsQuoteVariable, 5); - ADD_SETTING(iPhone_Debug, "INFOPLIST_FILE", "Info.plist"); - ValueList iPhone_LibPaths; - iPhone_LibPaths.push_back("$(inherited)"); - iPhone_LibPaths.push_back("\"$(SRCROOT)/lib\""); - ADD_SETTING_LIST(iPhone_Debug, "LIBRARY_SEARCH_PATHS", iPhone_LibPaths, kSettingsAsList, 5); - ADD_SETTING(iPhone_Debug, "ONLY_ACTIVE_ARCH", "YES"); - ADD_SETTING(iPhone_Debug, "PREBINDING", "NO"); - ADD_SETTING(iPhone_Debug, "PRODUCT_NAME", PROJECT_DESCRIPTION); - ADD_SETTING_QUOTE(iPhone_Debug, "PROVISIONING_PROFILE", "EF590570-5FAC-4346-9071-D609DE2B28D8"); - ADD_SETTING_QUOTE_VAR(iPhone_Debug, "PROVISIONING_PROFILE[sdk=iphoneos*]", ""); - ADD_SETTING(iPhone_Debug, "SDKROOT", "iphoneos4.0"); - ADD_SETTING_QUOTE(iPhone_Debug, "TARGETED_DEVICE_FAMILY", "1,2"); - - iPhone_Debug_Object->addProperty("name", "Debug", "", kSettingsNoValue); - iPhone_Debug_Object->_properties["buildSettings"] = iPhone_Debug; - - // Release - Object *iPhone_Release_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-iPhone_Release", _targets[IOS_TARGET] /* ScummVM-iPhone */, "XCBuildConfiguration", "PBXNativeTarget", "Release"); - Property iPhone_Release(iPhone_Debug); - ADD_SETTING(iPhone_Release, "GCC_OPTIMIZATION_LEVEL", "3"); - ADD_SETTING(iPhone_Release, "COPY_PHASE_STRIP", "YES"); - REMOVE_SETTING(iPhone_Release, "GCC_DYNAMIC_NO_PIC"); - ADD_SETTING(iPhone_Release, "WRAPPER_EXTENSION", "app"); - - iPhone_Release_Object->addProperty("name", "Release", "", kSettingsNoValue); - iPhone_Release_Object->_properties["buildSettings"] = iPhone_Release; - - _buildConfiguration.add(iPhone_Debug_Object); - _buildConfiguration.add(iPhone_Release_Object); + std::string projectOutputDirectory; +#ifdef POSIX + char *rp = realpath(setup.outputDir.c_str(), NULL); + projectOutputDirectory = rp; + free(rp); #endif + /**************************************** - * scummvm + * ScummVM - Project Level ****************************************/ // Debug @@ -763,7 +781,6 @@ void XcodeProvider::setupBuildConfiguration() { Property scummvm_Debug; ADD_SETTING(scummvm_Debug, "ALWAYS_SEARCH_USER_PATHS", "NO"); ADD_SETTING_QUOTE(scummvm_Debug, "USER_HEADER_SEARCH_PATHS", "$(SRCROOT) $(SRCROOT)/engines"); - ADD_SETTING_QUOTE(scummvm_Debug, "ARCHS", "$(ARCHS_STANDARD_32_BIT)"); ADD_SETTING_QUOTE(scummvm_Debug, "CODE_SIGN_IDENTITY", "Don't Code Sign"); ADD_SETTING_QUOTE_VAR(scummvm_Debug, "CODE_SIGN_IDENTITY[sdk=iphoneos*]", "Don't Code Sign"); ADD_SETTING_QUOTE(scummvm_Debug, "FRAMEWORK_SEARCH_PATHS", ""); @@ -773,9 +790,11 @@ void XcodeProvider::setupBuildConfiguration() { ADD_SETTING(scummvm_Debug, "GCC_INPUT_FILETYPE", "automatic"); ADD_SETTING(scummvm_Debug, "GCC_OPTIMIZATION_LEVEL", "0"); ValueList scummvm_defines(_defines); - ADD_DEFINE(scummvm_defines, "IPHONE"); - ADD_DEFINE(scummvm_defines, "XCODE"); - ADD_DEFINE(scummvm_defines, "IPHONE_OFFICIAL"); + REMOVE_DEFINE(scummvm_defines, "MACOSX"); + REMOVE_DEFINE(scummvm_defines, "IPHONE"); + REMOVE_DEFINE(scummvm_defines, "IPHONE_IOS7"); + REMOVE_DEFINE(scummvm_defines, "IPHONE_SANDBOXED"); + REMOVE_DEFINE(scummvm_defines, "SDL_BACKEND"); ADD_SETTING_LIST(scummvm_Debug, "GCC_PREPROCESSOR_DEFINITIONS", scummvm_defines, kSettingsNoQuote | kSettingsAsList, 5); ADD_SETTING(scummvm_Debug, "GCC_THUMB_SUPPORT", "NO"); ADD_SETTING(scummvm_Debug, "GCC_USE_GCC3_PFE_SUPPORT", "NO"); @@ -791,7 +810,7 @@ void XcodeProvider::setupBuildConfiguration() { ADD_SETTING_QUOTE(scummvm_Debug, "OTHER_CFLAGS", ""); ADD_SETTING_QUOTE(scummvm_Debug, "OTHER_LDFLAGS", "-lz"); ADD_SETTING(scummvm_Debug, "PREBINDING", "NO"); - ADD_SETTING(scummvm_Debug, "SDKROOT", "macosx"); + ADD_SETTING(scummvm_Debug, "ENABLE_TESTABILITY", "YES"); scummvm_Debug_Object->addProperty("name", "Debug", "", kSettingsNoValue); scummvm_Debug_Object->_properties["buildSettings"] = scummvm_Debug; @@ -803,6 +822,7 @@ void XcodeProvider::setupBuildConfiguration() { REMOVE_SETTING(scummvm_Release, "GCC_WARN_ABOUT_RETURN_TYPE"); REMOVE_SETTING(scummvm_Release, "GCC_WARN_UNUSED_VARIABLE"); REMOVE_SETTING(scummvm_Release, "ONLY_ACTIVE_ARCH"); + REMOVE_SETTING(scummvm_Release, "ENABLE_TESTABILITY"); scummvm_Release_Object->addProperty("name", "Release", "", kSettingsNoValue); scummvm_Release_Object->_properties["buildSettings"] = scummvm_Release; @@ -810,17 +830,92 @@ void XcodeProvider::setupBuildConfiguration() { _buildConfiguration.add(scummvm_Debug_Object); _buildConfiguration.add(scummvm_Release_Object); + ///**************************************** + // * ScummVM - iOS Target + // ****************************************/ + + // Debug + Object *iPhone_Debug_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-iPhone_Debug", _targets[IOS_TARGET] /* ScummVM-iPhone */, "XCBuildConfiguration", "PBXNativeTarget", "Debug"); + Property iPhone_Debug; + ADD_SETTING_QUOTE(iPhone_Debug, "CODE_SIGN_IDENTITY", "iPhone Developer"); + ADD_SETTING_QUOTE_VAR(iPhone_Debug, "CODE_SIGN_IDENTITY[sdk=iphoneos*]", "iPhone Developer"); + ADD_SETTING(iPhone_Debug, "COMPRESS_PNG_FILES", "NO"); + ADD_SETTING(iPhone_Debug, "COPY_PHASE_STRIP", "NO"); + ADD_SETTING_QUOTE(iPhone_Debug, "DEBUG_INFORMATION_FORMAT", "dwarf"); + ValueList iPhone_FrameworkSearchPaths; + iPhone_FrameworkSearchPaths.push_back("$(inherited)"); + iPhone_FrameworkSearchPaths.push_back("\"$(SDKROOT)$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks\""); + ADD_SETTING_LIST(iPhone_Debug, "FRAMEWORK_SEARCH_PATHS", iPhone_FrameworkSearchPaths, kSettingsAsList, 5); + ADD_SETTING(iPhone_Debug, "GCC_DYNAMIC_NO_PIC", "NO"); + ADD_SETTING(iPhone_Debug, "GCC_ENABLE_CPP_EXCEPTIONS", "NO"); + ADD_SETTING(iPhone_Debug, "GCC_ENABLE_FIX_AND_CONTINUE", "NO"); + ADD_SETTING(iPhone_Debug, "GCC_OPTIMIZATION_LEVEL", "0"); + ADD_SETTING(iPhone_Debug, "GCC_PRECOMPILE_PREFIX_HEADER", "NO"); + ADD_SETTING(iPhone_Debug, "GCC_WARN_64_TO_32_BIT_CONVERSION", "NO"); + ADD_SETTING(iPhone_Debug, "WARNING_CFLAGS", "-Wno-multichar"); + ADD_SETTING_QUOTE(iPhone_Debug, "GCC_PREFIX_HEADER", ""); + ADD_SETTING(iPhone_Debug, "GCC_THUMB_SUPPORT", "NO"); + ADD_SETTING(iPhone_Debug, "GCC_UNROLL_LOOPS", "YES"); + ValueList iPhone_HeaderSearchPaths; + iPhone_HeaderSearchPaths.push_back("$(SRCROOT)/engines/"); + iPhone_HeaderSearchPaths.push_back("$(SRCROOT)"); + iPhone_HeaderSearchPaths.push_back("\"" + projectOutputDirectory + "\""); + iPhone_HeaderSearchPaths.push_back("\"" + projectOutputDirectory + "/include\""); + ADD_SETTING_LIST(iPhone_Debug, "HEADER_SEARCH_PATHS", iPhone_HeaderSearchPaths, kSettingsAsList | kSettingsQuoteVariable, 5); + ADD_SETTING_QUOTE(iPhone_Debug, "INFOPLIST_FILE", "$(SRCROOT)/dists/ios7/Info.plist"); + ValueList iPhone_LibPaths; + iPhone_LibPaths.push_back("$(inherited)"); + iPhone_LibPaths.push_back("\"" + projectOutputDirectory + "/lib\""); + ADD_SETTING_LIST(iPhone_Debug, "LIBRARY_SEARCH_PATHS", iPhone_LibPaths, kSettingsAsList, 5); + ADD_SETTING(iPhone_Debug, "ONLY_ACTIVE_ARCH", "YES"); + ADD_SETTING(iPhone_Debug, "PREBINDING", "NO"); + ADD_SETTING(iPhone_Debug, "PRODUCT_NAME", PROJECT_NAME); + ADD_SETTING(iPhone_Debug, "PRODUCT_BUNDLE_IDENTIFIER", "\"org.scummvm.${PRODUCT_NAME}\""); + ADD_SETTING(iPhone_Debug, "IPHONEOS_DEPLOYMENT_TARGET", "7.1"); + //ADD_SETTING_QUOTE(iPhone_Debug, "PROVISIONING_PROFILE", "EF590570-5FAC-4346-9071-D609DE2B28D8"); + ADD_SETTING_QUOTE_VAR(iPhone_Debug, "PROVISIONING_PROFILE[sdk=iphoneos*]", ""); + ADD_SETTING(iPhone_Debug, "SDKROOT", "iphoneos"); + ADD_SETTING_QUOTE(iPhone_Debug, "TARGETED_DEVICE_FAMILY", "1,2"); + ValueList scummvmIOS_defines; + ADD_DEFINE(scummvmIOS_defines, "\"$(inherited)\""); + ADD_DEFINE(scummvmIOS_defines, "IPHONE"); + ADD_DEFINE(scummvmIOS_defines, "IPHONE_IOS7"); + ADD_DEFINE(scummvmIOS_defines, "IPHONE_SANDBOXED"); + ADD_SETTING_LIST(iPhone_Debug, "GCC_PREPROCESSOR_DEFINITIONS", scummvmIOS_defines, kSettingsNoQuote | kSettingsAsList, 5); + ADD_SETTING(iPhone_Debug, "ASSETCATALOG_COMPILER_APPICON_NAME", "AppIcon"); + ADD_SETTING(iPhone_Debug, "ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME", "LaunchImage"); + + iPhone_Debug_Object->addProperty("name", "Debug", "", kSettingsNoValue); + iPhone_Debug_Object->_properties["buildSettings"] = iPhone_Debug; + + // Release + Object *iPhone_Release_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-iPhone_Release", _targets[IOS_TARGET] /* ScummVM-iPhone */, "XCBuildConfiguration", "PBXNativeTarget", "Release"); + Property iPhone_Release(iPhone_Debug); + ADD_SETTING(iPhone_Release, "GCC_OPTIMIZATION_LEVEL", "3"); + ADD_SETTING(iPhone_Release, "COPY_PHASE_STRIP", "YES"); + REMOVE_SETTING(iPhone_Release, "GCC_DYNAMIC_NO_PIC"); + ADD_SETTING(iPhone_Release, "WRAPPER_EXTENSION", "app"); + REMOVE_SETTING(iPhone_Release, "DEBUG_INFORMATION_FORMAT"); + ADD_SETTING_QUOTE(iPhone_Release, "DEBUG_INFORMATION_FORMAT", "dwarf-with-dsym"); + + iPhone_Release_Object->addProperty("name", "Release", "", kSettingsNoValue); + iPhone_Release_Object->_properties["buildSettings"] = iPhone_Release; + + _buildConfiguration.add(iPhone_Debug_Object); + _buildConfiguration.add(iPhone_Release_Object); + /**************************************** - * ScummVM-OS X + * ScummVM - OS X Target ****************************************/ // Debug Object *scummvmOSX_Debug_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-OSX_Debug", _targets[OSX_TARGET] /* ScummVM-OS X */, "XCBuildConfiguration", "PBXNativeTarget", "Debug"); Property scummvmOSX_Debug; - ADD_SETTING_QUOTE(scummvmOSX_Debug, "ARCHS", "$(NATIVE_ARCH)"); + ADD_SETTING(scummvmOSX_Debug, "COMBINE_HIDPI_IMAGES", "YES"); + ADD_SETTING(scummvmOSX_Debug, "SDKROOT", "macosx"); ADD_SETTING(scummvmOSX_Debug, "COMPRESS_PNG_FILES", "NO"); ADD_SETTING(scummvmOSX_Debug, "COPY_PHASE_STRIP", "NO"); - ADD_SETTING_QUOTE(scummvmOSX_Debug, "DEBUG_INFORMATION_FORMAT", "dwarf-with-dsym"); + ADD_SETTING_QUOTE(scummvmOSX_Debug, "DEBUG_INFORMATION_FORMAT", "dwarf"); ADD_SETTING_QUOTE(scummvmOSX_Debug, "FRAMEWORK_SEARCH_PATHS", ""); ADD_SETTING(scummvmOSX_Debug, "GCC_C_LANGUAGE_STANDARD", "c99"); ADD_SETTING(scummvmOSX_Debug, "GCC_ENABLE_CPP_EXCEPTIONS", "NO"); @@ -830,7 +925,8 @@ void XcodeProvider::setupBuildConfiguration() { ADD_SETTING(scummvmOSX_Debug, "GCC_OPTIMIZATION_LEVEL", "0"); ADD_SETTING(scummvmOSX_Debug, "GCC_PRECOMPILE_PREFIX_HEADER", "NO"); ADD_SETTING_QUOTE(scummvmOSX_Debug, "GCC_PREFIX_HEADER", ""); - ValueList scummvmOSX_defines(_defines); + ValueList scummvmOSX_defines; + ADD_DEFINE(scummvmOSX_defines, "\"$(inherited)\""); ADD_DEFINE(scummvmOSX_defines, "SDL_BACKEND"); ADD_DEFINE(scummvmOSX_defines, "MACOSX"); ADD_SETTING_LIST(scummvmOSX_Debug, "GCC_PREPROCESSOR_DEFINITIONS", scummvmOSX_defines, kSettingsNoQuote | kSettingsAsList, 5); @@ -866,7 +962,7 @@ void XcodeProvider::setupBuildConfiguration() { scummvmOSX_LdFlags.push_back("-lz"); ADD_SETTING_LIST(scummvmOSX_Debug, "OTHER_LDFLAGS", scummvmOSX_LdFlags, kSettingsAsList, 5); ADD_SETTING(scummvmOSX_Debug, "PREBINDING", "NO"); - ADD_SETTING(scummvmOSX_Debug, "PRODUCT_NAME", PROJECT_DESCRIPTION); + ADD_SETTING(scummvmOSX_Debug, "PRODUCT_NAME", PROJECT_NAME); scummvmOSX_Debug_Object->addProperty("name", "Debug", "", kSettingsNoValue); scummvmOSX_Debug_Object->_properties["buildSettings"] = scummvmOSX_Debug; @@ -878,48 +974,15 @@ void XcodeProvider::setupBuildConfiguration() { REMOVE_SETTING(scummvmOSX_Release, "GCC_DYNAMIC_NO_PIC"); REMOVE_SETTING(scummvmOSX_Release, "GCC_OPTIMIZATION_LEVEL"); ADD_SETTING(scummvmOSX_Release, "WRAPPER_EXTENSION", "app"); + REMOVE_SETTING(scummvmOSX_Release, "DEBUG_INFORMATION_FORMAT"); + ADD_SETTING_QUOTE(scummvmOSX_Release, "DEBUG_INFORMATION_FORMAT", "dwarf-with-dsym"); scummvmOSX_Release_Object->addProperty("name", "Release", "", kSettingsNoValue); scummvmOSX_Release_Object->_properties["buildSettings"] = scummvmOSX_Release; _buildConfiguration.add(scummvmOSX_Debug_Object); _buildConfiguration.add(scummvmOSX_Release_Object); -#ifdef ENABLE_IOS - /**************************************** - * ScummVM-Simulator - ****************************************/ - // Debug - Object *scummvmSimulator_Debug_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-Simulator_Debug", _targets[SIM_TARGET] /* ScummVM-Simulator */, "XCBuildConfiguration", "PBXNativeTarget", "Debug"); - Property scummvmSimulator_Debug(iPhone_Debug); - ADD_SETTING_QUOTE(scummvmSimulator_Debug, "FRAMEWORK_SEARCH_PATHS", "$(inherited)"); - ADD_SETTING_LIST(scummvmSimulator_Debug, "GCC_PREPROCESSOR_DEFINITIONS", scummvm_defines, kSettingsNoQuote | kSettingsAsList, 5); - ADD_SETTING(scummvmSimulator_Debug, "SDKROOT", "iphonesimulator3.2"); - ADD_SETTING_QUOTE(scummvmSimulator_Debug, "VALID_ARCHS", "i386 x86_64"); - REMOVE_SETTING(scummvmSimulator_Debug, "TARGETED_DEVICE_FAMILY"); - - scummvmSimulator_Debug_Object->addProperty("name", "Debug", "", kSettingsNoValue); - scummvmSimulator_Debug_Object->_properties["buildSettings"] = scummvmSimulator_Debug; - - // Release - Object *scummvmSimulator_Release_Object = new Object(this, "XCBuildConfiguration_" PROJECT_DESCRIPTION "-Simulator_Release", _targets[SIM_TARGET] /* ScummVM-Simulator */, "XCBuildConfiguration", "PBXNativeTarget", "Release"); - Property scummvmSimulator_Release(scummvmSimulator_Debug); - ADD_SETTING(scummvmSimulator_Release, "COPY_PHASE_STRIP", "YES"); - ADD_SETTING(scummvmSimulator_Release, "GCC_OPTIMIZATION_LEVEL", "3"); - REMOVE_SETTING(scummvmSimulator_Release, "GCC_DYNAMIC_NO_PIC"); - ADD_SETTING(scummvmSimulator_Release, "WRAPPER_EXTENSION", "app"); - - scummvmSimulator_Release_Object->addProperty("name", "Release", "", kSettingsNoValue); - scummvmSimulator_Release_Object->_properties["buildSettings"] = scummvmSimulator_Release; - - _buildConfiguration.add(scummvmSimulator_Debug_Object); - _buildConfiguration.add(scummvmSimulator_Release_Object); - - ////////////////////////////////////////////////////////////////////////// - // Configuration List - _configurationList._comment = "XCConfigurationList"; - _configurationList._flags = kSettingsAsList; -#endif // Warning: This assumes we have all configurations with a Debug & Release pair for (std::vector::iterator config = _buildConfiguration._objects.begin(); config != _buildConfiguration._objects.end(); config++) { @@ -940,6 +1003,22 @@ void XcodeProvider::setupBuildConfiguration() { } } +void XcodeProvider::setupImageAssetCatalog(const BuildSetup &setup) { + const std::string filename = "Images.xcassets"; + const std::string absoluteCatalogPath = _projectRoot + "/dists/ios7/" + filename; + const std::string id = "FileReference_" + absoluteCatalogPath; + Group *group = touchGroupsForPath(absoluteCatalogPath); + group->addChildFile(filename); + addBuildFile(absoluteCatalogPath, filename, getHash(id), "Image Asset Catalog"); +} + +void XcodeProvider::setupAdditionalSources(std::string targetName, Property &files, int &order) { + if (targetIsIOS(targetName)) { + const std::string absoluteCatalogPath = _projectRoot + "/dists/ios7/Images.xcassets"; + ADD_SETTING_ORDER_NOVALUE(files, getHash(absoluteCatalogPath), "Image Asset Catalog", order++); + } +} + ////////////////////////////////////////////////////////////////////////// // Misc ////////////////////////////////////////////////////////////////////////// @@ -954,9 +1033,12 @@ void XcodeProvider::setupDefines(const BuildSetup &setup) { ADD_DEFINE(_defines, *i); } // Add special defines for Mac support + REMOVE_DEFINE(_defines, "MACOSX"); + REMOVE_DEFINE(_defines, "IPHONE"); + REMOVE_DEFINE(_defines, "IPHONE_IOS7"); + REMOVE_DEFINE(_defines, "IPHONE_SANDBOXED"); + REMOVE_DEFINE(_defines, "SDL_BACKEND"); ADD_DEFINE(_defines, "CONFIG_H"); - ADD_DEFINE(_defines, "SCUMM_NEED_ALIGNMENT"); - ADD_DEFINE(_defines, "SCUMM_LITTLE_ENDIAN"); ADD_DEFINE(_defines, "UNIX"); ADD_DEFINE(_defines, "SCUMMVM"); } @@ -965,7 +1047,6 @@ void XcodeProvider::setupDefines(const BuildSetup &setup) { // Object hash ////////////////////////////////////////////////////////////////////////// -// TODO use md5 to compute a file hash (and fall back to standard key generation if not passed a file) std::string XcodeProvider::getHash(std::string key) { #if DEBUG_XCODE_HASH @@ -977,7 +1058,12 @@ std::string XcodeProvider::getHash(std::string key) { return hashIterator->second; // Generate a new key from the file hash and insert it into the dictionary +#ifdef MACOSX + std::string hash = md5(key); +#else std::string hash = newHash(); +#endif + _hashDictionnary[key] = hash; return hash; @@ -986,6 +1072,19 @@ std::string XcodeProvider::getHash(std::string key) { bool isSeparator(char s) { return (s == '-'); } +#ifdef MACOSX +std::string XcodeProvider::md5(std::string key) { + unsigned char md[CC_MD5_DIGEST_LENGTH]; + CC_MD5(key.c_str(), (CC_LONG) key.length(), md); + std::stringstream stream; + stream << std::hex << std::setfill('0') << std::setw(2); + for (int i=0; ifirst; } }; @@ -230,6 +233,15 @@ private: _objectMap[obj->_id] = true; } + Object *find(std::string id) { + for (std::vector::iterator it = _objects.begin(); it != _objects.end(); ++it) { + if ((*it)->_id == id) { + return *it; + } + } + return NULL; + } + std::string toString() { std::string output; @@ -300,18 +312,26 @@ private: // Setup objects void setupCopyFilesBuildPhase(); - void setupFrameworksBuildPhase(); + void setupFrameworksBuildPhase(const BuildSetup &setup); void setupNativeTarget(); void setupProject(); void setupResourcesBuildPhase(); void setupSourcesBuildPhase(); - void setupBuildConfiguration(); + void setupBuildConfiguration(const BuildSetup &setup); + void setupImageAssetCatalog(const BuildSetup &setup); + void setupAdditionalSources(std::string targetName, Property &files, int &order); // Misc void setupDefines(const BuildSetup &setup); // Setup the list of defines to be used on build configurations + // Retrieve information + ValueList& getResourceFiles() const; + // Hash generation std::string getHash(std::string key); +#ifdef MACOSX + std::string md5(std::string key); +#endif std::string newHash() const; // Output diff --git a/devtools/create_project/xcode/create_project.xcodeproj/project.pbxproj b/devtools/create_project/xcode/create_project.xcodeproj/project.pbxproj index f13bcf69695..4f06a5e469c 100644 --- a/devtools/create_project/xcode/create_project.xcodeproj/project.pbxproj +++ b/devtools/create_project/xcode/create_project.xcodeproj/project.pbxproj @@ -140,6 +140,9 @@ /* Begin PBXProject section */ F9A66C1E1396D36100CEE494 /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0720; + }; buildConfigurationList = F9A66C211396D36100CEE494 /* Build configuration list for PBXProject "create_project" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; @@ -177,12 +180,14 @@ F9A66C2E1396D36100CEE494 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = DEBUG; + GCC_PREPROCESSOR_DEFINITIONS = ( + POSIX, + MACOSX, + ); GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNUSED_VARIABLE = YES; @@ -195,9 +200,11 @@ F9A66C2F1396D36100CEE494 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_PREPROCESSOR_DEFINITIONS = ( + POSIX, + MACOSX, + ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNUSED_VARIABLE = YES; @@ -213,6 +220,10 @@ COPY_PHASE_STRIP = NO; GCC_DYNAMIC_NO_PIC = NO; GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + DEBUG, + ); PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -224,6 +235,7 @@ COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; diff --git a/devtools/update-version.pl b/devtools/update-version.pl index 019da26b878..63f2cdf4a6d 100755 --- a/devtools/update-version.pl +++ b/devtools/update-version.pl @@ -38,7 +38,6 @@ my @subs_files = qw( dists/macosx/Info.plist dists/irix/residualvm.spec dists/android/AndroidManifest.xml - dists/android/plugin-manifest.xml ); my %subs = ( diff --git a/engines/engine.cpp b/engines/engine.cpp index 86cd9188cbc..31b2c88ff8e 100644 --- a/engines/engine.cpp +++ b/engines/engine.cpp @@ -40,7 +40,6 @@ #include "common/str.h" #include "common/error.h" #include "common/list.h" -#include "common/list_intern.h" #include "common/memstream.h" #include "common/scummsys.h" #include "common/taskbar.h" diff --git a/graphics/fonts/ttf.cpp b/graphics/fonts/ttf.cpp index 98420f6dfbb..76b7f731be5 100644 --- a/graphics/fonts/ttf.cpp +++ b/graphics/fonts/ttf.cpp @@ -277,7 +277,7 @@ bool TTFFont::load(Common::SeekableReadStream &stream, int size, TTFSizeMode siz } int TTFFont::computePointSize(int size, TTFSizeMode sizeMode) const { - int ptSize; + int ptSize = 0; switch (sizeMode) { case kTTFSizeModeCell: { ptSize = readPointSizeFromVDMXTable(size); diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index 3c50cf868ea..7db4a15286f 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -44,21 +44,21 @@ namespace GUI { -const char * const ThemeEngine::kImageLogo = "logo.bmp"; -const char * const ThemeEngine::kImageLogoSmall = "logo_small.bmp"; -const char * const ThemeEngine::kImageSearch = "search.bmp"; -const char * const ThemeEngine::kImageEraser = "eraser.bmp"; -const char * const ThemeEngine::kImageDelbtn = "delbtn.bmp"; -const char * const ThemeEngine::kImageList = "list.bmp"; -const char * const ThemeEngine::kImageGrid = "grid.bmp"; -const char * const ThemeEngine::kImageStopbtn = "stopbtn.bmp"; -const char * const ThemeEngine::kImageEditbtn = "editbtn.bmp"; -const char * const ThemeEngine::kImageSwitchModebtn = "switchbtn.bmp"; -const char * const ThemeEngine::kImageFastReplaybtn = "fastreplay.bmp"; -const char * const ThemeEngine::kImageStopSmallbtn = "stopbtn_small.bmp"; -const char * const ThemeEngine::kImageEditSmallbtn = "editbtn_small.bmp"; -const char * const ThemeEngine::kImageSwitchModeSmallbtn = "switchbtn_small.bmp"; -const char * const ThemeEngine::kImageFastReplaySmallbtn = "fastreplay_small.bmp"; +const char *const ThemeEngine::kImageLogo = "logo.bmp"; +const char *const ThemeEngine::kImageLogoSmall = "logo_small.bmp"; +const char *const ThemeEngine::kImageSearch = "search.bmp"; +const char *const ThemeEngine::kImageEraser = "eraser.bmp"; +const char *const ThemeEngine::kImageDelButton = "delbtn.bmp"; +const char *const ThemeEngine::kImageList = "list.bmp"; +const char *const ThemeEngine::kImageGrid = "grid.bmp"; +const char *const ThemeEngine::kImageStopButton = "stopbtn.bmp"; +const char *const ThemeEngine::kImageEditButton = "editbtn.bmp"; +const char *const ThemeEngine::kImageSwitchModeButton = "switchbtn.bmp"; +const char *const ThemeEngine::kImageFastReplayButton = "fastreplay.bmp"; +const char *const ThemeEngine::kImageStopSmallButton = "stopbtn_small.bmp"; +const char *const ThemeEngine::kImageEditSmallButton = "editbtn_small.bmp"; +const char *const ThemeEngine::kImageSwitchModeSmallButton = "switchbtn_small.bmp"; +const char *const ThemeEngine::kImageFastReplaySmallButton = "fastreplay_small.bmp"; struct TextDrawData { const Graphics::Font *_fontPtr; diff --git a/gui/ThemeEngine.h b/gui/ThemeEngine.h index 68be2e0b26b..a5ef49c78bf 100644 --- a/gui/ThemeEngine.h +++ b/gui/ThemeEngine.h @@ -36,7 +36,7 @@ #include "graphics/pixelformat.h" -#define SCUMMVM_THEME_VERSION_STR "SCUMMVM_STX0.8.20" +#define SCUMMVM_THEME_VERSION_STR "SCUMMVM_STX0.8.21" class OSystem; @@ -228,17 +228,17 @@ public: static const char *const kImageLogoSmall; ///< ScummVM logo used in the GMM static const char *const kImageSearch; ///< Search tool image used in the launcher static const char *const kImageEraser; ///< Clear input image used in the launcher - static const char *const kImageDelbtn; ///< Delete characters in the predictive dialog + static const char *const kImageDelButton; ///< Delete characters in the predictive dialog static const char *const kImageList; ///< List image used in save/load chooser selection static const char *const kImageGrid; ///< Grid image used in save/load chooser selection - static const char *const kImageStopbtn; ///< Stop recording button in recorder onscreen dialog - static const char *const kImageEditbtn; ///< Edit recording metadata in recorder onscreen dialog - static const char *const kImageSwitchModebtn; ///< Switch mode button in recorder onscreen dialog - static const char *const kImageFastReplaybtn; ///< Fast playback mode button in recorder onscreen dialog - static const char *const kImageStopSmallbtn; ///< Stop recording button in recorder onscreen dialog (for 320xY) - static const char *const kImageEditSmallbtn; ///< Edit recording metadata in recorder onscreen dialog (for 320xY) - static const char *const kImageSwitchModeSmallbtn; ///< Switch mode button in recorder onscreen dialog (for 320xY) - static const char *const kImageFastReplaySmallbtn; ///< Fast playback mode button in recorder onscreen dialog (for 320xY) + static const char *const kImageStopButton; ///< Stop recording button in recorder onscreen dialog + static const char *const kImageEditButton; ///< Edit recording metadata in recorder onscreen dialog + static const char *const kImageSwitchModeButton; ///< Switch mode button in recorder onscreen dialog + static const char *const kImageFastReplayButton; ///< Fast playback mode button in recorder onscreen dialog + static const char *const kImageStopSmallButton; ///< Stop recording button in recorder onscreen dialog (for 320xY) + static const char *const kImageEditSmallButton; ///< Edit recording metadata in recorder onscreen dialog (for 320xY) + static const char *const kImageSwitchModeSmallButton; ///< Switch mode button in recorder onscreen dialog (for 320xY) + static const char *const kImageFastReplaySmallButton; ///< Fast playback mode button in recorder onscreen dialog (for 320xY) /** * Graphics mode enumeration. diff --git a/gui/module.mk b/gui/module.mk index e3552126205..bbb3def96d7 100644 --- a/gui/module.mk +++ b/gui/module.mk @@ -32,6 +32,18 @@ MODULE_OBJS := \ widgets/scrollbar.o \ widgets/tab.o +# HACK: create_project's XCode generator relies on the following ifdef +# structure to pick up the right browser implementations for iOS and Mac OS X. +# Please keep it like this or XCode project generation will be broken. +# FIXME: This only works because of a bug in how we handle ifdef statements in +# create_project's module.mk parser. create_project will think that both +# browser.o and browser_osx.o is built when both IPHONE and MACOSX is set. +# When we do proper ifdef handling, only browser.o will be picked up, breaking +# XCode generation. +ifdef IPHONE +MODULE_OBJS += \ + browser.o +else ifdef MACOSX MODULE_OBJS += \ browser_osx.o @@ -39,6 +51,7 @@ else MODULE_OBJS += \ browser.o endif +endif ifdef ENABLE_EVENTRECORDER MODULE_OBJS += \ diff --git a/gui/onscreendialog.cpp b/gui/onscreendialog.cpp index 0e378341363..8b338f56df4 100644 --- a/gui/onscreendialog.cpp +++ b/gui/onscreendialog.cpp @@ -62,37 +62,37 @@ OnScreenDialog::OnScreenDialog(bool isRecord) : Dialog("OnScreenDialog") { #ifndef DISABLE_FANCY_THEMES if (g_gui.xmlEval()->getVar("Globals.OnScreenDialog.ShowPics") == 1 && g_gui.theme()->supportsImages()) { - GUI::PicButtonWidget *btn; - btn = new PicButtonWidget(this, "OnScreenDialog.StopButton", 0, kStopCmd, 0); - btn->useThemeTransparency(true); + GUI::PicButtonWidget *button; + button = new PicButtonWidget(this, "OnScreenDialog.StopButton", 0, kStopCmd, 0); + button->useThemeTransparency(true); if (g_system->getOverlayWidth() > 320) - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageStopbtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageStopButton)); else - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageStopSmallbtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageStopSmallButton)); if (isRecord) { - btn = new PicButtonWidget(this, "OnScreenDialog.EditButton", 0, kEditCmd, 0); - btn->useThemeTransparency(true); + button = new PicButtonWidget(this, "OnScreenDialog.EditButton", 0, kEditCmd, 0); + button->useThemeTransparency(true); if (g_system->getOverlayWidth() > 320) - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageEditbtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageEditButton)); else - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageEditSmallbtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageEditSmallButton)); } else { - btn = new PicButtonWidget(this, "OnScreenDialog.SwitchModeButton", 0, kSwitchModeCmd, 0); - btn->useThemeTransparency(true); + button = new PicButtonWidget(this, "OnScreenDialog.SwitchModeButton", 0, kSwitchModeCmd, 0); + button->useThemeTransparency(true); if (g_system->getOverlayWidth() > 320) - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageSwitchModebtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageSwitchModeButton)); else - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageSwitchModeSmallbtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageSwitchModeSmallButton)); - btn = new PicButtonWidget(this, "OnScreenDialog.FastReplayButton", 0, kFastModeCmd, 0); - btn->useThemeTransparency(true); + button = new PicButtonWidget(this, "OnScreenDialog.FastReplayButton", 0, kFastModeCmd, 0); + button->useThemeTransparency(true); if (g_system->getOverlayWidth() > 320) - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageFastReplaybtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageFastReplayButton)); else - btn->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageFastReplaySmallbtn)); + button->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageFastReplaySmallButton)); } } else #endif diff --git a/gui/predictivedialog.cpp b/gui/predictivedialog.cpp index a894b02f809..6ff10267dbe 100644 --- a/gui/predictivedialog.cpp +++ b/gui/predictivedialog.cpp @@ -24,6 +24,7 @@ #include "gui/widget.h" #include "gui/widgets/edittext.h" #include "gui/gui-manager.h" +#include "gui/ThemeEval.h" #include "common/config-manager.h" #include "common/translation.h" @@ -69,74 +70,57 @@ enum { PredictiveDialog::PredictiveDialog() : Dialog("Predictive") { new StaticTextWidget(this, "Predictive.Headline", "Enter Text"); - _btns = (ButtonWidget **)calloc(16, sizeof(ButtonWidget *)); + _button[kCancelAct] = new ButtonWidget(this, "Predictive.Cancel", _("Cancel") , 0, kCancelCmd); + _button[kOkAct] = new ButtonWidget(this, "Predictive.OK", _("Ok") , 0, kOkCmd); + _button[kButton1Act] = new ButtonWidget(this, "Predictive.Button1", "1 `-.&" , 0, kBut1Cmd); + _button[kButton2Act] = new ButtonWidget(this, "Predictive.Button2", "2 abc" , 0, kBut2Cmd); + _button[kButton3Act] = new ButtonWidget(this, "Predictive.Button3", "3 def" , 0, kBut3Cmd); + _button[kButton4Act] = new ButtonWidget(this, "Predictive.Button4", "4 ghi" , 0, kBut4Cmd); + _button[kButton5Act] = new ButtonWidget(this, "Predictive.Button5", "5 jkl" , 0, kBut5Cmd); + _button[kButton6Act] = new ButtonWidget(this, "Predictive.Button6", "6 mno" , 0, kBut6Cmd); + _button[kButton7Act] = new ButtonWidget(this, "Predictive.Button7", "7 pqrs" , 0, kBut7Cmd); + _button[kButton8Act] = new ButtonWidget(this, "Predictive.Button8", "8 tuv" , 0, kBut8Cmd); + _button[kButton9Act] = new ButtonWidget(this, "Predictive.Button9", "9 wxyz" , 0, kBut9Cmd); + _button[kButton0Act] = new ButtonWidget(this, "Predictive.Button0", "0" , 0, kBut0Cmd); + // I18N: You must leave "#" as is, only word 'next' is translatable + _button[kNextAct] = new ButtonWidget(this, "Predictive.Next", _("# next") , 0, kNextCmd); + _button[kAddAct] = new ButtonWidget(this, "Predictive.Add", _("add") , 0, kAddCmd); + _button[kAddAct]->setEnabled(false); - _btns[kCancelAct] = new ButtonWidget(this, "Predictive.Cancel", _("Cancel") , 0, kCancelCmd); - _btns[kOkAct] = new ButtonWidget(this, "Predictive.OK", _("Ok") , 0, kOkCmd); - _btns[kBtn1Act] = new ButtonWidget(this, "Predictive.Button1", "1 `-.&" , 0, kBut1Cmd); - _btns[kBtn2Act] = new ButtonWidget(this, "Predictive.Button2", "2 abc" , 0, kBut2Cmd); - _btns[kBtn3Act] = new ButtonWidget(this, "Predictive.Button3", "3 def" , 0, kBut3Cmd); - _btns[kBtn4Act] = new ButtonWidget(this, "Predictive.Button4", "4 ghi" , 0, kBut4Cmd); - _btns[kBtn5Act] = new ButtonWidget(this, "Predictive.Button5", "5 jkl" , 0, kBut5Cmd); - _btns[kBtn6Act] = new ButtonWidget(this, "Predictive.Button6", "6 mno" , 0, kBut6Cmd); - _btns[kBtn7Act] = new ButtonWidget(this, "Predictive.Button7", "7 pqrs" , 0, kBut7Cmd); - _btns[kBtn8Act] = new ButtonWidget(this, "Predictive.Button8", "8 tuv" , 0, kBut8Cmd); - _btns[kBtn9Act] = new ButtonWidget(this, "Predictive.Button9", "9 wxyz" , 0, kBut9Cmd); - _btns[kBtn0Act] = new ButtonWidget(this, "Predictive.Button0", "0" , 0, kBut0Cmd); - // I18N: You must leave "#" as is, only word 'next' is translatable - _btns[kNextAct] = new ButtonWidget(this, "Predictive.Next", _("# next") , 0, kNextCmd); - _btns[kAddAct] = new ButtonWidget(this, "Predictive.Add", _("add") , 0, kAddCmd); - _btns[kAddAct]->setEnabled(false); - - #ifndef DISABLE_FANCY_THEMES - _btns[kDelAct] = new PicButtonWidget(this, "Predictive.Delete", _("Delete char"), kDelCmd); - ((PicButtonWidget *)_btns[kDelAct])->useThemeTransparency(true); - ((PicButtonWidget *)_btns[kDelAct])->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageDelbtn)); - #endif - _btns[kDelAct] = new ButtonWidget(this, "Predictive.Delete" , _("<") , 0, kDelCmd); - // I18N: Pre means 'Predictive', leave '*' as is - _btns[kModeAct] = new ButtonWidget(this, "Predictive.Pre", _("* Pre"), 0, kModeCmd); - _edittext = new EditTextWidget(this, "Predictive.Word", _search, 0, 0, 0); +#ifndef DISABLE_FANCY_THEMES + if (g_gui.xmlEval()->getVar("Globals.Predictive.ShowDeletePic") == 1 && g_gui.theme()->supportsImages()) { + _button[kDelAct] = new PicButtonWidget(this, "Predictive.Delete", _("Delete char"), kDelCmd); + ((PicButtonWidget *)_button[kDelAct])->useThemeTransparency(true); + ((PicButtonWidget *)_button[kDelAct])->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageDelButton)); + } else +#endif + _button[kDelAct] = new ButtonWidget(this, "Predictive.Delete" , _("<") , 0, kDelCmd); + // I18N: Pre means 'Predictive', leave '*' as is + _button[kModeAct] = new ButtonWidget(this, "Predictive.Pre", _("* Pre"), 0, kModeCmd); + _editText = new EditTextWidget(this, "Predictive.Word", _search, 0, 0, 0); _userDictHasChanged = false; _predictiveDict.nameDict = "predictive_dictionary"; - _predictiveDict.fnameDict = "pred.dic"; - _predictiveDict.dictActLine = NULL; + _predictiveDict.defaultFilename = "pred.dic"; _userDict.nameDict = "user_dictionary"; - _userDict.fnameDict = "user.dic"; - _userDict.dictActLine = NULL; - - _unitedDict.nameDict = ""; - _unitedDict.fnameDict = ""; - - _predictiveDict.dictLine = NULL; - _predictiveDict.dictText = NULL; - _predictiveDict.dictLineCount = 0; + _userDict.defaultFilename = "user.dic"; if (!_predictiveDict.dictText) { loadAllDictionary(_predictiveDict); if (!_predictiveDict.dictText) - debug("Predictive Dialog: pred.dic not loaded"); + debug(5, "Predictive Dialog: pred.dic not loaded"); } - _userDict.dictLine = NULL; - _userDict.dictText = NULL; - _userDict.dictTextSize = 0; - _userDict.dictLineCount = 0; - if (!_userDict.dictText) { loadAllDictionary(_userDict); if (!_userDict.dictText) - debug("Predictive Dialog: user.dic not loaded"); + debug(5, "Predictive Dialog: user.dic not loaded"); } mergeDicts(); - _unitedDict.dictActLine = NULL; - _unitedDict.dictText = NULL; - memset(_repeatcount, 0, sizeof(_repeatcount)); _prefix.clear(); @@ -146,18 +130,18 @@ PredictiveDialog::PredictiveDialog() : Dialog("Predictive") { _numMatchingWords = 0; memset(_predictiveResult, 0, sizeof(_predictiveResult)); - _lastbutton = kNoAct; + _lastButton = kNoAct; _mode = kModePre; _lastTime = 0; _curTime = 0; - _lastPressBtn = kNoAct; + _lastPressedButton = kNoAct; _memoryList[0] = _predictiveDict.dictText; _memoryList[1] = _userDict.dictText; _numMemory = 0; - _navigationwithkeys = false; + _navigationWithKeys = false; } PredictiveDialog::~PredictiveDialog() { @@ -167,8 +151,25 @@ PredictiveDialog::~PredictiveDialog() { free(_userDict.dictLine); free(_predictiveDict.dictLine); free(_unitedDict.dictLine); +} - free(_btns); +void PredictiveDialog::reflowLayout() { +#ifndef DISABLE_FANCY_THEMES + removeWidget(_button[kDelAct]); + _button[kDelAct]->setNext(0); + delete _button[kDelAct]; + _button[kDelAct] = nullptr; + + if (g_gui.xmlEval()->getVar("Globals.Predictive.ShowDeletePic") == 1 && g_gui.theme()->supportsImages()) { + _button[kDelAct] = new PicButtonWidget(this, "Predictive.Delete", _("Delete char"), kDelCmd); + ((PicButtonWidget *)_button[kDelAct])->useThemeTransparency(true); + ((PicButtonWidget *)_button[kDelAct])->setGfx(g_gui.theme()->getImageSurface(ThemeEngine::kImageDelButton)); + } else { + _button[kDelAct] = new ButtonWidget(this, "Predictive.Delete" , _("<") , 0, kDelCmd); + } +#endif + + Dialog::reflowLayout(); } void PredictiveDialog::saveUserDictToFile() { @@ -188,22 +189,22 @@ void PredictiveDialog::saveUserDictToFile() { } void PredictiveDialog::handleKeyUp(Common::KeyState state) { - if (_currBtn != kNoAct && !_needRefresh) { - _btns[_currBtn]->startAnimatePressedState(); - processBtnActive(_currBtn); + if (_curPressedButton != kNoAct && !_needRefresh) { + _button[_curPressedButton]->startAnimatePressedState(); + processButton(_curPressedButton); } } void PredictiveDialog::handleKeyDown(Common::KeyState state) { - _currBtn = kNoAct; + _curPressedButton = kNoAct; _needRefresh = false; - if (getFocusWidget() == _edittext) { - setFocusWidget(_btns[kAddAct]); + if (getFocusWidget() == _editText) { + setFocusWidget(_button[kAddAct]); } - if (_lastbutton == kNoAct) { - _lastbutton = kBtn5Act; + if (_lastButton == kNoAct) { + _lastButton = kButton5Act; } switch (state.keycode) { @@ -212,128 +213,128 @@ void PredictiveDialog::handleKeyDown(Common::KeyState state) { close(); return; case Common::KEYCODE_LEFT: - _navigationwithkeys = true; - if (_lastbutton == kBtn1Act || _lastbutton == kBtn4Act || _lastbutton == kBtn7Act) - _currBtn = ButtonId(_lastbutton + 2); - else if (_lastbutton == kDelAct) - _currBtn = kBtn1Act; - else if (_lastbutton == kModeAct) - _currBtn = kNextAct; - else if (_lastbutton == kNextAct) - _currBtn = kBtn0Act; - else if (_lastbutton == kAddAct) - _currBtn = kOkAct; - else if (_lastbutton == kCancelAct) - _currBtn = kAddAct; + _navigationWithKeys = true; + if (_lastButton == kButton1Act || _lastButton == kButton4Act || _lastButton == kButton7Act) + _curPressedButton = ButtonId(_lastButton + 2); + else if (_lastButton == kDelAct) + _curPressedButton = kButton1Act; + else if (_lastButton == kModeAct) + _curPressedButton = kNextAct; + else if (_lastButton == kNextAct) + _curPressedButton = kButton0Act; + else if (_lastButton == kAddAct) + _curPressedButton = kOkAct; + else if (_lastButton == kCancelAct) + _curPressedButton = kAddAct; else - _currBtn = ButtonId(_lastbutton - 1); + _curPressedButton = ButtonId(_lastButton - 1); - if (_mode != kModeAbc && _lastbutton == kCancelAct) - _currBtn = kOkAct; + if (_mode != kModeAbc && _lastButton == kCancelAct) + _curPressedButton = kOkAct; _needRefresh = true; break; case Common::KEYCODE_RIGHT: - _navigationwithkeys = true; - if (_lastbutton == kBtn3Act || _lastbutton == kBtn6Act || _lastbutton == kBtn9Act || _lastbutton == kOkAct) - _currBtn = ButtonId(_lastbutton - 2); - else if (_lastbutton == kDelAct) - _currBtn = kBtn3Act; - else if (_lastbutton == kBtn0Act) - _currBtn = kNextAct; - else if (_lastbutton == kNextAct) - _currBtn = kModeAct; - else if (_lastbutton == kAddAct) - _currBtn = kCancelAct; - else if (_lastbutton == kOkAct) - _currBtn = kAddAct; + _navigationWithKeys = true; + if (_lastButton == kButton3Act || _lastButton == kButton6Act || _lastButton == kButton9Act || _lastButton == kOkAct) + _curPressedButton = ButtonId(_lastButton - 2); + else if (_lastButton == kDelAct) + _curPressedButton = kButton3Act; + else if (_lastButton == kButton0Act) + _curPressedButton = kNextAct; + else if (_lastButton == kNextAct) + _curPressedButton = kModeAct; + else if (_lastButton == kAddAct) + _curPressedButton = kCancelAct; + else if (_lastButton == kOkAct) + _curPressedButton = kAddAct; else - _currBtn = ButtonId(_lastbutton + 1); + _curPressedButton = ButtonId(_lastButton + 1); - if (_mode != kModeAbc && _lastbutton == kOkAct) - _currBtn = kCancelAct; + if (_mode != kModeAbc && _lastButton == kOkAct) + _curPressedButton = kCancelAct; _needRefresh = true; break; case Common::KEYCODE_UP: - _navigationwithkeys = true; - if (_lastbutton <= kBtn3Act) - _currBtn = kDelAct; - else if (_lastbutton == kDelAct) - _currBtn = kOkAct; - else if (_lastbutton == kModeAct) - _currBtn = kBtn7Act; - else if (_lastbutton == kBtn0Act) - _currBtn = kBtn8Act; - else if (_lastbutton == kNextAct) - _currBtn = kBtn9Act; - else if (_lastbutton == kAddAct) - _currBtn = kModeAct; - else if (_lastbutton == kCancelAct) - _currBtn = kBtn0Act; - else if (_lastbutton == kOkAct) - _currBtn = kNextAct; + _navigationWithKeys = true; + if (_lastButton <= kButton3Act) + _curPressedButton = kDelAct; + else if (_lastButton == kDelAct) + _curPressedButton = kOkAct; + else if (_lastButton == kModeAct) + _curPressedButton = kButton7Act; + else if (_lastButton == kButton0Act) + _curPressedButton = kButton8Act; + else if (_lastButton == kNextAct) + _curPressedButton = kButton9Act; + else if (_lastButton == kAddAct) + _curPressedButton = kModeAct; + else if (_lastButton == kCancelAct) + _curPressedButton = kButton0Act; + else if (_lastButton == kOkAct) + _curPressedButton = kNextAct; else - _currBtn = ButtonId(_lastbutton - 3); + _curPressedButton = ButtonId(_lastButton - 3); _needRefresh = true; break; case Common::KEYCODE_DOWN: - _navigationwithkeys = true; - if (_lastbutton == kDelAct) - _currBtn = kBtn3Act; - else if (_lastbutton == kBtn7Act) - _currBtn = kModeAct; - else if (_lastbutton == kBtn8Act) - _currBtn = kBtn0Act; - else if (_lastbutton == kBtn9Act) - _currBtn = kNextAct; - else if (_lastbutton == kModeAct) - _currBtn = kAddAct; - else if (_lastbutton == kBtn0Act) - _currBtn = kCancelAct; - else if (_lastbutton == kNextAct) - _currBtn = kOkAct; - else if (_lastbutton == kAddAct || _lastbutton == kCancelAct || _lastbutton == kOkAct) - _currBtn = kDelAct; + _navigationWithKeys = true; + if (_lastButton == kDelAct) + _curPressedButton = kButton3Act; + else if (_lastButton == kButton7Act) + _curPressedButton = kModeAct; + else if (_lastButton == kButton8Act) + _curPressedButton = kButton0Act; + else if (_lastButton == kButton9Act) + _curPressedButton = kNextAct; + else if (_lastButton == kModeAct) + _curPressedButton = kAddAct; + else if (_lastButton == kButton0Act) + _curPressedButton = kCancelAct; + else if (_lastButton == kNextAct) + _curPressedButton = kOkAct; + else if (_lastButton == kAddAct || _lastButton == kCancelAct || _lastButton == kOkAct) + _curPressedButton = kDelAct; else - _currBtn = ButtonId(_lastbutton + 3); + _curPressedButton = ButtonId(_lastButton + 3); - if (_mode != kModeAbc && _lastbutton == kModeAct) - _currBtn = kCancelAct; + if (_mode != kModeAbc && _lastButton == kModeAct) + _curPressedButton = kCancelAct; _needRefresh = true; break; case Common::KEYCODE_KP_ENTER: case Common::KEYCODE_RETURN: if (state.flags & Common::KBD_CTRL) { - _currBtn = kOkAct; + _curPressedButton = kOkAct; break; } - if (_navigationwithkeys) { + if (_navigationWithKeys) { // when the user has utilized arrow key navigation, - // interpret enter as 'click' on the _currBtn button - _currBtn = _lastbutton; + // interpret enter as 'click' on the _curPressedButton button + _curPressedButton = _lastButton; _needRefresh = false; } else { // else it is a shortcut for 'Ok' - _currBtn = kOkAct; + _curPressedButton = kOkAct; } break; case Common::KEYCODE_KP_PLUS: - _currBtn = kAddAct; + _curPressedButton = kAddAct; break; case Common::KEYCODE_BACKSPACE: case Common::KEYCODE_KP_MINUS: - _currBtn = kDelAct; + _curPressedButton = kDelAct; break; case Common::KEYCODE_KP_DIVIDE: - _currBtn = kNextAct; + _curPressedButton = kNextAct; break; case Common::KEYCODE_KP_MULTIPLY: - _currBtn = kModeAct; + _curPressedButton = kModeAct; break; case Common::KEYCODE_KP0: - _currBtn = kBtn0Act; + _curPressedButton = kButton0Act; break; case Common::KEYCODE_KP1: case Common::KEYCODE_KP2: @@ -344,79 +345,79 @@ void PredictiveDialog::handleKeyDown(Common::KeyState state) { case Common::KEYCODE_KP7: case Common::KEYCODE_KP8: case Common::KEYCODE_KP9: - _currBtn = ButtonId(state.keycode - Common::KEYCODE_KP1); + _curPressedButton = ButtonId(state.keycode - Common::KEYCODE_KP1); break; default: Dialog::handleKeyDown(state); } - if (_lastbutton != _currBtn) - _btns[_lastbutton]->stopAnimatePressedState(); + if (_lastButton != _curPressedButton) + _button[_lastButton]->stopAnimatePressedState(); - if (_currBtn != kNoAct && !_needRefresh) - _btns[_currBtn]->setPressedState(); + if (_curPressedButton != kNoAct && !_needRefresh) + _button[_curPressedButton]->setPressedState(); else - updateHighLightedButton(_currBtn); + updateHighLightedButton(_curPressedButton); } void PredictiveDialog::updateHighLightedButton(ButtonId act) { - if (_currBtn != kNoAct) { - _btns[_lastbutton]->setHighLighted(false); - _lastbutton = act; - _btns[_lastbutton]->setHighLighted(true); + if (_curPressedButton != kNoAct) { + _button[_lastButton]->setHighLighted(false); + _lastButton = act; + _button[_lastButton]->setHighLighted(true); } } void PredictiveDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) { - _currBtn = kNoAct; + _curPressedButton = kNoAct; - _navigationwithkeys = false; + _navigationWithKeys = false; - if (_lastbutton != kNoAct) - _btns[_lastbutton]->setHighLighted(false); + if (_lastButton != kNoAct) + _button[_lastButton]->setHighLighted(false); switch (cmd) { case kDelCmd: - _currBtn = kDelAct; + _curPressedButton = kDelAct; break; case kNextCmd: - _currBtn = kNextAct; + _curPressedButton = kNextAct; break; case kAddCmd: - _currBtn = kAddAct; + _curPressedButton = kAddAct; break; case kModeCmd: - _currBtn = kModeAct; + _curPressedButton = kModeAct; break; case kBut1Cmd: - _currBtn = kBtn1Act; + _curPressedButton = kButton1Act; break; case kBut2Cmd: - _currBtn = kBtn2Act; + _curPressedButton = kButton2Act; break; case kBut3Cmd: - _currBtn = kBtn3Act; + _curPressedButton = kButton3Act; break; case kBut4Cmd: - _currBtn = kBtn4Act; + _curPressedButton = kButton4Act; break; case kBut5Cmd: - _currBtn = kBtn5Act; + _curPressedButton = kButton5Act; break; case kBut6Cmd: - _currBtn = kBtn6Act; + _curPressedButton = kButton6Act; break; case kBut7Cmd: - _currBtn = kBtn7Act; + _curPressedButton = kButton7Act; break; case kBut8Cmd: - _currBtn = kBtn8Act; + _curPressedButton = kButton8Act; break; case kBut9Cmd: - _currBtn = kBtn9Act; + _curPressedButton = kButton9Act; break; case kBut0Cmd: - _currBtn = kBtn0Act; + _curPressedButton = kButton0Act; break; case kCancelCmd: saveUserDictToFile(); @@ -426,19 +427,18 @@ void PredictiveDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 d _predictiveResult[0] = 0; return; case kOkCmd: - _currBtn = kOkAct; + _curPressedButton = kOkAct; break; default: Dialog::handleCommand(sender, cmd, data); } - if (_currBtn != kNoAct) { - processBtnActive(_currBtn); + if (_curPressedButton != kNoAct) { + processButton(_curPressedButton); } } -void PredictiveDialog::processBtnActive(ButtonId button) { - uint8 x; +void PredictiveDialog::processButton(ButtonId button) { static const char *const buttonStr[] = { "1", "2", "3", "4", "5", "6", @@ -457,10 +457,10 @@ void PredictiveDialog::processBtnActive(ButtonId button) { }; if (_mode == kModeAbc) { - if (button >= kBtn1Act && button <= kBtn9Act) { + if (button >= kButton1Act && button <= kButton9Act) { if (!_lastTime) _lastTime = g_system->getMillis(); - if (_lastPressBtn == button) { + if (_lastPressedButton == button) { _curTime = g_system->getMillis(); if ((_curTime - _lastTime) < kRepeatDelay) { button = kNextAct; @@ -469,15 +469,15 @@ void PredictiveDialog::processBtnActive(ButtonId button) { _lastTime = 0; } } else { - _lastPressBtn = button; + _lastPressedButton = button; _lastTime = g_system->getMillis(); } } } - if (button >= kBtn1Act) { - _lastbutton = button; - if (button == kBtn0Act && _mode != kModeNum) { // Space + if (button >= kButton1Act) { + _lastButton = button; + if (button == kButton0Act && _mode != kModeNum) { // Space // bring MRU word at the top of the list when changing words if (_mode == kModePre && _unitedDict.dictActLine && _numMatchingWords > 1 && _wordNumber != 0) bringWordtoTop(_unitedDict.dictActLine, _wordNumber); @@ -491,9 +491,9 @@ void PredictiveDialog::processBtnActive(ButtonId button) { _numMatchingWords = 0; memset(_repeatcount, 0, sizeof(_repeatcount)); _lastTime = 0; - _lastPressBtn = kNoAct; + _lastPressedButton = kNoAct; _curTime = 0; - } else if (button < kNextAct || button == kDelAct || button == kBtn0Act) { // number or backspace + } else if (button < kNextAct || button == kDelAct || button == kButton0Act) { // number or backspace if (button == kDelAct) { // backspace if (_currentCode.size()) { _repeatcount[_currentCode.size() - 1] = 0; @@ -505,7 +505,7 @@ void PredictiveDialog::processBtnActive(ButtonId button) { _prefix.deleteLastChar(); } } else if (_prefix.size() + _currentCode.size() < kMaxWordLen - 1) { // don't overflow the dialog line - if (button == kBtn0Act) { // zero + if (button == kButton0Act) { // zero _currentCode += buttonStr[9]; } else { _currentCode += buttonStr[button]; @@ -524,7 +524,7 @@ void PredictiveDialog::processBtnActive(ButtonId button) { _numMatchingWords = countWordsInString(_unitedDict.dictActLine); break; case kModeAbc: - for (x = 0; x < _currentCode.size(); x++) + for (uint x = 0; x < _currentCode.size(); x++) if (_currentCode[x] >= '1') _temp[x] = buttons[_currentCode[x] - '1'][_repeatcount[x]]; _temp[_currentCode.size()] = 0; @@ -543,7 +543,7 @@ void PredictiveDialog::processBtnActive(ButtonId button) { _currentWord = Common::String(tok, _currentCode.size()); } } else if (_mode == kModeAbc) { - x = _currentCode.size(); + uint x = _currentCode.size(); if (x) { if (_currentCode.lastChar() == '1' || _currentCode.lastChar() == '7' || _currentCode.lastChar() == '9') _repeatcount[x - 1] = (_repeatcount[x - 1] + 1) % 4; @@ -558,25 +558,25 @@ void PredictiveDialog::processBtnActive(ButtonId button) { if (_mode == kModeAbc) addWordToDict(); else - debug("Predictive Dialog: button Add doesn't work in this mode"); + debug(5, "Predictive Dialog: button Add doesn't work in this mode"); } else if (button == kOkAct) { // Ok // bring MRU word at the top of the list when ok'ed out of the dialog if (_mode == kModePre && _unitedDict.dictActLine && _numMatchingWords > 1 && _wordNumber != 0) bringWordtoTop(_unitedDict.dictActLine, _wordNumber); } else if (button == kModeAct) { // Mode _mode++; - _btns[kAddAct]->setEnabled(false); + _button[kAddAct]->setEnabled(false); if (_mode > kModeAbc) { _mode = kModePre; // I18N: Pre means 'Predictive', leave '*' as is - _btns[kModeAct]->setLabel("* Pre"); + _button[kModeAct]->setLabel(_("* Pre")); } else if (_mode == kModeNum) { // I18N: 'Num' means Numbers - _btns[kModeAct]->setLabel("* Num"); + _button[kModeAct]->setLabel(_("* Num")); } else { // I18N: 'Abc' means Latin alphabet input - _btns[kModeAct]->setLabel("* Abc"); - _btns[kAddAct]->setEnabled(true); + _button[kModeAct]->setLabel(_("* Abc")); + _button[kAddAct]->setEnabled(true); } // truncate current input at mode change @@ -588,7 +588,7 @@ void PredictiveDialog::processBtnActive(ButtonId button) { memset(_repeatcount, 0, sizeof(_repeatcount)); _lastTime = 0; - _lastPressBtn = kNoAct; + _lastPressedButton = kNoAct; _curTime = 0; } } @@ -598,10 +598,10 @@ void PredictiveDialog::processBtnActive(ButtonId button) { if (button == kOkAct) close(); - if (button == kCancelAct) { - saveUserDictToFile(); - close(); - } + if (button == kCancelAct) { + saveUserDictToFile(); + close(); + } } void PredictiveDialog::handleTickle() { @@ -621,7 +621,7 @@ void PredictiveDialog::mergeDicts() { _unitedDict.dictLine = (char **)calloc(_unitedDict.dictLineCount, sizeof(char *)); if (!_unitedDict.dictLine) { - debug("Predictive Dialog: cannot allocate memory for united dic"); + debug(5, "Predictive Dialog: cannot allocate memory for united dic"); return; } @@ -658,7 +658,7 @@ uint8 PredictiveDialog::countWordsInString(const char *const str) { ptr = strchr(str, ' '); if (!ptr) { - debug("Predictive Dialog: Invalid dictionary line"); + debug(5, "Predictive Dialog: Invalid dictionary line"); return 0; } @@ -684,7 +684,7 @@ void PredictiveDialog::bringWordtoTop(char *str, int wordnum) { buf[kMaxLineLen - 1] = 0; char *word = strtok(buf, " "); if (!word) { - debug("Predictive Dialog: Invalid dictionary line"); + debug(5, "Predictive Dialog: Invalid dictionary line"); return; } @@ -734,7 +734,7 @@ bool PredictiveDialog::matchWord() { // The entries in the dictionary consist of a code, a space, and then // a space-separated list of words matching this code. - // To ex_currBtnly match a code, we therefore match the code plus the trailing + // To exactly match a code, we therefore match the code plus the trailing // space in the dictionary. Common::String code = _currentCode + " "; @@ -929,7 +929,7 @@ void PredictiveDialog::loadDictionary(Common::SeekableReadStream *in, Dict &dict in->read(dict.dictText, dict.dictTextSize); dict.dictText[dict.dictTextSize] = 0; uint32 time2 = g_system->getMillis(); - debug("Predictive Dialog: Time to read %s: %d bytes, %d ms", ConfMan.get(dict.nameDict).c_str(), dict.dictTextSize, time2 - time1); + debug(5, "Predictive Dialog: Time to read %s: %d bytes, %d ms", ConfMan.get(dict.nameDict).c_str(), dict.dictTextSize, time2 - time1); delete in; char *ptr = dict.dictText; @@ -960,7 +960,7 @@ void PredictiveDialog::loadDictionary(Common::SeekableReadStream *in, Dict &dict lines--; dict.dictLineCount = lines; - debug("Predictive Dialog: Loaded %d lines", dict.dictLineCount); + debug(5, "Predictive Dialog: Loaded %d lines", dict.dictLineCount); // FIXME: We use binary search on _predictiveDict.dictLine, yet we make no at_tempt // to ever sort this array (except for the DS port). That seems risky, doesn't it? @@ -971,23 +971,23 @@ void PredictiveDialog::loadDictionary(Common::SeekableReadStream *in, Dict &dict #endif uint32 time3 = g_system->getMillis(); - debug("Predictive Dialog: Time to parse %s: %d, total: %d", ConfMan.get(dict.nameDict).c_str(), time3 - time2, time3 - time1); + debug(5, "Predictive Dialog: Time to parse %s: %d, total: %d", ConfMan.get(dict.nameDict).c_str(), time3 - time2, time3 - time1); } void PredictiveDialog::loadAllDictionary(Dict &dict) { - ConfMan.registerDefault(dict.nameDict, dict.fnameDict); + ConfMan.registerDefault(dict.nameDict, dict.defaultFilename); if (dict.nameDict == "predictive_dictionary") { Common::File *inFile = new Common::File(); if (!inFile->open(ConfMan.get(dict.nameDict))) { - warning("Predictive Dialog: cannot read file: %s", dict.fnameDict.c_str()); + warning("Predictive Dialog: cannot read file: %s", dict.defaultFilename.c_str()); return; } loadDictionary(inFile, dict); } else { Common::InSaveFile *inFile = g_system->getSavefileManager()->openForLoading(ConfMan.get(dict.nameDict)); if (!inFile) { - warning("Predictive Dialog: cannot read file: %s", dict.fnameDict.c_str()); + warning("Predictive Dialog: cannot read file: %s", dict.defaultFilename.c_str()); return; } loadDictionary(inFile, dict); @@ -997,9 +997,9 @@ void PredictiveDialog::loadAllDictionary(Dict &dict) { void PredictiveDialog::pressEditText() { Common::strlcpy(_predictiveResult, _prefix.c_str(), sizeof(_predictiveResult)); Common::strlcat(_predictiveResult, _currentWord.c_str(), sizeof(_predictiveResult)); - _edittext->setEditString(_predictiveResult); - //_edittext->setCaretPos(_prefix.size() + _currentWord.size()); - _edittext->draw(); + _editText->setEditString(_predictiveResult); + //_editText->setCaretPos(_prefix.size() + _currentWord.size()); + _editText->draw(); } } // namespace GUI diff --git a/gui/predictivedialog.h b/gui/predictivedialog.h index 32d769d6ca4..37c80a2a14d 100644 --- a/gui/predictivedialog.h +++ b/gui/predictivedialog.h @@ -33,56 +33,65 @@ class EditTextWidget; class ButtonWidget; class PicButtonWidget; -enum ButtonId { - kBtn1Act = 0, - kBtn2Act = 1, - kBtn3Act = 2, - kBtn4Act = 3, - kBtn5Act = 4, - kBtn6Act = 5, - kBtn7Act = 6, - kBtn8Act = 7, - kBtn9Act = 8, - kNextAct = 9, - kAddAct = 10, - kDelAct = 11, - kCancelAct = 12, - kOkAct = 13, - kModeAct = 14, - kBtn0Act = 15, - kNoAct = -1 -}; - -enum { - kRepeatDelay = 500 -}; - -enum { - kMaxLineLen = 80, - kMaxWordLen = 24, - kMaxWord = 50 -}; - class PredictiveDialog : public GUI::Dialog { public: PredictiveDialog(); ~PredictiveDialog(); + virtual void reflowLayout(); + virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data); virtual void handleKeyUp(Common::KeyState state); virtual void handleKeyDown(Common::KeyState state); virtual void handleTickle(); const char *getResult() const { return _predictiveResult; } + private: + enum ButtonId { + kButton1Act = 0, + kButton2Act = 1, + kButton3Act = 2, + kButton4Act = 3, + kButton5Act = 4, + kButton6Act = 5, + kButton7Act = 6, + kButton8Act = 7, + kButton9Act = 8, + kNextAct = 9, + kAddAct = 10, + kDelAct = 11, + kCancelAct = 12, + kOkAct = 13, + kModeAct = 14, + kButton0Act = 15, + kNoAct = -1 + }; + + enum { + kButtonCount = kButton0Act + 1 + }; + + enum { + kRepeatDelay = 500 + }; + + enum { + kMaxLineLen = 80, + kMaxWordLen = 24, + kMaxWord = 50 + }; + struct Dict { + Dict() : dictLine(nullptr), dictText(nullptr), dictActLine(nullptr), + dictLineCount(0), dictTextSize(0) {} char **dictLine; char *dictText; char *dictActLine; // using only for united dict... int32 dictLineCount; int32 dictTextSize; Common::String nameDict; - Common::String fnameDict; + Common::String defaultFilename; }; uint8 countWordsInString(const char *const str); @@ -94,7 +103,7 @@ private: bool searchWord(const char *const where, const Common::String &whatCode); int binarySearch(const char *const *const dictLine, const Common::String &code, const int dictLineCount); bool matchWord(); - void processBtnActive(ButtonId active); + void processButton(ButtonId active); void pressEditText(); void saveUserDictToFile(); @@ -108,7 +117,7 @@ private: Dict _userDict; int _mode; - ButtonId _lastbutton; + ButtonId _lastButton; bool _userDictHasChanged; @@ -121,8 +130,8 @@ private: Common::String _prefix; uint32 _curTime, _lastTime; - ButtonId _lastPressBtn; - ButtonId _currBtn; + ButtonId _lastPressedButton; + ButtonId _curPressedButton; char _temp[kMaxWordLen + 1]; int _repeatcount[kMaxWordLen]; @@ -132,11 +141,11 @@ private: Common::String _search; - bool _navigationwithkeys; + bool _navigationWithKeys; bool _needRefresh; private: - EditTextWidget *_edittext; - ButtonWidget **_btns; + EditTextWidget *_editText; + ButtonWidget *_button[kButtonCount]; }; } // namespace GUI diff --git a/gui/themes/default.inc b/gui/themes/default.inc index eb4d94cb42b..7de0a7edce9 100644 --- a/gui/themes/default.inc +++ b/gui/themes/default.inc @@ -633,6 +633,7 @@ const char *defaultXML1 = "" " " "" "" +"" "" "" "" +"" "" diff --git a/gui/themes/modern.zip b/gui/themes/modern.zip index 377f3741709..318be7647df 100644 Binary files a/gui/themes/modern.zip and b/gui/themes/modern.zip differ diff --git a/gui/themes/modern/THEMERC b/gui/themes/modern/THEMERC index cbb16cf0292..d5910f0892b 100644 --- a/gui/themes/modern/THEMERC +++ b/gui/themes/modern/THEMERC @@ -1 +1 @@ -[SCUMMVM_STX0.8.20:ResidualVM Modern Theme:No Author] +[SCUMMVM_STX0.8.21:ResidualVM Modern Theme:No Author] diff --git a/gui/themes/modern/modern_layout.stx b/gui/themes/modern/modern_layout.stx index 8c1e8776f92..12fe6c71998 100644 --- a/gui/themes/modern/modern_layout.stx +++ b/gui/themes/modern/modern_layout.stx @@ -56,6 +56,7 @@ + + \n" "Language-Team: Ivan Lukyanov \n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Уверх" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Адмена" @@ -85,7 +85,7 @@ msgstr " msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -102,8 +102,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Вы сапраўды жадаеце выдаліць гэта захаванне?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +112,8 @@ msgstr " msgid "Yes" msgstr "Так" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +122,94 @@ msgstr " msgid "No" msgstr "Не" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Закрыць" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Рэверберацыя" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Клік мышшу" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Актыўна" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Паказаць клавіятуру" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Пакой:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Перапрызначыць клавішы" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Вільготнасць:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Пераключэнне на ўвесь экран" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Шырыня:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Абярыце дзеянне для прызначэння" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Узровень:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Прызначыць" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Хор" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Хуткасць:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Глыбіня:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Тып:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Сінусоіда" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Трохкутная" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Рознае" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Інтэрпаляцыя:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Няма (хутчэйшае)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Лінейная" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Чацвёртага парадка" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Сёмага парадка" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Скінуць" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Скінуць налады FluidSynth па змаўчанні." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +225,38 @@ msgstr " msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "Вы сапраўды жадаеце скінуць налады FluidSynth па змаўчанні?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Закрыць" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Клік мышшу" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Паказаць клавіятуру" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Перапрызначыць клавішы" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Пераключэнне на ўвесь экран" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Прызначыць" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Абярыце дзеянне і клікніце 'Прызначыць'" @@ -195,6 +279,10 @@ msgstr " msgid "Press the key to associate" msgstr "Націсніце клавішу для прызначэння" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Абярыце дзеянне для прызначэння" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Гульня" @@ -498,7 +586,7 @@ msgstr " msgid "Search in game list" msgstr "Пошук у спісе гульняў" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Пошук:" @@ -517,7 +605,7 @@ msgstr " msgid "Load" msgstr "Загрузіць" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -525,39 +613,39 @@ msgstr "" "Вы сапраўды жадаеце запусціць дэтэктар усіх гульняў? Гэта патэнцыяльна можа " "дадаць вялікую колькасць гульняў." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM не можа адкрыць азначаную дырэкторыю!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM не можа знайсці гульню ў азначанай дырэкторыі!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Абярыце гульню:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Вы сапраўды жадаеце выдаліць налады для гэтай гульні?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Вы жадаеце загрузіць гульню?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Гэтая гульня не падтрымлівае загрузку захаванняў праз галоўнае меню." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM не змог знайсці рухавічок для запуску абранай гульні!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Шмат гульняў..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -931,10 +1019,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Шлях да плагінаў:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Рознае" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -998,28 +1082,38 @@ msgstr "" "выкарыстоўваць гэтую тэму, вам неабходна спачатку пераключыцца на іншую мову." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Выдаліць" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1160,120 +1254,35 @@ msgstr " msgid "Clear value" msgstr "Ачысціць значэнне" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Рэверберацыя" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Актыўна" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Пакой:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Вільготнасць:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Шырыня:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Узровень:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Хор" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Хуткасць:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Глыбіня:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Тып:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Сінусоіда" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Трохкутная" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Інтэрпаляцыя:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Няма (хутчэйшае)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Лінейная" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Чацвёртага парадка" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Сёмага парадка" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Скінуць" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Скінуць налады FluidSynth па змаўчанні." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "Вы сапраўды жадаеце скінуць налады FluidSynth па змаўчанні?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Рухавічок не падтрымлівае ўзровень адладкі '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Меню" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Прапусціць" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Паўза" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Прапусціць радок" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Памылка запуску гульні:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Не магу знайсці рухавічок для запуску абранай гульні" @@ -1341,6 +1350,33 @@ msgstr " msgid "Unknown error" msgstr "Невядомая памылка" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Зелёный" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Янтарный" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Зелёный" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Янтарный" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1391,7 +1427,7 @@ msgstr " #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Захаваць гульню:" @@ -1404,7 +1440,7 @@ msgstr " #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Захаваць" @@ -1443,23 +1479,23 @@ msgstr "~ msgid "~K~eys" msgstr "~К~лавішы" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Не магу ініцыялізаваць фармат колеру." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Не атрымалася пераключыць відэарэжым: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Не атрымалася выкарыстаць карэкцыю суадносін бакоў." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Не магу ўжыць поўнаэкранны рэжым." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1473,7 +1509,7 @@ msgstr "" "на жорсткі дыск. Падрабязнасці можна знайсці ў\n" "файле README." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1488,7 +1524,7 @@ msgstr "" "з'явіцца музыка. Падрабязнасці можна знайсці ў\n" "файле README." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1498,7 +1534,7 @@ msgstr "" "README за базавай інфармацыяй, а таксама інструкцыямі пра тое, як атрымаць " "далейшую дапамогу." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1508,10 +1544,14 @@ msgstr "" "ScummVM цалкам. Яна, хутчэй за ўсё, не будзе працаваць стабільна, і " "захаванні гульняў могуць не працаваць у будучых версіях ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Усё адно запусціць" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Эмулятар AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Эмулятар MAME OPL" @@ -1565,25 +1605,31 @@ msgstr "" "Пераважная гукавая прылада '%s' не можа быць скарыстана. Глядзіце файл " "пратаколу для больш падрабязнай інфармацыі." -#: audio/null.h:44 -msgid "No music" -msgstr "Без музыкі" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Эмулятар гуку Amiga" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Эмулятар AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Без музыкі" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Эмулятар Apple II GS (адсутнічае)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Эмулятар гуку C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "Эмулятор FM Towns" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Аўдыё" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1601,6 +1647,147 @@ msgstr " msgid "IBM PCjr Emulator" msgstr "Эмулятар IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Эмулятар гуку C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Вы сапраўды жадаеце вярнуцца ў галоўнае меню?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Галоўнае меню" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Вы сапраўды жадаеце выйсці?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Выхад" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Рэжым 'дотыкаў' тачскрына - Левы клік" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Рэжым 'дотыкаў' тачскрына - Правы клік" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Рэжым 'дотыкаў' тачскрына - Пралёт (без кліку)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Максімальная гучнасць" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Павелічэнне гучнасці" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Мінімальная гучнасць" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Памяншэнне гучнасці" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Пстрычкі ўключаны" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Пстрычкі выключаны" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Рэжым 'дотыкаў' тачскрына - Пралёт (клікі па DPad)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Вы сапраўды жадаеце выйсці?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Рэжым тачпада выключаны." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (без фільтраў)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Без павелічэння" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Без павелічэння" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Карэкцыя суадносін бакоў уключана" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Карэкцыя суадносін бакоў выключана" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Актыўны графічны фільтр:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Аконны рэжым" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Табліца клавіш:" @@ -1706,18 +1893,26 @@ msgstr " msgid "Disable power off" msgstr "Забараніць выключэнне" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Рэжым мышы націснуць-і-цягнуць уключаны." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Рэжым мышы націснуць-і-цягнуць выключаны." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Рэжым тачпада ўключаны." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Рэжым тачпада выключаны." @@ -1728,9 +1923,9 @@ msgstr " #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Левая пстрычка" @@ -1740,8 +1935,8 @@ msgstr " #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Правая пстрычка" @@ -1766,39 +1961,6 @@ msgstr " msgid "Minimize" msgstr "Згарнуць" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Без павелічэння" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Без павелічэння" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Карэкцыя суадносін бакоў уключана" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Карэкцыя суадносін бакоў выключана" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Актыўны графічны фільтр:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Аконны рэжым" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (без фільтраў)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1842,15 +2004,6 @@ msgstr " msgid "Fast mode" msgstr "Хуткі рэжым" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Выхад" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Адладчык" @@ -1867,9 +2020,50 @@ msgstr " msgid "Key mapper" msgstr "Прызначэнне клавіш" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Вы сапраўды жадаеце выйсці?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Адна правая пстрычка" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Толькі перамясціць" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Клавіша ESC" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Меню гульні" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Паказаць клавіятуру" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Кіраванне мышшу" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Сеткавая тэчка:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2116,102 +2310,21 @@ msgstr "" "Не забудзьцеся прызначыць клавішу для дзеяння 'Hide Toolbar', каб убачыць " "увесь інвентар у гульні" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Вы сапраўды жадаеце вярнуцца ў галоўнае меню?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Галоўнае меню" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Вы сапраўды жадаеце выйсці?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Рэжым 'дотыкаў' тачскрына - Левы клік" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Рэжым 'дотыкаў' тачскрына - Правы клік" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Рэжым 'дотыкаў' тачскрына - Пралёт (без кліку)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Максімальная гучнасць" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Павелічэнне гучнасці" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Мінімальная гучнасць" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Памяншэнне гучнасці" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Рэжым 'дотыкаў' тачскрына - Пралёт (клікі па DPad)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Правяраю абнаўленні..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Адна правая пстрычка" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Толькі перамясціць" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Клавіша ESC" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Меню гульні" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Паказаць клавіятуру" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Кіраванне мышшу" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Пстрычкі ўключаны" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Пстрычкі выключаны" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Выкарыстоўваць арыгінальныя экраны запісу/чытанні гульні" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Выкарыстоўваць арыгінальныя экраны запісу і захавання гульні замест " @@ -2240,13 +2353,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Узнавіць гульню:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Узнавіць" @@ -2650,18 +2763,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Уключыць адлюстраванне палосак здароўя" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Уключыць адлюстраванне палосак здароўя" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Аддаваць перавагу лічбавым гукавым эфектам" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Аддаваць перавагу лічбавым гукавым эфектам замест сінтэзаваных" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Выкарыстоўваць IMF/Yamaha FB-01 для вываду MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2669,32 +2792,32 @@ msgstr "" "Выкарыстоўваць гукавую карту IBM Music Feature ці модуль сінтэзу Yamaha " "FB-01 FM для MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Выкарыстоўваць CD аўдыё" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" "Выкарыстоўваць гукавыя дарожкі з CD замест музыкі з файлаў гульні (калі " "даступна)" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Выкарыстоўваць курсоры Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Выкарыстоўваць курсоры Windows (меншыя па памеры і аднакаляровыя) замест " "курсораў DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Выкарыстоўваць срэбныя курсоры" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3618,20 +3741,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Уключыць рэжым Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Зелёный" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Янтарный" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Зелёный" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Янтарный" - #~ msgid "Save game failed!" #~ msgstr "Не удалось сохранить игру!" @@ -3648,8 +3757,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Параметры командной строки не обработаны" -#~ msgid "FM Towns Emulator" -#~ msgstr "Эмулятор FM Towns" - #~ msgid "Invalid Path" #~ msgstr "Неверный путь" diff --git a/po/ca_ES.po b/po/ca_ES.po index 432e1b800b4..8ffdb40c66e 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.6.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2013-05-05 14:16+0100\n" "Last-Translator: Jordi Vilalta Prat \n" "Language-Team: Catalan \n" @@ -51,17 +51,17 @@ msgid "Go up" msgstr "Amunt" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "CancelЗla" @@ -82,7 +82,7 @@ msgstr "Nom:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Realment voleu suprimir aquesta partida?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -109,8 +109,8 @@ msgstr "Realment voleu suprimir aquesta partida?" msgid "Yes" msgstr "Sэ" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -119,42 +119,94 @@ msgstr "S msgid "No" msgstr "No" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Tanca" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Reverberaciѓ" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Clic del ratolэ" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Actiu" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Mostra el teclat" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Habitaciѓ:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Assigna les tecles" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Humitat:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Commuta la pantalla completa" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Amplitud:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "SelЗleccioneu una acciѓ a assignar" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Nivell:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Assigna" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Cor" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Velocitat:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Profunditat:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Tipus:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triangle" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Misc" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolaciѓ:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Cap (el mщs rрpid)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineal" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Quart ordre" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Setш ordre" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Reset" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Retorna tots els ajustos de FluidSynth als seus valors per defecte." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -170,6 +222,40 @@ msgstr "Assigna" msgid "OK" msgstr "D'acord" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Realment voleu retorna tots els ajustos de FluidSynth als seus valors per " +"defecte?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Tanca" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Clic del ratolэ" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Mostra el teclat" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Assigna les tecles" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Commuta la pantalla completa" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Assigna" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Seleccioneu una acciѓ i cliqueu 'Assigna'" @@ -192,6 +278,10 @@ msgstr "Seleccioneu una acci msgid "Press the key to associate" msgstr "Premeu la tecla a associar" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "SelЗleccioneu una acciѓ a assignar" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Joc" @@ -498,7 +588,7 @@ msgstr "~S~uprimeix" msgid "Search in game list" msgstr "Cerca a la llista de jocs" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Cerca:" @@ -517,7 +607,7 @@ msgstr "Carrega partida:" msgid "Load" msgstr "Carrega" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -525,41 +615,41 @@ msgstr "" "Esteu segur que voleu executar el detector massiu de jocs? Aixђ pot afegir " "una gran quantitat de jocs." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM no ha pogut obrir el directori especificat!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM no ha pogut trobar cap joc al directori especificat!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Seleccioneu el joc:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Realment voleu suprimir la configuraciѓ d'aquest joc?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 #, fuzzy msgid "Do you want to load saved game?" msgstr "Voleu carregar o desar el joc?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Aquest joc no suporta la cрrrega de partides des del llanчador." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM no ha pogut trobar cap motor capaч d'executar el joc seleccionat!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Addiciѓ Massiva..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -932,10 +1022,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Camэ de connectors:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Misc" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -1001,28 +1087,38 @@ msgstr "" "aquest tema primer haureu de canviar a un altre idioma." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Suprimeix" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1166,122 +1262,35 @@ msgstr "Amb antialias (16bpp)" msgid "Clear value" msgstr "Neteja el valor" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Reverberaciѓ" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Actiu" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Habitaciѓ:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Humitat:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Amplitud:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Nivell:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Cor" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Velocitat:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Profunditat:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Tipus:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triangle" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolaciѓ:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Cap (el mщs rрpid)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineal" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Quart ordre" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Setш ordre" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Reset" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Retorna tots els ajustos de FluidSynth als seus valors per defecte." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Realment voleu retorna tots els ajustos de FluidSynth als seus valors per " -"defecte?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "El motor no suporta el nivell de depuraciѓ '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menњ" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Salta" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pausa" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Salta la lэnia" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Error al executar el joc:" -#: base/main.cpp:554 +#: base/main.cpp:557 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" @@ -1349,6 +1358,33 @@ msgstr "Cancel msgid "Unknown error" msgstr "Error desconegut" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1399,7 +1435,7 @@ msgstr "~R~etorna al Llan #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Desa la partida:" @@ -1412,7 +1448,7 @@ msgstr "Desa la partida:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Desa" @@ -1449,23 +1485,23 @@ msgstr "~C~ancel msgid "~K~eys" msgstr "~T~ecles" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "No s'ha pogut iniciar el format de color." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "No s'ha pogut canviar al mode de vэdeo: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "No s'ha pogut aplicar la configuraciѓ de la relaciѓ d'aspecte." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "No s'ha pogut aplicar l'ajust de pantalla completa." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1479,7 +1515,7 @@ msgstr "" "els fitxers de dades al disc dur.\n" "Consulteu el fitxer README per a mщs detalls." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1493,7 +1529,7 @@ msgstr "" "tal de poder sentir la mњsica del joc.\n" "Consulteu el fitxer README per a mщs detalls." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1502,7 +1538,7 @@ msgstr "" "No s'ha pogut carregar la partida (%s)! Consulteu el fitxer README per a la " "informaciѓ bрsica i les instruccions sobre com obtenir mщs assistшncia." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1512,10 +1548,14 @@ msgstr "" "pel ScummVM. Com a tal, probablement serр inestable, i pot ser que les " "partides que deseu no funcionin en versions futures de ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Inicia de totes maneres" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Emulador d'AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Emulador OPL de MAME" @@ -1569,25 +1609,30 @@ msgstr "" "No es pot utilitzar el dispositiu d'рudio preferit '%s'. Vegeu el fitxer de " "registre per a mщs informaciѓ." -#: audio/null.h:44 -msgid "No music" -msgstr "Sense mњsica" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Emulador d'рudio Amiga" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Emulador d'AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Sense mњsica" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Emulador d'Apple II GS (NO IMPLEMENTAT)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Emulador d'рudio C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Рudio" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1605,6 +1650,148 @@ msgstr "Emulador Altaveu PC" msgid "IBM PCjr Emulator" msgstr "Emulador d'IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Emulador d'рudio C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Realment voleu tornar al Llanчador?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Llanчador" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Estрs segur de voler sortir?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Surt" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "'Mode Toc' de pantalla tрctil - Clic esquerre" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "'Mode Toc' de pantalla tрctil - Clic dret" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "'Mode Toc' de pantalla tрctil - Flotant (sense clic)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Volum mрxim" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Pujant el volum" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Volum mэnim" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Baixant el volum" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Clicat activat" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Clicat desactivat" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "'Mode Toc' de pantalla tрctil - Flotant (Clics de DPad)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Vols sortir?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Mode Touchpad desactivat." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +#, fuzzy +msgid "OpenGL" +msgstr "Obre" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (sense escalar)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal (no escalat)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "S'ha activat la correcciѓ de la relaciѓ d'aspecte" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "S'ha desactivat la correcciѓ de la relaciѓ d'aspecte" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Filtre de grрfics actiu:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Mode de finestra" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Assignacions de teclat:" @@ -1710,18 +1897,26 @@ msgstr "Alta qualitat d' msgid "Disable power off" msgstr "Desactiva l'apagat automрtic" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "S'ha activat el mode de clic-i-arrossega." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "S'ha desactivat el mode clic-i-arrossega." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Mode Touchpad activat." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Mode Touchpad desactivat." @@ -1732,9 +1927,9 @@ msgstr "Mode clic" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Clic esquerre" @@ -1744,8 +1939,8 @@ msgstr "Clic central" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Clic dret" @@ -1770,40 +1965,6 @@ msgstr "Finestra" msgid "Minimize" msgstr "Minimitza" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (sense escalar)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal (no escalat)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "S'ha activat la correcciѓ de la relaciѓ d'aspecte" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "S'ha desactivat la correcciѓ de la relaciѓ d'aspecte" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Filtre de grрfics actiu:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Mode de finestra" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -#, fuzzy -msgid "OpenGL" -msgstr "Obre" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1847,15 +2008,6 @@ msgstr "Salta el text" msgid "Fast mode" msgstr "Mode rрpid" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Surt" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Depurador" @@ -1872,9 +2024,50 @@ msgstr "Teclat virtual" msgid "Key mapper" msgstr "Assignador de tecles" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Vols sortir?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Un clic dret" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Nomщs mou" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Tecla d'escapada" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menњ del joc" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Mostra el teclat numшric" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Controla el ratolэ" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Comparticiѓ:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2121,102 +2314,21 @@ msgstr "" "No us oblideu d'assignar una tecla a l'acciѓ 'Ocultar la barra d'eines' per " "veure l'inventari complet" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Realment voleu tornar al Llanчador?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Llanчador" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Estрs segur de voler sortir?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "'Mode Toc' de pantalla tрctil - Clic esquerre" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "'Mode Toc' de pantalla tрctil - Clic dret" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "'Mode Toc' de pantalla tрctil - Flotant (sense clic)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Volum mрxim" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Pujant el volum" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Volum mэnim" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Baixant el volum" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "'Mode Toc' de pantalla tрctil - Flotant (Clics de DPad)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Comprova les actualitzacions..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Un clic dret" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Nomщs mou" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Tecla d'escapada" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menњ del joc" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Mostra el teclat numшric" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Controla el ratolэ" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Clicat activat" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Clicat desactivat" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Utilitza les pantalles originals de desat/cрrrega" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Utilitza les pantalles originals de desat/cрrrega, en lloc de les de ScummVM" @@ -2244,13 +2356,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Recupera la partida:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Restaura" @@ -2655,18 +2767,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Activa la barra grрfica dels punts d'impacte" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Activa la barra grрfica dels punts d'impacte" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Prefereix efectes de so digitals" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Prefereix els efectes de so digitals en lloc dels sintetitzats" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Utilitza IMF/Yamaha FB-01 per la sortida MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2674,31 +2796,31 @@ msgstr "" "Utilitza una tarja IBM Music Feature o un mђdul sintetitzador Yamaha FB-01 " "FM per la sortida MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Utilitza l'рudio del CD" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" "Utilitza l'рudio del CD en lloc de l'рudio intern del joc, si estр disponible" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Utilitza els cursors de Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Utilitza els cursors de Windows (mщs petits i en blanc i negre) en lloc dels " "de DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Utilitza cursors platejats" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 84783ce4d09..7dba2d252d6 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.7.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-24 13:36+0100\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2015-12-24 13:37+0100\n" "Last-Translator: ZbynФ›k Schwarz \n" "Language-Team: \n" @@ -55,17 +55,17 @@ msgid "Go up" msgstr "JУ­t nahoru" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 engines/engine.cpp:483 -#: backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "ZruХЁit" @@ -86,7 +86,7 @@ msgstr "JmУЉno" msgid "Notes:" msgstr "PoznУЁmky:" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "Ok" @@ -102,8 +102,8 @@ msgstr "Zadejte nУЁzev souboru pro uloХОenУ­" msgid "Do you really want to overwrite the file?" msgstr "Opravdu chcete tento soubor pХ™epsat?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +112,8 @@ msgstr "Opravdu chcete tento soubor pХ™epsat?" msgid "Yes" msgstr "Ano" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +122,94 @@ msgstr "Ano" msgid "No" msgstr "Ne" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "ZavХ™У­t" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Dozvuk" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "KliknutУ­ myХЁУ­" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "AktivnУ­" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Zobrazit klУЁvesnici" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "MУ­stnost:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "PХ™emapovat klУЁvesy" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "TlumenУ­:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "PХ™epnout celou obrazovku" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Х У­Х™ka:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Zvolte Фinnost k mapovУЁnУ­" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "УšroveХˆ:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Mapovat" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Sbor" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Rychlost:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Hloubka:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Typ:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "TrojУКhrlnУ­k" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "RХЏznУЉ" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolace:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "ХНУЁdnУЁ (NejrychlejХЁУ­)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "LineУЁrnУ­" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Interpolace ФtvrtУЉho Х™УЁdu" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Interpolace sedmУЉho Х™УЁdu" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Resetovat" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Resetovat veХЁkerУЁ nastavenУ­ FludSynth n ajejich vУНchozУ­ hodnoty." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +225,40 @@ msgstr "Mapovat" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Opravdu chcete resetovat veХЁkerУЁ nastavenУ­ FluidSynth na jejich vУНchozУ­ " +"hodnoty?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "ZavХ™У­t" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "KliknutУ­ myХЁУ­" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Zobrazit klУЁvesnici" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "PХ™emapovat klУЁvesy" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "PХ™epnout celou obrazovku" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Mapovat" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Zvolte Фinnost a kliknФ›te 'Mapovat'" @@ -195,6 +281,10 @@ msgstr "ProsУ­m vyberte Фinnost" msgid "Press the key to associate" msgstr "ZmУЁФknФ›te klУЁvesu pro pХ™iХ™azenУ­" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Zvolte Фinnost k mapovУЁnУ­" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Hra" @@ -208,8 +298,8 @@ msgid "" "Short game identifier used for referring to saved games and running the game " "from the command line" msgstr "" -"KrУЁtkУН identifikУЁtor her, pouХОУ­vanУН jako odkaz k uloХОenУНm hrУЁm a spuХЁtФ›nУ­ " -"hry z pХ™У­kazovУЉho Х™УЁdku" +"KrУЁtkУН identifikУЁtor her, pouХОУ­vanУН jako odkaz k uloХОenУНm hrУЁm a " +"spuХЁtФ›nУ­ hry z pХ™У­kazovУЉho Х™УЁdku" #: gui/launcher.cpp:199 msgctxt "lowres" @@ -496,7 +586,7 @@ msgstr "~O~dstranit hru" msgid "Search in game list" msgstr "Hledat v seznamu her" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Hledat:" @@ -515,7 +605,7 @@ msgstr "NahrУЁt hru:" msgid "Load" msgstr "NahrУЁt" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -523,39 +613,39 @@ msgstr "" "Opravdu chcete spustit hromadnou detekci her? Toto by mohlo potenciУЁlnФ› " "pХ™idat velkou spoustu her. " -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM nemohl tento adresУЁХ™ otevХ™У­t!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM nemohl v zadanУЉm adresУЁХ™i najУ­t ХОУЁdnou hru!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Vybrat hru:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Opravdu chcete odstranit nastavenУ­ tУЉto hry?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Chcete naФУ­st uloХОenou pozici?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Tato hra nepodporuje spouХЁtФ›nУ­ her ze spouХЁtФ›Фe" -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM nemohl najУ­t ХОУЁdnУЉ jУЁdro schopnУЉ vybranou hru spustit!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "HromadnУЉ PХ™idУЁnУ­..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "NahrУЁt..." @@ -728,8 +818,8 @@ msgid "" "Higher value specifies better sound quality but may be not supported by your " "soundcard" msgstr "" -"VyХЁХЁУ­ hodnota zpХЏsobУ­ lepХЁУ­ kvalitu zvuku, ale nemusУ­ bУНt podporovУЁna VaХЁi " -"zvukovou kartou" +"VyХЁХЁУ­ hodnota zpХЏsobУ­ lepХЁУ­ kvalitu zvuku, ale nemusУ­ bУНt podporovУЁna " +"VaХЁi zvukovou kartou" #: gui/options.cpp:820 msgid "GM Device:" @@ -784,7 +874,8 @@ msgstr "ZaХ™У­zenУ­ MT-32:" #: gui/options.cpp:879 msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output" msgstr "" -"StanovУ­ vУНchozУ­ zvukovУЉ vУНstupnУ­ zaХ™У­zenУ­ pro Roland MT-32/LAPC1/CM32l/CM64" +"StanovУ­ vУНchozУ­ zvukovУЉ vУНstupnУ­ zaХ™У­zenУ­ pro Roland MT-32/LAPC1/CM32l/" +"CM64" #: gui/options.cpp:884 msgid "True Roland MT-32 (disable GM emulation)" @@ -812,8 +903,8 @@ msgid "" "Check if you want to enable patch mappings to emulate an MT-32 on a Roland " "GS device" msgstr "" -"ZaХЁkrtnФ›te, pokud chcete povolit zУЁplaty mapovУЁnУ­ umoХОХˆujУ­cУ­ emulovat MT-32 " -"na zaХ™У­zenУ­ Roland GS" +"ZaХЁkrtnФ›te, pokud chcete povolit zУЁplaty mapovУЁnУ­ umoХОХˆujУ­cУ­ emulovat " +"MT-32 na zaХ™У­zenУ­ Roland GS" #: gui/options.cpp:898 msgid "Don't use Roland MT-32 music" @@ -912,7 +1003,8 @@ msgstr "Cesta ke Vzhledu:" #: gui/options.cpp:1148 gui/options.cpp:1150 gui/options.cpp:1151 msgid "Specifies path to additional data used by all games or ScummVM" -msgstr "StanovУ­ cestu k dodateФnУНm datХЏm pouХОУ­vanУЁ vХЁemi hrami nebo ScummVM" +msgstr "" +"StanovУ­ cestu k dodateФnУНm datХЏm pouХОУ­vanУЁ vХЁemi hrami nebo ScummVM" #: gui/options.cpp:1157 msgid "Plugins Path:" @@ -923,10 +1015,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Cesta k PluginХЏm:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "RХЏznУЉ" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -990,27 +1078,37 @@ msgstr "" "tento vzhled pouХОУ­t, musУ­te nejdХ™У­ve pХ™epnout na jinУН jazyk." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "# dalХЁУ­" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "pХ™idat" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "Smazat znak" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "<" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "* PrediktivnУ­" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "NahrУЁvat nebo pХ™ehrУЁt hru" @@ -1148,122 +1246,35 @@ msgstr "S vyhlazenУНmi hranami" msgid "Clear value" msgstr "VyФistit hodnotu" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Dozvuk" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "AktivnУ­" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "MУ­stnost:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "TlumenУ­:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Х У­Х™ka:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "УšroveХˆ:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Sbor" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Rychlost:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Hloubka:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Typ:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "TrojУКhrlnУ­k" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolace:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "ХНУЁdnУЁ (NejrychlejХЁУ­)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "LineУЁrnУ­" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Interpolace ФtvrtУЉho Х™УЁdu" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Interpolace sedmУЉho Х™УЁdu" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Resetovat" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Resetovat veХЁkerУЁ nastavenУ­ FludSynth n ajejich vУНchozУ­ hodnoty." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Opravdu chcete resetovat veХЁkerУЁ nastavenУ­ FluidSynth na jejich vУНchozУ­ " -"hodnoty?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "JУЁdro nepodporuje УКroveХˆ ladФ›nУ­ '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "PХ™eskoФit" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pauza" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "PХ™eskoФit Х™УЁdek" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Chyba pХ™i spuХЁtФ›nУ­ hry:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Nelze nalУЉzt ХОУЁdnУЉ jУЁdro schopnУЉ vybranou hru spustit" @@ -1331,6 +1342,33 @@ msgstr "ZruХЁeno uХОivatelem" msgid "Unknown error" msgstr "NeznУЁmУЁ chyba" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules ZelenУЁ" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules JantarovУЁ" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules ZelenУЁ" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules JantarovУЁ" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1380,7 +1418,7 @@ msgstr "~N~УЁvrat do SpouХЁtФ›Фe" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "UloХОit hru:" @@ -1393,7 +1431,7 @@ msgstr "UloХОit hru:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "UloХОit" @@ -1404,9 +1442,9 @@ msgid "" "the README for basic information, and for instructions on how to obtain " "further assistance." msgstr "" -"Je nУЁm lУ­to, ale toto jУЁdro v souФasnosti nepodporuje hernУ­ nУЁpovФ›du. ProsУ­m " -"prohlУЉdnФ›te si README pro zУЁkladnУ­ informace a pro instrukce jak zУ­skat " -"dalХЁУ­ pomoc." +"Je nУЁm lУ­to, ale toto jУЁdro v souФasnosti nepodporuje hernУ­ nУЁpovФ›du. " +"ProsУ­m prohlУЉdnФ›te si README pro zУЁkladnУ­ informace a pro instrukce jak zУ­" +"skat dalХЁУ­ pomoc." #: engines/dialogs.cpp:234 engines/pegasus/pegasus.cpp:393 #, c-format @@ -1414,8 +1452,8 @@ msgid "" "Gamestate save failed (%s)! Please consult the README for basic information, " "and for instructions on how to obtain further assistance." msgstr "" -"UloХОenУ­ stavu hry selhalo (%s)! ProsУ­m pХ™eФtФ›te si dokumentaci pro zУЁkladnУ­ " -"informace a pokyny k zУ­skУЁnУ­ dalХЁУ­ podpory." +"UloХОenУ­ stavu hry selhalo (%s)! ProsУ­m pХ™eФtФ›te si dokumentaci pro " +"zУЁkladnУ­ informace a pokyny k zУ­skУЁnУ­ dalХЁУ­ podpory." #: engines/dialogs.cpp:307 engines/mohawk/dialogs.cpp:109 #: engines/mohawk/dialogs.cpp:170 engines/tsage/dialogs.cpp:106 @@ -1431,23 +1469,23 @@ msgstr "~Z~ruХЁit" msgid "~K~eys" msgstr "~K~lУЁvesy" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Nelze zavУЉst barevnУН formУЁt." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Nelze pХ™epnout na reХОim obrazu: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Nelze pouХОУ­t nastavenУ­ pomФ›ru stran." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Nelze pouХОУ­t nastavenУ­ celУЉ obrazovky." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1461,7 +1499,7 @@ msgstr "" "datovУЉ soubory na VУЁХЁ pevnУН disk.\n" "Pro podrobnosti si pХ™eФtФ›te README." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1475,7 +1513,7 @@ msgstr "" "abyste mohli poslouchat hudbu ve hХ™e.\n" "Pro podrobnosti si pХ™eФtФ›te README." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1484,20 +1522,24 @@ msgstr "" "NaФtenУ­ stavu hry selhalo (%s)! ProsУ­m pХ™eФtФ›te si dokumentaci pro zУЁkladnУ­ " "informace a pokyny k zУ­skУЁnУ­ dalХЁУ­ podpory." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " "not work in future versions of ScummVM." msgstr "" "VAROVУNУ: Hra, kterou se chystУЁte spustit, nenУ­ jeХЁtФ› plnФ› podporovУЁna " -"ScummVM. Proto je moХОnУЉ, ХОe bude nestabilnУ­ a jakУЉkoli uloХОenУЉ hry nemusУ­ " -"fungovat v budoucУ­ch verzУ­ch ScummVM." +"ScummVM. Proto je moХОnУЉ, ХОe bude nestabilnУ­ a jakУЉkoli uloХОenУЉ hry " +"nemusУ­ fungovat v budoucУ­ch verzУ­ch ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "PХ™esto spustit" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib EmulУЁtor" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL EmulУЁtor" @@ -1516,8 +1558,8 @@ msgid "" "The selected audio device '%s' was not found (e.g. might be turned off or " "disconnected)." msgstr "" -"ZvolenУЉ zvukovУЉ zaХ™У­zenУ­ '%s' nebylo nalezeno (napХ™. mХЏХОe bУНt vypnuto nebo " -"odpojeno)." +"ZvolenУЉ zvukovУЉ zaХ™У­zenУ­ '%s' nebylo nalezeno (napХ™. mХЏХОe bУНt vypnuto " +"nebo odpojeno)." #: audio/mididrv.cpp:209 audio/mididrv.cpp:221 audio/mididrv.cpp:257 #: audio/mididrv.cpp:272 @@ -1530,8 +1572,8 @@ msgid "" "The selected audio device '%s' cannot be used. See log file for more " "information." msgstr "" -"ZvolenУЉ zvukovУЉ zaХ™У­zenУ­ '%s' nelze pouХОУ­t. PodУ­vejte se na zУЁznam pro vУ­ce " -"informacУ­." +"ZvolenУЉ zvukovУЉ zaХ™У­zenУ­ '%s' nelze pouХОУ­t. PodУ­vejte se na zУЁznam pro vУ­" +"ce informacУ­." #: audio/mididrv.cpp:257 #, c-format @@ -1548,28 +1590,34 @@ msgid "" "The preferred audio device '%s' cannot be used. See log file for more " "information." msgstr "" -"UpХ™ednostХˆovanУЉ zvukovУЉ zaХ™У­zenУ­ '%s' nelze pouХОУ­t. PodУ­vejte se na zУЁznam " -"pro vУ­ce informacУ­." - -#: audio/null.h:44 -msgid "No music" -msgstr "Bez hudby" +"UpХ™ednostХˆovanУЉ zvukovУЉ zaХ™У­zenУ­ '%s' nelze pouХОУ­t. PodУ­vejte se na " +"zУЁznam pro vУ­ce informacУ­." #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "EmulУЁtor zvuku Amiga" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib EmulУЁtor" +#: audio/null.h:44 +msgid "No music" +msgstr "Bez hudby" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS EmulУЁtor (NENУ ZAVEDEN)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "EmulУЁtor zvuku C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "FM Towns EmulУЁtor" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Zvuk" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1587,6 +1635,147 @@ msgstr "PC Speaker EmulУЁtor" msgid "IBM PCjr Emulator" msgstr "IBM PCjr EmulУЁtor" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "EmulУЁtor zvuku C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Opravdu se chcete vrУЁtit do SpouХЁtФ›Фe?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "SpouХЁtФ›Ф" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Opravdu chcete skonФit?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "UkonФit" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - LevУЉ KliknutУ­" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - PravУЉ KliknutУ­" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - NajetУ­ (Bez KliknutУ­)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "MaximУЁlnУ­ Hlasitost" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "ZvyХЁuji Hlasitost" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "MinimУЁlnУ­ Hlasitost" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "SniХОuji Hlasitost" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "KliknutУ­ Povoleno" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "KliknutУ­ ZakУЁzУЁno" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - NajetУ­ (Dpad klikУЁ)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Chcete ukonФit ?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Touchpad reХОim vypnut" + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (bez filtrovУЁnУ­)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "NormУЁlnУ­ (bez zmФ›ny velikosti)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "NormУЁlnУ­ (bez zmФ›ny velikosti)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Povolena korekce pomФ›ru stran" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "ZakУЁzУЁna korekce pomФ›ru stran" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "AktivnУ­ grafickУН filtr:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "ReХОim do okna" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Mapa KlУЁves:" @@ -1692,18 +1881,26 @@ msgstr "VysokУЁ kvalita zvuku (pomalejХЁУ­) (restart) " msgid "Disable power off" msgstr "ZakУЁzat vypnutУ­" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "ReХОim pХ™etУЁhnutУ­ myХЁi zapnut." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "ReХОim pХ™etУЁhnutУ­ myХЁi vypnut." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpad reХОim zapnut" +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad reХОim vypnut" @@ -1714,9 +1911,9 @@ msgstr "ReХОim kliknutУ­" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "LevУЉ KliknutУ­" @@ -1726,8 +1923,8 @@ msgstr "KliknutУ­ prostХ™ednУ­m tlaФУ­tkem" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "PravУЉ kliknutУ­" @@ -1752,39 +1949,6 @@ msgstr "Okno" msgid "Minimize" msgstr "Minimalizovat" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "NormУЁlnУ­ (bez zmФ›ny velikosti)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "NormУЁlnУ­ (bez zmФ›ny velikosti)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Povolena korekce pomФ›ru stran" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "ZakУЁzУЁna korekce pomФ›ru stran" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "AktivnУ­ grafickУН filtr:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "ReХОim do okna" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (bez filtrovУЁnУ­)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1828,14 +1992,6 @@ msgstr "PХ™eskoФit text" msgid "Fast mode" msgstr "RychlУН reХОim" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 engines/scumm/dialogs.cpp:192 -#: engines/scumm/help.cpp:83 engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "UkonФit" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "LadУ­cУ­ program" @@ -1852,9 +2008,50 @@ msgstr "VirtuУЁlnУ­ klУЁvesnice" msgid "Key mapper" msgstr "MapovaФ klУЁves" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Chcete ukonФit ?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "PravУЉ kliknutУ­ jednou" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Pouze Pohyb" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "KlУЁvesa Escape" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menu Hry" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Zobrazit KlУЁvesnici" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "OvlУЁdУЁnУ­ MyХЁi" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "SdУ­lenУ­:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2075,8 +2272,8 @@ msgstr "Mapovat Фinnost pravУЉ kliknutУ­" #: backends/platform/wince/wince-sdl.cpp:520 msgid "You must map a key to the 'Right Click' action to play this game" msgstr "" -"MusУ­te namapovat klУЁvesu pro Фinnost 'PravУЉ KliknutУ­', abyste tuto hru mohli " -"hrУЁt" +"MusУ­te namapovat klУЁvesu pro Фinnost 'PravУЉ KliknutУ­', abyste tuto hru " +"mohli hrУЁt" #: backends/platform/wince/wince-sdl.cpp:529 msgid "Map hide toolbar action" @@ -2085,8 +2282,8 @@ msgstr "Mapovat Фinnost skrУНt panel nУЁstrojХЏ" #: backends/platform/wince/wince-sdl.cpp:533 msgid "You must map a key to the 'Hide toolbar' action to play this game" msgstr "" -"MusУ­te namapovat klУЁvesu pro Фinnost 'SkrУНt Panel nУЁstrojХЏ', abyste tuto hru " -"mohli hrУЁt" +"MusУ­te namapovat klУЁvesu pro Фinnost 'SkrУНt Panel nУЁstrojХЏ', abyste tuto " +"hru mohli hrУЁt" #: backends/platform/wince/wince-sdl.cpp:542 msgid "Map Zoom Up action (optional)" @@ -2103,102 +2300,21 @@ msgstr "" "NezapomeХˆte namapovat klУЁvesu k Фinnosti 'SkrУНt Panel NУЁstrojХЏ, abyste " "vidФ›li celУН inventУЁХ™" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Opravdu se chcete vrУЁtit do SpouХЁtФ›Фe?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "SpouХЁtФ›Ф" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Opravdu chcete skonФit?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - LevУЉ KliknutУ­" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - PravУЉ KliknutУ­" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - NajetУ­ (Bez KliknutУ­)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "MaximУЁlnУ­ Hlasitost" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "ZvyХЁuji Hlasitost" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "MinimУЁlnУ­ Hlasitost" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "SniХОuji Hlasitost" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "'ReХОim ХЄuknutУ­' DotykovУЉ Obrazovky - NajetУ­ (Dpad klikУЁ)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Zkontrolovat Aktualizace..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "PravУЉ kliknutУ­ jednou" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Pouze Pohyb" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "KlУЁvesa Escape" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menu Hry" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Zobrazit KlУЁvesnici" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "OvlУЁdУЁnУ­ MyХЁi" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "KliknutУ­ Povoleno" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "KliknutУ­ ZakУЁzУЁno" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "PouХОУ­t pХЏvodnУ­ obrazovky naФtenУ­/uloХОenУ­" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "PouХОУ­t pХЏvodnУ­ obrazovky naФtenУ­/uloХОenУ­ mУ­sto ze ScummVM" @@ -2222,18 +2338,18 @@ msgstr "Podpora myХЁi" msgid "" "Enables mouse support. Allows to use mouse for movement and in game menus." msgstr "" -"PovolУ­ podporu myХЁi. UmoХОnУ­ pouХОУ­t myХЁ pro pohyb a pro ovlУЁdУЁnУ­ hernУ­ch " -"nabУ­dek." +"PovolУ­ podporu myХЁi. UmoХОnУ­ pouХОУ­t myХЁ pro pohyb a pro ovlУЁdУЁnУ­ hernУ­" +"ch nabУ­dek." #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Obnovit hru" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Obnovit" @@ -2293,10 +2409,10 @@ msgid "" "Press OK to convert them now, otherwise you will be asked again the next " "time you start the game.\n" msgstr "" -"ScummVM zjistil, ХОe mУЁte starУЉ uloХОenУЉ pozice pro Drascula, kterУЉ by mФ›ly " -"bУНt pХ™evedeny.\n" -"StarУН formУЁt uloХОenУНch her jiХО nenУ­ podporovУЁn, takХОe pokud je nepХ™evedete, " -"nebudete moci vaХЁe hry naФУ­st.\n" +"ScummVM zjistil, ХОe mУЁte starУЉ uloХОenУЉ pozice pro Drascula, kterУЉ by " +"mФ›ly bУНt pХ™evedeny.\n" +"StarУН formУЁt uloХОenУНch her jiХО nenУ­ podporovУЁn, takХОe pokud je " +"nepХ™evedete, nebudete moci vaХЁe hry naФУ­st.\n" "\n" "StisknФ›te OK, abyste je pХ™evedli teФ, jinak budete poХОУЁdУЁni znovu, pХ™i " "spuХЁtФ›nУ­ tУЉto hry.\n" @@ -2572,10 +2688,10 @@ msgid "" "\n" "Press OK to convert them now, otherwise you will be asked next time.\n" msgstr "" -"ScummVM zjistil, ХОe mУЁte starУЉ uloХОenУЉ pozice pro Nippon Safes, kterУЉ by " -"mФ›ly bУНt pХ™ejmenovУЁny.\n" -"StarУЉ nУЁzvy jiХО nejsou podporovУЁny, takХОe pokud je nepХ™evedete, nebudete " -"moci vaХЁe hry naФУ­st.\n" +"ScummVM zjistil, ХОe mУЁte starУЉ uloХОenУЉ pozice pro Nippon Safes, kterУЉ " +"by mФ›ly bУНt pХ™ejmenovУЁny.\n" +"StarУЉ nУЁzvy jiХО nejsou podporovУЁny, takХОe pokud je nepХ™evedete, " +"nebudete moci vaХЁe hry naФУ­st.\n" "\n" "StisknФ›te OK, abyste je pХ™evedli teФ, jinak budete poХОУЁdУЁni pХ™У­ХЁtФ›.\n" @@ -2590,8 +2706,8 @@ msgid "" "\n" "Please report to the team." msgstr "" -"ScummVM vytiskl nФ›kterУЁ varovУЁnУ­ ve vaХЁem oknФ› konzole a nemХЏХОe zaruФit, ХОe " -"vХЁechny vaХЁe soubory byly pХ™evedeny.\n" +"ScummVM vytiskl nФ›kterУЁ varovУЁnУ­ ve vaХЁem oknФ› konzole a nemХЏХОe " +"zaruФit, ХОe vХЁechny vaХЁe soubory byly pХ™evedeny.\n" "\n" "ProsУ­m nahlaste to tУНmu" @@ -2649,50 +2765,61 @@ msgstr "" "PХ™eskoФit prХЏchod rozkladu barev EGA, obraze je zobrazen v plnУНch barvУЁch" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Povolit sloupcovУН indikУЁtor zdravУ­" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Povolit sloupcovУН indikУЁtor zdravУ­" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "UpХ™ednostХˆovat digitУЁlnУ­ zvukovУЉ efekty" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "UpХ™ednostХˆovat digitУЁlnУ­ zvukovУЉ efekty pХ™ed syntetizovanУНmi" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "PouХОУ­t IMF/Yamaha FB-01 pro vУНstup MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" -"PouХОУ­t kartu IBM Music Feature nebo modul syntetizУЁtoru Yamaha FB-01 FM pro " -"vУНstup MIDI" +"PouХОУ­t kartu IBM Music Feature nebo modul syntetizУЁtoru Yamaha FB-01 FM " +"pro vУНstup MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "PouХОУ­t zvuky na CD" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "PouХОУ­t zvuky na CD mУ­sto ve hХ™e, pokud je dostupnУЉ" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "PouХОУ­t kurzory Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "PouХОУ­t kurzory Windows (menХЁУ­ a ФernobУ­lУЉ) mУ­sto kurzorХЏ z DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "PouХОУ­t stХ™У­brnУЉ kurzory" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" -msgstr "PouХОУ­t alternativnУ­ sadu stХ™У­brnУНch kurzorХЏ mУ­sto standardnУ­ch zlatУНch" +msgstr "" +"PouХОУ­t alternativnУ­ sadu stХ™У­brnУНch kurzorХЏ mУ­sto standardnУ­ch zlatУНch" #: engines/scumm/dialogs.cpp:176 #, c-format @@ -3375,8 +3502,8 @@ msgid "" "Tentacle game directory, and the game has to be added to ScummVM." msgstr "" "NormУЁlnФ› by teФ byl spuХЁtФ›n Maniac Mansion. Ale aby toto mohlo fungovat, " -"musУ­ bУНt soubory se hrou umУ­stФ›ny do sloХОky 'Maniac' uvnitХ™ sloХОky se hrou " -"Tentacle a hra musУ­ bУНt pХ™idУЁna do ScummVM." +"musУ­ bУНt soubory se hrou umУ­stФ›ny do sloХОky 'Maniac' uvnitХ™ sloХОky se " +"hrou Tentacle a hra musУ­ bУНt pХ™idУЁna do ScummVM." #: engines/scumm/players/player_v3m.cpp:129 msgid "" @@ -3447,10 +3574,10 @@ msgid "" "Press OK to convert them now, otherwise you will be asked again the next " "time you start the game.\n" msgstr "" -"ScummVM zjistil, ХОe mУЁte starУЉ uloХОenУЉ pozice pro Broken Sword 1, kterУЉ by " -"mФ›ly bУНt pХ™evedeny.\n" -"StarУН formУЁt uloХОenУНch her jiХО nenУ­ podporovУЁn, takХОe pokud je nepХ™evedete, " -"nebudete moci vaХЁe hry naФУ­st.\n" +"ScummVM zjistil, ХОe mУЁte starУЉ uloХОenУЉ pozice pro Broken Sword 1, " +"kterУЉ by mФ›ly bУНt pХ™evedeny.\n" +"StarУН formУЁt uloХОenУНch her jiХО nenУ­ podporovУЁn, takХОe pokud je " +"nepХ™evedete, nebudete moci vaХЁe hry naФУ­st.\n" "\n" "StisknФ›te OK, abyste je pХ™evedli teФ, jinak budete poХОУЁdУЁni znovu, pХ™i " "spuХЁtФ›nУ­ tУЉto hry.\n" @@ -3492,7 +3619,8 @@ msgstr "Zobrazit jmenovky objektХЏ pХ™i najetУ­ myХЁi" #: engines/teenagent/resources.cpp:95 msgid "" "You're missing the 'teenagent.dat' file. Get it from the ScummVM website" -msgstr "ChybУ­ vУЁm soubor 'teenagent.dat'. MХЏХОete ho zУ­skat ze strУЁnky ScummVM." +msgstr "" +"ChybУ­ vУЁm soubor 'teenagent.dat'. MХЏХОete ho zУ­skat ze strУЁnky ScummVM." #: engines/teenagent/resources.cpp:116 msgid "" @@ -3567,7 +3695,8 @@ msgstr "" #~ msgstr "" #~ "NormУЁlnФ› by teФ Maniac Mansion byl spuХЁtФ›n. Ale ScummVM toto zatУ­m " #~ "nedФ›lУЁ. Abyste toto mohli hrУЁt, pХ™ejdФ›te do 'PХ™idat Hru' v poФУЁteФnУ­m " -#~ "menu ScummVM a vyberte adresУЁХ™ 'Maniac' uvnitХ™ hernУ­ho adresУЁХ™e Tentacle." +#~ "menu ScummVM a vyberte adresУЁХ™ 'Maniac' uvnitХ™ hernУ­ho adresУЁХ™e " +#~ "Tentacle." #~ msgid "MPEG-2 cutscenes found but ScummVM has been built without MPEG-2" #~ msgstr "Videa MPEG-2 nalezena, ale ScummVM byl sestaven bez MPEG-2" @@ -3611,20 +3740,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Zapnout reХОim Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules ZelenУЁ" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules JantarovУЁ" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules ZelenУЁ" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules JantarovУЁ" - #~ msgid "Save game failed!" #~ msgstr "UklУЁdУЁnУ­ hry selhalo!" @@ -3639,8 +3754,8 @@ msgstr "" #~ "Your game version has been detected using filename matching as a variant " #~ "of %s." #~ msgstr "" -#~ "Bylo zjiХЁtФ›no, ХОe VaХЁe verze hry pouХОУ­vУЁ jmУЉno souboru shodujУ­cУ­ se s " -#~ "variantou %s." +#~ "Bylo zjiХЁtФ›no, ХОe VaХЁe verze hry pouХОУ­vУЁ jmУЉno souboru shodujУ­cУ­ se " +#~ "s variantou %s." #~ msgid "If this is an original and unmodified version, please report any" #~ msgstr "Pokud je toto pХЏvodnУ­ a nezmФ›nФ›nУЁ verze, ohlaste prosУ­m jakУЉkoli" @@ -3654,8 +3769,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Argument pХ™У­kazovУЉ Х™УЁdky nebyl zpracovУЁn" -#~ msgid "FM Towns Emulator" -#~ msgstr "FM Towns EmulУЁtor" - #~ msgid "Invalid Path" #~ msgstr "NeplatnУЁ Cesta" diff --git a/po/da_DA.po b/po/da_DA.po index ce523f345aa..11a27cd0b25 100644 --- a/po/da_DA.po +++ b/po/da_DA.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-09 17:34+0100\n" "Last-Translator: Steffen Nyeland \n" "Language-Team: Steffen Nyeland \n" @@ -53,17 +53,17 @@ msgid "Go up" msgstr "Gх op" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Fortryd" @@ -84,7 +84,7 @@ msgstr "Navn:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -101,8 +101,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Vil du virkelig slette denne gemmer?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -111,8 +111,8 @@ msgstr "Vil du virkelig slette denne gemmer?" msgid "Yes" msgstr "Ja" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -121,42 +121,94 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Luk" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Rumklang" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Muse klik" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktiv" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Vis tastatur" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Rum:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Kortlцg taster" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Dцmp:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Skift fuldskцrm" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Bredde:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Vцlg en handling at kortlцgge" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Styrke:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Kortlцg" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Kor" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Hastighed:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Dybde:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Type:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triangulцr" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Andet" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolation:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Ingen (hurtigst)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineцr" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Fjerde-orden" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Syvende-orden" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Nulstil" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Nulstil alle FluidSynth indstillinger til deres standard vцrdier." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -172,6 +224,40 @@ msgstr "Kortl msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Vil du virkelig nulstille alle FluidSynth indstillinger til deres standard " +"vцrdier?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Luk" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Muse klik" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Vis tastatur" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Kortlцg taster" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Skift fuldskцrm" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Kortlцg" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Vцlg en handling og klik 'Kortlцg'" @@ -194,6 +280,10 @@ msgstr "V msgid "Press the key to associate" msgstr "Tryk tasten for at tilknytte" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Vцlg en handling at kortlцgge" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Spil" @@ -497,7 +587,7 @@ msgstr "~F~jern spil" msgid "Search in game list" msgstr "Sјg i spil liste" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Sјg:" @@ -516,7 +606,7 @@ msgstr "Indl msgid "Load" msgstr "Indlцs" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -524,40 +614,40 @@ msgstr "" "Vil du virkelig kјre fler spils detektoren? Dette kunne potentielt tilfјje " "et stort antal spil." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM kunne ikke хbne det angivne bibliotek!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM kunne ikke finde noget spil i det angivne bibliotek!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Vцlg spillet:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Vil du virkelig fjerne denne spil konfiguration?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Vil du indlцse gemmer?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Dette spil understјtter ikke indlцsning af spil fra spiloversigten." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM kunne ikke finde en motor, istand til at afvikle det valgte spil!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Tilfјj flere..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -925,10 +1015,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Plugin sti:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Andet" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -992,28 +1078,38 @@ msgstr "" "bruge dette tema, skal du skifte til et andet sprog fјrst." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Slet" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1154,122 +1250,35 @@ msgstr "Antialias" msgid "Clear value" msgstr "Slet vцrdi" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Rumklang" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktiv" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Rum:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Dцmp:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Bredde:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Styrke:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Kor" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Hastighed:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Dybde:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Type:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triangulцr" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolation:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Ingen (hurtigst)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineцr" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Fjerde-orden" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Syvende-orden" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Nulstil" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Nulstil alle FluidSynth indstillinger til deres standard vцrdier." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Vil du virkelig nulstille alle FluidSynth indstillinger til deres standard " -"vцrdier?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Motor understјtter ikke fejlfindingsniveau '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Spring over" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pause" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Spring linje over" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Fejl ved kјrsel af spil:" -#: base/main.cpp:554 +#: base/main.cpp:557 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" @@ -1337,6 +1346,33 @@ msgstr "Bruger annullerede" msgid "Unknown error" msgstr "Ukendt fejl" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules grјn" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules brun" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules grјn" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules brun" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1387,7 +1423,7 @@ msgstr "~R~etur til oversigt" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Gemmer:" @@ -1400,7 +1436,7 @@ msgstr "Gemmer:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Gem" @@ -1438,23 +1474,23 @@ msgstr "~F~ortryd" msgid "~K~eys" msgstr "~T~aster" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Kunne ikke initialisere farveformat." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Kunne ikke skifte til videotilstand: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Kunne ikke anvende billedformat korrektion indstilling." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Kunne ikke anvende fuldskцrm indstilling." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1468,7 +1504,7 @@ msgstr "" "datafiler til din harddisk i stedet.\n" "Se README fil for detaljer." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1482,7 +1518,7 @@ msgstr "" "for at lytte til spillets musik.\n" "Se README fil for detaljer." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1492,7 +1528,7 @@ msgstr "" "grundlцggende oplysninger, og for at fх instruktioner om, hvordan man fхr " "yderligere hjцlp." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1502,10 +1538,14 @@ msgstr "" "ScummVM. Sхledes, er det sandsynligt, at det er ustabilt, og alle gemmer du " "foretager fungerer muligvis ikke i fremtidige versioner af ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Start alligevel" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib emulator" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emulator" @@ -1558,25 +1598,31 @@ msgstr "" "Den foretrukne lydenhed '%s' kan ikke bruges. Se log filen for mere " "information." -#: audio/null.h:44 -msgid "No music" -msgstr "Ingen musik" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga lyd emulator" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib emulator" +#: audio/null.h:44 +msgid "No music" +msgstr "Ingen musik" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS emulator (IKKE IMPLEMENTERET)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 lyd emulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "FM Towns emulator" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Lyd" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1594,6 +1640,147 @@ msgstr "PC Speaker emulator" msgid "IBM PCjr Emulator" msgstr "IBM PCjr emulator" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 lyd emulator" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Vil du virkelig gх tilbage til oversigten?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Oversigt" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Vil du virkelig afslutte?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Afslut" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchscreen 'Tap Mode' - Venstre Klik" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchscreen 'Tap Mode' - Hјjre Klik" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchscreen 'Tap Mode' - Henover (Ingen Klik)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maximal lydstyrke" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Hцver lydstyrke" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Minimal lydstyrke" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Sцnker lydstyrke" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klik aktiveret" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klik deaktiveret" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchscreen 'Tap Mode' - Henover (DPad Klik)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Vil du afslutte?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Pegeplade tilstand deaktiveret." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (Ingen filtrering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (ingen skalering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal (ingen skalering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Aktivщr billedformat korrektion" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Deaktivщr billedformat korrektion" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktive grafik filtre:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Vindue tilstand" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Tasteoversigt:" @@ -1699,18 +1886,26 @@ msgstr "H msgid "Disable power off" msgstr "Deaktiver slukning" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Muse-klik-og-trцk tilstand aktiveret." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Muse-klik-og-trцk tilstand deaktiveret." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Pegeplade tilstand aktiveret." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Pegeplade tilstand deaktiveret." @@ -1721,9 +1916,9 @@ msgstr "Klik tilstand" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Venstre klik" @@ -1733,8 +1928,8 @@ msgstr "Miderste klik" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Hјjre klik" @@ -1759,39 +1954,6 @@ msgstr "Vindue" msgid "Minimize" msgstr "Minimer" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (ingen skalering)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal (ingen skalering)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Aktivщr billedformat korrektion" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Deaktivщr billedformat korrektion" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktive grafik filtre:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Vindue tilstand" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (Ingen filtrering)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1835,15 +1997,6 @@ msgstr "Spring tekst over" msgid "Fast mode" msgstr "Hurtig tilstand" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Afslut" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Fejlsјger" @@ -1860,9 +2013,50 @@ msgstr "Virtuelt tastatur" msgid "Key mapper" msgstr "Tastetildeling" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Vil du afslutte?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Enkelt hјjre klik" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Flyt kun" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Escape tast" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Spil menu" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Vis tastatur" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Kontrollщr mus" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Mappe:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2110,102 +2304,21 @@ msgstr "" "Glem ikke at tildele en tast til 'Skjul vцrktјjslinje' handling for at se " "hele oversigten" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Vil du virkelig gх tilbage til oversigten?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Oversigt" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Vil du virkelig afslutte?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchscreen 'Tap Mode' - Venstre Klik" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchscreen 'Tap Mode' - Hјjre Klik" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchscreen 'Tap Mode' - Henover (Ingen Klik)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maximal lydstyrke" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Hцver lydstyrke" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Minimal lydstyrke" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Sцnker lydstyrke" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchscreen 'Tap Mode' - Henover (DPad Klik)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Sјg efter opdateringer..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Enkelt hјjre klik" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Flyt kun" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Escape tast" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Spil menu" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Vis tastatur" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Kontrollщr mus" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klik aktiveret" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klik deaktiveret" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Brug original gem/indlцs skцrme" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "Brug de originale gem/indlцs skцrme, istedet for dem fra ScummVM" @@ -2232,13 +2345,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Gendan spil:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Gendan" @@ -2644,18 +2757,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Aktivщr trцfpoint (HP) sјjlediagrammer" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Aktivщr trцfpoint (HP) sјjlediagrammer" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Foretrцk digitale lydeffekter" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Foretrцk digitale lydeffekter i stedet for syntetiserede" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Brug IMF/Yamaha FB-01 til MIDI-udgang" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2663,28 +2786,28 @@ msgstr "" "Bruge et IBM Musik Feature-kort eller et Yamaha FB-01 FM synth modul til " "MIDI-udgang" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Brug CD lyd" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Brug cd-lyd i stedet for lyd fra spillet, hvis tilgцngelige" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Brug Windows markјr" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "Brug Windows-markјrer (mindre og monokrome) i stedet for dem fra DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Brug sјlv markјr" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3600,20 +3723,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Aktivщr Roland GS tilstand" -#~ msgid "Hercules Green" -#~ msgstr "Hercules grјn" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules brun" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules grјn" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules brun" - #, fuzzy #~ msgid "Save game failed!" #~ msgstr "Gemmer:" @@ -3628,8 +3737,5 @@ msgstr "" #~ msgid "Discovered %d new games." #~ msgstr "Fundet %d nye spil." -#~ msgid "FM Towns Emulator" -#~ msgstr "FM Towns emulator" - #~ msgid "Invalid Path" #~ msgstr "Ugyldig sti" diff --git a/po/de_DE.po b/po/de_DE.po index 86fa385f28c..be0206800f3 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.8.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" -"PO-Revision-Date: 2015-10-16 11:00+0200\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" +"PO-Revision-Date: 2016-01-28 19:00+0100\n" "Last-Translator: Lothar Serra Mari \n" "Language-Team: Simon Sawatzki , Lothar Serra Mari " "\n" @@ -55,17 +55,17 @@ msgid "Go up" msgstr "Pfad hoch" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Abbrechen" @@ -86,25 +86,24 @@ msgstr "Name:" msgid "Notes:" msgstr "Notizen:" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "OK" #: gui/filebrowser-dialog.cpp:49 msgid "Choose file for loading" -msgstr "" +msgstr "Zu ladende Datei auswфhlen" #: gui/filebrowser-dialog.cpp:49 msgid "Enter filename for saving" -msgstr "" +msgstr "Dateiname zum Speichern eingeben" #: gui/filebrowser-dialog.cpp:132 -#, fuzzy msgid "Do you really want to overwrite the file?" -msgstr "Mіchten Sie diese Aufnahme wirklich lіschen?" +msgstr "Mіchten Sie diese Datei wirklich ќberschreiben?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -113,8 +112,8 @@ msgstr "M msgid "Yes" msgstr "Ja" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -123,42 +122,94 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Schlieпen" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Hall" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Mausklick" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktiv" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Tastatur anzeigen" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Raum:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Tasten neu zuweisen" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Dфmpfung:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Vollbild umschalten" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Radius:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Eine Aktion zum Zuweisen auswфhlen" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Intensitфt:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Zuweisen" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Chor" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "Stimmen:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Rate:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Trennzeit:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Typ:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Dreieck" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Sonstiges" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolation:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Keine (am schnellsten)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Linear" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Vierstufig" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Siebenstufig" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Rќcksetzen" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Setzt alle FluidSynth-Einstellungen auf ihre Standard-Werte zurќck." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -174,6 +225,40 @@ msgstr "Zuweisen" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Mіchten Sie wirklich alle FluidSynth-Einstellungen auf ihre Standard-Werte " +"zurќcksetzen?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Schlieпen" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Mausklick" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Tastatur anzeigen" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Tasten neu zuweisen" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Vollbild umschalten" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Zuweisen" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Aktion auswфhlen und \"Zuweisen\" klicken" @@ -196,6 +281,10 @@ msgstr "Bitte eine Aktion ausw msgid "Press the key to associate" msgstr "Taste drќcken, um sie zuzuweisen" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Eine Aktion zum Zuweisen auswфhlen" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Spiel" @@ -501,7 +590,7 @@ msgstr "~E~ntfernen" msgid "Search in game list" msgstr "In Spieleliste suchen" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Suchen:" @@ -520,7 +609,7 @@ msgstr "Spiel laden:" msgid "Load" msgstr "Laden" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -528,40 +617,40 @@ msgstr "" "Mіchten Sie wirklich den PC nach Spielen durchsuchen? Mіglicherweise wird " "dabei eine grіпere Menge an Spielen hinzugefќgt." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM konnte das gewфhlte Verzeichnis nicht іffnen!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM konnte im gewфhlten Verzeichnis kein Spiel finden!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Spiel auswфhlen:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Mіchten Sie wirklich diese Spielkonfiguration entfernen?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Mіchten Sie einen Spielstand laden?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "" "Fќr dieses Spiel wird das Laden aus der Spieleliste heraus nicht unterstќtzt." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM konnte keine Engine finden, um das Spiel zu starten!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Durchsuchen" -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "Aufzeichnen" @@ -936,10 +1025,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Plugins:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Sonstiges" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -1007,27 +1092,37 @@ msgstr "" "wechseln." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "# nфchste" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "hinzufќgen" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "Lіschen" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "<" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "* Vorschau" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "* Zahlen" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "* ABC" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "Spiel aufzeichnen/wiedergeben" @@ -1165,122 +1260,35 @@ msgstr "Kantengl msgid "Clear value" msgstr "Wert lіschen" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Hall" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktiv" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Raum:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Dфmpfung:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Radius:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Intensitфt:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Chor" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "Stimmen:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Rate:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Trennzeit:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Typ:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Dreieck" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolation:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Keine (am schnellsten)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Linear" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Vierstufig" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Siebenstufig" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Rќcksetzen" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Setzt alle FluidSynth-Einstellungen auf ihre Standard-Werte zurќck." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Mіchten Sie wirklich alle FluidSynth-Einstellungen auf ihre Standard-Werte " -"zurќcksetzen?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Engine unterstќtzt den Debug-Level \"%s\" nicht." -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menќ" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "мberspringen" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pause" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Zeile ќberspringen" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Fehler beim Ausfќhren des Spiels:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Konnte keine Spiel-Engine finden, die dieses Spiel starten kann." @@ -1348,6 +1356,33 @@ msgstr "Abbruch durch Benutzer" msgid "Unknown error" msgstr "Unbekannter Fehler" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Grќn" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Bernstein" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "PC-9821 (256 Farben)" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "PC-9801 (16 Farben)" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Grќn" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Bernst." + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1401,7 +1436,7 @@ msgstr "Zur Spiele~l~iste" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Speichern:" @@ -1414,7 +1449,7 @@ msgstr "Speichern:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Speichern" @@ -1451,23 +1486,23 @@ msgstr "~A~bbrechen" msgid "~K~eys" msgstr "~T~asten" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Konnte Farbenformat nicht initialisieren." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Konnte nicht zu Grafikmodus wechseln: \"" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Konnte Einstellung fќr Seitenverhфltniskorrektur nicht anwenden." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Konnte Einstellung fќr Vollbildmodus nicht anwenden." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1483,7 +1518,7 @@ msgstr "" "Lesen Sie die Liesmich-Datei fќr\n" "weitere Informationen." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1498,7 +1533,7 @@ msgstr "" "Spiel hіren zu kіnnen. Lesen Sie die\n" "Liesmich-Datei fќr weitere Informationen." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1507,7 +1542,7 @@ msgstr "" "Laden des Spielstands %s fehlgeschlagen! Bitte lesen Sie die Liesmich-Datei " "fќr grundlegende Informationen und Anweisungen zu weiterer Hilfe." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1518,10 +1553,14 @@ msgstr "" "und jegliche Spielstфnde, die Sie erstellen, kіnnten in zukќnftigen " "Versionen von ScummVM nicht mehr funktionieren." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Trotzdem starten" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib-Emulator" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME-OPL-Emulator" @@ -1575,25 +1614,29 @@ msgstr "" "Das bevorzugte Audiogerфt \"%s\" kann nicht verwendet werden. Schauen Sie " "fќr weitere Informationen in der Log-Datei nach." -#: audio/null.h:44 -msgid "No music" -msgstr "Keine Musik" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga-Audio-Emulator" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib-Emulator" +#: audio/null.h:44 +msgid "No music" +msgstr "Keine Musik" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple-II-GS-Emulator (NICHT INTEGRIERT)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64-Audio-Emulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "Creative-Music-System-Emulator" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "FM-Towns-Audio" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +msgid "PC-98 Audio" +msgstr "PC-98-Audio" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1611,6 +1654,146 @@ msgstr "PC-Lautsprecher-Emulator" msgid "IBM PCjr Emulator" msgstr "IBM-PCjr-Emulator" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64-Audio-Emulator" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Mіchten Sie wirklich zur Spieleliste zurќckkehren?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Spieleliste" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Mіchten Sie wirklich beenden?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Beenden" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Berќhrungsbildschirm-Tipp-Modus - Linksklick" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Berќhrungsbildschirm-Tipp-Modus - Rechtsklick" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Berќhrungsbildschirm-Tipp-Modus - schweben (kein Klick)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Hіchste Lautstфrke" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Lautstфrke hіher" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Niedrigste Lautstфrke" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Lautstфrke niedriger" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klicken aktiviert" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klicken deaktiviert" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Berќhrungsbildschirm-Tipp-Modus - schweben (DPad-Klicks)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Mіchten Sie beenden?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +msgid "Trackpad mode is now" +msgstr "Trackpad-Modus ist jetzt " + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "AN" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "AUS" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "Zum Umschalten mit zwei Fingern nach rechts wischen." + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "Automatisches Ziehen ist jetzt " + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "Zum Umschalten mit drei Fingern nach rechts wischen." + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (ohne Filter)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (keine Skalierung)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal ohn.Skalieren" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Seitenverhфltniskorrektur an" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Seitenverhфltniskorrektur aus" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktiver Grafikfilter:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Fenstermodus" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Tasten-Layout:" @@ -1716,18 +1899,26 @@ msgstr "Hohe Audioqualit msgid "Disable power off" msgstr "Stromsparmodus abschalten" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Maus-klick-und-zieh-Modus aktiviert." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Maus-klick-und-zieh-Modus ausgeschaltet." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpad-Modus aktiviert." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad-Modus ausgeschaltet." @@ -1738,9 +1929,9 @@ msgstr "Klickmodus" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Linksklick" @@ -1750,8 +1941,8 @@ msgstr "Mittelklick" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Rechtsklick" @@ -1776,39 +1967,6 @@ msgstr "Fenster" msgid "Minimize" msgstr "Minimieren" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (keine Skalierung)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal ohn.Skalieren" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Seitenverhфltniskorrektur an" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Seitenverhфltniskorrektur aus" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktiver Grafikfilter:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Fenstermodus" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (ohne Filter)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1852,15 +2010,6 @@ msgstr "Text msgid "Fast mode" msgstr "Schneller Modus" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Beenden" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1877,9 +2026,49 @@ msgstr "Virtuelle Tastatur" msgid "Key mapper" msgstr "Tasten zuordnen" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Mіchten Sie beenden?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Einmal Rechtsklick" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Nur bewegen" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Escape-Taste" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Spielmenќ" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Ziffernblock zeigen" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Maus steuern" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "[ Daten ]" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "[ Ressourcen ]" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "[ SD-Karte ]" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "[ Datentrфger ]" + +#: backends/platform/tizen/fs.cpp:275 +msgid "[ Shared ]" +msgstr "[ жffentlich ]" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -1995,7 +2184,7 @@ msgstr ", #: backends/platform/wii/options.cpp:174 msgid "Network down" -msgstr "Netzwerk ist aus." +msgstr "Netzwerk ist nicht verfќgbar." #: backends/platform/wii/options.cpp:178 msgid "Initializing network" @@ -2128,102 +2317,21 @@ msgstr "" "Vergessen Sie nicht, der Aktion \"Werkzeugleiste verbergen\" eine Taste " "zuzuweisen, um das ganze Inventar sehen zu kіnnen." -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Mіchten Sie wirklich zur Spieleliste zurќckkehren?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Spieleliste" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Mіchten Sie wirklich beenden?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Berќhrungsbildschirm-Tipp-Modus - Linksklick" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Berќhrungsbildschirm-Tipp-Modus - Rechtsklick" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Berќhrungsbildschirm-Tipp-Modus - schweben (kein Klick)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Hіchste Lautstфrke" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Lautstфrke hіher" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Niedrigste Lautstфrke" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Lautstфrke niedriger" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Berќhrungsbildschirm-Tipp-Modus - schweben (DPad-Klicks)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Suche nach Aktualisierungen..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Einmal Rechtsklick" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Nur bewegen" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Escape-Taste" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Spielmenќ" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Ziffernblock zeigen" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Maus steuern" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klicken aktiviert" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klicken deaktiviert" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Originale Spielstand-Menќs" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Verwendet die originalen Menќs zum Speichern und Laden statt der von ScummVM." @@ -2253,13 +2361,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Spiel laden:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Laden" @@ -2686,18 +2794,26 @@ msgstr "" "gezeigt" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "Aktiviere hochauflіsende Grafik." + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "Aktiviere hochauflіsende Grafik/Inhalte" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Digitale Gerфusch-Effekte bevorzugen" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Bevorzugt digitale Gerфusch-Effekte statt synthethisierter." -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "IMF/Yamaha FB-01 fќr MIDI-Ausgabe verwenden" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2705,30 +2821,30 @@ msgstr "" "Verwendet eine Music-Feature-Karte von IBM oder ein Yamaha-FB-01-FM-" "Synthetisierungsmodul fќr die MIDI-Ausgabe." -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "CD-Ton verwenden" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Verwendet CD-Ton anstatt des Tons im Spiel, sofern verfќgbar." -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Windows-Mauszeiger verwenden" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Verwendet die Windows-Mauszeiger (kleiner und schwarz-weiп) anstatt der von " "DOS." -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Silberne Mauszeiger verwenden" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index cc44dae2b8e..4fd9e8d4fd2 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.4.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-06 20:39+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -52,17 +52,17 @@ msgid "Go up" msgstr "Arriba" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Cancelar" @@ -83,7 +83,7 @@ msgstr "Nombre:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -100,8 +100,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "ПSeguro que quieres borrar esta partida?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -110,8 +110,8 @@ msgstr " msgid "Yes" msgstr "Sэ" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -120,42 +120,94 @@ msgstr "S msgid "No" msgstr "No" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Cerrar" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Reverberaciѓn" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Clic de ratѓn" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Activa" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Mostrar el teclado" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Sala:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Asignar teclas" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Atenuaciѓn:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Activar/Desactivar pantalla completa" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Amplitud" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Elige una acciѓn para asociarla" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Nivel:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Asignar" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Coro" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Velocidad:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Profundidad:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Tipo" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Seno" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triсngulo" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Otras" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolaciѓn:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Ninguna (la mсs rсpida)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineal" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Cuarto grado" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Sщptimo grado" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Reiniciar" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Volver a los valores por defecto de las opciones de FluidSynth" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -171,6 +223,40 @@ msgstr "Asignar" msgid "OK" msgstr "Aceptar" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"ПSeguro que quieres volver a los valores por defecto de las opciones de " +"FluidSynth?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Cerrar" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Clic de ratѓn" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Mostrar el teclado" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Asignar teclas" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Activar/Desactivar pantalla completa" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Asignar" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Selecciona una acciѓn y pulsa 'Asignar'" @@ -193,6 +279,10 @@ msgstr "Por favor, selecciona una acci msgid "Press the key to associate" msgstr "Pulsa una tecla para asignarla" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Elige una acciѓn para asociarla" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Juego" @@ -496,7 +586,7 @@ msgstr "E~l~iminar" msgid "Search in game list" msgstr "Buscar en la lista de juegos" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Buscar:" @@ -515,7 +605,7 @@ msgstr "Cargar juego:" msgid "Load" msgstr "Cargar" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -523,40 +613,40 @@ msgstr "" "ПSeguro que quieres ejecutar la detecciѓn masiva? Puede que se aёada un gran " "nњmero de juegos." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ЁScummVM no ha podido abrir el directorio!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ЁScummVM no ha encontrado ningњn juego en el directorio!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Elige el juego:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "ПSeguro que quieres eliminar la configuraciѓn de este juego?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "ПQuieres cargar la partida guardada?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Este juego no permite cargar partidas desde el lanzador." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ЁScummVM no ha podido encontrar ningњn motor capaz de ejecutar el juego!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Aёadir varios..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -931,10 +1021,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Plugins:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Otras" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -999,28 +1085,38 @@ msgstr "" "este tema debes cambiar a otro idioma primero." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Borrar" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1161,122 +1257,35 @@ msgstr "Suavizado" msgid "Clear value" msgstr "Eliminar valor" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Reverberaciѓn" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Activa" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Sala:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Atenuaciѓn:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Amplitud" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Nivel:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Coro" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Velocidad:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Profundidad:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Tipo" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Seno" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triсngulo" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolaciѓn:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Ninguna (la mсs rсpida)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineal" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Cuarto grado" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Sщptimo grado" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Reiniciar" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Volver a los valores por defecto de las opciones de FluidSynth" - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"ПSeguro que quieres volver a los valores por defecto de las opciones de " -"FluidSynth?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "El motor no es compatible con el nivel de debug '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menњ" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Saltar" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pausar" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Saltar frase" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Error al ejecutar el juego:" -#: base/main.cpp:554 +#: base/main.cpp:557 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" @@ -1344,6 +1353,33 @@ msgstr "Cancel msgid "Unknown error" msgstr "Error desconocido" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules verde" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules сmbar" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules verde" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules сmbar" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1393,7 +1429,7 @@ msgstr "~V~olver al lanzador" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Guardar partida" @@ -1406,7 +1442,7 @@ msgstr "Guardar partida" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Guardar" @@ -1445,23 +1481,23 @@ msgstr "~C~ancelar" msgid "~K~eys" msgstr "~T~eclas" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "No se ha podido iniciar el formato de color." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "No se ha podido cambiar al modo de video: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "No se ha podido aplicar el ajuste de correcciѓn de aspecto" -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "No se ha podido aplicar el ajuste de pantalla completa." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1475,7 +1511,7 @@ msgstr "" "copiar los archivos del juego al disco duro.\n" "Consulta el archivo README para mсs detalles." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1489,7 +1525,7 @@ msgstr "" "poder escuchar la mњsica del juego.\n" "Consulta el archivo README para mсs detalles." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1499,7 +1535,7 @@ msgstr "" "README para encontrar informaciѓn bсsica e instrucciones sobre cѓmo obtener " "mсs ayuda." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1509,10 +1545,14 @@ msgstr "" "ScummVM. Por lo tanto, puede que sea inestable, y que las partidas que " "guardes no funcionen en versiones futuras de ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Jugar aun asэ" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Emulador de AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Emulador OPL de MAME" @@ -1566,25 +1606,30 @@ msgstr "" "El dispositivo de sonido preferido, '%s', no se puede utilizar. Consulta el " "registro para mсs informaciѓn." -#: audio/null.h:44 -msgid "No music" -msgstr "Sin mњsica" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Emulador de Amiga Audio" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Emulador de AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Sin mњsica" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Emulador de Apple II GS (NO IMPLEMENTADO)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Emulador de C64 Audio" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Sonido" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1602,6 +1647,147 @@ msgstr "Emulador del altavoz de PC" msgid "IBM PCjr Emulator" msgstr "Emulador de IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Emulador de C64 Audio" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "ПSeguro que quieres volver al lanzador?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Lanzador" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "ПSeguro que quieres salir?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Salir" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "'Modo toque' de pantalla tсctil - Clic izquierdo" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "'Modo toque' de pantalla tсctil - Clic derecho" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "'Modo toque' de pantalla tсctil - Flotante (sin clic)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Volumen mсximo" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Aumentando el volumen" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Volumen mэnimo" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Bajando el volumen" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Clic activado" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Clic desactivado" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "'Modo toque' de pantalla tсctil - Flotante (clic de cruceta)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "ПQuieres salir?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Modo Touchpad desactivado." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (sin filtros)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (sin reescalado)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Activar la correcciѓn de aspecto" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Desactivar la correcciѓn de aspecto" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Filtro de grсficos activo:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Modo ventana" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Asignaciѓn de teclas:" @@ -1707,18 +1893,26 @@ msgstr "Sonido de alta calidad (m msgid "Disable power off" msgstr "Desactivar apagado" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Modo clic-de-ratѓn-y-arrastrar activado." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Modo clic-de-ratѓn-y-arrastrar desactivado." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Modo Touchpad activado." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Modo Touchpad desactivado." @@ -1729,9 +1923,9 @@ msgstr "Modo clic" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Clic izquierdo" @@ -1741,8 +1935,8 @@ msgstr "Clic central" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Clic derecho" @@ -1767,39 +1961,6 @@ msgstr "Ventana" msgid "Minimize" msgstr "Minimizar" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (sin reescalado)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Activar la correcciѓn de aspecto" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Desactivar la correcciѓn de aspecto" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Filtro de grсficos activo:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Modo ventana" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (sin filtros)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1843,15 +2004,6 @@ msgstr "Saltar texto" msgid "Fast mode" msgstr "Modo rсpido" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Salir" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1868,9 +2020,50 @@ msgstr "Teclado virtual" msgid "Key mapper" msgstr "Asignaciѓn de teclas" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "ПQuieres salir?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Un clic derecho" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Solo mover" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Tecla Escape" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menњ del juego" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Mostrar el teclado numщrico" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Control del ratѓn" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Disco compartido:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2118,102 +2311,21 @@ msgstr "" "No olvides asignar una tecla a la acciѓn 'Ocultar barra de tareas' para ver " "todo el inventario" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "ПSeguro que quieres volver al lanzador?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Lanzador" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "ПSeguro que quieres salir?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "'Modo toque' de pantalla tсctil - Clic izquierdo" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "'Modo toque' de pantalla tсctil - Clic derecho" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "'Modo toque' de pantalla tсctil - Flotante (sin clic)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Volumen mсximo" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Aumentando el volumen" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Volumen mэnimo" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Bajando el volumen" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "'Modo toque' de pantalla tсctil - Flotante (clic de cruceta)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Buscar actualizaciones..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Un clic derecho" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Solo mover" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Tecla Escape" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menњ del juego" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Mostrar el teclado numщrico" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Control del ratѓn" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Clic activado" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Clic desactivado" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Usar pantallas de guardar/cargar originales" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Utilizar las pantallas de guardar/cargar originales, en vez de las de ScummVM" @@ -2242,13 +2354,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Cargar partida:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Cargar" @@ -2655,18 +2767,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Activar las barras de energэa" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Activar las barras de energэa" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Preferir efectos de sonido digitales" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Preferir efectos de sonido digitales en vez de los sintetizados" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Usar IMF/Yamaha FB-01 para la salida MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2674,29 +2796,29 @@ msgstr "" "Usar una tarjeta IBM Music o un mѓdulo sintetizador Yamaha FB-01 FM para la " "salida MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Usar CD audio" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Usar CD audio en vez del sonido interno del juego, si estс disponible" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Usar cursores de Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Usar los cursores de Windows (mсs pequeёos y monocromos) en vez de los de DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Usar cursores plateados" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3621,19 +3743,5 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Activar modo Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules verde" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules сmbar" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules verde" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules сmbar" - #~ msgid "Save game failed!" #~ msgstr "No se ha podido guardar la partida." diff --git a/po/eu.po b/po/eu.po index d7722504e4f..2ad8fb80081 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.5.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2011-12-15 14:53+0100\n" "Last-Translator: Mikel Iturbe Urretxa \n" "Language-Team: Librezale \n" @@ -52,17 +52,17 @@ msgid "Go up" msgstr "Joan gora" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Utzi" @@ -83,7 +83,7 @@ msgstr "Izena:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -100,8 +100,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Ezabatu partida gorde hau?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -110,8 +110,8 @@ msgstr "Ezabatu partida gorde hau?" msgid "Yes" msgstr "Bai" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -120,42 +120,97 @@ msgstr "Bai" msgid "No" msgstr "Ez" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Itxi" +#: gui/fluidsynth-dialog.cpp:68 +#, fuzzy +msgid "Reverb" +msgstr "Inoiz ez" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Sagu-klika" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +#, fuzzy +msgid "Active" +msgstr "(Aktiboa)" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Teklatua erakutsi" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Teklak esleitu" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Txandakatu pantaila osoa" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Aukeratu esleituko den ekintza" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Esleitu" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:118 +#, fuzzy +msgid "Speed:" +msgstr "Ahotsa" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Beste" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -171,6 +226,39 @@ msgstr "Esleitu" msgid "OK" msgstr "Ados" +#: gui/fluidsynth-dialog.cpp:217 +#, fuzzy +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "Ziur zaude abiarazlera itzuli nahi duzula?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Itxi" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Sagu-klika" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Teklatua erakutsi" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Teklak esleitu" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Txandakatu pantaila osoa" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Esleitu" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Aukeratu ekintza eta sakatu \"Esleitu\"" @@ -193,6 +281,10 @@ msgstr "Mesedez, aukeratu ekintza bat" msgid "Press the key to associate" msgstr "Sakatu esleituko den tekla" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Aukeratu esleituko den ekintza" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Jokoa" @@ -496,7 +588,7 @@ msgstr "~K~endu" msgid "Search in game list" msgstr "Bilatu joko-zerrendan" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Bilatu:" @@ -515,7 +607,7 @@ msgstr "Jokoa kargatu:" msgid "Load" msgstr "Kargatu" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -523,42 +615,42 @@ msgstr "" "Joko detektatzaile masiboa exekutatu nahi al duzu? Honek joko kantitate " "handia gehitu dezake." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM-k ezin izan du zehazturiko direktorioa ireki!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM-k ezin izan du jokorik aurkitu zehazturiko direktorioan!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Jokoa aukeratu:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Benetan ezabatu nahi duzu joko-konfigurazio hau?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 #, fuzzy msgid "Do you want to load saved game?" msgstr "Jokoa kargatu edo gorde nahi duzu?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Joko honek ez du uzten partidak abiarazletik kargatzen." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM-k ezin izan du aukeraturiko jokoa exekutatzeko gai den motorerik " "aurkitu!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Hainbat gehitu..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -932,10 +1024,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Pluginak:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Beste" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -999,28 +1087,38 @@ msgstr "" "nahi baduzu, aurretik beste hizkuntza batera pasa behar duzu." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Ezabatu" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1167,124 +1265,35 @@ msgstr "Lausotua (16bpp)" msgid "Clear value" msgstr "Balioa kendu:" -#: gui/fluidsynth-dialog.cpp:68 -#, fuzzy -msgid "Reverb" -msgstr "Inoiz ez" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -#, fuzzy -msgid "Active" -msgstr "(Aktiboa)" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:118 -#, fuzzy -msgid "Speed:" -msgstr "Ahotsa" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" - -#: gui/fluidsynth-dialog.cpp:217 -#, fuzzy -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "Ziur zaude abiarazlera itzuli nahi duzula?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Motoreak ez da '%s' debug mailarekin bateragarria" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menua" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Saltatu" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Gelditu" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Lerroa saltatu" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Jokoa exekutatzean errorea:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Ezin izan da aukeraturiko jokoa exekutatzeko gai den motorerik aurkitu" @@ -1352,6 +1361,33 @@ msgstr "Erabiltzaileak utzia" msgid "Unknown error" msgstr "Errore ezezaguna" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Herkules berdea" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Herkules anbar-kolorekoa" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Herkules berdea" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Herkules anbar-kolorekoa" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1401,7 +1437,7 @@ msgstr "It~z~uli abiarazlera" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Gorde jokoa:" @@ -1414,7 +1450,7 @@ msgstr "Gorde jokoa:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Gorde" @@ -1451,23 +1487,23 @@ msgstr "~U~tzi" msgid "~K~eys" msgstr "~T~eklak" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Kolore formatua ezin izan da hasieratu." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Ezin izan da aldatu bideo modura : '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Ezin izan da formatu-ratio ezarpena aplikatu." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Ezin izan da pantaila-osoa ezarpena aplikatu." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1481,7 +1517,7 @@ msgstr "" "fitxategiak disko gogorrera kopiatzea.\n" "Jo README fitxategira xehetasunetarako." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1495,7 +1531,7 @@ msgstr "" "izateko. Jo README fitxategira\n" "xehetasunetarako." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1504,7 +1540,7 @@ msgstr "" "Jokoaren egoera kargatzeak huts egin du (%s)! Jo ezazu README-ra oinarrizko " "informaziorako eta laguntza gehiago nola jaso jakiteko." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1514,10 +1550,14 @@ msgstr "" "Hori dela eta, ezegonkorra izan daiteke eta gerta daiteke gordeta izan " "ditzakezun partidan ez ibiltzea ScummVM-ren etorkizuneko bertsioetan." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Jolastu berdin-berdin" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib emuladorea" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emuladorea" @@ -1571,25 +1611,30 @@ msgstr "" "'%s' gogoko soinu gailua ezin da erabili. Ikusi log fitxategia informazio " "gehiagorako." -#: audio/null.h:44 -msgid "No music" -msgstr "Musikarik ez" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga Audio emuladorea" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib emuladorea" +#: audio/null.h:44 +msgid "No music" +msgstr "Musikarik ez" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS emuladorea (INPLEMENTATU GABE)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Audio emuladorea" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Soinua" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1607,6 +1652,149 @@ msgstr "PC bozgoragailuaren emuladorea" msgid "IBM PCjr Emulator" msgstr "IBM PCjr emuladorea" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Audio emuladorea" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Ziur zaude abiarazlera itzuli nahi duzula?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Abiarazlea" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Benetan irten?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Irten" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Ukimen-pantailako 'kolpetxo modua' - Ezker klika" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Ukimen-pantailako 'kolpetxo modua' - Eskuin klika" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Ukimen-pantailako 'kolpetxo modua' - Flotatu (klikik ez)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Bolumen maximoa" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Bolumena igotzen" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Bolumen minimoa" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Bolumena jaisten" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klikatzea gaituta" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klikatzea desgaituta" + +#: backends/events/openpandora/op-events.cpp:174 +#, fuzzy +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Ukimen-pantailako 'kolpetxo modua' - Flotatu (klikik ez)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Irten nahi al duzu?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Touchpad modua desgaituta." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +#, fuzzy +msgid "OpenGL" +msgstr "Ireki" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normala (eskalatu gabe)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normala" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Formatu-ratio zuzenketa gaituta" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Formatu-ratio zuzenketa desgaituta" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Filtro grafiko aktiboa:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Leiho modua" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Teklen esleipena:" @@ -1712,18 +1900,26 @@ msgstr "Kalitate altuko soinua (geldoagoa) (berrabiarazi)" msgid "Disable power off" msgstr "Itzaltzea desgaitu" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Saguko klik-eta-arrastratu modua gaituta." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Saguko klik-eta-arrastratu modua desgaituta." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpad modua gaituta." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad modua desgaituta." @@ -1734,9 +1930,9 @@ msgstr "Klikatzeko modua" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Ezker-klika" @@ -1746,8 +1942,8 @@ msgstr "Erdiko klika" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Eskuin-klika" @@ -1772,40 +1968,6 @@ msgstr "Leihoa" msgid "Minimize" msgstr "Minimizatu" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normala (eskalatu gabe)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normala" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Formatu-ratio zuzenketa gaituta" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Formatu-ratio zuzenketa desgaituta" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Filtro grafiko aktiboa:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Leiho modua" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -#, fuzzy -msgid "OpenGL" -msgstr "Ireki" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1849,15 +2011,6 @@ msgstr "Testua saltatu" msgid "Fast mode" msgstr "Modu bizkorra" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Irten" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Araztailea" @@ -1874,9 +2027,50 @@ msgstr "Teklatu birtuala" msgid "Key mapper" msgstr "Teklen esleipena" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Irten nahi al duzu?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Eskuin-klika behin" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Mugitu bakarrik" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Ihes tekla" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Jokoaren menua" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Teklatu numerikoa erakutsi" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Saguaren kontrola" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Konpartituriko direktorioa:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2124,103 +2318,21 @@ msgstr "" "Ez ahaztu 'tresna-barra ezkutatu' ekintza tekla bati esleitzea inbentario " "osoa ikusteko" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Ziur zaude abiarazlera itzuli nahi duzula?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Abiarazlea" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Benetan irten?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Ukimen-pantailako 'kolpetxo modua' - Ezker klika" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Ukimen-pantailako 'kolpetxo modua' - Eskuin klika" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Ukimen-pantailako 'kolpetxo modua' - Flotatu (klikik ez)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Bolumen maximoa" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Bolumena igotzen" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Bolumen minimoa" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Bolumena jaisten" - -#: backends/events/openpandora/op-events.cpp:174 -#, fuzzy -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Ukimen-pantailako 'kolpetxo modua' - Flotatu (klikik ez)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Eguneraketak bilatzen..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Eskuin-klika behin" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Mugitu bakarrik" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Ihes tekla" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Jokoaren menua" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Teklatu numerikoa erakutsi" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Saguaren kontrola" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klikatzea gaituta" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klikatzea desgaituta" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" @@ -2245,13 +2357,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Jokoa kargatu:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Kargatu" @@ -2663,47 +2775,55 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "" + +#: engines/sci/detection.cpp:394 #, fuzzy msgid "Prefer digital sound effects" msgstr "Soinu efektu berezien bolumena" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 #, fuzzy msgid "Use silver cursors" msgstr "Kurtsore normala" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3619,19 +3739,5 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Roland GS modua gaitu" -#~ msgid "Hercules Green" -#~ msgstr "Herkules berdea" - -#~ msgid "Hercules Amber" -#~ msgstr "Herkules anbar-kolorekoa" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Herkules berdea" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Herkules anbar-kolorekoa" - #~ msgid "Save game failed!" #~ msgstr "Partida gordeak huts egin du!" diff --git a/po/fi_FI.po b/po/fi_FI.po index 9a4cc49da9d..1037843c7e5 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.6.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2012-12-01 19:37+0200\n" "Last-Translator: Toni Saarela \n" "Language-Team: Finnish\n" @@ -53,17 +53,17 @@ msgid "Go up" msgstr "Siirry ylіs" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Peruuta" @@ -84,7 +84,7 @@ msgstr "Nimi:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -101,8 +101,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Haluatko varmasti poistaa tфmфn pelitallennuksen?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -111,8 +111,8 @@ msgstr "Haluatko varmasti poistaa t msgid "Yes" msgstr "Kyllф" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -121,42 +121,97 @@ msgstr "Kyll msgid "No" msgstr "Ei" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Sulje" +#: gui/fluidsynth-dialog.cpp:68 +#, fuzzy +msgid "Reverb" +msgstr "Ei koskaan" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Hiiren klikkaus" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +#, fuzzy +msgid "Active" +msgstr " (Aktiivinen)" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Nфytф nфppфimistі" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Mффritф nфppфimet uudelleen" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Kokoruututilan vaihto" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Valitse toiminto" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Nфppфinkartta" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:118 +#, fuzzy +msgid "Speed:" +msgstr "Puhe" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Muut" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -172,6 +227,39 @@ msgstr "N msgid "OK" msgstr "Tallenna" +#: gui/fluidsynth-dialog.cpp:217 +#, fuzzy +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "Haluatko varmasti palata pelivalitsimeen?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Sulje" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Hiiren klikkaus" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Nфytф nфppфimistі" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Mффritф nфppфimet uudelleen" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Kokoruututilan vaihto" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Nфppфinkartta" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Valitse toiminto ja klikkaa 'Map'" @@ -194,6 +282,10 @@ msgstr "Valitse toiminto" msgid "Press the key to associate" msgstr "Paina haluamaasi nappia" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Valitse toiminto" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Peli" @@ -497,7 +589,7 @@ msgstr "Poista peli..." msgid "Search in game list" msgstr "Etsi peliф listasta" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Etsi:" @@ -516,7 +608,7 @@ msgstr "Lataa peli:" msgid "Load" msgstr "Lataa" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -524,40 +616,40 @@ msgstr "" "Haluatko varmasti lisфtф pelejф alihakemistoineen? Tфmф voi lisфtф suuren " "mффrфn pelejф." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM ei voi avata kyseistф hakemistoa!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM ei lіytфnyt yhtффn peliф kyseisestф hakemistosta!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Valitse peli:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Haluatko varmasti poistaa pelin asetuksineen listalta?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 #, fuzzy msgid "Do you want to load saved game?" msgstr "Haluatko tallentaa vai ladata pelin?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Tфmф peli ei tue pelitallennuksien lataamista pelin ulkopuolelta." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM ei lіytфnyt pelimoottoria joka tukee valittua peliф!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Lisфф monta..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -933,10 +1025,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Pluginien sijainti:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Muut" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -1000,28 +1088,38 @@ msgstr "" "ja yritф sitten uudelleen." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Poista" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1165,124 +1263,35 @@ msgstr "Antialiasoitu (16 bpp)" msgid "Clear value" msgstr "Tyhjennф arvo" -#: gui/fluidsynth-dialog.cpp:68 -#, fuzzy -msgid "Reverb" -msgstr "Ei koskaan" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -#, fuzzy -msgid "Active" -msgstr " (Aktiivinen)" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:118 -#, fuzzy -msgid "Speed:" -msgstr "Puhe" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" - -#: gui/fluidsynth-dialog.cpp:217 -#, fuzzy -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "Haluatko varmasti palata pelivalitsimeen?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Pelimoottori ei tue debug tasoa '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Valikko" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Ohita" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Tauko" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Ohita rivi" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Virhe ajettaessa peliф:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Pelimoottoria joka tukisi valittua peliф ei lіytynyt" @@ -1350,6 +1359,33 @@ msgstr "K msgid "Unknown error" msgstr "Tuntematon virhe" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1401,7 +1437,7 @@ msgstr "Palaa p~e~livalitsimeen" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Tallenna peli:" @@ -1414,7 +1450,7 @@ msgstr "Tallenna peli:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Tallenna" @@ -1451,23 +1487,23 @@ msgstr "~P~eruuta" msgid "~K~eys" msgstr "~N~фppфimet" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Vфriformaattia ei voitu alustaa" -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Videotilan vaihto ei onnistunut:'" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Kuvasuhdeasetusta ei voitu asettaa." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Kokoruututila-asetusta ei voi asettaa." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1480,7 +1516,7 @@ msgstr "" "pelin tiedostot kovalevyllesi. Avaa LUEMINUT\n" "tiedosto ohjeita varten." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1493,7 +1529,7 @@ msgstr "" "ohjelmistoa kфyttфen, jotta musiikit\n" "kuuluvat. Lue ohjeet LUEMINUT tiedostosta." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1502,7 +1538,7 @@ msgstr "" "Pelitilan lataus epфonnistui (%s)! Avaa LUEMINUT tiedosto saadaksesi " "lisфtietoa." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1512,10 +1548,14 @@ msgstr "" "epфvakaa, eivфtkф pelitallennukset vфlttфmфttф toimi tulevissa ScummVM:n " "versioissa." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Pelaa silti" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib emulaattori" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emulaattori" @@ -1569,25 +1609,30 @@ msgstr "" "Ensisijaista ффnilaitetta '%s' ei voida kфyttфф. Avaa lokitiedosto " "saadaksesi lisфtietoja." -#: audio/null.h:44 -msgid "No music" -msgstr "Ei musiikkia" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga Audio emulaattori" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib emulaattori" +#: audio/null.h:44 +msgid "No music" +msgstr "Ei musiikkia" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS emulaattori (EI TOTEUTETTU)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Audio emulaattori" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Ффni" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1605,6 +1650,149 @@ msgstr "PC kaiuttimen emulaattori" msgid "IBM PCjr Emulator" msgstr "IBM PCjr emulaattori" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Audio emulaattori" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Haluatko varmasti palata pelivalitsimeen?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Pelivalitsin" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Haluatko varmasti lopettaa?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Lopeta" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Kosketusnфytіn 'Tap moodi' - vasen klikkaus" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Kosketusnфytіn 'Tap moodi' - oikea klikkaus" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Kosketusnфytіn 'Tap moodi' - ei klikkausta" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maksimi ффnenvoimakkuus" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Nostetaan ффnenvoimakkuutta" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Minimi ффnenvoimakkuus" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Lasketaan ффnenvoimakkuutta" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klikkaus pффllф" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klikkaus pois pффltф" + +#: backends/events/openpandora/op-events.cpp:174 +#, fuzzy +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Kosketusnфytіn 'Tap moodi' - ei klikkausta" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Haluatko lopettaa?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Touchpad tila pois pффltф" + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +#, fuzzy +msgid "OpenGL" +msgstr "Avaa" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normaali (ei skaalausta)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normaali (ei skaalausta)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Kuvasuhteen korjaus pффllф" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Kuvasuhteen korjaus pois pффltф" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Valittu grafiikkafiltteri:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Ikkunoitu tila" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Nфppфinkartta:" @@ -1712,18 +1900,26 @@ msgstr "Korkealuokkainen msgid "Disable power off" msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Hiiren vedф-ja-pudota tila kфytіssф." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Hiiren vedф-ja-pudota tila pois kфytіstф." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchad tila pффllф" +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad tila pois pффltф" @@ -1734,9 +1930,9 @@ msgstr "Klikkaus moodi" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Vasen klikkaus" @@ -1746,8 +1942,8 @@ msgstr "Keskiklikkaus" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Oikea klikkaus" @@ -1772,40 +1968,6 @@ msgstr "Ikkuna" msgid "Minimize" msgstr "Minimoi" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normaali (ei skaalausta)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normaali (ei skaalausta)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Kuvasuhteen korjaus pффllф" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Kuvasuhteen korjaus pois pффltф" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Valittu grafiikkafiltteri:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Ikkunoitu tila" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -#, fuzzy -msgid "OpenGL" -msgstr "Avaa" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1849,15 +2011,6 @@ msgstr "Ohita teksti" msgid "Fast mode" msgstr "Nopea moodi" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Lopeta" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debuggeri" @@ -1874,9 +2027,50 @@ msgstr "Virtuaalinen n msgid "Key mapper" msgstr "Nфppфinmффrittelijф" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Haluatko lopettaa?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Klikkaa oikealla kerran" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Esc nфppфin" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Pelivalikko" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Nфytф keypad" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Ohjaa hiirtф" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Jako:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2125,103 +2319,21 @@ msgstr "" "Muista mффritellф nфppфin tyіkalupalkin piilottamiselle, jotta voit nфhdф " "koko tavaraluettelon" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Haluatko varmasti palata pelivalitsimeen?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Pelivalitsin" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Haluatko varmasti lopettaa?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Kosketusnфytіn 'Tap moodi' - vasen klikkaus" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Kosketusnфytіn 'Tap moodi' - oikea klikkaus" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Kosketusnфytіn 'Tap moodi' - ei klikkausta" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maksimi ффnenvoimakkuus" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Nostetaan ффnenvoimakkuutta" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Minimi ффnenvoimakkuus" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Lasketaan ффnenvoimakkuutta" - -#: backends/events/openpandora/op-events.cpp:174 -#, fuzzy -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Kosketusnфytіn 'Tap moodi' - ei klikkausta" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Tarkista pфivitykset..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Klikkaa oikealla kerran" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Esc nфppфin" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Pelivalikko" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Nфytф keypad" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Ohjaa hiirtф" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klikkaus pффllф" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klikkaus pois pффltф" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Kфytф alkuperфisiф tallenna/lataa valikkoja" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "Kфytф alkuperфisiф tallenna/lataa valikkoja, ScummVM valikoiden sijaan" @@ -2248,13 +2360,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Lataa pelitallenne:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Lataa tallenne" @@ -2656,48 +2768,58 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Kфytф kestopisteissф vфrillisiф grafiikkapalkkeja numeroiden sijaan" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Kфytф kestopisteissф vфrillisiф grafiikkapalkkeja numeroiden sijaan" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Kфytф mieluiten digitaalisia ффnitehosteita." -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "" "Kфytф mieluiten digitaalisia ффnitehosteita synteettisten tehosteiden sijaan." -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Kфytф IMF/Yamaha FB-01:stф MIDI-musiikille" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" "Kфytф IBM:n Music Feature korttia, tai Yamaha FB-01 FM moduulia MIDIlle" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Kфytф CD:n ффntф" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Kфytф CD:n audiota pelin audion sijaan, jos mahdollista." -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Kфytф Windowsin kursoreita" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Kфytф Windowsin kursoreita (pienempiф ja harmaasфvyisiф) DOS kursorien sijaan" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Kфytф hopeisia kursoreita" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "Kфytф vaihtoehtoisia hopeisia kursoreita normaalien kultaisten sijaan" diff --git a/po/fr_FR.po b/po/fr_FR.po index d1480a3c83b..29b59811020 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.8.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" -"PO-Revision-Date: 2015-12-26 16:06+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" +"PO-Revision-Date: 2016-01-25 21:35-0000\n" "Last-Translator: Thierry Crozat \n" "Language-Team: French \n" "Language: Francais\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -"X-Generator: Poedit 1.8.6\n" +"X-Generator: Poedit 1.6.6\n" #: gui/about.cpp:94 #, c-format @@ -53,17 +53,17 @@ msgid "Go up" msgstr "Remonter" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 engines/engine.cpp:483 -#: backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Annuler" @@ -84,7 +84,7 @@ msgstr "Nom :" msgid "Notes:" msgstr "Notes :" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "Ok" @@ -100,8 +100,8 @@ msgstr "Choisir le nom de fichier pour la sauvegarde" msgid "Do you really want to overwrite the file?" msgstr "Voulez-vous vraiment remplacer ce fichier ?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -110,8 +110,8 @@ msgstr "Voulez-vous vraiment remplacer ce fichier ?" msgid "Yes" msgstr "Oui" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -120,42 +120,94 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Fermer" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Rщverb" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Clic de souris" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Actif" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Afficher le clavier" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Piшce :" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Changer l'affectation des touches" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Attщnuation :" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Basculer en plein щcran" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Largeur :" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Sщlectionnez une action р affecter" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Niveau :" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Affecter" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Chorus" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N :" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Vitesse :" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Profondeur :" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Type :" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triangle" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Divers" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolation :" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Aucune (plus rapide)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Linщaire" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Quatriшme degrщ" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Septiшme degrщ" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Rщinitialiser" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Remet tous les rщglages р leurs valeurs par dщfaut." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -171,6 +223,39 @@ msgstr "Affecter" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Voulez-vous vraiment remettre tous les rщglages р leurs valeurs par dщfaut ?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Fermer" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Clic de souris" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Afficher le clavier" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Changer l'affectation des touches" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Basculer en plein щcran" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Affecter" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Selectionez une action et cliquez 'Affecter'" @@ -193,6 +278,10 @@ msgstr "Selectionnez une action" msgid "Press the key to associate" msgstr "Appuyez sur la touche р associer" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Sщlectionnez une action р affecter" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Jeu" @@ -497,7 +586,7 @@ msgstr "~S~upprimer" msgid "Search in game list" msgstr "Recherche dans la liste de jeux" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Filtre :" @@ -516,7 +605,7 @@ msgstr "Charger le jeu :" msgid "Load" msgstr "Charger" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -524,40 +613,40 @@ msgstr "" "Voulez-vous vraiment lancer la dщtection automatique des jeux ? Cela peut " "potentiellement ajouter un grand nombre de jeux." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM n'a pas pu ouvrir le rщpertoire sщlectionnщ." -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM n'a pas trouvщ de jeux dans le rщpertoire sщlectionnщ." -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Choisissez le jeu :" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Voulez-vous vraiment supprimer ce jeu ?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Voulez-vous charger le jeu ?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "" "Le chargement de sauvegarde depuis le lanceur n'est pas supportщ pour ce jeu." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM n'a pas pu trouvщ de moteur pour lancer le jeu sщlectionnщ." -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Ajout Massif..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "Enregistrer..." @@ -932,10 +1021,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Plugins :" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Divers" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -1002,27 +1087,37 @@ msgstr "" "vous voulez l'utiliser vous devez d'abord changer de langue." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "# suivant" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "ajouter" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "Supprimer le caractшre" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "<" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "* Prщ" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "* 123" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "* Abc" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "Enregistreur ou Joueur de Gameplay" @@ -1160,121 +1255,35 @@ msgstr "Anti-cr msgid "Clear value" msgstr "Effacer la valeur" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Rщverb" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Actif" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Piшce :" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Attщnuation :" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Largeur :" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Niveau :" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Chorus" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N :" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Vitesse :" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Profondeur :" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Type :" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triangle" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolation :" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Aucune (plus rapide)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Linщaire" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Quatriшme degrщ" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Septiшme degrщ" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Rщinitialiser" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Remet tous les rщglages р leurs valeurs par dщfaut." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Voulez-vous vraiment remettre tous les rщglages р leurs valeurs par dщfaut ?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Le niveau de debug '%s' n'est pas supportщ par ce moteur de jeu" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Passer" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Mettre en pause" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Passer la phrase" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Erreur lors de l'щxщcution du jeu : " -#: base/main.cpp:554 +#: base/main.cpp:557 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щ" @@ -1342,6 +1351,33 @@ msgstr "Annuler par l'utilisateur" msgid "Unknown error" msgstr "Erreur inconnue" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Vert" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Ambre" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "PC-9821 (256 couleurs)" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "PC-9801 (16 couleurs)" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Vert" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Ambre" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1393,7 +1429,7 @@ msgstr "Retour au ~L~anceur" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Sauvegarde :" @@ -1406,7 +1442,7 @@ msgstr "Sauvegarde :" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Sauver" @@ -1444,23 +1480,23 @@ msgstr "~A~nnuler" msgid "~K~eys" msgstr "~T~ouches" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Impossible d'initialiser le format des couleurs." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Impossible de changer le mode vidщo р: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Impossible d'appliquer la correction du rapport d'aspect." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Impossible d'appliquer l'option plein щcran." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1474,7 +1510,7 @@ msgstr "" "donnщes du jeu sur votre disque dur.\n" "Lisez le fichier README pour plus de dщtails." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1488,7 +1524,7 @@ msgstr "" "logiciel appropriщ.\n" "Lisez le fichier README pour plus de dщtails." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1497,7 +1533,7 @@ msgstr "" "Echec du chargement (%s) ! Lisez le fichier README pour les informations de " "base et les instructions pour obtenir de l'aide supplщmentaire." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1507,10 +1543,14 @@ msgstr "" "complшtement supportщ par ScummVM. Il est donc instable et les sauvegardes " "peuvent ne pas marcher avec une future version de ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Jouer quand mъme" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Щmulateur AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Щmulateur MAME OPL" @@ -1564,25 +1604,29 @@ msgstr "" "Le pщriphщrique audio prщfщrщ '%s' ne peut pas ъtre utilisщ. Voir le fichier " "de log pour plus de dщtails." -#: audio/null.h:44 -msgid "No music" -msgstr "Pas de musique" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Щmulateur Amiga Audio" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Щmulateur AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Pas de musique" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Щmulateur Apple II GS (PAS IMPLЩMENTЩ)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Щmulateur C64 Audio" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "Щmulateur Creative Music System" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "Audio FM Towns" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +msgid "PC-98 Audio" +msgstr "Audio PC-98" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1600,6 +1644,146 @@ msgstr " msgid "IBM PCjr Emulator" msgstr "Щmulateur IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Щmulateur C64 Audio" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Voulez-vous vraiment retourner au Lanceur ?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Lanceur" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Voulez-vous vraiment quitter ?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Quitter" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchscreen 'Tap Mode' - Clic Gauche" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchscreen 'Tap Mode' - Clic Droit" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchscreen 'Tap Mode' - Dщplacer sans cliquer" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Volume Maximum" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Augmentation Volume" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Volume Minimum" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Diminution Volume" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Clic Activщ" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Clic Dщsactivщ" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchscreen 'Tap Mode' - Dщplacer sans cliquer" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Voulez-vous quitter ?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +msgid "Trackpad mode is now" +msgstr "Le mode touchpad est maintenant" + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "activщ" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "dщsactivщ" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "Glissez deux doigts vers la droite pour changer de mode." + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "Le mode glisser-auto est maintenant" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "Glissez trois doigts vers la droite pour changer de mode." + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (sans filtre)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (щchelle d'origine)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Activer la correction du rapport d'aspect" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Dщsactiver la correction du rapport d'aspect" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Mode graphique actif:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Mode Fenъtre" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Affectation des touches:" @@ -1705,18 +1889,26 @@ msgstr "Audio haute qualit msgid "Disable power off" msgstr "Dщsactivщ l'extinction" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Mode souris-cliquer-et-dщplacer activщ" +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Mode souris-cliquer-et-dщplacer dщsactivщ" +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Mode touchpad activщ" +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Mode touchpad dщsactivщ" @@ -1727,9 +1919,9 @@ msgstr "Mode Clic" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Clic Gauche" @@ -1739,8 +1931,8 @@ msgstr "Clic Milieu" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Clic Droit" @@ -1765,39 +1957,6 @@ msgstr "Fen msgid "Minimize" msgstr "Placer dans le Dock" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (щchelle d'origine)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Activer la correction du rapport d'aspect" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Dщsactiver la correction du rapport d'aspect" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Mode graphique actif:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Mode Fenъtre" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (sans filtre)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1841,14 +2000,6 @@ msgstr "Sauter le texte" msgid "Fast mode" msgstr "Mode rapide" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 engines/scumm/dialogs.cpp:192 -#: engines/scumm/help.cpp:83 engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Quitter" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1865,9 +2016,49 @@ msgstr "Clavier virtuel" msgid "Key mapper" msgstr "Affectation des touches" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Voulez-vous quitter ?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Simple Clic Droit" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Dщplacer Uniquement" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Touche d'щchappement" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menu du Jeu" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Afficher le clavier" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Contrєles la Souris" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "[ Donnщes ]" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "[ Ressources ]" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "[ Carte SD ]" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "[ Mщdia ]" + +#: backends/platform/tizen/fs.cpp:275 +msgid "[ Shared ]" +msgstr "[ Partagщ ]" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2116,102 +2307,21 @@ msgstr "" "Noubliez pas d'affecter une touche р l'action 'Cacher Bar d'Outils' pour " "pouvoir voir entiшrement l'inventaire" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Voulez-vous vraiment retourner au Lanceur ?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Lanceur" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Voulez-vous vraiment quitter ?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchscreen 'Tap Mode' - Clic Gauche" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchscreen 'Tap Mode' - Clic Droit" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchscreen 'Tap Mode' - Dщplacer sans cliquer" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Volume Maximum" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Augmentation Volume" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Volume Minimum" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Diminution Volume" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchscreen 'Tap Mode' - Dщplacer sans cliquer" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Recherche des mises р jour..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Simple Clic Droit" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Dщplacer Uniquement" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Touche d'щchappement" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menu du Jeu" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Afficher le clavier" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Contrєles la Souris" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Clic Activщ" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Clic Dщsactivщ" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Dialogues sauvegarde/chargement d'origine" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Utiliser les dialogues sauvegarde/chargement d'origine plutєt que ceux de " @@ -2242,13 +2352,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Charger le jeu :" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Charger" @@ -2669,18 +2779,26 @@ msgstr "" "couleurs pleines" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "Utiliser les graphiques haute rщsolution" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "Utiliser les graphiques haute rщsolution" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Prщfщrer les effets sonores digitaux" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Prщfщrer les effets sonores digitaux plutєt que ceux synthщtisщs" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Utiliser IMF/Yamaha FB-01 pour la sortie MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2688,32 +2806,32 @@ msgstr "" "Utiliser une carte IBM Music Feature ou un module Yamaha FB-01 FM pour la " "sortie MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Utiliser la musique du CD" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" "Utiliser la musique du CD quand elle est disponible au lieu de la musique du " "jeu" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Utiliser les curseurs Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Utiliser les curseurs Windows (plus petits et monochromes) au lieu des " "curseurs DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Utiliser les curseurs argentщs" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "Utiliser les curseurs argentщs au lieu des curseurs normaux dorщs" @@ -3634,20 +3752,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Activer le mode Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Vert" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Ambre" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Vert" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Ambre" - #~ msgid "Save game failed!" #~ msgstr "Щchec de la sauvegarde!" @@ -3664,8 +3768,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Argument de ligne de commande non traitщ" -#~ msgid "FM Towns Emulator" -#~ msgstr "Щmulateur FM Towns" - #~ msgid "Invalid Path" #~ msgstr "Chemin Invalide" diff --git a/po/gl_ES.po b/po/gl_ES.po index 76c76d492bb..0c07c8bcb37 100644 --- a/po/gl_ES.po +++ b/po/gl_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.6.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-02 09:51+0100\n" "Last-Translator: Santiago G. Sanz \n" "Language-Team: Santiago G. Sanz \n" @@ -52,17 +52,17 @@ msgid "Go up" msgstr "Arriba" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Cancelar" @@ -83,7 +83,7 @@ msgstr "Nome:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -100,8 +100,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Seguro que queres eliminar esta partida?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -110,8 +110,8 @@ msgstr "Seguro que queres eliminar esta partida?" msgid "Yes" msgstr "Si" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -120,42 +120,95 @@ msgstr "Si" msgid "No" msgstr "Non" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Pechar" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Reverberaciѓn" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Premer co rato" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Activa" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Mostrar teclado" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Sala:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Asignar teclas" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Humidade:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Activar/desactivar pantalla completa" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Largo:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Elixe unha acciѓn para asignala" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Nivel:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Asignar" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Refrсn" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Velocidade:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Profundidade:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Tipo:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Seno" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triсngulo" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Misc." + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolaciѓn:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Ningunha (mсis rсpido)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineal" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Cuarta orde" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Sщptima orde" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Restablecer" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" +"Restablece a configuraciѓn de FluidSynth aos seus valores predefinidos." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -171,6 +224,40 @@ msgstr "Asignar" msgid "OK" msgstr "Aceptar" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Seguro que queres restablecer a configuraciѓn de FluidSynth aos seus valores " +"predefinidos?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Pechar" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Premer co rato" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Mostrar teclado" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Asignar teclas" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Activar/desactivar pantalla completa" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Asignar" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Selecciona unha acciѓn e preme en Asignar" @@ -193,6 +280,10 @@ msgstr "Selecciona unha acci msgid "Press the key to associate" msgstr "Preme a tecla para asociala" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Elixe unha acciѓn para asignala" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Xogo" @@ -494,7 +585,7 @@ msgstr "Elimina~r~ xogo" msgid "Search in game list" msgstr "Buscar na lista de xogos" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Buscar:" @@ -513,7 +604,7 @@ msgstr "Cargar partida:" msgid "Load" msgstr "Cargar" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -521,39 +612,39 @@ msgstr "" "Queres executar o detector de xogos en masa? Щ posible que se engada un gran " "nњmero de xogos." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM non foi quen de abrir o directorio!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM non foi quen de atopar xogos no directorio!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Elixe o xogo:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Seguro que queres eliminar esta configuraciѓn de xogo?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Queres cargar a partida gardada?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "O xogo non permite cargar partidas dende o iniciador." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM non foi quen de atopar un motor para executar o xogo!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Engadir en masa..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -925,10 +1016,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Camiёo complementos:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Misc." - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -992,28 +1079,38 @@ msgstr "" "deberсs cambiar antes o idioma da interfaz." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Eliminar" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1154,123 +1251,35 @@ msgstr "Antidistorsi msgid "Clear value" msgstr "Limpar valor" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Reverberaciѓn" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Activa" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Sala:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Humidade:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Largo:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Nivel:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Refrсn" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Velocidade:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Profundidade:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Tipo:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Seno" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triсngulo" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolaciѓn:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Ningunha (mсis rсpido)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineal" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Cuarta orde" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Sщptima orde" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Restablecer" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" -"Restablece a configuraciѓn de FluidSynth aos seus valores predefinidos." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Seguro que queres restablecer a configuraciѓn de FluidSynth aos seus valores " -"predefinidos?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "O motor non щ compatible co nivel de depuraciѓn %s" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menњ" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Omitir" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pausa" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Omitir liёa" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Erro de execuciѓn do xogo:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Non se puido atopar un motor para executar o xogo seleccionado" @@ -1338,6 +1347,33 @@ msgstr "Usuario cancelado" msgid "Unknown error" msgstr "Erro descoёecido" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1387,7 +1423,7 @@ msgstr "~V~olver ao Iniciador" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Gardar partida:" @@ -1400,7 +1436,7 @@ msgstr "Gardar partida:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Gardar" @@ -1438,23 +1474,23 @@ msgstr "~C~ancelar" msgid "~K~eys" msgstr "~T~eclas" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Non se puido iniciar o formato de cor." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Non se puido cambiar ao modo de vэdeo: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Non se puido aplicar a configuraciѓn de proporciѓn." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Non se puido aplicar a configuraciѓn de pantalla completa." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1468,7 +1504,7 @@ msgstr "" "os ficheiros de datos ao disco duro. Consulta\n" "o ficheiro README para obter mсis informaciѓn." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1482,7 +1518,7 @@ msgstr "" "do xogo. Consulta o ficheiro README\n" "para obter mсis informaciѓn." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1491,7 +1527,7 @@ msgstr "" "Erro ao cargar (%s)! Consulta o ficheiro README para obter informaciѓn " "bсsica e mсis instruciѓns para acadar asistencia adicional." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1501,10 +1537,14 @@ msgstr "" "Por iso, talvez sexa inestable e os ficheiros de gardado talvez non " "funcionen en futuras versiѓns de ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Iniciar de todos os xeitos" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Emulador de AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Emulador de OPL de MAME" @@ -1558,25 +1598,30 @@ msgstr "" "Non se pode empregar o dispositivo de son preferido (%s). Consulta o " "rexistro para obter mсis informaciѓn." -#: audio/null.h:44 -msgid "No music" -msgstr "Sen mњsica" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Emulador de Amiga Audio" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Emulador de AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Sen mњsica" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Emulador de Apple II GS (non implementado)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Emulador de C64 Audio" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Son" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1594,6 +1639,147 @@ msgstr "Emulador de altofalante de PC" msgid "IBM PCjr Emulator" msgstr "Emulador de IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Emulador de C64 Audio" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Seguro que queres volver ao Iniciador?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Iniciador" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Seguro que queres saэr?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Saэr" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Modo pantalla tсctil: premer botѓn primario" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Modo pantalla tсctil: premer botѓn secundario" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Modo pantalla tсctil: apuntar co rato (sen premer)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Volume mсximo" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Subindo volume" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Volume mэnimo" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Baixando volume" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Premer activado" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Premer desactivado" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Modo pantalla tсctil: apuntar co rato (premer na cruceta)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Queres saэr?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Modo panel tсctil desactivado." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (Sen filtraxe)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (sen escala)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal (sen escala)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Correcciѓn de proporciѓn activada" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Correcciѓn de proporciѓn desactivada" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Filtro de grсficos activo:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Modo en ventс" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Asignaciѓn de teclas:" @@ -1699,18 +1885,26 @@ msgstr "Son de alta calidade (m msgid "Disable power off" msgstr "Desactivar apagado" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Modo premer e arrastrar activado." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Modo premer e arrastrar desactivado." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Modo panel tсctil activado." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Modo panel tсctil desactivado." @@ -1721,9 +1915,9 @@ msgstr "Modo rato" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Botѓn primario" @@ -1733,8 +1927,8 @@ msgstr "Bot #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Botѓn secundario" @@ -1759,39 +1953,6 @@ msgstr "Vent msgid "Minimize" msgstr "Minimizar" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (sen escala)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal (sen escala)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Correcciѓn de proporciѓn activada" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Correcciѓn de proporciѓn desactivada" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Filtro de grсficos activo:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Modo en ventс" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (Sen filtraxe)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1835,15 +1996,6 @@ msgstr "Omitir texto" msgid "Fast mode" msgstr "Modo rсpido" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Saэr" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Depurador" @@ -1860,9 +2012,50 @@ msgstr "Teclado virtual" msgid "Key mapper" msgstr "Asignador de teclas" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Queres saэr?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Botѓn secundario unha vez" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Mover unicamente" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "ESC" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menњ do xogo" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Mostrar teclado numщrico" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Rato" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Disco compartido:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2109,102 +2302,21 @@ msgstr "" "Non esquezas asignar unha tecla с acciѓn Ocultar barra de ferramentas para " "ver o inventario completo" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Seguro que queres volver ao Iniciador?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Iniciador" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Seguro que queres saэr?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Modo pantalla tсctil: premer botѓn primario" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Modo pantalla tсctil: premer botѓn secundario" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Modo pantalla tсctil: apuntar co rato (sen premer)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Volume mсximo" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Subindo volume" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Volume mэnimo" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Baixando volume" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Modo pantalla tсctil: apuntar co rato (premer na cruceta)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Buscar actualizaciѓns..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Botѓn secundario unha vez" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Mover unicamente" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "ESC" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menњ do xogo" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Mostrar teclado numщrico" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Rato" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Premer activado" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Premer desactivado" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Empregar pantallas orixinais de gardado e carga" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Empregar as pantallas orixinais de gardado e carga, no canto das de ScummVM" @@ -2232,13 +2344,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Restaurar xogo:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Restaurar" @@ -2643,18 +2755,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Activar barras de vida" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Activar barras de vida" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Preferir efectos de son dixitais" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Dar preferencia aos efectos de son dixitais no canto dos sintщticos" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Empregar IMF/Yamaha FB-01 para a saэda de MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2662,30 +2784,30 @@ msgstr "" "Empregar unha tarxeta IBM Music Feature ou un mѓdulo de sintetizador Yamaha " "FB-01 FM para a saэda de MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Empregar son de CD" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Empregar son de CD no canto do do xogo, de ser o caso" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Empregar cursores de Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Empregar os cursores de Windows (mсis pequenos e monocromos) no canto dos de " "DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Empregar cursores prateados" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" diff --git a/po/hu_HU.po b/po/hu_HU.po index c13b1f04346..79d92ba7434 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -1,14 +1,13 @@ # Hungarian translation for ScummVM. # Copyright (C) 2010-2016 The ScummVM Team # This file is distributed under the same license as the ScummVM package. -# George Kormendi , 2010. -# +# George Kormendi , 2010, 2016. msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" -"PO-Revision-Date: 2015-12-23 05:02+0100\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" +"PO-Revision-Date: 2016-01-27 06:57+0200\n" "Last-Translator: George Kormendi \n" "Language-Team: Hungarian\n" "Language: Magyar\n" @@ -16,8 +15,8 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" "X-Poedit-SourceCharset: iso-8859-1\n" -"X-Generator: Poedit 1.8.6\n" #: gui/about.cpp:94 #, c-format @@ -54,17 +53,17 @@ msgid "Go up" msgstr "Feljebb" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Mщgse" @@ -85,7 +84,7 @@ msgstr "N msgid "Notes:" msgstr "Megjegyzщs:" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "Ok" @@ -101,8 +100,8 @@ msgstr " msgid "Do you really want to overwrite the file?" msgstr "Biztos hogy felќl akarod эrni a fсjlt?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -111,8 +110,8 @@ msgstr "Biztos hogy fel msgid "Yes" msgstr "Igen" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -121,42 +120,94 @@ msgstr "Igen" msgid "No" msgstr "Nem" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Bezсr" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Forgatсs" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Egщrkattintсs" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktэv" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Billentyћzet beсllэtсsok" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Szoba:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Billentyћk сtсllэtсsa" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Csillapэtсs:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Teljeskщpernyѕ kapcsolѓ" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Szщlessщg:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Vсlassz mћveletet a kiosztсshoz" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Szint:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Kiosztсs" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Kѓrus" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Sebessщg:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Mщlysщg:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Tэpus:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Szэnusz" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Hсromszіg" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Vegyes" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolсciѓ:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Nincs (gyorsabb)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineсris" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Negyedrangњ" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Hetedrangњ" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Reset" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Minden FluidSynth beсllэtсs alapщrtelmezett щrtщkre." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -172,6 +223,39 @@ msgstr "Kioszt msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Biztos visszaсllэtassz minden FluidSynth beсllэtсst alapщrtelmezett щrtщkre?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Bezсr" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Egщrkattintсs" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Billentyћzet beсllэtсsok" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Billentyћk сtсllэtсsa" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Teljeskщpernyѕ kapcsolѓ" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Kiosztсs" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Vсlassz mћveletet щs katt a 'Kiosztсs'-ra" @@ -194,6 +278,10 @@ msgstr "V msgid "Press the key to associate" msgstr "Nyomj egy billentyћt a tсrsэtсshoz" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Vсlassz mћveletet a kiosztсshoz" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Jсtщk" @@ -207,8 +295,7 @@ msgid "" "Short game identifier used for referring to saved games and running the game " "from the command line" msgstr "" -"Rіvid jсtщkazonosэtѓ a jсtщkmentщsekhez щs a jсtщk parancssori " -"futtatсsсhoz" +"Rіvid jсtщkazonosэtѓ a jсtщkmentщsekhez щs a jсtщk parancssori futtatсsсhoz" #: gui/launcher.cpp:199 msgctxt "lowres" @@ -233,8 +320,7 @@ msgid "" "Language of the game. This will not turn your Spanish game version into " "English" msgstr "" -"A jсtщk nyelve. Ne сllэtsd сt a pl. Spanyol nyelvћ jсtщkodat Angol " -"nyelvre" +"A jсtщk nyelve. Ne сllэtsd сt a pl. Spanyol nyelvћ jсtщkodat Angol nyelvre" #: gui/launcher.cpp:212 gui/launcher.cpp:226 gui/options.cpp:87 #: gui/options.cpp:735 gui/options.cpp:748 gui/options.cpp:1208 @@ -497,7 +583,7 @@ msgstr "J msgid "Search in game list" msgstr "Keresщs a jсtщklistсban" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Keresщs:" @@ -516,50 +602,48 @@ msgstr "J msgid "Load" msgstr "Betіltщs" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." msgstr "" -"Biztos hogy futtatod a Masszэv jсtщkdetektort? Ez potenciсlisan sok " -"jсtщkot hozzсad a listсhoz." +"Biztos hogy futtatod a Masszэv jсtщkdetektort? Ez potenciсlisan sok jсtщkot " +"hozzсad a listсhoz." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM nem tudja megnyitni a vсlasztott mappсt!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "A ScummVM nem talсlt egy jсtщkot sem a vсlasztott mappсban!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Vсlassztott jсtщk:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Biztosan tіrіlni akarod ezt a jсtщkkonfigurсciѓt?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Akarod hogy betіltщsem a jсtщkсllсst?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." -msgstr "" -"Ez a jсtщk nem tсmogatja a jсtщkсllсs betіltщst az indэtѓbѓl." +msgstr "Ez a jсtщk nem tсmogatja a jсtщkсllсs betіltщst az indэtѓbѓl." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" -"ScummVM nem talсlt olyan jсtщkmotort ami a vсlasztott jсtщkot " -"tсmogatja!" +"ScummVM nem talсlt olyan jсtщkmotort ami a vсlasztott jсtщkot tсmogatja!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Masszэv mѓd..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "Felvщtel..." @@ -574,8 +658,7 @@ msgstr "Vizsg #: gui/massadd.cpp:262 #, c-format msgid "Discovered %d new games, ignored %d previously added games." -msgstr "" -"%d њj jсtщkot talсltam, %d elѕzѕleg hozzсadott jсtщk kihagyva..." +msgstr "%d њj jсtщkot talсltam, %d elѕzѕleg hozzсadott jсtщk kihagyva..." #: gui/massadd.cpp:266 #, c-format @@ -585,8 +668,7 @@ msgstr "%d Mappa #: gui/massadd.cpp:269 #, c-format msgid "Discovered %d new games, ignored %d previously added games ..." -msgstr "" -"%d њj jсtщkot talсltam, %d elѕzѕleg hozzсadott jсtщk kihagyva..." +msgstr "%d њj jсtщkot talсltam, %d elѕzѕleg hozzсadott jсtщk kihagyva..." #: gui/onscreendialog.cpp:101 gui/onscreendialog.cpp:103 msgid "Stop" @@ -734,8 +816,7 @@ msgid "" "Higher value specifies better sound quality but may be not supported by your " "soundcard" msgstr "" -"Nagyobb щrtщkek jobb hangminѕsщget adnak, de nem minden hangkсrtya " -"tсmogatja" +"Nagyobb щrtщkek jobb hangminѕsщget adnak, de nem minden hangkсrtya tсmogatja" #: gui/options.cpp:820 msgid "GM Device:" @@ -760,8 +841,7 @@ msgstr "SoundFont:" #: gui/options.cpp:854 gui/options.cpp:856 gui/options.cpp:857 msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity" msgstr "" -"Nщhсny hangkсrya, FluidSynth щs Timidyti tсmogatja a SoundFont " -"betіltщsщt" +"Nщhсny hangkсrya, FluidSynth щs Timidyti tсmogatja a SoundFont betіltщsщt" #: gui/options.cpp:856 msgctxt "lowres" @@ -790,8 +870,7 @@ msgstr "MT-32 Eszk #: gui/options.cpp:879 msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output" -msgstr "" -"Roland MT-32/LAPC1/CM32l/CM64 alapщrtelmezett hangeszkіzіk beсllэtсsa" +msgstr "Roland MT-32/LAPC1/CM32l/CM64 alapщrtelmezett hangeszkіzіk beсllэtсsa" #: gui/options.cpp:884 msgid "True Roland MT-32 (disable GM emulation)" @@ -802,8 +881,8 @@ msgid "" "Check if you want to use your real hardware Roland-compatible sound device " "connected to your computer" msgstr "" -"Jelіld be, ha hardveres Roland-Kompatibilis hangeszkіz van csatlakoztatva " -"a gщpedhez щs hasznсlni akarod" +"Jelіld be, ha hardveres Roland-Kompatibilis hangeszkіz van csatlakoztatva a " +"gщpedhez щs hasznсlni akarod" #: gui/options.cpp:886 msgctxt "lowres" @@ -819,8 +898,8 @@ msgid "" "Check if you want to enable patch mappings to emulate an MT-32 on a Roland " "GS device" msgstr "" -"Ellenѕrzщs ha engedщlyezni akarod az emulсlt MT-32 Folt lekщpezщst a " -"Roland GS eszkіzіn" +"Ellenѕrzщs ha engedщlyezni akarod az emulсlt MT-32 Folt lekщpezщst a Roland " +"GS eszkіzіn" #: gui/options.cpp:898 msgid "Don't use Roland MT-32 music" @@ -930,10 +1009,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Plugin Mappa:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Vegyes" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -997,27 +1072,37 @@ msgstr "" "tщmсt, elѕszѕr vсlts сt egy mсsik nyelvre." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "# kіvetkezѕ" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "hozzсad" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "Karakter tіrlщs" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "<" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "* Elѕzѕ" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "* Szсm" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "* Abc" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "Jсtщkmenet felvщtel vagy lejсtszсs" @@ -1155,125 +1240,37 @@ msgstr " msgid "Clear value" msgstr "Щrtщk tіrlщse" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Forgatсs" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktэv" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Szoba:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Csillapэtсs:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Szщlessщg:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Szint:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Kѓrus" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Sebessщg:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Mщlysщg:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Tэpus:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Szэnusz" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Hсromszіg" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolсciѓ:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Nincs (gyorsabb)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineсris" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Negyedrangњ" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Hetedrangњ" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Reset" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Minden FluidSynth beсllэtсs alapщrtelmezett щrtщkre." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Biztos visszaсllэtassz minden FluidSynth beсllэtсst alapщrtelmezett " -"щrtщkre?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "A motor nem tсmogatja a '%s' debug szintet" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menќ" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Tovсbb" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Szќnet" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Sor сtlщpщse" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Hiba a jсtщk futtatсsakor:" -#: base/main.cpp:554 +#: base/main.cpp:557 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" #: common/error.cpp:38 msgid "No error" @@ -1339,6 +1336,33 @@ msgstr "Felhaszn msgid "Unknown error" msgstr "Ismeretlen hiba" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Zіld" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Sсrga" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "PC-9821 (256 Szэn)" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "PC-9801 (16 Szэn)" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Zіld" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Sсrga" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1346,8 +1370,7 @@ msgstr "A '%s' j #: engines/advancedDetector.cpp:318 msgid "Please, report the following data to the ScummVM team along with name" -msgstr "" -"Kщrlek jelezd a ScummVM csapatnak a kіvetkezѕ adatokat, egyќtt a jсtщk" +msgstr "Kщrlek jelezd a ScummVM csapatnak a kіvetkezѕ adatokat, egyќtt a jсtщk" #: engines/advancedDetector.cpp:320 msgid "of the game you tried to add and its version/language/etc.:" @@ -1389,7 +1412,7 @@ msgstr "Visszat #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Jсtщk mentщse:" @@ -1402,7 +1425,7 @@ msgstr "J #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Mentщs" @@ -1413,9 +1436,8 @@ msgid "" "the README for basic information, and for instructions on how to obtain " "further assistance." msgstr "" -"Sajnсlom, a motor jelenleg nem tartalmaz jсtщk kіzbeni sњgѓt. Olvassd " -"el a README-t az alap informсciѓkrѓl, щs hogy hogyan segэthetsz a " -"kщsѕbbiekben." +"Sajnсlom, a motor jelenleg nem tartalmaz jсtщk kіzbeni sњgѓt. Olvassd el a " +"README-t az alap informсciѓkrѓl, щs hogy hogyan segэthetsz a kщsѕbbiekben." #: engines/dialogs.cpp:234 engines/pegasus/pegasus.cpp:393 #, c-format @@ -1440,23 +1462,23 @@ msgstr "~M~ msgid "~K~eys" msgstr "Billentyќk" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Szэn formсtum nincs alkalmazva" -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Videѓmѓd nincs сtсllэtva: ' " -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Mщretarсny korrekciѓ nem vсltozott." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Teljeskщpernyѕs beсllэtсs nincs alkalmazva" -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1470,7 +1492,7 @@ msgstr "" "adatfсjljait a merevlemezedre.\n" "Nщzd meg a README fсjlt a rщszletekщrt." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1484,29 +1506,33 @@ msgstr "" "hogy a jсtщk zenщje hallhatѓ legyen.\n" "Nщzd meg a README fсjlt a rщszletekщrt." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " "and for instructions on how to obtain further assistance." msgstr "" -"(%s) jсtщkсllсs betіltщse nem sikerќlt!. Olvassd el a README-t az " -"alap informсciѓkrѓl, щs hogy hogyan segэthetsz a kщsѕbbiekben." +"(%s) jсtщkсllсs betіltщse nem sikerќlt!. Olvassd el a README-t az alap " +"informсciѓkrѓl, щs hogy hogyan segэthetsz a kщsѕbbiekben." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " "not work in future versions of ScummVM." msgstr "" "FIGYELEM: A jсtщkot amit indэtani akarsz mщg nem teljesen tсmogatotja 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." +"ScummVM. Szсmэts rс hogy nem stabilan fut, щs a mentщsek nem mћkіdnek a " +"jіvѕbeni ScummVM verziѓkkal." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Indэtсs эgy is" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib Emulсtor" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emulсtor" @@ -1525,8 +1551,7 @@ msgid "" "The selected audio device '%s' was not found (e.g. might be turned off or " "disconnected)." msgstr "" -"A kivсlasztott '%s' hangeszkіz nem talсlhatѓ (Lekapcsoltad, vagy " -"kihњztad)." +"A kivсlasztott '%s' hangeszkіz nem talсlhatѓ (Lekapcsoltad, vagy kihњztad)." #: audio/mididrv.cpp:209 audio/mididrv.cpp:221 audio/mididrv.cpp:257 #: audio/mididrv.cpp:272 @@ -1548,8 +1573,7 @@ msgid "" "The preferred audio device '%s' was not found (e.g. might be turned off or " "disconnected)." msgstr "" -"Az elsѕdleges '%s' hangeszkіz nem talсlhatѓ (Lekapcsoltad, vagy " -"kihњztad)." +"Az elsѕdleges '%s' hangeszkіz nem talсlhatѓ (Lekapcsoltad, vagy kihњztad)." #: audio/mididrv.cpp:272 #, c-format @@ -1560,25 +1584,29 @@ msgstr "" "Az elsѕdleges '%s' hangeszkіz nem hasznсlhatѓ. Bѕvebb informсciѓ a " "naplѓfсjlban." +#: audio/mods/paula.cpp:196 +msgid "Amiga Audio Emulator" +msgstr "Amiga Hang Emulсtor" + #: audio/null.h:44 msgid "No music" msgstr "Nincs zene" -#: audio/mods/paula.cpp:196 -msgid "Amiga Audio Emulator" -msgstr "Amiga Audiѓ Emulсtor" - -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib Emulсtor" - #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS Emulсtor (NEM TСMOGATOTT)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Audio Emulсtor" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "Creative Zenei Rendszer Emulсtor" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "FM-Towns Hang" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +msgid "PC-98 Audio" +msgstr "PC-98 Hang" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1596,6 +1624,146 @@ msgstr "PC Speaker Emul msgid "IBM PCjr Emulator" msgstr "IBM PCjr Emulсtor" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Audio Emulсtor" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Biztos hogy visszatщrsz az indэtѓpulthoz?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Indэtѓpult" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Biztos hogy ki akarsz lщpni ?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Kilщpщs" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Щrintѕkщpernyѕ 'Tap Mѓd' - Bal katt" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Щrintѕkщpernyѕ 'Tap Mѓd' - Jobb katt" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Щrintѕkщpernyѕ 'Tap Mѓd' - Lebegѕ (Nincs katt)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maximum Hangerѕ" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Hangerѕ nіvelщse" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Minimum Hangerѕ" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Hangerѕ csіkkentщse" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Kattintсs engedve" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Kattintсs tiltva" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Щrintѕkщpernyѕ 'Щrintщsmѓd' - Lebegѕ (DPad katt)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Ki akarsz lщpni ?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +msgid "Trackpad mode is now" +msgstr "Trackpad mѓd most" + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "BE" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "KI" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "мsd kщt њjjal hogy biztosan vсltson." + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "Auto-hњz mѓdban van" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "мsd hсrom њjjal hogy biztosan vсltson." + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (Nincs szћrщs)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normсl (nincs сtmщretezщs)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normсl (nincs сtmщretezщs)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Mщretarсny korrekciѓ engedщlyezve" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Mщretarсny korrekciѓ letiltva" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktэv grafikus szћrѕk:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Ablakos mѓd" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Billentyћzet kiosztсs:" @@ -1701,18 +1869,26 @@ msgstr "J msgid "Disable power off" msgstr "Leсllэtсs tiltva" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Egщr kattint-щs-hњz mѓd engedщlyezve." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Egщr kattint-щs-hњz mѓd letiltva." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpad mѓd engedщlyezve." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad mѓd letiltva." @@ -1723,9 +1899,9 @@ msgstr "Kattint #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Bal katt" @@ -1735,8 +1911,8 @@ msgstr "K #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Jobb katt" @@ -1761,39 +1937,6 @@ msgstr "Ablak" msgid "Minimize" msgstr "Kis mщret" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normсl (nincs сtmщretezщs)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normсl (nincs сtmщretezщs)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Mщretarсny korrekciѓ engedщlyezve" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Mщretarсny korrekciѓ letiltva" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktэv grafikus szћrѕk:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Ablakos mѓd" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (Nincs szћrщs)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1837,15 +1980,6 @@ msgstr "Sz msgid "Fast mode" msgstr "Gyors mѓd" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Kilщpщs" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Hibakeresѕ" @@ -1862,9 +1996,49 @@ msgstr "Virtu msgid "Key mapper" msgstr "Billentyћ kiosztсs" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Ki akarsz lщpni ?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Jobb katt egyszer" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Csak lщpщs" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Escape gomb" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Jсtщk Menќ" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Kщzi billentyћzet" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Egщr irсnyitсs" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "[ Adat ]" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "[ Forrсsok ]" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "[ SD Kсrtya ]" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "[ Mщdia ]" + +#: backends/platform/tizen/fs.cpp:275 +msgid "[ Shared ]" +msgstr "[ Megosztott ]" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2106,108 +2280,26 @@ msgstr "Kicsiny msgid "" "Don't forget to map a key to 'Hide Toolbar' action to see the whole inventory" msgstr "" -"Ne felejts billentyћt tсrsэtani az 'Eszkіztсr rejtщs' mћvelethez, hogy " -"lсsd a teljes listсt" - -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Biztos hogy visszatщrsz az indэtѓpulthoz?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Indэtѓpult" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Biztos hogy ki akarsz lщpni ?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Щrintѕkщpernyѕ 'Tap Mѓd' - Bal katt" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Щrintѕkщpernyѕ 'Tap Mѓd' - Jobb katt" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Щrintѕkщpernyѕ 'Tap Mѓd' - Lebegѕ (Nincs katt)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maximum Hangerѕ" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Hangerѕ nіvelщse" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Minimum Hangerѕ" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Hangerѕ csіkkentщse" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Щrintѕkщpernyѕ 'Щrintщsmѓd' - Lebegѕ (DPad katt)" +"Ne felejts billentyћt tсrsэtani az 'Eszkіztсr rejtщs' mћvelethez, hogy lсsd " +"a teljes listсt" #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Frissэtщsek keresщse..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Jobb katt egyszer" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Csak lщpщs" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Escape gomb" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Jсtщk Menќ" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Kщzi billentyћzet" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Egщr irсnyitсs" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Kattintсs engedve" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Kattintсs tiltva" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Eredeti ment/tіlt kщpernyѕk hasznсlata" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" -msgstr "" -"Az eredeti mentщs/betіltщs kщpernyѕ hasznсlata a ScummVM kщpek helyett" +msgstr "Az eredeti mentщs/betіltщs kщpernyѕ hasznсlata a ScummVM kщpek helyett" #: engines/agi/detection.cpp:157 msgid "Use an alternative palette" @@ -2218,8 +2310,8 @@ msgid "" "Use an alternative palette, common for all Amiga games. This was the old " "behavior" msgstr "" -"Alternatэv paletta hasznсlat, kіzіs minden Amiga jсtщknсl. Ez egy " -"rщgi megoldсs" +"Alternatэv paletta hasznсlat, kіzіs minden Amiga jсtщknсl. Ez egy rщgi " +"megoldсs" #: engines/agi/detection.cpp:167 msgid "Mouse support" @@ -2229,18 +2321,18 @@ msgstr "Eg msgid "" "Enables mouse support. Allows to use mouse for movement and in game menus." msgstr "" -"Egщrmѓd engщlyezve. Lehetѕvщ teszi az egщrrel mozgatсst jсtщkban " -"щs jсtщkmenќkben." +"Egщrmѓd engщlyezve. Lehetѕvщ teszi az egщrrel mozgatсst jсtщkban щs " +"jсtщkmenќkben." #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Jсtщkmenet visszaсllэtсsa:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Visszaсllэtсs" @@ -2300,13 +2392,12 @@ msgid "" "Press OK to convert them now, otherwise you will be asked again the next " "time you start the game.\n" msgstr "" -"ScummVM rщgi jсtщkmentщst talсlt a Drascula-hoz, ezt сt kell alakэ" -"tani.\n" -"A rщgi jсtщkmentщs forma tіbbщ nem tсmogatott, ezщrt a jсtщk " -"mentщse nem tіltѕdik be ha nem akэtod сt azt.\n" +"ScummVM rщgi jсtщkmentщst talсlt a Drascula-hoz, ezt сt kell alakэtani.\n" +"A rщgi jсtщkmentщs forma tіbbщ nem tсmogatott, ezщrt a jсtщk mentщse nem " +"tіltѕdik be ha nem akэtod сt azt.\n" "\n" -"Nyomj OK-t ha сtalakэtod most, vagy rсkщrdezek њjra ha legkіzelebb " -"elindэtod a jсtщkot.\n" +"Nyomj OK-t ha сtalakэtod most, vagy rсkщrdezek њjra ha legkіzelebb elindэtod " +"a jсtщkot.\n" #: engines/dreamweb/detection.cpp:57 msgid "Use bright palette mode" @@ -2480,8 +2571,7 @@ msgid "" "Do you wish to use this save game file with ScummVM?\n" "\n" msgstr "" -"A kіvetkezѕ eredeti jсtщkmentщs fсjlt talсltam a " -"jсtщkkіnyvtсrban:\n" +"A kіvetkezѕ eredeti jсtщkmentщs fсjlt talсltam a jсtщkkіnyvtсrban:\n" "\n" "%s %s\n" "\n" @@ -2508,8 +2598,7 @@ msgid "" "\n" msgstr "" "%d eredeti jсtщkmentщs fсjlt sikeresen importсlta a\n" -"ScummVM. Ha kщsѕbb manuсlisan akarod importсlni az eredeti " -"jсtщkmentщseket\n" +"ScummVM. Ha kщsѕbb manuсlisan akarod importсlni az eredeti jсtщkmentщseket\n" "meg kell nyitnod a ScummVM debug konzolt щs hasznсld az 'import_savefile' " "utasэtсst.\n" "\n" @@ -2547,8 +2636,7 @@ msgstr "Hall of Records storyboard #: engines/neverhood/detection.cpp:168 msgid "Allows the player to skip past the Hall of Records storyboard scenes" msgstr "" -"Lehetѕsщg, hogy a jсtщkos сtugorja a Hall of Records storyboard " -"сtvezetѕket" +"Lehetѕsщg, hogy a jсtщkos сtugorja a Hall of Records storyboard сtvezetѕket" #: engines/neverhood/detection.cpp:174 msgid "Scale the making of videos to full screen" @@ -2556,9 +2644,7 @@ msgstr "Hogyan k #: engines/neverhood/detection.cpp:175 msgid "Scale the making of videos, so that they use the whole screen" -msgstr "" -"Hogyan kщszќlt videѓk сtmщretezщse, hogy teljeskщpernyѕt " -"hasznсljanak" +msgstr "Hogyan kщszќlt videѓk сtmщretezщse, hogy teljeskщpernyѕt hasznсljanak" #: engines/parallaction/saveload.cpp:133 #, c-format @@ -2586,13 +2672,12 @@ msgid "" "\n" "Press OK to convert them now, otherwise you will be asked next time.\n" msgstr "" -"ScummVM rщgi jсtщkmentщst talсlt a Nippon Safes hez ezt сt kell " -"nevezni.\n" -"A rщgi jсtщkmentщs nem tсmogatott, ezщrt a jсtщk nem tіltѕdik be " -"сtnevezщs nщlkќl..\n" +"ScummVM rщgi jсtщkmentщst talсlt a Nippon Safes hez ezt сt kell nevezni.\n" +"A rщgi jсtщkmentщs nem tсmogatott, ezщrt a jсtщk nem tіltѕdik be сtnevezщs " +"nщlkќl..\n" "\n" -"Nyomj OK-t az сtalakэtсshoz, vagy rсkщrdezzek ha legkіzelebb elindэtod " -"a jсtщkot.\n" +"Nyomj OK-t az сtalakэtсshoz, vagy rсkщrdezzek ha legkіzelebb elindэtod a " +"jсtщkot.\n" #: engines/parallaction/saveload.cpp:319 msgid "ScummVM successfully converted all your savefiles." @@ -2605,8 +2690,8 @@ msgid "" "\n" "Please report to the team." msgstr "" -"ScummVM kiэrt nщhсny figyelmeztetщst a konzolablakba щs nem biztos hogy " -"az іsszes fсjlod сt lett alakэtva.\n" +"ScummVM kiэrt nщhсny figyelmeztetщst a konzolablakba щs nem biztos hogy az " +"іsszes fсjlod сt lett alakэtva.\n" "\n" "Lщgyszэves jelentsd a csapatnak." @@ -2661,52 +2746,58 @@ msgstr "EGA sz #: engines/sci/detection.cpp:375 msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" -"Szэnmodulсciѓ сtugrсsa EGA jсtщkoknсl, grafikсk teljes szэnben " -"lсthatѓk" +"Szэnmodulсciѓ сtugrсsa EGA jсtщkoknсl, grafikсk teljes szэnben lсthatѓk" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "Nagy felbontсsњ grafika engedщlyezщse" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "Nagy felbontсsњ grafika/tartalom engedщlyezщse" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Digitсlis hangeffektusok elѕnyben" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Digitсlis hanghatсsok elѕnyben a szintetizсltakkal szemben" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "IMF/Yamaha FB-01 hasznсlata MIDI kimentre" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" -"IBM Music Feature kсrtya vagy Yamaha FB-01 FM szintetizсtor modul " -"hasznсlata MIDI kimenetre" +"IBM Music Feature kсrtya vagy Yamaha FB-01 FM szintetizсtor modul hasznсlata " +"MIDI kimenetre" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "CD audiѓ hasznсlata" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "CD audiѓ hasznсlata a jсtщkban lщvѕvel szemben, ha elщrhetѕ" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Windows kurzorok hasznсlata" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" -msgstr "" -"Windows kurzorok hasznсlata (kisebb щs monokrѓm) a DOS-osok helyett " +msgstr "Windows kurzorok hasznсlata (kisebb щs monokrѓm) a DOS-osok helyett " -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Ezќst kurzor hasznсlata" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "Alternatэv ezќst kurzorszett hasznсlata, a normсl arany helyett" @@ -3391,10 +3482,9 @@ msgid "" "files for Maniac Mansion have to be in the 'Maniac' directory inside the " "Tentacle game directory, and the game has to be added to ScummVM." msgstr "" -"Сltalсban a Maniac Mansion indulna most. De a mћkіdщshez a Maniac " -"Mansion fсjljainak, a 'Maniac' mappсban kell lenni a Tentacle " -"jсtщkmappсjсn belќl, щs a jсtщkot эgy adja hozzс a ScummVM a " -"listсhoz." +"Сltalсban a Maniac Mansion indulna most. De a mћkіdщshez a Maniac Mansion " +"fсjljainak, a 'Maniac' mappсban kell lenni a Tentacle jсtщkmappсjсn belќl, " +"щs a jсtщkot эgy adja hozzс a ScummVM a listсhoz." #: engines/scumm/players/player_v3m.cpp:129 msgid "" @@ -3443,15 +3533,14 @@ msgstr "'%s' PSX stream #: engines/sword1/animation.cpp:545 engines/sword2/animation.cpp:445 msgid "DXA cutscenes found but ScummVM has been built without zlib" -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:561 engines/sword2/animation.cpp:461 msgid "" "MPEG-2 cutscenes found but ScummVM has been built without MPEG-2 support" msgstr "" -"MPEG-2 сtvezetѕfilmet talсltam, de a ScummVM MPEG-2 tсmogatсs nщlkќl " -"van lefordэtva" +"MPEG-2 сtvezetѕfilmet talсltam, de a ScummVM MPEG-2 tсmogatсs nщlkќl van " +"lefordэtva" #: engines/sword1/animation.cpp:568 engines/sword2/animation.cpp:470 #, c-format @@ -3470,11 +3559,11 @@ msgid "" msgstr "" "ScummVM rщgi jсtщkmentщst talсlt a Broken Sword 1 hez, ezt сt kell " "alakэtani.\n" -"A rщgi jсtщkmentщs nem tсmogatott, ezщrt a jсtщk nem tіltѕdik be " -"сtalakэtсs nщlkќl.\n" +"A rщgi jсtщkmentщs nem tсmogatott, ezщrt a jсtщk nem tіltѕdik be сtalakэtсs " +"nщlkќl.\n" "\n" -"Nyomj OK-t az сtalakэtсshoz, vagy rсkщrdezzek ha legkіzelebb elindэtod " -"a jсtщkot.\n" +"Nyomj OK-t az сtalakэtсshoz, vagy rсkщrdezzek ha legkіzelebb elindэtod a " +"jсtщkot.\n" #: engines/sword1/control.cpp:1232 #, c-format @@ -3501,8 +3590,8 @@ msgstr "Ez a Broken Sword 1 Demo v msgid "" "PSX cutscenes found but ScummVM has been built without RGB color support" msgstr "" -"PSX сtvezetѕfilmet talсltam, de ez a ScummVM RGB szэntсmogatсs nщlkќl " -"van lefordэtva" +"PSX сtvezetѕfilmet talсltam, de ez a ScummVM RGB szэntсmogatсs nщlkќl van " +"lefordэtva" #: engines/sword2/sword2.cpp:79 msgid "Show object labels" @@ -3532,13 +3621,11 @@ msgstr "FPS sz #: engines/wintermute/detection.cpp:59 msgid "Show the current number of frames per second in the upper left corner" msgstr "" -"A jelenlegi mсsodpercenkщnti kщpkocka szсm kijelzщse a bal felsѕ " -"sarokban" +"A jelenlegi mсsodpercenkщnti kщpkocka szсm kijelzщse a bal felsѕ sarokban" #: engines/zvision/detection_tables.h:52 msgid "Use the original save/load screens instead of the ScummVM interface" -msgstr "" -"Hasznсld az eredeti mentщs/tіltщs kщpet a ScummVM felќlet helyett" +msgstr "Hasznсld az eredeti mentщs/tіltщs kщpet a ScummVM felќlet helyett" #: engines/zvision/detection_tables.h:61 msgid "Double FPS" @@ -3570,8 +3657,7 @@ msgstr "Nagyfelbont #: engines/zvision/detection_tables.h:92 msgid "Use MPEG video from the DVD version, instead of lower resolution AVI" -msgstr "" -"MPEG videѓt hasznсl DVD verziѓnсl, a kisebb felbontсsњ AVI helyett" +msgstr "MPEG videѓt hasznсl DVD verziѓnсl, a kisebb felbontсsњ AVI helyett" #~ msgid "EGA undithering" #~ msgstr "EGA szinjavэtсs" @@ -3581,8 +3667,7 @@ msgstr "" #~ msgid "MPEG-2 cutscenes found but ScummVM has been built without MPEG-2" #~ msgstr "" -#~ "MPEG-2 сtvezetѕfilmet talсltam, de a ScummVM MPEG-2 nщlkќl van " -#~ "lefordэtva" +#~ "MPEG-2 сtvezetѕfilmet talсltam, de a ScummVM MPEG-2 nщlkќl van lefordэtva" #~ msgctxt "lowres" #~ msgid "Mass Add..." @@ -3590,8 +3675,7 @@ msgstr "" #~ msgid "" #~ "Turns off General MIDI mapping for games with Roland MT-32 soundtrack" -#~ msgstr "" -#~ "General MIDI lekщpezщs Roland MT-32 zenщs jсtщkokhoz kikapcsolva" +#~ msgstr "General MIDI lekщpezщs Roland MT-32 zenщs jсtщkokhoz kikapcsolva" #~ msgid "Standard (16bpp)" #~ msgstr "Standard (16bpp)" @@ -3623,20 +3707,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Roland GS Mѓd engedщlyezve" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Zіld" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Sсrga" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Zіld" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Sсrga" - #~ msgid "Save game failed!" #~ msgstr "Jсtщk mentщse nem sikerќlt!" @@ -3650,8 +3720,7 @@ msgstr "" #~ msgid "" #~ "Your game version has been detected using filename matching as a variant " #~ "of %s." -#~ msgstr "" -#~ "A felismert jсtщkverziѓd a hasznсlt fсjlnщvvel a %s egy vсltozata." +#~ msgstr "A felismert jсtщkverziѓd a hasznсlt fсjlnщvvel a %s egy vсltozata." #~ msgid "If this is an original and unmodified version, please report any" #~ msgstr "Ha ez egy eredeti nem vсltoztatott verziѓ, kщrlek jelezd minden" @@ -3665,8 +3734,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Parancssori paramщter nem mћkіdik" -#~ msgid "FM Towns Emulator" -#~ msgstr "FM Towns Emulсtor" - #~ msgid "Invalid Path" #~ msgstr "Щrvщnytelen mappa" diff --git a/po/it_IT.po b/po/it_IT.po index 27ac587e2c4..12767d7f3d7 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-03 17:59-0600\n" "Last-Translator: Matteo 'Maff' Angelino \n" "Language-Team: Italian\n" @@ -51,17 +51,17 @@ msgid "Go up" msgstr "Su" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Annulla" @@ -82,7 +82,7 @@ msgstr "Nome:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Sei sicuro di voler eliminare questo salvataggio?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -109,8 +109,8 @@ msgstr "Sei sicuro di voler eliminare questo salvataggio?" msgid "Yes" msgstr "Sь" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -119,42 +119,95 @@ msgstr "S msgid "No" msgstr "No" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Chiudi" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Riverbero" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Clic del mouse" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Attivo" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Mostra tastiera" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Stanza:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Riprogramma tasti" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Smorzamento:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Attiva / disattiva schermo intero" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Larghezza:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Scegli un'azione da mappare" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Livello:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Mappa" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Chorus" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Velocitр:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Profonditр:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Tipo:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Seno" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triangolo" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Varie" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolazione:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Nessuna (piљ veloce)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineare" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Quarto ordine" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Settimo ordine" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Ripristina" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" +"Ripristina tutte le impostazioni di FluidSynth al loro valore predefinito." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -170,6 +223,40 @@ msgstr "Mappa" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Sei sicuro di voler ripristinare tutte le impostazioni di FluidSynth al loro " +"valore predefinito?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Chiudi" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Clic del mouse" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Mostra tastiera" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Riprogramma tasti" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Attiva / disattiva schermo intero" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Mappa" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Seleziona un'azione e clicca 'Mappa'" @@ -192,6 +279,10 @@ msgstr "Seleziona un'azione" msgid "Press the key to associate" msgstr "Premi il tasto da associare" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Scegli un'azione da mappare" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Gioco" @@ -494,7 +585,7 @@ msgstr "~R~im. gioco" msgid "Search in game list" msgstr "Cerca nella lista dei giochi" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Cerca:" @@ -513,7 +604,7 @@ msgstr "Carica gioco:" msgid "Load" msgstr "Carica" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -521,43 +612,43 @@ msgstr "" "Vuoi davvero eseguire il rilevatore di giochi in massa? Potrebbe aggiungere " "un numero enorme di giochi." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM non ha potuto aprire la cartella specificata!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM non ha potuto trovare nessun gioco nella cartella specificata!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Scegli il gioco:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Sei sicuro di voler rimuovere questa configurazione di gioco?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Vuoi caricare il salvataggio?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "" "Questo gioco non supporta il caricamento di salvataggi dalla schermata di " "avvio." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM non ha potuto trovare un motore in grado di eseguire il gioco " "selezionato!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Agg. in massa..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -929,10 +1020,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Perc. plugin:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Varie" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -996,28 +1083,38 @@ msgstr "" "utilizzare questo tema devi prima cambiare la lingua." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Elimina" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1158,123 +1255,35 @@ msgstr "Con antialiasing" msgid "Clear value" msgstr "Cancella" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Riverbero" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Attivo" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Stanza:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Smorzamento:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Larghezza:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Livello:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Chorus" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Velocitр:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Profonditр:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Tipo:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Seno" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triangolo" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolazione:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Nessuna (piљ veloce)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineare" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Quarto ordine" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Settimo ordine" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Ripristina" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" -"Ripristina tutte le impostazioni di FluidSynth al loro valore predefinito." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Sei sicuro di voler ripristinare tutte le impostazioni di FluidSynth al loro " -"valore predefinito?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Il motore non supporta il livello di debug '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Salta" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pausa" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Salta battuta" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Errore nell'esecuzione del gioco:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "" "Impossibile trovare un motore in grado di eseguire il gioco selezionato" @@ -1343,6 +1352,33 @@ msgstr "Utente cancellato" msgid "Unknown error" msgstr "Errore sconosciuto" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules verde" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules ambra" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules verde" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules ambra" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1392,7 +1428,7 @@ msgstr "~V~ai a elenco giochi" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Salva gioco:" @@ -1405,7 +1441,7 @@ msgstr "Salva gioco:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Salva" @@ -1444,23 +1480,23 @@ msgstr "~A~nnulla" msgid "~K~eys" msgstr "~T~asti" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Impossibile inizializzare il formato colore." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Impossibile cambiare la modalitр video: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Impossibile applicare l'impostazione proporzioni" -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Impossibile applicare l'impostazione schermo intero." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1474,7 +1510,7 @@ msgstr "" "sull'hard disk.\n" "Vedi il file README per i dettagli." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1488,7 +1524,7 @@ msgstr "" "la musica del gioco.\n" "Vedi il file README per i dettagli." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1498,7 +1534,7 @@ msgstr "" "per le informazioni di base e per le istruzioni su come ottenere ulteriore " "assistenza." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1508,10 +1544,14 @@ msgstr "" "ScummVM. Ш quindi possibile che sia instabile, e i salvataggi potrebbero non " "funzionare con future versioni di ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Avvia comunque" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Emulatore AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Emulatore OPL MAME" @@ -1565,25 +1605,31 @@ msgstr "" "Il dispositivo audio preferito '%s' non puђ essere usato. Vedi il file log " "per maggiori informazioni." -#: audio/null.h:44 -msgid "No music" -msgstr "Nessuna musica" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Emulatore audio Amiga" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Emulatore AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Nessuna musica" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Emulatore Apple II GS (NON IMPLEMENTATO)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Emulatore audio C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "Emulatore FM Towns" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Audio" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1601,6 +1647,147 @@ msgstr "Emulatore PC Speaker" msgid "IBM PCjr Emulator" msgstr "Emulatore IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Emulatore audio C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Sei sicuro di voler tornare all'elenco giochi?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Elenco giochi" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Sei sicuro di voler uscire?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Esci" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchscreen 'Tap Mode' - Clic sinistro" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchscreen 'Tap Mode' - Clic destro" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchscreen 'Tap Mode' - Passaggio del cursore (nessun clic)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Volume massimo" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Aumento volume" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Volume minimo" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Diminuzione volume" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Clic attivato" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Clic disattivato" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchscreen 'Tap Mode' - Passaggio del cursore (clic DPad)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Sei sicuro di voler uscire?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Modalitр touchpad disattivata." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (senza filtri)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normale (nessun ridimensionamento)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normale (no ridim.)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Correzione proporzioni attivata" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Correzione proporzioni disattivata" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Filtro grafico attivo:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Modalitр finestra" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Mappa tasti:" @@ -1706,18 +1893,26 @@ msgstr "Audio ad alta qualit msgid "Disable power off" msgstr "Disattiva spegnimento in chiusura" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Modalitр mouse-clicca-e-trascina attivata." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Modalitр mouse-clicca-e-trascina disattivata." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Modalitр touchpad attivata." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Modalitр touchpad disattivata." @@ -1728,9 +1923,9 @@ msgstr "Modalit #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Clic sinistro" @@ -1740,8 +1935,8 @@ msgstr "Clic centrale" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Clic destro" @@ -1766,39 +1961,6 @@ msgstr "Finestra" msgid "Minimize" msgstr "Contrai" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normale (nessun ridimensionamento)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normale (no ridim.)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Correzione proporzioni attivata" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Correzione proporzioni disattivata" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Filtro grafico attivo:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Modalitр finestra" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (senza filtri)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1842,15 +2004,6 @@ msgstr "Salta testo" msgid "Fast mode" msgstr "Modalitр veloce" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Esci" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1867,9 +2020,50 @@ msgstr "Tastiera virtuale" msgid "Key mapper" msgstr "Programmatore tasti" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Sei sicuro di voler uscire?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Un clic destro" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Muovi soltanto" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Tasto Esc" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menu di gioco" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Mostra tastierino numerico" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Controllo mouse" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Condivisione:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2116,102 +2310,21 @@ msgstr "" "Non dimenticare di mappare un tasto per l'azione \"Nascondi barra degli " "strumenti\" per vedere l'intero inventario" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Sei sicuro di voler tornare all'elenco giochi?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Elenco giochi" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Sei sicuro di voler uscire?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchscreen 'Tap Mode' - Clic sinistro" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchscreen 'Tap Mode' - Clic destro" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchscreen 'Tap Mode' - Passaggio del cursore (nessun clic)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Volume massimo" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Aumento volume" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Volume minimo" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Diminuzione volume" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchscreen 'Tap Mode' - Passaggio del cursore (clic DPad)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Cerca aggiornamenti..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Un clic destro" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Muovi soltanto" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Tasto Esc" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menu di gioco" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Mostra tastierino numerico" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Controllo mouse" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Clic attivato" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Clic disattivato" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Usa schermate di salvataggio originali" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Usa le schermate originali di salvataggio e caricamento, al posto di quelle " @@ -2240,13 +2353,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Ripristina gioco:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Ripristina" @@ -2651,18 +2764,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Attiva le barre di Hit Point" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Attiva le barre di Hit Point" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Scegli effetti sonori digitali" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Scegli gli effetti sonori digitali al posto di quelli sintetizzati" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Usa IMF/Yamaha FB-01 per output MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2670,30 +2793,30 @@ msgstr "" "Usa una scheda IBM Music Feature o un modulo synth Yamaha FB-01 FM per " "l'output MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Usa audio da CD" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" "Usa l'audio da CD al posto di quello incorporato nel gioco, se disponibile" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Usa cursori di Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Usa i cursori di Windows (piљ piccoli e monocromatici) al posto di quelli DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Usa cursori d'argento" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3620,20 +3743,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Attiva la modalitр Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules verde" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules ambra" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules verde" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules ambra" - #~ msgid "Save game failed!" #~ msgstr "Salvataggio fallito!" @@ -3650,8 +3759,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Argomento della linea di comando non eseguito" -#~ msgid "FM Towns Emulator" -#~ msgstr "Emulatore FM Towns" - #~ msgid "Invalid Path" #~ msgstr "Percorso non valido" diff --git a/po/module.mk b/po/module.mk index 0b326a7f7aa..9104ad8e13e 100644 --- a/po/module.mk +++ b/po/module.mk @@ -2,7 +2,7 @@ POTFILE := $(srcdir)/po/residualvm.pot POFILES := $(wildcard $(srcdir)/po/*.po) CPFILES := $(wildcard $(srcdir)/po/*.cp) -ENGINE_INPUT_POTFILES := $(wildcard $(srcdir)/engines/*/POTFILES) +ENGINE_INPUT_POTFILES := $(sort $(wildcard $(srcdir)/engines/*/POTFILES)) updatepot: cat $(srcdir)/po/POTFILES $(ENGINE_INPUT_POTFILES) | \ xgettext -f - -D $(srcdir) -d residualvm --c++ -k_ -k_s -k_c:1,2c -k_sc:1,2c --add-comments=I18N\ diff --git a/po/nb_NO.po b/po/nb_NO.po index 06d1ef8083c..783f5fba54f 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-11 00:02+0100\n" "Last-Translator: Einar Johan Trјan Sјmхen \n" "Language-Team: somaen \n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Oppover" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Avbryt" @@ -85,7 +85,7 @@ msgstr "Navn:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -102,8 +102,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Vil du virkelig slette dette lagrede spillet?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +112,8 @@ msgstr "Vil du virkelig slette dette lagrede spillet?" msgid "Yes" msgstr "Ja" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +122,94 @@ msgstr "Ja" msgid "No" msgstr "Nei" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Lukk" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Romklang" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Musklikk" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktiv" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Vis tastatur" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Omkoble taster" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Veksle fullskjerm" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Bredde:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Velg en handling for kobling" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Nivх:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Koble" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Hastighet:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Dybde:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Type:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Trekant" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Diverse" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolering:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Ingen (raskest)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Linjцr" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Nullstill" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Nullstill alle FluidSynth-instillinger til standardverdier" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +225,39 @@ msgstr "Koble" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Vil du virkelig nullstille alle FluidSynth-instillinger til standardverdier?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Lukk" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Musklikk" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Vis tastatur" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Omkoble taster" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Veksle fullskjerm" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Koble" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Velg en handling, og trykk 'Koble'" @@ -195,6 +280,10 @@ msgstr "Vennligst velg en handling" msgid "Press the key to associate" msgstr "Trykk tasten som skal kobles" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Velg en handling for kobling" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Spill" @@ -498,7 +587,7 @@ msgstr "~F~jern spill" msgid "Search in game list" msgstr "Sјk i spilliste" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Sјk:" @@ -517,7 +606,7 @@ msgstr " msgid "Load" msgstr "Хpne" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -525,40 +614,40 @@ msgstr "" "Vil du virkelig kjјre flerspill-finneren? Dette kan potensielt legge til et " "stort antall spill." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM kunne ikke хpne den valgte mappen!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM kunne ikke finne noe spill i den valgte mappen!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Velg spill:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Vil du virkelig fjerne denne spillkonfigurasjonen?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Vil du laste et lagret spill?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Dette spillet stјtter ikke lasting av spill fra oppstarteren." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM kunne ikke finne noen motor som kunne kjјre det valgte spillet!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Legg til flere..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -926,10 +1015,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Pluginsti:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Diverse" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -993,28 +1078,38 @@ msgstr "" "temaet, mх du bytte til et annet sprхk fјrst." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Slett" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1155,121 +1250,35 @@ msgstr "Kantutjevnet" msgid "Clear value" msgstr "Tјm verdi" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Romklang" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktiv" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Bredde:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Nivх:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Hastighet:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Dybde:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Type:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Trekant" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolering:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Ingen (raskest)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Linjцr" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Nullstill" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Nullstill alle FluidSynth-instillinger til standardverdier" - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Vil du virkelig nullstille alle FluidSynth-instillinger til standardverdier?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Motoren stјtter ikke debug-nivх '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Meny" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Hopp over" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pause" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Hopp over linje" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Problem ved kjјring av spill:" -#: base/main.cpp:554 +#: base/main.cpp:557 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" @@ -1337,6 +1346,33 @@ msgstr "Brukeren avbr msgid "Unknown error" msgstr "Ukjent feil" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Grјnn" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Oransje" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Grјnn" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Oransje" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1387,7 +1423,7 @@ msgstr "~T~ilbake til oppstarter" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Lagret spill:" @@ -1400,7 +1436,7 @@ msgstr "Lagret spill:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Lagre" @@ -1438,23 +1474,23 @@ msgstr "~A~vbryt" msgid "~K~eys" msgstr "~T~aster" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Kunne ikke initalisere fargeformat." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Kunne ikke veksle til videomodus: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Kunne ikke aktivere aspektrate-innstilling." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Kunne ikke aktivere fullskjermsinnstilling." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1468,7 +1504,7 @@ msgstr "" "datafilene til harddisken din istedet.\n" "Se README-filen for detaljer." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1482,7 +1518,7 @@ msgstr "" "kunne hјre pх spillets musikk.\n" "Se README-filen for detaljer." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1491,7 +1527,7 @@ msgstr "" "Klarte ikke laste spill (%s)! Vennligst se i README-fila for grunnleggende " "informasjon og instruksjoner om hvordan du kan fх mer hjelp." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1501,10 +1537,14 @@ msgstr "" "Derfor er det sannsynlig at det vil vцre ustabilt, og det er ikke sikkert at " "lagrede spill vil fortsette х fungere i fremtidige versjoner av ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Start allikevel" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib Emulator" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emulator" @@ -1558,25 +1598,31 @@ msgstr "" "Den foretrukne lydenheten '%s' kan ikke brukes. Se i logg-filen for mer " "informasjon." -#: audio/null.h:44 -msgid "No music" -msgstr "Ingen musikk" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga Lydemulator" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib Emulator" +#: audio/null.h:44 +msgid "No music" +msgstr "Ingen musikk" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS Emulator (IKKE IMPLEMENTERT)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Lydemulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "FM Towns Emulator" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Lyd" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1594,6 +1640,147 @@ msgstr "PC Speaker Emulator" msgid "IBM PCjr Emulator" msgstr "IBM PCjr Emulator" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Lydemulator" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Vil du virkelig returnere til oppstarteren?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Oppstarter" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Vil du virkelig avslutte?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Avslutt" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchskjerm 'Tapmodus' - Venstreklikk" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchskjerm 'Tapmodus' - Hјyreklikk" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchskjerm 'Tapmodus' - Sveve (Ingen Klikk)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maksimalt Volum" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "иker volum" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Minimalt Volum" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Senker volum" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klikking aktivert" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klikking deaktivert" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchskjerm 'Tapmodus' - Sveve (DPad Klikk)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Vil du avslutte?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Touchpad-modus deaktivert." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (Ingen filtrering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (ingen skalering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal (ingen skalering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Aspekt-rate korrigering aktivert" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Aspekt-rate korrigering deaktivert" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktivt grafikkfilter:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Vindusmodus" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Tastkobling:" @@ -1699,18 +1886,26 @@ msgstr "H msgid "Disable power off" msgstr "Deaktiver strјmsparing" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Mus-klikk-og-dra-modus aktivert." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Mus-klikk-og-dra-modus-deaktivert." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpad-modus aktivert." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad-modus deaktivert." @@ -1721,9 +1916,9 @@ msgstr "Klikkmodus" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Venstreklikk" @@ -1733,8 +1928,8 @@ msgstr "Midtklikk" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Hјyreklikk" @@ -1759,39 +1954,6 @@ msgstr "Vindu" msgid "Minimize" msgstr "Minimer" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (ingen skalering)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal (ingen skalering)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Aspekt-rate korrigering aktivert" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Aspekt-rate korrigering deaktivert" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktivt grafikkfilter:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Vindusmodus" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (Ingen filtrering)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1835,15 +1997,6 @@ msgstr "Hopp over tekst" msgid "Fast mode" msgstr "Rask modus" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Avslutt" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1860,9 +2013,50 @@ msgstr "Virtuelt tastatur" msgid "Key mapper" msgstr "Tastkobler" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Vil du avslutte?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Hјyreklikk щn gang" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Kun Beveg" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "ESC-tast" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Spillmeny" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Vis talltastatur" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Styr Mus" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Delt Ressurs:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2110,102 +2304,21 @@ msgstr "" "Ikke glem х koble en tast til handlingen 'Skjul verktјylinje' for х se hele " "inventaret" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Vil du virkelig returnere til oppstarteren?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Oppstarter" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Vil du virkelig avslutte?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchskjerm 'Tapmodus' - Venstreklikk" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchskjerm 'Tapmodus' - Hјyreklikk" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchskjerm 'Tapmodus' - Sveve (Ingen Klikk)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maksimalt Volum" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "иker volum" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Minimalt Volum" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Senker volum" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchskjerm 'Tapmodus' - Sveve (DPad Klikk)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Sjekk for oppdateringer..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Hјyreklikk щn gang" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Kun Beveg" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "ESC-tast" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Spillmeny" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Vis talltastatur" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Styr Mus" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klikking aktivert" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klikking deaktivert" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Bruk originale lagre/laste-skjermer" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "Bruk de originale lagre/laste-skjermene, istedenfor ScummVM-variantene" @@ -2232,13 +2345,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Gjennopprett spill:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Gjenopprett" @@ -2644,18 +2757,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Aktiver hit point-bar grafer" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Aktiver hit point-bar grafer" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Foretrekk digitale lydeffekter" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Foretrekk digitale lydeffekter fremfor syntetiske" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Bruk IMF/Yamaha-FB-01 for MIDI-output" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2663,28 +2786,28 @@ msgstr "" "Bruk et IBM Music Feature-kort eller en Yamaha FB-01 FM-synthmodul til MIDI " "output" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Bruk CD-lyd" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Bruk CD-lyd istedenfor spillets lyd, hvis tilgjengelig" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Bruk Windows-muspekere" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "Bruk Windows-muspekerene (mindre, og monokrome) isteden" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Bruk sјlvmuspekere" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3596,20 +3719,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Aktiver Roland GS-modus" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Grјnn" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Oransje" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Grјnn" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Oransje" - #~ msgid "Save game failed!" #~ msgstr "Lagret spill:" @@ -3626,8 +3735,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Kommandolinjeargument ikke behandlet" -#~ msgid "FM Towns Emulator" -#~ msgstr "FM Towns Emulator" - #~ msgid "Invalid Path" #~ msgstr "Ugyldig sti" diff --git a/po/nl_NL.po b/po/nl_NL.po index c6a133ce4d6..c72a1f856ab 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.8.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-11-25 20:46+0100\n" "Last-Translator: Ben Castricum \n" "Language-Team: Ben Castricum \n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Ga omhoog" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Annuleren" @@ -85,7 +85,7 @@ msgstr "Naam:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -102,8 +102,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Wilt u dit opgeslagen spel echt verwijderen?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +112,8 @@ msgstr "Wilt u dit opgeslagen spel echt verwijderen?" msgid "Yes" msgstr "Ja" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +122,94 @@ msgstr "Ja" msgid "No" msgstr "Nee" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Sluiten" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Reverb" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Muisklik" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Actief" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Toon toetsenbord" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Kamer:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Toetsen opnieuw koppelen" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Damp:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Volledig scherm in-/uitschakelen" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Breedte:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Selecteer een actie om te koppelen" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Level:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Koppel" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Koor" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Snelheid:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Diepte:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Type:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Driehoek" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Misc" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolatie:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Geen (snelst)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Lineair" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Vierde-order" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Zevende-order" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Reset" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Alle FluidSynth instellingen terugzetten naar de standaard waarden." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +225,40 @@ msgstr "Koppel" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Wilt u echt alle FluidSynth instellingen terugzetten naar de standaard " +"waarden?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Sluiten" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Muisklik" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Toon toetsenbord" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Toetsen opnieuw koppelen" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Volledig scherm in-/uitschakelen" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Koppel" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Selecteer een actie en klik 'Koppel'" @@ -195,6 +281,10 @@ msgstr "Selecteer een actie a.u.b." msgid "Press the key to associate" msgstr "Druk op de te associыren toets" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Selecteer een actie om te koppelen" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Spel" @@ -500,7 +590,7 @@ msgstr "~V~erwijderen" msgid "Search in game list" msgstr "Zoek in lijst met spellen" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Zoeken:" @@ -519,7 +609,7 @@ msgstr "Laad spel:" msgid "Load" msgstr "Laden" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -527,41 +617,41 @@ msgstr "" "Wilt u echt de mass game detector draaien? Dit voegt potentieel een groot " "aantal spellen toe." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM kon de opgegeven map niet openen!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM kon geen enkel spel vinden in de opgegeven map!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Kies het spel:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Wilt u echt deze spelconfiguratie verwijderen?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Wilt u het opgeslagen spel laden?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Dit spel ondersteunt het laden van spelen vanaf het startmenu niet." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM heeft geen engine gevonden die in staat was het geselecteerde spel " "te spelen!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "" -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -937,10 +1027,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Plugins Pad:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Misc" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -1005,28 +1091,38 @@ msgstr "" "dit thema wilt gebruiken dient u eerst een andere taal te selecteren." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Verwijderen" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1167,122 +1263,35 @@ msgstr "Antialiased" msgid "Clear value" msgstr "Veld leegmaken" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Reverb" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Actief" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Kamer:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Damp:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Breedte:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Level:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Koor" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Snelheid:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Diepte:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Type:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Driehoek" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolatie:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Geen (snelst)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Lineair" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Vierde-order" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Zevende-order" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Reset" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Alle FluidSynth instellingen terugzetten naar de standaard waarden." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Wilt u echt alle FluidSynth instellingen terugzetten naar de standaard " -"waarden?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Engine ondersteunt debug level '%s' niet" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Overslaan" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pauze" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Regel overslaan" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Fout tijdens het starten van spel:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "" "Kon geen engine vinden die in staat was het geselecteerde spel te spelen" @@ -1351,6 +1360,33 @@ msgstr "Gebruiker annuleerde" msgid "Unknown error" msgstr "Onbekende fout" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1401,7 +1437,7 @@ msgstr "S~t~artmenu" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Spel opslaan:" @@ -1414,7 +1450,7 @@ msgstr "Spel opslaan:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Opslaan" @@ -1453,24 +1489,24 @@ msgstr "~A~nnuleer" msgid "~K~eys" msgstr "~T~oetsen" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Kon kleurformaat niet initialiseren." # can this be changed into "Could not switch to video mode '%s'"? -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Kon niet schakelen naar videomodus: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Pixelverhoudinginstelling kon niet toegepast worden." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Kon volledig-scherminstelling niet toepassen." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1484,7 +1520,7 @@ msgstr "" "bestanden naar uw harddisk te kopieren.\n" "Voor details kijk in de README." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1497,7 +1533,7 @@ msgstr "" "CD rip programma om te kunnen luisteren naar\n" "het spelmuziek. Voor details kijk in de README." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1507,7 +1543,7 @@ msgstr "" "voor basisinformatie, en voor instructies voor het verkrijgen van verdere " "assistentie." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1518,10 +1554,14 @@ msgstr "" "instabiel is, en opgeslagen spellen zullen mogelijk niet werken in " "toekomstige versies van ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Evengoed starten" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib Emulator" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emulator" @@ -1575,25 +1615,30 @@ msgstr "" "Het voorkeursaudioapparaat '%s' kan niet gebruikt worden. Zie het logbestand " "voor meer informatie." -#: audio/null.h:44 -msgid "No music" -msgstr "Geen muziek" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga Audio Emulator" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib Emulator" +#: audio/null.h:44 +msgid "No music" +msgstr "Geen muziek" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS Emulator (NIET GEЯMPLEMENTEERD)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Audio Emulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Geluid" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1611,6 +1656,147 @@ msgstr "PC Speaker Emulator" msgid "IBM PCjr Emulator" msgstr "IBM PCjr Emulator" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Audio Emulator" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Wilt u echt terug naar het startmenu?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Startmenu" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Wilt u echt stoppen?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Stoppen" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchscreen 'Tap Modus' - Linker klik" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchscreen 'Tap Modus' - Rechter Klik" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchscreen 'Tap Modus' - Zweven (Geen Klik)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maximale Volume" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Volume omhoog" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Minimale Volume" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Volume omlaag" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klikken Aangezet" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klikken Uitgeschakeld" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchscreen 'Tap Modus' - Zweven (DPad Klik)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Wilt u stoppen?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Touchpadmodus uitgeschakeld." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (geen filters)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normaal (niet schalen)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normaal (niet schalen)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Pixelverhoudingcorrectie ingeschakeld" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Pixelverhoudingcorrectie uitgeschakeld" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Actieve grafische filter:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Venstermodus" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Toetskoppeling:" @@ -1716,18 +1902,26 @@ msgstr "Hoge kwaliteit audio (langzamer) (opnieuw opstarten)" msgid "Disable power off" msgstr "Power-off uitschakelen" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Muis-klik-en-sleepmodus aangezet." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Muis-klik-en-sleepmodus uitgezet." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpadmodus ingeschakeld." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpadmodus uitgeschakeld." @@ -1738,9 +1932,9 @@ msgstr "Klik Modus" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Linker Klik" @@ -1750,8 +1944,8 @@ msgstr "Middelste Klik" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Rechter klik" @@ -1776,39 +1970,6 @@ msgstr "Venster" msgid "Minimize" msgstr "Minimaliseer" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normaal (niet schalen)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normaal (niet schalen)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Pixelverhoudingcorrectie ingeschakeld" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Pixelverhoudingcorrectie uitgeschakeld" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Actieve grafische filter:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Venstermodus" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (geen filters)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1852,15 +2013,6 @@ msgstr "Text overslaan" msgid "Fast mode" msgstr "Snelle modus" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Stoppen" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1877,9 +2029,50 @@ msgstr "Virtueel toetsenbord" msgid "Key mapper" msgstr "Toets koppeltool" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Wilt u stoppen?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Rechter klik eenmalig" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Alleen Verplaatsen" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Escape Toets" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Spel Menu" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Toon Toetsenblok" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Muis Besturing" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Share:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2128,102 +2321,21 @@ msgstr "" "Vergeet niet de 'Verberg werkbalk' te koppelen aan een toets om de hele " "inventaris te zien." -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Wilt u echt terug naar het startmenu?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Startmenu" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Wilt u echt stoppen?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchscreen 'Tap Modus' - Linker klik" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchscreen 'Tap Modus' - Rechter Klik" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchscreen 'Tap Modus' - Zweven (Geen Klik)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maximale Volume" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Volume omhoog" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Minimale Volume" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Volume omlaag" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchscreen 'Tap Modus' - Zweven (DPad Klik)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Controleren op updates..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Rechter klik eenmalig" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Alleen Verplaatsen" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Escape Toets" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Spel Menu" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Toon Toetsenblok" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Muis Besturing" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klikken Aangezet" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klikken Uitgeschakeld" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Gebruik originele opslaan/laad schermen" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Gebruik de originele opslaan/laden schermen, in plaats van die van ScummVM" @@ -2252,13 +2364,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Laad opgeslagen spel:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Laad" @@ -2678,18 +2790,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Hitpoints balkgrafieken inschakelen" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Hitpoints balkgrafieken inschakelen" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Geef de voorkeur aan digitale geluidseffecten" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Geef de voorkeur aan digitale geluidseffecten boven gesynthetiseerde" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Gebruik IMF/Yamaha FB-01 voor MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2697,30 +2819,30 @@ msgstr "" "Gebruik een IBM Music Feature kaart of eem Yamaha FB-01 FM synth module voor " "MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Gebruik CD audio" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Gebruik CD audio in plaats van in-game audio, als dat beschikbaar is." -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Gebruik Windows muisaanwijzers" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Gebruik Windows muisaanwijzers (kleiner en monochrome) in plaats van de DOS " "muisaanwijzers" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Gebruik zilveren muisaanwijzers" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" diff --git a/po/nn_NO.po b/po/nn_NO.po index 73cb0b33e2c..d3d2084d3f1 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-11 00:04+0100\n" "Last-Translator: Einar Johan Trјan Sјmхen \n" "Language-Team: somaen \n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Oppover" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Avbryt" @@ -85,7 +85,7 @@ msgstr "Namn:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -102,8 +102,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Vil du verkeleg slette det lagra spelet?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +112,8 @@ msgstr "Vil du verkeleg slette det lagra spelet?" msgid "Yes" msgstr "Ja" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +122,94 @@ msgstr "Ja" msgid "No" msgstr "Nei" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Steng" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Romklang" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Musklikk" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktiv" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Syn Tastatur" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Omkople tastar" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Veksle fullskjerm" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Bredde:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Vel ei handling for kopling:" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Nivх:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Kople" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Hastighet:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Dybde:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Type:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triangel" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Diverse" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolering:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Ingen (raskast)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Linjцr" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Nullstill" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Nullstill alle FluidSynth-instillingar til standardverdiar" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +225,39 @@ msgstr "Kople" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +#, fuzzy +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "Vil du verkeleg slette det lagra spelet?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Steng" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Musklikk" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Syn Tastatur" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Omkople tastar" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Veksle fullskjerm" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Kople" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Vel ei handling, og klikk 'Kople'" @@ -195,6 +280,10 @@ msgstr "Vel ei handling" msgid "Press the key to associate" msgstr "Trykk tasten du vil kople" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Vel ei handling for kopling:" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Spel" @@ -499,7 +588,7 @@ msgstr "~F~jern spel" msgid "Search in game list" msgstr "Sјk i spelliste" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Sјk:" @@ -518,47 +607,47 @@ msgstr " msgid "Load" msgstr "Хpne" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." msgstr "" -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM kunne ikkje хpne den velde mappa!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM kunne ikkje finne noko spel i den velde mappa!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Vel spelet:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Vil du verkeleg fjerne denne spelkonfigurasjonen?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Vil du laste det lagra spelet?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Dette spelet stјttar ikkje хpning av lagra spel frх oppstartaren." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM kunne ikkje finne nokon motor som var i stand til х kјyre det velde " "spelet!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Legg til fleire..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -925,10 +1014,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Pluginsti:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Diverse" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -992,28 +1077,38 @@ msgstr "" "temaet mх du bytte til eit anna sprхk fјrst." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Slett" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1154,121 +1249,35 @@ msgstr "Kantutjevna" msgid "Clear value" msgstr "Tјm verdi" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Romklang" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktiv" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Bredde:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Nivх:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Hastighet:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Dybde:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Type:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triangel" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolering:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Ingen (raskast)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Linjцr" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Nullstill" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Nullstill alle FluidSynth-instillingar til standardverdiar" - -#: gui/fluidsynth-dialog.cpp:217 -#, fuzzy -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "Vil du verkeleg slette det lagra spelet?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Motoren stјttar ikkje debug-nivх '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Meny" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Hopp over" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pause" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Hopp over linje" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Feil under kјyring av spel:" -#: base/main.cpp:554 +#: base/main.cpp:557 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." @@ -1336,6 +1345,33 @@ msgstr "" msgid "Unknown error" msgstr "Ukjend feil" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Grјnn" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Raudgul" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Grјnn" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Raudgul" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1386,7 +1422,7 @@ msgstr "Tilbake til Oppsta~r~tar" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Lagra spel:" @@ -1399,7 +1435,7 @@ msgstr "Lagra spel:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Lagre" @@ -1432,24 +1468,24 @@ msgstr "~A~vbryt" msgid "~K~eys" msgstr "~T~astar" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "" -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Kunne ikkje veksle til videomodus: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 #, fuzzy msgid "Could not apply aspect ratio setting." msgstr "Veksle aspekt-korrigering" -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "" -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1458,7 +1494,7 @@ msgid "" "See the README file for details." msgstr "" -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1467,14 +1503,14 @@ msgid "" "See the README file for details." msgstr "" -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " "and for instructions on how to obtain further assistance." msgstr "" -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1484,10 +1520,14 @@ msgstr "" "ennх. Derfor er det sannsynleg at det er ustabilt, og det er mogleg at lagra " "spel ikkje vil fungere med fremtidige versjonar av ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Start allikevel" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib Emulator" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL emulator" @@ -1533,25 +1573,31 @@ msgid "" "information." msgstr "" -#: audio/null.h:44 -msgid "No music" -msgstr "Ingen musikk" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga Lydemulator" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib Emulator" +#: audio/null.h:44 +msgid "No music" +msgstr "Ingen musikk" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS Emulator (IKKJE IMPLEMENTERT)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Lydemulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "FM Towns Emulator" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Lyd" #: audio/softsynth/mt32.cpp:200 #, fuzzy @@ -1570,6 +1616,155 @@ msgstr "PC Speaker Emulator" msgid "IBM PCjr Emulator" msgstr "IBM PCjr Emulator" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Lydemulator" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Vil du verkeleg gх tilbake til oppstartaren?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Oppstartar" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Vil du verkeleg avslutte?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Avslutt" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +#, fuzzy +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Tap for venstre-klikk, dobbelt-tap for hјgre-klikk" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +#, fuzzy +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Tap for venstre-klikk, dobbelt-tap for hјgre-klikk" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maks Volum" + +#: backends/events/gph/gph-events.cpp:411 +#, fuzzy +msgid "Increasing Volume" +msgstr "Volum" + +#: backends/events/gph/gph-events.cpp:417 +#, fuzzy +msgid "Minimal Volume" +msgstr "Volum" + +#: backends/events/gph/gph-events.cpp:419 +#, fuzzy +msgid "Decreasing Volume" +msgstr "Volum" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +#, fuzzy +msgid "Clicking Enabled" +msgstr "~O~vergangar aktivert" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klikking Deaktivert" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Vil du avslutte?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Deaktivert GFX" + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (Ingen filtrering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (ikkje skaler)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal (ikkje skaler)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +#, fuzzy +msgid "Enabled aspect ratio correction" +msgstr "Aspekt-korrigering" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +#, fuzzy +msgid "Disabled aspect ratio correction" +msgstr "Aspekt-korrigering" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktivt grafikkfilter:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Vindusmodus" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Tastkopling:" @@ -1676,19 +1871,27 @@ msgstr "" msgid "Disable power off" msgstr "Deaktiver strјmsparing" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 #, fuzzy msgid "Touchpad mode enabled." msgstr "~O~vergangar aktivert" +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 #, fuzzy msgid "Touchpad mode disabled." @@ -1700,9 +1903,9 @@ msgstr "Klikkmodus" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Venstreklikk" @@ -1712,8 +1915,8 @@ msgstr "Midtklikk" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Hјgreklikk" @@ -1738,41 +1941,6 @@ msgstr "Vindu" msgid "Minimize" msgstr "Minimer" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (ikkje skaler)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal (ikkje skaler)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -#, fuzzy -msgid "Enabled aspect ratio correction" -msgstr "Aspekt-korrigering" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -#, fuzzy -msgid "Disabled aspect ratio correction" -msgstr "Aspekt-korrigering" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktivt grafikkfilter:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Vindusmodus" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (Ingen filtrering)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1817,15 +1985,6 @@ msgstr "Hopp over tekstlinje" msgid "Fast mode" msgstr "Rask modus" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Avslutt" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1842,9 +2001,53 @@ msgstr "Virtuelt tastatur" msgid "Key mapper" msgstr "Tastkopler" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Vil du avslutte?" +#: backends/platform/tizen/form.cpp:263 +#, fuzzy +msgid "Right Click Once" +msgstr "Hјgreklikk" + +#: backends/platform/tizen/form.cpp:271 +#, fuzzy +msgid "Move Only" +msgstr "Tale" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Escape Tast" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Spelmeny" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Syn taltastatur" + +#: backends/platform/tizen/form.cpp:309 +#, fuzzy +msgid "Control Mouse" +msgstr "Musklikk" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr ", delt ressurs ikkje montert" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2095,111 +2298,21 @@ msgstr "" "Ikkje glјym х kople ein tast til 'Skjul verktјylinje' for х se heile " "inventaret" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Vil du verkeleg gх tilbake til oppstartaren?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Oppstartar" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Vil du verkeleg avslutte?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -#, fuzzy -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Tap for venstre-klikk, dobbelt-tap for hјgre-klikk" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -#, fuzzy -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Tap for venstre-klikk, dobbelt-tap for hјgre-klikk" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maks Volum" - -#: backends/events/gph/gph-events.cpp:411 -#, fuzzy -msgid "Increasing Volume" -msgstr "Volum" - -#: backends/events/gph/gph-events.cpp:417 -#, fuzzy -msgid "Minimal Volume" -msgstr "Volum" - -#: backends/events/gph/gph-events.cpp:419 -#, fuzzy -msgid "Decreasing Volume" -msgstr "Volum" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "SJх etter oppdateringar..." -#: backends/platform/tizen/form.cpp:263 -#, fuzzy -msgid "Right Click Once" -msgstr "Hјgreklikk" - -#: backends/platform/tizen/form.cpp:271 -#, fuzzy -msgid "Move Only" -msgstr "Tale" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Escape Tast" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Spelmeny" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Syn taltastatur" - -#: backends/platform/tizen/form.cpp:309 -#, fuzzy -msgid "Control Mouse" -msgstr "Musklikk" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -#, fuzzy -msgid "Clicking Enabled" -msgstr "~O~vergangar aktivert" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klikking Deaktivert" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Nytt opprinnelege skjermar for lagring/lasting" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" @@ -2226,13 +2339,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Gjenopprett spel:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Gjenopprett" @@ -2625,45 +2738,53 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Foretrekk digitale lydeffekter" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Nytt IMF/Yamaha FB-01 til MIDI-output" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Nytt CD-lyd" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Nytt CD-lyd istaden for spellyd, om den er tilgjengeleg" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Nytt Windospeikarar" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "Nytt windowspeikarane (mindre og monokrome) istaden for DOS-peikarane" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Nytt sјlvpeikarar" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "Nytt det alternative settet med sјlvpeikarar, istaden for dei gylne" @@ -3543,20 +3664,6 @@ msgstr "Nytt det alternative settet med s #~ msgid "Enable Roland GS Mode" #~ msgstr "Aktiver Roland GS-modus" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Grјnn" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Raudgul" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Grјnn" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Raudgul" - #, fuzzy #~ msgid "Save game failed!" #~ msgstr "Lagra spel:" @@ -3571,8 +3678,5 @@ msgstr "Nytt det alternative settet med s #~ msgid "Discovered %d new games." #~ msgstr "Oppdaga %d nye spel." -#~ msgid "FM Towns Emulator" -#~ msgstr "FM Towns Emulator" - #~ msgid "Invalid Path" #~ msgstr "Ugyldig sti" diff --git a/po/pl_PL.po b/po/pl_PL.po index 2bfa4077b9a..572a62a32a7 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-02 12:28+0100\n" "Last-Translator: MichaГ ZiБbkowski \n" "Language-Team: Grajpopolsku.pl \n" @@ -55,17 +55,17 @@ msgid "Go up" msgstr "W gѓrъ" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Anuluj" @@ -86,7 +86,7 @@ msgstr "Nazwa:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -103,8 +103,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Na pewno chcesz skasowaц ten zapis?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -113,8 +113,8 @@ msgstr "Na pewno chcesz skasowa msgid "Yes" msgstr "Tak" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -123,42 +123,94 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Zamknij" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "PogГos" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Klikniъcie" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktywny" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "WyЖwietl klawiaturъ" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Przestrzeё:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Dostosuj klawisze" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "TГumienie:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "WГБcz/wyГБcz peГny ekran" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "SzerokoЖц:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Wybierz akcjъ do przypisania" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Poziom:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Przypisz" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Chorus" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "SzybkoЖц:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "GГъbia:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Typ:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "TrѓjkБt" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "RѓПne" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolacja:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Brak (najszybsze)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Liniowa" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Czterostopniowa" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Siedmiostopniowa" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Reset" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Przywrѓц domyЖlne wartoЖci wszystkich ustawieё FluidSynth." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -174,6 +226,39 @@ msgstr "Przypisz" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Na pewno chcesz przywrѓciц domyЖlne wartoЖci wszystkich ustawieё FluidSynth?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Zamknij" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Klikniъcie" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "WyЖwietl klawiaturъ" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Dostosuj klawisze" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "WГБcz/wyГБcz peГny ekran" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Przypisz" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Wybierz akcjъ i kliknij 'Przypisz'" @@ -196,6 +281,10 @@ msgstr "Wybierz akcj msgid "Press the key to associate" msgstr "WciЖnij klawisz do przypisania" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Wybierz akcjъ do przypisania" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Gra" @@ -497,7 +586,7 @@ msgstr "~U~su msgid "Search in game list" msgstr "Wyszukaj grъ na liЖcie" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Szukaj" @@ -516,46 +605,46 @@ msgstr "Wczytaj gr msgid "Load" msgstr "Wczytaj" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." msgstr "" "Chcesz uruchomiц masowy detektor gier? MoПe dodaц wiele tytuГѓw do listy" -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM nie moПe otworzyц katalogu!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM nie znalazГ Пadnej gry w tym katalogu!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Wybierz grъ:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Na pewno chcesz usunБц tъ grъ z konfiguracji?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Chcesz wczytaц zapis stanu gry?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Ta gra nie wspiera wczytywania z launchera." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM nie znalazГ silnika zdolnego uruchomiц wybranБ grъ!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Masowe dodawanie..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -926,10 +1015,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "ІcieПka wtyczek:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "RѓПne" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -993,28 +1078,38 @@ msgstr "" "najpierw swѓj jъzyk." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Skasuj" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1155,121 +1250,35 @@ msgstr "Wyg msgid "Clear value" msgstr "WyczyЖц" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "PogГos" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktywny" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Przestrzeё:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "TГumienie:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "SzerokoЖц:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Poziom:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Chorus" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "SzybkoЖц:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "GГъbia:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Typ:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "TrѓjkБt" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolacja:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Brak (najszybsze)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Liniowa" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Czterostopniowa" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Siedmiostopniowa" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Reset" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Przywrѓц domyЖlne wartoЖci wszystkich ustawieё FluidSynth." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Na pewno chcesz przywrѓciц domyЖlne wartoЖci wszystkich ustawieё FluidSynth?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Silnik nie wspiera poziomu debugowania '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Pomiё" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Wstrzymaj" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Pomiё liniъ" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "BГБd podczas uruchamiania gry:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Nie udaГo siъ znaleМц silnika zdolnego do uruchomienia zaznaczonej gry" @@ -1337,6 +1346,33 @@ msgstr "Przerwane przez u msgid "Unknown error" msgstr "Nieznany bГБd" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Zielony Hercules" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Bursztynowy Hercules" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Zielony Hercules" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Bursztynowy Hercules" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1386,7 +1422,7 @@ msgstr "~P~owr #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Zapis:" @@ -1399,7 +1435,7 @@ msgstr "Zapis:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Zapisz" @@ -1437,23 +1473,23 @@ msgstr "~A~nuluj" msgid "~K~eys" msgstr "~K~lawisze" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Nie udaГo siъ zainicjalizowaц formatu kolorѓw." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Nie udaГo siъ przeГБczyц w tryb wideo: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Nie udaГo siъ zastosowaц ustawienia formatu obrazu." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Nie udaГo siъ zastosowaц ustawienia peГnego ekranu." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1465,7 +1501,7 @@ msgstr "" "znane problemѓw. StБd zalecane jest skopiowanie plikѓw gry na twardy dysk.\n" "Dalsze informacje sБ dostъpne w pliku README." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1477,7 +1513,7 @@ msgstr "" "skopiowaц na dysk za pomocБ odpowiedniego rippera CD audio.\n" "Dalsze informacje sБ dostъpne w pliku README." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1486,7 +1522,7 @@ msgstr "" "Odczyt stanu gry nie powiѓdГ siъ (%s)! Aby uzyskaц podstawowe informacje " "oraz dowiedzieц jak szukaц dalszej pomocy, sprawdМ plik README." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1496,10 +1532,14 @@ msgstr "" "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." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "WГБcz mimo tego" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Emulator AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Emulator OPL MAME" @@ -1553,25 +1593,31 @@ msgstr "" "Nie moПna uПyц preferowanego urzБdzenia audio '%s'. Dalsze szczegѓГy sБ " "dostъpne w pliku dziennika." -#: audio/null.h:44 -msgid "No music" -msgstr "Brak muzyki" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Emulator dМwiъku Amigi" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Emulator AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Brak muzyki" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Emulator Apple II GS (NIE ZAIMPLEMENTOWANY)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Emulator dМwiъku C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "Emulator FM Towns" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "DМwiъk" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1589,6 +1635,147 @@ msgstr "Emulator brz msgid "IBM PCjr Emulator" msgstr "Emulator IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Emulator dМwiъku C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Na pewno chcesz powrѓciц do launchera?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Launcher" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Na pewno chcesz wyjЖц?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Zakoёcz" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Dotkniъcie ekranu - klikniъcie LPM" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Dotkniъcie ekranu - klikniъcie PPM" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Dotkniъcie ekranu - przytrzymanie (brak klikniъcia)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Maksymalna gГoЖnoЖц" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Zwiъkszenie gГoЖnoЖci" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Minimalna gГoЖnoЖц" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Zmniejszenie gГoЖnoЖci" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klikanie wГБczone" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klikanie wyГБczone" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Dotkniъcie ekranu - przytrzymanie (krzyПak klika)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Chcesz wyjЖц?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Tryb touchpada wyГБczony." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (bez filtrowania)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "ZwykГy (bez skalowania)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "ZwykГy (bez skalowania)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "WГБczono korekcjъ formatu obrazu" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "WyГБczono korekcjъ formatu obrazu" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktywny filtr graficzny:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Okno" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Klawisze:" @@ -1694,18 +1881,26 @@ msgstr "D msgid "Disable power off" msgstr "Nie wyГБczaj zasilania" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "WГБczono tryb kliknij i przeciБgaj." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "WyГБczono tryb kliknij i przeciБgaj." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Tryb touchpada wГБczony." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Tryb touchpada wyГБczony." @@ -1716,9 +1911,9 @@ msgstr "Tryb klikania" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Klikniъcie LPM" @@ -1728,8 +1923,8 @@ msgstr " #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Klikniъcie PPM" @@ -1754,39 +1949,6 @@ msgstr "Okno" msgid "Minimize" msgstr "Miniaturka" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "ZwykГy (bez skalowania)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "ZwykГy (bez skalowania)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "WГБczono korekcjъ formatu obrazu" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "WyГБczono korekcjъ formatu obrazu" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktywny filtr graficzny:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Okno" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (bez filtrowania)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1830,15 +1992,6 @@ msgstr "Pomi msgid "Fast mode" msgstr "Tryb szybki" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Zakoёcz" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debugger" @@ -1855,9 +2008,50 @@ msgstr "Wirtualna klawiatura" msgid "Key mapper" msgstr "Mapper klawiszy" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Chcesz wyjЖц?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Pojedyncze klikniъcie PPM" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Tylko ruch" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Przycisk wyjЖcia" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menu gry" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "PokaП klawiaturъ" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Steruj myszkБ" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "UdziaГ:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2102,102 +2296,21 @@ msgstr "" "Nie zapomnij przypisaц klawisza 'Ukryj pasek narzъdzi', by widzieц caГy " "ekwipunek" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Na pewno chcesz powrѓciц do launchera?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Launcher" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Na pewno chcesz wyjЖц?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Dotkniъcie ekranu - klikniъcie LPM" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Dotkniъcie ekranu - klikniъcie PPM" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Dotkniъcie ekranu - przytrzymanie (brak klikniъcia)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Maksymalna gГoЖnoЖц" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Zwiъkszenie gГoЖnoЖci" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Minimalna gГoЖnoЖц" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Zmniejszenie gГoЖnoЖci" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Dotkniъcie ekranu - przytrzymanie (krzyПak klika)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "SprawdМ aktualizacjъ..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Pojedyncze klikniъcie PPM" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Tylko ruch" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Przycisk wyjЖcia" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menu gry" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "PokaП klawiaturъ" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Steruj myszkБ" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klikanie wГБczone" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klikanie wyГБczone" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "UПyj oryginalnych ekranѓw odczytu/zapisu" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "UПyj oryginalnych ekranѓw odczytu/zapisu zamiast tych ze ScummVM" @@ -2224,13 +2337,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Wznѓw grъ:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Wznѓw" @@ -2632,18 +2745,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "WГБcz histogramy punktѓw Пycia" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "WГБcz histogramy punktѓw Пycia" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Preferuj cyfrowe efekty dМwiъkowe" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Preferuj cyfrowe efekty dМwiъkowe zamiast syntezowanych" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "UПyj IMF/Yamaha FB-01 dla wyjЖcia MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2651,29 +2774,29 @@ msgstr "" "UПyj karty IBM Music Feature lub moduГu syntezy FM Yamaha FB-01 dla wyjЖcia " "MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "UПyj CD audio" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "UПyj CD audio zamiast muzyki w grze, jeЖli jest dostъpne" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "UПyj windowsowych kursorѓw" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "UПyj windowsowych kursorѓw (mniejsze i monochromatyczne) zamiast DOS-owych" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "UПyj srebrnych kursorѓw" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3597,20 +3720,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "WГБcz tryb Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Zielony Hercules" - -#~ msgid "Hercules Amber" -#~ msgstr "Bursztynowy Hercules" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Zielony Hercules" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Bursztynowy Hercules" - #~ msgid "Save game failed!" #~ msgstr "Nie udaГo siъ zapisaц stanu gry!" @@ -3627,8 +3736,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Argument wiersza poleceё nie zostaГ przetworzony" -#~ msgid "FM Towns Emulator" -#~ msgstr "Emulator FM Towns" - #~ msgid "Invalid Path" #~ msgstr "NiewГaЖciwa ЖcieПka" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5ab75cf0a94..fcc354285f9 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2011-10-21 21:30-0300\n" "Last-Translator: Saulo Benigno \n" "Language-Team: ScummBR (www.scummbr.com) \n" @@ -56,17 +56,17 @@ msgid "Go up" msgstr "Acima" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Cancelar" @@ -87,7 +87,7 @@ msgstr "Nome:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -104,8 +104,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Vocъ realmente quer excluir este jogo salvo?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -114,8 +114,8 @@ msgstr "Voc msgid "Yes" msgstr "Sim" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -124,43 +124,97 @@ msgstr "Sim" msgid "No" msgstr "Nуo" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Fechar" - -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Clique do mouse" - -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Mostrar teclado" - -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Remapear teclas" - -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 +#: gui/fluidsynth-dialog.cpp:68 #, fuzzy -msgid "Toggle fullscreen" -msgstr "Habilita Tela Cheia" +msgid "Reverb" +msgstr "Nunca" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Selecione uma aчуo para mapear" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +#, fuzzy +msgid "Active" +msgstr "(Ativo)" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Mapear" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:118 +#, fuzzy +msgid "Speed:" +msgstr "Voz" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Outros" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -176,6 +230,40 @@ msgstr "Mapear" msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +#, fuzzy +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "Vocъ realmente deseja voltar para o menu principal?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Fechar" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Clique do mouse" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Mostrar teclado" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Remapear teclas" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +#, fuzzy +msgid "Toggle fullscreen" +msgstr "Habilita Tela Cheia" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Mapear" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Selecione uma aчуo e clique 'Mapear'" @@ -198,6 +286,10 @@ msgstr "Por favor selecione uma a msgid "Press the key to associate" msgstr "Pressione a tecla para associar" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Selecione uma aчуo para mapear" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Jogo" @@ -501,7 +593,7 @@ msgstr "~R~emover Jogo" msgid "Search in game list" msgstr "Pesquisar na lista de jogos" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Pesquisar:" @@ -520,7 +612,7 @@ msgstr "Carregar jogo:" msgid "Load" msgstr "Carregar" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -528,42 +620,42 @@ msgstr "" "Vocъ realmente deseja adicionar vсrios jogos ao mesmo tempo? Isso poderс " "resultar em uma adiчуo gigantesca de jogos." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM nуo conseguiu abrir a pasta especificada!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM nуo encontrou nenhum jogo na pasta especificada!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Escolha o jogo:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Vocъ deseja realmente remover a configuraчуo deste jogo?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 #, fuzzy msgid "Do you want to load saved game?" msgstr "Vocъ deseja carregar ou salvar o jogo?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Este jogo nуo suporta abrir jogos a partir do menu principal." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM nуo conseguiu encontrar qualquer programa capaz de rodar o jogo " "selecionado!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Multi-Adiчуo..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -938,10 +1030,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Pasta de Plugins:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Outros" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -1005,28 +1093,38 @@ msgstr "" "este tema vocъ precisa mudar para outro idioma." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Excluir" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1174,124 +1272,35 @@ msgstr "Anti-Serrilhamento (16bpp)" msgid "Clear value" msgstr "Limpar valor" -#: gui/fluidsynth-dialog.cpp:68 -#, fuzzy -msgid "Reverb" -msgstr "Nunca" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -#, fuzzy -msgid "Active" -msgstr "(Ativo)" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:118 -#, fuzzy -msgid "Speed:" -msgstr "Voz" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" - -#: gui/fluidsynth-dialog.cpp:217 -#, fuzzy -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "Vocъ realmente deseja voltar para o menu principal?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Esse programa nуo suporta o nэvel de debug '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Menu" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Pular" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Pausar" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Pula linha" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Erro ao executar o jogo:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "" "Nуo foi possэvel encontrar qualquer programa capaz de rodar o jogo " @@ -1361,6 +1370,33 @@ msgstr "Usu msgid "Unknown error" msgstr "Erro desconhecido" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Green" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Amber" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Green" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Amber" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1411,7 +1447,7 @@ msgstr "~V~oltar ao menu" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Salvar jogo:" @@ -1424,7 +1460,7 @@ msgstr "Salvar jogo:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Salvar" @@ -1463,23 +1499,23 @@ msgstr "~C~ancelar" msgid "~K~eys" msgstr "~T~eclas" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Nуo foi possэvel inicializar o formato de cor." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Nуo foi possэvel alternar o modo de vэdeo atual:" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Nуo foi possэvel aplicar a correчуo de proporчуo" -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Nуo foi possэvel aplicar a configuraчуo de tela cheia." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1493,7 +1529,7 @@ msgstr "" "os arquivos de dados para o disco rэgido.\n" "Consulte o arquivo README para mais detalhes." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1507,7 +1543,7 @@ msgstr "" "para ouvir a mњsica do jogo.\n" "Consulte o arquivo README para mais detalhes." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, fuzzy, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1517,7 +1553,7 @@ msgstr "" "Por favor, consulte o README para obter informaчѕes bсsicas, e para obter " "instruчѕes sobre como obter assistъncia adicional." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1527,10 +1563,14 @@ msgstr "" "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." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Iniciar de qualquer maneira" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Emulador AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Emulador MAME OPL" @@ -1584,25 +1624,31 @@ msgstr "" "O dispositivo de сudio preferido '%s' nуo pode ser usado. Veja o arquivo de " "log para mais informaчѕes." -#: audio/null.h:44 -msgid "No music" -msgstr "Sem mњsica" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Emulador Som Amiga" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Emulador AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Sem mњsica" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Emulador Apple II GS (NУO IMPLEMENTADO)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Emulador Som C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "Emulador FM Towns" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Сudio" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1620,6 +1666,149 @@ msgstr "Emulador PC Speaker" msgid "IBM PCjr Emulator" msgstr "Emulador IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Emulador Som C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Vocъ realmente deseja voltar para o menu principal?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Menu principal" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Vocъ realmente deseja sair?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Sair" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchscreen 'Modo Toque' - Clique Esquerdo" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchscreen 'Modo Toque' - Clique Direito" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchscreen 'Modo Toque' - Acima (Sem Clicar)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Volume mсximo" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Aumentando Volume" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Volume mэnimo" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Diminuindo Volume" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Clicando Habilitado" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Clicando Desabilitado" + +#: backends/events/openpandora/op-events.cpp:174 +#, fuzzy +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchscreen 'Modo Toque' - Acima (Sem Clicar)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Vocъ deseja sair ?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Modo Touchpad desligado." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +#, fuzzy +msgid "OpenGL" +msgstr "Abrir" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normal (sem escala)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normal (sem escala)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Correчуo de proporчуo habilitada" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Correчуo de proporчуo desabilitada" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Ativa os filtros grсficos" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Modo janela" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Mapa de Teclas:" @@ -1726,18 +1915,26 @@ msgstr "Som de alta qualidade (mais lento) (reiniciar)" msgid "Disable power off" msgstr "Desativar desligamento" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Modo clique-e-arraste do mouse ligado." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Modo clique-e-arraste do mouse desligado." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Modo Touchpad ligado." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Modo Touchpad desligado." @@ -1748,9 +1945,9 @@ msgstr "" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Clique com o botуo esquerdo" @@ -1761,8 +1958,8 @@ msgstr "Item do meio na esquerda" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Clique com o botуo direito" @@ -1787,40 +1984,6 @@ msgstr "Janela" msgid "Minimize" msgstr "Minimizar" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normal (sem escala)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normal (sem escala)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Correчуo de proporчуo habilitada" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Correчуo de proporчуo desabilitada" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Ativa os filtros grсficos" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Modo janela" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -#, fuzzy -msgid "OpenGL" -msgstr "Abrir" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1864,15 +2027,6 @@ msgstr "Pular texto" msgid "Fast mode" msgstr "Modo rсpido" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Sair" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Depurador" @@ -1889,9 +2043,50 @@ msgstr "Teclado virtual" msgid "Key mapper" msgstr "Mapeador de Teclas" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Vocъ deseja sair ?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Clique com o botуo direito apenas uma vez" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Apenas mover" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Tecla Escape" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Menu do jogo" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Mostrar teclado" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Controle do Mouse" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Compartilhamento:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2139,103 +2334,21 @@ msgstr "" "Nуo se esqueчa de mapear uma tecla para \"Ocultar a barra de ferramentas\" " "para ver todo o seu inventсrio" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Vocъ realmente deseja voltar para o menu principal?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Menu principal" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Vocъ realmente deseja sair?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchscreen 'Modo Toque' - Clique Esquerdo" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchscreen 'Modo Toque' - Clique Direito" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchscreen 'Modo Toque' - Acima (Sem Clicar)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Volume mсximo" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Aumentando Volume" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Volume mэnimo" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Diminuindo Volume" - -#: backends/events/openpandora/op-events.cpp:174 -#, fuzzy -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchscreen 'Modo Toque' - Acima (Sem Clicar)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Procurar por Atualizaчѕes..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Clique com o botуo direito apenas uma vez" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Apenas mover" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Tecla Escape" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Menu do jogo" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Mostrar teclado" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Controle do Mouse" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Clicando Habilitado" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Clicando Desabilitado" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" @@ -2260,13 +2373,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Restaurar jogo:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Restaurar" @@ -2689,47 +2802,55 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "" + +#: engines/sci/detection.cpp:394 #, fuzzy msgid "Prefer digital sound effects" msgstr "Volume dos efeitos sonoros especiais" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 #, fuzzy msgid "Use silver cursors" msgstr "Cursor normal" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3651,20 +3772,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Ligar modo Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Green" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Amber" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Green" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Amber" - #~ msgid "Save game failed!" #~ msgstr "Falha ao salvar jogo!" @@ -3681,8 +3788,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Linha de comando nуo processada" -#~ msgid "FM Towns Emulator" -#~ msgstr "Emulador FM Towns" - #~ msgid "Invalid Path" #~ msgstr "Pasta invсlida" diff --git a/po/ru_RU.po b/po/ru_RU.po index fae8ff711f6..44d8f1d58d7 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.8.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2015-11-06 09:23+0300\n" "Last-Translator: Eugene Sandulenko \n" "Language-Team: Russian\n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Вверх" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Отмена" @@ -85,25 +85,24 @@ msgstr " msgid "Notes:" msgstr "Заметки:" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "Ok" #: gui/filebrowser-dialog.cpp:49 msgid "Choose file for loading" -msgstr "" +msgstr "Выберите файл для загрузки" #: gui/filebrowser-dialog.cpp:49 msgid "Enter filename for saving" -msgstr "" +msgstr "Введите имя файла для записи" #: gui/filebrowser-dialog.cpp:132 -#, fuzzy msgid "Do you really want to overwrite the file?" -msgstr "Вы действительно хотите удалить эту запись?" +msgstr "Вы действительно хотите перезаписать этот файл?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +111,8 @@ msgstr " msgid "Yes" msgstr "Да" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +121,94 @@ msgstr " msgid "No" msgstr "Нет" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Закрыть" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Реверберация" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Клик мышью" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Активно" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Показать клавиатуру" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Комната:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Переназначить клавиши" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Влажность:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Переключение на весь экран" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Ширина:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Выберите действие для назначения" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Уровень:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Назначить" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Хор" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Скорость:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Глубина:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Тип:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Синусоида" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Треугольная" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Разное" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Интерполяция:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Нет (быстрый)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Линейная" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Четвертого порядка" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Седьмого порядка" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Сброс" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Сбросить все установки FluidSynth в значения по умолчанию." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +224,40 @@ msgstr " msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Вы действительно хотите сбросить все установки FluidSynth в значения по " +"умолчанию?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Закрыть" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Клик мышью" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Показать клавиатуру" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Переназначить клавиши" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Переключение на весь экран" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Назначить" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Выберите действие и кликните 'Назначить'" @@ -195,6 +280,10 @@ msgstr " msgid "Press the key to associate" msgstr "Нажмите клавишу для назначения" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Выберите действие для назначения" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Игра" @@ -497,7 +586,7 @@ msgstr "~ msgid "Search in game list" msgstr "Поиск в списке игр" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Поиск:" @@ -516,7 +605,7 @@ msgstr " msgid "Load" msgstr "Загрузить" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -524,39 +613,39 @@ msgstr "" "Вы действительно хотите запустить детектор всех игр? Это потенциально может " "добавить большое количество игр." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM не может открыть указанную директорию!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM не может найти игру в указанной директории!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Выберите игру:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Вы действительно хотите удалить настройки для этой игры?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Вы хотите загрузить игру?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Эта игра не поддерживает загрузку сохранений через главное меню." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM не смог найти движок для запуска выбранной игры!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Много игр..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "Запись..." @@ -929,10 +1018,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Путь к плагинам:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Разное" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -996,27 +1081,37 @@ msgstr "" "использовать эту тему, вам необходимо сначала переключиться на другой язык." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "# след" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "доб" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "Удалить символ" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "<" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "* Pre" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "Воспроизвести или записать игровой процесс" @@ -1154,122 +1249,35 @@ msgstr " msgid "Clear value" msgstr "Очистить значение" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Реверберация" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Активно" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Комната:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Влажность:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Ширина:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Уровень:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Хор" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Скорость:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Глубина:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Тип:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Синусоида" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Треугольная" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Интерполяция:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Нет (быстрый)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Линейная" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Четвертого порядка" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Седьмого порядка" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Сброс" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Сбросить все установки FluidSynth в значения по умолчанию." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Вы действительно хотите сбросить все установки FluidSynth в значения по " -"умолчанию?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Движок не поддерживает уровень отладки '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Меню" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Пропустить" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Пауза" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Пропустить строку" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Ошибка запуска игры:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Не могу найти движок для запуска выбранной игры" @@ -1337,6 +1345,33 @@ msgstr " msgid "Unknown error" msgstr "Неизвестная ошибка" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Hercules Зелёный" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Hercules Янтарный" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Hercules Зелёный" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Hercules Янтарный" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1387,7 +1422,7 @@ msgstr "~ #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Сохранить игру:" @@ -1400,7 +1435,7 @@ msgstr " #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Сохранить" @@ -1439,23 +1474,23 @@ msgstr " msgid "~K~eys" msgstr "~К~лавиши" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Не могу инициализировать формат цвета." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Не удалось переключить видеорежим: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Не удалось использовать коррекцию соотношения сторон." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Не могу применить полноэкранный режим." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1469,7 +1504,7 @@ msgstr "" "на жёсткий диск. Подробности можно найти в\n" "файле README." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1484,7 +1519,7 @@ msgstr "" "появится музыка. Подробности можно найти в\n" "файле README." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1494,7 +1529,7 @@ msgstr "" "README за базовой информацией, а также инструкциями о том, как получить " "дальнейшую помощь." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1504,10 +1539,14 @@ msgstr "" "поддерживается ScummVM полностью. Она, скорее всего, не будет работать " "стабильно, и сохранения игр могут не работать в будущих версиях ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Всё равно запустить" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Эмулятор AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Эмулятор MAME OPL" @@ -1561,25 +1600,31 @@ msgstr "" "Предпочтительное звуковое устройство '%s' не может быть использовано. " "Смотрите файл протокола для более подробной информации." -#: audio/null.h:44 -msgid "No music" -msgstr "Без музыки" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Эмулятор звука Amiga" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Эмулятор AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Без музыки" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Эмулятор Apple II GS (отсутствует)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "Эмулятор звука C64" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "Эмулятор FM Towns" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Аудио" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1597,6 +1642,147 @@ msgstr " msgid "IBM PCjr Emulator" msgstr "Эмулятор IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "Эмулятор звука C64" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Вы действительно хотите вернуться в главное меню?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Главное меню" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Вы действительно хотите выйти?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Выход" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Режим 'касаний' тачскрина - Левый клик" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Режим 'касаний' тачскрина - Правый клик" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Режим 'касаний' тачскрина - Пролёт (без клика)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Максимальная громкость" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Увеличение громкости" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Минимальная громкость" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Уменьшение громкости" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Щелчки включены" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Щелчки выключены" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Режим 'касаний' тачскрина - Пролёт (клики DPad)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Вы действительно хотите выйти?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Режим тачпада выключен." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (без фильтров)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Без увеличения" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Без увеличения" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Коррекция соотношения сторон включена" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Коррекция соотношения сторон выключена" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Активный графический фильтр:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Оконный режим" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Таблица клавиш:" @@ -1702,18 +1888,26 @@ msgstr " msgid "Disable power off" msgstr "Запретить выключение" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Режим мыши нажать-и-тянуть включён." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Режим мыши нажать-и-тянуть выключен." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Режим тачпада включён." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Режим тачпада выключен." @@ -1724,9 +1918,9 @@ msgstr " #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Левый щелчок" @@ -1736,8 +1930,8 @@ msgstr " #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Правый щелчок" @@ -1762,39 +1956,6 @@ msgstr " msgid "Minimize" msgstr "Убрать в Dock" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Без увеличения" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Без увеличения" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Коррекция соотношения сторон включена" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Коррекция соотношения сторон выключена" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Активный графический фильтр:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Оконный режим" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (без фильтров)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1838,15 +1999,6 @@ msgstr " msgid "Fast mode" msgstr "Быстрый режим" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Выход" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Отладчик" @@ -1863,9 +2015,50 @@ msgstr " msgid "Key mapper" msgstr "Назначение клавиш" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Вы действительно хотите выйти?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Один правый щелчок" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Только переместить" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Клавиша ESC" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Меню игры" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Показать клавиатуру" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Управление мышью" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Сетевая папка:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2110,102 +2303,21 @@ msgstr "" "Не забудьте назначить клавишу для действия 'Hide Toolbar', чтобы увидеть " "весь инвентарь в игре" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Вы действительно хотите вернуться в главное меню?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Главное меню" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Вы действительно хотите выйти?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Режим 'касаний' тачскрина - Левый клик" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Режим 'касаний' тачскрина - Правый клик" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Режим 'касаний' тачскрина - Пролёт (без клика)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Максимальная громкость" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Увеличение громкости" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Минимальная громкость" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Уменьшение громкости" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Режим 'касаний' тачскрина - Пролёт (клики DPad)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Проверяю обновления..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Один правый щелчок" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Только переместить" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Клавиша ESC" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Меню игры" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Показать клавиатуру" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Управление мышью" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Щелчки включены" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Щелчки выключены" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Использовать оригинальные экраны записи/чтения игры" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Использовать оригинальные экраны записи и сохранения игры вместо сделанных в " @@ -2236,13 +2348,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Восстановить игру:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Восстановить" @@ -2661,19 +2773,27 @@ msgstr "" "цветами" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "Включить отображение графики высокого разрешения" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "Включить графику и контент высокого рарешения" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Предпочитать цифровые звуковые эффекты" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "" "Отдавать предпочтение цифровым звуковым эффектам вместо синтезированных" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Использовать IMF/Yamaha FB-01 для вывода MIDI" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2681,32 +2801,32 @@ msgstr "" "Использовать звуковую карту IBM Music Feature или модуль синтеза Yamaha " "FB-01 FM для MIDI" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Использовать CD аудио" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" "Использовать звуковые дорожки с CD вместо музыки из файлов игры (если " "доступно)" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Использовать курсоры Windows" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Использовать курсоры Windows (меньшие по размеру и одноцветные) вместо " "курсоров DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Использовать серебряные курсоры" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3623,20 +3743,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Включить режим Roland GS" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Зелёный" - -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Янтарный" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Hercules Зелёный" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Hercules Янтарный" - #~ msgid "Save game failed!" #~ msgstr "Не удалось сохранить игру!" @@ -3653,8 +3759,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Параметры командной строки не обработаны" -#~ msgid "FM Towns Emulator" -#~ msgstr "Эмулятор FM Towns" - #~ msgid "Invalid Path" #~ msgstr "Неверный путь" diff --git a/po/scummvm.pot b/po/scummvm.pot index 0445534008b..055cf61d56a 100644 --- a/po/scummvm.pot +++ b/po/scummvm.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.8.0git\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,17 +52,17 @@ msgid "Go up" msgstr "" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "" @@ -83,7 +83,7 @@ msgstr "" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -109,8 +109,8 @@ msgstr "" msgid "Yes" msgstr "" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -119,42 +119,94 @@ msgstr "" msgid "No" msgstr "" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" msgstr "" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" msgstr "" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" msgstr "" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" msgstr "" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" msgstr "" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" msgstr "" -#: gui/KeysDialog.cpp:41 -msgid "Map" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" msgstr "" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -170,6 +222,38 @@ msgstr "" msgid "OK" msgstr "" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "" @@ -192,6 +276,10 @@ msgstr "" msgid "Press the key to associate" msgstr "" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "" + #: gui/launcher.cpp:193 msgid "Game" msgstr "" @@ -491,7 +579,7 @@ msgstr "" msgid "Search in game list" msgstr "" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "" @@ -510,45 +598,45 @@ msgstr "" msgid "Load" msgstr "" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." msgstr "" -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "" -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "" -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -908,10 +996,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -973,27 +1057,37 @@ msgid "" msgstr "" #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1131,120 +1225,35 @@ msgstr "" msgid "Clear value" msgstr "" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "" @@ -1312,6 +1321,33 @@ msgstr "" msgid "Unknown error" msgstr "" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1361,7 +1397,7 @@ msgstr "" #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "" @@ -1374,7 +1410,7 @@ msgstr "" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "" @@ -1407,23 +1443,23 @@ msgstr "" msgid "~K~eys" msgstr "" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "" -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "" -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "" -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1432,7 +1468,7 @@ msgid "" "See the README file for details." msgstr "" -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1441,24 +1477,28 @@ msgid "" "See the README file for details." msgstr "" -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " "and for instructions on how to obtain further assistance." msgstr "" -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " "not work in future versions of ScummVM." msgstr "" -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "" @@ -1504,24 +1544,28 @@ msgid "" "information." msgstr "" -#: audio/null.h:44 -msgid "No music" -msgstr "" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" +#: audio/null.h:44 +msgid "No music" msgstr "" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +msgid "PC-98 Audio" msgstr "" #: audio/softsynth/mt32.cpp:200 @@ -1540,6 +1584,146 @@ msgstr "" msgid "IBM PCjr Emulator" msgstr "" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +msgid "Trackpad mode is now" +msgstr "" + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "" @@ -1645,18 +1829,26 @@ msgstr "" msgid "Disable power off" msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "" +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "" @@ -1667,9 +1859,9 @@ msgstr "" #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "" @@ -1679,8 +1871,8 @@ msgstr "" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "" @@ -1705,39 +1897,6 @@ msgstr "" msgid "Minimize" msgstr "" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1781,15 +1940,6 @@ msgstr "" msgid "Fast mode" msgstr "" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "" @@ -1806,8 +1956,48 @@ msgstr "" msgid "Key mapper" msgstr "" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +msgid "[ Shared ]" msgstr "" #: backends/platform/wii/options.cpp:51 @@ -2051,102 +2241,21 @@ msgid "" "Don't forget to map a key to 'Hide Toolbar' action to see the whole inventory" msgstr "" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "" -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" @@ -2171,13 +2280,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "" @@ -2547,45 +2656,53 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 -msgid "Prefer digital sound effects" +msgid "Enable high resolution graphics" msgstr "" #: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "" + +#: engines/sci/detection.cpp:394 +msgid "Prefer digital sound effects" +msgstr "" + +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" msgstr "" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" diff --git a/po/se_SE.po b/po/se_SE.po index d757d282405..b5a714fd555 100644 --- a/po/se_SE.po +++ b/po/se_SE.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.5.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2014-07-02 16:30+0100\n" "Last-Translator: Hampus Flink \n" "Language-Team: \n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Uppхt" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Avbryt" @@ -85,7 +85,7 @@ msgstr "Namn:" msgid "Notes:" msgstr "" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "" @@ -102,8 +102,8 @@ msgstr "" msgid "Do you really want to overwrite the file?" msgstr "Vill du verkligen radera den hфr spardatan?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +112,8 @@ msgstr "Vill du verkligen radera den h msgid "Yes" msgstr "Ja" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +122,95 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Stфng" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Reverb" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Musklick" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Aktiv" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Visa tangentbord" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Rum:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Stфll in tangenter" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Dфmpa:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Fullskфrmslфge" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Bredd:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Vфlj en handling att stфlla in" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Nivх:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Stфll in" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Chorus" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Hastighet:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Djup:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Typ:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Sinus" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Triangel" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Diverse" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Interpolering:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Ingen (snabbast)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Linjфr" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Fjфrde ordningen" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Sjunde ordningen" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Хterstфll" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "" +"Хterstфll alla FluidSynth-instфllningar till deras ursprungliga vфrden." + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +226,40 @@ msgstr "St msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Vill du verkligen хterstфlla alla FluidSynth-instфllningar till deras " +"ursprungliga vфrden?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Stфng" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Musklick" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Visa tangentbord" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Stфll in tangenter" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Fullskфrmslфge" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Stфll in" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Vфlj en handling och klicka pх \"Stфll in\"" @@ -195,6 +282,10 @@ msgstr "Var god v msgid "Press the key to associate" msgstr "Tryck pх en tangent fіr att stфlla in" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Vфlj en handling att stфlla in" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Spel" @@ -498,7 +589,7 @@ msgstr "~R~adera spel" msgid "Search in game list" msgstr "Sіk i spellistan" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Sіk:" @@ -517,7 +608,7 @@ msgstr "Ladda spel:" msgid "Load" msgstr "Ladda" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -525,40 +616,40 @@ msgstr "" "Vill du verkligen anvфnda mass-speldetektorn? Processen kan potentiellt " "lфgga till ett enormt antal spel." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM kunde inte іppna den valda katalogen!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM kunde inte hitta nхgra spel i den valda katalogen!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Vфlj spel:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Vill du verkligen radera den hфr spelkonfigurationen?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Vill du ladda sparat spel?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Det hфr spelet stіder inte laddning av spardata frхn launchern." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "" "ScummVM kunde inte hitta en motor kapabel till att kіra det valda spelet!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Masstillфgg..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "" @@ -928,10 +1019,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Sіkv. tillфgg:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Diverse" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -996,28 +1083,38 @@ msgstr "" "mхste fіrst byta till ett annat sprхk." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 #, fuzzy msgid "Delete char" msgstr "Radera" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "" @@ -1158,123 +1255,35 @@ msgstr "Antialiserad" msgid "Clear value" msgstr "Tіm sіkfфltet" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Reverb" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Aktiv" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Rum:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Dфmpa:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Bredd:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Nivх:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Chorus" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Hastighet:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Djup:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Typ:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Sinus" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Triangel" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Interpolering:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Ingen (snabbast)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Linjфr" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Fjфrde ordningen" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Sjunde ordningen" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Хterstфll" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "" -"Хterstфll alla FluidSynth-instфllningar till deras ursprungliga vфrden." - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Vill du verkligen хterstфlla alla FluidSynth-instфllningar till deras " -"ursprungliga vфrden?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Motorn stіder inte debug-nivх '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Meny" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Skippa" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Paus" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Skippa rad" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Fel under kіrning av spel:" -#: base/main.cpp:554 +#: base/main.cpp:557 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" @@ -1342,6 +1351,33 @@ msgstr "Avbrutit av anv msgid "Unknown error" msgstr "Okфnt fel" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "Herkules grіn" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "Herkules bфrnsten" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "Herkules grіn" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "Herkules bфrnsten" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1392,7 +1428,7 @@ msgstr " #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Spara spelet:" @@ -1405,7 +1441,7 @@ msgstr "Spara spelet:" #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Spara" @@ -1443,23 +1479,23 @@ msgstr "A~v~bryt" msgid "~K~eys" msgstr "~T~angenter" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Kunde inte initialisera fфrgformat." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Kunde inte byta till videolфget: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Kunde inte фndra instфllningen fіr bildfіrhхllanden." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Kunde inte applicera fullskфrmsinstфllning." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1473,7 +1509,7 @@ msgstr "" "datafilerna till din hхrddisk istфllet.\n" "Se README-filen fіr detaljer." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1487,7 +1523,7 @@ msgstr "" "fіr att kunna lyssna pх spelets musik.\n" "Se README-filen fіr detaljer." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1496,7 +1532,7 @@ msgstr "" "Kunde inte ladda spardata (%s)! Hфnvisa till README-filen fіr grundlфggande " "information och instruktioner fіr ytterligare assistans." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1506,10 +1542,14 @@ msgstr "" "ScummVM. Dфrfіr фr det troligtvis instabilt och om du skapar spardata kan de " "mіjligtvis vara inkompatibla med framtida versioner av ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Starta фndх" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "AdLib-emulator" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "MAME OPL-emulator" @@ -1563,25 +1603,31 @@ msgstr "" "Den fіredragna ljudenheten '%s' kan inte anvфndas. Se loggfilen fіr mer " "information." -#: audio/null.h:44 -msgid "No music" -msgstr "Ingen musik" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Amiga ljudemulator" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "AdLib-emulator" +#: audio/null.h:44 +msgid "No music" +msgstr "Ingen musik" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS-emulator (INTE IMPLEMENTERAD)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 ljudemulator" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +#, fuzzy +msgid "FM-Towns Audio" +msgstr "FM Towns-emulator" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Ljud" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1599,6 +1645,147 @@ msgstr "PC Speaker-emulator" msgid "IBM PCjr Emulator" msgstr "IBM PCjr-emulator" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 ljudemulator" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Vill du verkligen хtergх till launchern?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Launcher" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Vill du verkligen avsluta?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Avsluta" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Touchscreen \"Tap-lфge\" - Vфnsterklick" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Touchscren \"Tap-lфge\" - Hіgerklick" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Touchscreen \"Tap-lфge\" - Hover (utan klick)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Max. volym" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Hіja volymen" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Min. volym" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Sфnka volymen" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Klickning aktiverad" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Klickning deaktiverad" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Touchscreen 'Tap-lфge' - Hover (DPad klick)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Vill du avsluta?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Touchpad-lфge inaktiverat." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (ingen filtrering)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Normalt (ingen skalning)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Normalt (ingen skalning)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Korrektion av bildfіrhхllande pх" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Korrektion av bildfіrhхllande av" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Aktivt grafikfilter:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Fіnsterlфge" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Tangenter:" @@ -1704,18 +1891,26 @@ msgstr "H msgid "Disable power off" msgstr "Inaktivera strіmsparning" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Dra-och-slфpp-lфge med mus aktiverat." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Dra-och-slфpp-lфge med mus deaktiverat." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Touchpad-lфge aktiverat." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Touchpad-lфge inaktiverat." @@ -1726,9 +1921,9 @@ msgstr "Klickl #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Vфnsterklick" @@ -1738,8 +1933,8 @@ msgstr "Mittenklick" #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Hіgerklick" @@ -1764,39 +1959,6 @@ msgstr "F msgid "Minimize" msgstr "Minimera" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Normalt (ingen skalning)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Normalt (ingen skalning)" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Korrektion av bildfіrhхllande pх" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Korrektion av bildfіrhхllande av" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Aktivt grafikfilter:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Fіnsterlфge" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (ingen filtrering)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1840,15 +2002,6 @@ msgstr "Skippa text" msgid "Fast mode" msgstr "Snabblфge" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Avsluta" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Debug-konsol" @@ -1865,9 +2018,50 @@ msgstr "Virtuellt tangentbord" msgid "Key mapper" msgstr "Tangentinst." -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Vill du avsluta?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Ett hіgerklick" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Endast rіrelse" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Escape-tangenten" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Spelmeny" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Visa tangentbord" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Kontrollera musen" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Delad:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2115,102 +2309,21 @@ msgstr "" "Glіm inte att vфlja en tangent fіr \"Gіm verktygsrad\" fіr att se hela " "inventariet" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Vill du verkligen хtergх till launchern?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Launcher" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Vill du verkligen avsluta?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Touchscreen \"Tap-lфge\" - Vфnsterklick" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Touchscren \"Tap-lфge\" - Hіgerklick" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Touchscreen \"Tap-lфge\" - Hover (utan klick)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Max. volym" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Hіja volymen" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Min. volym" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Sфnka volymen" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Touchscreen 'Tap-lфge' - Hover (DPad klick)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Sіk efter uppdateringar..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Ett hіgerklick" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Endast rіrelse" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Escape-tangenten" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Spelmeny" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Visa tangentbord" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Kontrollera musen" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Klickning aktiverad" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Klickning deaktiverad" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Anvфnd originalskфrmar fіr spara/ladda" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "Anvфnder originalskфrmarna fіr spara/ladda istфllet fіr ScummVM:s" @@ -2237,13 +2350,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Хterstфll spel:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Хterstфll" @@ -2648,18 +2761,28 @@ msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" #: engines/sci/detection.cpp:384 +#, fuzzy +msgid "Enable high resolution graphics" +msgstr "Aktivera livmфtare" + +#: engines/sci/detection.cpp:385 +#, fuzzy +msgid "Enable high resolution graphics/content" +msgstr "Aktivera livmфtare" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Fіredra digitala ljudeffekter" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Fіredra digitala ljudeffekter istфllet fіr syntetiserade" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Anvфnd IMF/Yamaha FB-01 fіr MIDI-uppspelning" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2667,29 +2790,29 @@ msgstr "" "Anvфnd ett IMB Music Feature-kort eller en Yamaha FB-01 FM synthmodul fіr " "MIDI-uppspelning" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Anvфnd CD-ljud" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Anvфnd CD-ljud istфllet fіr spelets ljud, om tillgфngligt" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Anvфnd Windows muspekare" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "" "Anvфnd Windows muspekare (mindre och svartvit) istфllet fіr DOS-pekaren" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Anvфnd silverpekare" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" @@ -3603,20 +3726,6 @@ msgstr "" #~ msgid "Enable Roland GS Mode" #~ msgstr "Aktivera Roland GS-lфge" -#~ msgid "Hercules Green" -#~ msgstr "Herkules grіn" - -#~ msgid "Hercules Amber" -#~ msgstr "Herkules bфrnsten" - -#~ msgctxt "lowres" -#~ msgid "Hercules Green" -#~ msgstr "Herkules grіn" - -#~ msgctxt "lowres" -#~ msgid "Hercules Amber" -#~ msgstr "Herkules bфrnsten" - #, fuzzy #~ msgid "Save game failed!" #~ msgstr "Spara spelet:" @@ -3635,8 +3744,5 @@ msgstr "" #~ msgid "Command line argument not processed" #~ msgstr "Argument i kommandoraden ej verkstфllt" -#~ msgid "FM Towns Emulator" -#~ msgstr "FM Towns-emulator" - #~ msgid "Invalid Path" #~ msgstr "Ogiltig sіkvфg" diff --git a/po/uk_UA.po b/po/uk_UA.po index cc4c29228a8..eb56f30f72a 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ScummVM 1.3.0svn\n" "Report-Msgid-Bugs-To: scummvm-devel@lists.sf.net\n" -"POT-Creation-Date: 2015-12-23 00:28+0000\n" +"POT-Creation-Date: 2016-01-25 20:35+0100\n" "PO-Revision-Date: 2015-11-06 10:07+0300\n" "Last-Translator: Eugene Sandulenko \n" "Language-Team: Ukrainian\n" @@ -54,17 +54,17 @@ msgid "Go up" msgstr "Вгору" #: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editrecorddialog.cpp:67 -#: gui/filebrowser-dialog.cpp:64 gui/KeysDialog.cpp:43 gui/launcher.cpp:351 -#: gui/massadd.cpp:95 gui/options.cpp:1237 gui/predictivedialog.cpp:74 -#: gui/recorderdialog.cpp:70 gui/recorderdialog.cpp:156 -#: gui/saveload-dialog.cpp:216 gui/saveload-dialog.cpp:276 -#: gui/saveload-dialog.cpp:547 gui/saveload-dialog.cpp:931 -#: gui/themebrowser.cpp:55 gui/fluidsynth-dialog.cpp:152 -#: engines/engine.cpp:483 backends/platform/wii/options.cpp:48 +#: gui/filebrowser-dialog.cpp:64 gui/fluidsynth-dialog.cpp:152 +#: gui/KeysDialog.cpp:43 gui/launcher.cpp:351 gui/massadd.cpp:95 +#: gui/options.cpp:1237 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:70 +#: gui/recorderdialog.cpp:156 gui/saveload-dialog.cpp:216 +#: gui/saveload-dialog.cpp:276 gui/saveload-dialog.cpp:547 +#: gui/saveload-dialog.cpp:931 gui/themebrowser.cpp:55 engines/engine.cpp:546 #: backends/events/default/default-events.cpp:196 #: backends/events/default/default-events.cpp:218 -#: engines/drascula/saveload.cpp:49 engines/parallaction/saveload.cpp:274 -#: engines/scumm/dialogs.cpp:191 engines/sword1/control.cpp:865 +#: backends/platform/wii/options.cpp:48 engines/drascula/saveload.cpp:49 +#: engines/parallaction/saveload.cpp:274 engines/scumm/dialogs.cpp:191 +#: engines/sword1/control.cpp:865 msgid "Cancel" msgstr "Відміна" @@ -85,25 +85,24 @@ msgstr " msgid "Notes:" msgstr "Примітки:" -#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:75 +#: gui/editrecorddialog.cpp:68 gui/predictivedialog.cpp:74 msgid "Ok" msgstr "Гаразд" #: gui/filebrowser-dialog.cpp:49 msgid "Choose file for loading" -msgstr "" +msgstr "Оберіть файл для завантаження" #: gui/filebrowser-dialog.cpp:49 msgid "Enter filename for saving" -msgstr "" +msgstr "Надайте ім'я файлу для запису" #: gui/filebrowser-dialog.cpp:132 -#, fuzzy msgid "Do you really want to overwrite the file?" -msgstr "Ви дійсно хочете видалити цей запис?" +msgstr "Ви дійсно хочете замінити цей файл?" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -112,8 +111,8 @@ msgstr " msgid "Yes" msgstr "Так" -#: gui/filebrowser-dialog.cpp:132 gui/launcher.cpp:793 gui/launcher.cpp:941 -#: gui/launcher.cpp:1000 gui/fluidsynth-dialog.cpp:217 +#: gui/filebrowser-dialog.cpp:132 gui/fluidsynth-dialog.cpp:217 +#: gui/launcher.cpp:795 gui/launcher.cpp:943 gui/launcher.cpp:1002 #: backends/events/symbiansdl/symbiansdl-events.cpp:186 #: backends/platform/wince/CEActionsPocket.cpp:326 #: backends/platform/wince/CEActionsSmartphone.cpp:287 @@ -122,42 +121,94 @@ msgstr " msgid "No" msgstr "Ні" -#: gui/gui-manager.cpp:117 backends/keymapper/remap-dialog.cpp:53 -#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 -#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 -#: engines/scumm/help.cpp:210 -msgid "Close" -msgstr "Закрити" +#: gui/fluidsynth-dialog.cpp:68 +msgid "Reverb" +msgstr "Реверберація" -#: gui/gui-manager.cpp:120 -msgid "Mouse click" -msgstr "Клік мишкою" +#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 +msgid "Active" +msgstr "Активне" -#: gui/gui-manager.cpp:124 base/main.cpp:319 -msgid "Display keyboard" -msgstr "Показати клавіатуру" +#: gui/fluidsynth-dialog.cpp:72 +msgid "Room:" +msgstr "Кімната:" -#: gui/gui-manager.cpp:128 base/main.cpp:323 -msgid "Remap keys" -msgstr "Перепризначити клавіші" +#: gui/fluidsynth-dialog.cpp:79 +msgid "Damp:" +msgstr "Вологість:" -#: gui/gui-manager.cpp:131 base/main.cpp:326 engines/scumm/help.cpp:87 -msgid "Toggle fullscreen" -msgstr "Перемкнути повноекранний режим" +#: gui/fluidsynth-dialog.cpp:86 +msgid "Width:" +msgstr "Ширина:" -#: gui/KeysDialog.h:36 gui/KeysDialog.cpp:145 -msgid "Choose an action to map" -msgstr "Виберіть дію для призначення" +#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 +msgid "Level:" +msgstr "Рівень:" -#: gui/KeysDialog.cpp:41 -msgid "Map" -msgstr "Призначити" +#: gui/fluidsynth-dialog.cpp:100 +msgid "Chorus" +msgstr "Хор" -#: gui/KeysDialog.cpp:42 gui/launcher.cpp:352 gui/launcher.cpp:1048 -#: gui/launcher.cpp:1052 gui/massadd.cpp:92 gui/options.cpp:1238 -#: gui/saveload-dialog.cpp:932 gui/fluidsynth-dialog.cpp:153 -#: engines/engine.cpp:402 engines/engine.cpp:413 -#: backends/platform/wii/options.cpp:47 +#: gui/fluidsynth-dialog.cpp:104 +msgid "N:" +msgstr "N:" + +#: gui/fluidsynth-dialog.cpp:118 +msgid "Speed:" +msgstr "Швидкість:" + +#: gui/fluidsynth-dialog.cpp:125 +msgid "Depth:" +msgstr "Глибина:" + +#: gui/fluidsynth-dialog.cpp:132 +msgid "Type:" +msgstr "Тип:" + +#: gui/fluidsynth-dialog.cpp:135 +msgid "Sine" +msgstr "Синусоїда" + +#: gui/fluidsynth-dialog.cpp:136 +msgid "Triangle" +msgstr "Трикутник" + +#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1168 +msgid "Misc" +msgstr "Різне" + +#: gui/fluidsynth-dialog.cpp:140 +msgid "Interpolation:" +msgstr "Інтерполяція:" + +#: gui/fluidsynth-dialog.cpp:143 +msgid "None (fastest)" +msgstr "Нема (найшвидше)" + +#: gui/fluidsynth-dialog.cpp:144 +msgid "Linear" +msgstr "Лінійна" + +#: gui/fluidsynth-dialog.cpp:145 +msgid "Fourth-order" +msgstr "Четвертого порядку" + +#: gui/fluidsynth-dialog.cpp:146 +msgid "Seventh-order" +msgstr "Сьомого порядку" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset" +msgstr "Скинути" + +#: gui/fluidsynth-dialog.cpp:150 +msgid "Reset all FluidSynth settings to their default values." +msgstr "Скинути всі налаштування FluidSynth до їх значень за замовченням" + +#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:352 +#: gui/launcher.cpp:1050 gui/launcher.cpp:1054 gui/massadd.cpp:92 +#: gui/options.cpp:1238 gui/saveload-dialog.cpp:932 engines/engine.cpp:465 +#: engines/engine.cpp:476 backends/platform/wii/options.cpp:47 #: backends/platform/wince/CELauncherDialog.cpp:54 #: engines/agos/animation.cpp:558 engines/drascula/saveload.cpp:49 #: engines/groovie/script.cpp:408 engines/parallaction/saveload.cpp:274 @@ -173,6 +224,40 @@ msgstr " msgid "OK" msgstr "OK" +#: gui/fluidsynth-dialog.cpp:217 +msgid "" +"Do you really want to reset all FluidSynth settings to their default values?" +msgstr "" +"Ви дійсно хочете скинути всі налаштування FluidSynth до їх значень за " +"замовченням?" + +#: gui/gui-manager.cpp:119 backends/keymapper/remap-dialog.cpp:53 +#: engines/scumm/help.cpp:126 engines/scumm/help.cpp:141 +#: engines/scumm/help.cpp:166 engines/scumm/help.cpp:192 +#: engines/scumm/help.cpp:210 +msgid "Close" +msgstr "Закрити" + +#: gui/gui-manager.cpp:122 +msgid "Mouse click" +msgstr "Клік мишкою" + +#: gui/gui-manager.cpp:126 base/main.cpp:322 +msgid "Display keyboard" +msgstr "Показати клавіатуру" + +#: gui/gui-manager.cpp:130 base/main.cpp:326 +msgid "Remap keys" +msgstr "Перепризначити клавіші" + +#: gui/gui-manager.cpp:133 base/main.cpp:329 engines/scumm/help.cpp:87 +msgid "Toggle fullscreen" +msgstr "Перемкнути повноекранний режим" + +#: gui/KeysDialog.cpp:41 +msgid "Map" +msgstr "Призначити" + #: gui/KeysDialog.cpp:49 msgid "Select an action and click 'Map'" msgstr "Виберіть дію і клікніть 'Призначити'" @@ -195,6 +280,10 @@ msgstr " msgid "Press the key to associate" msgstr "Натисніть клавішу для призначення" +#: gui/KeysDialog.cpp:145 gui/KeysDialog.h:36 +msgid "Choose an action to map" +msgstr "Виберіть дію для призначення" + #: gui/launcher.cpp:193 msgid "Game" msgstr "Гра" @@ -498,7 +587,7 @@ msgstr "~ msgid "Search in game list" msgstr "Пошук у списку ігор" -#: gui/launcher.cpp:661 gui/launcher.cpp:1222 +#: gui/launcher.cpp:661 gui/launcher.cpp:1224 msgid "Search:" msgstr "Пошук:" @@ -517,7 +606,7 @@ msgstr " msgid "Load" msgstr "Завантажити" -#: gui/launcher.cpp:792 +#: gui/launcher.cpp:794 msgid "" "Do you really want to run the mass game detector? This could potentially add " "a huge number of games." @@ -525,39 +614,39 @@ msgstr "" "Чи ви дійсно хочете запустити пошук усіх ігор? Це потенційно може додати " "велику кількість ігор." -#: gui/launcher.cpp:841 +#: gui/launcher.cpp:843 msgid "ScummVM couldn't open the specified directory!" msgstr "ScummVM не може відкрити вказану папку!" -#: gui/launcher.cpp:853 +#: gui/launcher.cpp:855 msgid "ScummVM could not find any game in the specified directory!" msgstr "ScummVM не може знайти гру у вказаній папці!" -#: gui/launcher.cpp:867 +#: gui/launcher.cpp:869 msgid "Pick the game:" msgstr "Виберіть гру:" -#: gui/launcher.cpp:941 +#: gui/launcher.cpp:943 msgid "Do you really want to remove this game configuration?" msgstr "Ви дійсно хочете видалити установки для цієї гри?" -#: gui/launcher.cpp:999 +#: gui/launcher.cpp:1001 msgid "Do you want to load saved game?" msgstr "Ви хочете завантажити збережену гру?" -#: gui/launcher.cpp:1048 +#: gui/launcher.cpp:1050 msgid "This game does not support loading games from the launcher." msgstr "Ця гра не підтримує завантаження збережень через головне меню." -#: gui/launcher.cpp:1052 +#: gui/launcher.cpp:1054 msgid "ScummVM could not find any engine capable of running the selected game!" msgstr "ScummVM не зміг знайти движок для запуску вибраної гри!" -#: gui/launcher.cpp:1159 +#: gui/launcher.cpp:1161 msgid "Mass Add..." msgstr "Дод. багато..." -#: gui/launcher.cpp:1161 +#: gui/launcher.cpp:1163 msgid "Record..." msgstr "Запис..." @@ -928,10 +1017,6 @@ msgctxt "lowres" msgid "Plugins Path:" msgstr "Шлях до втулків:" -#: gui/options.cpp:1168 gui/fluidsynth-dialog.cpp:138 -msgid "Misc" -msgstr "Різне" - #: gui/options.cpp:1170 msgctxt "lowres" msgid "Misc" @@ -995,27 +1080,37 @@ msgstr "" "тему, потрібно в першу чергу змінити мову." #. I18N: You must leave "#" as is, only word 'next' is translatable -#: gui/predictivedialog.cpp:87 +#: gui/predictivedialog.cpp:86 msgid "# next" msgstr "# наст" -#: gui/predictivedialog.cpp:88 +#: gui/predictivedialog.cpp:87 msgid "add" msgstr "дод" -#: gui/predictivedialog.cpp:92 +#: gui/predictivedialog.cpp:92 gui/predictivedialog.cpp:164 msgid "Delete char" msgstr "Видалити сммвол" -#: gui/predictivedialog.cpp:96 +#: gui/predictivedialog.cpp:97 gui/predictivedialog.cpp:168 msgid "<" msgstr "<" #. I18N: Pre means 'Predictive', leave '*' as is -#: gui/predictivedialog.cpp:98 +#: gui/predictivedialog.cpp:99 gui/predictivedialog.cpp:572 msgid "* Pre" msgstr "* Pre" +#. I18N: 'Num' means Numbers +#: gui/predictivedialog.cpp:575 +msgid "* Num" +msgstr "" + +#. I18N: 'Abc' means Latin alphabet input +#: gui/predictivedialog.cpp:578 +msgid "* Abc" +msgstr "" + #: gui/recorderdialog.cpp:64 msgid "Recorder or Playback Gameplay" msgstr "Записувати або відтворити процес гри" @@ -1153,122 +1248,35 @@ msgstr " msgid "Clear value" msgstr "Очистити значення" -#: gui/fluidsynth-dialog.cpp:68 -msgid "Reverb" -msgstr "Реверберація" - -#: gui/fluidsynth-dialog.cpp:70 gui/fluidsynth-dialog.cpp:102 -msgid "Active" -msgstr "Активне" - -#: gui/fluidsynth-dialog.cpp:72 -msgid "Room:" -msgstr "Кімната:" - -#: gui/fluidsynth-dialog.cpp:79 -msgid "Damp:" -msgstr "Вологість:" - -#: gui/fluidsynth-dialog.cpp:86 -msgid "Width:" -msgstr "Ширина:" - -#: gui/fluidsynth-dialog.cpp:93 gui/fluidsynth-dialog.cpp:111 -msgid "Level:" -msgstr "Рівень:" - -#: gui/fluidsynth-dialog.cpp:100 -msgid "Chorus" -msgstr "Хор" - -#: gui/fluidsynth-dialog.cpp:104 -msgid "N:" -msgstr "N:" - -#: gui/fluidsynth-dialog.cpp:118 -msgid "Speed:" -msgstr "Швидкість:" - -#: gui/fluidsynth-dialog.cpp:125 -msgid "Depth:" -msgstr "Глибина:" - -#: gui/fluidsynth-dialog.cpp:132 -msgid "Type:" -msgstr "Тип:" - -#: gui/fluidsynth-dialog.cpp:135 -msgid "Sine" -msgstr "Синусоїда" - -#: gui/fluidsynth-dialog.cpp:136 -msgid "Triangle" -msgstr "Трикутник" - -#: gui/fluidsynth-dialog.cpp:140 -msgid "Interpolation:" -msgstr "Інтерполяція:" - -#: gui/fluidsynth-dialog.cpp:143 -msgid "None (fastest)" -msgstr "Нема (найшвидше)" - -#: gui/fluidsynth-dialog.cpp:144 -msgid "Linear" -msgstr "Лінійна" - -#: gui/fluidsynth-dialog.cpp:145 -msgid "Fourth-order" -msgstr "Четвертого порядку" - -#: gui/fluidsynth-dialog.cpp:146 -msgid "Seventh-order" -msgstr "Сьомого порядку" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset" -msgstr "Скинути" - -#: gui/fluidsynth-dialog.cpp:150 -msgid "Reset all FluidSynth settings to their default values." -msgstr "Скинути всі налаштування FluidSynth до їх значень за замовченням" - -#: gui/fluidsynth-dialog.cpp:217 -msgid "" -"Do you really want to reset all FluidSynth settings to their default values?" -msgstr "" -"Ви дійсно хочете скинути всі налаштування FluidSynth до їх значень за " -"замовченням?" - -#: base/main.cpp:228 +#: base/main.cpp:237 #, c-format msgid "Engine does not support debug level '%s'" msgstr "Движок не підтримує рівень відладки '%s'" -#: base/main.cpp:306 +#: base/main.cpp:309 msgid "Menu" msgstr "Меню" -#: base/main.cpp:309 backends/platform/symbian/src/SymbianActions.cpp:45 +#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:45 #: backends/platform/wince/CEActionsPocket.cpp:45 #: backends/platform/wince/CEActionsSmartphone.cpp:46 msgid "Skip" msgstr "Пропустити" -#: base/main.cpp:312 backends/platform/symbian/src/SymbianActions.cpp:50 +#: base/main.cpp:315 backends/platform/symbian/src/SymbianActions.cpp:50 #: backends/platform/wince/CEActionsPocket.cpp:42 msgid "Pause" msgstr "Пауза" -#: base/main.cpp:315 +#: base/main.cpp:318 msgid "Skip line" msgstr "Пропустити рядок" -#: base/main.cpp:507 +#: base/main.cpp:510 msgid "Error running game:" msgstr "Помилка запуску гри:" -#: base/main.cpp:554 +#: base/main.cpp:557 msgid "Could not find any engine capable of running the selected game" msgstr "Не можу знайти движок для запуску вибраної гри" @@ -1336,6 +1344,33 @@ msgstr " msgid "Unknown error" msgstr "Невідома помилка" +#. I18N: Hercules is graphics card name +#: common/rendermode.cpp:35 +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:36 +msgid "Hercules Amber" +msgstr "" + +#: common/rendermode.cpp:42 +msgid "PC-9821 (256 Colors)" +msgstr "" + +#: common/rendermode.cpp:43 +msgid "PC-9801 (16 Colors)" +msgstr "" + +#: common/rendermode.cpp:71 +msgctxt "lowres" +msgid "Hercules Green" +msgstr "" + +#: common/rendermode.cpp:72 +msgctxt "lowres" +msgid "Hercules Amber" +msgstr "" + #: engines/advancedDetector.cpp:317 #, c-format msgid "The game in '%s' seems to be unknown." @@ -1385,7 +1420,7 @@ msgstr "~ #: engines/dialogs.cpp:116 engines/agi/saveload.cpp:803 #: engines/cruise/menu.cpp:212 engines/drascula/saveload.cpp:336 #: engines/dreamweb/saveload.cpp:261 engines/neverhood/menumodule.cpp:877 -#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:759 +#: engines/pegasus/pegasus.cpp:377 engines/sci/engine/kfile.cpp:769 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save game:" msgstr "Зберегти гру: " @@ -1398,7 +1433,7 @@ msgstr " #: engines/agi/saveload.cpp:803 engines/cruise/menu.cpp:212 #: engines/drascula/saveload.cpp:336 engines/dreamweb/saveload.cpp:261 #: engines/neverhood/menumodule.cpp:877 engines/pegasus/pegasus.cpp:377 -#: engines/sci/engine/kfile.cpp:759 engines/scumm/dialogs.cpp:188 +#: engines/sci/engine/kfile.cpp:769 engines/scumm/dialogs.cpp:188 #: engines/toltecs/menu.cpp:281 engines/tsage/scenes.cpp:598 msgid "Save" msgstr "Записати" @@ -1436,23 +1471,23 @@ msgstr " msgid "~K~eys" msgstr "~К~лавіші" -#: engines/engine.cpp:276 +#: engines/engine.cpp:339 msgid "Could not initialize color format." msgstr "Не можу налаштувати формат кольору." -#: engines/engine.cpp:284 +#: engines/engine.cpp:347 msgid "Could not switch to video mode: '" msgstr "Не вдалося переключити відеорежим: '" -#: engines/engine.cpp:293 +#: engines/engine.cpp:356 msgid "Could not apply aspect ratio setting." msgstr "Не вдалося застосувати корекцію співвідношення сторін." -#: engines/engine.cpp:298 +#: engines/engine.cpp:361 msgid "Could not apply fullscreen setting." msgstr "Не вдалося застосувати повноекранний режим." -#: engines/engine.cpp:398 +#: engines/engine.cpp:461 msgid "" "You appear to be playing this game directly\n" "from the CD. This is known to cause problems,\n" @@ -1466,7 +1501,7 @@ msgstr "" "гри на жорсткий диск.\n" "Дивіться файл README для подальших інструкцій." -#: engines/engine.cpp:409 +#: engines/engine.cpp:472 msgid "" "This game has audio tracks in its disk. These\n" "tracks need to be ripped from the disk using\n" @@ -1480,7 +1515,7 @@ msgstr "" "того, щоб можна було слухати музику у грі.\n" "Дивіться файл README для подальших інструкцій." -#: engines/engine.cpp:467 +#: engines/engine.cpp:530 #, c-format msgid "" "Gamestate load failed (%s)! Please consult the README for basic information, " @@ -1489,7 +1524,7 @@ msgstr "" "Завантаження стану гри не вдалося (%s)! . Будь-ласка, дивіться файл README " "для основної інормації, а також інструкцій, як отримати подальшу допомогу." -#: engines/engine.cpp:480 +#: engines/engine.cpp:543 msgid "" "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 " @@ -1499,10 +1534,14 @@ msgstr "" "ScummVM. Скорше за все вона не буде працювати стабільно, і збереження ігор, " "які ви зробите, можуть не працювати у подальших версіях ScummVM." -#: engines/engine.cpp:483 +#: engines/engine.cpp:546 msgid "Start anyway" msgstr "Все одно запустити" +#: audio/adlib.cpp:2291 +msgid "AdLib Emulator" +msgstr "Емулятор AdLib" + #: audio/fmopl.cpp:62 msgid "MAME OPL emulator" msgstr "Емулятор MAME OPL" @@ -1556,25 +1595,30 @@ msgstr "" "Уподобаний звуковий пристрій '%s' не може бути використаний. Дивіться файл " "логу для додаткової інформації." -#: audio/null.h:44 -msgid "No music" -msgstr "Без музики" - #: audio/mods/paula.cpp:196 msgid "Amiga Audio Emulator" msgstr "Аміга Аудіо Емулятор" -#: audio/adlib.cpp:2291 -msgid "AdLib Emulator" -msgstr "Емулятор AdLib" +#: audio/null.h:44 +msgid "No music" +msgstr "Без музики" #: audio/softsynth/appleiigs.cpp:33 msgid "Apple II GS Emulator (NOT IMPLEMENTED)" msgstr "Apple II GS Емулятор (НЕ РЕАЛІЗОВАНО)" -#: audio/softsynth/sid.cpp:1430 -msgid "C64 Audio Emulator" -msgstr "C64 Аудіо Емулятор" +#: audio/softsynth/cms.cpp:350 +msgid "Creative Music System Emulator" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:33 +msgid "FM-Towns Audio" +msgstr "" + +#: audio/softsynth/fmtowns_pc98/towns_pc98_plugins.cpp:58 +#, fuzzy +msgid "PC-98 Audio" +msgstr "Аудіо" #: audio/softsynth/mt32.cpp:200 msgid "Initializing MT-32 Emulator" @@ -1592,6 +1636,147 @@ msgstr " msgid "IBM PCjr Emulator" msgstr "Емулятор IBM PCjr" +#: audio/softsynth/sid.cpp:1430 +msgid "C64 Audio Emulator" +msgstr "C64 Аудіо Емулятор" + +#: backends/events/default/default-events.cpp:196 +msgid "Do you really want to return to the Launcher?" +msgstr "Ви дійсно хочете повернутися до головного меню?" + +#: backends/events/default/default-events.cpp:196 +msgid "Launcher" +msgstr "Головне меню" + +#: backends/events/default/default-events.cpp:218 +msgid "Do you really want to quit?" +msgstr "Ви дійсно хочете вийти?" + +#: backends/events/default/default-events.cpp:218 +#: backends/platform/symbian/src/SymbianActions.cpp:52 +#: backends/platform/wince/CEActionsPocket.cpp:44 +#: backends/platform/wince/CEActionsSmartphone.cpp:52 +#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 +#: engines/scumm/help.cpp:85 +msgid "Quit" +msgstr "Вихід" + +#: backends/events/gph/gph-events.cpp:385 +#: backends/events/gph/gph-events.cpp:428 +#: backends/events/openpandora/op-events.cpp:168 +msgid "Touchscreen 'Tap Mode' - Left Click" +msgstr "Режим дотику у тачскріні - Лівий клік" + +#: backends/events/gph/gph-events.cpp:387 +#: backends/events/gph/gph-events.cpp:430 +#: backends/events/openpandora/op-events.cpp:170 +msgid "Touchscreen 'Tap Mode' - Right Click" +msgstr "Режим дотику у тачскріні - Правий клік" + +#: backends/events/gph/gph-events.cpp:389 +#: backends/events/gph/gph-events.cpp:432 +#: backends/events/openpandora/op-events.cpp:172 +msgid "Touchscreen 'Tap Mode' - Hover (No Click)" +msgstr "Режим дотику у тачскріні - Проліт (без кліку)" + +#: backends/events/gph/gph-events.cpp:409 +msgid "Maximum Volume" +msgstr "Максимальна Гучність" + +#: backends/events/gph/gph-events.cpp:411 +msgid "Increasing Volume" +msgstr "Підвищення гучності" + +#: backends/events/gph/gph-events.cpp:417 +msgid "Minimal Volume" +msgstr "Мінімальна Гучність" + +#: backends/events/gph/gph-events.cpp:419 +msgid "Decreasing Volume" +msgstr "Пониження гучності" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Enabled" +msgstr "Кліки увімкнено" + +#: backends/events/maemosdl/maemosdl-events.cpp:180 +msgid "Clicking Disabled" +msgstr "Кліки вимкнено" + +#: backends/events/openpandora/op-events.cpp:174 +msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" +msgstr "Режим дотику у тачскріні - Проліт (клік DPad)" + +#: backends/events/symbiansdl/symbiansdl-events.cpp:186 +msgid "Do you want to quit ?" +msgstr "Ви дійсно хочете вийти?" + +#. I18N: Trackpad mode toggle status. +#: backends/events/webossdl/webossdl-events.cpp:308 +#, fuzzy +msgid "Trackpad mode is now" +msgstr "Режим тачпаду вимкнено." + +#. I18N: Trackpad mode on or off. +#. I18N: Auto-drag on or off. +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "ON" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:311 +#: backends/events/webossdl/webossdl-events.cpp:338 +msgid "OFF" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:315 +msgid "Swipe two fingers to the right to toggle." +msgstr "" + +#. I18N: Auto-drag toggle status. +#: backends/events/webossdl/webossdl-events.cpp:335 +msgid "Auto-drag mode is now" +msgstr "" + +#: backends/events/webossdl/webossdl-events.cpp:342 +msgid "Swipe three fingers to the right to toggle." +msgstr "" + +#: backends/graphics/opengl/opengl-graphics.cpp:119 +msgid "OpenGL" +msgstr "OpenGL" + +#: backends/graphics/opengl/opengl-graphics.cpp:120 +msgid "OpenGL (No filtering)" +msgstr "OpenGL (без фільтрів)" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:88 +#: backends/graphics/wincesdl/wincesdl-graphics.cpp:95 +msgid "Normal (no scaling)" +msgstr "Без збільшення" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 +msgctxt "lowres" +msgid "Normal (no scaling)" +msgstr "Без збільшення" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 +msgid "Enabled aspect ratio correction" +msgstr "Корекцію співвідношення сторін увімкнено" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 +msgid "Disabled aspect ratio correction" +msgstr "Корекцію співвідношення сторін вимкнено" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 +msgid "Active graphics filter:" +msgstr "Поточний графічний фільтр:" + +#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 +msgid "Windowed mode" +msgstr "Віконний режим" + #: backends/keymapper/remap-dialog.cpp:48 msgid "Keymap:" msgstr "Мапа клавіш:" @@ -1697,18 +1882,26 @@ msgstr " msgid "Disable power off" msgstr "Заборонити вимкнення" +#: backends/platform/ios7/ios7_osys_events.cpp:309 +#: backends/platform/ios7/ios7_osys_events.cpp:519 #: backends/platform/iphone/osys_events.cpp:300 msgid "Mouse-click-and-drag mode enabled." msgstr "Режим миші клікнути-та-тягнути увімкнено." +#: backends/platform/ios7/ios7_osys_events.cpp:311 +#: backends/platform/ios7/ios7_osys_events.cpp:521 #: backends/platform/iphone/osys_events.cpp:302 msgid "Mouse-click-and-drag mode disabled." msgstr "Режим миші клікнути-та-тягнути вимкнено." +#: backends/platform/ios7/ios7_osys_events.cpp:322 +#: backends/platform/ios7/ios7_osys_events.cpp:540 #: backends/platform/iphone/osys_events.cpp:313 msgid "Touchpad mode enabled." msgstr "Режим тачпаду увімкнено." +#: backends/platform/ios7/ios7_osys_events.cpp:324 +#: backends/platform/ios7/ios7_osys_events.cpp:542 #: backends/platform/iphone/osys_events.cpp:315 msgid "Touchpad mode disabled." msgstr "Режим тачпаду вимкнено." @@ -1719,9 +1912,9 @@ msgstr " #: backends/platform/maemo/maemo.cpp:214 #: backends/platform/symbian/src/SymbianActions.cpp:42 +#: backends/platform/tizen/form.cpp:275 #: backends/platform/wince/CEActionsPocket.cpp:60 #: backends/platform/wince/CEActionsSmartphone.cpp:43 -#: backends/platform/tizen/form.cpp:275 msgid "Left Click" msgstr "Лівий клік" @@ -1731,8 +1924,8 @@ msgstr " #: backends/platform/maemo/maemo.cpp:220 #: backends/platform/symbian/src/SymbianActions.cpp:43 -#: backends/platform/wince/CEActionsSmartphone.cpp:44 #: backends/platform/tizen/form.cpp:267 +#: backends/platform/wince/CEActionsSmartphone.cpp:44 msgid "Right Click" msgstr "Правий клік" @@ -1757,39 +1950,6 @@ msgstr " msgid "Minimize" msgstr "Мінімізувати" -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:47 -msgid "Normal (no scaling)" -msgstr "Без збільшення" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:66 -msgctxt "lowres" -msgid "Normal (no scaling)" -msgstr "Без збільшення" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2212 -msgid "Enabled aspect ratio correction" -msgstr "Корекцію співвідношення сторін увімкнено" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2218 -msgid "Disabled aspect ratio correction" -msgstr "Корекцію співвідношення сторін вимкнено" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2273 -msgid "Active graphics filter:" -msgstr "Поточний графічний фільтр:" - -#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2315 -msgid "Windowed mode" -msgstr "Віконний режим" - -#: backends/graphics/opengl/opengl-graphics.cpp:119 -msgid "OpenGL" -msgstr "OpenGL" - -#: backends/graphics/opengl/opengl-graphics.cpp:120 -msgid "OpenGL (No filtering)" -msgstr "OpenGL (без фільтрів)" - #: backends/platform/symbian/src/SymbianActions.cpp:38 #: backends/platform/wince/CEActionsSmartphone.cpp:39 msgid "Up" @@ -1833,15 +1993,6 @@ msgstr " msgid "Fast mode" msgstr "Швидкий режим" -#: backends/platform/symbian/src/SymbianActions.cpp:52 -#: backends/platform/wince/CEActionsPocket.cpp:44 -#: backends/platform/wince/CEActionsSmartphone.cpp:52 -#: backends/events/default/default-events.cpp:218 -#: engines/scumm/dialogs.cpp:192 engines/scumm/help.cpp:83 -#: engines/scumm/help.cpp:85 -msgid "Quit" -msgstr "Вихід" - #: backends/platform/symbian/src/SymbianActions.cpp:53 msgid "Debugger" msgstr "Відладчик" @@ -1858,9 +2009,50 @@ msgstr " msgid "Key mapper" msgstr "Призначення клавіш" -#: backends/events/symbiansdl/symbiansdl-events.cpp:186 -msgid "Do you want to quit ?" -msgstr "Ви дійсно хочете вийти?" +#: backends/platform/tizen/form.cpp:263 +msgid "Right Click Once" +msgstr "Один правий клік" + +#: backends/platform/tizen/form.cpp:271 +msgid "Move Only" +msgstr "Тільки перемістити" + +#: backends/platform/tizen/form.cpp:294 +msgid "Escape Key" +msgstr "Клавіша ESC" + +#: backends/platform/tizen/form.cpp:299 +msgid "Game Menu" +msgstr "Меню гри" + +#: backends/platform/tizen/form.cpp:304 +msgid "Show Keypad" +msgstr "Показати клавіатуру" + +#: backends/platform/tizen/form.cpp:309 +msgid "Control Mouse" +msgstr "Управління мишею" + +#: backends/platform/tizen/fs.cpp:259 +msgid "[ Data ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:263 +msgid "[ Resources ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:267 +msgid "[ SDCard ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:271 +msgid "[ Media ]" +msgstr "" + +#: backends/platform/tizen/fs.cpp:275 +#, fuzzy +msgid "[ Shared ]" +msgstr "Мережева папка:" #: backends/platform/wii/options.cpp:51 msgid "Video" @@ -2107,102 +2299,21 @@ msgstr "" "Не забудьте перепризначити кнопку для дії 'Сховати Панель інстр.' щоб " "побачити весь інвентар" -#: backends/events/default/default-events.cpp:196 -msgid "Do you really want to return to the Launcher?" -msgstr "Ви дійсно хочете повернутися до головного меню?" - -#: backends/events/default/default-events.cpp:196 -msgid "Launcher" -msgstr "Головне меню" - -#: backends/events/default/default-events.cpp:218 -msgid "Do you really want to quit?" -msgstr "Ви дійсно хочете вийти?" - -#: backends/events/gph/gph-events.cpp:385 -#: backends/events/gph/gph-events.cpp:428 -#: backends/events/openpandora/op-events.cpp:168 -msgid "Touchscreen 'Tap Mode' - Left Click" -msgstr "Режим дотику у тачскріні - Лівий клік" - -#: backends/events/gph/gph-events.cpp:387 -#: backends/events/gph/gph-events.cpp:430 -#: backends/events/openpandora/op-events.cpp:170 -msgid "Touchscreen 'Tap Mode' - Right Click" -msgstr "Режим дотику у тачскріні - Правий клік" - -#: backends/events/gph/gph-events.cpp:389 -#: backends/events/gph/gph-events.cpp:432 -#: backends/events/openpandora/op-events.cpp:172 -msgid "Touchscreen 'Tap Mode' - Hover (No Click)" -msgstr "Режим дотику у тачскріні - Проліт (без кліку)" - -#: backends/events/gph/gph-events.cpp:409 -msgid "Maximum Volume" -msgstr "Максимальна Гучність" - -#: backends/events/gph/gph-events.cpp:411 -msgid "Increasing Volume" -msgstr "Підвищення гучності" - -#: backends/events/gph/gph-events.cpp:417 -msgid "Minimal Volume" -msgstr "Мінімальна Гучність" - -#: backends/events/gph/gph-events.cpp:419 -msgid "Decreasing Volume" -msgstr "Пониження гучності" - -#: backends/events/openpandora/op-events.cpp:174 -msgid "Touchscreen 'Tap Mode' - Hover (DPad Clicks)" -msgstr "Режим дотику у тачскріні - Проліт (клік DPad)" - #: backends/updates/macosx/macosx-updates.mm:67 msgid "Check for Updates..." msgstr "Перевіряю оновлення..." -#: backends/platform/tizen/form.cpp:263 -msgid "Right Click Once" -msgstr "Один правий клік" - -#: backends/platform/tizen/form.cpp:271 -msgid "Move Only" -msgstr "Тільки перемістити" - -#: backends/platform/tizen/form.cpp:294 -msgid "Escape Key" -msgstr "Клавіша ESC" - -#: backends/platform/tizen/form.cpp:299 -msgid "Game Menu" -msgstr "Меню гри" - -#: backends/platform/tizen/form.cpp:304 -msgid "Show Keypad" -msgstr "Показати клавіатуру" - -#: backends/platform/tizen/form.cpp:309 -msgid "Control Mouse" -msgstr "Управління мишею" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Enabled" -msgstr "Кліки увімкнено" - -#: backends/events/maemosdl/maemosdl-events.cpp:180 -msgid "Clicking Disabled" -msgstr "Кліки вимкнено" - -#: engines/agi/detection.cpp:147 engines/drascula/detection.cpp:302 -#: engines/dreamweb/detection.cpp:47 engines/neverhood/detection.cpp:160 -#: engines/sci/detection.cpp:394 engines/toltecs/detection.cpp:200 -#: engines/zvision/detection_tables.h:51 +#: engines/agi/detection.cpp:147 engines/cine/detection.cpp:70 +#: engines/drascula/detection.cpp:302 engines/dreamweb/detection.cpp:47 +#: engines/neverhood/detection.cpp:160 engines/sci/detection.cpp:404 +#: engines/toltecs/detection.cpp:200 engines/zvision/detection_tables.h:51 msgid "Use original save/load screens" msgstr "Використовувати ориг. збереження/завантаження екрани" -#: engines/agi/detection.cpp:148 engines/drascula/detection.cpp:303 -#: engines/dreamweb/detection.cpp:48 engines/neverhood/detection.cpp:161 -#: engines/sci/detection.cpp:395 engines/toltecs/detection.cpp:201 +#: engines/agi/detection.cpp:148 engines/cine/detection.cpp:71 +#: engines/drascula/detection.cpp:303 engines/dreamweb/detection.cpp:48 +#: engines/neverhood/detection.cpp:161 engines/sci/detection.cpp:405 +#: engines/toltecs/detection.cpp:201 msgid "Use the original save/load screens, instead of the ScummVM ones" msgstr "" "Використовувати оригінальні збереження/завантаження екрани, замість ScummVM" @@ -2232,13 +2343,13 @@ msgstr "" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore game:" msgstr "Відновити гру:" #: engines/agi/saveload.cpp:816 engines/drascula/saveload.cpp:349 #: engines/dreamweb/saveload.cpp:169 engines/neverhood/menumodule.cpp:890 -#: engines/sci/engine/kfile.cpp:858 engines/toltecs/menu.cpp:256 +#: engines/sci/engine/kfile.cpp:868 engines/toltecs/menu.cpp:256 msgid "Restore" msgstr "Відновити" @@ -2646,25 +2757,35 @@ msgstr " #: engines/sci/detection.cpp:374 msgid "Skip EGA dithering pass (full color backgrounds)" -msgstr "" +msgstr "Не робити растрування EGA (фони у повному кольорі)" #: engines/sci/detection.cpp:375 msgid "Skip dithering pass in EGA games, graphics are shown with full colors" msgstr "" +"Не робити крок растрування у іграх EGA, графіку буде показано у повному " +"кольорі" #: engines/sci/detection.cpp:384 +msgid "Enable high resolution graphics" +msgstr "Увімкнути графіку високого розгалуження" + +#: engines/sci/detection.cpp:385 +msgid "Enable high resolution graphics/content" +msgstr "Увімкнути графіку та контент у високому розгалуженні" + +#: engines/sci/detection.cpp:394 msgid "Prefer digital sound effects" msgstr "Надавати перевагу цифровим звуковим ефектам" -#: engines/sci/detection.cpp:385 +#: engines/sci/detection.cpp:395 msgid "Prefer digital sound effects instead of synthesized ones" msgstr "Віддавати перевагу цифровим звуковим ефектам, а не синтезованим" -#: engines/sci/detection.cpp:404 +#: engines/sci/detection.cpp:414 msgid "Use IMF/Yamaha FB-01 for MIDI output" msgstr "Використовувати IMF/Yahama FB-01 для MIDI виходу" -#: engines/sci/detection.cpp:405 +#: engines/sci/detection.cpp:415 msgid "" "Use an IBM Music Feature card or a Yamaha FB-01 FM synth module for MIDI " "output" @@ -2672,28 +2793,28 @@ msgstr "" "Використовувати дляв виводу MIDI режим карти IBM Feature або FM сінтез " "Yamaha FB-01" -#: engines/sci/detection.cpp:415 +#: engines/sci/detection.cpp:425 msgid "Use CD audio" msgstr "Використовувати CD аудіо" -#: engines/sci/detection.cpp:416 +#: engines/sci/detection.cpp:426 msgid "Use CD audio instead of in-game audio, if available" msgstr "Використовувати CD аудіо замість у-грі аудіо, якщо такі є" -#: engines/sci/detection.cpp:426 +#: engines/sci/detection.cpp:436 msgid "Use Windows cursors" msgstr "Використовувати Windows курсори" -#: engines/sci/detection.cpp:427 +#: engines/sci/detection.cpp:437 msgid "" "Use the Windows cursors (smaller and monochrome) instead of the DOS ones" msgstr "Використовувати Windows курсори (менших і монохромних), замість DOS" -#: engines/sci/detection.cpp:437 +#: engines/sci/detection.cpp:447 msgid "Use silver cursors" msgstr "Використовувати срібні курсори" -#: engines/sci/detection.cpp:438 +#: engines/sci/detection.cpp:448 msgid "" "Use the alternate set of silver cursors, instead of the normal golden ones" msgstr "" diff --git a/ports.mk b/ports.mk index 5a2b6afff06..a9837df18cc 100644 --- a/ports.mk +++ b/ports.mk @@ -75,7 +75,7 @@ bundle: residualvm-static mkdir -p $(bundle_name)/Contents/MacOS mkdir -p $(bundle_name)/Contents/Resources echo "APPL????" > $(bundle_name)/Contents/PkgInfo - cp $(srcdir)/dists/macosx/Info.plist $(bundle_name)/Contents/ + sed -e 's/$$(PRODUCT_BUNDLE_IDENTIFIER)/org.residualvm.residualvm/' $(srcdir)/dists/macosx/Info.plist >$(bundle_name)/Contents/Info.plist ifdef USE_SPARKLE mkdir -p $(bundle_name)/Contents/Frameworks cp $(srcdir)/dists/macosx/dsa_pub.pem $(bundle_name)/Contents/Resources/ @@ -143,8 +143,16 @@ endif ifdef USE_FLUIDSYNTH OSX_STATIC_LIBS += \ - -framework CoreAudio \ - $(STATICLIBPATH)/lib/libfluidsynth.a + -liconv -framework CoreMIDI -framework CoreAudio\ + $(STATICLIBPATH)/lib/libfluidsynth.a \ + $(STATICLIBPATH)/lib/libglib-2.0.a \ + $(STATICLIBPATH)/lib/libintl.a + +ifneq ($(BACKEND), iphone) +ifneq ($(BACKEND), ios7) +OSX_STATIC_LIBS += -lreadline +endif +endif endif ifdef USE_MAD @@ -198,7 +206,7 @@ residualvm-static: $(OBJS) $(OSX_STATIC_LIBS) \ $(OSX_ZLIB) -# Special target to create a static linked binary for the iPhone +# Special target to create a static linked binary for the iPhone (legacy, and iOS 7+) iphone: $(OBJS) $(CXX) $(LDFLAGS) -o residualvm $(OBJS) \ $(OSX_STATIC_LIBS) \ diff --git a/test/common/str.h b/test/common/str.h index adc6a099e43..3ab5d828c11 100644 --- a/test/common/str.h +++ b/test/common/str.h @@ -332,6 +332,9 @@ class StringTestSuite : public CxxTest::TestSuite TS_ASSERT(!Common::matchString("monkey.s99", "monkey.s*1")); TS_ASSERT(Common::matchString("monkey.s101", "monkey.s*1")); + TS_ASSERT(Common::matchString("monkey.s01", "monkey.s##")); + TS_ASSERT(!Common::matchString("monkey.s01", "monkey.###")); + TS_ASSERT(!Common::String("").matchString("*_")); TS_ASSERT(Common::String("a").matchString("a***")); }