diff options
author | Ben Castricum | 2019-09-13 08:48:43 +0200 |
---|---|---|
committer | Thierry Crozat | 2019-09-14 01:36:37 +0100 |
commit | eee786d71f38d9ab4769aa881ee2d56c8bf8b137 (patch) | |
tree | 6090c672713e86c72e9da28610cbc9efe08777db /gui | |
parent | 04d522121bfd3d42426ac8766fa0814286a02d8b (diff) | |
download | scummvm-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')
-rw-r--r-- | gui/options.cpp | 6 |
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")); |