Tiny language fix - Thanks Cain!

This commit is contained in:
Zach Fox 2017-09-29 15:44:44 -07:00
parent 4668294389
commit e6ea76eefe

View file

@ -215,7 +215,7 @@ Item {
AnonymousProRegular {
id: pendingCountText;
anchors.fill: parent;
text: root.pendingCount + ' Transactions Pending';
text: root.pendingCount + ' Transaction' + (root.pendingCount > 1 ? 's' : '') + ' Pending';
size: 18;
color: hifi.colors.blueAccent;
verticalAlignment: Text.AlignVCenter;