From 4968cd56e5b1d48962938d9202c3ea58fc9e3851 Mon Sep 17 00:00:00 2001 From: vnctdj Date: Sun, 22 Sep 2013 12:43:54 +0200 Subject: [PATCH] Some translation changes "DeleteSaveData" & "DeleteGame" are now replaced by "ConfirmDelete" --- UI/GameScreen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/GameScreen.cpp b/UI/GameScreen.cpp index 661fe17432..b67b1fc797 100644 --- a/UI/GameScreen.cpp +++ b/UI/GameScreen.cpp @@ -156,7 +156,7 @@ UI::EventReturn GameScreen::OnDeleteSaveData(UI::EventParams &e) { GameInfo *info = g_gameInfoCache.GetInfo(gamePath_, true); if (info) { screenManager()->push( - new PromptScreen(d->T("DeleteConfirmAll", "Do you really want to delete all\nyour save data for this game?"), ga->T("DeleteSaveData"), d->T("Cancel"), + new PromptScreen(d->T("DeleteConfirmAll", "Do you really want to delete all\nyour save data for this game?"), ga->T("ConfirmDelete"), d->T("Cancel"), std::bind(&GameScreen::CallbackDeleteSaveData, this, placeholder::_1))); } @@ -177,7 +177,7 @@ UI::EventReturn GameScreen::OnDeleteGame(UI::EventParams &e) { GameInfo *info = g_gameInfoCache.GetInfo(gamePath_, true); if (info) { screenManager()->push( - new PromptScreen(d->T("DeleteConfirmGame", "Do you really want to delete this game\nfrom your device? You can't undo this."), ga->T("DeleteGame"), d->T("Cancel"), + new PromptScreen(d->T("DeleteConfirmGame", "Do you really want to delete this game\nfrom your device? You can't undo this."), ga->T("ConfirmDelete"), d->T("Cancel"), std::bind(&GameScreen::CallbackDeleteGame, this, placeholder::_1))); }