[Scummvm-git-logs] scummvm master -> d62f46393546c8607c18236de0d5bf5eca862bc0
bgK
bastien.bouclet at gmail.com
Wed Dec 4 07:38:17 UTC 2019
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:
d62f463935 GUI: Fix translations for the mass add button
Commit: d62f46393546c8607c18236de0d5bf5eca862bc0
https://github.com/scummvm/scummvm/commit/d62f46393546c8607c18236de0d5bf5eca862bc0
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2019-12-04T08:37:18+01:00
Commit Message:
GUI: Fix translations for the mass add button
Changed paths:
gui/launcher.cpp
po/POTFILES
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 15866c0..94af647 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -150,7 +150,7 @@ void LauncherDialog::build() {
DropdownButtonWidget *loadButton =
new DropdownButtonWidget(this, "Launcher.LoadGameButton", _("~L~oad..."), _("Load saved game for selected game"), kLoadGameCmd);
#ifdef ENABLE_EVENTRECORDER
- loadButton->appendEntry(_s("Record..."), kRecordGameCmd);
+ loadButton->appendEntry(_("Record..."), kRecordGameCmd);
#endif
_loadButton = loadButton;
@@ -158,7 +158,7 @@ void LauncherDialog::build() {
if (g_system->getOverlayWidth() > 320) {
DropdownButtonWidget *addButton =
new DropdownButtonWidget(this, "Launcher.AddGameButton", _("~A~dd Game..."), _("Add games to the list"), kAddGameCmd);
- addButton->appendEntry(_s("Mass Add..."), kMassAddGameCmd);
+ addButton->appendEntry(_("Mass Add..."), kMassAddGameCmd);
_addButton = addButton;
_editButton =
diff --git a/po/POTFILES b/po/POTFILES
index dcce351..f5e0ddd 100644
--- a/po/POTFILES
+++ b/po/POTFILES
@@ -63,7 +63,6 @@ backends/graphics/opengl/opengl-graphics.cpp
backends/graphics/openglsdl/openglsdl-graphics.cpp
backends/graphics/surfacesdl/surfacesdl-graphics.cpp
backends/graphics/sdl/sdl-graphics.cpp
-backends/graphics/wincesdl/wincesdl-graphics.cpp
backends/keymapper/remap-dialog.cpp
backends/midi/windows.cpp
backends/networking/sdl_net/handlers/createdirectoryhandler.cpp
@@ -86,8 +85,4 @@ backends/platform/symbian/src/SymbianActions.cpp
backends/platform/tizen/form.cpp
backends/platform/tizen/fs.cpp
backends/platform/wii/options.cpp
-backends/platform/wince/CEActionsPocket.cpp
-backends/platform/wince/CEActionsSmartphone.cpp
-backends/platform/wince/CELauncherDialog.cpp
-backends/platform/wince/wince-sdl.cpp
backends/updates/macosx/macosx-updates.mm
More information about the Scummvm-git-logs
mailing list