source: trunk/Locale/en.php@ 39

Last change on this file since 39 was 39, checked in by chronos, 5 years ago
  • Added: Support for locales and czech language. It can be switched on from top language selector.
File size: 1.6 KB
Line 
1<?php
2
3class LocaleTexten extends LocaleText
4{
5 function Load()
6 {
7 $this->Code = 'en';
8 $this->Title = 'English';
9 $this->Data = array(
10 '' => array(
11 'Summary' => '',
12 'Team' => '',
13 'Teams' => '',
14 'Runner' => '',
15 'Runners' => '',
16 'Family' => '',
17 'Families' => '',
18 'Year' => '',
19 'Unsupported type' => '',
20 'Name' => '',
21 'Distance' => '',
22 'Money' => '',
23 'Distance per runner' => '',
24 'Money per runner' => '',
25 'Rank' => '',
26 'Man' => '',
27 'Woman' => '',
28 'Kid' => '',
29 'Men' => '',
30 'Women' => '',
31 'Kids' => '',
32 'Category' => '',
33 'Last change' => '',
34 'Lap progress' => '',
35 'Time' => '',
36 'Duration' => '',
37 'Length' => '',
38 'Speed' => '',
39 'Daily progress' => '',
40 'Everyone' => '',
41 'Count' => '',
42 'Teribear stats' => '',
43 'Runner id needs to be numeric' => '',
44 'Team id needs to be numeric' => '',
45 'This website collects data from official <a href="%s">leaderboard</a> site and tracks and presents progress of runners and teams.' => '',
46 'Source code' => '',
47 'Contact' => '',
48 'Data synchronization from leaderboard finished.' => '',
49 'Search' => '',
50 'hour' => '',
51 ),
52 'URL' => array(
53 'runner' => '',
54 'runners' => '',
55 'team' => '',
56 'teams' => '',
57 'family' => '',
58 'families' => '',
59 'sync' => '',
60 )
61 );
62 }
63}
Note: See TracBrowser for help on using the repository browser.