#4316: Wording change: CMC --> MV (#4388)

Co-authored-by: tooomm <tooomm@users.noreply.github.com>
Co-authored-by: ebbit1q <ebbit1q@gmail.com>
This commit is contained in:
Michael Stanaszak 2021-07-27 10:30:55 -05:00 committed by GitHub
parent 00add2a527
commit 904e740460
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ const QString CardFilter::attrName(Attr a)
case AttrManaCost:
return tr("Mana Cost");
case AttrCmc:
return tr("CMC");
return tr("Mana Value");
case AttrRarity:
return tr("Rarity");
case AttrPow:

View file

@ -23,7 +23,7 @@ SetQuery <- ('e'/'set') [:] FlexStringValue
OracleQuery <- 'o' [:] RegexString
CMCQuery <- 'cmc' ws? NumericExpression
CMCQuery <- ('cmc'/'mv') ws? NumericExpression
PowerQuery <- [Pp] 'ow' 'er'? ws? NumericExpression
ToughnessQuery <- [Tt] 'ou' 'ghness'? ws? NumericExpression
RarityQuery <- [rR] ':' RegexString

View file

@ -28,7 +28,7 @@ inline static const QString getNicePropertyName(QString key)
if (key == CardType)
return QCoreApplication::translate("Mtg", "Card Type");
if (key == ConvertedManaCost)
return QCoreApplication::translate("Mtg", "Converted Mana Cost");
return QCoreApplication::translate("Mtg", "Mana Value");
if (key == Colors)
return QCoreApplication::translate("Mtg", "Color(s)");
if (key == Loyalty)