Another translatable string

This commit is contained in:
cpfeiffer 2015-09-01 23:56:14 +02:00
parent da5df5621e
commit 536b2bd8a0
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class WeekStepsChartFragment extends AbstractChartFragment {
private void setupTodayStepsChart() { private void setupTodayStepsChart() {
mTodayStepsChart.setBackgroundColor(BACKGROUND_COLOR); mTodayStepsChart.setBackgroundColor(BACKGROUND_COLOR);
mTodayStepsChart.setDescriptionColor(DESCRIPTION_COLOR); mTodayStepsChart.setDescriptionColor(DESCRIPTION_COLOR);
mTodayStepsChart.setDescription("Steps today, target: " + mTargetSteps); mTodayStepsChart.setDescription(getContext().getString(R.string.weeksteps_today_steps_description, mTargetSteps));
mTodayStepsChart.setNoDataTextDescription(""); mTodayStepsChart.setNoDataTextDescription("");
mTodayStepsChart.setNoDataText(""); mTodayStepsChart.setNoDataText("");
} }