-
Notifications
You must be signed in to change notification settings - Fork 0
/
material.inc.php
30 lines (29 loc) · 981 Bytes
/
material.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
*------
* BGA framework: © Gregory Isabelli <gisabelli@boardgamearena.com> & Emmanuel Colin <ecolin@boardgamearena.com>
* Perikles implementation : © <David Edelstein> <david.edelstein@gmail.com>
*
* This code has been produced on the BGA studio platform for use on http://boardgamearena.com.
* See http://en.boardgamearena.com/#!doc/Studio for more information.
* -----
*
* material.inc.php
*
* Perikles game material description
*
* Here, you can describe the material of your game with PHP variables.
*
* This file is loaded in your game logic class constructor, ie these variables
* are available everywhere in your game logic code.
*
*/
$this->ordinals = array(
1 => clienttranslate("first"),
2 => clienttranslate("second"),
3 => clienttranslate("third"),
4 => clienttranslate("fourth"),
5 => clienttranslate("fifth"),
6 => clienttranslate("sixth"),
7 => clienttranslate("seventh"),
);