Search Results: reformat "no result" text for easier translation

This commit is contained in:
orelogo 2016-07-13 18:53:18 -04:00
parent 658594e90f
commit b4b51e6e58
2 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ public class SearchFragment extends ListFragment {
setListShown(true);
String query = getArguments().getString(ARG_QUERY);
setEmptyText(getString(R.string.no_results_for_query) + " \"" + query + "\"");
setEmptyText(getString(R.string.no_results_for_query, query));
}
private final SearchlistAdapter.ItemAccess itemAccess = new SearchlistAdapter.ItemAccess() {

View File

@ -421,7 +421,7 @@
<string name="search_status_no_results">No results were found</string>
<string name="search_label">Search</string>
<string name="found_in_title_label">Found in title</string>
<string name="no_results_for_query">No results were found for</string>
<string name="no_results_for_query">No results were found for \"%1$s\"</string>
<!-- OPML import and export -->
<string name="opml_import_txtv_button_lable">OPML files allow you to move your podcasts from one podcatcher to another.</string>