mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-19 13:27:35 +02:00
Merge pull request #1374 from psgreco/master-lbtc
Use LBTC instead of L-BTC in QT
This commit is contained in:
commit
60cf64e070
1 changed files with 6 additions and 6 deletions
|
|
@ -60,10 +60,10 @@ QString BitcoinUnits::longName(int unit)
|
||||||
}
|
}
|
||||||
switch(unit)
|
switch(unit)
|
||||||
{
|
{
|
||||||
case BTC: return QString("L-BTC");
|
case BTC: return QString("LBTC");
|
||||||
case mBTC: return QString("mL-BTC");
|
case mBTC: return QString("mLBTC");
|
||||||
case uBTC: return QString::fromUtf8("μL-BTC");
|
case uBTC: return QString::fromUtf8("μLBTC");
|
||||||
case SAT: return QString("Satoshi (L-sat)");
|
case SAT: return QString("Satoshi (Lsat)");
|
||||||
default: return QString("???");
|
default: return QString("???");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -75,8 +75,8 @@ QString BitcoinUnits::shortName(int unit)
|
||||||
}
|
}
|
||||||
switch(unit)
|
switch(unit)
|
||||||
{
|
{
|
||||||
case uBTC: return QString::fromUtf8("L-bits");
|
case uBTC: return QString::fromUtf8("Lbits");
|
||||||
case SAT: return QString("L-sat");
|
case SAT: return QString("Lsat");
|
||||||
default: return longName(unit);
|
default: return longName(unit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue