aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--common/gui_options.cpp5
-rw-r--r--common/gui_options.h5
-rw-r--r--devtools/create_titanic/create_titanic_dat.cpp31
-rw-r--r--engines/agi/agi.cpp2
-rw-r--r--engines/agi/agi.h2
-rw-r--r--engines/agi/appleIIgs_timedelay_overwrite.h54
-rw-r--r--engines/agi/cycle.cpp17
-rw-r--r--engines/agi/keyboard.cpp35
-rw-r--r--engines/agi/picture.h2
-rw-r--r--engines/director/director.cpp2
-rw-r--r--engines/director/lingo/lingo-code.cpp19
-rw-r--r--engines/director/lingo/lingo-funcs.cpp21
-rw-r--r--engines/director/lingo/lingo-gr.cpp1762
-rw-r--r--engines/director/lingo/lingo-gr.h252
-rw-r--r--engines/director/lingo/lingo-gr.y20
-rw-r--r--engines/director/lingo/lingo-lex.cpp6
-rw-r--r--engines/director/lingo/lingo-lex.l6
-rw-r--r--engines/drascula/detection.cpp30
-rw-r--r--engines/drascula/drascula.h4
-rw-r--r--engines/drascula/graphics.cpp5
-rw-r--r--engines/drascula/sound.cpp88
-rw-r--r--engines/titanic/sound/audio_buffer.cpp8
-rw-r--r--engines/titanic/sound/audio_buffer.h4
-rw-r--r--engines/titanic/sound/music_object.cpp46
-rw-r--r--engines/titanic/sound/music_room_handler.cpp4
-rw-r--r--engines/titanic/sound/music_wave.cpp10
-rw-r--r--engines/titanic/sound/music_wave.h2
-rw-r--r--engines/titanic/sound/wave_file.cpp86
-rw-r--r--engines/titanic/sound/wave_file.h11
-rw-r--r--gui/options.cpp66
-rw-r--r--gui/options.h3
-rw-r--r--po/be_BY.po288
-rw-r--r--po/ca_ES.po288
-rw-r--r--po/cs_CZ.po288
-rw-r--r--po/da_DK.po288
-rw-r--r--po/de_DE.po292
-rw-r--r--po/el.po288
-rw-r--r--po/es_ES.po288
-rw-r--r--po/eu.po288
-rw-r--r--po/fi_FI.po288
-rw-r--r--po/fr_FR.po292
-rw-r--r--po/gl_ES.po288
-rw-r--r--po/hu_HU.po288
-rw-r--r--po/it_IT.po288
-rw-r--r--po/nb_NO.po288
-rw-r--r--po/nl_NL.po288
-rw-r--r--po/nn_NO.po288
-rw-r--r--po/pl_PL.po288
-rw-r--r--po/pt_BR.po288
-rw-r--r--po/pt_PT.po288
-rw-r--r--po/ru_RU.po288
-rw-r--r--po/scummvm.pot288
-rw-r--r--po/sv_SE.po288
-rw-r--r--po/uk_UA.po288
-rw-r--r--po/zh-Latn_CN.po288
56 files changed, 4919 insertions, 4613 deletions
diff --git a/NEWS b/NEWS
index c7e96789e8..23c6fae91f 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,10 @@ For a more comprehensive changelog of the latest experimental code, see:
Composer:
- Added save/load from General Main Menu.
+Drascula:
+ - Add handling of the master volume and fix volume synchronization between
+ the game and ScummVM options.
+
1.9.1 (YYYY-MM-DD)
General:
- Added bilinear filtering option for SDL2 fullscreen mode.
diff --git a/common/gui_options.cpp b/common/gui_options.cpp
index df880f4fee..120edd0b91 100644
--- a/common/gui_options.cpp
+++ b/common/gui_options.cpp
@@ -29,6 +29,8 @@ namespace Common {
const struct GameOpt {
const char *option;
+ // Each description must be a unique identifier not containing a substring
+ // of any other description
const char *desc;
} g_gameOptions[] = {
{ GUIO_NOSUBTITLES, "sndNoSubs" },
@@ -36,6 +38,9 @@ const struct GameOpt {
{ GUIO_NOSPEECH, "sndNoSpeech" },
{ GUIO_NOSFX, "sndNoSFX" },
{ GUIO_NOMIDI, "sndNoMIDI" },
+ { GUIO_LINKSPEECHTOSFX, "sndLinkSpeechToSfx" },
+ { GUIO_LINKMUSICTOSFX, "sndLinkMusicToSfx" },
+ { GUIO_NOSPEECHVOLUME, "sndNoSpchVolume" },
{ GUIO_NOLAUNCHLOAD, "launchNoLoad" },
diff --git a/common/gui_options.h b/common/gui_options.h
index d17f45cac1..d51a29ad75 100644
--- a/common/gui_options.h
+++ b/common/gui_options.h
@@ -26,6 +26,7 @@
#define GUIO_NONE "\000"
#define GUIO_NOSUBTITLES "\001"
#define GUIO_NOMUSIC "\002"
+// GUIO_NOSPEECH is a combination of GUIO_NOSPEECHVOLUME and GUIO_NOSUBTITLES
#define GUIO_NOSPEECH "\003"
#define GUIO_NOSFX "\004"
#define GUIO_NOMIDI "\005"
@@ -58,6 +59,10 @@
#define GUIO_RENDERATARIST "\042"
#define GUIO_RENDERMACINTOSH "\043"
+#define GUIO_LINKSPEECHTOSFX "\044"
+#define GUIO_LINKMUSICTOSFX "\045"
+#define GUIO_NOSPEECHVOLUME "\046"
+
// Special GUIO flags for the AdvancedDetector's caching of game specific
// options.
#define GUIO_GAMEOPTIONS1 "\050"
diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp
index 1457ee62e7..09b738a452 100644
--- a/devtools/create_titanic/create_titanic_dat.cpp
+++ b/devtools/create_titanic/create_titanic_dat.cpp
@@ -788,6 +788,36 @@ static const char *const STRINGS_DE[185] = {
"Dr\0xFC" "cken Sie den Knopf um die Bombe zu entschSrfen."
};
+static const char *const MUSIC_DATA[4] = {
+ "64,^|^|^|^|^|^|^|^|^|^|^|^|^|^|^|^|8,^^^^ 5:A///|64,/|/|/|/|/|/|/"
+ "|/|/|/|/|/|/|/|/|/|^|^|^|^|^|^|^|^|^|16, ^B//|64,/|/|/|/|^|16,^C/"
+ "/|64,/|/|/|/|",
+ "2:8,^^^^B//a|//g//B//|g///B//a|//g//A//|B//^C//b|//a//a//|BCb/b//"
+ "a|//g//A//|g/+f/D//c|//b//gA/|g/^^C//C|//C//a//|BCb////a|//g//g//"
+ "|g/g//B/a|/g//////|//^^B//a|//g//B//|g///B//a|//g//B//|g//^C//b|/"
+ "/a//a//|BCb/b//a|//g//B//|g/+f/D//c|//b//gA/|g/^^C//C|//C//a//|BC"
+ "b////a|//g//g//|g/g//B/a|/g//////|3:^^B//a//|g//A//g/|/^B//a//|g/"
+ "/A//B/|b^ 3:C//b//|a//g//+f/|+fG/G/GA/|B/a/g///|B///+f//G|G/G/+f/"
+ "G/|^^e//d//|c//b//gA|g/B//a//|g//g//g/|g//B/a/g|//////^^|^^Ga///G"
+ "|////////|////////|////////|",
+ "2:8,^^^^^^D/|/E//E//E|/d//^^d/|/E//E//E|/E//^^G/|/d//d//d|/^^^^^d"
+ "/|/E//E//E|/d/^^^E/|/E//d/+F/|bD^^^^G/|/e//e//e|^^^^^^d/|/E//E//E"
+ "|//d///d/|//b/////|^^^^^^D/|/E//E//E|/d//^^d/|/E//E//E|/E//^^G/|/"
+ "d//d//d|/^^^^^d/|/E//E//E|/d/^^^E/|/E//d/d/|d/^^^^G/|/e//e//e|^^^"
+ "^^^d/|/E//E//E|//d///d/|//b/////|3:D///c//b|//b//b//|D///c//b|//b"
+ "//g//|E///d//c|//b//a//|aB/B/BC/|D/c/b///|^^^D//DE|/E/E/d/d|//E/g"
+ "//g|//g//d//|^^^^g//E|//E//E//|d///d///|b///////|// 3:Db///C|///b"
+ "/// 5:A|64,/|/|/|/|/|/|/|/|",
+ "2:8,^^G//+f//|e//e//e/|//G//+f//|e//e//+F/|G/a//g//|+f//+f//+f/|/"
+ "/G//+F//|e//e//e/|//B//a//|g//e///d|//c//b//|a//a//a/|+f/G// 2:+F"
+ "//|e//e//C/|//b/g/+f/|//G/////|^^G//+f//|e//e//e/|//G//+f//|e//e/"
+ "/e/|//a//g//|+f//+f//+f/|//G//+F//|e//e//e/|//B//a//|g//e///d|/ "
+ "2:dC//b//|a//a//a/|+f/G//+F//|e//e//C/|//b/g/+f/|//G/////|d//d//d"
+ "/|/E//E//d|d//d//E/|/+F//G//b|a//a//a/|/D//D// 3:D|//g/g//D|/d/G/"
+ "///|^^b//b//|b//ba/B/|c//B//a/|/g//+f//+f|G//+F//e/|/c//C///|b/g/"
+ "+f///|G///////|G///////|C///////|////////|////////|"
+};
+
void NORETURN_PRE error(const char *s, ...) {
printf("%s\n", s);
exit(1);
@@ -1269,6 +1299,7 @@ void writeData() {
writeStringArray("TEXT/REPLACEMENTS2", TEXT_REPLACEMENTS2[_version], 1576);
writeStringArray("TEXT/REPLACEMENTS3", TEXT_REPLACEMENTS3[_version], 82);
writeStringArray("TEXT/PRONOUNS", TEXT_PRONOUNS[_version], 15);
+ writeStringArray("MUSIC/PARSER", MUSIC_DATA, 4);
const int SENTENCES_DEFAULT[3] = { 0x5C0130, 0x5BEFC8, 0x5BE008 };
const int SENTENCES_BARBOT[2][3] = {
diff --git a/engines/agi/agi.cpp b/engines/agi/agi.cpp
index 60c8d1f3ef..b293a8e9e5 100644
--- a/engines/agi/agi.cpp
+++ b/engines/agi/agi.cpp
@@ -173,6 +173,7 @@ int AgiEngine::agiInit() {
#endif
_keyHoldMode = false;
+ _keyHoldModeLastKey = Common::KEYCODE_INVALID;
_game.mouseFence.setWidth(0); // Reset
@@ -423,6 +424,7 @@ AgiEngine::AgiEngine(OSystem *syst, const AGIGameDescription *gameDesc) : AgiBas
_inventory = nullptr;
_keyHoldMode = false;
+ _keyHoldModeLastKey = Common::KEYCODE_INVALID;
_artificialDelayCurrentRoom = 0;
_artificialDelayCurrentPicture = 0;
diff --git a/engines/agi/agi.h b/engines/agi/agi.h
index b8c30e9d5c..2b62f9757a 100644
--- a/engines/agi/agi.h
+++ b/engines/agi/agi.h
@@ -27,6 +27,7 @@
#include "common/error.h"
#include "common/util.h"
#include "common/file.h"
+#include "common/keyboard.h"
#include "common/rect.h"
#include "common/rendermode.h"
#include "common/stack.h"
@@ -936,6 +937,7 @@ public:
int getDirection(int16 objX, int16 objY, int16 destX, int16 destY, int16 stepSize);
bool _keyHoldMode;
+ Common::KeyCode _keyHoldModeLastKey;
// Keyboard
int doPollKeyboard();
diff --git a/engines/agi/appleIIgs_timedelay_overwrite.h b/engines/agi/appleIIgs_timedelay_overwrite.h
index c24d7cb5bd..06b94bf3fc 100644
--- a/engines/agi/appleIIgs_timedelay_overwrite.h
+++ b/engines/agi/appleIIgs_timedelay_overwrite.h
@@ -28,46 +28,50 @@ namespace Agi {
struct AgiAppleIIgsDelayOverwriteRoomEntry {
int16 fromRoom;
int16 toRoom;
- int16 timeDelayOverwrite; // time delay here is like on PC, so 0 - unlimited, 1 - 20 cycles, 2 - 10 cycles
- bool onlyWhenPlayerNotInControl;
+ int16 activePictureNr; // resource number of current active background picture
+ int16 timeDelayOverwrite; // time delay here is like on PC
+ // so 0 - unlimited, 1 - 20 cycles, 2 - 10 cycles, -1 means do not touch speed set by scripts
+ bool onlyWhenPlayerNotInControl; // only sets spee, when play is not in control
};
struct AgiAppleIIgsDelayOverwriteGameEntry {
uint32 gameId;
- int16 defaultTimeDelayOverwrite; // time delay here is like on PC, so 0 - unlimited, 1 - 20 cycles, 2 - 10 cycles
- const AgiAppleIIgsDelayOverwriteRoomEntry *roomTable;
+ int16 defaultTimeDelayOverwrite; // time delay here is like on PC
+ // so 0 - unlimited, 1 - 20 cycles, 2 - 10 cycles, -1 means do not touch speed set by scripts
+ const AgiAppleIIgsDelayOverwriteRoomEntry *roomTable; // pointer to room table (optional)
};
static const AgiAppleIIgsDelayOverwriteRoomEntry appleIIgsDelayOverwriteKQ4[] = {
- { 120, 121, -1, true }, // Part of the intro: Graham gets his hat, throws it and breaks down, don't touch speed (3 is set)
- { 128, 128, -1, true }, // Part of the intro: first actual room for gameplay, but during intro, don't touch speed (3 is set)
- { 92, 92, -1, true }, // Part of caught by gargoyle w/ Lolotte cutscene (3 is set)
+ { 120, 121, -1, -1, true }, // Part of the intro: Graham gets his hat, throws it and breaks down, don't touch speed (3 is set)
+ { 128, 128, -1, -1, true }, // Part of the intro: first actual room for gameplay, but during intro, don't touch speed (3 is set)
+ { 92, 92, -1, -1, true }, // Part of caught by gargoyle w/ Lolotte cutscene (3 is set)
// room 54 sets the speed for a short time to 3 right after entering "clean" command. It doesn't seem to hurt that we switch it down to 2
// room 92 is dual use, part of cutscenes, part of gameplay, that's why we only stop touching it, when player is not in control
- { 135, 135, -1, true }, // Part of ending cutscene. Don't touch speed (3 is set)
- { -1, -1, -1, false }
+ { 135, 135, -1, -1, true }, // Part of ending cutscene. Don't touch speed (3 is set)
+ { -1, -1, -1, -1, false }
};
static const AgiAppleIIgsDelayOverwriteRoomEntry appleIIgsDelayOverwriteMH1[] = {
- //{ 153, 153, 2, false }, // Intro w/ credits
- //{ 104, 104, 2, false }, // Intro cutscene
- //{ 117, 117, 2, false }, // Intro cutscene (ego waking up)
- { 114, 114, -1, false }, // interactive MAD map
- { 124, 125, -1, false }, // MAD during intro (tracking), seem to work properly at given speed
- { 132, 133, -1, false }, // MAD day 2 intro (tracking)
- { 137, 137, -1, false }, // Night Club 4th arcade game - game sets speed to 7
- { 115, 116, -1, false }, // MAD day 3 intro (tracking)
- { 148, 148, -1, false }, // day 3: arcade sequence under pawn shop (game sets speed to 6)
- { 103, 103, -1, false }, // MAD day 4 intro (tracking)
- { 105, 105, -1, false }, // day 4 tracking mini game right at the start (game sets speed to 3)
- { 107, 107, -1, false }, // MAD day 4 intro (tracking)
- { 112, 112, -1, false }, // MAD day 4 intro (tracking)
- { -1, -1, -1, false }
+ //{ 153, 153, -1, 2, false }, // Intro w/ credits
+ //{ 104, 104, -1, 2, false }, // Intro cutscene
+ //{ 117, 117, -1, 2, false }, // Intro cutscene (ego waking up)
+ { 114, 114, -1, -1, false }, // interactive MAD map
+ { 124, 125, -1, -1, false }, // MAD during intro (tracking), seem to work properly at given speed
+ { 132, 133, -1, -1, false }, // MAD day 2 intro (tracking)
+ { 137, 137, 17, -1, false }, // Night Club 4th arcade game - game sets speed to 7, needs to run that slow to be playable
+ { 137, 137, -1, 4, false }, // Night Club first few arcade games - game sets speed to 0, we need to fix it
+ { 115, 116, -1, -1, false }, // MAD day 3 intro (tracking)
+ { 148, 148, -1, -1, false }, // day 3: arcade sequence under pawn shop (game sets speed to 6)
+ { 103, 103, -1, -1, false }, // MAD day 4 intro (tracking)
+ { 105, 105, -1, -1, false }, // day 4 tracking mini game right at the start (game sets speed to 3)
+ { 107, 107, -1, -1, false }, // MAD day 4 intro (tracking)
+ { 112, 112, -1, -1, false }, // MAD day 4 intro (tracking)
+ { -1, -1, -1, -1, false }
};
static const AgiAppleIIgsDelayOverwriteRoomEntry appleIIgsDelayOverwriteSQ2[] = {
- { 1, 1, -1, false }, // Intro: space ship entering space port, don't touch speed
- { -1, -1, -1, false }
+ { 1, 1, -1, -1, false }, // Intro: space ship entering space port, don't touch speed
+ { -1, -1, -1, -1, false }
};
static const AgiAppleIIgsDelayOverwriteGameEntry appleIIgsDelayOverwriteGameTable[] = {
diff --git a/engines/agi/cycle.cpp b/engines/agi/cycle.cpp
index 4148306de2..d09a9501d6 100644
--- a/engines/agi/cycle.cpp
+++ b/engines/agi/cycle.cpp
@@ -377,19 +377,22 @@ int AgiEngine::playGame() {
// Now check, if we got a time delay overwrite entry for current room
if (appleIIgsDelayOverwrite->roomTable) {
byte curRoom = getVar(VM_VAR_CURRENT_ROOM);
+ int16 curPictureNr = _picture->getResourceNr();
appleIIgsDelayRoomOverwrite = appleIIgsDelayOverwrite->roomTable;
while (appleIIgsDelayRoomOverwrite->fromRoom >= 0) {
if ((appleIIgsDelayRoomOverwrite->fromRoom <= curRoom) && (appleIIgsDelayRoomOverwrite->toRoom >= curRoom)) {
- if (appleIIgsDelayRoomOverwrite->onlyWhenPlayerNotInControl) {
- if (_game.playerControl) {
- // Player is actually currently in control? -> then skip this entry
- appleIIgsDelayRoomOverwrite++;
- continue;
+ if ((appleIIgsDelayRoomOverwrite->activePictureNr == curPictureNr) || (appleIIgsDelayRoomOverwrite->activePictureNr == -1)) {
+ if (appleIIgsDelayRoomOverwrite->onlyWhenPlayerNotInControl) {
+ if (_game.playerControl) {
+ // Player is actually currently in control? -> then skip this entry
+ appleIIgsDelayRoomOverwrite++;
+ continue;
+ }
}
+ timeDelayOverwrite = appleIIgsDelayRoomOverwrite->timeDelayOverwrite;
+ break;
}
- timeDelayOverwrite = appleIIgsDelayRoomOverwrite->timeDelayOverwrite;
- break;
}
appleIIgsDelayRoomOverwrite++;
}
diff --git a/engines/agi/keyboard.cpp b/engines/agi/keyboard.cpp
index 7ed67949b5..8fb49fdf02 100644
--- a/engines/agi/keyboard.cpp
+++ b/engines/agi/keyboard.cpp
@@ -247,6 +247,29 @@ void AgiEngine::processScummVMEvents() {
default:
break;
}
+
+ switch (event.kbd.keycode) {
+ case Common::KEYCODE_LEFT:
+ case Common::KEYCODE_RIGHT:
+ case Common::KEYCODE_UP:
+ case Common::KEYCODE_DOWN:
+ case Common::KEYCODE_HOME:
+ case Common::KEYCODE_END:
+ case Common::KEYCODE_PAGEUP:
+ case Common::KEYCODE_PAGEDOWN:
+ case Common::KEYCODE_KP4:
+ case Common::KEYCODE_KP6:
+ case Common::KEYCODE_KP8:
+ case Common::KEYCODE_KP2:
+ case Common::KEYCODE_KP9:
+ case Common::KEYCODE_KP3:
+ case Common::KEYCODE_KP7:
+ case Common::KEYCODE_KP1:
+ _keyHoldModeLastKey = event.kbd.keycode;
+ break;
+ default:
+ break;
+ }
}
if (key)
keyEnqueue(key);
@@ -255,8 +278,12 @@ void AgiEngine::processScummVMEvents() {
case Common::EVENT_KEYUP:
if (_keyHoldMode) {
// Original AGI actually created direction events in here
- // We don't do that, that's why we create a stationary event instead, which will
- // result in a direction change to 0 in handleController().
+ // but only in case the last pressed cursor key was released, in other cases it did nothing.
+ // So when you pressed and held down left and then pressed up, and then released left,
+ // direction wouldn't be changed at all.
+ //
+ // We don't create direction events in here, that's why we create a stationary event instead,
+ // which will result in a direction change to 0 in handleController().
switch (event.kbd.keycode) {
case Common::KEYCODE_LEFT:
case Common::KEYCODE_RIGHT:
@@ -274,7 +301,9 @@ void AgiEngine::processScummVMEvents() {
case Common::KEYCODE_KP3:
case Common::KEYCODE_KP7:
case Common::KEYCODE_KP1:
- keyEnqueue(AGI_KEY_STATIONARY);
+ if (_keyHoldModeLastKey == event.kbd.keycode) {
+ keyEnqueue(AGI_KEY_STATIONARY);
+ }
break;
default:
break;
diff --git a/engines/agi/picture.h b/engines/agi/picture.h
index dfc505d8d0..2cb5bfabc8 100644
--- a/engines/agi/picture.h
+++ b/engines/agi/picture.h
@@ -64,6 +64,8 @@ class PictureMgr {
public:
PictureMgr(AgiBase *agi, GfxMgr *gfx);
+ int16 getResourceNr() { return _resourceNr; };
+
private:
void draw_xCorner(bool skipOtherCoords = false);
void yCorner(bool skipOtherCoords = false);
diff --git a/engines/director/director.cpp b/engines/director/director.cpp
index d9bf8cd0cc..4806b57cdf 100644
--- a/engines/director/director.cpp
+++ b/engines/director/director.cpp
@@ -139,7 +139,7 @@ Common::Error DirectorEngine::run() {
if (getPlatform() == Common::kPlatformWindows) {
_sharedCastFile = "SHARDCST.MMM";
} else {
- if (getVersion() < 3)
+ if (getVersion() < 4)
_sharedCastFile = "Shared Cast";
else
_sharedCastFile = "Shared.dir";
diff --git a/engines/director/lingo/lingo-code.cpp b/engines/director/lingo/lingo-code.cpp
index 7ab69c025d..ee32cf06e5 100644
--- a/engines/director/lingo/lingo-code.cpp
+++ b/engines/director/lingo/lingo-code.cpp
@@ -887,8 +887,6 @@ void Lingo::c_repeatwithcode(void) {
if (!g_lingo->_returning)
g_lingo->_pc = end; /* next stmt */
-
- delete counter;
}
void Lingo::c_exitRepeat(void) {
@@ -1065,11 +1063,24 @@ void Lingo::call(Common::String name, int nargs) {
}
if (sym->type == BLTIN || sym->type == FBLTIN) {
- if (sym->u.bltin == b_factory)
+ if (sym->u.bltin == b_factory) {
g_lingo->factoryCall(name, nargs);
- else
+ } else {
+ int stackSize = _stack.size() - nargs;
+
(*sym->u.bltin)(nargs);
+ int stackNewSize = _stack.size();
+
+ if (sym->type == FBLTIN) {
+ if (stackNewSize - stackSize != 1)
+ warning("built-in function %s did not return value", name.c_str());
+ } else {
+ if (stackNewSize - stackSize != 0)
+ warning("built-in procedure %s returned extra %d values", name.c_str(), stackNewSize - stackSize);
+ }
+ }
+
return;
}
diff --git a/engines/director/lingo/lingo-funcs.cpp b/engines/director/lingo/lingo-funcs.cpp
index a6dc3f0c5e..4bd85905c9 100644
--- a/engines/director/lingo/lingo-funcs.cpp
+++ b/engines/director/lingo/lingo-funcs.cpp
@@ -20,13 +20,16 @@
*
*/
-#include "director/lingo/lingo.h"
-#include "common/file.h"
#include "audio/decoders/wave.h"
+#include "common/file.h"
+#include "common/macresman.h"
#include "common/util.h"
+
+#include "graphics/macgui/macwindowmanager.h"
+
+#include "director/lingo/lingo.h"
#include "director/lingo/lingo-gr.h"
#include "director/sound.h"
-#include "graphics/macgui/macwindowmanager.h"
namespace Director {
@@ -180,8 +183,16 @@ void Lingo::func_goto(Datum &frame, Datum &movie) {
Common::File file;
if (!file.open(*movie.u.s)) {
- warning("Movie %s does not exist", movie.u.s->c_str());
- return;
+ if (_vm->getPlatform() == Common::kPlatformMacintosh) {
+ Common::MacResManager resMan;
+ if (!resMan.open(*movie.u.s)) {
+ warning("Movie %s does not exist", movie.u.s->c_str());
+ return;
+ }
+ } else {
+ warning("Movie %s does not exist", movie.u.s->c_str());
+ return;
+ }
}
_vm->_nextMovie = *movie.u.s;
diff --git a/engines/director/lingo/lingo-gr.cpp b/engines/director/lingo/lingo-gr.cpp
index f59cae743a..f32f171c07 100644
--- a/engines/director/lingo/lingo-gr.cpp
+++ b/engines/director/lingo/lingo-gr.cpp
@@ -87,68 +87,69 @@
FBLTIN = 276,
FBLTINNOARGS = 277,
FBLTINONEARG = 278,
- ID = 279,
- STRING = 280,
- HANDLER = 281,
- SYMBOL = 282,
- ENDCLAUSE = 283,
- tPLAYACCEL = 284,
- tDOWN = 285,
- tELSE = 286,
- tNLELSIF = 287,
- tEXIT = 288,
- tFRAME = 289,
- tGLOBAL = 290,
- tGO = 291,
- tIF = 292,
- tINTO = 293,
- tLOOP = 294,
- tMACRO = 295,
- tMOVIE = 296,
- tNEXT = 297,
- tOF = 298,
- tPREVIOUS = 299,
- tPUT = 300,
- tREPEAT = 301,
- tSET = 302,
- tTHEN = 303,
- tTO = 304,
- tWHEN = 305,
- tWITH = 306,
- tWHILE = 307,
- tNLELSE = 308,
- tFACTORY = 309,
- tMETHOD = 310,
- tOPEN = 311,
- tPLAY = 312,
- tDONE = 313,
- tINSTANCE = 314,
- tGE = 315,
- tLE = 316,
- tGT = 317,
- tLT = 318,
- tEQ = 319,
- tNEQ = 320,
- tAND = 321,
- tOR = 322,
- tNOT = 323,
- tMOD = 324,
- tAFTER = 325,
- tBEFORE = 326,
- tCONCAT = 327,
- tCONTAINS = 328,
- tSTARTS = 329,
- tCHAR = 330,
- tITEM = 331,
- tLINE = 332,
- tWORD = 333,
- tSPRITE = 334,
- tINTERSECTS = 335,
- tWITHIN = 336,
- tTELL = 337,
- tPROPERTY = 338,
- tON = 339,
- tME = 340
+ FBLTINARGLIST = 279,
+ ID = 280,
+ STRING = 281,
+ HANDLER = 282,
+ SYMBOL = 283,
+ ENDCLAUSE = 284,
+ tPLAYACCEL = 285,
+ tDOWN = 286,
+ tELSE = 287,
+ tNLELSIF = 288,
+ tEXIT = 289,
+ tFRAME = 290,
+ tGLOBAL = 291,
+ tGO = 292,
+ tIF = 293,
+ tINTO = 294,
+ tLOOP = 295,
+ tMACRO = 296,
+ tMOVIE = 297,
+ tNEXT = 298,
+ tOF = 299,
+ tPREVIOUS = 300,
+ tPUT = 301,
+ tREPEAT = 302,
+ tSET = 303,
+ tTHEN = 304,
+ tTO = 305,
+ tWHEN = 306,
+ tWITH = 307,
+ tWHILE = 308,
+ tNLELSE = 309,
+ tFACTORY = 310,
+ tMETHOD = 311,
+ tOPEN = 312,
+ tPLAY = 313,
+ tDONE = 314,
+ tINSTANCE = 315,
+ tGE = 316,
+ tLE = 317,
+ tGT = 318,
+ tLT = 319,
+ tEQ = 320,
+ tNEQ = 321,
+ tAND = 322,
+ tOR = 323,
+ tNOT = 324,
+ tMOD = 325,
+ tAFTER = 326,
+ tBEFORE = 327,
+ tCONCAT = 328,
+ tCONTAINS = 329,
+ tSTARTS = 330,
+ tCHAR = 331,
+ tITEM = 332,
+ tLINE = 333,
+ tWORD = 334,
+ tSPRITE = 335,
+ tINTERSECTS = 336,
+ tWITHIN = 337,
+ tTELL = 338,
+ tPROPERTY = 339,
+ tON = 340,
+ tME = 341
};
#endif
/* Tokens. */
@@ -173,68 +174,69 @@
#define FBLTIN 276
#define FBLTINNOARGS 277
#define FBLTINONEARG 278
-#define ID 279
-#define STRING 280
-#define HANDLER 281
-#define SYMBOL 282
-#define ENDCLAUSE 283
-#define tPLAYACCEL 284
-#define tDOWN 285
-#define tELSE 286
-#define tNLELSIF 287
-#define tEXIT 288
-#define tFRAME 289
-#define tGLOBAL 290
-#define tGO 291
-#define tIF 292
-#define tINTO 293
-#define tLOOP 294
-#define tMACRO 295
-#define tMOVIE 296
-#define tNEXT 297
-#define tOF 298
-#define tPREVIOUS 299
-#define tPUT 300
-#define tREPEAT 301
-#define tSET 302
-#define tTHEN 303
-#define tTO 304
-#define tWHEN 305
-#define tWITH 306
-#define tWHILE 307
-#define tNLELSE 308
-#define tFACTORY 309
-#define tMETHOD 310
-#define tOPEN 311
-#define tPLAY 312
-#define tDONE 313
-#define tINSTANCE 314
-#define tGE 315
-#define tLE 316
-#define tGT 317
-#define tLT 318
-#define tEQ 319
-#define tNEQ 320
-#define tAND 321
-#define tOR 322
-#define tNOT 323
-#define tMOD 324
-#define tAFTER 325
-#define tBEFORE 326
-#define tCONCAT 327
-#define tCONTAINS 328
-#define tSTARTS 329
-#define tCHAR 330
-#define tITEM 331
-#define tLINE 332
-#define tWORD 333
-#define tSPRITE 334
-#define tINTERSECTS 335
-#define tWITHIN 336
-#define tTELL 337
-#define tPROPERTY 338
-#define tON 339
-#define tME 340
+#define FBLTINARGLIST 279
+#define ID 280
+#define STRING 281
+#define HANDLER 282
+#define SYMBOL 283
+#define ENDCLAUSE 284
+#define tPLAYACCEL 285
+#define tDOWN 286
+#define tELSE 287
+#define tNLELSIF 288
+#define tEXIT 289
+#define tFRAME 290
+#define tGLOBAL 291
+#define tGO 292
+#define tIF 293
+#define tINTO 294
+#define tLOOP 295
+#define tMACRO 296
+#define tMOVIE 297
+#define tNEXT 298
+#define tOF 299
+#define tPREVIOUS 300
+#define tPUT 301
+#define tREPEAT 302
+#define tSET 303
+#define tTHEN 304
+#define tTO 305
+#define tWHEN 306
+#define tWITH 307
+#define tWHILE 308
+#define tNLELSE 309
+#define tFACTORY 310
+#define tMETHOD 311
+#define tOPEN 312
+#define tPLAY 313
+#define tDONE 314
+#define tINSTANCE 315
+#define tGE 316
+#define tLE 317
+#define tGT 318
+#define tLT 319
+#define tEQ 320
+#define tNEQ 321
+#define tAND 322
+#define tOR 323
+#define tNOT 324
+#define tMOD 325
+#define tAFTER 326
+#define tBEFORE 327
+#define tCONCAT 328
+#define tCONTAINS 329
+#define tSTARTS 330
+#define tCHAR 331
+#define tITEM 332
+#define tLINE 333
+#define tWORD 334
+#define tSPRITE 335
+#define tINTERSECTS 336
+#define tWITHIN 337
+#define tTELL 338
+#define tPROPERTY 339
+#define tON 340
+#define tME 341
@@ -302,7 +304,7 @@ typedef union YYSTYPE
Common::Array<double> *arr;
}
/* Line 193 of yacc.c. */
-#line 306 "engines/director/lingo/lingo-gr.cpp"
+#line 308 "engines/director/lingo/lingo-gr.cpp"
YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
@@ -315,7 +317,7 @@ typedef union YYSTYPE
/* Line 216 of yacc.c. */
-#line 319 "engines/director/lingo/lingo-gr.cpp"
+#line 321 "engines/director/lingo/lingo-gr.cpp"
#ifdef short
# undef short
@@ -528,22 +530,22 @@ union yyalloc
#endif
/* YYFINAL -- State number of the termination state. */
-#define YYFINAL 119
+#define YYFINAL 123
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 1668
+#define YYLAST 1818
/* YYNTOKENS -- Number of terminals. */
-#define YYNTOKENS 101
+#define YYNTOKENS 102
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 43
/* YYNRULES -- Number of rules. */
-#define YYNRULES 158
+#define YYNRULES 161
/* YYNRULES -- Number of states. */
-#define YYNSTATES 346
+#define YYNSTATES 355
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
-#define YYMAXUTOK 340
+#define YYMAXUTOK 341
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
@@ -552,15 +554,15 @@ union yyalloc
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 93, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 94, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 92, 87, 2,
- 94, 95, 90, 88, 100, 89, 2, 91, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 93, 88, 2,
+ 95, 96, 91, 89, 101, 90, 2, 92, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 97, 86, 96, 2, 2, 2, 2, 2, 2, 2,
+ 98, 87, 97, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 98, 2, 99, 2, 2, 2, 2, 2, 2,
+ 2, 99, 2, 100, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
@@ -585,7 +587,7 @@ static const yytype_uint8 yytranslate[] =
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
- 85
+ 85, 86
};
#if YYDEBUG
@@ -599,82 +601,84 @@ static const yytype_uint16 yyprhs[] =
131, 142, 153, 160, 171, 182, 183, 187, 190, 192,
195, 197, 204, 206, 213, 215, 219, 223, 226, 230,
232, 234, 235, 236, 237, 240, 243, 247, 249, 251,
- 253, 255, 257, 259, 262, 267, 269, 271, 274, 276,
- 280, 284, 288, 292, 296, 300, 304, 308, 312, 316,
- 320, 324, 327, 331, 335, 339, 343, 346, 349, 353,
- 357, 362, 367, 372, 379, 384, 391, 396, 403, 408,
- 415, 418, 420, 422, 425, 427, 430, 433, 436, 438,
- 441, 444, 446, 449, 454, 461, 466, 469, 473, 475,
- 479, 481, 485, 487, 491, 494, 497, 500, 503, 507,
- 510, 513, 515, 519, 522, 525, 528, 532, 535, 536,
- 540, 541, 550, 553, 554, 563, 564, 565, 576, 577,
- 579, 583, 588, 589, 592, 593, 595, 599, 601
+ 253, 255, 257, 259, 262, 265, 270, 275, 277, 279,
+ 282, 284, 288, 292, 296, 300, 304, 308, 312, 316,
+ 320, 324, 328, 332, 335, 339, 343, 347, 351, 354,
+ 357, 361, 365, 370, 375, 380, 387, 392, 399, 404,
+ 411, 416, 423, 426, 428, 430, 433, 435, 438, 441,
+ 444, 446, 449, 452, 454, 457, 462, 467, 474, 479,
+ 482, 486, 488, 492, 494, 498, 500, 504, 507, 510,
+ 513, 516, 520, 523, 526, 528, 532, 535, 538, 541,
+ 545, 548, 549, 553, 554, 563, 566, 567, 576, 577,
+ 578, 589, 590, 592, 596, 601, 602, 605, 606, 608,
+ 612, 614
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
- 102, 0, -1, 102, 103, 104, -1, 104, -1, 1,
- 103, -1, 93, -1, -1, 134, -1, 141, -1, 107,
- -1, 45, 124, 38, 24, -1, 45, 124, 70, 124,
- -1, 45, 124, 71, 124, -1, 47, 24, 86, 124,
- -1, 47, 12, 86, 124, -1, 47, 13, 124, 86,
- 124, -1, 47, 24, 49, 124, -1, 47, 12, 49,
- 124, -1, 47, 13, 124, 49, 124, -1, 124, -1,
- 125, -1, 106, -1, 108, -1, 115, 94, 114, 95,
- 121, 120, 28, -1, 116, 86, 124, 120, 49, 124,
- 120, 121, 120, 28, -1, 116, 86, 124, 120, 30,
- 49, 124, 120, 121, 120, 28, -1, 122, 106, 120,
- -1, 123, 124, 103, 121, 120, 28, -1, 123, 124,
- 49, 124, -1, 117, 114, 48, 103, 121, 120, 28,
- -1, 117, 114, 48, 103, 121, 120, 53, 121, 120,
- 28, -1, 117, 114, 48, 103, 121, 120, 119, 110,
- 120, 28, -1, 117, 114, 48, 119, 106, 120, -1,
- 117, 114, 48, 119, 106, 120, 53, 119, 106, 120,
- -1, 117, 114, 48, 119, 106, 120, 111, 120, 109,
- 120, -1, -1, 53, 119, 106, -1, 110, 113, -1,
- 113, -1, 111, 112, -1, 112, -1, 118, 114, 48,
- 119, 107, 120, -1, 111, -1, 118, 114, 48, 119,
- 121, 120, -1, 124, -1, 124, 86, 124, -1, 94,
- 114, 95, -1, 46, 52, -1, 46, 51, 24, -1,
- 37, -1, 32, -1, -1, -1, -1, 121, 103, -1,
- 121, 107, -1, 50, 24, 48, -1, 82, -1, 11,
- -1, 14, -1, 27, -1, 25, -1, 22, -1, 23,
- 124, -1, 24, 94, 142, 95, -1, 24, -1, 12,
- -1, 13, 124, -1, 105, -1, 124, 88, 124, -1,
- 124, 89, 124, -1, 124, 90, 124, -1, 124, 91,
- 124, -1, 124, 69, 124, -1, 124, 96, 124, -1,
- 124, 97, 124, -1, 124, 65, 124, -1, 124, 60,
- 124, -1, 124, 61, 124, -1, 124, 66, 124, -1,
- 124, 67, 124, -1, 68, 124, -1, 124, 87, 124,
- -1, 124, 72, 124, -1, 124, 73, 124, -1, 124,
- 74, 124, -1, 88, 124, -1, 89, 124, -1, 94,
- 124, 95, -1, 98, 142, 99, -1, 79, 124, 80,
- 124, -1, 79, 124, 81, 124, -1, 75, 124, 43,
- 124, -1, 75, 124, 49, 124, 43, 124, -1, 76,
- 124, 43, 124, -1, 76, 124, 49, 124, 43, 124,
- -1, 77, 124, 43, 124, -1, 77, 124, 49, 124,
- 43, 124, -1, 78, 124, 43, 124, -1, 78, 124,
- 49, 124, 43, 124, -1, 45, 124, -1, 129, -1,
- 132, -1, 33, 46, -1, 33, -1, 35, 126, -1,
- 83, 127, -1, 59, 128, -1, 16, -1, 18, 124,
- -1, 17, 124, -1, 17, -1, 19, 143, -1, 85,
- 94, 24, 95, -1, 85, 94, 24, 100, 142, 95,
- -1, 56, 124, 51, 124, -1, 56, 124, -1, 20,
- 24, 142, -1, 24, -1, 126, 100, 24, -1, 24,
- -1, 127, 100, 24, -1, 24, -1, 128, 100, 24,
- -1, 36, 39, -1, 36, 42, -1, 36, 44, -1,
- 36, 130, -1, 36, 130, 131, -1, 36, 131, -1,
- 34, 124, -1, 124, -1, 43, 41, 124, -1, 41,
- 124, -1, 57, 58, -1, 57, 130, -1, 57, 130,
- 131, -1, 57, 131, -1, -1, 29, 133, 142, -1,
- -1, 40, 24, 135, 119, 139, 103, 140, 121, -1,
- 54, 24, -1, -1, 55, 24, 136, 119, 139, 103,
- 140, 121, -1, -1, -1, 84, 24, 137, 119, 138,
- 139, 103, 140, 121, 28, -1, -1, 24, -1, 139,
- 100, 24, -1, 139, 103, 100, 24, -1, -1, 24,
- 143, -1, -1, 124, -1, 142, 100, 124, -1, 124,
- -1, 143, 100, 124, -1
+ 103, 0, -1, 103, 104, 105, -1, 105, -1, 1,
+ 104, -1, 94, -1, -1, 135, -1, 142, -1, 108,
+ -1, 46, 125, 39, 25, -1, 46, 125, 71, 125,
+ -1, 46, 125, 72, 125, -1, 48, 25, 87, 125,
+ -1, 48, 12, 87, 125, -1, 48, 13, 125, 87,
+ 125, -1, 48, 25, 50, 125, -1, 48, 12, 50,
+ 125, -1, 48, 13, 125, 50, 125, -1, 125, -1,
+ 126, -1, 107, -1, 109, -1, 116, 95, 115, 96,
+ 122, 121, 29, -1, 117, 87, 125, 121, 50, 125,
+ 121, 122, 121, 29, -1, 117, 87, 125, 121, 31,
+ 50, 125, 121, 122, 121, 29, -1, 123, 107, 121,
+ -1, 124, 125, 104, 122, 121, 29, -1, 124, 125,
+ 50, 125, -1, 118, 115, 49, 104, 122, 121, 29,
+ -1, 118, 115, 49, 104, 122, 121, 54, 122, 121,
+ 29, -1, 118, 115, 49, 104, 122, 121, 120, 111,
+ 121, 29, -1, 118, 115, 49, 120, 107, 121, -1,
+ 118, 115, 49, 120, 107, 121, 54, 120, 107, 121,
+ -1, 118, 115, 49, 120, 107, 121, 112, 121, 110,
+ 121, -1, -1, 54, 120, 107, -1, 111, 114, -1,
+ 114, -1, 112, 113, -1, 113, -1, 119, 115, 49,
+ 120, 108, 121, -1, 112, -1, 119, 115, 49, 120,
+ 122, 121, -1, 125, -1, 125, 87, 125, -1, 95,
+ 115, 96, -1, 47, 53, -1, 47, 52, 25, -1,
+ 38, -1, 33, -1, -1, -1, -1, 122, 104, -1,
+ 122, 108, -1, 51, 25, 49, -1, 83, -1, 11,
+ -1, 14, -1, 28, -1, 26, -1, 22, -1, 23,
+ 125, -1, 24, 144, -1, 24, 95, 144, 96, -1,
+ 25, 95, 143, 96, -1, 25, -1, 12, -1, 13,
+ 125, -1, 106, -1, 125, 89, 125, -1, 125, 90,
+ 125, -1, 125, 91, 125, -1, 125, 92, 125, -1,
+ 125, 70, 125, -1, 125, 97, 125, -1, 125, 98,
+ 125, -1, 125, 66, 125, -1, 125, 61, 125, -1,
+ 125, 62, 125, -1, 125, 67, 125, -1, 125, 68,
+ 125, -1, 69, 125, -1, 125, 88, 125, -1, 125,
+ 73, 125, -1, 125, 74, 125, -1, 125, 75, 125,
+ -1, 89, 125, -1, 90, 125, -1, 95, 125, 96,
+ -1, 99, 143, 100, -1, 80, 125, 81, 125, -1,
+ 80, 125, 82, 125, -1, 76, 125, 44, 125, -1,
+ 76, 125, 50, 125, 44, 125, -1, 77, 125, 44,
+ 125, -1, 77, 125, 50, 125, 44, 125, -1, 78,
+ 125, 44, 125, -1, 78, 125, 50, 125, 44, 125,
+ -1, 79, 125, 44, 125, -1, 79, 125, 50, 125,
+ 44, 125, -1, 46, 125, -1, 130, -1, 133, -1,
+ 34, 47, -1, 34, -1, 36, 127, -1, 84, 128,
+ -1, 60, 129, -1, 16, -1, 18, 125, -1, 17,
+ 125, -1, 17, -1, 19, 144, -1, 19, 95, 144,
+ 96, -1, 86, 95, 25, 96, -1, 86, 95, 25,
+ 101, 143, 96, -1, 57, 125, 52, 125, -1, 57,
+ 125, -1, 20, 25, 143, -1, 25, -1, 127, 101,
+ 25, -1, 25, -1, 128, 101, 25, -1, 25, -1,
+ 129, 101, 25, -1, 37, 40, -1, 37, 43, -1,
+ 37, 45, -1, 37, 131, -1, 37, 131, 132, -1,
+ 37, 132, -1, 35, 125, -1, 125, -1, 44, 42,
+ 125, -1, 42, 125, -1, 58, 59, -1, 58, 131,
+ -1, 58, 131, 132, -1, 58, 132, -1, -1, 30,
+ 134, 143, -1, -1, 41, 25, 136, 120, 140, 104,
+ 141, 122, -1, 55, 25, -1, -1, 56, 25, 137,
+ 120, 140, 104, 141, 122, -1, -1, -1, 85, 25,
+ 138, 120, 139, 140, 104, 141, 122, 29, -1, -1,
+ 25, -1, 140, 101, 25, -1, 140, 104, 101, 25,
+ -1, -1, 25, 144, -1, -1, 125, -1, 143, 101,
+ 125, -1, 125, -1, 144, 101, 125, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
@@ -686,16 +690,17 @@ static const yytype_uint16 yyrline[] =
267, 279, 291, 301, 311, 323, 324, 327, 328, 331,
332, 335, 343, 344, 352, 353, 354, 357, 360, 367,
374, 382, 385, 388, 389, 390, 393, 399, 403, 404,
- 407, 410, 413, 416, 419, 422, 426, 433, 439, 440,
+ 407, 410, 413, 416, 419, 420, 421, 424, 428, 435,
441, 442, 443, 444, 445, 446, 447, 448, 449, 450,
451, 452, 453, 454, 455, 456, 457, 458, 459, 460,
461, 462, 463, 464, 465, 466, 467, 468, 469, 470,
- 473, 474, 475, 476, 477, 479, 480, 481, 482, 485,
- 488, 491, 494, 495, 496, 497, 498, 499, 502, 503,
- 506, 507, 510, 511, 522, 523, 524, 525, 528, 531,
- 536, 537, 540, 541, 544, 545, 548, 551, 554, 554,
- 584, 584, 590, 593, 593, 598, 599, 598, 609, 610,
- 611, 612, 615, 619, 627, 628, 629, 632, 633
+ 471, 472, 475, 476, 477, 478, 479, 481, 482, 483,
+ 484, 487, 490, 493, 497, 498, 499, 500, 501, 502,
+ 503, 506, 507, 510, 511, 514, 515, 526, 527, 528,
+ 529, 532, 535, 540, 541, 544, 545, 548, 549, 552,
+ 555, 558, 558, 588, 588, 594, 597, 597, 602, 603,
+ 602, 613, 614, 615, 616, 619, 623, 631, 632, 633,
+ 636, 637
};
#endif
@@ -708,24 +713,24 @@ static const char *const yytname[] =
"POINT", "RECT", "ARRAY", "OBJECT", "INT", "THEENTITY",
"THEENTITYWITHID", "FLOAT", "BLTIN", "BLTINNOARGS", "BLTINNOARGSORONE",
"BLTINONEARG", "BLTINARGLIST", "TWOWORDBUILTIN", "FBLTIN",
- "FBLTINNOARGS", "FBLTINONEARG", "ID", "STRING", "HANDLER", "SYMBOL",
- "ENDCLAUSE", "tPLAYACCEL", "tDOWN", "tELSE", "tNLELSIF", "tEXIT",
- "tFRAME", "tGLOBAL", "tGO", "tIF", "tINTO", "tLOOP", "tMACRO", "tMOVIE",
- "tNEXT", "tOF", "tPREVIOUS", "tPUT", "tREPEAT", "tSET", "tTHEN", "tTO",
- "tWHEN", "tWITH", "tWHILE", "tNLELSE", "tFACTORY", "tMETHOD", "tOPEN",
- "tPLAY", "tDONE", "tINSTANCE", "tGE", "tLE", "tGT", "tLT", "tEQ", "tNEQ",
- "tAND", "tOR", "tNOT", "tMOD", "tAFTER", "tBEFORE", "tCONCAT",
- "tCONTAINS", "tSTARTS", "tCHAR", "tITEM", "tLINE", "tWORD", "tSPRITE",
- "tINTERSECTS", "tWITHIN", "tTELL", "tPROPERTY", "tON", "tME", "'='",
- "'&'", "'+'", "'-'", "'*'", "'/'", "'%'", "'\\n'", "'('", "')'", "'>'",
- "'<'", "'['", "']'", "','", "$accept", "program", "nl", "programline",
- "asgn", "stmtoneliner", "stmt", "ifstmt", "elsestmtoneliner",
- "elseifstmt", "elseifstmtoneliner", "elseifstmtoneliner1", "elseifstmt1",
- "cond", "repeatwhile", "repeatwith", "if", "elseif", "begin", "end",
- "stmtlist", "when", "tell", "expr", "proc", "globallist", "propertylist",
- "instancelist", "gotofunc", "gotoframe", "gotomovie", "playfunc", "@1",
- "defn", "@2", "@3", "@4", "@5", "argdef", "argstore", "macro", "arglist",
- "nonemptyarglist", 0
+ "FBLTINNOARGS", "FBLTINONEARG", "FBLTINARGLIST", "ID", "STRING",
+ "HANDLER", "SYMBOL", "ENDCLAUSE", "tPLAYACCEL", "tDOWN", "tELSE",
+ "tNLELSIF", "tEXIT", "tFRAME", "tGLOBAL", "tGO", "tIF", "tINTO", "tLOOP",
+ "tMACRO", "tMOVIE", "tNEXT", "tOF", "tPREVIOUS", "tPUT", "tREPEAT",
+ "tSET", "tTHEN", "tTO", "tWHEN", "tWITH", "tWHILE", "tNLELSE",
+ "tFACTORY", "tMETHOD", "tOPEN", "tPLAY", "tDONE", "tINSTANCE", "tGE",
+ "tLE", "tGT", "tLT", "tEQ", "tNEQ", "tAND", "tOR", "tNOT", "tMOD",
+ "tAFTER", "tBEFORE", "tCONCAT", "tCONTAINS", "tSTARTS", "tCHAR", "tITEM",
+ "tLINE", "tWORD", "tSPRITE", "tINTERSECTS", "tWITHIN", "tTELL",
+ "tPROPERTY", "tON", "tME", "'='", "'&'", "'+'", "'-'", "'*'", "'/'",
+ "'%'", "'\\n'", "'('", "')'", "'>'", "'<'", "'['", "']'", "','",
+ "$accept", "program", "nl", "programline", "asgn", "stmtoneliner",
+ "stmt", "ifstmt", "elsestmtoneliner", "elseifstmt", "elseifstmtoneliner",
+ "elseifstmtoneliner1", "elseifstmt1", "cond", "repeatwhile",
+ "repeatwith", "if", "elseif", "begin", "end", "stmtlist", "when", "tell",
+ "expr", "proc", "globallist", "propertylist", "instancelist", "gotofunc",
+ "gotoframe", "gotomovie", "playfunc", "@1", "defn", "@2", "@3", "@4",
+ "@5", "argdef", "argstore", "macro", "arglist", "nonemptyarglist", 0
};
#endif
@@ -742,31 +747,32 @@ static const yytype_uint16 yytoknum[] =
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
- 335, 336, 337, 338, 339, 340, 61, 38, 43, 45,
- 42, 47, 37, 10, 40, 41, 62, 60, 91, 93,
- 44
+ 335, 336, 337, 338, 339, 340, 341, 61, 38, 43,
+ 45, 42, 47, 37, 10, 40, 41, 62, 60, 91,
+ 93, 44
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint8 yyr1[] =
{
- 0, 101, 102, 102, 102, 103, 104, 104, 104, 104,
- 105, 105, 105, 105, 105, 105, 105, 105, 105, 106,
- 106, 107, 107, 107, 107, 107, 107, 107, 107, 108,
- 108, 108, 108, 108, 108, 109, 109, 110, 110, 111,
- 111, 112, 113, 113, 114, 114, 114, 115, 116, 117,
- 118, 119, 120, 121, 121, 121, 122, 123, 124, 124,
- 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
- 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
- 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
- 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
+ 0, 102, 103, 103, 103, 104, 105, 105, 105, 105,
+ 106, 106, 106, 106, 106, 106, 106, 106, 106, 107,
+ 107, 108, 108, 108, 108, 108, 108, 108, 108, 109,
+ 109, 109, 109, 109, 109, 110, 110, 111, 111, 112,
+ 112, 113, 114, 114, 115, 115, 115, 116, 117, 118,
+ 119, 120, 121, 122, 122, 122, 123, 124, 125, 125,
125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
- 125, 125, 125, 125, 125, 125, 125, 125, 126, 126,
- 127, 127, 128, 128, 129, 129, 129, 129, 129, 129,
- 130, 130, 131, 131, 132, 132, 132, 132, 133, 132,
- 135, 134, 134, 136, 134, 137, 138, 134, 139, 139,
- 139, 139, 140, 141, 142, 142, 142, 143, 143
+ 125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
+ 125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
+ 125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
+ 125, 125, 126, 126, 126, 126, 126, 126, 126, 126,
+ 126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
+ 126, 127, 127, 128, 128, 129, 129, 130, 130, 130,
+ 130, 130, 130, 131, 131, 132, 132, 133, 133, 133,
+ 133, 134, 133, 136, 135, 135, 137, 135, 138, 139,
+ 135, 140, 140, 140, 140, 141, 142, 143, 143, 143,
+ 144, 144
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
@@ -778,16 +784,17 @@ static const yytype_uint8 yyr2[] =
10, 10, 6, 10, 10, 0, 3, 2, 1, 2,
1, 6, 1, 6, 1, 3, 3, 2, 3, 1,
1, 0, 0, 0, 2, 2, 3, 1, 1, 1,
- 1, 1, 1, 2, 4, 1, 1, 2, 1, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 2, 3, 3, 3, 3, 2, 2, 3, 3,
- 4, 4, 4, 6, 4, 6, 4, 6, 4, 6,
- 2, 1, 1, 2, 1, 2, 2, 2, 1, 2,
- 2, 1, 2, 4, 6, 4, 2, 3, 1, 3,
- 1, 3, 1, 3, 2, 2, 2, 2, 3, 2,
- 2, 1, 3, 2, 2, 2, 3, 2, 0, 3,
- 0, 8, 2, 0, 8, 0, 0, 10, 0, 1,
- 3, 4, 0, 2, 0, 1, 3, 1, 3
+ 1, 1, 1, 2, 2, 4, 4, 1, 1, 2,
+ 1, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 2, 3, 3, 3, 3, 2, 2,
+ 3, 3, 4, 4, 4, 6, 4, 6, 4, 6,
+ 4, 6, 2, 1, 1, 2, 1, 2, 2, 2,
+ 1, 2, 2, 1, 2, 4, 4, 6, 4, 2,
+ 3, 1, 3, 1, 3, 1, 3, 2, 2, 2,
+ 2, 3, 2, 2, 1, 3, 2, 2, 2, 3,
+ 2, 0, 3, 0, 8, 2, 0, 8, 0, 0,
+ 10, 0, 1, 3, 4, 0, 2, 0, 1, 3,
+ 1, 3
};
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
@@ -795,103 +802,105 @@ static const yytype_uint8 yyr2[] =
means the default is an error. */
static const yytype_uint8 yydefact[] =
{
- 0, 0, 58, 66, 0, 59, 108, 111, 0, 0,
- 0, 62, 0, 65, 61, 60, 138, 104, 0, 0,
- 49, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 57, 0, 0,
- 0, 0, 0, 0, 154, 0, 3, 68, 21, 9,
- 22, 0, 0, 0, 0, 0, 19, 20, 101, 102,
- 7, 8, 5, 4, 65, 0, 67, 110, 109, 157,
- 112, 154, 63, 154, 153, 154, 103, 118, 105, 0,
- 124, 0, 125, 0, 126, 131, 127, 129, 140, 100,
- 0, 47, 0, 0, 0, 0, 142, 143, 116, 134,
- 135, 137, 122, 107, 81, 0, 0, 0, 0, 0,
- 120, 106, 145, 0, 86, 87, 0, 155, 0, 1,
- 6, 0, 0, 0, 0, 44, 52, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 154, 0, 0, 117, 155, 0,
- 139, 0, 130, 133, 0, 128, 51, 0, 0, 0,
- 48, 0, 0, 0, 0, 0, 56, 51, 0, 136,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 51, 0, 88, 89, 0, 2, 0, 52,
- 0, 0, 51, 0, 26, 0, 53, 77, 78, 76,
- 79, 80, 73, 83, 84, 85, 82, 69, 70, 71,
- 72, 74, 75, 158, 64, 119, 132, 148, 10, 11,
- 12, 17, 14, 0, 0, 16, 13, 148, 115, 123,
- 92, 0, 94, 0, 96, 0, 98, 0, 90, 91,
- 121, 146, 113, 154, 156, 53, 0, 46, 53, 0,
- 45, 28, 52, 149, 0, 18, 15, 0, 0, 0,
- 0, 0, 148, 0, 52, 0, 0, 52, 52, 54,
- 55, 0, 0, 152, 152, 93, 95, 97, 99, 0,
- 114, 0, 0, 52, 51, 32, 27, 150, 0, 53,
- 53, 152, 23, 52, 53, 29, 53, 0, 50, 51,
- 52, 40, 0, 151, 141, 144, 53, 53, 52, 52,
- 52, 42, 38, 0, 0, 39, 35, 0, 0, 52,
- 0, 0, 37, 0, 0, 52, 51, 52, 51, 147,
- 0, 24, 30, 31, 51, 33, 0, 34, 0, 25,
- 53, 36, 52, 52, 41, 43
+ 0, 0, 58, 68, 0, 59, 110, 113, 0, 0,
+ 0, 62, 0, 0, 67, 61, 60, 141, 106, 0,
+ 0, 49, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 57, 0,
+ 0, 0, 0, 0, 0, 157, 0, 3, 70, 21,
+ 9, 22, 0, 0, 0, 0, 0, 19, 20, 103,
+ 104, 7, 8, 5, 4, 67, 0, 69, 112, 111,
+ 0, 160, 114, 157, 63, 0, 64, 157, 156, 157,
+ 105, 121, 107, 0, 127, 0, 128, 0, 129, 134,
+ 130, 132, 143, 102, 0, 47, 0, 0, 0, 0,
+ 145, 146, 119, 137, 138, 140, 125, 109, 83, 0,
+ 0, 0, 0, 0, 123, 108, 148, 0, 88, 89,
+ 0, 158, 0, 1, 6, 0, 0, 0, 0, 44,
+ 52, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 157, 0,
+ 160, 0, 0, 120, 0, 158, 0, 142, 0, 133,
+ 136, 0, 131, 51, 0, 0, 0, 48, 0, 0,
+ 0, 0, 0, 56, 51, 0, 139, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 51,
+ 0, 90, 91, 0, 2, 0, 52, 0, 0, 51,
+ 0, 26, 0, 53, 79, 80, 78, 81, 82, 75,
+ 85, 86, 87, 84, 71, 72, 73, 74, 76, 77,
+ 115, 161, 65, 66, 122, 135, 151, 10, 11, 12,
+ 17, 14, 0, 0, 16, 13, 151, 118, 126, 94,
+ 0, 96, 0, 98, 0, 100, 0, 92, 93, 124,
+ 149, 116, 157, 159, 53, 0, 46, 53, 0, 45,
+ 28, 52, 152, 0, 18, 15, 0, 0, 0, 0,
+ 0, 151, 0, 52, 0, 0, 52, 52, 54, 55,
+ 0, 0, 155, 155, 95, 97, 99, 101, 0, 117,
+ 0, 0, 52, 51, 32, 27, 153, 0, 53, 53,
+ 155, 23, 52, 53, 29, 53, 0, 50, 51, 52,
+ 40, 0, 154, 144, 147, 53, 53, 52, 52, 52,
+ 42, 38, 0, 0, 39, 35, 0, 0, 52, 0,
+ 0, 37, 0, 0, 52, 51, 52, 51, 150, 0,
+ 24, 30, 31, 51, 33, 0, 34, 0, 25, 53,
+ 36, 52, 52, 41, 43
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
- -1, 45, 269, 46, 47, 48, 270, 50, 327, 310,
- 311, 301, 312, 124, 51, 52, 53, 302, 217, 194,
- 252, 54, 55, 56, 57, 78, 111, 103, 58, 86,
- 87, 59, 75, 60, 156, 167, 182, 262, 254, 289,
- 61, 149, 70
+ -1, 46, 278, 47, 48, 49, 279, 51, 336, 319,
+ 320, 310, 321, 128, 52, 53, 54, 311, 226, 201,
+ 261, 55, 56, 57, 58, 82, 115, 107, 59, 90,
+ 91, 60, 79, 61, 163, 174, 189, 271, 263, 298,
+ 62, 156, 72
};
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
-#define YYPACT_NINF -264
+#define YYPACT_NINF -272
static const yytype_int16 yypact[] =
{
- 330, -86, -264, -264, 928, -264, -264, 928, 928, 928,
- -3, -264, 928, 967, -264, -264, -264, -21, 7, 849,
- -264, 31, 928, 38, 40, 37, 43, 59, 928, 888,
- 61, 928, 928, 928, 928, 928, 928, -264, 63, 69,
- 3, 928, 928, 928, 928, 2, -264, -264, -264, -264,
- -264, 4, 13, 1007, 770, 928, 1571, -264, -264, -264,
- -264, -264, -264, -264, 6, 928, 1571, 1571, 1571, 1571,
- 5, 928, 1571, 928, 5, 928, -264, -264, 9, 928,
- -264, 928, -264, 62, -264, 1571, 32, -264, -264, 1042,
- 80, -264, -48, 928, -45, 64, -264, -264, 1406, -264,
- 32, -264, -264, 10, -57, 1075, 1108, 1141, 1174, 1439,
- -264, 11, -264, 83, -57, -57, 1505, 1571, -8, -264,
- 418, 1007, 928, 1007, 65, 1538, -264, 1339, 928, 928,
- 928, 928, 928, 928, 928, 928, 928, 928, 928, 928,
- 928, 928, 928, 928, 928, 1042, 928, 14, 1505, -78,
- 14, 91, 1571, 1571, 928, -264, -264, 92, 928, 928,
- -264, 928, 928, 1373, 928, 928, -264, -264, 928, -264,
- 93, 928, 928, 928, 928, 928, 928, 928, 928, 928,
- 928, 97, -264, -30, -264, -264, 928, -264, 30, 1571,
- 33, 1472, -86, 928, -264, 928, -264, 123, 123, 123,
- -57, -57, -57, 1571, 123, 123, 229, 238, 238, -57,
- -57, 1571, 1571, 1571, -264, -264, 1571, 102, -264, 1571,
- 1571, 1571, 1571, 928, 928, 1571, 1571, 102, 1571, -264,
- 1571, 1207, 1571, 1240, 1571, 1273, 1571, 1306, 1571, 1571,
- -264, -264, -264, 928, 1571, -264, 29, -264, -264, 770,
- 1571, 1571, 594, -264, -12, 1571, 1571, -12, 928, 928,
- 928, 928, 102, -16, 594, 78, 928, 594, -264, -264,
- -264, 118, 124, 49, 49, 1571, 1571, 1571, 1571, -12,
- -264, 125, 928, 1571, -2, -5, -264, -264, 127, -264,
- -264, 49, -264, 1571, -264, -264, -264, 122, -264, -264,
- 122, -264, 1007, -264, 594, 594, -264, -264, 594, 594,
- 122, 122, -264, 1007, 770, -264, 103, 109, 506, 594,
- 130, 133, -264, 136, 119, -264, -264, -264, -264, -264,
- 140, -264, -264, -264, -264, -264, 770, -264, 682, -264,
- 682, -264, -264, 594, -264, -264
+ 339, -52, -272, -272, 962, -272, -272, 962, 962, 1000,
+ 37, -272, 962, 1059, 1097, -272, -272, -272, 34, 66,
+ 864, -272, 72, 962, 41, 57, 77, 81, 90, 962,
+ 903, 97, 962, 962, 962, 962, 962, 962, -272, 98,
+ 100, -41, 962, 962, 962, 962, 2, -272, -272, -272,
+ -272, -272, 36, -21, 1156, 784, 962, 1720, -272, -272,
+ -272, -272, -272, -272, -272, 59, 962, 1720, 1720, 1720,
+ 962, 1720, 31, 962, 1720, 962, 31, 962, 31, 962,
+ -272, -272, 51, 962, -272, 962, -272, 113, -272, 1720,
+ 43, -272, -272, 1191, 131, -272, -47, 962, -39, 108,
+ -272, -272, 1555, -272, 43, -272, -272, 58, -48, 1224,
+ 1257, 1290, 1323, 1588, -272, 60, -272, 133, -48, -48,
+ 1654, 1720, 29, -272, 428, 1156, 962, 1156, 111, 1687,
+ -272, 1488, 962, 962, 962, 962, 962, 962, 962, 962,
+ 962, 962, 962, 962, 962, 962, 962, 962, 962, 1191,
+ 1654, -73, 962, 62, -69, 1654, 7, 62, 139, 1720,
+ 1720, 962, -272, -272, 140, 962, 962, -272, 962, 962,
+ 1522, 962, 962, -272, -272, 962, -272, 143, 962, 962,
+ 962, 962, 962, 962, 962, 962, 962, 962, 146, -272,
+ 8, -272, -272, 962, -272, 78, 1720, 79, 1621, -52,
+ 962, -272, 962, -272, 22, 22, 22, -48, -48, -48,
+ 1720, 22, 22, 147, 238, 238, -48, -48, 1720, 1720,
+ -272, 1720, -272, -272, -272, 1720, 164, -272, 1720, 1720,
+ 1720, 1720, 962, 962, 1720, 1720, 164, 1720, -272, 1720,
+ 1356, 1720, 1389, 1720, 1422, 1720, 1455, 1720, 1720, -272,
+ -272, -272, 962, 1720, -272, -9, -272, -272, 784, 1720,
+ 1720, 606, -272, -22, 1720, 1720, -22, 962, 962, 962,
+ 962, 164, 20, 606, 141, 962, 606, -272, -272, -272,
+ 161, 168, 94, 94, 1720, 1720, 1720, 1720, -22, -272,
+ 167, 962, 1720, -3, 6, -272, -272, 172, -272, -272,
+ 94, -272, 1720, -272, -272, -272, 165, -272, -272, 165,
+ -272, 1156, -272, 606, 606, -272, -272, 606, 606, 165,
+ 165, -272, 1156, 784, -272, 145, 151, 517, 606, 175,
+ 176, -272, 177, 159, -272, -272, -272, -272, -272, 180,
+ -272, -272, -272, -272, -272, 784, -272, 695, -272, 695,
+ -272, -272, 606, -272, -272
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
- -264, -264, 23, 51, -264, -51, 0, -264, -264, -264,
- -103, -242, -127, -105, -264, -264, -264, -248, -96, -19,
- -188, -264, -264, 1, -264, -264, -264, -264, -264, 155,
- -23, -264, -264, -264, -264, -264, -264, -264, -215, -263,
- -264, -25, 172
+ -272, -272, 19, 86, -272, -51, 0, -272, -272, -272,
+ -83, -221, -107, -109, -272, -272, -272, -242, -116, -18,
+ -198, -272, -272, 1, -272, -272, -272, -272, -272, 186,
+ -29, -272, -272, -272, -272, -272, -272, -272, -219, -271,
+ -272, -26, -7
};
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
@@ -901,344 +910,374 @@ static const yytype_int16 yypgoto[] =
#define YYTABLE_NINF -7
static const yytype_int16 yytable[] =
{
- 49, 161, 119, 126, 164, 66, 101, 62, 67, 68,
- 69, 290, 257, 72, 69, 134, 188, 214, 190, 118,
- 85, 71, 186, 89, 63, 76, 295, 298, 306, 98,
- 85, 77, 104, 105, 106, 107, 108, 109, 162, 142,
- 143, 165, 114, 115, 116, 117, 147, 279, 299, 313,
- 150, 296, 92, 93, 125, 88, 127, 264, 315, 265,
- 267, 95, 313, 155, 94, 242, 145, 96, 120, 315,
- 243, 227, 117, 81, 148, 83, 117, 169, 266, 280,
- 152, 62, 153, 97, 186, 102, 241, 110, 272, 90,
- 91, 185, 186, 112, 163, 62, 249, 113, 121, 122,
- 144, 304, 305, 154, 160, 146, 308, 183, 309, 151,
- 170, 181, 166, 192, 186, 215, 218, 229, 318, 319,
- 49, 240, 125, 189, 191, 245, 253, 282, 247, 197,
- 198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
- 208, 209, 210, 211, 212, 117, 286, 213, 287, 288,
- 196, 303, 343, 292, 298, 216, 326, 328, 331, 219,
- 220, 332, 221, 222, 333, 225, 226, 334, 339, 228,
- 246, 187, 230, 231, 232, 233, 234, 235, 236, 237,
- 238, 239, 300, 322, 100, 74, 0, 244, 297, 131,
- 132, 0, 133, 0, 250, 134, 251, 317, 268, 0,
- 0, 0, 0, 314, 0, 0, 0, 0, 324, 0,
- 137, 138, 139, 140, 141, 248, 0, 0, 263, 142,
- 143, 0, 0, 0, 255, 256, 0, 0, 0, 0,
- 336, 0, 338, 271, 0, 0, 0, 0, 340, 0,
- 0, 0, 0, 0, 117, 281, 0, 0, 284, 285,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 275,
- 276, 277, 278, 325, 294, 0, 0, 283, 0, 0,
- 0, 0, 0, 0, 307, 0, 0, 273, 0, 0,
- 274, 316, 0, 293, 0, 341, 0, 0, 0, 320,
- 321, 323, 0, 0, 0, 131, 132, 0, 133, 0,
- 330, 134, 291, 125, 131, 132, 335, 133, 337, 0,
- 134, 0, 0, 0, 125, 0, 0, 138, 139, 140,
- 141, 0, 0, 344, 345, 142, 143, 0, 140, 141,
- -6, 1, 0, 0, 142, 143, 0, 0, 342, 0,
- 342, 2, 3, 4, 5, 0, 6, 7, 8, 9,
- 10, 0, 11, 12, 13, 14, 0, 15, 0, 16,
- 0, 0, 0, 17, 0, 18, 19, 20, 0, 0,
- 21, 0, 0, 0, 0, 22, 23, 24, 0, 0,
- 25, 0, 0, 0, 26, 27, 28, 29, 0, 30,
- 0, 0, 0, 0, 0, 0, 0, 0, 31, 0,
- 0, 0, 0, 0, 0, 32, 33, 34, 35, 36,
- 0, 0, 37, 38, 39, 40, 0, 0, 41, 42,
- 0, 0, 0, -6, 43, 0, 0, 0, 44, 2,
+ 50, 105, 123, 168, 130, 67, 76, 78, 68, 69,
+ 71, 171, 299, 74, 71, 71, 195, 266, 197, 122,
+ 64, 89, 274, 220, 93, 138, 304, 222, 152, 315,
+ 102, 89, 152, 108, 109, 110, 111, 112, 113, 307,
+ 169, 275, 63, 118, 119, 120, 121, 153, 172, 146,
+ 147, 305, 288, 157, 117, 129, 273, 131, 236, 276,
+ 308, 162, 73, 151, 322, 124, 126, 149, 154, 96,
+ 97, 150, 63, 250, 121, 176, 150, 322, 155, 281,
+ 121, 80, 98, 258, 159, 85, 160, 87, 324, 135,
+ 136, 81, 137, 94, 95, 138, 63, 92, 170, 324,
+ 313, 314, 99, 223, 251, 317, 100, 318, 193, 252,
+ 141, 142, 143, 144, 145, 101, 289, 327, 328, 146,
+ 147, 193, 106, 114, 50, 116, 129, 196, 198, 192,
+ 193, 125, 152, 204, 205, 206, 207, 208, 209, 210,
+ 211, 212, 213, 214, 215, 216, 217, 218, 219, 121,
+ 203, 352, 158, 221, 148, 161, 167, 173, 190, 177,
+ 199, 188, 225, 193, 224, 227, 228, 229, 238, 230,
+ 231, 249, 234, 235, 254, 256, 237, 306, 255, 239,
+ 240, 241, 242, 243, 244, 245, 246, 247, 248, 262,
+ 295, 291, 323, 296, 253, 297, 301, 312, 307, 335,
+ 337, 259, 326, 260, 340, 341, 342, 277, 343, 348,
+ 194, 309, 331, 333, 135, 136, 104, 137, 257, 345,
+ 138, 347, 0, 0, 0, 0, 272, 349, 0, 0,
+ 0, 0, 0, 264, 265, 0, 142, 143, 144, 145,
+ 0, 0, 0, 280, 146, 147, 0, 0, 0, 0,
+ 0, 0, 0, 121, 0, 290, 0, 0, 293, 294,
+ 0, 0, 0, 0, 0, 0, 0, 0, 284, 285,
+ 286, 287, 334, 0, 303, 0, 292, 0, 0, 0,
+ 0, 0, 282, 0, 316, 283, 0, 0, 0, 0,
+ 0, 325, 302, 0, 350, 0, 0, 0, 0, 329,
+ 330, 332, 0, 0, 0, 135, 136, 300, 137, 0,
+ 339, 138, 129, 0, 0, 0, 344, 0, 346, 0,
+ 0, 0, 0, 129, 0, 0, 0, 0, 0, 144,
+ 145, 0, 0, 353, 354, 146, 147, 0, 0, -6,
+ 1, 0, 0, 0, 0, 0, 0, 351, 0, 351,
+ 2, 3, 4, 5, 0, 6, 7, 8, 9, 10,
+ 0, 11, 12, 13, 14, 15, 0, 16, 0, 17,
+ 0, 0, 0, 18, 0, 19, 20, 21, 0, 0,
+ 22, 0, 0, 0, 0, 23, 24, 25, 0, 0,
+ 26, 0, 0, 0, 27, 28, 29, 30, 0, 31,
+ 0, 0, 0, 0, 0, 0, 0, 0, 32, 0,
+ 0, 0, 0, 0, 0, 33, 34, 35, 36, 37,
+ 0, 0, 38, 39, 40, 41, 0, 0, 42, 43,
+ 0, 0, 0, -6, 44, 0, 0, 0, 45, 2,
3, 4, 5, 0, 6, 7, 8, 9, 10, 0,
- 11, 12, 13, 14, 0, 15, 0, 16, 0, 0,
- 0, 17, 0, 18, 19, 20, 0, 0, 21, 0,
- 0, 0, 0, 22, 23, 24, 0, 0, 25, 0,
- 0, 0, 26, 27, 28, 29, 0, 30, 0, 0,
- 0, 0, 0, 0, 0, 0, 31, 0, 0, 0,
- 0, 0, 0, 32, 33, 34, 35, 36, 0, 0,
- 37, 38, 39, 40, 0, 0, 41, 42, 0, 0,
- 0, 0, 43, 0, 0, 0, 44, 2, 3, 4,
+ 11, 12, 13, 14, 15, 0, 16, 0, 17, 0,
+ 0, 0, 18, 0, 19, 20, 21, 0, 0, 22,
+ 0, 0, 0, 0, 23, 24, 25, 0, 0, 26,
+ 0, 0, 0, 27, 28, 29, 30, 0, 31, 0,
+ 0, 0, 0, 0, 0, 0, 0, 32, 0, 0,
+ 0, 0, 0, 0, 33, 34, 35, 36, 37, 0,
+ 0, 38, 39, 40, 41, 0, 0, 42, 43, 0,
+ 0, 0, 0, 44, 0, 0, 0, 45, 2, 3,
+ 4, 5, 0, 6, 7, 8, 9, 10, 0, 11,
+ 12, 13, 65, 15, 0, 16, 338, 17, 0, 0,
+ 0, 18, 0, 19, 20, 21, 0, 0, 0, 0,
+ 0, 0, 0, 23, 24, 25, 0, 0, 26, 0,
+ 0, 0, 0, 0, 29, 30, 0, 31, 0, 0,
+ 0, 0, 0, 0, 0, 0, 32, 0, 0, 0,
+ 0, 0, 0, 33, 34, 35, 36, 37, 0, 0,
+ 38, 39, 0, 41, 0, 0, 42, 43, 0, 0,
+ 0, 63, 44, 0, 0, 0, 45, 2, 3, 4,
5, 0, 6, 7, 8, 9, 10, 0, 11, 12,
- 64, 14, 0, 15, 329, 16, 0, 0, 0, 17,
- 0, 18, 19, 20, 0, 0, 0, 0, 0, 0,
- 0, 22, 23, 24, 0, 0, 25, 0, 0, 0,
- 0, 0, 28, 29, 0, 30, 0, 0, 0, 0,
- 0, 0, 0, 0, 31, 0, 0, 0, 0, 0,
- 0, 32, 33, 34, 35, 36, 0, 0, 37, 38,
- 0, 40, 0, 0, 41, 42, 0, 0, 0, 62,
- 43, 0, 0, 0, 44, 2, 3, 4, 5, 0,
- 6, 7, 8, 9, 10, 0, 11, 12, 64, 14,
- 0, 15, 0, 16, 0, 0, 0, 17, 0, 18,
- 19, 20, 0, 0, 0, 0, 0, 0, 0, 22,
- 23, 24, 0, 0, 25, 0, 0, 0, 0, 0,
- 28, 29, 0, 30, 0, 0, 0, 0, 0, 0,
- 0, 0, 31, 0, 0, 0, 0, 0, 0, 32,
- 33, 34, 35, 36, 0, 0, 37, 38, 0, 40,
- 0, 0, 41, 42, 0, 0, 0, 62, 43, 0,
- 0, 0, 44, 2, 3, 4, 5, 0, 6, 7,
- 8, 9, 10, 0, 11, 12, 64, 14, 0, 15,
- 0, 16, 0, 0, 0, 17, 0, 18, 19, 20,
- 0, 0, 0, 0, 0, 0, 0, 22, 23, 24,
- 0, 0, 25, 0, 0, 0, 0, 0, 28, 29,
- 0, 30, 0, 0, 0, 0, 0, 0, 0, 0,
- 31, 0, 0, 0, 0, 0, 0, 32, 33, 34,
- 35, 36, 0, 0, 37, 38, 0, 40, 0, 0,
- 41, 42, 0, 0, 0, 0, 43, 0, 0, 0,
- 44, 2, 3, 4, 5, 0, 6, 7, 8, 9,
- 10, 0, 11, 12, 64, 14, 0, 15, 0, 16,
- 0, 0, 0, 17, 0, 18, 19, 0, 0, 0,
- 0, 0, 0, 0, 0, 22, 0, 24, 0, 0,
- 0, 0, 0, 0, 0, 0, 28, 29, 0, 30,
- 0, 0, 0, 0, 0, 0, 0, 0, 31, 0,
- 0, 0, 0, 0, 0, 32, 33, 34, 35, 36,
- 0, 0, 0, 38, 0, 40, 0, 0, 41, 42,
- 2, 3, 4, 5, 43, 0, 0, 0, 44, 0,
- 0, 11, 12, 64, 14, 0, 15, 0, 0, 0,
- 0, 0, 0, 79, 0, 0, 0, 0, 80, 0,
- 81, 82, 83, 84, 65, 0, 24, 0, 0, 2,
- 3, 4, 5, 0, 0, 0, 0, 0, 0, 0,
- 11, 12, 64, 14, 0, 15, 0, 31, 0, 0,
- 0, 0, 79, 0, 32, 33, 34, 35, 36, 81,
- 0, 83, 0, 65, 0, 24, 0, 41, 42, 2,
- 3, 4, 5, 43, 0, 0, 99, 44, 0, 0,
- 11, 12, 64, 14, 0, 15, 31, 0, 0, 0,
- 0, 0, 0, 32, 33, 34, 35, 36, 0, 0,
- 0, 0, 0, 65, 0, 24, 41, 42, 2, 3,
- 4, 5, 43, 0, 0, 0, 44, 0, 0, 11,
- 12, 64, 14, 0, 15, 0, 31, 0, 0, 0,
- 0, 0, 0, 32, 33, 34, 35, 36, 0, 0,
- 0, 0, 65, 0, 24, 0, 41, 42, 2, 3,
- 4, 5, 43, 0, 0, 0, 44, 0, 0, 11,
- 12, 64, 14, 0, 15, 31, 0, 0, 0, 0,
- 0, 0, 32, 33, 34, 35, 36, 0, 0, 0,
- 0, 0, 65, 0, 24, 41, 42, 0, 0, 0,
- 0, 73, 0, 0, 0, 44, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 31, 0, 0, 0, 0,
- 157, 0, 32, 33, 34, 35, 36, 0, 0, 0,
- 0, 0, 0, 0, 0, 41, 42, 0, 0, 0,
- 0, 123, 128, 129, 0, 44, 0, 130, 131, 132,
- 0, 133, 158, 159, 134, 135, 136, 0, 171, 0,
- 0, 0, 0, 0, 172, 0, 0, 0, 0, 137,
- 138, 139, 140, 141, 0, 128, 129, 0, 142, 143,
- 130, 131, 132, 0, 133, 0, 0, 134, 135, 136,
- 0, 173, 0, 0, 0, 0, 0, 174, 0, 0,
- 0, 0, 137, 138, 139, 140, 141, 0, 128, 129,
- 0, 142, 143, 130, 131, 132, 0, 133, 0, 0,
- 134, 135, 136, 0, 175, 0, 0, 0, 0, 0,
- 176, 0, 0, 0, 0, 137, 138, 139, 140, 141,
- 0, 128, 129, 0, 142, 143, 130, 131, 132, 0,
- 133, 0, 0, 134, 135, 136, 0, 177, 0, 0,
- 0, 0, 0, 178, 0, 0, 0, 0, 137, 138,
- 139, 140, 141, 0, 128, 129, 0, 142, 143, 130,
- 131, 132, 0, 133, 0, 0, 134, 135, 136, 0,
- 258, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 137, 138, 139, 140, 141, 0, 128, 129, 0,
- 142, 143, 130, 131, 132, 0, 133, 0, 0, 134,
- 135, 136, 0, 259, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 137, 138, 139, 140, 141, 0,
- 128, 129, 0, 142, 143, 130, 131, 132, 0, 133,
- 0, 0, 134, 135, 136, 0, 260, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 137, 138, 139,
- 140, 141, 0, 128, 129, 0, 142, 143, 130, 131,
- 132, 0, 133, 0, 0, 134, 135, 136, 0, 261,
+ 13, 65, 15, 0, 16, 0, 17, 0, 0, 0,
+ 18, 0, 19, 20, 21, 0, 0, 0, 0, 0,
+ 0, 0, 23, 24, 25, 0, 0, 26, 0, 0,
+ 0, 0, 0, 29, 30, 0, 31, 0, 0, 0,
+ 0, 0, 0, 0, 0, 32, 0, 0, 0, 0,
+ 0, 0, 33, 34, 35, 36, 37, 0, 0, 38,
+ 39, 0, 41, 0, 0, 42, 43, 0, 0, 0,
+ 63, 44, 0, 0, 0, 45, 2, 3, 4, 5,
+ 0, 6, 7, 8, 9, 10, 0, 11, 12, 13,
+ 65, 15, 0, 16, 0, 17, 0, 0, 0, 18,
+ 0, 19, 20, 21, 0, 0, 0, 0, 0, 0,
+ 0, 23, 24, 25, 0, 0, 26, 0, 0, 0,
+ 0, 0, 29, 30, 0, 31, 0, 0, 0, 0,
+ 0, 0, 0, 0, 32, 0, 0, 0, 0, 0,
+ 0, 33, 34, 35, 36, 37, 0, 0, 38, 39,
+ 0, 41, 0, 0, 42, 43, 0, 0, 0, 0,
+ 44, 0, 0, 0, 45, 2, 3, 4, 5, 0,
+ 6, 7, 8, 9, 10, 0, 11, 12, 13, 65,
+ 15, 0, 16, 0, 17, 0, 0, 0, 18, 0,
+ 19, 20, 0, 0, 0, 0, 0, 0, 0, 0,
+ 23, 0, 25, 0, 0, 0, 0, 0, 0, 0,
+ 0, 29, 30, 0, 31, 0, 0, 0, 0, 0,
+ 0, 0, 0, 32, 0, 0, 0, 0, 0, 0,
+ 33, 34, 35, 36, 37, 0, 0, 0, 39, 0,
+ 41, 0, 0, 42, 43, 2, 3, 4, 5, 44,
+ 0, 0, 0, 45, 0, 0, 11, 12, 13, 65,
+ 15, 0, 16, 0, 0, 0, 0, 0, 0, 83,
+ 0, 0, 0, 0, 84, 0, 85, 86, 87, 88,
+ 66, 0, 25, 0, 2, 3, 4, 5, 0, 0,
+ 0, 0, 0, 0, 0, 11, 12, 13, 65, 15,
+ 0, 16, 0, 32, 0, 0, 0, 0, 83, 0,
+ 33, 34, 35, 36, 37, 85, 0, 87, 0, 66,
+ 0, 25, 0, 42, 43, 0, 0, 0, 0, 44,
+ 0, 0, 103, 45, 0, 0, 0, 0, 0, 0,
+ 0, 0, 32, 2, 3, 4, 5, 0, 0, 33,
+ 34, 35, 36, 37, 11, 12, 13, 65, 15, 0,
+ 16, 0, 42, 43, 0, 0, 0, 0, 44, 0,
+ 0, 0, 45, 0, 0, 0, 0, 0, 66, 0,
+ 25, 2, 3, 4, 5, 0, 0, 0, 0, 0,
+ 0, 0, 11, 12, 13, 65, 15, 0, 16, 0,
+ 0, 32, 0, 0, 0, 0, 0, 0, 33, 34,
+ 35, 36, 37, 0, 0, 0, 66, 0, 25, 0,
+ 0, 42, 43, 0, 0, 0, 0, 44, 0, 0,
+ 0, 45, 0, 0, 0, 0, 0, 0, 0, 32,
+ 2, 3, 4, 5, 0, 0, 33, 34, 35, 36,
+ 37, 11, 12, 13, 65, 15, 0, 16, 0, 42,
+ 43, 0, 0, 0, 0, 70, 0, 0, 0, 45,
+ 0, 0, 0, 0, 0, 66, 0, 25, 2, 3,
+ 4, 5, 0, 0, 0, 0, 0, 0, 0, 11,
+ 12, 13, 65, 15, 0, 16, 0, 0, 32, 0,
+ 0, 0, 0, 0, 0, 33, 34, 35, 36, 37,
+ 0, 0, 0, 66, 0, 25, 0, 0, 42, 43,
+ 0, 0, 0, 0, 75, 0, 0, 0, 45, 0,
+ 0, 0, 0, 0, 0, 0, 32, 2, 3, 4,
+ 5, 0, 0, 33, 34, 35, 36, 37, 11, 12,
+ 13, 65, 15, 0, 16, 0, 42, 43, 0, 0,
+ 0, 0, 77, 0, 0, 0, 45, 0, 0, 0,
+ 0, 0, 66, 0, 25, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 32, 0, 0, 0, 0,
+ 164, 0, 33, 34, 35, 36, 37, 0, 0, 0,
+ 0, 0, 0, 0, 0, 42, 43, 0, 0, 0,
+ 0, 127, 132, 133, 0, 45, 0, 134, 135, 136,
+ 0, 137, 165, 166, 138, 139, 140, 0, 178, 0,
+ 0, 0, 0, 0, 179, 0, 0, 0, 0, 141,
+ 142, 143, 144, 145, 0, 132, 133, 0, 146, 147,
+ 134, 135, 136, 0, 137, 0, 0, 138, 139, 140,
+ 0, 180, 0, 0, 0, 0, 0, 181, 0, 0,
+ 0, 0, 141, 142, 143, 144, 145, 0, 132, 133,
+ 0, 146, 147, 134, 135, 136, 0, 137, 0, 0,
+ 138, 139, 140, 0, 182, 0, 0, 0, 0, 0,
+ 183, 0, 0, 0, 0, 141, 142, 143, 144, 145,
+ 0, 132, 133, 0, 146, 147, 134, 135, 136, 0,
+ 137, 0, 0, 138, 139, 140, 0, 184, 0, 0,
+ 0, 0, 0, 185, 0, 0, 0, 0, 141, 142,
+ 143, 144, 145, 0, 132, 133, 0, 146, 147, 134,
+ 135, 136, 0, 137, 0, 0, 138, 139, 140, 0,
+ 267, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 141, 142, 143, 144, 145, 0, 132, 133, 0,
+ 146, 147, 134, 135, 136, 0, 137, 0, 0, 138,
+ 139, 140, 0, 268, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 141, 142, 143, 144, 145, 0,
+ 132, 133, 0, 146, 147, 134, 135, 136, 0, 137,
+ 0, 0, 138, 139, 140, 0, 269, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 141, 142, 143,
+ 144, 145, 0, 132, 133, 0, 146, 147, 134, 135,
+ 136, 0, 137, 0, 0, 138, 139, 140, 0, 270,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 137, 138, 139, 140, 141, 0, 128, 129, 0, 142,
- 143, 130, 131, 132, 0, 133, 0, 0, 134, 135,
- 136, 0, 0, 0, 0, 0, 0, 0, 195, 0,
- 0, 0, 0, 137, 138, 139, 140, 141, 0, 128,
- 129, 0, 142, 143, 130, 131, 132, 0, 133, 0,
- 0, 134, 135, 136, 0, 0, 0, 0, 0, 0,
- 0, 0, 223, 0, 0, 0, 137, 138, 139, 140,
- 141, 0, 62, 128, 129, 142, 143, 0, 130, 131,
- 132, 0, 133, 0, 0, 134, 135, 136, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 168, 0, 224,
- 137, 138, 139, 140, 141, 0, 128, 129, 0, 142,
- 143, 130, 131, 132, 0, 133, 0, 0, 134, 135,
- 136, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 137, 138, 139, 140, 141, 0, 128,
- 129, 0, 142, 143, 130, 131, 132, 0, 133, 0,
- 0, 134, 135, 136, 0, 0, 0, 0, 0, 179,
- 180, 0, 0, 0, 0, 0, 137, 138, 139, 140,
- 141, 0, 128, 129, 0, 142, 143, 130, 131, 132,
- 0, 133, 0, 0, 134, 135, 136, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 193, 137,
- 138, 139, 140, 141, 0, 128, 129, 184, 142, 143,
- 130, 131, 132, 0, 133, 0, 0, 134, 135, 136,
+ 141, 142, 143, 144, 145, 0, 132, 133, 0, 146,
+ 147, 134, 135, 136, 0, 137, 0, 0, 138, 139,
+ 140, 0, 0, 0, 0, 0, 0, 0, 202, 0,
+ 0, 0, 0, 141, 142, 143, 144, 145, 0, 132,
+ 133, 0, 146, 147, 134, 135, 136, 0, 137, 0,
+ 0, 138, 139, 140, 0, 0, 0, 0, 0, 0,
+ 0, 0, 232, 0, 0, 0, 141, 142, 143, 144,
+ 145, 0, 63, 132, 133, 146, 147, 0, 134, 135,
+ 136, 0, 137, 0, 0, 138, 139, 140, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 175, 0, 233,
+ 141, 142, 143, 144, 145, 0, 132, 133, 0, 146,
+ 147, 134, 135, 136, 0, 137, 0, 0, 138, 139,
+ 140, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 141, 142, 143, 144, 145, 0, 132,
+ 133, 0, 146, 147, 134, 135, 136, 0, 137, 0,
+ 0, 138, 139, 140, 0, 0, 0, 0, 0, 186,
+ 187, 0, 0, 0, 0, 0, 141, 142, 143, 144,
+ 145, 0, 132, 133, 0, 146, 147, 134, 135, 136,
+ 0, 137, 0, 0, 138, 139, 140, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 200, 141,
+ 142, 143, 144, 145, 0, 132, 133, 191, 146, 147,
+ 134, 135, 136, 0, 137, 0, 0, 138, 139, 140,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 137, 138, 139, 140, 141, 0, 128, 129,
- 184, 142, 143, 130, 131, 132, 0, 133, 0, 0,
- 134, 135, 136, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 193, 137, 138, 139, 140, 141,
- 0, 128, 129, 0, 142, 143, 130, 131, 132, 0,
- 133, 0, 0, 134, 135, 136, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 137, 138,
- 139, 140, 141, 0, 0, 0, 0, 142, 143
+ 0, 0, 141, 142, 143, 144, 145, 0, 132, 133,
+ 191, 146, 147, 134, 135, 136, 0, 137, 0, 0,
+ 138, 139, 140, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 200, 141, 142, 143, 144, 145,
+ 0, 132, 133, 0, 146, 147, 134, 135, 136, 0,
+ 137, 0, 0, 138, 139, 140, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 141, 142,
+ 143, 144, 145, 0, 0, 0, 0, 146, 147
};
static const yytype_int16 yycheck[] =
{
- 0, 49, 0, 54, 49, 4, 29, 93, 7, 8,
- 9, 274, 227, 12, 13, 72, 121, 95, 123, 44,
- 19, 24, 100, 22, 1, 46, 28, 32, 291, 28,
- 29, 24, 31, 32, 33, 34, 35, 36, 86, 96,
- 97, 86, 41, 42, 43, 44, 71, 262, 53, 297,
- 75, 53, 12, 13, 53, 24, 55, 245, 300, 30,
- 248, 24, 310, 86, 24, 95, 65, 24, 45, 311,
- 100, 167, 71, 41, 73, 43, 75, 100, 49, 95,
- 79, 93, 81, 24, 100, 24, 182, 24, 100, 51,
- 52, 99, 100, 24, 93, 93, 192, 94, 94, 86,
- 94, 289, 290, 41, 24, 100, 294, 24, 296, 100,
- 100, 100, 48, 48, 100, 24, 24, 24, 306, 307,
- 120, 24, 121, 122, 123, 95, 24, 49, 95, 128,
- 129, 130, 131, 132, 133, 134, 135, 136, 137, 138,
- 139, 140, 141, 142, 143, 144, 28, 146, 24, 100,
- 127, 24, 340, 28, 32, 154, 53, 48, 28, 158,
- 159, 28, 161, 162, 28, 164, 165, 48, 28, 168,
- 189, 120, 171, 172, 173, 174, 175, 176, 177, 178,
- 179, 180, 285, 310, 29, 13, -1, 186, 284, 66,
- 67, -1, 69, -1, 193, 72, 195, 302, 249, -1,
- -1, -1, -1, 299, -1, -1, -1, -1, 313, -1,
- 87, 88, 89, 90, 91, 192, -1, -1, 243, 96,
- 97, -1, -1, -1, 223, 224, -1, -1, -1, -1,
- 326, -1, 328, 252, -1, -1, -1, -1, 334, -1,
- -1, -1, -1, -1, 243, 264, -1, -1, 267, 268,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 258,
- 259, 260, 261, 314, 283, -1, -1, 266, -1, -1,
- -1, -1, -1, -1, 293, -1, -1, 254, -1, -1,
- 257, 300, -1, 282, -1, 336, -1, -1, -1, 308,
- 309, 310, -1, -1, -1, 66, 67, -1, 69, -1,
- 319, 72, 279, 302, 66, 67, 325, 69, 327, -1,
- 72, -1, -1, -1, 313, -1, -1, 88, 89, 90,
- 91, -1, -1, 342, 343, 96, 97, -1, 90, 91,
- 0, 1, -1, -1, 96, 97, -1, -1, 338, -1,
- 340, 11, 12, 13, 14, -1, 16, 17, 18, 19,
- 20, -1, 22, 23, 24, 25, -1, 27, -1, 29,
- -1, -1, -1, 33, -1, 35, 36, 37, -1, -1,
- 40, -1, -1, -1, -1, 45, 46, 47, -1, -1,
- 50, -1, -1, -1, 54, 55, 56, 57, -1, 59,
- -1, -1, -1, -1, -1, -1, -1, -1, 68, -1,
- -1, -1, -1, -1, -1, 75, 76, 77, 78, 79,
- -1, -1, 82, 83, 84, 85, -1, -1, 88, 89,
- -1, -1, -1, 93, 94, -1, -1, -1, 98, 11,
+ 0, 30, 0, 50, 55, 4, 13, 14, 7, 8,
+ 9, 50, 283, 12, 13, 14, 125, 236, 127, 45,
+ 1, 20, 31, 96, 23, 73, 29, 96, 101, 300,
+ 29, 30, 101, 32, 33, 34, 35, 36, 37, 33,
+ 87, 50, 94, 42, 43, 44, 45, 73, 87, 97,
+ 98, 54, 271, 79, 95, 54, 254, 56, 174, 257,
+ 54, 90, 25, 70, 306, 46, 87, 66, 75, 12,
+ 13, 70, 94, 189, 73, 104, 75, 319, 77, 101,
+ 79, 47, 25, 199, 83, 42, 85, 44, 309, 67,
+ 68, 25, 70, 52, 53, 73, 94, 25, 97, 320,
+ 298, 299, 25, 96, 96, 303, 25, 305, 101, 101,
+ 88, 89, 90, 91, 92, 25, 96, 315, 316, 97,
+ 98, 101, 25, 25, 124, 25, 125, 126, 127, 100,
+ 101, 95, 101, 132, 133, 134, 135, 136, 137, 138,
+ 139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
+ 131, 349, 101, 152, 95, 42, 25, 49, 25, 101,
+ 49, 101, 161, 101, 25, 25, 165, 166, 25, 168,
+ 169, 25, 171, 172, 96, 96, 175, 293, 196, 178,
+ 179, 180, 181, 182, 183, 184, 185, 186, 187, 25,
+ 29, 50, 308, 25, 193, 101, 29, 25, 33, 54,
+ 49, 200, 311, 202, 29, 29, 29, 258, 49, 29,
+ 124, 294, 319, 322, 67, 68, 30, 70, 199, 335,
+ 73, 337, -1, -1, -1, -1, 252, 343, -1, -1,
+ -1, -1, -1, 232, 233, -1, 89, 90, 91, 92,
+ -1, -1, -1, 261, 97, 98, -1, -1, -1, -1,
+ -1, -1, -1, 252, -1, 273, -1, -1, 276, 277,
+ -1, -1, -1, -1, -1, -1, -1, -1, 267, 268,
+ 269, 270, 323, -1, 292, -1, 275, -1, -1, -1,
+ -1, -1, 263, -1, 302, 266, -1, -1, -1, -1,
+ -1, 309, 291, -1, 345, -1, -1, -1, -1, 317,
+ 318, 319, -1, -1, -1, 67, 68, 288, 70, -1,
+ 328, 73, 311, -1, -1, -1, 334, -1, 336, -1,
+ -1, -1, -1, 322, -1, -1, -1, -1, -1, 91,
+ 92, -1, -1, 351, 352, 97, 98, -1, -1, 0,
+ 1, -1, -1, -1, -1, -1, -1, 347, -1, 349,
+ 11, 12, 13, 14, -1, 16, 17, 18, 19, 20,
+ -1, 22, 23, 24, 25, 26, -1, 28, -1, 30,
+ -1, -1, -1, 34, -1, 36, 37, 38, -1, -1,
+ 41, -1, -1, -1, -1, 46, 47, 48, -1, -1,
+ 51, -1, -1, -1, 55, 56, 57, 58, -1, 60,
+ -1, -1, -1, -1, -1, -1, -1, -1, 69, -1,
+ -1, -1, -1, -1, -1, 76, 77, 78, 79, 80,
+ -1, -1, 83, 84, 85, 86, -1, -1, 89, 90,
+ -1, -1, -1, 94, 95, -1, -1, -1, 99, 11,
12, 13, 14, -1, 16, 17, 18, 19, 20, -1,
- 22, 23, 24, 25, -1, 27, -1, 29, -1, -1,
- -1, 33, -1, 35, 36, 37, -1, -1, 40, -1,
- -1, -1, -1, 45, 46, 47, -1, -1, 50, -1,
- -1, -1, 54, 55, 56, 57, -1, 59, -1, -1,
- -1, -1, -1, -1, -1, -1, 68, -1, -1, -1,
- -1, -1, -1, 75, 76, 77, 78, 79, -1, -1,
- 82, 83, 84, 85, -1, -1, 88, 89, -1, -1,
- -1, -1, 94, -1, -1, -1, 98, 11, 12, 13,
+ 22, 23, 24, 25, 26, -1, 28, -1, 30, -1,
+ -1, -1, 34, -1, 36, 37, 38, -1, -1, 41,
+ -1, -1, -1, -1, 46, 47, 48, -1, -1, 51,
+ -1, -1, -1, 55, 56, 57, 58, -1, 60, -1,
+ -1, -1, -1, -1, -1, -1, -1, 69, -1, -1,
+ -1, -1, -1, -1, 76, 77, 78, 79, 80, -1,
+ -1, 83, 84, 85, 86, -1, -1, 89, 90, -1,
+ -1, -1, -1, 95, -1, -1, -1, 99, 11, 12,
+ 13, 14, -1, 16, 17, 18, 19, 20, -1, 22,
+ 23, 24, 25, 26, -1, 28, 29, 30, -1, -1,
+ -1, 34, -1, 36, 37, 38, -1, -1, -1, -1,
+ -1, -1, -1, 46, 47, 48, -1, -1, 51, -1,
+ -1, -1, -1, -1, 57, 58, -1, 60, -1, -1,
+ -1, -1, -1, -1, -1, -1, 69, -1, -1, -1,
+ -1, -1, -1, 76, 77, 78, 79, 80, -1, -1,
+ 83, 84, -1, 86, -1, -1, 89, 90, -1, -1,
+ -1, 94, 95, -1, -1, -1, 99, 11, 12, 13,
14, -1, 16, 17, 18, 19, 20, -1, 22, 23,
- 24, 25, -1, 27, 28, 29, -1, -1, -1, 33,
- -1, 35, 36, 37, -1, -1, -1, -1, -1, -1,
- -1, 45, 46, 47, -1, -1, 50, -1, -1, -1,
- -1, -1, 56, 57, -1, 59, -1, -1, -1, -1,
- -1, -1, -1, -1, 68, -1, -1, -1, -1, -1,
- -1, 75, 76, 77, 78, 79, -1, -1, 82, 83,
- -1, 85, -1, -1, 88, 89, -1, -1, -1, 93,
- 94, -1, -1, -1, 98, 11, 12, 13, 14, -1,
+ 24, 25, 26, -1, 28, -1, 30, -1, -1, -1,
+ 34, -1, 36, 37, 38, -1, -1, -1, -1, -1,
+ -1, -1, 46, 47, 48, -1, -1, 51, -1, -1,
+ -1, -1, -1, 57, 58, -1, 60, -1, -1, -1,
+ -1, -1, -1, -1, -1, 69, -1, -1, -1, -1,
+ -1, -1, 76, 77, 78, 79, 80, -1, -1, 83,
+ 84, -1, 86, -1, -1, 89, 90, -1, -1, -1,
+ 94, 95, -1, -1, -1, 99, 11, 12, 13, 14,
+ -1, 16, 17, 18, 19, 20, -1, 22, 23, 24,
+ 25, 26, -1, 28, -1, 30, -1, -1, -1, 34,
+ -1, 36, 37, 38, -1, -1, -1, -1, -1, -1,
+ -1, 46, 47, 48, -1, -1, 51, -1, -1, -1,
+ -1, -1, 57, 58, -1, 60, -1, -1, -1, -1,
+ -1, -1, -1, -1, 69, -1, -1, -1, -1, -1,
+ -1, 76, 77, 78, 79, 80, -1, -1, 83, 84,
+ -1, 86, -1, -1, 89, 90, -1, -1, -1, -1,
+ 95, -1, -1, -1, 99, 11, 12, 13, 14, -1,
16, 17, 18, 19, 20, -1, 22, 23, 24, 25,
- -1, 27, -1, 29, -1, -1, -1, 33, -1, 35,
- 36, 37, -1, -1, -1, -1, -1, -1, -1, 45,
- 46, 47, -1, -1, 50, -1, -1, -1, -1, -1,
- 56, 57, -1, 59, -1, -1, -1, -1, -1, -1,
- -1, -1, 68, -1, -1, -1, -1, -1, -1, 75,
- 76, 77, 78, 79, -1, -1, 82, 83, -1, 85,
- -1, -1, 88, 89, -1, -1, -1, 93, 94, -1,
- -1, -1, 98, 11, 12, 13, 14, -1, 16, 17,
- 18, 19, 20, -1, 22, 23, 24, 25, -1, 27,
- -1, 29, -1, -1, -1, 33, -1, 35, 36, 37,
- -1, -1, -1, -1, -1, -1, -1, 45, 46, 47,
- -1, -1, 50, -1, -1, -1, -1, -1, 56, 57,
- -1, 59, -1, -1, -1, -1, -1, -1, -1, -1,
- 68, -1, -1, -1, -1, -1, -1, 75, 76, 77,
- 78, 79, -1, -1, 82, 83, -1, 85, -1, -1,
- 88, 89, -1, -1, -1, -1, 94, -1, -1, -1,
- 98, 11, 12, 13, 14, -1, 16, 17, 18, 19,
- 20, -1, 22, 23, 24, 25, -1, 27, -1, 29,
- -1, -1, -1, 33, -1, 35, 36, -1, -1, -1,
- -1, -1, -1, -1, -1, 45, -1, 47, -1, -1,
- -1, -1, -1, -1, -1, -1, 56, 57, -1, 59,
- -1, -1, -1, -1, -1, -1, -1, -1, 68, -1,
- -1, -1, -1, -1, -1, 75, 76, 77, 78, 79,
- -1, -1, -1, 83, -1, 85, -1, -1, 88, 89,
- 11, 12, 13, 14, 94, -1, -1, -1, 98, -1,
- -1, 22, 23, 24, 25, -1, 27, -1, -1, -1,
- -1, -1, -1, 34, -1, -1, -1, -1, 39, -1,
- 41, 42, 43, 44, 45, -1, 47, -1, -1, 11,
- 12, 13, 14, -1, -1, -1, -1, -1, -1, -1,
- 22, 23, 24, 25, -1, 27, -1, 68, -1, -1,
- -1, -1, 34, -1, 75, 76, 77, 78, 79, 41,
- -1, 43, -1, 45, -1, 47, -1, 88, 89, 11,
- 12, 13, 14, 94, -1, -1, 58, 98, -1, -1,
- 22, 23, 24, 25, -1, 27, 68, -1, -1, -1,
- -1, -1, -1, 75, 76, 77, 78, 79, -1, -1,
- -1, -1, -1, 45, -1, 47, 88, 89, 11, 12,
- 13, 14, 94, -1, -1, -1, 98, -1, -1, 22,
- 23, 24, 25, -1, 27, -1, 68, -1, -1, -1,
- -1, -1, -1, 75, 76, 77, 78, 79, -1, -1,
- -1, -1, 45, -1, 47, -1, 88, 89, 11, 12,
- 13, 14, 94, -1, -1, -1, 98, -1, -1, 22,
- 23, 24, 25, -1, 27, 68, -1, -1, -1, -1,
- -1, -1, 75, 76, 77, 78, 79, -1, -1, -1,
- -1, -1, 45, -1, 47, 88, 89, -1, -1, -1,
- -1, 94, -1, -1, -1, 98, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 68, -1, -1, -1, -1,
- 38, -1, 75, 76, 77, 78, 79, -1, -1, -1,
- -1, -1, -1, -1, -1, 88, 89, -1, -1, -1,
- -1, 94, 60, 61, -1, 98, -1, 65, 66, 67,
- -1, 69, 70, 71, 72, 73, 74, -1, 43, -1,
- -1, -1, -1, -1, 49, -1, -1, -1, -1, 87,
- 88, 89, 90, 91, -1, 60, 61, -1, 96, 97,
- 65, 66, 67, -1, 69, -1, -1, 72, 73, 74,
- -1, 43, -1, -1, -1, -1, -1, 49, -1, -1,
- -1, -1, 87, 88, 89, 90, 91, -1, 60, 61,
- -1, 96, 97, 65, 66, 67, -1, 69, -1, -1,
- 72, 73, 74, -1, 43, -1, -1, -1, -1, -1,
- 49, -1, -1, -1, -1, 87, 88, 89, 90, 91,
- -1, 60, 61, -1, 96, 97, 65, 66, 67, -1,
- 69, -1, -1, 72, 73, 74, -1, 43, -1, -1,
- -1, -1, -1, 49, -1, -1, -1, -1, 87, 88,
- 89, 90, 91, -1, 60, 61, -1, 96, 97, 65,
- 66, 67, -1, 69, -1, -1, 72, 73, 74, -1,
- 43, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 87, 88, 89, 90, 91, -1, 60, 61, -1,
- 96, 97, 65, 66, 67, -1, 69, -1, -1, 72,
- 73, 74, -1, 43, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 87, 88, 89, 90, 91, -1,
- 60, 61, -1, 96, 97, 65, 66, 67, -1, 69,
- -1, -1, 72, 73, 74, -1, 43, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 87, 88, 89,
- 90, 91, -1, 60, 61, -1, 96, 97, 65, 66,
- 67, -1, 69, -1, -1, 72, 73, 74, -1, 43,
+ 26, -1, 28, -1, 30, -1, -1, -1, 34, -1,
+ 36, 37, -1, -1, -1, -1, -1, -1, -1, -1,
+ 46, -1, 48, -1, -1, -1, -1, -1, -1, -1,
+ -1, 57, 58, -1, 60, -1, -1, -1, -1, -1,
+ -1, -1, -1, 69, -1, -1, -1, -1, -1, -1,
+ 76, 77, 78, 79, 80, -1, -1, -1, 84, -1,
+ 86, -1, -1, 89, 90, 11, 12, 13, 14, 95,
+ -1, -1, -1, 99, -1, -1, 22, 23, 24, 25,
+ 26, -1, 28, -1, -1, -1, -1, -1, -1, 35,
+ -1, -1, -1, -1, 40, -1, 42, 43, 44, 45,
+ 46, -1, 48, -1, 11, 12, 13, 14, -1, -1,
+ -1, -1, -1, -1, -1, 22, 23, 24, 25, 26,
+ -1, 28, -1, 69, -1, -1, -1, -1, 35, -1,
+ 76, 77, 78, 79, 80, 42, -1, 44, -1, 46,
+ -1, 48, -1, 89, 90, -1, -1, -1, -1, 95,
+ -1, -1, 59, 99, -1, -1, -1, -1, -1, -1,
+ -1, -1, 69, 11, 12, 13, 14, -1, -1, 76,
+ 77, 78, 79, 80, 22, 23, 24, 25, 26, -1,
+ 28, -1, 89, 90, -1, -1, -1, -1, 95, -1,
+ -1, -1, 99, -1, -1, -1, -1, -1, 46, -1,
+ 48, 11, 12, 13, 14, -1, -1, -1, -1, -1,
+ -1, -1, 22, 23, 24, 25, 26, -1, 28, -1,
+ -1, 69, -1, -1, -1, -1, -1, -1, 76, 77,
+ 78, 79, 80, -1, -1, -1, 46, -1, 48, -1,
+ -1, 89, 90, -1, -1, -1, -1, 95, -1, -1,
+ -1, 99, -1, -1, -1, -1, -1, -1, -1, 69,
+ 11, 12, 13, 14, -1, -1, 76, 77, 78, 79,
+ 80, 22, 23, 24, 25, 26, -1, 28, -1, 89,
+ 90, -1, -1, -1, -1, 95, -1, -1, -1, 99,
+ -1, -1, -1, -1, -1, 46, -1, 48, 11, 12,
+ 13, 14, -1, -1, -1, -1, -1, -1, -1, 22,
+ 23, 24, 25, 26, -1, 28, -1, -1, 69, -1,
+ -1, -1, -1, -1, -1, 76, 77, 78, 79, 80,
+ -1, -1, -1, 46, -1, 48, -1, -1, 89, 90,
+ -1, -1, -1, -1, 95, -1, -1, -1, 99, -1,
+ -1, -1, -1, -1, -1, -1, 69, 11, 12, 13,
+ 14, -1, -1, 76, 77, 78, 79, 80, 22, 23,
+ 24, 25, 26, -1, 28, -1, 89, 90, -1, -1,
+ -1, -1, 95, -1, -1, -1, 99, -1, -1, -1,
+ -1, -1, 46, -1, 48, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 87, 88, 89, 90, 91, -1, 60, 61, -1, 96,
- 97, 65, 66, 67, -1, 69, -1, -1, 72, 73,
- 74, -1, -1, -1, -1, -1, -1, -1, 49, -1,
- -1, -1, -1, 87, 88, 89, 90, 91, -1, 60,
- 61, -1, 96, 97, 65, 66, 67, -1, 69, -1,
- -1, 72, 73, 74, -1, -1, -1, -1, -1, -1,
- -1, -1, 49, -1, -1, -1, 87, 88, 89, 90,
- 91, -1, 93, 60, 61, 96, 97, -1, 65, 66,
- 67, -1, 69, -1, -1, 72, 73, 74, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 51, -1, 86,
- 87, 88, 89, 90, 91, -1, 60, 61, -1, 96,
- 97, 65, 66, 67, -1, 69, -1, -1, 72, 73,
- 74, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 87, 88, 89, 90, 91, -1, 60,
- 61, -1, 96, 97, 65, 66, 67, -1, 69, -1,
- -1, 72, 73, 74, -1, -1, -1, -1, -1, 80,
- 81, -1, -1, -1, -1, -1, 87, 88, 89, 90,
- 91, -1, 60, 61, -1, 96, 97, 65, 66, 67,
- -1, 69, -1, -1, 72, 73, 74, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 86, 87,
- 88, 89, 90, 91, -1, 60, 61, 95, 96, 97,
- 65, 66, 67, -1, 69, -1, -1, 72, 73, 74,
+ -1, -1, -1, -1, -1, 69, -1, -1, -1, -1,
+ 39, -1, 76, 77, 78, 79, 80, -1, -1, -1,
+ -1, -1, -1, -1, -1, 89, 90, -1, -1, -1,
+ -1, 95, 61, 62, -1, 99, -1, 66, 67, 68,
+ -1, 70, 71, 72, 73, 74, 75, -1, 44, -1,
+ -1, -1, -1, -1, 50, -1, -1, -1, -1, 88,
+ 89, 90, 91, 92, -1, 61, 62, -1, 97, 98,
+ 66, 67, 68, -1, 70, -1, -1, 73, 74, 75,
+ -1, 44, -1, -1, -1, -1, -1, 50, -1, -1,
+ -1, -1, 88, 89, 90, 91, 92, -1, 61, 62,
+ -1, 97, 98, 66, 67, 68, -1, 70, -1, -1,
+ 73, 74, 75, -1, 44, -1, -1, -1, -1, -1,
+ 50, -1, -1, -1, -1, 88, 89, 90, 91, 92,
+ -1, 61, 62, -1, 97, 98, 66, 67, 68, -1,
+ 70, -1, -1, 73, 74, 75, -1, 44, -1, -1,
+ -1, -1, -1, 50, -1, -1, -1, -1, 88, 89,
+ 90, 91, 92, -1, 61, 62, -1, 97, 98, 66,
+ 67, 68, -1, 70, -1, -1, 73, 74, 75, -1,
+ 44, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 88, 89, 90, 91, 92, -1, 61, 62, -1,
+ 97, 98, 66, 67, 68, -1, 70, -1, -1, 73,
+ 74, 75, -1, 44, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 88, 89, 90, 91, 92, -1,
+ 61, 62, -1, 97, 98, 66, 67, 68, -1, 70,
+ -1, -1, 73, 74, 75, -1, 44, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 88, 89, 90,
+ 91, 92, -1, 61, 62, -1, 97, 98, 66, 67,
+ 68, -1, 70, -1, -1, 73, 74, 75, -1, 44,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 87, 88, 89, 90, 91, -1, 60, 61,
- 95, 96, 97, 65, 66, 67, -1, 69, -1, -1,
- 72, 73, 74, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 86, 87, 88, 89, 90, 91,
- -1, 60, 61, -1, 96, 97, 65, 66, 67, -1,
- 69, -1, -1, 72, 73, 74, -1, -1, -1, -1,
+ 88, 89, 90, 91, 92, -1, 61, 62, -1, 97,
+ 98, 66, 67, 68, -1, 70, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, -1, -1, 50, -1,
+ -1, -1, -1, 88, 89, 90, 91, 92, -1, 61,
+ 62, -1, 97, 98, 66, 67, 68, -1, 70, -1,
+ -1, 73, 74, 75, -1, -1, -1, -1, -1, -1,
+ -1, -1, 50, -1, -1, -1, 88, 89, 90, 91,
+ 92, -1, 94, 61, 62, 97, 98, -1, 66, 67,
+ 68, -1, 70, -1, -1, 73, 74, 75, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 52, -1, 87,
+ 88, 89, 90, 91, 92, -1, 61, 62, -1, 97,
+ 98, 66, 67, 68, -1, 70, -1, -1, 73, 74,
+ 75, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 88, 89, 90, 91, 92, -1, 61,
+ 62, -1, 97, 98, 66, 67, 68, -1, 70, -1,
+ -1, 73, 74, 75, -1, -1, -1, -1, -1, 81,
+ 82, -1, -1, -1, -1, -1, 88, 89, 90, 91,
+ 92, -1, 61, 62, -1, 97, 98, 66, 67, 68,
+ -1, 70, -1, -1, 73, 74, 75, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 87, 88,
- 89, 90, 91, -1, -1, -1, -1, 96, 97
+ 89, 90, 91, 92, -1, 61, 62, 96, 97, 98,
+ 66, 67, 68, -1, 70, -1, -1, 73, 74, 75,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 88, 89, 90, 91, 92, -1, 61, 62,
+ 96, 97, 98, 66, 67, 68, -1, 70, -1, -1,
+ 73, 74, 75, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 87, 88, 89, 90, 91, 92,
+ -1, 61, 62, -1, 97, 98, 66, 67, 68, -1,
+ 70, -1, -1, 73, 74, 75, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 88, 89,
+ 90, 91, 92, -1, -1, -1, -1, 97, 98
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
@@ -1246,40 +1285,41 @@ static const yytype_int16 yycheck[] =
static const yytype_uint8 yystos[] =
{
0, 1, 11, 12, 13, 14, 16, 17, 18, 19,
- 20, 22, 23, 24, 25, 27, 29, 33, 35, 36,
- 37, 40, 45, 46, 47, 50, 54, 55, 56, 57,
- 59, 68, 75, 76, 77, 78, 79, 82, 83, 84,
- 85, 88, 89, 94, 98, 102, 104, 105, 106, 107,
- 108, 115, 116, 117, 122, 123, 124, 125, 129, 132,
- 134, 141, 93, 103, 24, 45, 124, 124, 124, 124,
- 143, 24, 124, 94, 143, 133, 46, 24, 126, 34,
- 39, 41, 42, 43, 44, 124, 130, 131, 24, 124,
- 51, 52, 12, 13, 24, 24, 24, 24, 124, 58,
- 130, 131, 24, 128, 124, 124, 124, 124, 124, 124,
- 24, 127, 24, 94, 124, 124, 124, 124, 142, 0,
- 103, 94, 86, 94, 114, 124, 106, 124, 60, 61,
- 65, 66, 67, 69, 72, 73, 74, 87, 88, 89,
- 90, 91, 96, 97, 94, 124, 100, 142, 124, 142,
- 142, 100, 124, 124, 41, 131, 135, 38, 70, 71,
- 24, 49, 86, 124, 49, 86, 48, 136, 51, 131,
- 100, 43, 49, 43, 49, 43, 49, 43, 49, 80,
- 81, 100, 137, 24, 95, 99, 100, 104, 114, 124,
- 114, 124, 48, 86, 120, 49, 103, 124, 124, 124,
- 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
- 124, 124, 124, 124, 95, 24, 124, 119, 24, 124,
- 124, 124, 124, 49, 86, 124, 124, 119, 124, 24,
- 124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
- 24, 119, 95, 100, 124, 95, 120, 95, 103, 119,
- 124, 124, 121, 24, 139, 124, 124, 139, 43, 43,
- 43, 43, 138, 142, 121, 30, 49, 121, 106, 103,
- 107, 120, 100, 103, 103, 124, 124, 124, 124, 139,
- 95, 120, 49, 124, 120, 120, 28, 24, 100, 140,
- 140, 103, 28, 124, 120, 28, 53, 119, 32, 53,
- 111, 112, 118, 24, 121, 121, 140, 120, 121, 121,
- 110, 111, 113, 118, 119, 112, 120, 114, 121, 121,
- 120, 120, 113, 120, 114, 106, 53, 109, 48, 28,
- 120, 28, 28, 28, 48, 120, 119, 120, 119, 28,
- 119, 106, 107, 121, 120, 120
+ 20, 22, 23, 24, 25, 26, 28, 30, 34, 36,
+ 37, 38, 41, 46, 47, 48, 51, 55, 56, 57,
+ 58, 60, 69, 76, 77, 78, 79, 80, 83, 84,
+ 85, 86, 89, 90, 95, 99, 103, 105, 106, 107,
+ 108, 109, 116, 117, 118, 123, 124, 125, 126, 130,
+ 133, 135, 142, 94, 104, 25, 46, 125, 125, 125,
+ 95, 125, 144, 25, 125, 95, 144, 95, 144, 134,
+ 47, 25, 127, 35, 40, 42, 43, 44, 45, 125,
+ 131, 132, 25, 125, 52, 53, 12, 13, 25, 25,
+ 25, 25, 125, 59, 131, 132, 25, 129, 125, 125,
+ 125, 125, 125, 125, 25, 128, 25, 95, 125, 125,
+ 125, 125, 143, 0, 104, 95, 87, 95, 115, 125,
+ 107, 125, 61, 62, 66, 67, 68, 70, 73, 74,
+ 75, 88, 89, 90, 91, 92, 97, 98, 95, 125,
+ 125, 144, 101, 143, 144, 125, 143, 143, 101, 125,
+ 125, 42, 132, 136, 39, 71, 72, 25, 50, 87,
+ 125, 50, 87, 49, 137, 52, 132, 101, 44, 50,
+ 44, 50, 44, 50, 44, 50, 81, 82, 101, 138,
+ 25, 96, 100, 101, 105, 115, 125, 115, 125, 49,
+ 87, 121, 50, 104, 125, 125, 125, 125, 125, 125,
+ 125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
+ 96, 125, 96, 96, 25, 125, 120, 25, 125, 125,
+ 125, 125, 50, 87, 125, 125, 120, 125, 25, 125,
+ 125, 125, 125, 125, 125, 125, 125, 125, 125, 25,
+ 120, 96, 101, 125, 96, 121, 96, 104, 120, 125,
+ 125, 122, 25, 140, 125, 125, 140, 44, 44, 44,
+ 44, 139, 143, 122, 31, 50, 122, 107, 104, 108,
+ 121, 101, 104, 104, 125, 125, 125, 125, 140, 96,
+ 121, 50, 125, 121, 121, 29, 25, 101, 141, 141,
+ 104, 29, 125, 121, 29, 54, 120, 33, 54, 112,
+ 113, 119, 25, 122, 122, 141, 121, 122, 122, 111,
+ 112, 114, 119, 120, 113, 121, 115, 122, 122, 121,
+ 121, 114, 121, 115, 107, 54, 110, 49, 29, 121,
+ 29, 29, 29, 49, 121, 120, 121, 120, 29, 120,
+ 107, 108, 122, 121, 121
};
#define yyerrok (yyerrstatus = 0)
@@ -2492,34 +2532,44 @@ yyreduce:
case 62:
#line 413 "engines/director/lingo/lingo-gr.y"
{
- (yyval.code) = g_lingo->code1(g_lingo->_builtins[*(yyvsp[(1) - (1)].s)]->u.func);
+ g_lingo->codeFunc((yyvsp[(1) - (1)].s), 0);
delete (yyvsp[(1) - (1)].s); ;}
break;
case 63:
#line 416 "engines/director/lingo/lingo-gr.y"
{
- g_lingo->code1(g_lingo->_builtins[*(yyvsp[(1) - (2)].s)]->u.func);
+ g_lingo->codeFunc((yyvsp[(1) - (2)].s), 1);
delete (yyvsp[(1) - (2)].s); ;}
break;
case 64:
#line 419 "engines/director/lingo/lingo-gr.y"
+ { g_lingo->codeFunc((yyvsp[(1) - (2)].s), (yyvsp[(2) - (2)].narg)); ;}
+ break;
+
+ case 65:
+#line 420 "engines/director/lingo/lingo-gr.y"
+ { g_lingo->codeFunc((yyvsp[(1) - (4)].s), (yyvsp[(3) - (4)].narg)); ;}
+ break;
+
+ case 66:
+#line 421 "engines/director/lingo/lingo-gr.y"
{
(yyval.code) = g_lingo->codeFunc((yyvsp[(1) - (4)].s), (yyvsp[(3) - (4)].narg));
delete (yyvsp[(1) - (4)].s); ;}
break;
- case 65:
-#line 422 "engines/director/lingo/lingo-gr.y"
+ case 67:
+#line 424 "engines/director/lingo/lingo-gr.y"
{
(yyval.code) = g_lingo->code1(g_lingo->c_eval);
g_lingo->codeString((yyvsp[(1) - (1)].s)->c_str());
delete (yyvsp[(1) - (1)].s); ;}
break;
- case 66:
-#line 426 "engines/director/lingo/lingo-gr.y"
+ case 68:
+#line 428 "engines/director/lingo/lingo-gr.y"
{
(yyval.code) = g_lingo->codeConst(0); // Put dummy id
g_lingo->code1(g_lingo->c_theentitypush);
@@ -2529,8 +2579,8 @@ yyreduce:
g_lingo->code2(e, f); ;}
break;
- case 67:
-#line 433 "engines/director/lingo/lingo-gr.y"
+ case 69:
+#line 435 "engines/director/lingo/lingo-gr.y"
{
(yyval.code) = g_lingo->code1(g_lingo->c_theentitypush);
inst e = 0, f = 0;
@@ -2539,346 +2589,352 @@ yyreduce:
g_lingo->code2(e, f); ;}
break;
- case 69:
-#line 440 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_add); ;}
- break;
-
- case 70:
-#line 441 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_sub); ;}
- break;
-
case 71:
#line 442 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_mul); ;}
+ { g_lingo->code1(g_lingo->c_add); ;}
break;
case 72:
#line 443 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_div); ;}
+ { g_lingo->code1(g_lingo->c_sub); ;}
break;
case 73:
#line 444 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_mod); ;}
+ { g_lingo->code1(g_lingo->c_mul); ;}
break;
case 74:
#line 445 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_gt); ;}
+ { g_lingo->code1(g_lingo->c_div); ;}
break;
case 75:
#line 446 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_lt); ;}
+ { g_lingo->code1(g_lingo->c_mod); ;}
break;
case 76:
#line 447 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_neq); ;}
+ { g_lingo->code1(g_lingo->c_gt); ;}
break;
case 77:
#line 448 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_ge); ;}
+ { g_lingo->code1(g_lingo->c_lt); ;}
break;
case 78:
#line 449 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_le); ;}
+ { g_lingo->code1(g_lingo->c_neq); ;}
break;
case 79:
#line 450 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_and); ;}
+ { g_lingo->code1(g_lingo->c_ge); ;}
break;
case 80:
#line 451 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_or); ;}
+ { g_lingo->code1(g_lingo->c_le); ;}
break;
case 81:
#line 452 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_not); ;}
+ { g_lingo->code1(g_lingo->c_and); ;}
break;
case 82:
#line 453 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_ampersand); ;}
+ { g_lingo->code1(g_lingo->c_or); ;}
break;
case 83:
#line 454 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_concat); ;}
+ { g_lingo->code1(g_lingo->c_not); ;}
break;
case 84:
#line 455 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_contains); ;}
+ { g_lingo->code1(g_lingo->c_ampersand); ;}
break;
case 85:
#line 456 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_starts); ;}
+ { g_lingo->code1(g_lingo->c_concat); ;}
break;
case 86:
#line 457 "engines/director/lingo/lingo-gr.y"
- { (yyval.code) = (yyvsp[(2) - (2)].code); ;}
+ { g_lingo->code1(g_lingo->c_contains); ;}
break;
case 87:
#line 458 "engines/director/lingo/lingo-gr.y"
- { (yyval.code) = (yyvsp[(2) - (2)].code); g_lingo->code1(g_lingo->c_negate); ;}
+ { g_lingo->code1(g_lingo->c_starts); ;}
break;
case 88:
#line 459 "engines/director/lingo/lingo-gr.y"
- { (yyval.code) = (yyvsp[(2) - (3)].code); ;}
+ { (yyval.code) = (yyvsp[(2) - (2)].code); ;}
break;
case 89:
#line 460 "engines/director/lingo/lingo-gr.y"
- { (yyval.code) = g_lingo->codeArray((yyvsp[(2) - (3)].narg)); ;}
+ { (yyval.code) = (yyvsp[(2) - (2)].code); g_lingo->code1(g_lingo->c_negate); ;}
break;
case 90:
#line 461 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_intersects); ;}
+ { (yyval.code) = (yyvsp[(2) - (3)].code); ;}
break;
case 91:
#line 462 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_within); ;}
+ { (yyval.code) = g_lingo->codeArray((yyvsp[(2) - (3)].narg)); ;}
break;
case 92:
#line 463 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_charOf); ;}
+ { g_lingo->code1(g_lingo->c_intersects); ;}
break;
case 93:
#line 464 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_charToOf); ;}
+ { g_lingo->code1(g_lingo->c_within); ;}
break;
case 94:
#line 465 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_itemOf); ;}
+ { g_lingo->code1(g_lingo->c_charOf); ;}
break;
case 95:
#line 466 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_itemToOf); ;}
+ { g_lingo->code1(g_lingo->c_charToOf); ;}
break;
case 96:
#line 467 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_lineOf); ;}
+ { g_lingo->code1(g_lingo->c_itemOf); ;}
break;
case 97:
#line 468 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_lineToOf); ;}
+ { g_lingo->code1(g_lingo->c_itemToOf); ;}
break;
case 98:
#line 469 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_wordOf); ;}
+ { g_lingo->code1(g_lingo->c_lineOf); ;}
break;
case 99:
#line 470 "engines/director/lingo/lingo-gr.y"
- { g_lingo->code1(g_lingo->c_wordToOf); ;}
+ { g_lingo->code1(g_lingo->c_lineToOf); ;}
break;
case 100:
-#line 473 "engines/director/lingo/lingo-gr.y"
+#line 471 "engines/director/lingo/lingo-gr.y"
+ { g_lingo->code1(g_lingo->c_wordOf); ;}
+ break;
+
+ case 101:
+#line 472 "engines/director/lingo/lingo-gr.y"
+ { g_lingo->code1(g_lingo->c_wordToOf); ;}
+ break;
+
+ case 102:
+#line 475 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_printtop); ;}
break;
- case 103:
-#line 476 "engines/director/lingo/lingo-gr.y"
+ case 105:
+#line 478 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_exitRepeat); ;}
break;
- case 104:
-#line 477 "engines/director/lingo/lingo-gr.y"
+ case 106:
+#line 479 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeConst(0); // Push fake value on stack
g_lingo->code1(g_lingo->c_procret); ;}
break;
- case 108:
-#line 482 "engines/director/lingo/lingo-gr.y"
+ case 110:
+#line 484 "engines/director/lingo/lingo-gr.y"
{
- g_lingo->code1(g_lingo->_builtins[*(yyvsp[(1) - (1)].s)]->u.func);
+ g_lingo->codeFunc((yyvsp[(1) - (1)].s), 0);
delete (yyvsp[(1) - (1)].s); ;}
break;
- case 109:
-#line 485 "engines/director/lingo/lingo-gr.y"
+ case 111:
+#line 487 "engines/director/lingo/lingo-gr.y"
{
- g_lingo->code1(g_lingo->_builtins[*(yyvsp[(1) - (2)].s)]->u.func);
+ g_lingo->codeFunc((yyvsp[(1) - (2)].s), 1);
delete (yyvsp[(1) - (2)].s); ;}
break;
- case 110:
-#line 488 "engines/director/lingo/lingo-gr.y"
+ case 112:
+#line 490 "engines/director/lingo/lingo-gr.y"
{
- g_lingo->code1(g_lingo->_builtins[*(yyvsp[(1) - (2)].s)]->u.func);
+ g_lingo->codeFunc((yyvsp[(1) - (2)].s), 1);
delete (yyvsp[(1) - (2)].s); ;}
break;
- case 111:
-#line 491 "engines/director/lingo/lingo-gr.y"
+ case 113:
+#line 493 "engines/director/lingo/lingo-gr.y"
{
- g_lingo->code2(g_lingo->c_voidpush, g_lingo->_builtins[*(yyvsp[(1) - (1)].s)]->u.func);
+ g_lingo->code1(g_lingo->c_voidpush);
+ g_lingo->codeFunc((yyvsp[(1) - (1)].s), 1);
delete (yyvsp[(1) - (1)].s); ;}
break;
- case 112:
-#line 494 "engines/director/lingo/lingo-gr.y"
+ case 114:
+#line 497 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeFunc((yyvsp[(1) - (2)].s), (yyvsp[(2) - (2)].narg)); ;}
break;
- case 113:
-#line 495 "engines/director/lingo/lingo-gr.y"
+ case 115:
+#line 498 "engines/director/lingo/lingo-gr.y"
+ { g_lingo->codeFunc((yyvsp[(1) - (4)].s), (yyvsp[(3) - (4)].narg)); ;}
+ break;
+
+ case 116:
+#line 499 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeMe((yyvsp[(3) - (4)].s), 0); ;}
break;
- case 114:
-#line 496 "engines/director/lingo/lingo-gr.y"
+ case 117:
+#line 500 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeMe((yyvsp[(3) - (6)].s), (yyvsp[(5) - (6)].narg)); ;}
break;
- case 115:
-#line 497 "engines/director/lingo/lingo-gr.y"
+ case 118:
+#line 501 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_open); ;}
break;
- case 116:
-#line 498 "engines/director/lingo/lingo-gr.y"
+ case 119:
+#line 502 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code2(g_lingo->c_voidpush, g_lingo->c_open); ;}
break;
- case 117:
-#line 499 "engines/director/lingo/lingo-gr.y"
+ case 120:
+#line 503 "engines/director/lingo/lingo-gr.y"
{ Common::String s(*(yyvsp[(1) - (3)].s)); s += '-'; s += *(yyvsp[(2) - (3)].s); g_lingo->codeFunc(&s, (yyvsp[(3) - (3)].narg)); ;}
break;
- case 118:
-#line 502 "engines/director/lingo/lingo-gr.y"
+ case 121:
+#line 506 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_global); g_lingo->codeString((yyvsp[(1) - (1)].s)->c_str()); delete (yyvsp[(1) - (1)].s); ;}
break;
- case 119:
-#line 503 "engines/director/lingo/lingo-gr.y"
+ case 122:
+#line 507 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_global); g_lingo->codeString((yyvsp[(3) - (3)].s)->c_str()); delete (yyvsp[(3) - (3)].s); ;}
break;
- case 120:
-#line 506 "engines/director/lingo/lingo-gr.y"
+ case 123:
+#line 510 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_property); g_lingo->codeString((yyvsp[(1) - (1)].s)->c_str()); delete (yyvsp[(1) - (1)].s); ;}
break;
- case 121:
-#line 507 "engines/director/lingo/lingo-gr.y"
+ case 124:
+#line 511 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_property); g_lingo->codeString((yyvsp[(3) - (3)].s)->c_str()); delete (yyvsp[(3) - (3)].s); ;}
break;
- case 122:
-#line 510 "engines/director/lingo/lingo-gr.y"
+ case 125:
+#line 514 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_instance); g_lingo->codeString((yyvsp[(1) - (1)].s)->c_str()); delete (yyvsp[(1) - (1)].s); ;}
break;
- case 123:
-#line 511 "engines/director/lingo/lingo-gr.y"
+ case 126:
+#line 515 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_instance); g_lingo->codeString((yyvsp[(3) - (3)].s)->c_str()); delete (yyvsp[(3) - (3)].s); ;}
break;
- case 124:
-#line 522 "engines/director/lingo/lingo-gr.y"
+ case 127:
+#line 526 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_gotoloop); ;}
break;
- case 125:
-#line 523 "engines/director/lingo/lingo-gr.y"
+ case 128:
+#line 527 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_gotonext); ;}
break;
- case 126:
-#line 524 "engines/director/lingo/lingo-gr.y"
+ case 129:
+#line 528 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_gotoprevious); ;}
break;
- case 127:
-#line 525 "engines/director/lingo/lingo-gr.y"
+ case 130:
+#line 529 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(1);
g_lingo->code1(g_lingo->c_goto); ;}
break;
- case 128:
-#line 528 "engines/director/lingo/lingo-gr.y"
+ case 131:
+#line 532 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(3);
g_lingo->code1(g_lingo->c_goto); ;}
break;
- case 129:
-#line 531 "engines/director/lingo/lingo-gr.y"
+ case 132:
+#line 535 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(2);
g_lingo->code1(g_lingo->c_goto); ;}
break;
- case 134:
-#line 544 "engines/director/lingo/lingo-gr.y"
+ case 137:
+#line 548 "engines/director/lingo/lingo-gr.y"
{ g_lingo->code1(g_lingo->c_playdone); ;}
break;
- case 135:
-#line 545 "engines/director/lingo/lingo-gr.y"
+ case 138:
+#line 549 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(1);
g_lingo->code1(g_lingo->c_play); ;}
break;
- case 136:
-#line 548 "engines/director/lingo/lingo-gr.y"
+ case 139:
+#line 552 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(3);
g_lingo->code1(g_lingo->c_play); ;}
break;
- case 137:
-#line 551 "engines/director/lingo/lingo-gr.y"
+ case 140:
+#line 555 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(2);
g_lingo->code1(g_lingo->c_play); ;}
break;
- case 138:
-#line 554 "engines/director/lingo/lingo-gr.y"
+ case 141:
+#line 558 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeSetImmediate(true); ;}
break;
- case 139:
-#line 554 "engines/director/lingo/lingo-gr.y"
+ case 142:
+#line 558 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeSetImmediate(false);
g_lingo->codeFunc((yyvsp[(1) - (3)].s), (yyvsp[(3) - (3)].narg)); ;}
break;
- case 140:
-#line 584 "engines/director/lingo/lingo-gr.y"
+ case 143:
+#line 588 "engines/director/lingo/lingo-gr.y"
{ g_lingo->_indef = true; g_lingo->_currentFactory.clear(); ;}
break;
- case 141:
-#line 585 "engines/director/lingo/lingo-gr.y"
+ case 144:
+#line 589 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(0); // Push fake value on stack
g_lingo->code1(g_lingo->c_procret);
@@ -2886,38 +2942,38 @@ yyreduce:
g_lingo->_indef = false; ;}
break;
- case 142:
-#line 590 "engines/director/lingo/lingo-gr.y"
+ case 145:
+#line 594 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeFactory(*(yyvsp[(2) - (2)].s));
;}
break;
- case 143:
-#line 593 "engines/director/lingo/lingo-gr.y"
+ case 146:
+#line 597 "engines/director/lingo/lingo-gr.y"
{ g_lingo->_indef = true; ;}
break;
- case 144:
-#line 594 "engines/director/lingo/lingo-gr.y"
+ case 147:
+#line 598 "engines/director/lingo/lingo-gr.y"
{
g_lingo->code1(g_lingo->c_procret);
g_lingo->define(*(yyvsp[(2) - (8)].s), (yyvsp[(4) - (8)].code), (yyvsp[(5) - (8)].narg) + 1, &g_lingo->_currentFactory);
g_lingo->_indef = false; ;}
break;
- case 145:
-#line 598 "engines/director/lingo/lingo-gr.y"
+ case 148:
+#line 602 "engines/director/lingo/lingo-gr.y"
{ g_lingo->_indef = true; g_lingo->_currentFactory.clear(); ;}
break;
- case 146:
-#line 599 "engines/director/lingo/lingo-gr.y"
+ case 149:
+#line 603 "engines/director/lingo/lingo-gr.y"
{ g_lingo->_ignoreMe = true; ;}
break;
- case 147:
-#line 599 "engines/director/lingo/lingo-gr.y"
+ case 150:
+#line 603 "engines/director/lingo/lingo-gr.y"
{
g_lingo->codeConst(0); // Push fake value on stack
g_lingo->code1(g_lingo->c_procret);
@@ -2929,33 +2985,33 @@ yyreduce:
;}
break;
- case 148:
-#line 609 "engines/director/lingo/lingo-gr.y"
+ case 151:
+#line 613 "engines/director/lingo/lingo-gr.y"
{ (yyval.narg) = 0; ;}
break;
- case 149:
-#line 610 "engines/director/lingo/lingo-gr.y"
+ case 152:
+#line 614 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeArg((yyvsp[(1) - (1)].s)); (yyval.narg) = 1; ;}
break;
- case 150:
-#line 611 "engines/director/lingo/lingo-gr.y"
+ case 153:
+#line 615 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeArg((yyvsp[(3) - (3)].s)); (yyval.narg) = (yyvsp[(1) - (3)].narg) + 1; ;}
break;
- case 151:
-#line 612 "engines/director/lingo/lingo-gr.y"
+ case 154:
+#line 616 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeArg((yyvsp[(4) - (4)].s)); (yyval.narg) = (yyvsp[(1) - (4)].narg) + 1; ;}
break;
- case 152:
-#line 615 "engines/director/lingo/lingo-gr.y"
+ case 155:
+#line 619 "engines/director/lingo/lingo-gr.y"
{ g_lingo->codeArgStore(); ;}
break;
- case 153:
-#line 619 "engines/director/lingo/lingo-gr.y"
+ case 156:
+#line 623 "engines/director/lingo/lingo-gr.y"
{
g_lingo->code1(g_lingo->c_call);
g_lingo->codeString((yyvsp[(1) - (2)].s)->c_str());
@@ -2964,34 +3020,34 @@ yyreduce:
g_lingo->code1(numpar); ;}
break;
- case 154:
-#line 627 "engines/director/lingo/lingo-gr.y"
+ case 157:
+#line 631 "engines/director/lingo/lingo-gr.y"
{ (yyval.narg) = 0; ;}
break;
- case 155:
-#line 628 "engines/director/lingo/lingo-gr.y"
+ case 158:
+#line 632 "engines/director/lingo/lingo-gr.y"
{ (yyval.narg) = 1; ;}
break;
- case 156:
-#line 629 "engines/director/lingo/lingo-gr.y"
+ case 159:
+#line 633 "engines/director/lingo/lingo-gr.y"
{ (yyval.narg) = (yyvsp[(1) - (3)].narg) + 1; ;}
break;
- case 157:
-#line 632 "engines/director/lingo/lingo-gr.y"
+ case 160:
+#line 636 "engines/director/lingo/lingo-gr.y"
{ (yyval.narg) = 1; ;}
break;
- case 158:
-#line 633 "engines/director/lingo/lingo-gr.y"
+ case 161:
+#line 637 "engines/director/lingo/lingo-gr.y"
{ (yyval.narg) = (yyvsp[(1) - (3)].narg) + 1; ;}
break;
/* Line 1267 of yacc.c. */
-#line 2995 "engines/director/lingo/lingo-gr.cpp"
+#line 3051 "engines/director/lingo/lingo-gr.cpp"
default: break;
}
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
@@ -3205,6 +3261,6 @@ yyreturn:
}
-#line 636 "engines/director/lingo/lingo-gr.y"
+#line 640 "engines/director/lingo/lingo-gr.y"
diff --git a/engines/director/lingo/lingo-gr.h b/engines/director/lingo/lingo-gr.h
index 2c4b95c3a6..0bd75956d2 100644
--- a/engines/director/lingo/lingo-gr.h
+++ b/engines/director/lingo/lingo-gr.h
@@ -60,68 +60,69 @@
FBLTIN = 276,
FBLTINNOARGS = 277,
FBLTINONEARG = 278,
- ID = 279,
- STRING = 280,
- HANDLER = 281,
- SYMBOL = 282,
- ENDCLAUSE = 283,
- tPLAYACCEL = 284,
- tDOWN = 285,
- tELSE = 286,
- tNLELSIF = 287,
- tEXIT = 288,
- tFRAME = 289,
- tGLOBAL = 290,
- tGO = 291,
- tIF = 292,
- tINTO = 293,
- tLOOP = 294,
- tMACRO = 295,
- tMOVIE = 296,
- tNEXT = 297,
- tOF = 298,
- tPREVIOUS = 299,
- tPUT = 300,
- tREPEAT = 301,
- tSET = 302,
- tTHEN = 303,
- tTO = 304,
- tWHEN = 305,
- tWITH = 306,
- tWHILE = 307,
- tNLELSE = 308,
- tFACTORY = 309,
- tMETHOD = 310,
- tOPEN = 311,
- tPLAY = 312,
- tDONE = 313,
- tINSTANCE = 314,
- tGE = 315,
- tLE = 316,
- tGT = 317,
- tLT = 318,
- tEQ = 319,
- tNEQ = 320,
- tAND = 321,
- tOR = 322,
- tNOT = 323,
- tMOD = 324,
- tAFTER = 325,
- tBEFORE = 326,
- tCONCAT = 327,
- tCONTAINS = 328,
- tSTARTS = 329,
- tCHAR = 330,
- tITEM = 331,
- tLINE = 332,
- tWORD = 333,
- tSPRITE = 334,
- tINTERSECTS = 335,
- tWITHIN = 336,
- tTELL = 337,
- tPROPERTY = 338,
- tON = 339,
- tME = 340
+ FBLTINARGLIST = 279,
+ ID = 280,
+ STRING = 281,
+ HANDLER = 282,
+ SYMBOL = 283,
+ ENDCLAUSE = 284,
+ tPLAYACCEL = 285,
+ tDOWN = 286,
+ tELSE = 287,
+ tNLELSIF = 288,
+ tEXIT = 289,
+ tFRAME = 290,
+ tGLOBAL = 291,
+ tGO = 292,
+ tIF = 293,
+ tINTO = 294,
+ tLOOP = 295,
+ tMACRO = 296,
+ tMOVIE = 297,
+ tNEXT = 298,
+ tOF = 299,
+ tPREVIOUS = 300,
+ tPUT = 301,
+ tREPEAT = 302,
+ tSET = 303,
+ tTHEN = 304,
+ tTO = 305,
+ tWHEN = 306,
+ tWITH = 307,
+ tWHILE = 308,
+ tNLELSE = 309,
+ tFACTORY = 310,
+ tMETHOD = 311,
+ tOPEN = 312,
+ tPLAY = 313,
+ tDONE = 314,
+ tINSTANCE = 315,
+ tGE = 316,
+ tLE = 317,
+ tGT = 318,
+ tLT = 319,
+ tEQ = 320,
+ tNEQ = 321,
+ tAND = 322,
+ tOR = 323,
+ tNOT = 324,
+ tMOD = 325,
+ tAFTER = 326,
+ tBEFORE = 327,
+ tCONCAT = 328,
+ tCONTAINS = 329,
+ tSTARTS = 330,
+ tCHAR = 331,
+ tITEM = 332,
+ tLINE = 333,
+ tWORD = 334,
+ tSPRITE = 335,
+ tINTERSECTS = 336,
+ tWITHIN = 337,
+ tTELL = 338,
+ tPROPERTY = 339,
+ tON = 340,
+ tME = 341
};
#endif
/* Tokens. */
@@ -146,68 +147,69 @@
#define FBLTIN 276
#define FBLTINNOARGS 277
#define FBLTINONEARG 278
-#define ID 279
-#define STRING 280
-#define HANDLER 281
-#define SYMBOL 282
-#define ENDCLAUSE 283
-#define tPLAYACCEL 284
-#define tDOWN 285
-#define tELSE 286
-#define tNLELSIF 287
-#define tEXIT 288
-#define tFRAME 289
-#define tGLOBAL 290
-#define tGO 291
-#define tIF 292
-#define tINTO 293
-#define tLOOP 294
-#define tMACRO 295
-#define tMOVIE 296
-#define tNEXT 297
-#define tOF 298
-#define tPREVIOUS 299
-#define tPUT 300
-#define tREPEAT 301
-#define tSET 302
-#define tTHEN 303
-#define tTO 304
-#define tWHEN 305
-#define tWITH 306
-#define tWHILE 307
-#define tNLELSE 308
-#define tFACTORY 309
-#define tMETHOD 310
-#define tOPEN 311
-#define tPLAY 312
-#define tDONE 313
-#define tINSTANCE 314
-#define tGE 315
-#define tLE 316
-#define tGT 317
-#define tLT 318
-#define tEQ 319
-#define tNEQ 320
-#define tAND 321
-#define tOR 322
-#define tNOT 323
-#define tMOD 324
-#define tAFTER 325
-#define tBEFORE 326
-#define tCONCAT 327
-#define tCONTAINS 328
-#define tSTARTS 329
-#define tCHAR 330
-#define tITEM 331
-#define tLINE 332
-#define tWORD 333
-#define tSPRITE 334
-#define tINTERSECTS 335
-#define tWITHIN 336
-#define tTELL 337
-#define tPROPERTY 338
-#define tON 339
-#define tME 340
+#define FBLTINARGLIST 279
+#define ID 280
+#define STRING 281
+#define HANDLER 282
+#define SYMBOL 283
+#define ENDCLAUSE 284
+#define tPLAYACCEL 285
+#define tDOWN 286
+#define tELSE 287
+#define tNLELSIF 288
+#define tEXIT 289
+#define tFRAME 290
+#define tGLOBAL 291
+#define tGO 292
+#define tIF 293
+#define tINTO 294
+#define tLOOP 295
+#define tMACRO 296
+#define tMOVIE 297
+#define tNEXT 298
+#define tOF 299
+#define tPREVIOUS 300
+#define tPUT 301
+#define tREPEAT 302
+#define tSET 303
+#define tTHEN 304
+#define tTO 305
+#define tWHEN 306
+#define tWITH 307
+#define tWHILE 308
+#define tNLELSE 309
+#define tFACTORY 310
+#define tMETHOD 311
+#define tOPEN 312
+#define tPLAY 313
+#define tDONE 314
+#define tINSTANCE 315
+#define tGE 316
+#define tLE 317
+#define tGT 318
+#define tLT 319
+#define tEQ 320
+#define tNEQ 321
+#define tAND 322
+#define tOR 323
+#define tNOT 324
+#define tMOD 325
+#define tAFTER 326
+#define tBEFORE 327
+#define tCONCAT 328
+#define tCONTAINS 329
+#define tSTARTS 330
+#define tCHAR 331
+#define tITEM 332
+#define tLINE 333
+#define tWORD 334
+#define tSPRITE 335
+#define tINTERSECTS 336
+#define tWITHIN 337
+#define tTELL 338
+#define tPROPERTY 339
+#define tON 340
+#define tME 341
@@ -225,7 +227,7 @@ typedef union YYSTYPE
Common::Array<double> *arr;
}
/* Line 1529 of yacc.c. */
-#line 229 "engines/director/lingo/lingo-gr.hpp"
+#line 231 "engines/director/lingo/lingo-gr.hpp"
YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
diff --git a/engines/director/lingo/lingo-gr.y b/engines/director/lingo/lingo-gr.y
index ee4d8db4c3..1e3c721f08 100644
--- a/engines/director/lingo/lingo-gr.y
+++ b/engines/director/lingo/lingo-gr.y
@@ -92,7 +92,7 @@ void checkEnd(Common::String *token, const char *expect, bool required) {
%token<e> THEENTITY THEENTITYWITHID
%token<f> FLOAT
%token<s> BLTIN BLTINNOARGS BLTINNOARGSORONE BLTINONEARG BLTINARGLIST TWOWORDBUILTIN
-%token<s> FBLTIN FBLTINNOARGS FBLTINONEARG
+%token<s> FBLTIN FBLTINNOARGS FBLTINONEARG FBLTINARGLIST
%token<s> ID STRING HANDLER SYMBOL
%token<s> ENDCLAUSE tPLAYACCEL
%token tDOWN tELSE tNLELSIF tEXIT tFRAME tGLOBAL tGO tIF tINTO tLOOP tMACRO
@@ -411,11 +411,13 @@ expr: INT { $$ = g_lingo->codeConst($1); }
$$ = g_lingo->code1(g_lingo->c_stringpush);
g_lingo->codeString($1->c_str()); }
| FBLTINNOARGS {
- $$ = g_lingo->code1(g_lingo->_builtins[*$1]->u.func);
+ g_lingo->codeFunc($1, 0);
delete $1; }
| FBLTINONEARG expr {
- g_lingo->code1(g_lingo->_builtins[*$1]->u.func);
+ g_lingo->codeFunc($1, 1);
delete $1; }
+ | FBLTINARGLIST nonemptyarglist { g_lingo->codeFunc($1, $2); }
+ | FBLTINARGLIST '(' nonemptyarglist ')' { g_lingo->codeFunc($1, $3); }
| ID '(' arglist ')' {
$$ = g_lingo->codeFunc($1, $3);
delete $1; }
@@ -480,18 +482,20 @@ proc: tPUT expr { g_lingo->code1(g_lingo->c_printtop); }
| tPROPERTY propertylist
| tINSTANCE instancelist
| BLTINNOARGS {
- g_lingo->code1(g_lingo->_builtins[*$1]->u.func);
+ g_lingo->codeFunc($1, 0);
delete $1; }
| BLTINONEARG expr {
- g_lingo->code1(g_lingo->_builtins[*$1]->u.func);
+ g_lingo->codeFunc($1, 1);
delete $1; }
| BLTINNOARGSORONE expr {
- g_lingo->code1(g_lingo->_builtins[*$1]->u.func);
+ g_lingo->codeFunc($1, 1);
delete $1; }
| BLTINNOARGSORONE {
- g_lingo->code2(g_lingo->c_voidpush, g_lingo->_builtins[*$1]->u.func);
+ g_lingo->code1(g_lingo->c_voidpush);
+ g_lingo->codeFunc($1, 1);
delete $1; }
- | BLTINARGLIST nonemptyarglist { g_lingo->codeFunc($1, $2); }
+ | BLTINARGLIST nonemptyarglist { g_lingo->codeFunc($1, $2); }
+ | BLTINARGLIST '(' nonemptyarglist ')' { g_lingo->codeFunc($1, $3); }
| tME '(' ID ')' { g_lingo->codeMe($3, 0); }
| tME '(' ID ',' arglist ')' { g_lingo->codeMe($3, $5); }
| tOPEN expr tWITH expr { g_lingo->code1(g_lingo->c_open); }
diff --git a/engines/director/lingo/lingo-lex.cpp b/engines/director/lingo/lingo-lex.cpp
index 97ade7d01d..66199ecaa1 100644
--- a/engines/director/lingo/lingo-lex.cpp
+++ b/engines/director/lingo/lingo-lex.cpp
@@ -1526,14 +1526,14 @@ YY_RULE_SETUP
else if (g_lingo->_builtins[yytext]->maxArgs == 1)
return BLTINNOARGSORONE;
else
- return BLTINARGLIST;
+ return type == BLTIN ? BLTINARGLIST : FBLTINARGLIST;
} else if (g_lingo->_builtins[yytext]->nargs == 1 &&
g_lingo->_builtins[yytext]->maxArgs == 1) {
return type == BLTIN ? BLTINONEARG : FBLTINONEARG;
} else if (g_lingo->_builtins[yytext]->nargs == -1) {
- return BLTINARGLIST;
+ return type == BLTIN ? BLTINARGLIST : FBLTINARGLIST;
} else {
- return BLTINARGLIST;
+ return type == BLTIN ? BLTINARGLIST : FBLTINARGLIST;
}
}
}
diff --git a/engines/director/lingo/lingo-lex.l b/engines/director/lingo/lingo-lex.l
index 99cc21225a..93b57a079a 100644
--- a/engines/director/lingo/lingo-lex.l
+++ b/engines/director/lingo/lingo-lex.l
@@ -303,14 +303,14 @@ whitespace [\t ]
else if (g_lingo->_builtins[yytext]->maxArgs == 1)
return BLTINNOARGSORONE;
else
- return BLTINARGLIST;
+ return type == BLTIN ? BLTINARGLIST : FBLTINARGLIST;
} else if (g_lingo->_builtins[yytext]->nargs == 1 &&
g_lingo->_builtins[yytext]->maxArgs == 1) {
return type == BLTIN ? BLTINONEARG : FBLTINONEARG;
} else if (g_lingo->_builtins[yytext]->nargs == -1) {
- return BLTINARGLIST;
+ return type == BLTIN ? BLTINARGLIST : FBLTINARGLIST;
} else {
- return BLTINARGLIST;
+ return type == BLTIN ? BLTINARGLIST : FBLTINARGLIST;
}
}
}
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp
index ceaadd5088..49c7b0b14c 100644
--- a/engines/drascula/detection.cpp
+++ b/engines/drascula/detection.cpp
@@ -87,7 +87,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::EN_ANY,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -104,7 +104,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::FR_FRA,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -121,7 +121,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::FR_FRA,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -138,7 +138,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::DE_DEU,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -151,7 +151,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::IT_ITA,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -168,7 +168,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::IT_ITA,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -181,7 +181,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::ES_ESP,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -198,7 +198,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::ES_ESP,
Common::kPlatformDOS,
GF_PACKED,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -213,7 +213,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -226,7 +226,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::FR_FRA,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -239,7 +239,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::FR_FRA,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -252,7 +252,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::DE_DEU,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -265,7 +265,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::IT_ITA,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -278,7 +278,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::IT_ITA,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
@@ -291,7 +291,7 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::ES_ESP,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
- GUIO0()
+ GUIO1(GUIO_LINKSPEECHTOSFX)
},
},
diff --git a/engines/drascula/drascula.h b/engines/drascula/drascula.h
index c879a83db7..5265324d91 100644
--- a/engines/drascula/drascula.h
+++ b/engines/drascula/drascula.h
@@ -325,6 +325,8 @@ public:
virtual ~DrasculaEngine();
virtual bool hasFeature(EngineFeature f) const;
+ virtual void syncSoundSettings();
+
Common::RandomSource *_rnd;
const DrasculaGameDescription *_gameDescription;
uint32 getFeatures() const;
@@ -488,7 +490,7 @@ public:
void addKeyToBuffer(Common::KeyState& key);
void flushKeyBuffer();
void selectVerb(int);
- void updateVolume(Audio::Mixer::SoundType soundType, int prevVolume);
+ int updateVolume(int prevVolume, int prevVolumeY);
void volumeControls();
bool saveLoadScreen();
diff --git a/engines/drascula/graphics.cpp b/engines/drascula/graphics.cpp
index 09ff3c6429..dfe012a2ef 100644
--- a/engines/drascula/graphics.cpp
+++ b/engines/drascula/graphics.cpp
@@ -196,6 +196,11 @@ void DrasculaEngine::copyRect(int xorg, int yorg, int xdes, int ydes, int width,
dest += xdes + ydes * 320;
src += xorg + yorg * 320;
+ assert(xorg >= 0);
+ assert(yorg >= 0);
+ assert(xorg + width <= 320);
+ assert(yorg + height <= 200);
+
int ptr = 0;
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
diff --git a/engines/drascula/sound.cpp b/engines/drascula/sound.cpp
index 62ec796678..70916caffe 100644
--- a/engines/drascula/sound.cpp
+++ b/engines/drascula/sound.cpp
@@ -34,13 +34,48 @@
namespace Drascula {
-void DrasculaEngine::updateVolume(Audio::Mixer::SoundType soundType, int prevVolume) {
- int vol = _mixer->getVolumeForSoundType(soundType) / 16;
- if (_mouseY < prevVolume && vol < 15)
- vol++;
- if (_mouseY > prevVolume && vol > 0)
- vol--;
- _mixer->setVolumeForSoundType(soundType, vol * 16);
+void DrasculaEngine::syncSoundSettings() {
+ // Sync the engine with the config manager
+
+ bool mute = false;
+ if (ConfMan.hasKey("mute"))
+ mute = ConfMan.getBool("mute");
+
+ // We need to handle the speech mute separately here. This is because the
+ // engine code should be able to rely on all speech sounds muted when the
+ // user specified subtitles only mode, which results in "speech_mute" to
+ // be set to "true". The global mute setting has precedence over the
+ // speech mute setting though.
+ bool speechMute = mute;
+ if (!speechMute)
+ speechMute = ConfMan.getBool("speech_mute");
+
+ _mixer->muteSoundType(Audio::Mixer::kPlainSoundType, mute);
+ _mixer->muteSoundType(Audio::Mixer::kSFXSoundType, mute);
+ _mixer->muteSoundType(Audio::Mixer::kSpeechSoundType, speechMute);
+ _mixer->muteSoundType(Audio::Mixer::kMusicSoundType, mute);
+
+ int voiceVolume = ConfMan.getInt("speech_volume");
+ int musicVolume = ConfMan.getInt("music_volume");
+ // If the music and voice volume are correct, don't change anything.
+ // Otherwise compute the master volume using an approximation of sqrt(max) * 16 which would result in the master
+ // volume being the same value as the max of music and voice.
+ if (_mixer->getVolumeForSoundType(Audio::Mixer::kSpeechSoundType) != voiceVolume || _mixer->getVolumeForSoundType(Audio::Mixer::kMusicSoundType) != musicVolume) {
+ int masterVolume = MAX(musicVolume, voiceVolume) * 2 / 3 + 86;
+ _mixer->setVolumeForSoundType(Audio::Mixer::kPlainSoundType, masterVolume);
+ _mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, voiceVolume);
+ _mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, voiceVolume);
+ _mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, musicVolume);
+ }
+}
+
+int DrasculaEngine::updateVolume(int prevVolume, int prevVolumeY) {
+ prevVolumeY += 10;
+ if (_mouseY < prevVolumeY && prevVolume < 15)
+ prevVolume++;
+ if (_mouseY > prevVolumeY && prevVolume > 0)
+ prevVolume--;
+ return prevVolume;
}
void DrasculaEngine::volumeControls() {
@@ -53,10 +88,22 @@ void DrasculaEngine::volumeControls() {
setCursor(kCursorCrosshair);
showCursor();
+ // The engine has three volume controls: master, SFx/Speech and Music.
+ // ScummVM doesn't have a master volume, so we abuse the kPlainSoundType to store it.
+ // In drascula, we only use the kMusicSoundType and kSpeechSoundType to play sounds.
+ // For consistency with the ScummVM options dialog we also set the kSFXSoundType volume
+ // to the same value as the kMusicSoundType value, but we don't actually use it.
+
+ // The engines uses masterVolume, voiceVolume and musicVolume between 0 and 15.
+ // We store in the mixer:
+ // - masterVolume * 16 in kPlainSoundType
+ // - (masterVolume + 1) * (voiceVolume + 1) - 1 in both kSpeechSoundType and kSFXSoundType
+ // - (masterVolume + 1) * (musicVolume + 1) - 1 in kMusicSoundType
+
while (!shouldQuit()) {
int masterVolume = CLIP((_mixer->getVolumeForSoundType(Audio::Mixer::kPlainSoundType) / 16), 0, 15);
- int voiceVolume = CLIP((_mixer->getVolumeForSoundType(Audio::Mixer::kSpeechSoundType) / 16), 0, 15);
- int musicVolume = CLIP((_mixer->getVolumeForSoundType(Audio::Mixer::kMusicSoundType) / 16), 0, 15);
+ int voiceVolume = CLIP(((_mixer->getVolumeForSoundType(Audio::Mixer::kSpeechSoundType) + 1) / (masterVolume + 1) - 1), 0, 15);
+ int musicVolume = CLIP(((_mixer->getVolumeForSoundType(Audio::Mixer::kMusicSoundType) + 1) / (masterVolume + 1) - 1), 0, 15);
int masterVolumeY = 72 + 61 - masterVolume * 4;
int voiceVolumeY = 72 + 61 - voiceVolume * 4;
@@ -87,16 +134,25 @@ void DrasculaEngine::volumeControls() {
if (_leftMouseButton == 1) {
delay(100);
if (_mouseX > 80 && _mouseX < 121) {
- updateVolume(Audio::Mixer::kPlainSoundType, masterVolumeY);
+ masterVolume = updateVolume(masterVolume, masterVolumeY);
+ _mixer->setVolumeForSoundType(Audio::Mixer::kPlainSoundType, masterVolume * 16);
}
- if (_mouseX > 136 && _mouseX < 178) {
- updateVolume(Audio::Mixer::kSpeechSoundType, voiceVolumeY);
- }
+ if (_mouseX > 136 && _mouseX < 178)
+ voiceVolume = updateVolume(voiceVolume, voiceVolumeY);
- if (_mouseX > 192 && _mouseX < 233) {
- updateVolume(Audio::Mixer::kMusicSoundType, musicVolumeY);
- }
+ if (_mouseX > 192 && _mouseX < 233)
+ musicVolume = updateVolume(musicVolume, musicVolumeY);
+
+ voiceVolume = (masterVolume + 1) * (voiceVolume + 1) - 1;
+ _mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, voiceVolume);
+ _mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, voiceVolume);
+ ConfMan.setInt("speech_volume", voiceVolume);
+ ConfMan.setInt("sfx_volume", voiceVolume);
+
+ musicVolume = (masterVolume + 1) * (musicVolume + 1) - 1;
+ _mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, musicVolume);
+ ConfMan.setInt("music_volume", musicVolume);
}
}
diff --git a/engines/titanic/sound/audio_buffer.cpp b/engines/titanic/sound/audio_buffer.cpp
index aa4bb8ca7f..029e7f0d9c 100644
--- a/engines/titanic/sound/audio_buffer.cpp
+++ b/engines/titanic/sound/audio_buffer.cpp
@@ -46,14 +46,14 @@ byte *CAudioBuffer::getEnd() {
return _flag ? &_buffer[0] : &_buffer[_buffer.size() / 2];
}
-uint16 *CAudioBuffer::getReadPtr() {
+int16 *CAudioBuffer::getReadPtr() {
byte *ptr = getBegin();
- return (uint16 *)(ptr + (_buffer.size() / 2 - _readBytesLeft));
+ return (int16 *)(ptr + (_buffer.size() / 2 - _readBytesLeft));
}
-uint16 *CAudioBuffer::getWritePtr() {
+int16 *CAudioBuffer::getWritePtr() {
byte *ptr = getEnd();
- return (uint16 *)(ptr + (_buffer.size() / 2 - _writeBytesLeft));
+ return (int16 *)(ptr + (_buffer.size() / 2 - _writeBytesLeft));
}
void CAudioBuffer::advanceRead(int size) {
diff --git a/engines/titanic/sound/audio_buffer.h b/engines/titanic/sound/audio_buffer.h
index 32a5790e57..54dd807250 100644
--- a/engines/titanic/sound/audio_buffer.h
+++ b/engines/titanic/sound/audio_buffer.h
@@ -64,7 +64,7 @@ public:
/**
* Gets a pointer to the start of previously written data
*/
- uint16 *getReadPtr();
+ int16 *getReadPtr();
/**
* Returns the number of bytes that can be read
@@ -80,7 +80,7 @@ public:
* Gets a pointer to the remainder of the audio buffer that
* can be written to
*/
- uint16 *getWritePtr();
+ int16 *getWritePtr();
/**
* Returns how many bytes can be written before hitting the
diff --git a/engines/titanic/sound/music_object.cpp b/engines/titanic/sound/music_object.cpp
index 1f840790b9..d12b6eb403 100644
--- a/engines/titanic/sound/music_object.cpp
+++ b/engines/titanic/sound/music_object.cpp
@@ -21,45 +21,21 @@
*/
#include "titanic/sound/music_object.h"
+#include "titanic/titanic.h"
#include "common/util.h"
namespace Titanic {
-static const char *const DATA[4] = {
- "64,^|^|^|^|^|^|^|^|^|^|^|^|^|^|^|^|8,^^^^ 5:A///|64,/|/|/|/|/|/|/"
- "|/|/|/|/|/|/|/|/|/|^|^|^|^|^|^|^|^|^|16, ^B//|64,/|/|/|/|^|16,^C/"
- "/|64,/|/|/|/|",
- "2:8,^^^^B//a|//g//B//|g///B//a|//g//A//|B//^C//b|//a//a//|BCb/b//"
- "a|//g//A//|g/+f/D//c|//b//gA/|g/^^C//C|//C//a//|BCb////a|//g//g//"
- "|g/g//B/a|/g//////|//^^B//a|//g//B//|g///B//a|//g//B//|g//^C//b|/"
- "/a//a//|BCb/b//a|//g//B//|g/+f/D//c|//b//gA/|g/^^C//C|//C//a//|BC"
- "b////a|//g//g//|g/g//B/a|/g//////|3:^^B//a//|g//A//g/|/^B//a//|g/"
- "/A//B/|b^ 3:C//b//|a//g//+f/|+fG/G/GA/|B/a/g///|B///+f//G|G/G/+f/"
- "G/|^^e//d//|c//b//gA|g/B//a//|g//g//g/|g//B/a/g|//////^^|^^Ga///G"
- "|////////|////////|////////|",
- "2:8,^^^^^^D/|/E//E//E|/d//^^d/|/E//E//E|/E//^^G/|/d//d//d|/^^^^^d"
- "/|/E//E//E|/d/^^^E/|/E//d/+F/|bD^^^^G/|/e//e//e|^^^^^^d/|/E//E//E"
- "|//d///d/|//b/////|^^^^^^D/|/E//E//E|/d//^^d/|/E//E//E|/E//^^G/|/"
- "d//d//d|/^^^^^d/|/E//E//E|/d/^^^E/|/E//d/d/|d/^^^^G/|/e//e//e|^^^"
- "^^^d/|/E//E//E|//d///d/|//b/////|3:D///c//b|//b//b//|D///c//b|//b"
- "//g//|E///d//c|//b//a//|aB/B/BC/|D/c/b///|^^^D//DE|/E/E/d/d|//E/g"
- "//g|//g//d//|^^^^g//E|//E//E//|d///d///|b///////|// 3:Db///C|///b"
- "/// 5:A|64,/|/|/|/|/|/|/|/|",
- "2:8,^^G//+f//|e//e//e/|//G//+f//|e//e//+F/|G/a//g//|+f//+f//+f/|/"
- "/G//+F//|e//e//e/|//B//a//|g//e///d|//c//b//|a//a//a/|+f/G// 2:+F"
- "//|e//e//C/|//b/g/+f/|//G/////|^^G//+f//|e//e//e/|//G//+f//|e//e/"
- "/e/|//a//g//|+f//+f//+f/|//G//+F//|e//e//e/|//B//a//|g//e///d|/ "
- "2:dC//b//|a//a//a/|+f/G//+F//|e//e//C/|//b/g/+f/|//G/////|d//d//d"
- "/|/E//E//d|d//d//E/|/+F//G//b|a//a//a/|/D//D// 3:D|//g/g//D|/d/G/"
- "///|^^b//b//|b//ba/B/|c//B//a/|/g//+f//+f|G//+F//e/|/c//C///|b/g/"
- "+f///|G///////|G///////|C///////|////////|////////|"
-};
-
-/*------------------------------------------------------------------------*/
-
CMusicObject::CMusicObject(int index) {
- assert(index >= 0 && index <= 3);
- CMusicParser parser(DATA[index]);
+ // Read in the list of parser strings
+ Common::SeekableReadStream *res = g_vm->_filesManager->getResource("MUSIC/PARSER");
+ Common::StringArray parserStrings;
+ while (res->pos() < res->size())
+ parserStrings.push_back(readStringFromStream(res));
+ delete res;
+
+ // Set up a new parser with the desired string
+ CMusicParser parser(parserStrings[index].c_str());
// Count how many encoded values there are
CValuePair r;
@@ -68,11 +44,13 @@ CMusicObject::CMusicObject(int index) {
++count;
assert(count > 0);
+ // Read in the values to the array
_data.resize(count);
parser.reset();
for (int idx = 0; idx < count; ++idx)
parser.parse(_data[idx]);
+ // Figure out the range of values in the array
_minVal = 0x7FFFFFFF;
int maxVal = -0x7FFFFFFF;
diff --git a/engines/titanic/sound/music_room_handler.cpp b/engines/titanic/sound/music_room_handler.cpp
index c99370f4ac..01d074c388 100644
--- a/engines/titanic/sound/music_room_handler.cpp
+++ b/engines/titanic/sound/music_room_handler.cpp
@@ -205,11 +205,11 @@ void CMusicRoomHandler::updateAudio() {
_audioBuffer->enterCriticalSection();
int size = _audioBuffer->getWriteBytesLeft();
int count;
- uint16 *ptr;
+ int16 *ptr;
if (size > 0) {
// Null out the destination write area
- uint16 *audioPtr = _audioBuffer->getWritePtr();
+ int16 *audioPtr = _audioBuffer->getWritePtr();
Common::fill(audioPtr, audioPtr + size / sizeof(uint16), 0);
for (int instrIdx = 0; instrIdx < 4; ++instrIdx) {
diff --git a/engines/titanic/sound/music_wave.cpp b/engines/titanic/sound/music_wave.cpp
index 11458642df..f6ea612537 100644
--- a/engines/titanic/sound/music_wave.cpp
+++ b/engines/titanic/sound/music_wave.cpp
@@ -269,7 +269,7 @@ void CMusicWave::setSize(uint total) {
_count = 0;
}
-int CMusicWave::read(uint16 *ptr, uint size) {
+int CMusicWave::read(int16 *ptr, uint size) {
if (!_size)
return 0;
@@ -278,17 +278,17 @@ int CMusicWave::read(uint16 *ptr, uint size) {
if (_waveIndex != -1) {
// Lock the specified wave file for access
- const uint16 *data = _items[_waveIndex]._waveFile->lock();
+ const int16 *data = _items[_waveIndex]._waveFile->lock();
assert(data);
- const uint16 *src = data;
+ const int16 *src = data;
// Loop through merging data from the wave file into the dest buffer
- for (uint idx = 0; idx < (size / sizeof(uint16)); ++idx, _readPos += _readIncrement) {
+ for (uint idx = 0; idx < (size / sizeof(int16)); ++idx, _readPos += _readIncrement) {
uint srcPos = _readPos >> 8;
if (srcPos >= _count)
break;
- uint16 val = READ_LE_UINT16(src + srcPos);
+ int16 val = READ_LE_UINT16(src + srcPos);
*ptr++ += val;
}
diff --git a/engines/titanic/sound/music_wave.h b/engines/titanic/sound/music_wave.h
index 5d205259ee..f3782574ec 100644
--- a/engines/titanic/sound/music_wave.h
+++ b/engines/titanic/sound/music_wave.h
@@ -120,7 +120,7 @@ public:
* If there is any wave file currently specified, reads it in
* and merges it into the supplied buffer
*/
- int read(uint16 *ptr, uint size);
+ int read(int16 *ptr, uint size);
/**
* Figure out which wave file to use next
diff --git a/engines/titanic/sound/wave_file.cpp b/engines/titanic/sound/wave_file.cpp
index e49c44d76d..a4cd9d3e3f 100644
--- a/engines/titanic/sound/wave_file.cpp
+++ b/engines/titanic/sound/wave_file.cpp
@@ -29,22 +29,56 @@
namespace Titanic {
-CWaveFile::CWaveFile() : _soundManager(nullptr), _audioStream(nullptr),
+/**
+ * This creates a ScummVM audio stream around a CAudioBuffer buffer,
+ * allowing for streaming audio output for the music room music
+ */
+class AudioBufferStream : public Audio::SeekableAudioStream {
+private:
+ CAudioBuffer *_audioBuffer;
+public:
+ AudioBufferStream(CAudioBuffer *audioBuffer) : _audioBuffer(audioBuffer) {}
+
+ virtual int readBuffer(int16 *buffer, const int numSamples);
+ virtual bool isStereo() const { return false; }
+ virtual bool endOfData() const;
+ virtual int getRate() const { return 22050; }
+ virtual Audio::Timestamp getLength() const { return Audio::Timestamp(); }
+ virtual bool seek(const Audio::Timestamp &where) { return false; }
+};
+
+int AudioBufferStream::readBuffer(int16 *buffer, const int numSamples) {
+ _audioBuffer->enterCriticalSection();
+ int samplesToRead = MIN((const int)numSamples, (const int)(_audioBuffer->getBytesToRead() / sizeof(uint16)));
+
+ const int16 *src = _audioBuffer->getReadPtr();
+ Common::copy(src, src + samplesToRead, buffer);
+ _audioBuffer->advanceRead(samplesToRead * 2);
+
+ _audioBuffer->leaveCriticalSection();
+ return samplesToRead;
+}
+
+bool AudioBufferStream::endOfData() const {
+ return _audioBuffer->_disabled;
+}
+
+/*------------------------------------------------------------------------*/
+
+CWaveFile::CWaveFile() : _audioStream(nullptr),
_waveData(nullptr), _waveSize(0), _dataSize(0), _headerSize(0),
- _rate(0), _flags(0), _soundType(Audio::Mixer::kPlainSoundType) {
+ _rate(0), _flags(0), _wavType(0), _soundType(Audio::Mixer::kPlainSoundType) {
setup();
}
-CWaveFile::CWaveFile(QSoundManager *owner) : _soundManager(owner), _audioStream(nullptr),
+CWaveFile::CWaveFile(QSoundManager *owner) : _audioStream(nullptr),
_waveData(nullptr), _waveSize(0), _dataSize(0), _headerSize(0),
- _rate(0), _flags(0), _soundType(Audio::Mixer::kPlainSoundType) {
+ _rate(0), _flags(0), _wavType(0), _soundType(Audio::Mixer::kPlainSoundType) {
setup();
}
void CWaveFile::setup() {
_loadMode = LOADMODE_SCUMMVM;
- _field4 = 0;
- _field14 = 1;
_dataSize = 0;
_audioBuffer = nullptr;
_disposeAudioBuffer = DisposeAfterUse::NO;
@@ -53,7 +87,7 @@ void CWaveFile::setup() {
CWaveFile::~CWaveFile() {
if (_audioStream) {
- _soundManager->soundFreed(_soundHandle);
+ //_soundManager->soundFreed(_soundHandle);
delete _audioStream;
}
@@ -83,11 +117,11 @@ bool CWaveFile::loadSound(const CString &name) {
return false;
Common::SeekableReadStream *stream = file.readStream();
- uint size = stream->size();
- byte *data = new byte[size];
- stream->read(data, size);
+ uint wavSize = stream->size();
+ byte *data = new byte[wavSize];
+ stream->read(data, wavSize);
- load(data, size);
+ load(data, wavSize);
_soundType = Audio::Mixer::kSFXSoundType;
return true;
}
@@ -113,12 +147,12 @@ bool CWaveFile::loadMusic(const CString &name) {
return false;
Common::SeekableReadStream *stream = file.readStream();
- uint size = stream->size();
- byte *data = new byte[size];
- stream->read(data, size);
+ uint wavSize = stream->size();
+ byte *data = new byte[wavSize];
+ stream->read(data, wavSize);
delete stream;
- load(data, size);
+ load(data, wavSize);
_soundType = Audio::Mixer::kMusicSoundType;
return true;
}
@@ -127,18 +161,18 @@ bool CWaveFile::loadMusic(CAudioBuffer *buffer, DisposeAfterUse::Flag disposeAft
_audioBuffer = buffer;
_disposeAudioBuffer = disposeAfterUse;
_loadMode = LOADMODE_AUDIO_BUFFER;
- _field14 = 0;
+ _audioStream = new AudioBufferStream(_audioBuffer);
return true;
}
-void CWaveFile::load(byte *data, uint size) {
+void CWaveFile::load(byte *data, uint dataSize) {
_waveData = data;
- _waveSize = size;
+ _waveSize = dataSize;
// Parse the wave header
- Common::MemoryReadStream wavStream(data, size, DisposeAfterUse::NO);
- Audio::loadWAVFromStream(wavStream, _dataSize, _rate, _flags);
+ Common::MemoryReadStream wavStream(data, dataSize, DisposeAfterUse::NO);
+ Audio::loadWAVFromStream(wavStream, _dataSize, _rate, _flags, &_wavType);
_headerSize = wavStream.pos();
}
@@ -164,19 +198,25 @@ void CWaveFile::reset() {
audioStream()->rewind();
}
-const uint16 *CWaveFile::lock() {
+const int16 *CWaveFile::lock() {
+ enum { kWaveFormatPCM = 1 };
+
switch (_loadMode) {
case LOADMODE_SCUMMVM:
+ // Sanity checking that only raw 16-bit LE 22Khz waves can be locked
assert(_waveData && _rate == 22050);
assert(_flags == (Audio::FLAG_LITTLE_ENDIAN | Audio::FLAG_16BITS));
- return (uint16 *)(_waveData + _headerSize);
+ assert(_wavType == kWaveFormatPCM);
+
+ // Return a pointer to the data section of the wave file
+ return (const int16 *)(_waveData + _headerSize);
default:
return nullptr;
}
}
-void CWaveFile::unlock(const uint16 *ptr) {
+void CWaveFile::unlock(const int16 *ptr) {
// No implementation needed in ScummVM
}
diff --git a/engines/titanic/sound/wave_file.h b/engines/titanic/sound/wave_file.h
index b5303205c0..6bd18989b9 100644
--- a/engines/titanic/sound/wave_file.h
+++ b/engines/titanic/sound/wave_file.h
@@ -43,9 +43,8 @@ private:
int _headerSize;
int _rate;
byte _flags;
- QSoundManager *_soundManager;
+ uint16 _wavType;
Audio::SeekableAudioStream *_audioStream;
- Audio::SoundHandle _soundHandle;
private:
/**
* Handles setup of fields shared by the constructors
@@ -55,13 +54,11 @@ private:
/**
* Gets passed the raw data for the wave file
*/
- void load(byte *data, uint size);
+ void load(byte *data, uint dataSize);
public:
Audio::Mixer::SoundType _soundType;
LoadMode _loadMode;
- int _field4;
- int _field14;
CAudioBuffer *_audioBuffer;
DisposeAfterUse::Flag _disposeAudioBuffer;
int _channel;
@@ -127,12 +124,12 @@ public:
/**
* Lock sound data for access
*/
- const uint16 *lock();
+ const int16 *lock();
/**
* Unlock sound data after a prior call to lock
*/
- void unlock(const uint16 *ptr);
+ void unlock(const int16 *ptr);
};
} // End of namespace Titanic
diff --git a/gui/options.cpp b/gui/options.cpp
index 371a949c35..aa5f7b46bb 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -627,18 +627,51 @@ void OptionsDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data
_midiGainLabel->setLabel(Common::String::format("%.2f", (double)_midiGainSlider->getValue() / 100.0));
_midiGainLabel->draw();
break;
- case kMusicVolumeChanged:
- _musicVolumeLabel->setValue(_musicVolumeSlider->getValue());
+ case kMusicVolumeChanged: {
+ const int newValue = _musicVolumeSlider->getValue();
+ _musicVolumeLabel->setValue(newValue);
_musicVolumeLabel->draw();
+
+ if (_guioptions.contains(GUIO_LINKMUSICTOSFX)) {
+ updateSfxVolume(newValue);
+
+ if (_guioptions.contains(GUIO_LINKSPEECHTOSFX)) {
+ updateSpeechVolume(newValue);
+ }
+ }
+
break;
- case kSfxVolumeChanged:
+ }
+ case kSfxVolumeChanged: {
+ const int newValue = _sfxVolumeSlider->getValue();
_sfxVolumeLabel->setValue(_sfxVolumeSlider->getValue());
_sfxVolumeLabel->draw();
+
+ if (_guioptions.contains(GUIO_LINKMUSICTOSFX)) {
+ updateMusicVolume(newValue);
+ }
+
+ if (_guioptions.contains(GUIO_LINKSPEECHTOSFX)) {
+ updateSpeechVolume(newValue);
+ }
+
break;
- case kSpeechVolumeChanged:
- _speechVolumeLabel->setValue(_speechVolumeSlider->getValue());
+ }
+ case kSpeechVolumeChanged: {
+ const int newValue = _speechVolumeSlider->getValue();
+ _speechVolumeLabel->setValue(newValue);
_speechVolumeLabel->draw();
+
+ if (_guioptions.contains(GUIO_LINKSPEECHTOSFX)) {
+ updateSfxVolume(newValue);
+
+ if (_guioptions.contains(GUIO_LINKMUSICTOSFX)) {
+ updateMusicVolume(newValue);
+ }
+ }
+
break;
+ }
case kMuteAllChanged:
// 'true' because if control is disabled then event do not pass
setVolumeSettingsState(true);
@@ -769,7 +802,7 @@ void OptionsDialog::setVolumeSettingsState(bool enabled) {
// Disable speech volume slider, when we are in subtitle only mode.
if (_subToggleGroup)
ena = ena && _subToggleGroup->getValue() != kSubtitlesSubs;
- if (_guioptions.contains(GUIO_NOSPEECH))
+ if (_guioptions.contains(GUIO_NOSPEECH) || _guioptions.contains(GUIO_NOSPEECHVOLUME))
ena = false;
_speechVolumeDesc->setEnabled(ena);
@@ -1142,6 +1175,27 @@ int OptionsDialog::getSubtitleMode(bool subtitles, bool speech_mute) {
return kSubtitlesSubs;
}
+void OptionsDialog::updateMusicVolume(const int newValue) const {
+ _musicVolumeLabel->setValue(newValue);
+ _musicVolumeSlider->setValue(newValue);
+ _musicVolumeLabel->draw();
+ _musicVolumeSlider->draw();
+}
+
+void OptionsDialog::updateSfxVolume(const int newValue) const {
+ _sfxVolumeLabel->setValue(newValue);
+ _sfxVolumeSlider->setValue(newValue);
+ _sfxVolumeLabel->draw();
+ _sfxVolumeSlider->draw();
+}
+
+void OptionsDialog::updateSpeechVolume(const int newValue) const {
+ _speechVolumeLabel->setValue(newValue);
+ _speechVolumeSlider->setValue(newValue);
+ _speechVolumeLabel->draw();
+ _speechVolumeSlider->draw();
+}
+
void OptionsDialog::reflowLayout() {
if (_graphicsTabId != -1 && _tabWidget)
_tabWidget->setTabTitle(_graphicsTabId, g_system->getOverlayWidth() > 320 ? _("Graphics") : _("GFX"));
diff --git a/gui/options.h b/gui/options.h
index a6eebe5748..1b15258ab5 100644
--- a/gui/options.h
+++ b/gui/options.h
@@ -175,6 +175,9 @@ private:
//
// Volume controls
//
+ void updateMusicVolume(const int newValue) const;
+ void updateSfxVolume(const int newValue) const;
+ void updateSpeechVolume(const int newValue) const;
bool _enableVolumeSettings;
StaticTextWidget *_musicVolumeDesc;
diff --git a/po/be_BY.po b/po/be_BY.po
index e2c899edc1..a6c12ef5f1 100644
--- a/po/be_BY.po
+++ b/po/be_BY.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.8.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-31 15:15+0000\n"
"Last-Translator: Ivan Lukyanov <lid-gr@tut.by>\n"
"Language-Team: Belarusian <https://translations.scummvm.org/projects/scummvm/"
@@ -59,7 +59,7 @@ msgstr "Уверх"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgstr ""
"беларускую"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<па змаўчанні>"
@@ -264,11 +264,11 @@ msgstr "Платформа:"
msgid "Engine"
msgstr "Рухавічок"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Графіка"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Грф"
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Перакрыць глабальныя налады графікі"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Аўдыё"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Перакрыць глабальныя налады аўдыё"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Гучнасць"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Гучнасць"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Перакрыць глабальныя налады гучнасці"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Перакрыць глабальныя налады MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Перакрыць глабальныя налады MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Шляхі"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Шляхі"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Шлях да гульні:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Дад. шлях:"
@@ -365,44 +365,44 @@ msgstr "Дад. шлях:"
msgid "Specifies path to additional data used by the game"
msgstr "Паказвае шлях да дадатковых файлаў, дадзеных для гульні"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Дад. шлях:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Захаванні гульняў:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Паказвае шлях да захаванняў гульні"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Захаванні гульняў:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Не зададзены"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Па змаўчанні"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Абярыце SoundFont"
@@ -410,7 +410,7 @@ msgstr "Абярыце SoundFont"
msgid "Select additional game directory"
msgstr "Абярыце дадатковую дырэкторыю гульні"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Абярыце дырэкторыю для захаванняў"
@@ -503,7 +503,7 @@ msgstr "Сінусоіда"
msgid "Triangle"
msgstr "Трохкутная"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Рознае"
@@ -821,8 +821,8 @@ msgstr "44 кГц"
msgid "48 kHz"
msgstr "48 кГц"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Не зададзены"
@@ -847,78 +847,78 @@ msgstr "поўнаэкранны рэжым не можа быць зменены"
msgid "the filtering setting could not be changed"
msgstr "рэжым фільтравання не можа быць зменены"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Граф. рэжым:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Рэжым растру:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Спецыяльныя рэжымы рэндэрынгу, падтрымоўваныя некаторымі гульнямі"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Поўнаэкранны рэжым"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Фільтраванне графікі"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Выкарыстоўваць лінейную фільтрацыю для павелічэння адрознення"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Карэкцыя суадносін бакоў"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Карэктаваць суадносіны бакоў для гульняў з адрозненнем 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Упадабаная прылада:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Гукавая прылада:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Зазначае ўпадабаную гукавую прыладу ці эмулятар гукавой карты"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Зазначае выходную гукавую прыладу ці эмулятар гукавой карты"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Упадабаная:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Гукавая прылада:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Эмулятар AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "Гукавая карта AdLib выкарыстоўваецца многімі гульнямі"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Чашчыня гуку:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -926,64 +926,64 @@ msgstr ""
"Большыя значэнні задаюць лепшую якасць гуку, аднак яны могуць не "
"падтрымлівацца вашай гукавой картай"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Прылада GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Зазначае выходную гукавую прыладу для MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Не выкарыстоўваць музыку для General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Выкарыстоўваць першую даступную прыладу"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont'ы падтрымліваюцца некаторымі гукавымі картамі, FluidSynth ды "
"Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Змешаны рэжым AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Выкарыстоўваць і MIDI, і AdLib для генерацыі гуку"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Узмацненне MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Нал. MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Паказвае гукавую прыладу па змаўчанні для вываду на Roland MT-32/LAPC1/CM32l/"
"CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Сапраўдны Roland MT-32 (забараніць эмуляцыю GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -991,16 +991,16 @@ msgstr ""
"Адзначце, калі ў вас падключана Roland-сумяшчальная гукавая прылада і вы "
"жадаеце яе выкарыстоўваць"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Сапраўдны Roland MT-32 (без эмуляцыі GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Рэжым Roland GS (дазволіць мапінг MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1008,265 +1008,265 @@ msgstr ""
"Адзначце, калі жадаеце дазволіць мапінг для эмуляцыі MT-32 на прыладзе "
"Rolans GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Не выкарыстоўваць музыку для MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Тэкст і агучка:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Агучка"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Субтытры"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Абое"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Хуткасць тытраў:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Тэкст і агучка:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Агуч"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Суб"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Абое"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Паказваць субтытры і прайграваць гаворку"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Хуткасць тытраў:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Гучн. музыкі:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Гучн. музыкі:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Выкл. усё"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Гучнасць SFX:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Гучнасць спецыяльных гукавых эфектаў"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Гучнасць SFX:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Гучн. агучкі:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Гучн. агучкі:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Налады FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Шлях да тэм:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Шлях да тэм:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Паказвае шлях да дадатковых файлаў дадзеных, выкарыстоўваных усімі гульнямі "
"або ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Шлях да плагінаў:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Шлях да плагінаў:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Рознае"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Тэма:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Малявалка GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Аўтазахаванне:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Аўтазахаванне:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Клавішы"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Мова GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Мова графічнага інтэрфейсу ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Правяраць абнаўленні:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Як часта правяраць абнаўленні ScummVM"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Праверыць цяпер"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Воблака"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Воблака"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Воблака:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Актыўнае воблачнае сховішча"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<няма>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Карыстач:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Імя карыстача ў гэтым воблаку"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Карыстаны аб'ём:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Аб'ём, заняты захаваннямі гульняў ScummVM на гэтым воблаку"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Апошняя сінхранізацыя:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Калі рабілася апошняя сінхранізацыя з гэтым воблакам"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Далучыць"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Адкрывае дыялог для налады далучэння да воблака"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Абнавіць"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr "Абнаўляе бягучую інфармацыю пра воблака (імя карыстача і аб'ём)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Загрузіць"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Адкрывае менеджар загрузак"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Запусціць сервер"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Запускае лакальны вэб-сервер"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Не запушчаны"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Каранёвая дырэкторыя:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Паказвае шлях да дырэкторыі, куды будзе мець доступ Менеджар файлаў"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Корань:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Порт сервера:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1274,19 +1274,19 @@ msgstr ""
"Нумар порта, выкарыстоўваны серверам\n"
"Усталяванне доступу працуе толькі з портам па змаўчанні"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Ужыць"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Не атрымалася змяніць воблака!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Ужо актыўна іншае воблачнае сховішча."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1294,48 +1294,48 @@ msgstr ""
"Тэма, абраная вамі, не падтрымлівае бягучую мову. Калі вы жадаеце "
"выкарыстоўваць гэтую тэму, вам неабходна спачатку пераключыцца на іншую мову."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Не магу пісаць у абраную дырэкторыю. Калі ласка, азначце іншую."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Абярыце дырэкторыю для тэм GUI"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Абярыце дырэкторыю з дадатковымі файламі"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Абярыце дырэкторыю з плагінамі"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Абярыце дырэкторыю для кораня ў Менеджары файлаў"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu байтаў"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<зараз>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<ніколі>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Спыніць сервер"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Спыняе лакальны вэб-сервер"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 0e1e4b490f..92b88c0344 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-04 15:46+0000\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Catalan <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Amunt"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -152,7 +152,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -236,7 +236,7 @@ msgstr ""
"Anglшs"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<per defecte>"
@@ -259,11 +259,11 @@ msgstr "Platafor.:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grрfics"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -276,7 +276,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Canviar les opcions de grрfics"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Рudio"
@@ -289,11 +289,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Canviar les opcions d'рudio"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volum"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volum"
@@ -307,7 +307,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Canviar les opcions de volum"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -320,7 +320,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Canviar les opcions de MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -333,11 +333,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Canviar les opcions de MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Camins"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Camins"
@@ -351,7 +351,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Camэ joc:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Camэ extra:"
@@ -360,44 +360,44 @@ msgstr "Camэ extra:"
msgid "Specifies path to additional data used by the game"
msgstr "Especifica el camэ de dades addicionals utilitzades pel joc"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Camэ extra:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Camэ de partides:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Especifica on es desaran les partides"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Partides:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Cap"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Per defecte"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Seleccioneu el fitxer SoundFont"
@@ -405,7 +405,7 @@ msgstr "Seleccioneu el fitxer SoundFont"
msgid "Select additional game directory"
msgstr "Seleccioneu el directori addicional del joc"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Seleccioneu el directori de les partides desades"
@@ -497,7 +497,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Triangle"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Misc"
@@ -822,8 +822,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Cap"
@@ -849,79 +849,79 @@ msgstr "no s'ha pogut canviar l'ajust de pantalla completa"
msgid "the filtering setting could not be changed"
msgstr "no s'ha pogut canviar l'ajust de pantalla completa"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Mode grрfic:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Mode de pintat:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Modes de tramat especials suportats per alguns jocs"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Mode pantalla completa"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "Grрfics"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correcciѓ de la relaciѓ d'aspecte"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corregeix la relaciѓ d'aspecte per jocs de 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Disp. preferit:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Disp. de mњsica:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Especifica el dispositiu de so o l'emulador de tarja de so preferit"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Especifica el dispositiu de so o l'emulador de tarja de so de sortida"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Disp. preferit:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Disp. de mњsica:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emulador AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib s'utilitza per la mњsica de molts jocs"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Freq. sortida:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -929,63 +929,63 @@ msgstr ""
"Valors mщs alts especifiquen millor qualitat de so perђ pot ser que la "
"vostra tarja de so no ho suporti"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Dispositiu GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr ""
"Especifica el dispositiu de so per defecte per a la sortida General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "No utilitzis mњsica General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Utilitza el primer dispositiu disponible"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "Fitxer SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "Algunes targes de so, FluidSynth i Timidity suporten SoundFont"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Mode combinat AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Utilitza MIDI i la generaciѓ de so AdLib alhora"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Guany MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Disposit. MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Especifica el dispositiu de so per defecte per a la sortida de Roland MT-32/"
"LAPC1/CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 real (desactiva l'emulaciѓ GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -993,306 +993,306 @@ msgstr ""
"Marqueu si voleu utilitzar el vostre dispositiu hardware real de so "
"compatible amb Roland connectat al vostre ordinador"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 real (sense emulaciѓ GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
#, fuzzy
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Mode Roland GS (desactiva el mapeig GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
msgstr ""
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "No utilitzis mњsica de Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Text i Veus:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Veus"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Subtэtols"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Ambdѓs"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Velocitat de subt.:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Text i Veus:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Veus"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Subt"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Ambdѓs"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Mostra els subtэtols i reprodueix la veu"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Veloc. de subt.:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Volum de mњsica:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Volum de mњsica:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Silenciar tot"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Volum d'efectes:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volum dels sons d'efectes especials"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Volum d'efectes:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Volum de veus:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Volum de veus:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Configuraciѓ de FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Camэ dels temes:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Camэ temes:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Especifica el camэ de les dades addicionals utilitzades per tots els jocs o "
"pel ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Camэ dels connectors:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Camэ de connectors:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Misc"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Pintat GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Desat automрtic:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Auto-desat:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Tecles"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Idioma GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Idioma de la interfэcie d'usuari de ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Nom d'usuari:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
#, fuzzy
msgid "Download"
msgstr "Avall"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
#, fuzzy
msgid "Not running"
msgstr "Error al executar el joc:"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
#, fuzzy
msgid "/root/ Path:"
msgstr "Camэ extra:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
#, fuzzy
msgid "Specifies which directory the Files Manager can access"
msgstr "Especifica on es desaran les partides"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
#, fuzzy
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Camэ extra:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
#, fuzzy
msgid "Server's port:"
msgstr "Servidor:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
#, fuzzy
msgid "Failed to change cloud storage!"
msgstr "No s'ha pogut desar l'estat del joc"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1300,53 +1300,53 @@ msgstr ""
"El tema que heu seleccionat no suporta l'idioma actual. Si voleu utilitzar "
"aquest tema primer haureu de canviar a un altre idioma."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
"No es pot escriure al directori seleccionat. Si us plau, escolliu-ne un "
"altre."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Seleccioneu el directori dels temes"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Seleccioneu el directori dels fitxers extra"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Seleccioneu el directori dels connectors"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
#, fuzzy
msgid "Select directory for Files Manager /root/"
msgstr "Seleccioneu el directori dels fitxers extra"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
#, fuzzy
msgid "<never>"
msgstr "Mai"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
#, fuzzy
msgid "Stop server"
msgstr "Servidor:"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 5382ef72a7..b04d1730f2 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-04 15:43+0000\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Czech <https://translations.scummvm.org/projects/scummvm/"
@@ -60,7 +60,7 @@ msgstr "Jэt nahoru"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -157,7 +157,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgid ""
msgstr "Jazyk hry. Toto z vaЙэ Љpanьlskщ verze neudьlс Anglickou"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<v§chozэ>"
@@ -264,11 +264,11 @@ msgstr "Platforma:"
msgid "Engine"
msgstr "Jсdro"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Obraz"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Potlaшit globсlnэ nastavenэ obrazu"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Zvuk"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Potlaшit globсlnэ nastavenэ zvuku"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Hlasitost"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Hlasitost"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Potlaшit globсlnэ nastavenэ hlasitosti"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Potlaшit globсlnэ nastavenэ MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Potlaшit globсlnэ nastavenэ MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Cesty"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Cesty"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Cesta Hry:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Dodateшnс Cesta:"
@@ -365,44 +365,44 @@ msgstr "Dodateшnс Cesta:"
msgid "Specifies path to additional data used by the game"
msgstr "Stanovэ cestu pro dodateшnс data pouОitс ve hјe"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Dodateшnс Cesta:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Cesta pro uloОenэ:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Stanovuje, kam jsou umэstьny vaЙe uloОenщ hry"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Cesta pro uloОenэ:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ўсdnщ"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "V§chozэ"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Vybrat SoundFont"
@@ -410,7 +410,7 @@ msgstr "Vybrat SoundFont"
msgid "Select additional game directory"
msgstr "Vyberte dodateшn§ adresсј hry"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Vyberte adresсј pro uloОenщ hry"
@@ -502,7 +502,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Trojњhelnэk"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Rљznщ"
@@ -820,8 +820,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ўсdnщ"
@@ -847,79 +847,79 @@ msgstr "nastavenэ celщ obrazovky nemohlo b§t zmьnьno"
msgid "the filtering setting could not be changed"
msgstr "nastavenэ celщ obrazovky nemohlo b§t zmьnьno"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "ReОim obrazu:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "ReОim vykreslenэ:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Speciсlnэ reОimy chvьnэ podporovanщ nьkter§mi hrami"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "ReОim celщ obrazovky"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "PouОэt barevnщ grafiky"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Korekce pomьru stran"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Korigovat pomьr stran pro hry 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Prioritnэ Zaјэzenэ:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Hudebnэ zaјэzenэ:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Stanovэ prioritnэ zvukovщ zaјэzenэ nebo emulсtor zvukovщ karty"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Stanovэ v§stupnэ zvukovщ zaјэzenэ nebo emulсtor zvukovщ karty"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Prioritnэ Zaј.:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Hudebnэ zaјэzenэ:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emulсtor:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib se pouОэvс pro hudbu v mnoha hrсch"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "V§stup. frekvence:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -927,62 +927,62 @@ msgstr ""
"VyЙЙэ hodnota zpљsobэ lepЙэ kvalitu zvuku, ale nemusэ b§t podporovсna VaЙi "
"zvukovou kartou"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM Zaјэzenэ:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Stanovэ v§chozэ zvukovщ zaјэzenэ pro v§stup General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "NepouОэvat hudbu General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "PouОэt prvnэ dostupnщ zaјэzenэ"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont je podporovсn nьkter§mi zvukov§mi kartami, FluidSynth a Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "SmэЙen§ reОim AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "PouОэt obь zvukovщ generace MIDI a AdLib"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Zesэlenэ MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Zaјэzenэ MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
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"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Opravdov§ Roland MT-32 (vypne GM emulaci)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -990,16 +990,16 @@ msgstr ""
"ZaЙkrtnьte, pokud chcete pouОэt pravщ hardwarovщ zaјэzenэ kompatibilnэ s "
"Roland, pјipojenщ k vaЙemu poшэtaшi"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Opravdov§ Roland MT-32 (Осdnс GM emulace)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Zaјэzenэ Roland GS (zapne mapovсnэ MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1007,266 +1007,266 @@ msgstr ""
"ZaЙkrtnьte, pokud chcete povolit zсplaty mapovсnэ umoОђujэcэ emulovat MT-32 "
"na zaјэzenэ Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "NepouОэvat hudbu Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Text a иeш:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "иeш"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Titulky"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Oba"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Rychlost titulkљ:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Text a иeш:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "иeш"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Titl"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Oba"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Zobrazit titulky a pјehrсvat јeш"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Rychlost titulkљ:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Hlasitost hudby:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Hlasitost hudby:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Ztlumit VЙe"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Hlasitost zvukљ:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Hlasitost speciсlnэch zvukov§ch efektљ"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Hlasitost zvukљ:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Hlasitost јeшi:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Hlasitost јeшi:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Nastavenэ FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Cesta ke Vzhledu:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Cesta ke Vzhledu:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
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"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Cesta k Pluginљm:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Cesta k Pluginљm:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Rљznщ"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Vzhled:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI Vykreslovaш:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autouklсdсnэ:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autouklсdсnэ:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Klсvesy"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Jazyk GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Jazyk GUI ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Kontrola aktualizacэ:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Jak шasto ScummVM kontroluje aktualizace"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Zkontrolovat nynэ"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "кloОiЙtь:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Aktivnэ cloudovщ њloОiЙtь"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<Осdnщ>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "UОivatelskщ jmщno:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "UОivatelskс jmщna kterс toto њloОiЙtь vyuОэvajэ"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "VyuОit§ prostor:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Prostor vyuОit§ uloОen§mi hrami ScummVM v tomto њloОiЙti"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Datum poslednэ synchronizace:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Kdy byla provedena poslednэ synchronizace uloОen§ch her"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Pјipojit"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"Otevјэt dialogovщ okno prљvodce pro pјipojenэ k vaЙemu њшtu cloudovщho "
"њloОiЙtь"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Obnovit"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Obnovit souшasnщ њdaje cloudovщho њloОiЙtь (uОivatelskщ jmщno a vyuОitэ)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Stсhnout"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Otevјэt dialogovщ okno sprсvce stahovanэ"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Spustit server"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Spustit mэstnэ internetov§ server"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "NespuЙtьno"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Cesta /root/:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Urшuje do kterщho adresсјe mс Sprсvce souborљ pјэstup"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Cesta /root/:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Port serveru:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1274,19 +1274,19 @@ msgstr ""
"Kter§ port server pouОэvс\n"
"PјihlсЙenэ pomocэ serveru nenэ dostupnщ pјi pouОitэ nestandardnэho portu"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Nelze zmьnit cloudovщ њloОiЙtь!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Jinщ cloudovщ њloОiЙtь jiО je aktivnэ."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1294,48 +1294,48 @@ msgstr ""
"Vzhled, kter§ jste zvolili, nepodporuje VсЙ souшasn§ jazyk. Pokud chcete "
"tento vzhled pouОэt, musэte nejdјэve pјepnout na jin§ jazyk."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Do zvolenщho adresсјe nelze zapisovat. Vyberte, prosэm, jin§."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Vyberte adresсј pro vhledy GUI"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Vyberte adresсј pro dodateшnщ soubory"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Vyberte adresсј pro zсsuvnщ moduly"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Vyberte adresсј pro koјen Sprсvce souborљ"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bajtљ"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<prсvь nynэ>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<nikdy>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Zastavit server"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Zastavit mэstnэ internetov§ server"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/da_DK.po b/po/da_DK.po
index d6099dae90..3d012a78f0 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-29 07:29+0000\n"
"Last-Translator: poulsen93 <poulsen93@gmail.com>\n"
"Language-Team: Danish <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Gх op"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -152,7 +152,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -236,7 +236,7 @@ msgstr ""
"engelsk"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<standard>"
@@ -259,11 +259,11 @@ msgstr "Platform:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafik"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -276,7 +276,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Overstyr globale grafik indstillinger"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Lyd"
@@ -289,11 +289,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Overstyr globale lyd indstillinger"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Lydstyrke"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Lydstyrke"
@@ -307,7 +307,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Overstyr globale lydstyrke indstillinger"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -320,7 +320,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Overstyr globale MIDI indstillinger"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -333,11 +333,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Overstyr globale MT-32 indstillinger"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Stier"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Stier"
@@ -351,7 +351,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Spil sti:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Ekstra sti:"
@@ -360,44 +360,44 @@ msgstr "Ekstra sti:"
msgid "Specifies path to additional data used by the game"
msgstr "Angiver sti til ekstra data der bruges i spillet"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Ekstra sti:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Gemme sti:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Angiver hvor dine gemmer bliver lagt"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Gemme sti:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ingen"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Standard"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Vцlg SoundFont"
@@ -405,7 +405,7 @@ msgstr "Vцlg SoundFont"
msgid "Select additional game directory"
msgstr "Vцlg ekstra spil bibliotek"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Vцlg bibliotek til spil gemmer"
@@ -495,7 +495,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Triangulцr"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Andet"
@@ -814,8 +814,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ingen"
@@ -841,79 +841,79 @@ msgstr "fuld skцrm indstillingen kunne ikke цndres"
msgid "the filtering setting could not be changed"
msgstr "fuld skцrm indstillingen kunne ikke цndres"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafik tilstand:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Rendere tilstand:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Speciel farvereduceringstilstand understјttet a nogle spil"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Fuldskцrms tilstand"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "Grafik"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Billedformat korrektion"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Korrekt billedformat til 320x200 spil"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Foretruk. enhed:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musik enhed:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Angiver foretukket lyd enhed eller lydkort emulator"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Angiver lyd udgangsenhed eller lydkorts emulator"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Foretruk. enh.:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musik enhed:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emulator:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib bliver brugt til musik i mange spil"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Udgangsfrekvens:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -921,60 +921,60 @@ msgstr ""
"Hјjere vцrdi angiver bedre lyd kvalitet, men understјttes mхske ikke af dit "
"lydkort"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM enhed:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Angiver standard lyd enhed for Generel MIDI-udgang"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Brug ikke Generel MIDI musik"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Brug fјrste tilgцngelig enhed"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "SoundFont er understјttet af nogle lydkort, FluidSynth og Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Blandet AdLib/MIDI tilstand"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Brug bхde MIDI og AdLib lyd generering"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI lydstyrke:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 enhed:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr "Angiver standard lyd enhed for Roland MT-32/LAPC1/CM32I/CM64 udgang"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Цgte Roland MT-32 (undlad GM emulering)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -982,16 +982,16 @@ msgstr ""
"Kryds af hvis du vil bruge din rigtige hardware Roland-kompatible lyd enhed "
"tilsluttet til din computer"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Цgte Roland MT-32 (ingen GM emulering)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS enhed (aktivщr MT-32 tilknytninger)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -999,288 +999,288 @@ msgstr ""
"Kryds af hvis du vil aktivere patch tilknytninger, for at emulere en MT-32 "
"pх en Roland GS enhed"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Brug ikke Roland MT-32 musik"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Tekst og tale:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Tale"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Undertekster"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Begge"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Tekst hastighed:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Tekst og tale:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Tale"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Tekst"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Begge"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Vis undertekster og afspil tale"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Tekst hastighed:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musik lydstyrke:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musik lydstyrke:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Mute alle"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "SFX lydstyrke:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Lydstyrke for specielle lydeffekter"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "SFX lydstyrke:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Tale lydstyrke:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Tale lydstyrke:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth indstillinger"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Tema sti:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Tema sti:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "Angiver sti til ekstra data brugt af alle spil eller ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Plugin sti:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Plugin sti:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Andet"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI renderer:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Auto gemme:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Auto gemme:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Taster"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Sprog:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Sprog for brugerfladen i ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Bruger:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
#, fuzzy
msgid "Download"
msgstr "Ned"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
#, fuzzy
msgid "Not running"
msgstr "Fejl ved kјrsel af spil:"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
#, fuzzy
msgid "/root/ Path:"
msgstr "Ekstra sti:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
#, fuzzy
msgid "Specifies which directory the Files Manager can access"
msgstr "Angiver hvor dine gemmer bliver lagt"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
#, fuzzy
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Ekstra sti:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
#, fuzzy
msgid "Server's port:"
msgstr "Server:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
#, fuzzy
msgid "Failed to change cloud storage!"
msgstr "Mislykkedes at gemme spil"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1288,51 +1288,51 @@ msgstr ""
"Temaet du valgte understјtter ikke dit aktuelle sprog. Hvis du јnsker at "
"bruge dette tema, skal du skifte til et andet sprog fјrst."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Der kan ikke skrives til det valgte bibliotek. Vцlg venligst et andet."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Vцlg bibliotek for GUI temaer"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Vцlg bibliotek for ekstra filer"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Vцlg bibliotek for plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
#, fuzzy
msgid "Select directory for Files Manager /root/"
msgstr "Vцlg bibliotek for ekstra filer"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
#, fuzzy
msgid "<never>"
msgstr "Aldrig"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
#, fuzzy
msgid "Stop server"
msgstr "Server:"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/de_DE.po b/po/de_DE.po
index 549b71a916..c1650206f6 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.10.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-02-08 21:48+0000\n"
"Last-Translator: Lothar Serra Mari <rootfather@scummvm.org>\n"
-"Language-Team: German "
-"<https://translations.scummvm.org/projects/scummvm/scummvm/de/>\n"
+"Language-Team: German <https://translations.scummvm.org/projects/scummvm/"
+"scummvm/de/>\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
@@ -59,7 +59,7 @@ msgstr "Pfad hoch"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -158,7 +158,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -244,7 +244,7 @@ msgstr ""
"nicht in eine deutsche verwandeln"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<Standard>"
@@ -267,11 +267,11 @@ msgstr "Plattform:"
msgid "Engine"
msgstr "Engine"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafik"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -284,7 +284,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Globale Grafik-Einstellungen ќbergehen"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Audio"
@@ -297,11 +297,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Globale Audio-Einstellungen ќbergehen"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Lautstфrke"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Lautst."
@@ -315,7 +315,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Globale Lautstфrke-Einstellungen ќbergehen"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -328,7 +328,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Globale MIDI-Einstellungen ќbergehen"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -341,11 +341,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Globale MT-32-Einstellungen ќbergehen"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Pfade"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Pfade"
@@ -359,7 +359,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Spielpfad:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Extras:"
@@ -368,44 +368,44 @@ msgstr "Extras:"
msgid "Specifies path to additional data used by the game"
msgstr "Legt den Verzeichnispfad fќr zusфtzliche Spieldateien fest"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Extras:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Spielstфnde:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Legt fest, wo die Spielstфnde gespeichert werden"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Spielstфnde:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Keiner"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Standard"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "SoundFont auswфhlen"
@@ -413,7 +413,7 @@ msgstr "SoundFont auswфhlen"
msgid "Select additional game directory"
msgstr "Verzeichnis mit zusфtzlichen Dateien auswфhlen"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Verzeichnis fќr Spielstфnde auswфhlen"
@@ -506,7 +506,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Dreieck"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Sonstiges"
@@ -829,8 +829,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Kein SoundFont"
@@ -855,79 +855,79 @@ msgstr "Vollbildeinstellung konnte nicht geфndert werden"
msgid "the filtering setting could not be changed"
msgstr "Die Filtereinstellung konnte nicht geфndert werden"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafikmodus:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Render-Modus:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Spezielle Farbmischungsmethoden werden von manchen Spielen unterstќtzt"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Vollbildmodus"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Bilineare Filterung"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Verwende bilineare Filterung zur Grafik-Skalierung"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Seitenverhфltnis korrigieren"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Seitenverhфltnis fќr Spiele mit der Auflіsung 320x200 korrigieren"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Bevorzugtes Gerфt:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musikgerфt:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
"Legt das bevorzugte Tonwiedergabe-Gerфt oder den Soundkarten-Emulator fest"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Legt das Musikwiedergabe-Gerфt oder den Soundkarten-Emulator fest"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Standard-Gerфt:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musikgerфt:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib-Emulator:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib wird fќr die Musik in vielen Spielen verwendet"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Ausgabefrequenz:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -935,64 +935,64 @@ msgstr ""
"Hіhere Werte bewirken eine bessere Soundqualitфt, werden aber mіglicherweise "
"nicht von jeder Soundkarte unterstќtzt"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM-Gerфt:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr ""
"Legt das standardmфпige Musikwiedergabe-Gerфt fќr General-MIDI-Ausgabe fest"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Keine General-MIDI-Musik"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Erstes verfќgbares Gerфt"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont wird von einigen Soundkarten, FluidSynth und Timidity unterstќtzt"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Gemischter AdLib/MIDI-Modus"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Kombiniert MIDI-Musik mit AdLib-Soundeffekten"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI-Lautstфrke:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32-Gerфt:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Legt das standardmфпige Tonwiedergabe-Gerфt fќr die Ausgabe von Roland MT-32/"
"LAPC1/CM32l/CM64 fest"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Echte Roland MT-32 (GM-Emulation deaktiviert)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -1000,16 +1000,16 @@ msgstr ""
"Wфhlen Sie dies aus, wenn Sie ein echtes Roland-kompatibles Soundgerфt "
"verwenden"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Echte Roland MT-32 (keine GM-Emulation)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland-GS-Gerфt (MT-32-Zuweisungen aktivieren)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1017,270 +1017,270 @@ msgstr ""
"Auswфhlen, wenn Sie ausbessernde Instrumentzuweisungen aktivieren mіchten, "
"um MT-32 auf einem Roland-GS-Gerфt zu emulieren"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Keine Roland-MT-32-Musik"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Sprache und Text:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Sprache"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Untertitel"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Beides"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Untertitel-Tempo:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Text u. Sprache:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Spr."
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Text"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "S+T"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Untertitel anzeigen und Sprachausgabe aktivieren"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Text-Tempo:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musiklautstфrke:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musiklautstфrke:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Stumm"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Effektlautstфrke:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Lautstфrke spezieller Gerфusch-Effekte"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Effektlautst.:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Sprachlautstфrke:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Sprachlautst.:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth-Einstellungen"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Themen:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Themen:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Legt das Verzeichnis fќr zusфtzliche Spieldateien fќr alle Spiele in ScummVM "
"fest"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Plugins:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Plugins:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Andere"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Thema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI-Renderer:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autom. Speichern:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autospeichern:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Tasten"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Sprache:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Sprache der ScummVM-Oberflфche"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Updates suchen:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Wie oft nach Aktualisierungen von ScummVM suchen?"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Jetzt prќfen"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Cloud-Speicher:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Aktiver Cloud-Speicher"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<keiner>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Benutzername:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Benutzername, der von diesem Cloud-Speicher verwendet wird"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Belegter Speicher:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
"Von ScummVM-Spielstфnden beleger Speicherplatz auf diesem Cloud-Speicher"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Letzte Sync.:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Zeitpunkt der letzten Spielstand-Synchronisierung"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Verbinden"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"жffnet den Assistenten, der Sie durch die Einrichtung Ihres Cloud-Speichers "
"fќhrt"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Aktualisieren"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Aktualisiert die Informationen ќber diesen Cloud-Speicher (Benutzername und "
"Belegung)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Herunterladen"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "жffnet den Download-Manager"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Server starten"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Startet den lokalen Webserver"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Nicht gestartet"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/root/-Pfad:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Legt fest, auf welches Verzeichnis der Dateimanager zugreifen darf"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/root/-Pfad:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Server-Port:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1289,20 +1289,20 @@ msgstr ""
"Authentifizierung mit dem Server ist nicht verfќgbar, wenn ein anderer Port "
"verwendet wird"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "мbernehmen"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Konnte den Cloud-Speicher nicht фndern!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Ein anderer Cloud-Speicher arbeitet gerade."
# Nicht ќbersetzen, da diese Nachricht nur fќr nicht-lateinische Sprachen relevant ist.
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1311,51 +1311,51 @@ msgstr ""
"dieses Thema benutzen wollen, mќssen Sie erst zu einer anderen Sprache "
"wechseln."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
"In das gewфhlte Verzeichnis kann nicht geschrieben werden. Bitte ein anderes "
"auswфhlen."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Verzeichnis fќr Oberflфchen-Themen"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Verzeichnis fќr zusфtzliche Dateien auswфhlen"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Verzeichnis fќr Erweiterungen auswфhlen"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr ""
"Wфhlen Sie das Verzeichnis aus, welches als Stammverzeichnis ('root') dient"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu Bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<gerade eben>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<nie>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Server anhalten"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Lokalen Webserver anhalten"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/el.po b/po/el.po
index b30cb32cca..68dc8c72a8 100644
--- a/po/el.po
+++ b/po/el.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.10.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-07 02:29+0000\n"
"Last-Translator: Filippos Karapetis <bluegr@gmail.com>\n"
"Language-Team: Greek <https://translations.scummvm.org/projects/scummvm/"
@@ -57,7 +57,7 @@ msgstr "Ьхємтсѓч №мэљ"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -154,7 +154,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgstr ""
"№сщїэщфщя§ ѓсђ ѓх Сууыщъо"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<№ёяъсшяёщѓьнэч>"
@@ -264,11 +264,11 @@ msgstr "аысєіќёьс:"
msgid "Engine"
msgstr "Ьчїсэо"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Уёсіщъм"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Уёсі."
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "асёмъсьјч ёѕшь, уёсіщъўэ"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Йїяђ"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "асёмъсьјч ёѕшь. оїяѕ"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Иэєсѓч"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Иэєсѓч"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "асёмъсьјч ёѕшь. нэєсѓчђ"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "асёмъсьјч ёѕшь. MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "асёмъсьјч ёѕшь. MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "жмъхыящ"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "жмъхыящ"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "жмъхыяђ асщїэщфщя§:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "жмъхыяђ Июєёс:"
@@ -366,44 +366,44 @@ msgid "Specifies path to additional data used by the game"
msgstr ""
"Ъсшяёпцхщ фщсфёяьо ущс №ёќѓшхєс фхфяьнэс №яѕ їёчѓщья№ящя§эєсщ с№ќ єя №сщїэпфщ"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "жмъхыяђ Июєёс:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "жмъхыяђ С№яшоъхѕѓчђ:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Ъсшяёпцхщ єчэ єя№яшхѓпс єљэ с№яшчъхѕьнэљэ №сщїэщфщўэ ѓсђ"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "жмъхыяђ С№яш.:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ъсэнэс"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "аёяъсшяёщѓьнэя"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Х№щынюєх SoundFont"
@@ -411,7 +411,7 @@ msgstr "Х№щынюєх SoundFont"
msgid "Select additional game directory"
msgstr "Х№щынюєх №ёќѓшхєя імъхыя №сщїэщфщя§"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Х№щынюєх імъхыя ущс с№яшчъхѕьнэс №сщїэпфщс"
@@ -506,7 +506,7 @@ msgstr "Чьпєяэя"
msgid "Triangle"
msgstr "дёпуљэя"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Фщміяёс"
@@ -836,8 +836,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ъсэнэс"
@@ -862,80 +862,80 @@ msgstr "фхэ оєсэ фѕэсєо ч сыысуо єчђ ё§шьщѓчђ №ыоёяѕђ яшќэчђ"
msgid "the filtering setting could not be changed"
msgstr "фхэ оєсэ фѕэсєо ч сыысуо єчђ ё§шьщѓчђ іщыєёсёпѓьсєяђ"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Ыхщєяѕёупс уёсіщъўэ:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Ыхщєяѕёупс с№ќфяѓчђ:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr ""
"Хщфщънђ ыхщєяѕёупхђ їёљьсєщъођ сэєщ№сёмшхѓчђ ящ я№япхђ ѕ№яѓєчёпцяэєсщ с№ќ "
"яёщѓьнэс №сщїэпфщс"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Ыхщєяѕёупс №ыоёяѕђ яшќэчђ"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "жпыєёя уёсіщъўэ"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "зёоѓч уёсььщъя§ іщыєёсёпѓьсєяђ ущс єчэ ъыщьмъљѓч уёсіщъўэ"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Фщќёшљѓч сэсыяупсђ фщсѓємѓхљэ"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Фщќёшљѓч сэсыяупсђ фщсѓємѓхљэ ущс №сщїэпфщс 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "аёяєщьўьхэч ѓѕѓъхѕо:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "гѕѓъхѕо Ьяѕѓщъођ:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Ъсшяёпцхщ єчэ №ёяєщьўьхэч ѓѕѓъхѕо хюќфяѕ оїяѕ о хюяьящљєо ъмёєсђ оїяѕ"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Ъсшяёпцхщ єч ѓѕѓъхѕо хюќфяѕ оїяѕ о хюяьящљєо ъмёєсђ оїяѕ"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "аёяєщь. гѕѓъ.:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "гѕѓъ. Ьяѕѓ.:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Хюяьящљєођ Adlib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "Ч Adlib їёчѓщья№ящхпєсщ ущс ьяѕѓщъо ѓх №яыым №сщїэпфщс"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "бѕшьќђ хюќфяѕ:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -943,63 +943,63 @@ msgstr ""
"ејчыќєхёч єщьо ъсшяёпцхщ ъсы§єхёч №ящќєчєс оїяѕ, сыым ь№яёхп эс ьчэ "
"ѕ№яѓєчёпцхєсщ с№ќ єчэ ъмёєс оїяѕ ѓсђ"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "гѕѓъхѕо GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Ъсшяёпцхщ №ёях№щыхуьнэч ѓѕѓъхѕо оїяѕ ущс єчэ нюяфя General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Ьч їёоѓч ьяѕѓщъођ General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "зёоѓч №ёўєчђ фщсшнѓщьчђ ѓѕѓъхѕођ"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"дя SoundFont ѕ№яѓєчёпцхєсщ с№ќ ьхёщънђ ъмёєхђ оїяѕ, єя FluidSynth ъсщ єя "
"Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Ьщъєо ыхщєяѕёупс Adlib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "зёоѓч MIDI ъсщ Adlib ущс фчьщяѕёупс оїяѕ"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "С§ючѓч MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "гѕѓъхѕо MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Ъсшяёпцхщ №ёях№щыхуьнэч ѓѕѓъхѕо оїяѕ ущс нюяфя Roland MT-32/LAPC1/CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "аёсуьсєщъо Roland MT-32 (с№хэхёуя№япчѓч хюяьящљєо GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -1007,16 +1007,16 @@ msgstr ""
"Х№щынюєх сэ шныхєх эс їёчѓщья№ящоѓхєх ѓѕѓъхѕо оїяѕ ѓѕьтсєо ьх Roland, ч "
"я№япс хпэсщ ѓѕэфхфхьнэч ѓєяэ ѕ№яыяущѓєо ѓсђ"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "аёсуьсєщъо Roland MT-32 (їљёпђ хюяьяпљѓч GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "гѕѓъхѕо Roland GS (хэхёуя№япчѓч сэєщѓєящїпѓхљэ MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1024,272 +1024,272 @@ msgstr ""
"Х№щынюєх сэ шныхєх эс хэхёуя№ящоѓхєх фщяёшљьнэхђ сэєщѓєящїпѓхщђ ущс эс "
"хюяьящўѓхєх ьщс MT-32 ѓх ѓѕѓъхѕо Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Ьч їёоѓч ьяѕѓщъођ Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Ъхпьхэя ъсщ Яьщыпс:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Яьщыпс"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "е№ќєщєыящ"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Ъсщ єс фѕя"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "дсї§єчєс ѕ№яєпєыљэ:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Ъхпьхэя ъсщ Яьщыпс:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Яьщыпс"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "е№ќє."
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Ъсщ єс фѕя"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "аёятяыо ѕ№яєпєыљэ ъсщ сэс№сёсуљуо іљэођ"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "дсї§єчєс ѕ№ќє.:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Иэєсѓч ьяѕѓщъођ:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Иэєсѓч ьяѕѓщъођ:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "гпусѓч Мыљэ"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Иэєсѓч хін:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Иэєсѓч хщфщъўэ съяѕѓєщъўэ хін"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Иэєсѓч хін:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Иэєсѓч яьщыпсђ:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Иэєсѓч яьщыпсђ:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "бѕшьпѓхщђ FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "жмъхыяђ Шньсєяђ:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "жмъхыяђ Шньсєяђ:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Ъсшяёпцхщ єч фщсфёяьо ущс №ёќѓшхєс фхфяьнэс №яѕ їёчѓщья№ящя§эєсщ с№ќ ќыс єс "
"№сщїэпфщс о єя ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Фщсфёяьо аёќѓшхєљэ:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Фщсфё. аёќѓш.:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Ыящ№м"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Шньс:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "С№хщъќэщѓч GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Сѕєќьсєч с№яшоъхѕѓч:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Сѕєќь. с№яш.:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "аыоъєёс"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Уыўѓѓс GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Уыўѓѓс єяѕ ScummVM GUI"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Иыхуїяђ сэстсшьпѓхљэ:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "гѕїэќєчєс хынуїяѕ хэчьхёўѓхљэ єяѕ ScummVM"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Хынуюєх єўёс"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "г§ээхія"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "г§ээхія"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "С№яшоъхѕѓч:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Хэхёуо с№яшоъхѕѓч ѓ§ээхіяѕ"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<ъсьпс>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Мэяьс їёоѓєч:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "дя ќэяьс їёоѓєч №яѕ їёчѓщья№ящхпєсщ с№ќ сѕєо єчэ с№яшоъч"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "зёчѓщья№ящчьнэяђ їўёяђ:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
"зўёяђ №яѕ їёчѓщья№ящхпєсщ с№ќ єс с№яшчъхѕьнэс №сщїэпфщс єяѕ ScummVM ѓх сѕєо "
"єчэ с№яшоъч"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "дхыхѕєспс ўёс ѓѕуїёяэщѓья§:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
"аќєх №ёсуьсєя№ящошчъх я єхыхѕєспяђ ѓѕуїёяэщѓьќђ с№яшчъхѕьнэљэ №сщїэщфщўэ"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "г§эфхѓч"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"Сэяпюєх єя фщмыяуя яфчуя§ ущс эс ѓѕэфнѓхєх єя ыяусёщсѓьќ єя§ ѓ§ээхіяѕ "
"с№яшоъхѕѓођ ѓсђ"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Сэсэнљѓч"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Сэсэнљѓч №ычёяіяёщўэ єёнїяэєяђ їўёяѕ с№яшоъхѕѓчђ ѓєя ѓ§ээхія (ќэяьс їёоѓєч "
"ъсщ їёоѓч)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Ьхєсіќёєљѓч"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Жэящуьс фщсыќуяѕ фщсїхпёщѓчђ ьхєсіяёєўѓхљэ"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Хъєныхѓч фщсъяьщѓєо"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Хъєныхѓч єя№щъя§ фщсъяьщѓєо web"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Фхэ хъєхыхпєсщ"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/root/ Фщсфёяьо:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Ъсшяёпцхщ єя імъхыя ѓєяэ я№япя нїхщ №ёќѓтсѓч я File Manager"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/root/ Фщсфёяьо:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Ш§ёс хюѕ№чёхєчєо:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1297,19 +1297,19 @@ msgstr ""
"аящм ш§ёс їёчѓщья№ящхпєсщ с№ќ єя фщсъяьщѓєо\n"
"Фхэ хпэсщ фщсшнѓщьч ч №щѓєя№япчѓч ьх єя фщсъяьщѓєо ѓх ьч-№ёях№щыхуьнэч ш§ёс"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Хісёьяуо"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Сфѕэсьпс сыысуођ с№яшоъхѕѓчђ ѓ§ээхіяѕ!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Ьщс мыыч с№яшоъхѕѓч ѓ§ээхіяѕ хпэсщ офч хэхёуо."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1318,50 +1318,50 @@ msgstr ""
"эс їёчѓщья№ящоѓхєх сѕєќ єя шньс шс №ён№хщ №ёўєс эс сыымюхєх ѓх ъм№ящс мыыч "
"уыўѓѓс."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
"Фхэ оєсэ фѕэсєо ч хууёсіо ѓєяэ х№щыхуьнэя імъхыя. асёсъсыў х№щынюєх ъм№ящяэ "
"мыыя."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Х№щынюєх імъхыя ущс шньсєс GUI"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Х№щынюєх імъхыя ущс нюєёс сёїхпс"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Х№щынюєх імъхыя ущс №ёќѓшхєс"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Х№щынюєх імъхыя ущс єя /root/ єяѕ Фщсїхщёщѓєо Сёїхпљэ"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<мьхѓс>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<№яєн>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Фщсъя№о хюѕ№чёхєчєо"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Фщсъя№о єя№щъя§ хюѕ№чёхєчєо web"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/es_ES.po b/po/es_ES.po
index 10a6d255ac..b702455c55 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-15 22:05+0000\n"
"Last-Translator: Rodrigo Vegas Sсnchez-Ferrero <rodrigo.vegas@gmail.com>\n"
"Language-Team: Spanish <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Arriba"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgstr ""
"juego"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<por defecto>"
@@ -264,11 +264,11 @@ msgstr "Plat.:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grсficos"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Grсf."
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Opciones grсficas especэficas"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Sonido"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Opciones de sonido especэficas"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volumen"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volumen"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Opciones de volumen especэficas"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Opciones de MIDI especэficas"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Opciones de MT-32 especэficas"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Rutas"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Rutas"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Juego:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Adicional:"
@@ -365,44 +365,44 @@ msgstr "Adicional:"
msgid "Specifies path to additional data used by the game"
msgstr "Especifica un directorio para datos adicionales del juego"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Adicional:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Partidas:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Especifica dѓnde guardar tus partidas"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Partidas:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ninguna"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Por defecto"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Selecciona un SoundFont"
@@ -410,7 +410,7 @@ msgstr "Selecciona un SoundFont"
msgid "Select additional game directory"
msgstr "Selecciona el directorio adicional"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Selecciona el directorio para partidas guardadas"
@@ -502,7 +502,7 @@ msgstr "Seno"
msgid "Triangle"
msgstr "Triсngulo"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Otras"
@@ -825,8 +825,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ninguno"
@@ -851,81 +851,81 @@ msgstr "no se ha podido cambiar el ajuste a pantalla completa"
msgid "the filtering setting could not be changed"
msgstr "no se han podido cambiar los ajustes de filtrado"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Modo grсfico:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderizado:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Modos especiales de difuminado compatibles con algunos juegos"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Pantalla completa"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtros de grсficos"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Usar filtrado lineal para escalar grсficos"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correcciѓn de la relaciѓn de aspecto"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corregir relaciѓn de aspecto en juegos de 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Disp. preferido:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Disp. de mњsica:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
"Especifica el dispositivo de sonido o emulador de tarjeta de sonido "
"prefierido"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr ""
"Especifica el dispositivo de sonido o emulador de tarjeta de sonido de salida"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Disp. preferido:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Disp. de mњsica:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emul. AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib es usado para la mњsica en muchos juegos"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Frec. de salida:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -933,66 +933,66 @@ msgstr ""
"Los valores mсs altos ofrecen mayor calidad, pero puede que la tarjeta de "
"sonido no lo soporte"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Dispositivo GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr ""
"Especifique el dispositivo de salidapor defecto para la salida de General "
"MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "No usar mњsica General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Utilizar el primer dispositivo disponible"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont es compatible con algunas tarjetas de sonido, con FluidSynth y con "
"Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Modo AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Usar tanto MIDI como AdLib en la generaciѓn de sonido"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Ganancia MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Disp. MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Especifica el dispositivo de sonido para la salida Roland MT-32/LAPC1/CM32l/"
"CM64 por defecto"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 autщntica (desactivar emulaciѓn GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -1000,16 +1000,16 @@ msgstr ""
"Marcar si se quiere usar un dispositivo de sonido real conectado al "
"ordenador y compatible con Roland"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 real (sin emulaciѓn GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Dispositivo Roland GS (activar conversiѓn MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1017,266 +1017,266 @@ msgstr ""
"Marca esta opciѓn si quieres activar la conversiѓn para emular una MT-32 en "
"un dispositivo Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "No usar mњsica Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Texto y voces:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Voces"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Subtэtulos"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Ambos"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Vel. de subtэtulos:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Texto y voces:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Voz"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Subt"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "V&S"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Reproducir voces y subtэtulos"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Vel. de subt.:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Mњsica:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Mњsica:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Silenciar"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Efectos:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volumen de los efectos de sonido"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Efectos:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Voces:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Voces:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Opciones de FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Temas:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Temas:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "Especifica el directorio adicional usado por los juegos y ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Plugins:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Plugins:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Otras"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Interfaz:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autoguardado:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autoguardado:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Teclas"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Idioma:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Idioma de la interfaz de ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Buscar actualizaciones:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Frecuencia con la que se buscan actualizaciones"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Buscar ahora"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Nube"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Nube"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Almacenamiento:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Almacenamiento activo"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<ninguno>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Usuario:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Nombre de usuario utilizado para este almacenamiento"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Espacio utilizado:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Espacio utilizado para las partidas guardadas en este almacenamiento"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "кltima sincronizaciѓn:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Cuсndo se ha producido la њltima sincronizaciѓn de partidas guardadas"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Conectar"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"Abrir el asistente de configuraciѓn para habilitar el almacenamiento en lэnea"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Refrescar"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Refrescar la informaciѓn del almacenamiento en lэnea (nombre de usuario y "
"espacio)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Descargar"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Abrir el gestor de descargas"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Habilitar servidor"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Habilitar el servidor local"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Detenido"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Directorio /raэz/:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Especifica los directorios accesibles para el gestor de archivos"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/raэz/:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Puerto del servidor:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1284,19 +1284,19 @@ msgstr ""
"Puerto utilizado por el servidor\n"
"La autentificaciѓn solo es posible con el puerto predeterminado"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Aplicar"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "ЁFallo al cambiar el almacenamiento en lэnea!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Ya se ha habilitado otro almacenamiento en lэnea."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1304,48 +1304,48 @@ msgstr ""
"El tema seleccionado no es compatible con el idioma actual. Debes cambiar el "
"idioma si quieres usar este tema."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "No se puede escribir en el directorio elegido. Selecciona otro."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Selecciona el directorio de temas"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Selecciona el directorio adicional"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Selecciona el directorio de plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Selecciona el directorio /raэz/ para el gestor de archivos"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<ahora>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<nunca>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Detener servidor"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Detener el servidor local"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/eu.po b/po/eu.po
index 0f2d4edc43..9fd8c0357e 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-04 13:27+0000\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Basque <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Joan gora"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -152,7 +152,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -235,7 +235,7 @@ msgstr ""
"Jokoaren hizkuntza. Honek ez du zure ingelesezko bertsioa frantsesera pasako"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<lehenetsia>"
@@ -258,11 +258,11 @@ msgstr "Plataforma:"
msgid "Engine"
msgstr "Motorea"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafikoak"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -275,7 +275,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Ezarpen grafiko globalak baliogabetu"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Soinua"
@@ -288,11 +288,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Soinu ezarpen globalak baliogabetu"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Bolumena"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Bolumena"
@@ -306,7 +306,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Bolumen ezarpen globalak baliogabetu"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -319,7 +319,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "MIDI ezarpen globalak baliogabetu"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -332,11 +332,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "MT-32 ezarpen globalak baliogabetu"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Bide-izenak"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Bideak"
@@ -350,7 +350,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Jokoa:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Gehigarriak:"
@@ -359,44 +359,44 @@ msgstr "Gehigarriak:"
msgid "Specifies path to additional data used by the game"
msgstr "Jokoak erabiltzen duen datu gehigarrien bide-izena"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Gehigarria:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Partida gordeak:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Zure gordetako partidak non gordeko diren zehazten du"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Partida gordeak:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Bat ere ez"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Lehenetsia"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "SoundFont-a aukeratu"
@@ -404,7 +404,7 @@ msgstr "SoundFont-a aukeratu"
msgid "Select additional game directory"
msgstr "Direktorio gehigarria aukeratu"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Partida gordeen direktorioa aukeratu"
@@ -494,7 +494,7 @@ msgstr "Sinua"
msgid "Triangle"
msgstr "Triangelua"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Beste"
@@ -814,8 +814,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Bat ere ez"
@@ -841,79 +841,79 @@ msgstr "ezin izan da pantaila-osoaren ezarpena aldatu"
msgid "the filtering setting could not be changed"
msgstr "ezin izan da pantaila-osoaren ezarpena aldatu"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Modu grafikoa:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderizazioa:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Joko batzuk onarturiko lausotze-modu bereziak"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Pantaila osoa"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "Grafikoak"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Formatu-ratioaren zuzenketa"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "320x200 jokoentzako formatu-ratioa zuzendu"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Gogoko gailua:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musika gailua:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Gogoko soinu txartel edo emuladorea zein den ezartzen du"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Irteerako soinu txartel edo emuladorea ezartzen du"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Gail. gogokoa:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musika gailua:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emuladorea:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib musikarako hainbat jokotan erabiltzen da"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Irteera maizt.:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -921,64 +921,64 @@ msgstr ""
"Balio altuagoek soinu kalitate hobea ezartzen dute, baina baliteke zure "
"soinu-txartela bateragarria ez izatea"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM gailua:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Defektuzko soinu txartela ezartzen du General MIDI irteerarako"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Ez erabili General MIDI musika"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Erabilgarri dagoen lehen gailua erabili"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"Zenbait soinu txartel bateragarriak dira SoundFont-ekin, FluidSynth eta "
"Timidity besteak beste"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "AdLib/MIDI modua"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Soinua sortzerakoan MIDI eta AdLib erabili"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI irabazia:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 gailua:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Roland MT-32/LAPC1/CM32l/CM64 irteerarako defektuzko soinu txartela ezartzen "
"du"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Benetako Roland MT-32 (GM emulazio gabe)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -986,16 +986,16 @@ msgstr ""
"Markatu ordenagailura konektaturiko Roland-ekin bateragarria den soinu-"
"gailua erabiltzeko"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Benetako Roland MT-32 (GM emulazio gabe)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS Gailua (gaitu MT-32 bihurketak)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1003,289 +1003,289 @@ msgstr ""
"Markatu Roland GS gailu batean MT-32 bat emulatzea ahalbidetzen "
"dutenbihurketak gaitzeko"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Ez erabili Roland MT-32 musika"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Testu eta ahotsa:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Ahotsa"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Azpitituluak"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Biak"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Azpitit. abiadura:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Testu eta ahotsa:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Ahots."
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Azp."
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Biak"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Ahotsak erreproduzitu eta azpitituluak erakutsi"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Azpit. abiadura:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musika:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musika:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Mututu dena"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Efektuak:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Soinu efektu berezien bolumena"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Efektuak:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Ahotsak:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Ahotsak:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth Ezarpenak"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Gaiak:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Gaiak:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Joko guztiek edo ScummVM-k darabilten datu gehigarrien bide-izena ezartzen du"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Pluginak:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Pluginak:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Beste"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Gaia:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Interfazea:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autogordetzea:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autogordetzea:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Teklak"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Hizkuntza:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "ScummVM interfazearen hizkuntza"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Erabiltzaile-izena:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
#, fuzzy
msgid "Download"
msgstr "Behera"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
#, fuzzy
msgid "Not running"
msgstr "Jokoa exekutatzean errorea:"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
#, fuzzy
msgid "/root/ Path:"
msgstr "Gehigarriak:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
#, fuzzy
msgid "Specifies which directory the Files Manager can access"
msgstr "Zure gordetako partidak non gordeko diren zehazten du"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
#, fuzzy
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Gehigarriak:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
#, fuzzy
msgid "Server's port:"
msgstr "Zerbitzaria:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
#, fuzzy
msgid "Failed to change cloud storage!"
msgstr "Ezin izan da jokoa gorde"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1293,51 +1293,51 @@ msgstr ""
"Aukeraturiko gaia ez da zure hizkuntzarekin bateragarria. Gai hau erabili "
"nahi baduzu, aurretik beste hizkuntza batera pasa behar duzu."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Aukeraturiko direktorioan ezin da idatzi. Mesedez, aukeratu beste bat."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Gaien direktorioa aukeratu"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Fitxategi gehigarrien direktorioa aukeratu"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Pluginen direktorioa aukeratu"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
#, fuzzy
msgid "Select directory for Files Manager /root/"
msgstr "Fitxategi gehigarrien direktorioa aukeratu"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
#, fuzzy
msgid "<never>"
msgstr "Inoiz ez"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
#, fuzzy
msgid "Stop server"
msgstr "Zerbitzaria:"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 167fb57fe3..24648b167a 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-06 16:03+0000\n"
"Last-Translator: Timo Mikkolainen <tmikkola@gmail.com>\n"
"Language-Team: Finnish <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Siirry ylіs"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -154,7 +154,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -240,7 +240,7 @@ msgstr ""
"englanninkieliseksi"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<oletus>"
@@ -263,11 +263,11 @@ msgstr "Alusta:"
msgid "Engine"
msgstr "Pelimoottori"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafiikka"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -280,7 +280,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Ohita globaalit grafiikka-asetukset"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Ффni"
@@ -293,11 +293,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Ohita globaalit ффniasetukset"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Voimakkuus"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Voimakkuus"
@@ -311,7 +311,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Ohita globaalit ффnenvoimakkuusasetukset"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -324,7 +324,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Ohita globaalit MIDI-asetukset"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -337,11 +337,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Ohita globaalit MT-32 asetukset"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Polut"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Polut"
@@ -355,7 +355,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Pelin polku:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Lisфkansio:"
@@ -364,44 +364,44 @@ msgstr "Lisфkansio:"
msgid "Specifies path to additional data used by the game"
msgstr "Mффrittфф polun lisфtiedostoihin joita peli mahdollisesti kфyttфф"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Lisфkansio:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Tallennuskansio:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Mффrittфф polun pelitallennuksille"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Tallennuskansio:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ei mффritelty"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Oletus"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Valitse SoundFont"
@@ -409,7 +409,7 @@ msgstr "Valitse SoundFont"
msgid "Select additional game directory"
msgstr "Valitse lisфhakemisto pelille"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Valitse hakemisto pelitallennuksille"
@@ -501,7 +501,7 @@ msgstr "Sini"
msgid "Triangle"
msgstr "Kolmio"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Muut"
@@ -821,8 +821,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ei kфytіssф"
@@ -847,80 +847,80 @@ msgstr "kokoruututilaa ei voitu muuttaa"
msgid "the filtering setting could not be changed"
msgstr "Suodatusasetusta ei voitu muuttaa"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafiikkatila:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderіintitila:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Erityiset dithering asetukset joita jotkut pelit tukevat"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Kokoruututila"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Suodata grafiikka"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Kфytф bilineaarista suodatinta grafiikan skaalauksessa"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Kuvasuhteen korjaus"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Korjaa kuvasuhde 320x200 peleille"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Ensisijainen laite:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musiikkilaite:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
"Mффrittфф ффnilaitteen tai ффnikorttiemulaattorin jota ensisijaisesti tulisi "
"kфyttфф"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Mффrittфф ффnikortin tai ффnikorttia emuloivan ohjelmiston"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Ensisijainen:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musiikkilaite:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emulaattori:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLibiф kфytetффn monien pelien musiikeissa"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Taajuus:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -928,61 +928,61 @@ msgstr ""
"Isommat taajuudet merkitsevфt parempaa ффnenlaatua, mutta ффnikorttisi ei "
"ehkф tue niitф"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM laite:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Mффrittфф oletuksena kфytettфvфn ффnilaitteen General MIDIlle"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Фlф kфytф General MIDIф musiikissa"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Kфytф ensimmфistф laitetta"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"Jotkut ффnikortit tukevat ффnifonttia (SoundFont), FluidSynth ja Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Yhdistetty AdLib/MIDI tila"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Kфytф sekф MIDIф ettф Adlibiф ффnentuotantoon"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDIn ффnilisфys:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 laite:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr "Mффrittфф oletusффnilaitteen Roland MT-32/LAPC1/CM32l/CM64:n kфyttііn"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Aito Roland MT-32 (ei GM emulointia)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -990,16 +990,16 @@ msgstr ""
"Valitse jos haluat kфyttфф aitoa Roland-yhteensopivaa laittetta joka on "
"kytketty tietokoneeseesi"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Aito Roland MT-32 (ei GM emulointia)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS Laite (aktivoi MT-32 mappaukset)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1007,265 +1007,265 @@ msgstr ""
"Valitse jos haluat kфyttфф patch mappingia MT-32:n emulointiin Roland GS "
"laitteella"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Фlф kфytф Roland MT-32 musiikkia"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Tekstitys ja puhe:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Puhe"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Tekstitys"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Molemmat"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Tekstityksen nopeus:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Tekstitys ja puhe:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Puhe"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Tekstit"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Molemmat"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Nфytф tekstitys ja kфytф puhetta"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Tekstityksen nopeus:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musiikki:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musiikki:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Vaimenna"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Ффniefektit:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Erikoisefektit"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Ффniefektit:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Puhe:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Puhe:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth asetukset"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Teemojen polku:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Teemojen polku:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Mффrittфф polun, jossa on lisфtiedostoja joita ScummVM tai kaikki pelit "
"kфyttфvфt"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Pluginien sijainti:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Pluginien sijainti:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Muut"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Teema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI renderіijф:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autom. tallennus:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autom. tallennus:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Nфppфimet"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "ScummVM:n kieli:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "ScummVM kфyttіliittymфn kieli"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Pфivitystarkistus:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Kuinka usein tarkistetaan onko ScummVM:ффn pфivityksiф"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Tarkista nyt"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Pilvi"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Pilvi"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Tallennustila:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Aktiivinen pilvitallennus"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<tyhjф>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Kфyttфjфnimi:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Tallennustilan kфyttфjфnimi"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Kфytetty tila:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "ScummVM:n pelitallennusten kфyttфmф tila tallennustilassa"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Viimeisin synkronointi:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Milloin pelitallennukset viimeksi synkronoitiin tфhфn tallennustilaan"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Yhdistф"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Avaa velhodialogi pilvitilan tiliin kirjautumiseen"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Pфivitф"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr "Pфivitф tфmфnhetkiset pilvitilan tiedot (kфyttфjфnimi ja kфyttіaste)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Lataa"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Avaa lataustenhallintadialogi"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Kфynnistф palvelin"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Kфynnistф paikallinen webpalvelin"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Ei kфynnissф"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/root/-polku:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Mффrittфф hakemiston johon tiedostonhallinnalla on pффsy"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/root/-polku:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Palvelimen portti:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1273,19 +1273,19 @@ msgstr ""
"Palvelimen kфyttфmф portti\n"
"Autentikaatio palvelimella on mahdollista vain vakioportilla"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Kфytф"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Pilvitallennustilan vaihtaminen epфonnistui!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Toinen pilvitila on jo aktiivinen."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1293,48 +1293,48 @@ msgstr ""
"Valitsemasi teema ei tue nykyistф valitsemaasi kieltф. Vaihda kieli ensin, "
"ja yritф sitten uudelleen."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Valittuun hakemistoon ei voi kirjoittaa. Valitse toinen hakemisto."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Valitse hakemisto kфyttіliittymфn teemoille"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Valitse hakemisto lisфtiedostoille"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Valitse hakemisto plugineille"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Valitse /root/ hakemisto tiedostonhallinnalle"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu tavua"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<nyt>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<ei koskaan>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Pysфytф palvelin"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Pysфytф paikallinen webpalvelin"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/fr_FR.po b/po/fr_FR.po
index d6edf7f3f2..cadbc1a594 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.8.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-02-04 10:14+0000\n"
"Last-Translator: Purple T <zeonk@hotmail.com>\n"
-"Language-Team: French "
-"<https://translations.scummvm.org/projects/scummvm/scummvm/fr/>\n"
+"Language-Team: French <https://translations.scummvm.org/projects/scummvm/"
+"scummvm/fr/>\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
@@ -58,7 +58,7 @@ msgstr "Remonter"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgstr ""
"espagnole du jeu."
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<dщfaut>"
@@ -264,11 +264,11 @@ msgstr "Systшme :"
msgid "Engine"
msgstr "Moteur"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Graphique"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Rщglages spщcifiques р ce jeu"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Audio"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Rщglages spщcifiques р ce jeu"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volume"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volume"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Rщglages spщcifiques р ce jeu"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Rщglages spщcifiques р ce jeu"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Rщglages spщcifiques р ce jeu"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Chemins"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Chemins"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Chemin du Jeu :"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Extra :"
@@ -366,44 +366,44 @@ msgid "Specifies path to additional data used by the game"
msgstr ""
"Dщfinie un chemin vers des donnщes supplщmentaires utilisщes par le jeu"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Extra :"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Sauvegardes :"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Dщfinie l'emplacement oљ les fichiers de sauvegarde sont crщщs"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Sauvegardes :"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Aucun"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Dщfaut"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Choisir une banque de sons"
@@ -411,7 +411,7 @@ msgstr "Choisir une banque de sons"
msgid "Select additional game directory"
msgstr "Sщlectionner un rщpertoire supplщmentaire"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Sщlectionner le rщpertoire pour les sauvegardes"
@@ -504,7 +504,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Triangle"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Divers"
@@ -826,8 +826,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Aucune"
@@ -852,82 +852,82 @@ msgstr "le mode plein щcran n'a pu ъtre changщ"
msgid "the filtering setting could not be changed"
msgstr "le mode de filtrage n'a pu ъtre changщ"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Mode graphique :"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Mode de rendu :"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Mode spщcial de tramage supportщ par certains jeux"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Plein щcran"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtrer les graphiques"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
"Utiliser une interpolation bi-linщaire lors du changement d'щchelle des "
"graphiques"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correction du rapport d'aspect"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corrige le rapport d'aspect pour les jeux en 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Sortie Prщfщrщe :"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Sortie Audio :"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
"Spщcifie le pщriphщrique de sortie audio ou l'щmulateur de carte audio "
"prщfщrщ"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Spщcifie le pщriphщrique de sortie audio ou l'щmulateur de carte audio"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Sortie Prщfщrщe :"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Sortie Audio :"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Щmulateur AdLib :"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib est utilisщ pour la musique dans de nombreux jeux"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Frщquence :"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -935,64 +935,64 @@ msgstr ""
"Une valeur plus щlevщe donne une meilleure qualitщ audio mais peut ne pas "
"ъtre supportщe par votre carte son"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Sortie GM :"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Spщcifie le pщriphщrique audio par dщfaut pour la sortie General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Ne pas utiliser la musique General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Utiliser le premier pщriphщrique disponible"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "Banque de sons :"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"La banque de sons (SoundFont) est utilisщe par certaines cartes audio, "
"FluidSynth et Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont :"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Mode mixte AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Utiliser р la fois MIDI et AdLib"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Gain MIDI :"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Sortie MT-32 :"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Spщcifie le pщriphщrique audio par dщfaut pour la sortie Roland MT-32/LAPC1/"
"CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 exacte (dщsactive l'щmulation GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -1000,16 +1000,16 @@ msgstr ""
"Vщrifie si vous voulez utiliser un pщriphщrique audio compatible Roland "
"connectщ р l'ordinateur"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 exacte (pas d'щmu GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS (active le mappage MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1017,267 +1017,267 @@ msgstr ""
"Utilisez cette option si vous voulez activez le mappage р la volщe pour une "
"щmulation MT-32 sur un appareil Roland GS."
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Ne pas utiliser la musique Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Dialogue :"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Voix"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Sous-titres"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Les deux"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Vitesse des ST :"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Dialogue :"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Voix"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Subs"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "V&S"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Affiche les sous-titres et joue les dialogues audio"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Vitesse des ST :"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Volume Musique :"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musique :"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Silence"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Volume Bruitage :"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volume des effets spщciaux sonores"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Bruitage :"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Volume Dialogues :"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Dialogues :"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Paramшtres FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Thшmes :"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Thшmes :"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Spщcifie un chemin vers des donnщes supplщmentaires utilisщes par tous les "
"jeux ou ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Plugins :"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Plugins :"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Divers"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Thшme :"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Interface :"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Sauvegarde auto :"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Sauvegarde :"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Touches"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Langue :"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Langue de l'interface graphique de ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Vщrif. mises р jour :"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Frщquence des vщrifications"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Maintenant"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Nuage"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Nuage"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Stockage :"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Service de stockage actif"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<aucun>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Nom d'utilisateur :"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Nom d'utilisateur pour ce service"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Espace utilisщ :"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Espace utilisщ par les sauvegardes de ScummVM sur ce stockage"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Synchronisщ :"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Quand la derniшre synchronisation des sauvegardes a eu lieu"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Se connecter"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Ouvre l'assistant de connexion au compte de stockage en ligne"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Rafraюchir"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Rafraюchir les informations (nom d'utilisateur et espace utilisщ) pour le "
"service de stockage actif"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Tщlщcharger"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Ouvrir le gestionnaire de tщlщchargement"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Dщmarrer serveur"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Dщmarre le serveur web local"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Arrъtщ"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Chemin /racine/ :"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Indique le rщpertoire auquel le gestionnaire de fichier peut accщder"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/racine/ :"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Port :"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1285,19 +1285,19 @@ msgstr ""
"Port utilisщ par le serveur\n"
"Authentification avec le serveur n'est disponible qu'avec le port par dщfaut"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Appliquer"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Echec du changement de service de stockage !"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Un autre service de stockage est dщjр actif."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1305,50 +1305,50 @@ msgstr ""
"Le thшme que vous avez sщlectionnщ ne support pas la langue franчaise. Si "
"vous voulez l'utiliser vous devez d'abord changer de langue."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
"Le rщpertoire sщlectionnщ est verrouillщ en щcriture. Sщlectionnez un autre "
"rщpertoire."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Sщlectionner le rщpertoire des thшmes d'interface"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Sщlectionner le rщpertoire pour les fichiers supplщmentaires"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Sщlectionner le rщpertoire des plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Indique le rщpertoire pour la /racine/ du Gestionnaire de Fichiers"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu octets"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<maintenant>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<jamais>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Arrъter serveur"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Arrъter le serveur"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/gl_ES.po b/po/gl_ES.po
index a187d328f8..4b3fca1351 100644
--- a/po/gl_ES.po
+++ b/po/gl_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.8.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-11-28 15:51+0000\n"
"Last-Translator: Santiago G. Sanz <santiagogarciasanz@gmail.com>\n"
"Language-Team: Galician <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Arriba"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -239,7 +239,7 @@ msgid ""
msgstr "Idioma do xogo. Non converterс a versiѓn galega do xogo en inglesa"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<por defecto>"
@@ -262,11 +262,11 @@ msgstr "Plataforma:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grсficos"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Efectos grсficos"
@@ -279,7 +279,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Anular a configuraciѓn dos grсficos"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Son"
@@ -292,11 +292,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Anular a configuraciѓn do son"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volume"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volume"
@@ -310,7 +310,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Anular a configuraciѓn do volume"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -323,7 +323,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Anular a configuraciѓn de MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -336,11 +336,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Anular a configuraciѓn de MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Camiёos"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Camiёos"
@@ -354,7 +354,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Camiёo do xogo:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Camiёo adicional:"
@@ -363,44 +363,44 @@ msgstr "Camiёo adicional:"
msgid "Specifies path to additional data used by the game"
msgstr "Especifica o camiёo dos datos adicionais usados no xogo"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Camiёo adicional:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Camiёo de gardado:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Especifica o lugar dos ficheiros de gardado"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Camiёo de gardado:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ningњn"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Predefinido"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Seleccionar SoundFont"
@@ -408,7 +408,7 @@ msgstr "Seleccionar SoundFont"
msgid "Select additional game directory"
msgstr "Selecciona un directorio con datos adicionais"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Selecciona un directorio para ficheiros de gardado"
@@ -501,7 +501,7 @@ msgstr "Seno"
msgid "Triangle"
msgstr "Triсngulo"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Misc."
@@ -820,8 +820,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ningunha"
@@ -846,78 +846,78 @@ msgstr "non se puido cambiar a configuraciѓn de pantalla completa."
msgid "the filtering setting could not be changed"
msgstr "non se puido cambiar a configuraciѓn de filtrado."
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grсficos:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Procesamento:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Modos de interpolaciѓn de cores compatibles con algњns xogos"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Pantalla completa"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtrar grсficos"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Empregar filtrado linear ao escalar grсficos"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correcciѓn de proporciѓn"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corrixir a proporciѓn para os xogos en 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Dispositivo preferido:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Dispositivo de mњsica:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Especifica o dispositivo ou emulador de tarxeta de son preferido"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Especifica o dispositivo ou emulador de tarxeta de son de saэda"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Disp. preferido:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Disp. mњsica:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emulador de AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "Moitos xogos empregan AdLib para a mњsica"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Taxa de saэda:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -925,80 +925,80 @@ msgstr ""
"A maior valor, maior calidade do son, mais talvez non sexa compatible coa "
"tarxeta"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Dispositivo de GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr ""
"Especifica o dispositivo de son por defecto para a saэda de General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Non empregar mњsica en General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Empregar o primeiro dispositivo dispoёible"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont щ compatible con algunhas tarxetas de son, FluidSynth e Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Modo AdLib/MIDI mixto"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Empregar xeraciѓn de son MIDI e mсis AdLib"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Ganancia de MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Dispositivo de MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Especifica o dispositivo por defecto para a saэda de Roland MT-32/LAPC1/"
"CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 verdadeiro (sen emulaciѓn de GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
msgstr ""
"Marcar para empregar o hardware compatible con Roland conectado ao sistema"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 (sen emulaciѓn de GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Dispositivo Roland GS (activar atribuciѓn MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1006,270 +1006,270 @@ msgstr ""
"Marcar para activar a atribuciѓn de parches e emular MT-32 nun dispositivo "
"Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Non empregar mњsica en Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Texto e voz:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Voz"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Subtэtulos"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Ambos"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Velocidade dos subtэtulos:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Texto e voz:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Voz"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Subs"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Ambos"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Mostrar os subtэtulos e reproducir as voces"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Velocidade subs:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Volume de mњsica:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Volume mњsica:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Silenciar todo"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Volume de efectos:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volume dos efectos de son"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Volume efectos:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Volume de voz:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Volume voz:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Configuraciѓn de FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Camiёo do tema:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Camiёo tema:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Especificar o camiёo dos datos adicionais de todos os xogos ou de ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Camiёo dos complementos:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Camiёo complementos:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Misc."
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Procesamento da interfaz:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autogardado:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autogardado:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Teclas"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Idioma de interfaz:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Idioma da interfaz de ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Comprobaciѓn de actualizaciѓns:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Frecuencia de comprobaciѓn das actualizaciѓns de ScummVM"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Comprobar agora"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Nube"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Nube"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Almacenamento:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Almacenamento na nube activo"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<ningњn>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Nome de usuario:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Nome de usuario empregado por este almacenamento"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Espazo empregado:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
"Espazo empregado polas partidas gardadas de ScummVM neste almacenamento."
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "кltima sincronizaciѓn:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
"O momento da њltima sincronizaciѓn das partidas gardadas neste almacenamento."
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Conectar"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"Abre o diсlogo do asistente para conectar coa tњa conta de almacenamento na "
"nube."
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Actualizar"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Actualiza a informaciѓn do almacenamento na nube actual (nome de usuario e "
"espazo empregado)."
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Descargar"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Abre o diсlogo do xestor de descargas."
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Executar servidor"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Executar servidor web local"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Non se estс a executar"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Camiёo de /root/:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Especifica o directorio de acceso do xestor de ficheiros."
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Camiёo de /root/:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Porto do servidor:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1277,19 +1277,19 @@ msgstr ""
"O porto empregado polo servidor.\n"
"Autenticaciѓn non dispoёible con portos non predeterminados."
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Aplicar"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Erro ao cambiar o almacenamento na nube!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Xa estс activo outro almacenamento na nube."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1297,48 +1297,48 @@ msgstr ""
"O tema seleccionado non щ compatible co idioma actual. Para empregar o tema, "
"deberсs cambiar antes o idioma da interfaz."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Non щ posible escribir no directorio elixido. Selecciona outro."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Seleccionar directorio para temas de interfaz"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Seleccionar directorio para ficheiros adicionais"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Seleccionar directorio para complementos"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Seleccionar directorio para /root/ de xestor de ficheiros"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<agora mesmo>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<nunca>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Deter servidor"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Deter servidor web local"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 8dcf15efec..c82ee1fece 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.3.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-08 06:09+0000\n"
"Last-Translator: George Kormendi <grubycza@hotmail.com>\n"
"Language-Team: Hungarian <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Feljebb"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -239,7 +239,7 @@ msgstr ""
"A jсtщk nyelve. Ne сllэtsd сt a pl. Spanyol nyelvћ jсtщkodat Angol nyelvre"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<alapщrtelmezett>"
@@ -262,11 +262,11 @@ msgstr "Platform:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafika"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -279,7 +279,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Globсlis grafikai beсllэtсsok felќlbэrсlсsa"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Audiѓ"
@@ -292,11 +292,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Globсlis audiѓ beсllэtсsok felќlbэrсlсsa"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Hangerѕ"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Hangerѕ"
@@ -310,7 +310,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Globсlis hangerѕbeсllэtсsok felќlbэrсlсsa"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -323,7 +323,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Globсlis MIDI beсllэtсsok felќlbэrсlсsa"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -336,11 +336,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Globсlis MT-32 beсllэtсsok felќlbэrсlсsa"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Mappсk"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Mappсk"
@@ -354,7 +354,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Jсtщk Mappa:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Extra Mappa:"
@@ -363,44 +363,44 @@ msgstr "Extra Mappa:"
msgid "Specifies path to additional data used by the game"
msgstr "Mappa kivсlasztсs a jсtщkok kiegщszэtѕ fсjljaihoz"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Extra Mappa:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Mentщs Mappa:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Jсtщkmentщsek helyщnek meghatсrozсsa"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Mentщs Mappa:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Nincs"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Alapщrtelmezett"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "SoundFont kivсlasztсs"
@@ -408,7 +408,7 @@ msgstr "SoundFont kivсlasztсs"
msgid "Select additional game directory"
msgstr "Vсlassz mappсt a jсtщk kiegщszэtѕkhіz"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Vсlaszz jсtщkmentщseknek mappсt"
@@ -500,7 +500,7 @@ msgstr "Szэnusz"
msgid "Triangle"
msgstr "Hсromszіg"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Vegyes"
@@ -818,8 +818,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Nincs"
@@ -844,139 +844,139 @@ msgstr "a teljeskщpernyѕs beсllэtсs nem vсltozott"
msgid "the filtering setting could not be changed"
msgstr "a szћrщsi beсllэtсst nem lehet megvсltoztatni"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafikus mѓd:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Kirajzolсs mѓd:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Nщhсny jсtщk tсmogatja a speciсlis сrnyalсsi mѓdokat"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Teljeskщpernyѕs mѓd"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Grafika szћrщse"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Lineсris szћrщs hasznсlata a grafika сtmщretezщsщnщl"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Kщpmщretarсny korrekciѓ"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Helyes oldalarсny a 320x200 jсtщkokhoz"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Elsѕdleges eszkіz:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Zene eszkіz:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Elsѕdleges hangeszkіz vagy hang emulсtor beсllэtсsok"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Hangeszkіz vagy hangkсrtya emulсtor beсllэtсsok"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Elsѕdleges eszk.:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Zene eszkіz:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emulсtor:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib meghajtѓt sok jсtщk hasznсlja zenщhez"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Kimeneti rсta:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
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"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM Eszkіz:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Alapщrtelmezett hangeszkіz General MIDI kimenethez"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Ne hasznсlj General MIDI zenщt"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Elsѕ elщrhetѕ eszkіz hasznсlata"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
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"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Vegyes AdLib/MIDI mѓd"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "MIDI щs AdLib hanggenerсtorok hasznсlata"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI erѕsэtщs:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 Eszkіz:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
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"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 Hardver (GM emulсciѓ tiltva)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -984,16 +984,16 @@ msgstr ""
"Jelіld be, ha hardveres Roland-Kompatibilis hangeszkіz van csatlakoztatva a "
"gщpedhez щs hasznсlni akarod"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 Hardver (GM emulсciѓ nincs)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS eszkіz (MT-32 mapping engedщlyezщs)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1001,264 +1001,264 @@ msgstr ""
"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:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Ne hasznсlj Roland MT-32 zenщt"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Szіveg щs beszщd:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Csak beszщd"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Csak felirat"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Mind"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Felirat sebessщg:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Felirat щs beszщd:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Besz"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Text"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Mind"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Hang щs feliratok megjelenэtщse"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Felirat sebessщg:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Zene hangerѕ:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Zene hangerѕ:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "жsszes nщmэtсsa"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "SFX hangerѕ:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Speciсlis hangeffektusok hangereje"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "SFX hangerѕ:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Beszщd hangerѕ:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Beszщd hangerѕ:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth Beсllэtсsa"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Tщma Mappa:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Tщma Mappa:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "Minden jщtщk щs ScummVM kiegщszэtѕ fсjljainak mappсja"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Plugin Mappa:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Plugin Mappa:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Vegyes"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tщma:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI Renderelѕ:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Automentщs:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Automentщs:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Billentyћk"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "GUI nyelve:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "A ScummVM GUI nyelve"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Frissэtщs ellenѕrzщs:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Milyen gyakran ellenѕrizze a ScummVM frissэtщseket"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Ellenѕrzщs most"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Felhѕ"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Felhѕ"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Tсrolѓ:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Aktэv felhѕ tсrolѓ"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<nincs>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Felhasznсlѓ:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Felhasznсlѓnщv ehhez a tсrolѓhoz"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Hasznсlt hely:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "ScummVM mentщsekhez hasznсlt hely ezen a tсrolѓn"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Utolsѓ szinkron:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Amikor az utolsѓ mentщs szinkronizсlсs tіrtщnt ezen a tсrolѓn"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Csatlakozсs"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Csatlakozсs varсzslѓ pсrbeszщdablak megnyitсsa a felhѕtсrolѓ fiѓkodhoz"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Frissэtщs"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Jelenlegi felhѕtсrolѓ informсciѓk frissэtщse (felhasznсlѓnщv щs hasznсlat)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Letіltщs"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Letіltщskezelѕ pсrbeszщdablak megnyitсsa"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Szerver futtatсs"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Helyi webszerver futtatсsa"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Nem fut"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/gyіkщr/ кtvonal:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Meghatсrozza, hogy melyik kіnyvtсrhoz fщrhet hozzс a Fсjlkezelѕ"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/gyіkщr/ кtvonal:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Szerver portja:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1266,19 +1266,19 @@ msgstr ""
"Melyik portot hasznсlja a szerver\n"
"Szerver engedщly nem elщrhetѕ nem alapщrtelmezett porttal"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Alkalmaz"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Felhѕtсrolѓ csere nem sikerќlt!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Egy mсsik felhѕtсrolѓ mсr aktэv."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1286,48 +1286,48 @@ msgstr ""
"A kivсlasztott tщma nem tсmogatja a nyelvedet. Ha hasznсlni akarod ezt a "
"tщmсt, elѕszѕr vсlts сt egy mсsik nyelvre."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "A kivсlasztott mappсba nem lehet эrni, vсlassz egy mсsikat."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "GUI tщma mappa kivсlasztсsa"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Mappa vсlasztсs az extra fсjloknak"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Plugin mappa kivсlasztсsa"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Vсlassz mappсt a Fсjlkezelѕnek /gyіkщr/"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu byte"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<щpp most>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<soha>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Szerver leсllэtсs"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Helyi webszerver leсllэtсsa"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/it_IT.po b/po/it_IT.po
index 01bc1ad9e6..87ea90fcdd 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-06 21:05+0000\n"
"Last-Translator: Walter Agazzi <tag2015@gmail.com>\n"
"Language-Team: Italian <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "Su"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -240,7 +240,7 @@ msgstr ""
"Lingua del gioco. Un gioco inglese non potrр risultare tradotto in italiano"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<predefinito>"
@@ -263,11 +263,11 @@ msgstr "Piattaf.:"
msgid "Engine"
msgstr "Motore"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafica"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Grafica"
@@ -280,7 +280,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Ignora le impostazioni grafiche globali"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Audio"
@@ -293,11 +293,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Ignora le impostazioni audio globali"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volume"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volume"
@@ -311,7 +311,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Ignora le impostazioni globali di volume"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -324,7 +324,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Ignora le impostazioni MIDI globali"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -337,11 +337,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Ignora le impostazioni MT-32 globali"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Percorsi"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Perc"
@@ -355,7 +355,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Perc. gioco:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Percorso extra:"
@@ -364,44 +364,44 @@ msgstr "Percorso extra:"
msgid "Specifies path to additional data used by the game"
msgstr "Specifica il percorso di ulteriori dati usati dal gioco"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Perc. extra:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Salvataggi:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Specifica dove archiviare i salvataggi"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Salvataggi:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Nessuno"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Predefinito"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Seleziona SoundFont"
@@ -409,7 +409,7 @@ msgstr "Seleziona SoundFont"
msgid "Select additional game directory"
msgstr "Seleziona la cartella di gioco aggiuntiva"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Seleziona la cartella dei salvataggi"
@@ -502,7 +502,7 @@ msgstr "Seno"
msgid "Triangle"
msgstr "Triangolo"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Varie"
@@ -826,8 +826,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Nessuno"
@@ -852,80 +852,80 @@ msgstr "impossibile modificare l'impostazione schermo intero"
msgid "the filtering setting could not be changed"
msgstr "Impossibile modificare le impostazioni del filtro video"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Modalitр grafica:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Resa grafica:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Modalitр di resa grafica speciali supportate da alcuni giochi"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Modalitр a schermo intero"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Applica filtro grafico"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Usa filtro lineare per lo scaling della grafica"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correzione proporzioni"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corregge le proporzioni dei giochi con risoluzione a 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Disp. preferito:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Dispositivo audio:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
"Specifica il dispositivo audio o l'emulatore della scheda audio preferiti"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr ""
"Specifica il dispositivo di output audio o l'emulatore della scheda audio"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Disp. preferito:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Disposit. audio:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emulatore AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib ш utilizzato per la musica in molti giochi"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Frequenza:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -933,62 +933,62 @@ msgstr ""
"Valori piљ alti restituiscono un suono di maggior qualitр, ma potrebbero non "
"essere supportati dalla tua scheda audio"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Dispositivo GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Specifica il dispositivo audio predefinito per l'output General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Non utilizzare la musica General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Utilizza il primo dispositivo disponibile"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "SoundFont ш supportato da alcune schede audio, FluidSynth e Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Modalitр mista AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Utilizza generazione di suono sia MIDI che AdLib"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Guadagno MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Disposit. MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Specifica il dispositivo audio predefinito per l'output Roland MT-32/LAPC1/"
"CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 effettivo (disattiva emulazione GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -996,16 +996,16 @@ msgstr ""
"Seleziona se vuoi usare il dispositivo hardware audio compatibile con Roland "
"che ш connesso al tuo computer"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 effettivo (disat.emul.GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Dispositivo Roland GS (attiva mappature MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1013,266 +1013,266 @@ msgstr ""
"Seleziona se vuoi attivare le mappature per emulare un MT-32 su un "
"dispositivo Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Non utilizzare la musica Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Testo e voci:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Voci"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Sottotitoli"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Entrambi"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Velocitр testo:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Testo e voci:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Voci"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Sub"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Entr."
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Mostra i sottotitoli e attiva le voci"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Velocitр testo:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Volume musica:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Volume musica:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Disattiva audio"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Volume effetti:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volume degli effetti sonori"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Volume effetti:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Volume voci:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Volume voci:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Impostazioni FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Percorso temi:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Perc. temi:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "Specifica il percorso di ulteriori dati usati dai giochi o da ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Percorso plugin:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Perc. plugin:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Varie"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Renderer GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autosalva:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Salvataggio automatico:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Tasti"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Lingua GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Lingua dell'interfaccia grafica di ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Controllo aggiornamenti:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Frequenza delle verifiche disponibilitр aggiornamenti"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Controlla ora"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Servizio cloud:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Servizio di archiviazione cloud attivo"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<nessuno>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Nome utente:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Nome utilizzato per questo spazio di archiviazione"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Spazio su disco utilizzato:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Spazio utilizzato dai salvataggi di ScummVM su questo archivio Cloud"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Ultima sincronizzazione:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
"Ultima sincronizzazione dei salvataggi in questo spazio di archiviazione"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Connetti"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Apri assistente di connessione all'account di archiviazione su Cloud"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Aggiorna"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Aggiorna le informazioni del servizio di archiviazione su Cloud (nome utente "
"e spazio utilizzato)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Scarica"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Apri finestra di gestione dei download"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Avvia server"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Avvia webserver locale"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Non avviato"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Percorso base:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Specifica quali cartelle sono accessibili dal File Manager"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Percorso base:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Porta del Server:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1280,19 +1280,19 @@ msgstr ""
"Porta utillizzata dal server\n"
"L'autenticazione non ш disponibile tramite una porta personalizzata"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Applica"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Impossibile cambiare dispositivo di archiviazione Cloud!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Un altro servizio di archiviazione cloud ш giр attivo."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1300,48 +1300,48 @@ msgstr ""
"Il tema che hai selezionato non supporta la lingua attuale. Se vuoi "
"utilizzare questo tema devi prima cambiare la lingua."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "La cartella scelta ш in sola lettura. Si prega di sceglierne un'altra."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Seleziona la cartella dei temi dell'interfaccia"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Seleziona la cartella dei file aggiuntivi"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Seleziona la cartella dei plugin"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Seleziona la cartella di partenza del File Manager"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%lIu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<adesso>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<mai>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Arresta server"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Arresta webserver locale"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 4ecbdfa0a1..f3e43f0c4f 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-26 17:36+0000\n"
"Last-Translator: Einar Johan Trјan Sјmхen <einarjohants@gmail.com>\n"
"Language-Team: Norwegian Bokmхl <https://translations.scummvm.org/projects/"
@@ -59,7 +59,7 @@ msgstr "Oppover"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -156,7 +156,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -242,7 +242,7 @@ msgstr ""
"versjon"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<standard>"
@@ -265,11 +265,11 @@ msgstr "Plattform:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafikk"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -282,7 +282,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Overstyr globale grafikkinstillinger"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Lyd"
@@ -295,11 +295,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Overstyr globale lydinstillinger"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volum"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volum"
@@ -313,7 +313,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Overstyr globale voluminstillinger"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -326,7 +326,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Overstyr globale MIDI-instillinger"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -339,11 +339,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Overstyr globale MT-32-instillinger"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Sti"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Sti"
@@ -357,7 +357,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Spillsti:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Ekstrasti:"
@@ -366,44 +366,44 @@ msgstr "Ekstrasti:"
msgid "Specifies path to additional data used by the game"
msgstr "Bestemmer sti til ytterligere data brukt av spillet"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Ekstrasti:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Lagringssti:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Bestemmer sti til lagrede spill"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Lagringssti:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ingen"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Standard"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Velg SoundFont"
@@ -411,7 +411,7 @@ msgstr "Velg SoundFont"
msgid "Select additional game directory"
msgstr "Velg mappe med ytterligere data"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Velg mappe for lagrede spill"
@@ -503,7 +503,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Trekant"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Diverse"
@@ -823,8 +823,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ingen"
@@ -849,78 +849,78 @@ msgstr "fullskjermsinnstillingen kunne ikke endres"
msgid "the filtering setting could not be changed"
msgstr "filterinnstillingen kunne ikke endres"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafikkmodus:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Tegnemodus:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Spesiel dithering-modus stјttet av enkelte spill"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Fullskjermsmodus"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtrer grafikk"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Aspekt-rate korrigering"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Korriger aspekt-rate for 320x200-spill"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Foretrukket enhet:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musikkenhet:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Velger foretrukket lydenhet eller lydkort-emulator"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Velger ut-lydenhet eller lydkortemulator"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Foretrukket enh.:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musikkenhet:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib-emulator:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib brukes til musikk i mange spill"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Utrate:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -928,60 +928,60 @@ msgstr ""
"Hјyere verdier gir bedre lydkvalitet, men stјttes kanskje ikke av ditt "
"lydkort"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM-enhet:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Velger standard lydenhet for General MIDI-utdata"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Ikke bruk General MIDI-musikk"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Bruk fјrste tilgjengelige enhet"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "SoundFont stјttes ikke av enkelte lydkort, FluidSynth og Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Mikset AdLib/MIDI-modus"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Bruk bхde MIDI- og AdLib- lydgenerering"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI gain:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 Enhet:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr "Velger standard lydenhet for Roland MT-32/LAPC1/CM32I/CM64-avspilling"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Ekte Roland MT-32 (deaktiver GM-emulering)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -989,16 +989,16 @@ msgstr ""
"Velg hvis du har et ekte Roland-kompatible lydkort tilkoblet maskinen, og "
"vil bruke dette"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Ekte Roland MT-32 (deaktiver GM-emulering)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS Modus (aktiver MT32-mapping)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1006,263 +1006,263 @@ msgstr ""
"Aktiver hvis du vil slх pх patch mappinger for х emulere en MT-32 eller "
"Roland GS enhet"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Ikke bruk Roland MT-32-musikk"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Tekst og Tale:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Tale"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Undertekster"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Begge"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Teksthastighet:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Tekst og Tale:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Tale"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Tekst"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Begge"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Vis undertekster, og spill av tale"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Underteksthastighet:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musikkvolum:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musikkvolum:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Demp alle"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Lydeffektvolum:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volum for spesielle lydeffekter"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Lydeffektvolum:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Talevolum:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Talevolum:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth-instillinger"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Temasti:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Temasti:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "Velger sti for ytterligere data brukt av alle spill eller ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Pluginsti:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Pluginsti:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Div"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI-tegner:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autolagre:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autolagre:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Taster"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "GUI-sprхk:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Sprхk i ScummVM-GUIet"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Oppdateringssjekk:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Hvor ofte det skal sjekkes for ScummVM-oppdateringer"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Sjekk nх"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Sky"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Sky"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Lagring:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Aktiv skylagring"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<ingen>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Brukernavn:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Brukernavn for denne lagringsmхten"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Brukt plass:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Plass brukt av ScummVM's lagrede spill pх denne lagringsmхten"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Forrige synctidspunkt:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Nхr forrige sync av lagrede spill til denne lagringsmхten skjedde"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Koble til"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Хpne veiviserdialog for х koble til skylagringen din"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Oppfrisk"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr "Oppfrisk gjeldende skylagringsinformasjon (brukernavn og bruk)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Last ned"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Хpne nedlastingsbehandlerdialog"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Kjјr server"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Kjјr lokal webserver"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Kjјrer ikke"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/root/ Sti:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Angi mappe som filbehandleren skal ha tilgang til"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/root/ Sti:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Serverport:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1270,19 +1270,19 @@ msgstr ""
"Hvilken port som brukes av serveren\n"
"Autentisering med server stјttes ikke med ikke-standard port"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Klarte ikke х kontakte skylagring!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "En annen skylagring er allerede aktiv."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1290,48 +1290,48 @@ msgstr ""
"Temaet du valgte stјtter ikke det aktive sprхket. Hvis du vil bruke dette "
"temaet, mх du bytte til et annet sprхk fјrst."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Den valgte mappen kan ikke skrives til. Vennligst velg en annen."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Velg mappe for GUI-temaer"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Velg mappe for ytterligere filer"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Velg mappe for plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Velg mappe for filbehandler /root/"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<med en gang>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<aldri>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Stopp server"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Stopp lokal webserver"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 02e90981c7..a966eecb5b 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.9.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-02 18:38+0000\n"
"Last-Translator: Ben Castricum <github@bencastricum.nl>\n"
"Language-Team: Dutch <https://translations.scummvm.org/projects/scummvm/"
@@ -59,7 +59,7 @@ msgstr "Ga omhoog"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -154,7 +154,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -239,7 +239,7 @@ msgstr ""
"De taal van het spel. Dit verandert een Engels spel niet naar een Nederlandse"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<standaard>"
@@ -262,11 +262,11 @@ msgstr "Platform:"
msgid "Engine"
msgstr "Engine"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Beeld"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -279,7 +279,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Negeer algemene grafische instellingen"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Geluid"
@@ -292,11 +292,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Negeer algemene audio instellingen"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volume"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volume"
@@ -310,7 +310,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Negeer algemene volume instellingen"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -323,7 +323,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Negeer algemene MIDI instellingen"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -336,11 +336,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Negeer algemene MT-32 instellingen"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Paden"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Paden"
@@ -354,7 +354,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Spel Pad:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Extra Pad:"
@@ -363,44 +363,44 @@ msgstr "Extra Pad:"
msgid "Specifies path to additional data used by the game"
msgstr "Specificeer pad naar additionele data voor het spel"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Extra Pad:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Bewaar Pad:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Bepaalt waar opgeslagen spellen worden bewaard"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Bewaar Pad:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Geen"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Standaard"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Selecteer SoundFont"
@@ -408,7 +408,7 @@ msgstr "Selecteer SoundFont"
msgid "Select additional game directory"
msgstr "Selecteer additionele speldatamap"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Selecteer map voor opgeslagen spellen"
@@ -501,7 +501,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Driehoek"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Overig"
@@ -825,8 +825,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Geen"
@@ -851,78 +851,78 @@ msgstr "de volledig-scherminstelling kon niet veranderd worden"
msgid "the filtering setting could not be changed"
msgstr "de filterinstelling kon niet veranderd worden"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafische modus:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Render modus:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Speciale ditheringmodi die door sommige games ondersteund worden"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Volledig-scherm modus"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filter afbeeldingen"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Gebruik lineair filteren tijdens het schalen van afbeeldingen"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Pixelverhoudingcorrectie"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corrigeer de pixelverhouding voor 320x200 spellen"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Voorkeursapparaat:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Muziekapparaat:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Specificeert het voorkeurs geluidsapparaat of geluidskaartemulator"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Specificeert geluidsapparaat of geluidskaartemulator"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Voorkeursapparaat:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Muziekapparaat:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emulator:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib word in vele spelen voor muziek gebruikt"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Output snelheid:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -930,63 +930,63 @@ msgstr ""
"Hogere waarden geven betere geluidskwaliteit maar worden mogelijk niet "
"ondersteund door uw geluidskaart"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM Apparaat:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Specificeert het standaard geluidsapparaat voor General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Geen General MIDI muziek gebruiken"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Gebruik eerst beschikbare apparaat"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont wordt ondersteund door FluidSynth, Timidity en sommige "
"geluidskaarten"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Gemengde AdLib/MIDI modus"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Gebruik zowel MIDI als AdLib geluid"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI versterking:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 Apparaat:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Specificeert het standaard geluidsapparaat voor Roland MT-32/LAPC1/CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Waarheidsgetrouwe Roland MT-32 (GM emulatie uitschakelen)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -994,16 +994,16 @@ msgstr ""
"Selecteer als u een hardware Roland-compatible geluidsapparaat gekoppeld aan "
"uw computer wilt gebruiken"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Echte Roland MT-32 (geen GM emulatie)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS Device (met MT-32 mappings)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1011,265 +1011,265 @@ msgstr ""
"Selecteer dit als u patchmappings wilt om een MT-32 op een Roland GS "
"apparaat te emuleren"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Geen Roland MT-32 muziek gebruiken"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Spraak en/of tekst:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Spraak"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Tekst"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Beide"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Snelheid tekst:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Spraak en/of text:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Sprk"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Text"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Beide"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Toon tekst en speel spraak af"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Snelheid text:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Muziek volume:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Muziek volume:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Alles Dempen"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "SFX volume:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volume voor speciale geluidseffecten"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "SFX volume:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Spraak volume:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Spraak volume:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth Instellingen"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Thema Pad:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Thema Pad:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Specificeert het pad for aanvullende data voor ScummVM zelf of de spellen"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Plugins Pad:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Plugins Pad:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Overig"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Thema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI Renderer:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Auto opslaan:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Auto opslaan:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Toetsen"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "GUI Taal:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Taal van de ScummVM GUI"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Update controle:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Hoe vaak checken op ScummVM updates"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Controleer nu"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Cloud"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Opslag:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Actieve cloud opslag"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<geen>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Gebruikersnaam:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Gebruikersnaam gebruikt voor deze opslag"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Gebruikte ruimte:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Ruimte in gebruikt door ScummVM's opgeslagen spellen op deze opslag"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Laatste synchronisatie:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Wanneer de laatste synchronisatie voor deze opslag is geweest"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Verbinden"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"Open de Wizard dialoogvenster voor verbinden met uw cloud opslag account"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Ververs"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr "Ververs de huidige opslag informatie (gebruikersnaam en gebruik)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Download"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Open downloads manager dialoogvenster"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Start server"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Draai lokale webserver"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Draait niet"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/root/ Pad:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Bepaalt welke map de Bestanden Manager gebruiken mag"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/root/ Pad:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Serverport:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1277,19 +1277,19 @@ msgstr ""
"Welke port is gebruikt voor de server\n"
"Auth met server is niet beschikbaar met een niet standaard port"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Toepassen"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Veranderen van cloud opslag mislukt!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Er is al een andere cloud opslag actief."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1297,49 +1297,49 @@ msgstr ""
"Het thema dat u heeft geselecteerd ondersteunt uw gekozen taal niet. Als u "
"dit thema wilt gebruiken dient u eerst een andere taal te selecteren."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
"Er kan niet worden geschreven in de gekozen map. Selecteer a.u.b. een andere."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Selecteer map voor GUI themas"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Selecteer map voor extra bestanden"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Selecteer map voor plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Selecteer map voor Bestanden Manager /root/"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<nu>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<nooit>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Stop server"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Stop lokale webserver"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 9de753a7ef..9c1cafbc23 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-18 18:23+0000\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Norwegian Nynorsk <https://translations.scummvm.org/projects/"
@@ -59,7 +59,7 @@ msgstr "Oppover"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -153,7 +153,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -237,7 +237,7 @@ msgstr ""
"engelsk versjon"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<standard>"
@@ -260,11 +260,11 @@ msgstr "Plattform:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafikk"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -277,7 +277,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Overstyr globale grafikkinstillingar"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Lyd"
@@ -290,11 +290,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Overstyr globale lydinstillingar"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volum"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volum"
@@ -308,7 +308,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Overstyr globale voluminstillingar"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -321,7 +321,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Overstyr globale MIDI-instillingar"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -334,11 +334,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Overstyr globale MT-32-instillingar"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Stiar"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Stiar"
@@ -352,7 +352,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Spelsti:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Ekstrasti:"
@@ -361,44 +361,44 @@ msgstr "Ekstrasti:"
msgid "Specifies path to additional data used by the game"
msgstr "Veljer sti til tilleggsdata nytta av spelet"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Ekstrasti:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Lagringssti:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Veljer kor lagra spel vert lagra"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Lagringssti:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ingen"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Standard"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Vel SoundFont"
@@ -406,7 +406,7 @@ msgstr "Vel SoundFont"
msgid "Select additional game directory"
msgstr "Vel mappe med tileggsdata for spelet"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Vel mappe for lagra spel"
@@ -496,7 +496,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Triangel"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Diverse"
@@ -814,8 +814,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ingen"
@@ -841,79 +841,79 @@ msgstr "Fullskjerminstillinga kunne ikkje endrast"
msgid "the filtering setting could not be changed"
msgstr "Fullskjerminstillinga kunne ikkje endrast"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafikkmodus:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Teiknemodus:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Spesielle dithering-modus som stјttast av nokre spel"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Fullskjermsmodus"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "Grafikk"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Aspekt-korrigering"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Rett opp aspekt for 320x200 spel"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Fјretrukken eining:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musikkeining:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr ""
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr ""
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musikkeining:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib emulator:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib nyttast til musikk i mange spel"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr ""
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -921,60 +921,60 @@ msgstr ""
"Hјgare verdier gir betre lydkvalitet, men stјttast kanskje ikkje av "
"lydkortet ditt"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM Eining:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Veljer standard lydeining for General MIDI avspeling"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Ikkje nytt General MIDI musikk"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Nytt fјrste tilgjengelege eining"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "SoundFont stјttast av enkelte lydkort, FluidSynth og Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Blanda AdLib/MIDI-modus"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Nytt bхe MIDI og AdLib lydskaping"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI gain:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 Eining:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr "Veljer standard lydeining for Roland MT-32/LAPC1/CM32l/CM64 avspeling"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Ekte Roland MT-32 (deaktiver GM-emulering)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -982,303 +982,303 @@ msgstr ""
"Vel om du vil nytte din Roland-kompatible lydeining som du har tilkopla "
"datamaskina di"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Ekte Roland MT-32 (ingen GS-emulering)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr ""
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
msgstr ""
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Ikkje nytt Roland MT-32 musikk"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Tekst og Tale:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Tale"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Teksting"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Begge"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Undertekstfart:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Tekst og Tale:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Tale"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Tekst"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Bхe"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Vis teksting og spel av tale"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Undertekstfart:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musikkvolum:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musikkvolum:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Demp alle"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Lydeffektvolum:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Spesiallydeffekt volum"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Lydeffektvolum:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Talevolum:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Talevolum:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth instillingar"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Temasti:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Temasti:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Pluginsti:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Pluginsti:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Div"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI-teiknar:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autolagre:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autolagre:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Tastar"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "GUI-sprхk:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Sprхk i ScummVM-GUIet"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Brukarnamn:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
#, fuzzy
msgid "Download"
msgstr "Ned"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
#, fuzzy
msgid "Not running"
msgstr "Feil under kјyring av spel:"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
#, fuzzy
msgid "/root/ Path:"
msgstr "Ekstrasti:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
#, fuzzy
msgid "Specifies which directory the Files Manager can access"
msgstr "Veljer kor lagra spel vert lagra"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
#, fuzzy
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Ekstrasti:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
#, fuzzy
msgid "Server's port:"
msgstr "Teinar:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
#, fuzzy
msgid "Failed to change cloud storage!"
msgstr "Klarte ikkje lagre spel"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1286,51 +1286,51 @@ msgstr ""
"Temaet du har valt stјttar ikkje det aktive sprхket. Om du vil nytte dette "
"temaet mх du bytte til eit anna sprхk fјrst."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Den velde mappa kan ikkje skrivast til. Vennlegst vel ein annan."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Vel ei mappe for GUI-tema"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Vel ei mappe for ekstra filer"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Vel ei mappe for plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
#, fuzzy
msgid "Select directory for Files Manager /root/"
msgstr "Vel ei mappe for ekstra filer"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
#, fuzzy
msgid "<never>"
msgstr "Aldri"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
#, fuzzy
msgid "Stop server"
msgstr "Teinar:"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 5385c6a9e6..cc9cf823cd 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-25 12:49+0000\n"
"Last-Translator: RafaГ Rzepecki <divided.mind@gmail.com>\n"
"Language-Team: Polish <https://translations.scummvm.org/projects/scummvm/"
@@ -63,7 +63,7 @@ msgstr "W gѓrъ"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -160,7 +160,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -244,7 +244,7 @@ msgid ""
msgstr "Jъzyk gry. Nie zmieni to hiszpaёskiej wersji gry w angielskБ"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<domyЖlne>"
@@ -267,11 +267,11 @@ msgstr "Platforma:"
msgid "Engine"
msgstr "Silnik"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafika"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Grafika"
@@ -284,7 +284,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "UПyj wГasnych ustawieё grafiki"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "DМwiъk"
@@ -297,11 +297,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "UПyj wГasnych ustawieё dМwiъku"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "GГoЖnoЖц"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "GГoЖnoЖц"
@@ -315,7 +315,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "UПyj wГasnych ustawieё gГoЖnoЖci"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -328,7 +328,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "UПyj wГasnych ustawieё MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -341,11 +341,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "UПyj wГasnych ustawieё MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "ІcieПki"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "ІcieПki"
@@ -359,7 +359,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "ІcieПka gry:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Іc. dodatkѓw:"
@@ -368,44 +368,44 @@ msgstr "Іc. dodatkѓw:"
msgid "Specifies path to additional data used by the game"
msgstr "OkreЖla ЖcieПkъ dodatkowych danych gry"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Іc. dodatkѓw:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "ІcieПka zapisѓw:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "OkreЖla gdzie zapisywaц stan gry"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "ІcieПka zapisѓw:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Brak"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "DomyЖlnie"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Wybierz SoundFont"
@@ -413,7 +413,7 @@ msgstr "Wybierz SoundFont"
msgid "Select additional game directory"
msgstr "Wybierz dodatkowy katalog gry"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Wybierz katalog dla zapisѓw"
@@ -505,7 +505,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "TrѓjkБt"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "RѓПne"
@@ -821,8 +821,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Brak"
@@ -847,78 +847,78 @@ msgstr "nie udaГo siъ zmieniц trybu peГnoekranowego"
msgid "the filtering setting could not be changed"
msgstr "nie udaГo siъ zmieniц trybu filtrowania"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Tryb grafiki:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderer:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Specjalne tryby ditheringu wspierane przez niektѓre gry"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "PeГny ekran"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtrowanie obrazu"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "UПywa filtrowania dwuliniowego przy skalowaniu obrazu"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Korekcja formatu obrazu"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Korekcja formatu obrazu dla gier 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Pref. urzБdzenie:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Urz. muzyczne:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "OkreЖla preferowane urzБdzenie dМwiъkowe lub emulator karty dМwiъkowej"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "OkreЖla wyjЖciowe urzБdzenie dМwiъkowe lub emulator karty dМwiъkowej"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Pref. urzБdzenie:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Urz. muzyczne:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emulator AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib jest uПywany do muzyki w wielu grach"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Czъst. wyj.:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -926,63 +926,63 @@ msgstr ""
"WyПsze wartoЖci dajБ lepszБ jakoЖц dМwiъku, ale mogБ byц nieobsГugiwane "
"przez twojБ kartъ dМwiъkowБ"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "UrzБdzenie GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "OkreЖla domyЖlne urzБdzenie dМwiъkowe dla wyjЖcia General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Nie uПywaj muzyki General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "UПyj pierwszego dostъpnego urzБdzenia"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont jest wspierany przez niektѓre karty dМwiъkowe, FluidSynth i "
"Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Tryb miksowanego AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "UПywaj obu generatorѓw dМwiъku, MIDI i AdLib, jednoczeЖnie"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Wzm. MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "UrzБdzenie MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"OkreЖla domyЖlne urzБdzenie dМwiъku dla wyjЖcia Roland MT-32/LAPC1/CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Prawdziwy Roland MT-32 (wyГБcz emulacjъ GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -990,16 +990,16 @@ msgstr ""
"Zaznacz, jeЖli chcesz uПywaц swojej prawdziwej karty kompatybilnej z Roland "
"podГБczonej do twojego komputera"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Prawdziwy Roland MT-32 (brak emulacji GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland w trybie GS (wГБcz mapowanie MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1007,265 +1007,265 @@ msgstr ""
"Zaznacz, jeЖli chcesz wГБczyц Гatki mapowania pozwalajБce na emulacjъ MT-32 "
"na urzБdzeniu Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Nie uПywaj muzyki Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Tekst i mowa:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Mowa"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Napisy"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Oba"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Prъd. napisѓw:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Tekst i mowa:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Mowa"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Napisy"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Oba"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "WyЖwietlaj napisy i odtwarzaj mowъ"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Prъd. napisѓw:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "GГoЖnoЖц muzyki:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "GГoЖnoЖц muzyki:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Wycisz"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "GГ. efekt. dМw.:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "GГoЖnoЖц efektѓw dМw."
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "GГ. efekt. dМw.:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "GГoЖnoЖц mowy:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "GГoЖnoЖц mowy:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Ustawienia FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "ІcieПka stylu:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "ІcieПka stylu:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "OkreЖla ЖcieПkъ dla dodatkowych danych dla wszystkich gier lub ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "ІcieПka wtyczek:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "ІcieПka wtyczek:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "RѓПne"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Styl:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Renderer interf.:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autozapis:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autozapis:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Klawisze"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Jъzyk interfejsu:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Jъzyk interfejsu ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "SprawdМ aktualizacje:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "CzъstotliwoЖц automatycznego wyszukiwania aktualizacji ScummVM"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "SprawdМ teraz"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Chmura"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Chmura"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Dostawca:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Wybrany dostawca przechowywania w chmurze"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<brak>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Nazwa uПytkownika:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Nazwa uПytkownika w tej usГudze"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "UПywane miejsce:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "IloЖц miejsca zajmowana przez gry zapisane przez ScummVM w tej usГudze"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Ostatnia synchronizacja:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Czas ostatniej synchronizacji zapisanych stanѓw gry z tБ usГugБ"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "PoГБcz"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Otwѓrz asystenta poГБczenia z usГugБ przechowywania danych w chmurze"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "OdЖwieП"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"OdЖwieП informacje o usГudze przechowywania (nazwъ uПytkownika i zajmowane "
"miejsce)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Pobierz"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Otwiera okno dialogowe zarzБdzania pobieraniem"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Uruchom serwer"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Uruchamia lokalny serwer WWW"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Nie uruchomiono"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "ІcieПka bazowa:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "OkreЖla ЖcieПkъ gГѓwnБ dla menedПera plikѓw"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "GГѓwna /:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Port:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1273,19 +1273,19 @@ msgstr ""
"OkreЖla port uПywany do komunikacji z serwerem.\n"
"(Uwierzytelnianie jest dostъpne jedynie na domyЖlnym porcie.)"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Zastosuj"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Nie udaГo siъ zmieniц dostawcy przechowywania!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Inna usГuga przechowywania jest juП aktywna."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1293,48 +1293,48 @@ msgstr ""
"Wybrany styl nie obsГuguje obecnego jъzyka. JeЖli chcesz go uПywaц, zmieё "
"najpierw swѓj jъzyk."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Ten katalog jest zabezpieczony przed zapisem. Wybierz inny."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Wybierz katalog dla stylѓw GUI"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Wybierz katalog dla dodatkowych plikѓw"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Wybierz katalog dla wtyczek"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Wybierz gГѓwny katalog dla menedПera plikѓw"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu B"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<teraz>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<nigdy>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Zatrzymaj serwer"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Zatrzymuje lokalny serwer WWW"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 0459b2227d..a48c742162 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-22 21:50+0000\n"
"Last-Translator: Alexandre Folle de Menezes <afmenez@terra.com.br>\n"
"Language-Team: Portuguese (Brazil) <https://translations.scummvm.org/"
@@ -61,7 +61,7 @@ msgstr "Acima"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -157,7 +157,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgid ""
msgstr "Idioma do jogo. Isto nуo irс passar seu jogo Inglъs para Portuguъs"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<padrуo>"
@@ -265,11 +265,11 @@ msgstr "Sistema:"
msgid "Engine"
msgstr "Examinar"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grсficos"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -282,7 +282,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Sobrepor configuraчуo global de grсficos"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Сudio"
@@ -295,11 +295,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Sobrepor configuraчуo global de сudio"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volume"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volume"
@@ -313,7 +313,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Sobrepor configuraчуo global de volume"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -326,7 +326,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Sobrepor configuraчуo global de MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -339,11 +339,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Sobrepor configuraчуo global de MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Pastas"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Pastas"
@@ -357,7 +357,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Pasta do Jogo:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Pasta de Extras:"
@@ -366,44 +366,44 @@ msgstr "Pasta de Extras:"
msgid "Specifies path to additional data used by the game"
msgstr "Especifique a pasta para dados utilizados no jogo"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Pasta de Extras:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Pasta para Salvar:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Especifique onde guardar seus jogos salvos"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Pasta para Salvar:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Nenhum(a)"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Padrуo"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Selecione o SoundFont"
@@ -411,7 +411,7 @@ msgstr "Selecione o SoundFont"
msgid "Select additional game directory"
msgstr "Selecione a pasta adicional do jogo"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Selecione a pasta para os jogos salvos"
@@ -505,7 +505,7 @@ msgstr ""
msgid "Triangle"
msgstr ""
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Outros"
@@ -833,8 +833,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Nenhum(a)"
@@ -860,79 +860,79 @@ msgstr "a configuraчуo de tela cheia nуo pєde ser mudada"
msgid "the filtering setting could not be changed"
msgstr "a configuraчуo de tela cheia nуo pєde ser mudada"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Modo grсfico:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderizaчуo:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Modos especiais de dithering suportados por alguns jogos"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Modo Tela Cheia"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "Grсficos"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correчуo de proporчуo"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Correчуo de proporчуo para jogos 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Dispositivo pref.:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Disp. de mњsica:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Especifica o dispositivo de som preferido ou emulador de placa de som"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Especifica o dispositivo de saэda de som ou emulador de placa de som"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Dispositivo pref.:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Dispositivo de mњsica:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emulador AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib щ utilizado para mњsica em vсrios jogos"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Taxa de saэda:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -940,62 +940,62 @@ msgstr ""
"Maior valor especifica melhor qualidade de som, mas pode nуo ser suportado "
"por sua placa de som"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Dispositivo GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Especifique o dispositivo de som padrуo para a saэda General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Nуo usar mњsica General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Usar o primeiro dispositivo disponэvel"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "SoundFont щ suportado por algumas placas de som, FluidSynth e Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Mixar AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Usar MIDI e AdLib juntos na geraчуo de som"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Ganho MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Dispositivo MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Especifique o dispositivo de som padrуo para a saэda Roland MT-32/LAPC1/"
"CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Roland MT-32 real (desligar emulaчуo GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -1003,306 +1003,306 @@ msgstr ""
"Verifique se vocъ quer usar o seu dispositivo de hardware de som compatэvel "
"com Roland"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Roland MT-32 real (sem emulaчуo GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
#, fuzzy
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland MT-32 real (desligar emulaчуo GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
msgstr ""
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Nуo usar mњsica Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Texto e Voz:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Voz"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Legendas"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Ambos"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Rapidez legendas:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Texto e Voz:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Voz"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Legs"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Ambos"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Mostrar legenda e vozes (dublagem)"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Velocidade das legendas:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Volume da Mњsica:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Volume da Mњsica:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Mudo"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Volume dos Sons:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volume dos efeitos sonoros especiais"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Volume dos Sons:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Volume da Voz:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Volume da Voz:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr ""
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Pasta do Tema:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Pasta do Tema:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Especifica a pasta para os dados adicionais usados por todos os jogos ou "
"ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Pasta de Plugins:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Pasta de Plugins:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Outros"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Renderizador GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Auto-Salvar:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Auto-Salvar:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Teclas"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Idioma do GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Linguagem do ScummVM GUI"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Nome de usuсrio:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
#, fuzzy
msgid "Download"
msgstr "Baixo"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
#, fuzzy
msgid "Not running"
msgstr "Erro ao executar o jogo:"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
#, fuzzy
msgid "/root/ Path:"
msgstr "Pasta de Extras"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
#, fuzzy
msgid "Specifies which directory the Files Manager can access"
msgstr "Especifique onde guardar seus jogos salvos"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
#, fuzzy
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Pasta de Extras"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
#, fuzzy
msgid "Server's port:"
msgstr "Servidor:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
#, fuzzy
msgid "Failed to change cloud storage!"
msgstr "Falha ao salvar o jogo"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1310,51 +1310,51 @@ msgstr ""
"O tema que vocъ selecionou nуo suporta seu idioma atual. Se vocъ quiser usar "
"este tema vocъ precisa mudar para outro idioma."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "O diretѓrio escolhido nуo pode ser usado. Por favor, selecione outro."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Selecione a pasta para os temas da Interface de Uso Grсfico"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Selecione a pasta para os arquivos extras"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Selecione a pasta para os plugins"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
#, fuzzy
msgid "Select directory for Files Manager /root/"
msgstr "Selecione a pasta para os arquivos extras"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
#, fuzzy
msgid "<never>"
msgstr "Nunca"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
#, fuzzy
msgid "Stop server"
msgstr "Servidor:"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/pt_PT.po b/po/pt_PT.po
index bad49fa9af..e43108fdcb 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.10.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-30 14:50+0000\n"
"Last-Translator: Vitor Santos <vitorhgsantos90@gmail.com>\n"
"Language-Team: Portuguese (Portugal) <https://translations.scummvm.org/"
@@ -58,7 +58,7 @@ msgstr "Acima"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -155,7 +155,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgstr ""
"Inglъs"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<padrуo>"
@@ -264,11 +264,11 @@ msgstr "Plataforma:"
msgid "Engine"
msgstr "Recursos"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grсficos"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Substituir configuraчѕes gerais de grсficos"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Сudio"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Substituir configuraчѕes gerais de сudio"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volume"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volume"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Substituir configuraчѕes gerais de volume"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Substituir configuraчѕes gerais de MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Substituir configuraчѕes gerais de MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Caminhos"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Caminhos"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Caminho do Jogo:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Caminho de Extras:"
@@ -365,44 +365,44 @@ msgstr "Caminho de Extras:"
msgid "Specifies path to additional data used by the game"
msgstr "Especifica o caminho para dados adicionais usados pelo jogo"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Caminho de Extras:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Caminho para Salvar:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Especifica onde os jogos salvos sуo colocados"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Caminho para Salvar:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Nenhum"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Padrуo"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Seleccione o SoundFont"
@@ -410,7 +410,7 @@ msgstr "Seleccione o SoundFont"
msgid "Select additional game directory"
msgstr "Seleccione uma directoria adicional para o jogo"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Seleccione uma directoria para salvar o jogo"
@@ -505,7 +505,7 @@ msgstr "Seno"
msgid "Triangle"
msgstr "Triтngulo"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Vсrios"
@@ -833,8 +833,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Nenhuma"
@@ -859,479 +859,479 @@ msgstr "a configuraчуo de ecrу inteiro nуo pєde ser alterada"
msgid "the filtering setting could not be changed"
msgstr "a configuraчуo de filtragem nуo pєde ser alterada"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Modelo de grсficos:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderizaчуo:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Modos especiais de pontilhado suportados por alguns jogos"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Modo de ecrу inteiro"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtros grсficos"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Usar filtragem linear quando dimensionar grсficos"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Correчуo da taxa de proporчуo"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Corrigir taxa de proporчуo em jogos de 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Dispositivo Preferido:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Dispositivo de Mњsica:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Especifica dispositivo sonoro ou emulador de placa sonora preferida"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr ""
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr ""
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr ""
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Emulador AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib щ usado para mњsica em vсrios jogos"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr ""
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
msgstr ""
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr ""
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr ""
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr ""
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr ""
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr ""
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr ""
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr ""
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr ""
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr ""
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr ""
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr ""
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
msgstr ""
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr ""
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr ""
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
msgstr ""
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr ""
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr ""
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr ""
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr ""
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr ""
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr ""
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr ""
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr ""
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr ""
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr ""
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr ""
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr ""
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr ""
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr ""
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr ""
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr ""
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr ""
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr ""
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr ""
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr ""
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr ""
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr ""
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr ""
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr ""
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr ""
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr ""
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr ""
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr ""
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr ""
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr ""
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr ""
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr ""
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr ""
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr ""
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr ""
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr ""
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr ""
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr ""
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr ""
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
msgstr ""
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr ""
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr ""
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr ""
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr ""
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr ""
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr ""
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 377436b3a5..3498507785 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.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-31 21:04+0000\n"
"Last-Translator: Ivan Lukyanov <lid-gr@tut.by>\n"
"Language-Team: Russian <https://translations.scummvm.org/projects/scummvm/"
@@ -59,7 +59,7 @@ msgstr "Вверх"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -156,7 +156,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -241,7 +241,7 @@ msgstr ""
"Язык игры. Изменение этой настройки не превратит игру на английском в русскую"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<по умолчанию>"
@@ -264,11 +264,11 @@ msgstr "Платформа:"
msgid "Engine"
msgstr "Движок"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Графика"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Грф"
@@ -281,7 +281,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Перекрыть глобальные установки графики"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Аудио"
@@ -294,11 +294,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Перекрыть глобальные установки аудио"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Громкость"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Громк"
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Перекрыть глобальные установки громкости"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -325,7 +325,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Перекрыть глобальные установки MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -338,11 +338,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Перекрыть глобальные установки MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Пути"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Пути"
@@ -356,7 +356,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Где игра:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Доп. путь:"
@@ -365,44 +365,44 @@ msgstr "Доп. путь:"
msgid "Specifies path to additional data used by the game"
msgstr "Указывает путь к дополнительным файлам данных для игры"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Доп. путь:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Сохранения игр:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Указывает путь к сохранениям игры"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Путь сохр:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Не задан"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "По умолчанию"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Выберите SoundFont"
@@ -410,7 +410,7 @@ msgstr "Выберите SoundFont"
msgid "Select additional game directory"
msgstr "Выберите дополнительную директорию игры"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Выберите директорию для сохранений"
@@ -503,7 +503,7 @@ msgstr "Синусоида"
msgid "Triangle"
msgstr "Треугольная"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Разное"
@@ -823,8 +823,8 @@ msgstr "44 кГц"
msgid "48 kHz"
msgstr "48 кГц"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Не задан"
@@ -849,79 +849,79 @@ msgstr "полноэкранный режим не может быть изменён"
msgid "the filtering setting could not be changed"
msgstr "режим фильтрации не может быть изменён"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Граф. режим:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Режим растра:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Специальные режимы рендеринга, поддерживаемые некоторыми играми"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Полноэкранный режим"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Фильтрование графики"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Использовать линейную фильтрацию для увеличения разрешения"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Коррекция соотношения сторон"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Корректировать соотношение сторон для игр с разрешением 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Предпочитаемое:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Звуковое уст-во:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
"Указывает предпочитаемое звуковое устройство или эмулятор звуковой карты"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Указывает выходное звуковое устройство или эмулятор звуковой карты"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Предпочитаемое:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Звуковое уст-во:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Эмулятор AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "Звуковая карта AdLib используется многими играми"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Частота звука:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -929,64 +929,64 @@ msgstr ""
"БОльшие значения задают лучшее качество звука, однако они могут не "
"поддерживаться вашей звуковой картой"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Устройство GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Указывает выходное звуковое устройство для MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Не использовать музыку для General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Использовать первое доступное устройство"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont'ы поддерживаются некоторыми звуковыми картами, FluidSynth и "
"Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Смешанный режим AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Использовать и MIDI, и AdLib для генерации звука"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Усиление MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Устр. MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Указывает звуковое устройство по умолчанию для вывода на Roland MT-32/LAPC1/"
"CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Настоящий Roland MT-32 (запретить эмуляцию GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -994,16 +994,16 @@ msgstr ""
"Отметьте, если у вас подключено Roland-совместимое звуковое устройство и вы "
"хотите его использовать"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Настоящий Roland MT-32 (без эмуляции GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Устройство Roland GS (разрешить маппинг MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1011,265 +1011,265 @@ msgstr ""
"Отметьте, если хотите разрешить маппинг для эмуляции MT-32 на устройстве "
"Roland GS"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Не использовать музыку для MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Текст и озвучка:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Озвучка"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Субтитры"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Оба"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Скорость титров:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Текст и озвучка:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Озв"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Суб"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Оба"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Показывать субтитры и воспроизводить речь"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Скорость титров:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Громк. музыки:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Громк. музыки:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Выкл. всё"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Громкость SFX:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Громкость специальных звуковых эффектов"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Громк. SFX:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Громк. озвучки:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Громк. озвучки:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Настройки FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Путь к темам:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Где темы:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Указывает путь к дополнительным файлам данных, используемых всеми играми "
"либо ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Путь к плагинам:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Путь к плагинам:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Разное"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Тема:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Рисовалка GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Автосохранение:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Автосохр.:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Клавиши"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Язык GUI:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Язык графического интерфейса ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Проверять обновления:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Как часто проверять обновления ScummVM"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Проверить сейчас"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Облако"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Облако"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Облако:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Активное облачное хранилище"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<нет>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Пользователь:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Имя пользователя в этом облаке"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Используемый объём:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Объём, занимаемый сохранениями игр ScummVM на этом облаке"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Последняя синхронизация:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Когда производилась последняя синхронизация с этим облаком"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Подключить"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "Открывает диалог для установки подключения к облаку"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Обновить"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr "Обновляет текущую информацию об облаке (имя пользователя и объём)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Загрузить"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Открывает менеджер загрузок"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Запустить сервер"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Запускает локальный веб-сервер"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Не запущен"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Корневая директория:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Указывает путь к директории, куда будет иметь доступ Менеджер файлов"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Корень:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Порт сервера:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1277,19 +1277,19 @@ msgstr ""
"Номер порта, используемый сервером\n"
"Установление доступа работает только с портом по умолчанию"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Применить"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Не удалось сменить облако!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Уже активно другое облачное хранилище."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1297,48 +1297,48 @@ msgstr ""
"Тема, выбранная вами, не поддерживает текущий язык. Если вы хотите "
"использовать эту тему, вам необходимо сначала переключиться на другой язык."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Не могу писать в выбранную директорию. Пожалуйста, укажите другую."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Выберите директорию для тем GUI"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Выберите директорию с дополнительными файлами"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Выберите директорию с плагинами"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Выберите директорию для корня в Менеджере файлов"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu байт"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<сейчас>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<никогда>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Остановить сервер"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Останавливает локальный веб-сервер"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/scummvm.pot b/po/scummvm.pot
index 20b84c1f2c..477b851fb5 100644
--- a/po/scummvm.pot
+++ b/po/scummvm.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.10.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -55,7 +55,7 @@ msgstr ""
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -148,7 +148,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -228,7 +228,7 @@ msgid ""
msgstr ""
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr ""
@@ -251,11 +251,11 @@ msgstr ""
msgid "Engine"
msgstr ""
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr ""
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr ""
@@ -268,7 +268,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr ""
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr ""
@@ -281,11 +281,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr ""
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr ""
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr ""
@@ -299,7 +299,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr ""
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr ""
@@ -312,7 +312,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr ""
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr ""
@@ -325,11 +325,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr ""
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr ""
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr ""
@@ -343,7 +343,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr ""
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr ""
@@ -352,44 +352,44 @@ msgstr ""
msgid "Specifies path to additional data used by the game"
msgstr ""
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr ""
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr ""
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr ""
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr ""
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr ""
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr ""
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr ""
@@ -397,7 +397,7 @@ msgstr ""
msgid "Select additional game directory"
msgstr ""
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr ""
@@ -487,7 +487,7 @@ msgstr ""
msgid "Triangle"
msgstr ""
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr ""
@@ -801,8 +801,8 @@ msgstr ""
msgid "48 kHz"
msgstr ""
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr ""
@@ -827,479 +827,479 @@ msgstr ""
msgid "the filtering setting could not be changed"
msgstr ""
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr ""
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr ""
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr ""
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr ""
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr ""
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr ""
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr ""
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr ""
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr ""
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr ""
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr ""
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr ""
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr ""
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr ""
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr ""
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
msgstr ""
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr ""
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr ""
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr ""
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr ""
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr ""
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr ""
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr ""
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr ""
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr ""
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr ""
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr ""
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
msgstr ""
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr ""
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr ""
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
msgstr ""
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr ""
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr ""
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr ""
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr ""
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr ""
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr ""
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr ""
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr ""
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr ""
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr ""
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr ""
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr ""
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr ""
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr ""
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr ""
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr ""
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr ""
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr ""
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr ""
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr ""
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr ""
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr ""
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr ""
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr ""
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr ""
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr ""
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr ""
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr ""
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr ""
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr ""
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr ""
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr ""
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr ""
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr ""
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr ""
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr ""
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr ""
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr ""
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr ""
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
msgstr ""
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr ""
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr ""
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr ""
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr ""
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr ""
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr ""
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 149bad7706..3f9ce4a44c 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.5.0svn\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-06 09:18+0000\n"
"Last-Translator: Petter Sjіlund <ignalina@mac.com>\n"
"Language-Team: Swedish <https://translations.scummvm.org/projects/scummvm/"
@@ -59,7 +59,7 @@ msgstr "Uppхt"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -156,7 +156,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -242,7 +242,7 @@ msgstr ""
"till en engelsk"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<standard>"
@@ -265,11 +265,11 @@ msgstr "Plattform:"
msgid "Engine"
msgstr "Motor"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Grafik"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -282,7 +282,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "жverskrid globala grafikinstфllningar"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Ljud"
@@ -295,11 +295,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "жverskrid globala ljudinstфllningar"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Volym"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Volym"
@@ -313,7 +313,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "жverskrid globala volyminstфllningar"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -326,7 +326,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "жverskrid globala MIDI-instфllningar"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -339,11 +339,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "жverskrid globala MT-32 instфllningar"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Sіkvфgar"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Sіkvфgar"
@@ -357,7 +357,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Sіkv. spel:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Sіkv. extra:"
@@ -366,44 +366,44 @@ msgstr "Sіkv. extra:"
msgid "Specifies path to additional data used by the game"
msgstr "Bestфmmer sіkvфgen till ytterligare data som spelet anvфnder"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Sіkv. extra:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Sіkv. sparat:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Bestфmmer var dina spardata lagras"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Sіkv. sparat:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Ingen"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Standard"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Vфlj SoundFont"
@@ -411,7 +411,7 @@ msgstr "Vфlj SoundFont"
msgid "Select additional game directory"
msgstr "Vфlj en ytterligare spelkatalog"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Vфlj katalog fіr spardata"
@@ -503,7 +503,7 @@ msgstr "Sinus"
msgid "Triangle"
msgstr "Triangel"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Diverse"
@@ -824,8 +824,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Ingen"
@@ -850,78 +850,78 @@ msgstr "fullskфrmsinstфllningen kunde inte фndras"
msgid "the filtering setting could not be changed"
msgstr "filterinstфllningen kunde inte фndras"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Grafiklфge:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Renderingslфge:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Speciella gitterlфgen stіdda av vissa spel"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Fullskфrmslфge"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Filtrera grafik"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Anvфnd linjфrt filter fіr att fіrstora bilden"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Korrektion av bildfіrhхllande"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Korrigera bildfіrhхllandet fіr 320 x 200-spel"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Fіredragen enhet:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Musikenhet:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Bestфmmer din fіredragna emulator fіr ljudenhet eller ljudkort"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Bestфmmer emulator fіr ljudenhet eller ljudkort"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Fіredr. enhet:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Musikenhet:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib-emulator:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib anvфnds fіr musik i mхnga spel"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Ljudfrekvens:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -929,61 +929,61 @@ msgstr ""
"Ett hіgre vфrde betecknar bфttre ljudkvalitet men stіds kanske inte av ditt "
"ljudkort"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM-enhet:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Bestфmmer standardenheten fіr General MIDI-uppspelning"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Anvфnd inte General MIDI-musik"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Anvфnd fіrsta tillgфngliga enhet"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "SoundFont stіds endast av vissa ljudkort, FluidSynth och Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Blandat AdLib/MIDI-lфge"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Anvфnd bхde MIDI och AdLib fіr ljudgeneration"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI gain:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 enhet:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Bestфmmer standardenheten fіr Roland MT-32/LAPC1/CM32I/CM64-uppspelning"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Фkta Roland MT-32 (inaktivera GM-emulation)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -991,16 +991,16 @@ msgstr ""
"Aktivera om du vill anvфnda din verkliga Roland-kompatibla och dator-"
"anslutna ljudenhet"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Фkta Roland MT-32 (ingen GM-emulation)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS-enhet (aktivera MT-32 mappings)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1008,265 +1008,265 @@ msgstr ""
"Aktivera om du vill anvфnda patch mapping fіr att emulera en MT-32 pх en "
"Roland GS-enhet"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Anvфnd inte Roland MT-32 musik"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Undertext och tal:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Tal"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Undertexter"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Bхda"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Texthastighet:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Text och tal:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Tal"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Text"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Bхda"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Visa undertexter och spela upp tal"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Texthastighet:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Musikvolym:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Musikvolym:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Ljud av"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "SFX-volym:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Volym fіr specialeffekter"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "SFX-volym:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Talvolym:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Talvolym:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth instфllningar"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Sіkv. tema:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Sіkv. tema:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Bestфmmer sіkvфg till andra data som anvфnds av alla spel eller ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Sіkv. tillфgg:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Sіkv. tillфgg:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Diverse"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Tema:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "GUI-rendering:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Autospara:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Autospara:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Tangenter"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "GUI-sprхk:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Sprхk fіr ScummVM:s anvфndargrфnssnitt"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Uppdateringskoll:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Hur ofta ScummVM kollar efter uppdateringar"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Kolla nu"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Moln"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Moln"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Lager:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Aktivera molnlagring"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<ingen>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Anv. namn:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Anvфndarnamn som anvфnds av detta lager"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Utnyttjat utrymme:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr "Utrymme som anvфnds av ScummVM:s sparade data pх det hфr lagret"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Senast synkad:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Nфr sparade data synkades senast fіr det hфr lagret"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Anslut"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr "жppna anslutningsguiden fіr att ansluta ditt molnlagerkonto"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Uppdatera"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
"Uppdaterar informationen om aktuellt molnlager (anvфndarnamn och anvфndning)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Nedladdning"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "жppna fіnstret fіr nedladdningshantering"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Starta server"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Starta lokal webbserver"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Ej aktiv"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "/root/-sіkvфg:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Bestфmmer vilken katalog filhanteraren har хtkomst till"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "/root/-sіkvфg:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Serverport:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1274,19 +1274,19 @@ msgstr ""
"Vilken port anvфnds av servern\n"
"Serverautorisering фr endast tillgфnglig med standardporten"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Verkstфll"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Kunde inte фndra molnlager!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Ett annat molnlager фr redan aktivt."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1294,49 +1294,49 @@ msgstr ""
"Temat du valde stіder inte ditt sprхk. Om du vill anvфnda det hфr temat "
"mхste fіrst byta till ett annat sprхk."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr ""
"Det gхr inte att skriva till den valda katalogen. Var god vфlj en annan."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Vфlj katalog fіr GUI-teman"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Vфlj katalog fіr extra filer"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Vфlj katalog fіr tillфgg"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Vфlj katalog fіr filhanterarens /root/"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu bytes"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<nu direkt>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<aldrig>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Stoppa server"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Stoppa lokal webbserver"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 5e24b1eec9..91e5ba58c1 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.9.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2017-01-01 00:02+0000\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Ukrainian <https://translations.scummvm.org/projects/scummvm/"
@@ -60,7 +60,7 @@ msgstr "Вгору"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -157,7 +157,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -243,7 +243,7 @@ msgstr ""
"українську"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<за умовчанням>"
@@ -266,11 +266,11 @@ msgstr "Платформа:"
msgid "Engine"
msgstr "Движок"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Графіка"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "Грф"
@@ -283,7 +283,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Перекрити глобальні налаштування графіки"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Аудіо"
@@ -296,11 +296,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Перекрити глобальні налаштування аудіо"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Гучність"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "Гучн"
@@ -314,7 +314,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Перекрити глобальні налаштування гучності"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -327,7 +327,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Перекрити глобальні налаштування MIDI"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -340,11 +340,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Перекрити глобальні налаштування MT-32"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Шляхи"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Шляхи"
@@ -358,7 +358,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Шлях до гри:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Додатк. шлях:"
@@ -367,44 +367,44 @@ msgstr "Додатк. шлях:"
msgid "Specifies path to additional data used by the game"
msgstr "Вказує шлях до додаткових файлів даних для гри"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Дод. шлях:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Шлях збер.:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Вказує шлях до збережених ігор"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Шлях збер.:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Не завдано"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "За умовчанням"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Виберіть SoundFont"
@@ -412,7 +412,7 @@ msgstr "Виберіть SoundFont"
msgid "Select additional game directory"
msgstr "Виберіть додаткову папку гри"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Виберіть папку для збережених ігор"
@@ -505,7 +505,7 @@ msgstr "Синусоїда"
msgid "Triangle"
msgstr "Трикутник"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Різне"
@@ -823,8 +823,8 @@ msgstr "44 кГц"
msgid "48 kHz"
msgstr "48 кГц"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Не заданий"
@@ -849,78 +849,78 @@ msgstr "не вдалося змінити режим повного екрану"
msgid "the filtering setting could not be changed"
msgstr "не вдалося змінити режим фільтрування"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Графічн. режим:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Режим раструв.:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Спеціальні режими растрування, які підтримують деякі ігри"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Повноекранний режим"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Filter graphics"
msgstr "Фільтрування графіки"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr "Використовувати лінійну фільтрацію для збільшення графіки"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Корекція співвідношення сторін"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "Коригувати співвідношення сторін для ігор з графікою 320x200"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Уподобаний пристрій:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Музич. пристрій:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Вказує уподобаний звуковий пристрій або емулятор звукової карти"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Вказує вихідний звуковий пристрій або емулятор звукової карти"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Уподоб. пристрій:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Музичний пристрій:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "Емулятор AdLib:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "Звукова карта AdLib використовується багатьма іграми для музики"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Вихідна частота:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -928,63 +928,63 @@ msgstr ""
"Великі значення надають кращу якість звуку, проте вони можуть не "
"підтримуватися вашою звуковою картою"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "Пристрій GM:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Вказує вихідний звуковий пристрій для General MIDI"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Не використовувати музику General MIDI"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Використовувати перший наявний пристрій"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr ""
"SoundFont підтримується деякими звуковими картами, FluidSynth та Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Змішаний режим AdLib/MIDI"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "Використовувати і MIDI і AdLib для генерації звуку"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "Посилення MIDI:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "Пристрій MT-32:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"Вказує звуковий пристрій за замовченням для виводу на Roland MT-32/LAPC1/"
"CM32l/CM64"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Справжній Roland MT-32 (вимкнути емуляцию GM)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -992,16 +992,16 @@ msgstr ""
"Відмітьте, якщо у вас підключено Roland-сумісний звуковий пристрій і ви "
"хочете його використовувати"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Справжній Roland MT-32 (вимкнути емуляцию GM)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Режим Roland GS (ввімкнути маплення MT-32)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -1009,268 +1009,268 @@ msgstr ""
"Відмітьте, якщо хочете включити латки для інструментів для емуляції MT-32 на "
"Roland"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Не використовувати музику для Roland MT-32"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Текст і озвучка:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Озвучка"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Субтитри"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Все"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Швид. субтитрів:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Текст і озвучка:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Озв"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Суб"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Все"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Показувати субтитри і відтворювати мову"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Швид. субтитрів:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Гучність музики:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Гучність музики:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Вимкнути все"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Гучність ефектів:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Гучність спеціальних звукових ефектів"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Гучн. ефектів:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Гучність озвучки:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Гучн. озвучки:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "Налаштування FluidSynth"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Шлях до тем:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Шлях до тем:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr ""
"Вказує шлях до додаткових файлів даних, які використовуються усіма іграми "
"або ScummVM"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Шлях до втулків:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Шлях до втулків:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Різне"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Тема:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Растер. GUI:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Автозбереження:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Автозбереж.:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Клавіші"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Мова інтерф.:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "Мова графічного інтерфейсу ScummVM"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr "Перевіряти оновлення:"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr "Як часто перевіряти оновлення ScummVM"
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr "Перевірити зараз"
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr "Хмара"
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr "Хмара"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr "Середовище:"
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr "Активне хмарне середовище"
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr "<немає>"
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Користувач:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr "Користувач для цього середовища"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr "Використаний об'єм:"
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
"Об'єм, використаний для збережених станів ігор ScummVM на цьому середовищі"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr "Остання синхронизація:"
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr "Час, коли було зроблено останню синхронизацію з цим середовищем"
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr "Залучитись"
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
"Розпочати кроки для залучення до вашого облікового засобу на хмарному "
"середовищі"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr "Поновити"
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr "Поновити поточні дані хмарного середовища (ім'я користувача та об'єм)"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Download"
msgstr "Завантажити"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr "Відкрити керування завантаженнями"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr "Запустити сервер"
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr "Запускає локальний веб-сервер"
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
msgid "Not running"
msgstr "Вимкнено"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
msgid "/root/ Path:"
msgstr "Шлях /root/:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
msgid "Specifies which directory the Files Manager can access"
msgstr "Вказує шлях, до якого можна мати доступ через Керування файлами"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Корінний шлях:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid "Server's port:"
msgstr "Порт сервера:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
@@ -1278,19 +1278,19 @@ msgstr ""
"Порт, який буде використано сервером\n"
"Аутентифікация з сервером неможлива для портів, інших від замовчуваного"
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr "Застосувати"
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
msgid "Failed to change cloud storage!"
msgstr "Не вдалося змінити хмарне середовище!"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr "Інше хмарне середовище вже активне."
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1298,48 +1298,48 @@ msgstr ""
"Вибрана тема не підтримує поточну мову. Якщо ви хочете використовувати цю "
"тему, потрібно в першу чергу змінити мову."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Не можу писати у вибрану папку. Будь ласка, вкажіть іншу."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Виберіть папку для тем GUI"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Виберіть папку з додатковими файлами"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Виберіть папку зі втулками"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
msgid "Select directory for Files Manager /root/"
msgstr "Виберіть папку /root/ для Керування файлами"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr "%llu байт"
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr "<зараз>"
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
msgid "<never>"
msgstr "<ніколи>"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
msgid "Stop server"
msgstr "Вимкнути сервер"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr "Вимкнути локальний веб-сервер"
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."
diff --git a/po/zh-Latn_CN.po b/po/zh-Latn_CN.po
index defa04f3bb..c3d62d9b56 100644
--- a/po/zh-Latn_CN.po
+++ b/po/zh-Latn_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ScummVM 1.9.0git\n"
"Report-Msgid-Bugs-To: scummvm-devel@lists.scummvm.org\n"
-"POT-Creation-Date: 2017-01-31 18:17+0100\n"
+"POT-Creation-Date: 2017-02-11 08:56+0100\n"
"PO-Revision-Date: 2016-12-26 19:38+0000\n"
"Last-Translator: Eugene Sandulenko <sev@scummvm.org>\n"
"Language-Team: Chinese <https://translations.scummvm.org/projects/scummvm/"
@@ -58,7 +58,7 @@ msgstr "ShangYiJi"
#: gui/browser.cpp:75 gui/chooser.cpp:46 gui/editgamedialog.cpp:292
#: gui/editrecorddialog.cpp:67 gui/filebrowser-dialog.cpp:64
#: gui/fluidsynth-dialog.cpp:152 gui/KeysDialog.cpp:43 gui/massadd.cpp:95
-#: gui/options.cpp:1461 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
+#: gui/options.cpp:1515 gui/predictivedialog.cpp:73 gui/recorderdialog.cpp:69
#: gui/recorderdialog.cpp:155 gui/remotebrowser.cpp:59
#: gui/saveload-dialog.cpp:383 gui/saveload-dialog.cpp:443
#: gui/saveload-dialog.cpp:717 gui/saveload-dialog.cpp:1111
@@ -152,7 +152,7 @@ msgstr ""
#: gui/downloaddialog.cpp:146 gui/editgamedialog.cpp:293
#: gui/fluidsynth-dialog.cpp:153 gui/KeysDialog.cpp:42 gui/launcher.cpp:522
-#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1463
+#: gui/launcher.cpp:526 gui/massadd.cpp:92 gui/options.cpp:1517
#: gui/saveload-dialog.cpp:1112 engines/engine.cpp:477 engines/engine.cpp:488
#: backends/platform/wii/options.cpp:47
#: backends/platform/wince/CELauncherDialog.cpp:54
@@ -235,7 +235,7 @@ msgstr ""
"Youxi de Yuyan. CiXiang buhui jiang Yige XibanyaYu Banben Zhuancheng Yingwen"
#: gui/editgamedialog.cpp:151 gui/editgamedialog.cpp:165 gui/options.cpp:121
-#: gui/options.cpp:812 gui/options.cpp:825 gui/options.cpp:1356
+#: gui/options.cpp:845 gui/options.cpp:858 gui/options.cpp:1410
#: audio/null.cpp:41
msgid "<default>"
msgstr "<Moren>"
@@ -258,11 +258,11 @@ msgstr "Pingtai:"
msgid "Engine"
msgstr "Yinqing"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "Graphics"
msgstr "Tuxiang"
-#: gui/editgamedialog.cpp:184 gui/options.cpp:1147 gui/options.cpp:1232
+#: gui/editgamedialog.cpp:184 gui/options.cpp:1201 gui/options.cpp:1286
msgid "GFX"
msgstr "GFX"
@@ -275,7 +275,7 @@ msgctxt "lowres"
msgid "Override global graphic settings"
msgstr "Fugai Quanju Tuxiang Shezhi"
-#: gui/editgamedialog.cpp:196 gui/options.cpp:1238
+#: gui/editgamedialog.cpp:196 gui/options.cpp:1292
msgid "Audio"
msgstr "Yinpin"
@@ -288,11 +288,11 @@ msgctxt "lowres"
msgid "Override global audio settings"
msgstr "Fugai QUanju Yinpin Shezhi"
-#: gui/editgamedialog.cpp:210 gui/options.cpp:1243
+#: gui/editgamedialog.cpp:210 gui/options.cpp:1297
msgid "Volume"
msgstr "Yinliang"
-#: gui/editgamedialog.cpp:212 gui/options.cpp:1245
+#: gui/editgamedialog.cpp:212 gui/options.cpp:1299
msgctxt "lowres"
msgid "Volume"
msgstr "YinLiang"
@@ -306,7 +306,7 @@ msgctxt "lowres"
msgid "Override global volume settings"
msgstr "Fugai Quanju YinLiang Shezhi"
-#: gui/editgamedialog.cpp:226 gui/options.cpp:1253
+#: gui/editgamedialog.cpp:226 gui/options.cpp:1307
msgid "MIDI"
msgstr "MIDI"
@@ -319,7 +319,7 @@ msgctxt "lowres"
msgid "Override global MIDI settings"
msgstr "Fugai Quanju MIDI Shezhi"
-#: gui/editgamedialog.cpp:241 gui/options.cpp:1263
+#: gui/editgamedialog.cpp:241 gui/options.cpp:1317
msgid "MT-32"
msgstr "MT-32"
@@ -332,11 +332,11 @@ msgctxt "lowres"
msgid "Override global MT-32 settings"
msgstr "Fugai Quanju MT-32 Shezhi"
-#: gui/editgamedialog.cpp:255 gui/options.cpp:1270
+#: gui/editgamedialog.cpp:255 gui/options.cpp:1324
msgid "Paths"
msgstr "Lujing"
-#: gui/editgamedialog.cpp:257 gui/options.cpp:1272
+#: gui/editgamedialog.cpp:257 gui/options.cpp:1326
msgctxt "lowres"
msgid "Paths"
msgstr "Lujing"
@@ -350,7 +350,7 @@ msgctxt "lowres"
msgid "Game Path:"
msgstr "Youxi Lujing:"
-#: gui/editgamedialog.cpp:271 gui/options.cpp:1296
+#: gui/editgamedialog.cpp:271 gui/options.cpp:1350
msgid "Extra Path:"
msgstr "Qita Lujing:"
@@ -359,44 +359,44 @@ msgstr "Qita Lujing:"
msgid "Specifies path to additional data used by the game"
msgstr "Zhiding Youxi Suoyong de Shuju de Cunfang Lujing"
-#: gui/editgamedialog.cpp:273 gui/options.cpp:1298
+#: gui/editgamedialog.cpp:273 gui/options.cpp:1352
msgctxt "lowres"
msgid "Extra Path:"
msgstr "Qita Lujing:"
-#: gui/editgamedialog.cpp:280 gui/options.cpp:1280
+#: gui/editgamedialog.cpp:280 gui/options.cpp:1334
msgid "Save Path:"
msgstr "Baocun Lujing:"
#: gui/editgamedialog.cpp:280 gui/editgamedialog.cpp:282
-#: gui/editgamedialog.cpp:283 gui/options.cpp:1280 gui/options.cpp:1282
-#: gui/options.cpp:1283
+#: gui/editgamedialog.cpp:283 gui/options.cpp:1334 gui/options.cpp:1336
+#: gui/options.cpp:1337
msgid "Specifies where your saved games are put"
msgstr "Zhiding Nin Jiang Youxi Baocun Zai le Nali"
-#: gui/editgamedialog.cpp:282 gui/options.cpp:1282
+#: gui/editgamedialog.cpp:282 gui/options.cpp:1336
msgctxt "lowres"
msgid "Save Path:"
msgstr "Baocun Lujing:"
#: gui/editgamedialog.cpp:301 gui/editgamedialog.cpp:398
-#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1291
-#: gui/options.cpp:1299 gui/options.cpp:1308 gui/options.cpp:1488
-#: gui/options.cpp:1494 gui/options.cpp:1502 gui/options.cpp:1525
-#: gui/options.cpp:1554 gui/options.cpp:1560 gui/options.cpp:1567
-#: gui/options.cpp:1575 gui/options.cpp:1758 gui/options.cpp:1761
-#: gui/options.cpp:1768 gui/options.cpp:1778
+#: gui/editgamedialog.cpp:457 gui/editgamedialog.cpp:518 gui/options.cpp:1345
+#: gui/options.cpp:1353 gui/options.cpp:1362 gui/options.cpp:1542
+#: gui/options.cpp:1548 gui/options.cpp:1556 gui/options.cpp:1579
+#: gui/options.cpp:1608 gui/options.cpp:1614 gui/options.cpp:1621
+#: gui/options.cpp:1629 gui/options.cpp:1812 gui/options.cpp:1815
+#: gui/options.cpp:1822 gui/options.cpp:1832
msgctxt "path"
msgid "None"
msgstr "Wu"
#: gui/editgamedialog.cpp:306 gui/editgamedialog.cpp:404
-#: gui/editgamedialog.cpp:522 gui/options.cpp:1482 gui/options.cpp:1548
-#: gui/options.cpp:1764 backends/platform/wii/options.cpp:56
+#: gui/editgamedialog.cpp:522 gui/options.cpp:1536 gui/options.cpp:1602
+#: gui/options.cpp:1818 backends/platform/wii/options.cpp:56
msgid "Default"
msgstr "Moren"
-#: gui/editgamedialog.cpp:450 gui/options.cpp:1772
+#: gui/editgamedialog.cpp:450 gui/options.cpp:1826
msgid "Select SoundFont"
msgstr "Xuanze SoundFont"
@@ -404,7 +404,7 @@ msgstr "Xuanze SoundFont"
msgid "Select additional game directory"
msgstr "Xuanze Qita Youxi Mulu"
-#: gui/editgamedialog.cpp:502 gui/options.cpp:1695
+#: gui/editgamedialog.cpp:502 gui/options.cpp:1749
msgid "Select directory for saved games"
msgstr "Xuanze Youxi Baocun Mulu"
@@ -494,7 +494,7 @@ msgstr "Zhengxian"
msgid "Triangle"
msgstr "Sanjiaoxing"
-#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1316
+#: gui/fluidsynth-dialog.cpp:138 gui/options.cpp:1370
msgid "Misc"
msgstr "Zaxiang"
@@ -810,8 +810,8 @@ msgstr "44 kHz"
msgid "48 kHz"
msgstr "48 kHz"
-#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:657
-#: gui/options.cpp:726 gui/options.cpp:937
+#: gui/options.cpp:289 gui/options.cpp:552 gui/options.cpp:690
+#: gui/options.cpp:759 gui/options.cpp:970
msgctxt "soundfont"
msgid "None"
msgstr "Wu"
@@ -837,79 +837,79 @@ msgstr "Quanping Shezhi Wufa Genggai"
msgid "the filtering setting could not be changed"
msgstr "Quanping Shezhi Wufa Genggai"
-#: gui/options.cpp:809
+#: gui/options.cpp:842
msgid "Graphics mode:"
msgstr "Tuxing Moshi:"
-#: gui/options.cpp:823
+#: gui/options.cpp:856
msgid "Render mode:"
msgstr "Xuanran Moshi:"
-#: gui/options.cpp:823 gui/options.cpp:824
+#: gui/options.cpp:856 gui/options.cpp:857
msgid "Special dithering modes supported by some games"
msgstr "Youxi Zhichi Teshu de Doudong Moshi"
-#: gui/options.cpp:835 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
+#: gui/options.cpp:868 backends/graphics/openglsdl/openglsdl-graphics.cpp:615
#: backends/graphics/surfacesdl/surfacesdl-graphics.cpp:2460
msgid "Fullscreen mode"
msgstr "Quanping Moshi"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
#, fuzzy
msgid "Filter graphics"
msgstr "Tuxiang"
-#: gui/options.cpp:838
+#: gui/options.cpp:871
msgid "Use linear filtering when scaling graphics"
msgstr ""
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Aspect ratio correction"
msgstr "Bili Jiaozheng"
-#: gui/options.cpp:841
+#: gui/options.cpp:874
msgid "Correct aspect ratio for 320x200 games"
msgstr "320x200 Youxi Bili Jiaozheng"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Preferred Device:"
msgstr "Youxian Shebei:"
-#: gui/options.cpp:849
+#: gui/options.cpp:882
msgid "Music Device:"
msgstr "Yinyue Shebei:"
-#: gui/options.cpp:849 gui/options.cpp:851
+#: gui/options.cpp:882 gui/options.cpp:884
msgid "Specifies preferred sound device or sound card emulator"
msgstr "Zhiding Youxian Shengyin Shebei huo Shengka Moniqi"
-#: gui/options.cpp:849 gui/options.cpp:851 gui/options.cpp:852
+#: gui/options.cpp:882 gui/options.cpp:884 gui/options.cpp:885
msgid "Specifies output sound device or sound card emulator"
msgstr "Zhiding Shuchu Shengyin Shebei huo Shengka Moniqi"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Preferred Dev.:"
msgstr "Youxian Shebei:"
-#: gui/options.cpp:851
+#: gui/options.cpp:884
msgctxt "lowres"
msgid "Music Device:"
msgstr "Yinyue Shebei:"
-#: gui/options.cpp:878
+#: gui/options.cpp:911
msgid "AdLib emulator:"
msgstr "AdLib Moniqi:"
-#: gui/options.cpp:878 gui/options.cpp:879
+#: gui/options.cpp:911 gui/options.cpp:912
msgid "AdLib is used for music in many games"
msgstr "AdLib bei Henduo Youxi Yonglai Bofang Yinyue"
-#: gui/options.cpp:889
+#: gui/options.cpp:922
msgid "Output rate:"
msgstr "Shuchu Malv:"
-#: gui/options.cpp:889 gui/options.cpp:890
+#: gui/options.cpp:922 gui/options.cpp:923
msgid ""
"Higher value specifies better sound quality but may be not supported by your "
"soundcard"
@@ -917,62 +917,62 @@ msgstr ""
"Genggao de Shuxing Hui Tisheng Yinyue Zhiliang dan Youkeneng Nin de Shengka "
"Buzhichi"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "GM Device:"
msgstr "GM Shebei:"
-#: gui/options.cpp:900
+#: gui/options.cpp:933
msgid "Specifies default sound device for General MIDI output"
msgstr "Zhiding Tongyong MIDI Shuchu Moren Shengyin Shebei"
-#: gui/options.cpp:911
+#: gui/options.cpp:944
msgid "Don't use General MIDI music"
msgstr "Buyao Shiyong Tongyong MIDI Yinyue"
-#: gui/options.cpp:922 gui/options.cpp:984
+#: gui/options.cpp:955 gui/options.cpp:1017
msgid "Use first available device"
msgstr "Shiyong Diyige keyong de Shebei"
-#: gui/options.cpp:934
+#: gui/options.cpp:967
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:934 gui/options.cpp:936 gui/options.cpp:937
+#: gui/options.cpp:967 gui/options.cpp:969 gui/options.cpp:970
msgid "SoundFont is supported by some audio cards, FluidSynth and Timidity"
msgstr "Yixie Shengka Zhichi SoundFont, Biru FluidSynth He Timidity"
-#: gui/options.cpp:936
+#: gui/options.cpp:969
msgctxt "lowres"
msgid "SoundFont:"
msgstr "SoundFont:"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Mixed AdLib/MIDI mode"
msgstr "Hunhe AdLib/MIDI Moshi"
-#: gui/options.cpp:942
+#: gui/options.cpp:975
msgid "Use both MIDI and AdLib sound generation"
msgstr "TongShi Shiyong MIDI He AdLib Shengyin Shengcheng"
-#: gui/options.cpp:945
+#: gui/options.cpp:978
msgid "MIDI gain:"
msgstr "MIDI gain:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "MT-32 Device:"
msgstr "MT-32 Shebei:"
-#: gui/options.cpp:955
+#: gui/options.cpp:988
msgid "Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output"
msgstr ""
"QIng Zhiding Yongyu Roland MT-32/LAPC1/CM32I/CM64 Shuchu de Moren Shengyin "
"Shebei"
-#: gui/options.cpp:960
+#: gui/options.cpp:993
msgid "True Roland MT-32 (disable GM emulation)"
msgstr "Zhen Roland MT-32 (Jinyong GM Moni)"
-#: gui/options.cpp:960 gui/options.cpp:962
+#: gui/options.cpp:993 gui/options.cpp:995
msgid ""
"Check if you want to use your real hardware Roland-compatible sound device "
"connected to your computer"
@@ -980,16 +980,16 @@ msgstr ""
"Jiancha Shifou Nin Xiang Shiyong Lianjie Dao Jisuanji de Zhenshi de Yingjian "
"Roland Jianrong Shengyin Shebei"
-#: gui/options.cpp:962
+#: gui/options.cpp:995
msgctxt "lowres"
msgid "True Roland MT-32 (no GM emulation)"
msgstr "Zhen Roland MT-32 Shebei (Wu GM Moni)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid "Roland GS Device (enable MT-32 mappings)"
msgstr "Roland GS Shebei (Qiyong MT-32 Yingshe)"
-#: gui/options.cpp:965
+#: gui/options.cpp:998
msgid ""
"Check if you want to enable patch mappings to emulate an MT-32 on a Roland "
"GS device"
@@ -997,288 +997,288 @@ msgstr ""
"Jiancha Shifou Nin Xiang Qiyong patch Yingshe Lai Zai Roland GS Shebei "
"Shangmian Moni MT-32"
-#: gui/options.cpp:974
+#: gui/options.cpp:1007
msgid "Don't use Roland MT-32 music"
msgstr "Buyao Shiyong Roland MT-32 Yinyue"
-#: gui/options.cpp:1001
+#: gui/options.cpp:1034
msgid "Text and Speech:"
msgstr "Wenzi he Yuyin:"
-#: gui/options.cpp:1005 gui/options.cpp:1015
+#: gui/options.cpp:1038 gui/options.cpp:1048
msgid "Speech"
msgstr "Yuyin"
-#: gui/options.cpp:1006 gui/options.cpp:1016
+#: gui/options.cpp:1039 gui/options.cpp:1049
msgid "Subtitles"
msgstr "Zimu"
-#: gui/options.cpp:1007
+#: gui/options.cpp:1040
msgid "Both"
msgstr "Liangzhe"
-#: gui/options.cpp:1009
+#: gui/options.cpp:1042
msgid "Subtitle speed:"
msgstr "Zimu Sudu:"
-#: gui/options.cpp:1011
+#: gui/options.cpp:1044
msgctxt "lowres"
msgid "Text and Speech:"
msgstr "Wenben he Yuyin:"
-#: gui/options.cpp:1015
+#: gui/options.cpp:1048
msgid "Spch"
msgstr "Zimu"
-#: gui/options.cpp:1016
+#: gui/options.cpp:1049
msgid "Subs"
msgstr "Yuyin"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgctxt "lowres"
msgid "Both"
msgstr "Dou"
-#: gui/options.cpp:1017
+#: gui/options.cpp:1050
msgid "Show subtitles and play speech"
msgstr "Xianshi Zimu Bing Bofang Yuyin"
-#: gui/options.cpp:1019
+#: gui/options.cpp:1052
msgctxt "lowres"
msgid "Subtitle speed:"
msgstr "Zimu Sudu:"
-#: gui/options.cpp:1035
+#: gui/options.cpp:1068
msgid "Music volume:"
msgstr "Yinyue Yinliang:"
-#: gui/options.cpp:1037
+#: gui/options.cpp:1070
msgctxt "lowres"
msgid "Music volume:"
msgstr "Yinyue Yinliang:"
-#: gui/options.cpp:1044
+#: gui/options.cpp:1077
msgid "Mute All"
msgstr "Quanbu Jinyin"
-#: gui/options.cpp:1047
+#: gui/options.cpp:1080
msgid "SFX volume:"
msgstr "Yinxiao Yinliang:"
-#: gui/options.cpp:1047 gui/options.cpp:1049 gui/options.cpp:1050
+#: gui/options.cpp:1080 gui/options.cpp:1082 gui/options.cpp:1083
msgid "Special sound effects volume"
msgstr "Texiao Yinliang"
-#: gui/options.cpp:1049
+#: gui/options.cpp:1082
msgctxt "lowres"
msgid "SFX volume:"
msgstr "Yinxiao Yinliang:"
-#: gui/options.cpp:1057
+#: gui/options.cpp:1090
msgid "Speech volume:"
msgstr "Yuyin Yinliang:"
-#: gui/options.cpp:1059
+#: gui/options.cpp:1092
msgctxt "lowres"
msgid "Speech volume:"
msgstr "Yuyin Yinliang:"
-#: gui/options.cpp:1257
+#: gui/options.cpp:1311
msgid "FluidSynth Settings"
msgstr "FluidSynth Xuanxiang"
-#: gui/options.cpp:1288
+#: gui/options.cpp:1342
msgid "Theme Path:"
msgstr "Zhuti Lujing:"
-#: gui/options.cpp:1290
+#: gui/options.cpp:1344
msgctxt "lowres"
msgid "Theme Path:"
msgstr "Zhuti Lujing:"
-#: gui/options.cpp:1296 gui/options.cpp:1298 gui/options.cpp:1299
+#: gui/options.cpp:1350 gui/options.cpp:1352 gui/options.cpp:1353
msgid "Specifies path to additional data used by all games or ScummVM"
msgstr "Zhiding Suoyou Youxi huo ScummVM de Shuju Lujing"
-#: gui/options.cpp:1305
+#: gui/options.cpp:1359
msgid "Plugins Path:"
msgstr "Chajian Lujing:"
-#: gui/options.cpp:1307
+#: gui/options.cpp:1361
msgctxt "lowres"
msgid "Plugins Path:"
msgstr "Chajian Lujing:"
-#: gui/options.cpp:1318
+#: gui/options.cpp:1372
msgctxt "lowres"
msgid "Misc"
msgstr "Zaxiang"
-#: gui/options.cpp:1320
+#: gui/options.cpp:1374
msgid "Theme:"
msgstr "Zhuti:"
-#: gui/options.cpp:1324
+#: gui/options.cpp:1378
msgid "GUI Renderer:"
msgstr "Jiemian Xuanran:"
-#: gui/options.cpp:1336
+#: gui/options.cpp:1390
msgid "Autosave:"
msgstr "Zidong Baocun:"
-#: gui/options.cpp:1338
+#: gui/options.cpp:1392
msgctxt "lowres"
msgid "Autosave:"
msgstr "Zidong Baocun:"
-#: gui/options.cpp:1346
+#: gui/options.cpp:1400
msgid "Keys"
msgstr "Guanjianzi"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "GUI Language:"
msgstr "Jiemian Yuyan:"
-#: gui/options.cpp:1353
+#: gui/options.cpp:1407
msgid "Language of ScummVM GUI"
msgstr "ScummVM Jiemian Yuyan"
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "Update check:"
msgstr ""
-#: gui/options.cpp:1381
+#: gui/options.cpp:1435
msgid "How often to check ScummVM updates"
msgstr ""
-#: gui/options.cpp:1393
+#: gui/options.cpp:1447
msgid "Check now"
msgstr ""
-#: gui/options.cpp:1401
+#: gui/options.cpp:1455
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1403
+#: gui/options.cpp:1457
msgctxt "lowres"
msgid "Cloud"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Storage:"
msgstr ""
-#: gui/options.cpp:1408
+#: gui/options.cpp:1462
msgid "Active cloud storage"
msgstr ""
-#: gui/options.cpp:1415 gui/options.cpp:1972
+#: gui/options.cpp:1469 gui/options.cpp:2026
msgid "<none>"
msgstr ""
-#: gui/options.cpp:1419 backends/platform/wii/options.cpp:114
+#: gui/options.cpp:1473 backends/platform/wii/options.cpp:114
msgid "Username:"
msgstr "Yonghuming:"
-#: gui/options.cpp:1419
+#: gui/options.cpp:1473
msgid "Username used by this storage"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Used space:"
msgstr ""
-#: gui/options.cpp:1422
+#: gui/options.cpp:1476
msgid "Space used by ScummVM's saved games on this storage"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "Last sync time:"
msgstr ""
-#: gui/options.cpp:1425
+#: gui/options.cpp:1479
msgid "When the last saved games sync for this storage occured"
msgstr ""
-#: gui/options.cpp:1428 gui/storagewizarddialog.cpp:71
+#: gui/options.cpp:1482 gui/storagewizarddialog.cpp:71
msgid "Connect"
msgstr ""
-#: gui/options.cpp:1428
+#: gui/options.cpp:1482
msgid "Open wizard dialog to connect your cloud storage account"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh"
msgstr ""
-#: gui/options.cpp:1429
+#: gui/options.cpp:1483
msgid "Refresh current cloud storage information (username and usage)"
msgstr ""
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
#, fuzzy
msgid "Download"
msgstr "Xia"
-#: gui/options.cpp:1430
+#: gui/options.cpp:1484
msgid "Open downloads manager dialog"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run server"
msgstr ""
-#: gui/options.cpp:1432
+#: gui/options.cpp:1486
msgid "Run local webserver"
msgstr ""
-#: gui/options.cpp:1433 gui/options.cpp:2082
+#: gui/options.cpp:1487 gui/options.cpp:2136
#, fuzzy
msgid "Not running"
msgstr "Youxi Yunxing Cuowu:"
-#: gui/options.cpp:1437
+#: gui/options.cpp:1491
#, fuzzy
msgid "/root/ Path:"
msgstr "Qita Lujing:"
-#: gui/options.cpp:1437 gui/options.cpp:1439 gui/options.cpp:1440
+#: gui/options.cpp:1491 gui/options.cpp:1493 gui/options.cpp:1494
#, fuzzy
msgid "Specifies which directory the Files Manager can access"
msgstr "Zhiding Nin Jiang Youxi Baocun Zai le Nali"
-#: gui/options.cpp:1439
+#: gui/options.cpp:1493
#, fuzzy
msgctxt "lowres"
msgid "/root/ Path:"
msgstr "Qita Lujing:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
#, fuzzy
msgid "Server's port:"
msgstr "Fuwuqi:"
-#: gui/options.cpp:1449
+#: gui/options.cpp:1503
msgid ""
"Which port is used by the server\n"
"Auth with server is not available with non-default port"
msgstr ""
-#: gui/options.cpp:1462
+#: gui/options.cpp:1516
msgid "Apply"
msgstr ""
-#: gui/options.cpp:1628
+#: gui/options.cpp:1682
#, fuzzy
msgid "Failed to change cloud storage!"
msgstr "Wufa baocun Youxi"
-#: gui/options.cpp:1631
+#: gui/options.cpp:1685
msgid "Another cloud storage is already active."
msgstr ""
-#: gui/options.cpp:1667
+#: gui/options.cpp:1721
msgid ""
"The theme you selected does not support your current language. If you want "
"to use this theme you need to switch to another language first."
@@ -1286,51 +1286,51 @@ msgstr ""
"Nin Xuanze de Zhuti Bu Zhichi Xianzai de Yuyan. Qing Xian Qiehuan Dao Qita "
"Yuyan."
-#: gui/options.cpp:1702
+#: gui/options.cpp:1756
msgid "The chosen directory cannot be written to. Please select another one."
msgstr "Zhiding de Mulu Buneng Xieru. Qing Xuanze Qita de Mulu."
-#: gui/options.cpp:1711
+#: gui/options.cpp:1765
msgid "Select directory for GUI themes"
msgstr "Xuanze Jiemian Zhuti de Mulu"
-#: gui/options.cpp:1721
+#: gui/options.cpp:1775
msgid "Select directory for extra files"
msgstr "Xuanze QIta Wenjian Mulu"
-#: gui/options.cpp:1732
+#: gui/options.cpp:1786
msgid "Select directory for plugins"
msgstr "Xuanze Chajian Mulu"
-#: gui/options.cpp:1744
+#: gui/options.cpp:1798
#, fuzzy
msgid "Select directory for Files Manager /root/"
msgstr "Xuanze QIta Wenjian Mulu"
-#: gui/options.cpp:1979
+#: gui/options.cpp:2033
#, c-format
msgid "%llu bytes"
msgstr ""
-#: gui/options.cpp:1987
+#: gui/options.cpp:2041
msgid "<right now>"
msgstr ""
-#: gui/options.cpp:1989
+#: gui/options.cpp:2043
#, fuzzy
msgid "<never>"
msgstr "Yongbu"
-#: gui/options.cpp:2073
+#: gui/options.cpp:2127
#, fuzzy
msgid "Stop server"
msgstr "Fuwuqi:"
-#: gui/options.cpp:2074
+#: gui/options.cpp:2128
msgid "Stop local webserver"
msgstr ""
-#: gui/options.cpp:2165
+#: gui/options.cpp:2219
msgid ""
"Request failed.\n"
"Check your Internet connection."