* 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

@@ -30,6 +30,11 @@ public class Messages extends Translate {
return Translate.getString(s, o, ctx, BUNDLE_NAME);
}
/** two params @since 0.7.14 */
public static String getString(String s, Object o, Object o2, I2PAppContext ctx) {
return Translate.getString(s, o, o2, ctx, BUNDLE_NAME);
}
/** translate (ngettext) @since 0.7.14 */
public static String getString(int n, String s, String p, I2PAppContext ctx) {
return Translate.getString(n, s, p, ctx, BUNDLE_NAME);