translate link label properly

dbus-notify
Zlatin Balevsky 2022-08-05 00:13:47 +01:00
parent 869b716cae
commit fcf290573a
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class CollectionLinkLabel extends MuLinkLabel {
StringBuffer sb = new StringBuffer()
SizeFormatter.format(link.totalSize, sb)
return HTMLSanitizer.escape(link.name) + " (" + link.numFiles + " files " +
sb.toString() + trans("BYTES_SHORT") + ")"
return HTMLSanitizer.escape(link.name) + " (" + link.numFiles + " " + trans("FILES") +
" " + sb.toString() + trans("BYTES_SHORT") + ")"
}
}