I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit c69c58da authored by zzz's avatar zzz
Browse files

bubble text ngettext fix

parent 6dcf56c0
No related branches found
No related tags found
No related merge requests found
Pipeline #2244 passed
...@@ -676,7 +676,7 @@ class Daemon { ...@@ -676,7 +676,7 @@ class Daemon {
ClientAppManager cmgr = I2PAppContext.getGlobalContext().clientAppManager(); ClientAppManager cmgr = I2PAppContext.getGlobalContext().clientAppManager();
if (cmgr != null) { if (cmgr != null) {
int nc = cmgr.getBubbleCount(PortMapper.SVC_SUSIDNS) + nnew; int nc = cmgr.getBubbleCount(PortMapper.SVC_SUSIDNS) + nnew;
String msg = ngettext("1 new host", "{0} new hosts", nc); String msg = ngettext("{0} new host", "{0} new hosts", nc);
cmgr.setBubble(PortMapper.SVC_SUSIDNS, nc, msg); cmgr.setBubble(PortMapper.SVC_SUSIDNS, nc, msg);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment