Merge lp:~om26er/unity/fix-832060 into lp:unity

Proposed by Omer Akram
Status: Merged
Approved by: Neil J. Patel
Approved revision: no longer in the source branch.
Merged at revision: 1424
Proposed branch: lp:~om26er/unity/fix-832060
Merge into: lp:unity
Diff against target: 21 lines (+2/-2)
1 file modified
plugins/unityshell/src/DashSearchBar.cpp (+2/-2)
To merge this branch: bzr merge lp:~om26er/unity/fix-832060
Reviewer Review Type Date Requested Status
Neil J. Patel (community) Approve
Review via email: mp+72769@code.launchpad.net

Description of the change

Change the string 'Refine search' to 'Filter results' to fix bug 832060

To post a comment you must log in.
Revision history for this message
Neil J. Patel (njpatel) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/unityshell/src/DashSearchBar.cpp'
2--- plugins/unityshell/src/DashSearchBar.cpp 2011-08-23 21:36:23 +0000
3+++ plugins/unityshell/src/DashSearchBar.cpp 2011-08-24 17:52:25 +0000
4@@ -91,7 +91,7 @@
5 layered_layout_->SetMaximumWidth(620);
6 layout_->AddView(layered_layout_, 1, nux::MINOR_POSITION_LEFT, nux::MINOR_SIZE_FIX);
7
8- std::string filter_str = _("Refine search");
9+ std::string filter_str = _("Filter results");
10 filter_str+= " ▸";
11 show_filters_ = new nux::StaticCairoText(filter_str.c_str());
12 show_filters_->SetTextColor(nux::Color(1.0f, 1.0f, 1.0f, 1.0f));
13@@ -196,7 +196,7 @@
14
15 void SearchBar::OnShowingFiltersChanged(bool is_showing)
16 {
17- std::string filter_str = _("Refine search");
18+ std::string filter_str = _("Filter results");
19 filter_str += " <small>";
20 filter_str += is_showing ? "▾" : "▸";
21 filter_str += "</small>";