[Scummvm-git-logs] scummvm master -> 6245e3f9cfeccfd0e947cdbd25a3b860c8f62887

lephilousophe noreply at scummvm.org
Thu Aug 15 16:38:29 UTC 2024


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

Summary:
b2135057eb GOB: Fix POTFILES path
6245e3f9cf TWP: Don't try to translate an empty string


Commit: b2135057eb053321dd838023590fd1d3155c4105
    https://github.com/scummvm/scummvm/commit/b2135057eb053321dd838023590fd1d3155c4105
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-08-15T18:37:59+02:00

Commit Message:
GOB: Fix POTFILES path

Changed paths:
    engines/gob/POTFILES


diff --git a/engines/gob/POTFILES b/engines/gob/POTFILES
index 6bfced49089..b7dbd5479e3 100644
--- a/engines/gob/POTFILES
+++ b/engines/gob/POTFILES
@@ -8,5 +8,5 @@ engines/gob/detection/tables_adi5.h
 engines/gob/detection/tables_adibou3.h
 engines/gob/detection/tables_adiboupresente.h
 engines/gob/detection/tables_adiboudchou.h
-engine/gob/detection/tables_nathanvacanes.h
+engines/gob/detection/tables_nathanvacances.h
 engines/gob/detection/tables_pierresmagiques.h


Commit: 6245e3f9cfeccfd0e947cdbd25a3b860c8f62887
    https://github.com/scummvm/scummvm/commit/6245e3f9cfeccfd0e947cdbd25a3b860c8f62887
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-08-15T18:37:59+02:00

Commit Message:
TWP: Don't try to translate an empty string

This generates warnings when updating POT

Changed paths:
    engines/twp/dialogs.cpp


diff --git a/engines/twp/dialogs.cpp b/engines/twp/dialogs.cpp
index 684eb57e296..c15789821fd 100644
--- a/engines/twp/dialogs.cpp
+++ b/engines/twp/dialogs.cpp
@@ -45,16 +45,16 @@ TwpOptionsContainerWidget::TwpOptionsContainerWidget(GuiObject *boss, const Comm
 	text->setAlign(Graphics::TextAlign::kTextAlignStart);
 
 	// I18N: Setting to invert verb colors or keep the original verb colors.
-	_enableInvertVerbColorsGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck1", _("Invert verb colors"), _(""));
+	_enableInvertVerbColorsGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck1", _("Invert verb colors"));
 	// I18N: Setting to use retro or modern fonts.
-	_enableRetroFontsGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck2", _("Retro Fonts"), _(""));
+	_enableRetroFontsGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck2", _("Retro Fonts"));
 	// I18N: Setting to use retro or modern verbs.
-	_enableRetroVerbsGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck3", _("Retro Verbs"), _(""));
+	_enableRetroVerbsGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck3", _("Retro Verbs"));
 	// I18N: Setting to use classic sentence or modern sentence.
-	_enableClassicSentenceGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck4", _("Classic Sentence"), _(""));
+	_enableClassicSentenceGUICheckbox = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.ControlsCheck4", _("Classic Sentence"));
 
 	// I18N: Settings to enable or disable Ransome unbeeped DLC.
-	_enableDLC = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.TextCheck1", _("Ransome *unbeeped* (DLC)"), _(""));
+	_enableDLC = new GUI::CheckboxWidget(widgetsBoss(), "TwpGameOptionsDialog.TextCheck1", _("Ransome *unbeeped* (DLC)"));
 }
 
 void TwpOptionsContainerWidget::defineLayout(GUI::ThemeEval &layouts, const Common::String &layoutName, const Common::String &overlayedLayout) const {




More information about the Scummvm-git-logs mailing list