package magic.ui.widget.cards.table; import magic.translate.StringContext; /** * Translatable strings used in enums in this package. */ final class EnumStrings { private EnumStrings() {} // CardTableColumn static final String _S1 = "Name"; @StringContext(eg = "Short hand for Combined Cost, a column header in card table.") static final String _S2 = "CC"; @StringContext(eg = "Short hand for Power, a column header in card table.") static final String _S3 = "P"; @StringContext(eg = "Short hand for Toughness, a column header in card table.") static final String _S4 = "T"; static final String _S5 = "Type"; static final String _S6 = "Subtype"; static final String _S7 = "Rarity"; static final String _S8 = "Text"; }