QTfrontend/predefteams.h
changeset 4436 94c948a92759
parent 4366 d19adc635c99
parent 4435 996ef18fa396
child 4437 05192cdbce9b
equal deleted inserted replaced
4366:d19adc635c99 4436:94c948a92759
     1 /*
       
     2  * Hedgewars, a free turn based strategy game
       
     3  * Copyright (c) 2006-2010 Andrey Korotaev <unC0Rr@gmail.com>
       
     4  *
       
     5  * This program is free software; you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation; version 2 of the License
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program; if not, write to the Free Software
       
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
       
    17  */
       
    18 
       
    19 #ifndef PREDEFTEAMS_H
       
    20 #define PREDEFTEAMS_H
       
    21 
       
    22 #include <QtGlobal>
       
    23 
       
    24 #define PREDEFTEAMS_COUNT 3
       
    25 /*
       
    26 struct PredefinedTeam
       
    27 {
       
    28     const char * TeamName;
       
    29     const char * hh0name;
       
    30     const char * hh1name;
       
    31     const char * hh2name;
       
    32     const char * hh3name;
       
    33     const char * hh4name;
       
    34     const char * hh5name;
       
    35     const char * hh6name;
       
    36     const char * hh7name;
       
    37     const char * hh0hat;
       
    38     const char * hh1hat;
       
    39     const char * hh2hat;
       
    40     const char * hh3hat;
       
    41     const char * hh4hat;
       
    42     const char * hh5hat;
       
    43     const char * hh6hat;
       
    44     const char * hh7hat;
       
    45     QString Grave;
       
    46     QString Fort;
       
    47 };
       
    48 
       
    49 
       
    50 const PredefinedTeam pteams[PREDEFTEAMS_COUNT] =
       
    51 {
       
    52     {
       
    53         QT_TRANSLATE_NOOP("teams", "Hedgehogs"),
       
    54         QT_TRANSLATE_NOOP("teams", "hedgehog 1"),
       
    55         QT_TRANSLATE_NOOP("teams", "hedgehog 2"),
       
    56         QT_TRANSLATE_NOOP("teams", "hedgehog 3"),
       
    57         QT_TRANSLATE_NOOP("teams", "hedgehog 4"),
       
    58         QT_TRANSLATE_NOOP("teams", "hedgehog 5"),
       
    59         QT_TRANSLATE_NOOP("teams", "hedgehog 6"),
       
    60         QT_TRANSLATE_NOOP("teams", "hedgehog 7"),
       
    61         QT_TRANSLATE_NOOP("teams", "hedgehog 8"),
       
    62         "NoHat",
       
    63         "NoHat",
       
    64         "NoHat",
       
    65         "NoHat",
       
    66         "NoHat",
       
    67         "NoHat",
       
    68         "NoHat",
       
    69         "NoHat",
       
    70         "Simple", "Island"
       
    71     },
       
    72     {
       
    73         QT_TRANSLATE_NOOP("teams", "Goddess"),
       
    74         QT_TRANSLATE_NOOP("teams", "Isis"),
       
    75         QT_TRANSLATE_NOOP("teams", "Astarte"),
       
    76         QT_TRANSLATE_NOOP("teams", "Diana"),
       
    77         QT_TRANSLATE_NOOP("teams", "Aphrodite"),
       
    78         QT_TRANSLATE_NOOP("teams", "Hecate"),
       
    79         QT_TRANSLATE_NOOP("teams", "Demeter"),
       
    80         QT_TRANSLATE_NOOP("teams", "Kali"),
       
    81         QT_TRANSLATE_NOOP("teams", "Inanna"),
       
    82         "NoHat",
       
    83         "NoHat",
       
    84         "NoHat",
       
    85         "NoHat",
       
    86         "NoHat",
       
    87         "NoHat",
       
    88         "NoHat",
       
    89         "NoHat",
       
    90         "Bone", "Island"
       
    91     },
       
    92     {
       
    93         QT_TRANSLATE_NOOP("teams", "Fruits"),
       
    94         QT_TRANSLATE_NOOP("teams", "Banana"),
       
    95         QT_TRANSLATE_NOOP("teams", "Apple"),
       
    96         QT_TRANSLATE_NOOP("teams", "Orange"),
       
    97         QT_TRANSLATE_NOOP("teams", "Lemon"),
       
    98         QT_TRANSLATE_NOOP("teams", "Pineapple"),
       
    99         QT_TRANSLATE_NOOP("teams", "Mango"),
       
   100         QT_TRANSLATE_NOOP("teams", "Peach"),
       
   101         QT_TRANSLATE_NOOP("teams", "Plum"),
       
   102         "banana",
       
   103         "apple",
       
   104         "orange",
       
   105         "lemon",
       
   106         "NoHat",
       
   107         "NoHat",
       
   108         "NoHat",
       
   109         "NoHat",
       
   110         "coffin", "Barrelhouse"
       
   111     }
       
   112 };
       
   113 */
       
   114 #endif // PREDEFTEAMS_H