* Services:

- Move backup news to psi.i2p
   - Move default addressbook subscription to i2p-projekt.i2p
   - Remove www.i2p2.i2p from default update lists
   - Add psi.i2p to hosts.txt
   - Update links on help pages to avoid redirects on new website
     and select the correct language
 * SusiDNS: Fix whitespace issues
This commit is contained in:
zzz
2014-02-07 12:52:54 +00:00
parent 8ef3bb3d82
commit 090a790a9d
16 changed files with 60 additions and 41 deletions

View File

@@ -20,6 +20,11 @@ public class Messages {
return Translate.getString(key, _context, BUNDLE_NAME);
}
/** @since 0.9.11 */
public String _(String key, Object o) {
return Translate.getString(key, o, _context, BUNDLE_NAME);
}
public static String getString(String s) {
return Translate.getString(s, I2PAppContext.getGlobalContext(), BUNDLE_NAME);
}