aboutsummaryrefslogtreecommitdiff
path: root/gui/options.cpp
diff options
context:
space:
mode:
authorBen Castricum2019-09-13 08:48:43 +0200
committerThierry Crozat2019-09-14 01:36:37 +0100
commiteee786d71f38d9ab4769aa881ee2d56c8bf8b137 (patch)
tree6090c672713e86c72e9da28610cbc9efe08777db /gui/options.cpp
parent04d522121bfd3d42426ac8766fa0814286a02d8b (diff)
downloadscummvm-rg350-eee786d71f38d9ab4769aa881ee2d56c8bf8b137.tar.gz
scummvm-rg350-eee786d71f38d9ab4769aa881ee2d56c8bf8b137.tar.bz2
scummvm-rg350-eee786d71f38d9ab4769aa881ee2d56c8bf8b137.zip
GUI: Change "saves" to "saved games" in labels
Diffstat (limited to 'gui/options.cpp')
-rw-r--r--gui/options.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index 9e77aaa4cb..8548cc99a4 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -1934,10 +1934,10 @@ void GlobalOptionsDialog::addCloudControls(GuiObject *boss, const Common::String
_storageLastSyncDesc = new StaticTextWidget(boss, prefix + "StorageLastSyncDesc", _("Last sync:"), _("When was the last time saved games were synced with this storage"));
_storageLastSync = new StaticTextWidget(boss, prefix + "StorageLastSyncLabel", _("<never>"), "", ThemeEngine::kFontStyleNormal);
if (lowres)
- _storageSyncHint = new StaticTextWidget(boss, prefix + "StorageSyncHint", _c("Saves sync automatically on launch, after saving and on loading.", "lowres"), "", ThemeEngine::kFontStyleNormal);
+ _storageSyncHint = new StaticTextWidget(boss, prefix + "StorageSyncHint", _c("Saved games sync automatically on launch, after saving and on loading.", "lowres"), "", ThemeEngine::kFontStyleNormal);
else
- _storageSyncHint = new StaticTextWidget(boss, prefix + "StorageSyncHint", _("Saves sync automatically on launch, after saving and on loading."), "", ThemeEngine::kFontStyleNormal);
- _storageSyncSavesButton = new ButtonWidget(boss, prefix + "SyncSavesButton", _("Sync now"), _("Start saves sync"), kSyncSavesStorageCmd);
+ _storageSyncHint = new StaticTextWidget(boss, prefix + "StorageSyncHint", _("Saved games sync automatically on launch, after saving and on loading."), "", ThemeEngine::kFontStyleNormal);
+ _storageSyncSavesButton = new ButtonWidget(boss, prefix + "SyncSavesButton", _("Sync now"), _("Start saved games sync"), kSyncSavesStorageCmd);
if (lowres)
_storageDownloadHint = new StaticTextWidget(boss, prefix + "StorageDownloadHint", _c("You can download game files from your cloud ScummVM folder:", "lowres"));