[Scummvm-git-logs] scummvm master -> 759cadd829ed36693fc7c99febbbe3c6101bb0ff

sev- noreply at scummvm.org
Sun Sep 29 19:28:35 UTC 2024


This automated email contains information about 6 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
1724ce92bf JANITORIAL: FREESCAPE: Fix typo in metaengine
a844a6b528 JANITORIAL: SCUMM: MOONBASE: Fix typos in MapGeneratorDialog
92ad64cf4b JANITORIAL: GUI: Fix typos in launcher
ae27985eec JANITORIAL: Fix typo in main
e533413c34 JANITORIAL: Fix typo in helpTabs Touch Controls
759cadd829 JANITORIAL: STARK: Fix typo in initKeymaps


Commit: 1724ce92bf8872525d60bc1b9b29a4bf377ab277
    https://github.com/scummvm/scummvm/commit/1724ce92bf8872525d60bc1b9b29a4bf377ab277
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2024-09-29T21:28:28+02:00

Commit Message:
JANITORIAL: FREESCAPE: Fix typo in metaengine

Changed paths:
    engines/freescape/metaengine.cpp


diff --git a/engines/freescape/metaengine.cpp b/engines/freescape/metaengine.cpp
index 7e3b52ff112..7a4aee4d24f 100644
--- a/engines/freescape/metaengine.cpp
+++ b/engines/freescape/metaengine.cpp
@@ -62,7 +62,7 @@ static const ADExtraGuiOptionsMap optionsList[] = {
 		GAMEOPTION_AUTOMATIC_DRILLING,
 		{
 			_s("Automatic drilling"),
-			_s("Allow to succefully drill in any part of the area in Driller"),
+			_s("Allow to successfully drill in any part of the area in Driller"),
 			"automatic_drilling",
 			false,
 			0,


Commit: a844a6b52838ca9c50060f7338759b43941c498b
    https://github.com/scummvm/scummvm/commit/a844a6b52838ca9c50060f7338759b43941c498b
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2024-09-29T21:28:28+02:00

Commit Message:
JANITORIAL: SCUMM: MOONBASE: Fix typos in MapGeneratorDialog

Changed paths:
    engines/scumm/he/moonbase/dialog-mapgenerator.cpp


diff --git a/engines/scumm/he/moonbase/dialog-mapgenerator.cpp b/engines/scumm/he/moonbase/dialog-mapgenerator.cpp
index efd83d37f06..478da2521cc 100644
--- a/engines/scumm/he/moonbase/dialog-mapgenerator.cpp
+++ b/engines/scumm/he/moonbase/dialog-mapgenerator.cpp
@@ -55,15 +55,15 @@ MapGeneratorDialog::MapGeneratorDialog(bool demo) : Dialog("MapGenerator"), _ref
 	_dialogTitle = new GUI::StaticTextWidget(this, "MapGenerator.Title", _("Random Map Options"));
 	_dialogTitle->setAlign(Graphics::kTextAlignCenter);
 
-	// I18N: Map generator algorthims
+	// I18N: Map generator algorithms
 	_algorDesc = new GUI::StaticTextWidget(this, "MapGenerator.Algorithm", _("Algorithm"));
 	_algorDesc->setAlign(Graphics::kTextAlignLeft);
 	_algorGroup = new GUI::RadiobuttonGroup(this, kAlgorCmd);
-	// I18N: Spiff algorthim
+	// I18N: Spiff algorithm
 	_algorSpiff = new GUI::RadiobuttonWidget(this, "MapGenerator.AlgorithmSpiff", _algorGroup, SPIFF_GEN, _("Spiff"));
-	// I18N: Katton algorthim
+	// I18N: Katton algorithm
 	_algorSpiff = new GUI::RadiobuttonWidget(this, "MapGenerator.AlgorithmKatton", _algorGroup, KATTON_GEN, _("Katton"));
-	// I18N: Random algorthim
+	// I18N: Random algorithm
 	_algorRandom = new GUI::CheckboxWidget(this, "MapGenerator.AlgorithmRandom", _("Random"), _("Picks the map algorithm randomly."), kAlgorRandCmd);
 
 	// I18N: Map sizes


Commit: 92ad64cf4bc770513d28bc7b507bf435c966f9b2
    https://github.com/scummvm/scummvm/commit/92ad64cf4bc770513d28bc7b507bf435c966f9b2
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2024-09-29T21:28:28+02:00

Commit Message:
JANITORIAL: GUI: Fix typos in launcher

Changed paths:
    gui/launcher.cpp


diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index c4b9075ff1d..54d800a817b 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -1256,7 +1256,7 @@ void LauncherSimple::groupEntries(const Common::Array<LauncherEntry> &metadata)
 			attrs.push_back(language);
 		}
 		_list->setGroupHeaderFormat(Common::U32String(""), Common::U32String(""));
-		// I18N: List group when no languageis specified
+		// I18N: List group when no language is specified
 		metadataNames[""] = _("Language not detected");
 		const Common::LanguageDescription *l = Common::g_languages;
 		for (; l->code; ++l) {
@@ -1404,7 +1404,7 @@ void LauncherGrid::groupEntries(const Common::Array<LauncherEntry> &metadata) {
 			attrs.push_back(iter->engineid);
 		}
 		_grid->setGroupHeaderFormat(Common::U32String(""), Common::U32String(""));
-		// I18N: List grouping when no enginr is specified
+		// I18N: List grouping when no engine is specified
 		metadataNames[""] = _("Unknown Engine");
 		Common::HashMap<Common::String, MetadataEngine, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo>::iterator i = _metadataParser._engineInfo.begin();
 		for (; i != _metadataParser._engineInfo.end(); ++i) {


Commit: ae27985eecd84588413671270940e3b6e4550b6c
    https://github.com/scummvm/scummvm/commit/ae27985eecd84588413671270940e3b6e4550b6c
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2024-09-29T21:28:28+02:00

Commit Message:
JANITORIAL: Fix typo in main

Changed paths:
    base/main.cpp


diff --git a/base/main.cpp b/base/main.cpp
index ca4ab8904e7..3d506b0438f 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -650,7 +650,7 @@ extern "C" int scummvm_main(int argc, const char * const argv[]) {
 				"\n"
 				"Repeat steps 1 and 6 for each game."
 				), _("Ok"),
-				// I18N: A button caption to dismiss amessage and read it later
+				// I18N: A button caption to dismiss a message and read it later
 				_("Read Later"), Graphics::kTextAlignLeft);
 
 			if (alert.runModal() != GUI::kMessageOK)


Commit: e533413c348720cecb037ab90856921466003202
    https://github.com/scummvm/scummvm/commit/e533413c348720cecb037ab90856921466003202
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2024-09-29T21:28:28+02:00

Commit Message:
JANITORIAL: Fix typo in helpTabs Touch Controls

Changed paths:
    backends/platform/android/android.cpp
    backends/platform/ios7/ios7_osys_misc.mm


diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp
index 807f215e3ab..6a1521a66e4 100644
--- a/backends/platform/android/android.cpp
+++ b/backends/platform/android/android.cpp
@@ -1119,7 +1119,7 @@ _s(
 "To open the virtual keyboard, long press on the controller icon at the top right of the screen, or tap on any editable text field. To hide the virtual keyboard, tap the controller icon again, or tap outside the text field.\n"
 "\n"
 "\n"
-"  ![Keybpard icon](keyboard.png \"Keyboard icon\"){w=10em}\n"
+"  ![Keyboard icon](keyboard.png \"Keyboard icon\"){w=10em}\n"
 "\n"
 	),
 
diff --git a/backends/platform/ios7/ios7_osys_misc.mm b/backends/platform/ios7/ios7_osys_misc.mm
index 176dcbe8a45..5feb7e553f6 100644
--- a/backends/platform/ios7/ios7_osys_misc.mm
+++ b/backends/platform/ios7/ios7_osys_misc.mm
@@ -308,7 +308,7 @@ _s(
 "To open the virtual keyboard, long press on the controller icon at the top right of the screen, perform a pinch gesture (zoom out) or tap on any editable text field. To hide the virtual keyboard, tap the controller icon again, do an opposite pinch gesture (zoom in) or tap outside the text field.\n"
 "\n"
 "\n"
-"  ![Keybpard icon](keyboard.png \"Keyboard icon\"){w=10em}\n"
+"  ![Keyboard icon](keyboard.png \"Keyboard icon\"){w=10em}\n"
 "\n"
 ),
 _s("External keyboard"),


Commit: 759cadd829ed36693fc7c99febbbe3c6101bb0ff
    https://github.com/scummvm/scummvm/commit/759cadd829ed36693fc7c99febbbe3c6101bb0ff
Author: tunnelsociety (150493071+tunnelsociety at users.noreply.github.com)
Date: 2024-09-29T21:28:28+02:00

Commit Message:
JANITORIAL: STARK: Fix typo in initKeymaps

Changed paths:
    engines/stark/metaengine.cpp


diff --git a/engines/stark/metaengine.cpp b/engines/stark/metaengine.cpp
index a6077170dc4..18e9351ef77 100644
--- a/engines/stark/metaengine.cpp
+++ b/engines/stark/metaengine.cpp
@@ -181,7 +181,7 @@ Common::KeymapArray StarkMetaEngine::initKeymaps(const char *target) const {
 	using namespace Common;
 	using namespace Stark;
 
-	Keymap *engineKeyMap = new Keymap(Keymap::kKeymapTypeGame, "stark-default", _("Default keymapppings"));
+	Keymap *engineKeyMap = new Keymap(Keymap::kKeymapTypeGame, "stark-default", _("Default keymappings"));
 	Keymap *gameKeyMap = new Keymap(Keymap::kKeymapTypeGame, "game-shortcuts", _("Game keymappings"));
 
 	Action *act;




More information about the Scummvm-git-logs mailing list