merge of '6416a3499b7666362959e13c5996a3c925a80b60'

and 'd36896148eb8067f68c653029fe60c09564a2bd8'
This commit is contained in:
walking
2009-10-30 14:05:45 +00:00
5 changed files with 38 additions and 16 deletions

View File

@ -115,9 +115,9 @@ public class ConfigStatsHandler extends FormHandler {
_context.router().setConfigSetting(StatManager.PROP_STAT_FULL, "" + _isFull);
boolean ok = _context.router().saveConfig();
if (ok)
addFormNotice("Stat filter and location updated successfully to: " + stats.toString());
addFormNotice(_("Stat filter and location updated successfully to") + ": " + stats.toString());
else
addFormError("Failed to update the stat filter and location");
addFormError(_("Failed to update the stat filter and location"));
addFormNotice("Graph list updated, may take up to 60s to be reflected here and on the <a href=\"graphs.jsp\">Graphs Page</a>");
}

View File

@ -110,7 +110,7 @@ class ProfileOrganizerRenderer {
switch (tier) {
case 1: buf.append(_("Fast, High Capacity")); break;
case 2: buf.append(_("High Capacity")); break;
case 3: buf.append(_("Not Failing")); break;
case 3: buf.append(_("Standard")); break;
default: buf.append(_("Failing")); break;
}
if (isIntegrated) buf.append(", ").append(_("Integrated"));