From 1513701d0ef8935f4fa0748cec7d3fb577b86f8f Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 7 Dec 2013 23:02:29 -0800 Subject: [PATCH] Oops, make things translatable. --- UI/MainScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/MainScreen.cpp b/UI/MainScreen.cpp index b00bf034bf..d820bb6f8c 100644 --- a/UI/MainScreen.cpp +++ b/UI/MainScreen.cpp @@ -534,7 +534,7 @@ void GameBrowser::Refresh() { if (allowBrowsing_) { std::string caption = IsCurrentPathPinned() ? "-" : "+"; if (!*gridStyle_) { - caption = IsCurrentPathPinned() ? "Unpin" : "Pin"; + caption = IsCurrentPathPinned() ? m->T("UnpinPath", "Unpin") : m->T("PinPath", "Pin"); } gameList_->Add(new UI::Button(caption, new UI::LinearLayoutParams(UI::FILL_PARENT, UI::FILL_PARENT)))-> OnClick.Handle(this, &GameBrowser::PinToggleClick);