Make deck editor filter translatable ; extracted new translations; Fix #3488 (#3490)

* Fix #3488 ; extracted new translations

* Make operators translatable, too
This commit is contained in:
ctrlaltca 2019-01-08 03:50:36 +01:00 committed by Zach H
parent 463ef13fe0
commit 4eda7cda9e
7 changed files with 1216 additions and 1019 deletions

View file

@ -1,10 +1,13 @@
#ifndef CARDFILTER_H
#define CARDFILTER_H
#include <QObject>
#include <QString>
class CardFilter
class CardFilter : public QObject
{
Q_OBJECT
public:
enum Type
{
@ -54,8 +57,8 @@ public:
return a;
}
static const char *typeName(Type t);
static const char *attrName(Attr a);
static const QString typeName(Type t);
static const QString attrName(Attr a);
};
#endif