aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorThierry Crozat2015-10-11 18:57:54 +0100
committerThierry Crozat2015-10-11 18:57:54 +0100
commitf2827f0fe5ad166f12e0fb72686e9a7f6d1018d0 (patch)
tree96eae718cf7169a319247f82c6eff1e671d4ea1d /gui
parenteba16c05d7952b88f7de8d39c8081f5da30cbff1 (diff)
downloadscummvm-rg350-f2827f0fe5ad166f12e0fb72686e9a7f6d1018d0.tar.gz
scummvm-rg350-f2827f0fe5ad166f12e0fb72686e9a7f6d1018d0.tar.bz2
scummvm-rg350-f2827f0fe5ad166f12e0fb72686e9a7f6d1018d0.zip
I18N: Mark additional string for translation
Diffstat (limited to 'gui')
-rw-r--r--gui/recorderdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/recorderdialog.cpp b/gui/recorderdialog.cpp
index 5617d2ba9a..2d74cebbb6 100644
--- a/gui/recorderdialog.cpp
+++ b/gui/recorderdialog.cpp
@@ -171,7 +171,7 @@ void RecorderDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
const EnginePlugin *plugin = 0;
GameDescriptor desc = EngineMan.findGame(gameId, &plugin);
g_system->getTimeAndDate(t);
- EditRecordDialog editDlg("Unknown Author", Common::String::format("%.2d.%.2d.%.4d ", t.tm_mday, t.tm_mon, 1900 + t.tm_year) + desc.description(), "");
+ EditRecordDialog editDlg(_("Unknown Author"), Common::String::format("%.2d.%.2d.%.4d ", t.tm_mday, t.tm_mon, 1900 + t.tm_year) + desc.description(), "");
if (editDlg.runModal() != kOKCmd) {
return;
}