mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-05 21:29:53 +02:00
Tiny language fix - Thanks Cain!
This commit is contained in:
parent
4668294389
commit
e6ea76eefe
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ Item {
|
||||||
AnonymousProRegular {
|
AnonymousProRegular {
|
||||||
id: pendingCountText;
|
id: pendingCountText;
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
text: root.pendingCount + ' Transactions Pending';
|
text: root.pendingCount + ' Transaction' + (root.pendingCount > 1 ? 's' : '') + ' Pending';
|
||||||
size: 18;
|
size: 18;
|
||||||
color: hifi.colors.blueAccent;
|
color: hifi.colors.blueAccent;
|
||||||
verticalAlignment: Text.AlignVCenter;
|
verticalAlignment: Text.AlignVCenter;
|
||||||
|
|
Loading…
Reference in a new issue