Oops, make things translatable.

This commit is contained in:
Unknown W. Brackets
2013-12-14 22:36:42 -08:00
parent 4bc86afd5e
commit 1513701d0e
+1 -1
View File
@@ -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);