[Scummvm-git-logs] scummvm master -> ab2b2b23962b6ae3a8c02f4c934f99227189d1a2
sev-
noreply at scummvm.org
Fri Nov 10 23:00:23 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ab2b2b2396 GUI: CLarified captions for downloading shaders and icons
Commit: ab2b2b23962b6ae3a8c02f4c934f99227189d1a2
https://github.com/scummvm/scummvm/commit/ab2b2b23962b6ae3a8c02f4c934f99227189d1a2
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-11-11T00:00:18+01:00
Commit Message:
GUI: CLarified captions for downloading shaders and icons
THe users get confused as they think it is some kind of a refresh.
Use "Download Icons" instead of "Update Icons". Same for the shaders.
Changed paths:
gui/options.cpp
diff --git a/gui/options.cpp b/gui/options.cpp
index 49b87f5bf62..9d11f4e9054 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -1625,7 +1625,7 @@ void OptionsDialog::addGraphicControls(GuiObject *boss, const Common::String &pr
#ifdef USE_CLOUD
#ifdef USE_LIBCURL
- _updateShadersButton = new ButtonWidget(boss, prefix + "UpdateShadersButton", _("Update Shaders"), _("Check for updates of shader packs"), kUpdateShadersCmd);
+ _updateShadersButton = new ButtonWidget(boss, prefix + "UpdateShadersButton", _("Download Shaders"), _("Check on the scummvm.org website for updates of shader packs"), kUpdateShadersCmd);
#endif
#endif
@@ -2611,7 +2611,7 @@ void GlobalOptionsDialog::addGUIControls(GuiObject *boss, const Common::String &
#ifdef USE_CLOUD
#ifdef USE_LIBCURL
- new ButtonWidget(boss, prefix + "UpdateIconsButton", _("Update Icons"), _("Check for updates of icon packs"), kUpdateIconsCmd);
+ new ButtonWidget(boss, prefix + "UpdateIconsButton", _("Download Icons"), _("Check on the scummvm.org website for updates of icon packs"), kUpdateIconsCmd);
#endif
#endif
}
More information about the Scummvm-git-logs
mailing list