This repository has been archived by the owner on Jul 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
i_domeny.inc
89 lines (77 loc) · 1.77 KB
/
i_domeny.inc
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/*
* greybox
* $Id: i_domeny.inc,v 1.3 2006/08/23 17:07:33 che0 Exp $
*/
global $domain_klub_role;
$domain_klub_role = array(
"t"=>$lang["coach"]
);
global $domain_turnaj_role;
$domain_turnaj_role = array(
"o"=>$lang["organizer"]
);
global $domain_debata_role;
$domain_debata_role = array(
"r"=>$lang["adjudicator"],
"o"=>$lang["organizer"],
"a1"=>$lang["A1"],
"a2"=>$lang["A2"],
"a3"=>$lang["A3"],
"n1"=>$lang["N1"],
"n2"=>$lang["N2"],
"n3"=>$lang["N3"]
);
global $domain_ibody_role;
$domain_ibody_role = array(
"debater"=>$lang["debater"],
"rozhodci"=>$lang["adjudicator"],
"trener"=>$lang["coach"],
"organizator"=>$lang["organizer"],
"bonus"=>$lang["bonus"]
);
global $domain_kontakt_viditelnost;
$domain_kontakt_viditelnost = array(
0=>$lang['public'],
1=>$lang['registered'],
2=>$lang['club only']
);
global $domain_kontakt_druh;
$domain_kontakt_druh = array(
'telefon'=>$lang['phone'],
'email'=>$lang['email'],
'adresa'=>$lang['postal'],
'icq'=>$lang['icq'],
'jabber'=>$lang['jabber'],
'web'=> $lang['web']
);
global $domain_prava_souteze;
$domain_prava_souteze = array(
0=>$lang['access competitions0'],
1=>$lang['access competitions1'],
2=>$lang['access competitions2']
);
global $domain_prava_lidi;
$domain_prava_lidi = array(
0=>$lang['access people0'],
1=>$lang['access people1'],
2=>$lang['access people2'],
3=>$lang['access people3']
);
global $domain_prava_kluby;
$domain_prava_kluby = array(
0=>$lang['access clubs0'],
1=>$lang['access clubs1'],
2=>$lang['access clubs2']
);
global $domain_prava_souteze;
$domain_prava_souteze = array(
0=>$lang['access competitions0'],
1=>$lang['access competitions1'],
2=>$lang['access competitions2']
);
$domain_prava_debaty = array(
0=>$lang['access debates0'],
1=>$lang['access debates1']
);
?>