aboutsummaryrefslogtreecommitdiff
path: root/gui/options.cpp
diff options
context:
space:
mode:
authorAlexander Tkachev2019-07-30 13:06:03 +0700
committerMatan Bareket2019-07-30 14:51:41 -0400
commitcffd6d79abe613201db64995bf4779edc77c9858 (patch)
treea1a704b0ec3f57ac5a1a03538f0f2c42d1f16633 /gui/options.cpp
parentf6a17e679f4fac2fda21dc7f64565a0dc4a10ca1 (diff)
downloadscummvm-rg350-cffd6d79abe613201db64995bf4779edc77c9858.tar.gz
scummvm-rg350-cffd6d79abe613201db64995bf4779edc77c9858.tar.bz2
scummvm-rg350-cffd6d79abe613201db64995bf4779edc77c9858.zip
GUI: Fix a label in Cloud tab
Diffstat (limited to 'gui/options.cpp')
-rw-r--r--gui/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index 6645e9db67..c6c46d2bae 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -1875,7 +1875,7 @@ void GlobalOptionsDialog::addCloudControls(GuiObject *boss, const Common::String
_storagePopUp->appendEntry(list[i], i);
_storagePopUp->setSelected(_selectedStorageIndex);
- _storageDisabledHint = new StaticTextWidget(boss, prefix + "StorageDisabledHint", _c("4. Storage is yet disabled. Verify that username is correct and enable it:", context));
+ _storageDisabledHint = new StaticTextWidget(boss, prefix + "StorageDisabledHint", _c("4. Storage is not yet enabled. Verify that username is correct and enable it:", context));
_storageEnableButton = new ButtonWidget(boss, prefix + "StorageEnableButton", _("Enable storage"), _("Confirm you want to use this account for this storage"), kEnableStorageCmd);
_storageUsernameDesc = new StaticTextWidget(boss, prefix + "StorageUsernameDesc", _("Username:"), _("Username used by this storage"));