Cockatrice/cockatrice/src/game_graphics/board/translate_counter_name.cpp
Lukas Brübach 558bc2741c [Game] Move graphics files into game_graphics
Took 1 minute

Took 2 minutes

Took 23 seconds

Took 1 minute

Took 2 seconds
2026-06-09 08:25:26 +02:00

11 lines
615 B
C++

#include "translate_counter_name.h"
const QMap<QString, QString> TranslateCounterName::translated = {
{"life", QT_TRANSLATE_NOOP("TranslateCounterName", "Life")},
{"w", QT_TRANSLATE_NOOP("TranslateCounterName", "White")},
{"u", QT_TRANSLATE_NOOP("TranslateCounterName", "Blue")},
{"b", QT_TRANSLATE_NOOP("TranslateCounterName", "Black")},
{"r", QT_TRANSLATE_NOOP("TranslateCounterName", "Red")},
{"g", QT_TRANSLATE_NOOP("TranslateCounterName", "Green")},
{"x", QT_TRANSLATE_NOOP("TranslateCounterName", "Colorless")},
{"storm", QT_TRANSLATE_NOOP("TranslateCounterName", "Other")}};