Use the word "Active" instead of "Current"

This commit is contained in:
drdev
2014-09-16 20:42:45 +00:00
parent 084621f946
commit 8bade53caa

View File

@@ -154,7 +154,7 @@ public abstract class Achievement {
public String getSubTitle() {
if (showBest) {
if (showCurrent) {
return "Best: " + formatValue(best) + " Current: " + formatValue(current);
return "Best: " + formatValue(best) + " Active: " + formatValue(current);
}
return "Best: " + formatValue(best);
}