* graphs.jsp: Tag some more

This commit is contained in:
zzz
2010-06-02 18:16:43 +00:00
parent 7cc8e51d73
commit c5ea51beec
6 changed files with 28 additions and 3 deletions

View File

@@ -51,6 +51,11 @@ public abstract class HelperBase {
return Messages.getString(s, o, _context);
}
/** two params @since 0.7.14 */
public String _(String s, Object o, Object o2) {
return Messages.getString(s, o, o2, _context);
}
/** translate (ngettext) @since 0.7.14 */
public String _(int n, String s, String p) {
return Messages.getString(n, s, p, _context);