BBVS: Remove guitar minigame strings from translation.

Although they're shown in our GUI, they were not supposed to be
translatable, rather extracted from the original executable
This commit is contained in:
Eugene Sandulenko 2016-11-24 11:26:23 +01:00
parent 2fd5490de4
commit 89a9c452ed

View File

@ -23,7 +23,6 @@
#include "bbvs/minigames/bbairguitar.h"
#include "common/savefile.h"
#include "common/translation.h"
#include "gui/message.h"
#include "gui/filebrowser-dialog.h"
@ -1230,9 +1229,9 @@ bool MinigameBbAirGuitar::querySaveModifiedDialog() {
Original ok button caption: "Yeah, heh, heh, save it!"
Original discard button caption: "Who cares? It sucked!"
*/
GUI::MessageDialog query(_("Hey Beavis - you didn't save that last Jam!"),
_("Save it!"),
_("It sucked!"));
GUI::MessageDialog query("Hey Beavis - you didn't save that last Jam!",
"Save it!",
"It sucked!");
return query.runModal() == GUI::kMessageOK;
}