shared_string_history (4)

This commit is contained in:
sonora 2015-03-09 09:17:39 +01:00
parent 9ece070dd3
commit dc056043fe
2 changed files with 1 additions and 2 deletions

View file

@ -140,7 +140,6 @@
<string name="osmand_development_plugin_description">Shows the settings for development and debugging features like route simulation or rendering performance indication.</string>
<string name="debugging_and_development">OsmAnd development</string>
<string name="recents">RECENTS</string>
<string name="showed_on_map">Shown on map</string>
<string name="rename_failed">Rename failed.</string>
<string name="days_behind">days behind</string>

View file

@ -43,7 +43,7 @@ public class DashRecentsFragment extends DashLocationFragment {
Typeface typeface = FontCache.getRobotoMedium(getActivity());
((TextView) view.findViewById(R.id.fav_text)).setTypeface(typeface);
((TextView) view.findViewById(R.id.fav_text)).setText(Algorithms
.capitalizeFirstLetterAndLowercase(getString(R.string.recents)));
.capitalizeFirstLetterAndLowercase(getString(R.shared_string_history)));
((Button) view.findViewById(R.id.show_all)).setTypeface(typeface);
(view.findViewById(R.id.show_all)).setOnClickListener(new View.OnClickListener() {