mirror of
https://github.com/i2p/i2p.i2p.git
synced 2024-12-06 19:27:00 +01:00
Fix ngettext in LogWriter
This commit is contained in:
@@ -158,7 +158,7 @@ abstract class LogWriter implements Runnable {
|
||||
String arrows = reverse ? (nohtml ? "vvv" : "↓↓↓")
|
||||
: (nohtml ? "^^^" : "↑↑↑");
|
||||
return LogRecordFormatter.getWhen(_manager, lastRecord) + ' ' + arrows + ' ' +
|
||||
ngettext("1 similar message omitted", "{0} similar messages omitted", dupCount) + ' ' + arrows +
|
||||
ngettext("{0} similar message omitted", "{0} similar messages omitted", dupCount) + ' ' + arrows +
|
||||
LogRecordFormatter.NL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user